@fxlt/common-ui 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,10 +1,10 @@
1
- <div animate.enter="fade-in-animation">
2
- <div class="txt-section-header px-2xl py-semi">{{title}}</div>
1
+ <div animate.enter="fade-in-animation" class="dialog-container">
2
+ <div class="txt-dialog-header">{{ title }}</div>
3
3
  <mat-dialog-content>
4
- <div class="txt-default">{{message}}</div>
4
+ <div class="txt-default">{{ message }}</div>
5
5
  </mat-dialog-content>
6
6
  <mat-dialog-actions align="end">
7
7
  <fx-ui-button class="mr-1" [label]="cancelLabel" (clicked)="cancel()"></fx-ui-button>
8
- <fx-ui-button buttonVariant="primary" class="mr-1" [label]="confirmLabel" (clicked)="accept()"></fx-ui-button>
8
+ <fx-ui-button buttonVariant="primary" class="mr-1" [label]="confirmLabel" (clicked)="accept()" [loading]="loading" class="min-w-[100px]"></fx-ui-button>
9
9
  </mat-dialog-actions>
10
10
  </div>