13 lines
423 B
HTML
13 lines
423 B
HTML
@if (activeModal(); as modal) {
|
|
<app-modal-shell
|
|
[title]="modal.config.title"
|
|
[size]="modal.config.size"
|
|
[presentation]="modal.config.presentation ?? 'dialog'"
|
|
[showCloseButton]="modal.config.showCloseButton"
|
|
(backdropClick)="onBackdropClick()"
|
|
(closeRequested)="onCloseRequested()"
|
|
>
|
|
<ng-container *ngComponentOutlet="modal.component; injector: contentInjector()" />
|
|
</app-modal-shell>
|
|
}
|