|
|
|
@ -5,30 +5,32 @@
|
|
|
|
<i class="fa icon" [ngClass]="iconClass"></i>
|
|
|
|
<i class="fa icon" [ngClass]="iconClass"></i>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="content">
|
|
|
|
<div class="content">
|
|
|
|
<h1 class="title" *ngIf="data.title">
|
|
|
|
<h1
|
|
|
|
{{ data.title | abpLocalization: data.options?.titleLocalizationParams }}
|
|
|
|
class="title"
|
|
|
|
</h1>
|
|
|
|
*ngIf="data.title"
|
|
|
|
<p class="message" *ngIf="data.message">
|
|
|
|
[innerHTML]="data.title | abpLocalization: data.options?.titleLocalizationParams"
|
|
|
|
{{ data.message | abpLocalization: data.options?.messageLocalizationParams }}
|
|
|
|
></h1>
|
|
|
|
</p>
|
|
|
|
<p
|
|
|
|
|
|
|
|
class="message"
|
|
|
|
|
|
|
|
*ngIf="data.message"
|
|
|
|
|
|
|
|
[innerHTML]="data.message | abpLocalization: data.options?.messageLocalizationParams"
|
|
|
|
|
|
|
|
></p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="footer">
|
|
|
|
<div class="footer">
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
id="cancel"
|
|
|
|
id="cancel"
|
|
|
|
class="confirmation-button confirmation-button--reject"
|
|
|
|
class="confirmation-button confirmation-button--reject"
|
|
|
|
|
|
|
|
[innerHTML]="data.options?.cancelText || 'AbpUi::Cancel'"
|
|
|
|
*ngIf="!data?.options?.hideCancelBtn"
|
|
|
|
*ngIf="!data?.options?.hideCancelBtn"
|
|
|
|
(click)="close(reject)"
|
|
|
|
(click)="close(reject)"
|
|
|
|
>
|
|
|
|
></button>
|
|
|
|
{{ data.options?.cancelText || 'AbpUi::Cancel' | abpLocalization }}
|
|
|
|
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
id="confirm"
|
|
|
|
id="confirm"
|
|
|
|
class="confirmation-button confirmation-button--approve"
|
|
|
|
class="confirmation-button confirmation-button--approve"
|
|
|
|
|
|
|
|
[innerHTML]="data.options?.yesText || 'AbpUi::Yes'"
|
|
|
|
*ngIf="!data?.options?.hideYesBtn"
|
|
|
|
*ngIf="!data?.options?.hideYesBtn"
|
|
|
|
(click)="close(confirm)"
|
|
|
|
(click)="close(confirm)"
|
|
|
|
>
|
|
|
|
></button>
|
|
|
|
{{ data.options?.yesText || 'AbpUi::Yes' | abpLocalization }}
|
|
|
|
|
|
|
|
</button>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|