added modal-icon

This commit is contained in:
2025-11-18 19:03:47 +01:00
parent 4b5fd254a1
commit cdb32b8e76
11 changed files with 91 additions and 25 deletions

View File

@@ -1,21 +1,23 @@
import {Component, inject, OnInit, signal} from '@angular/core';
import {Modal} from "../modal/modal";
import {NzButtonComponent} from "ng-zorro-antd/button";
import {AuthorsService, GetAuthorDto} from "../../services/api";
import {NzNotificationService} from "ng-zorro-antd/notification";
import {firstValueFrom} from "rxjs";
import {NzTableComponent} from "ng-zorro-antd/table";
import {NzDividerComponent} from "ng-zorro-antd/divider";
import {UpdateAuthor} from "../update-author/update-author";
import {ModalIcon} from "../modal-icon/modal-icon";
import {NzIconDirective} from "ng-zorro-antd/icon";
@Component({
selector: 'app-author-table',
imports: [
Modal,
NzButtonComponent,
NzTableComponent,
NzDividerComponent,
UpdateAuthor
UpdateAuthor,
ModalIcon,
NzIconDirective
],
templateUrl: './author-table.html',
styleUrl: './author-table.css',