mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.3 KiB
32 lines
1.3 KiB
<ng-content></ng-content>
|
|
|
|
<ng-container *sqxModal="dialogView">
|
|
<sqx-modal-dialog showClose="false" (close)="cancel()">
|
|
<ng-container title>
|
|
{{snapshot.dialogRequest?.title}}
|
|
</ng-container>
|
|
|
|
<ng-container content>
|
|
<span [innerHTML]="snapshot.dialogRequest?.text | sqxMarkdown"></span>
|
|
</ng-container>
|
|
|
|
<ng-container footer>
|
|
<button type="button" class="float-left btn btn-secondary" (click)="cancel()">No</button>
|
|
<button type="button" class="float-right btn btn-danger" (click)="confirm()" sqxFocusOnInit>Yes</button>
|
|
</ng-container>
|
|
</sqx-modal-dialog>
|
|
</ng-container>
|
|
|
|
<div class="notification-container notification-container-bottom-right">
|
|
<div class="alert alert-dismissible alert-{{notification.messageType}}" *ngFor="let notification of snapshot.notifications" (click)="close(notification)" @fade>
|
|
<button type="button" class="close" data-dismiss="alert" (close)="close(notification)">×</button>
|
|
|
|
<span [innerHTML]="notification.message | sqxMarkdown"></span>
|
|
</div>
|
|
</div>
|
|
|
|
<ng-container *ngIf="snapshot.tooltip; let tooltip">
|
|
<div class="tooltip2 tooltip2-{{tooltip.position}}" [sqxAnchoredTo]="tooltip.target" [position]="tooltip.position" [offset]="6">
|
|
{{tooltip.text}}
|
|
</div>
|
|
</ng-container>
|