codexly-ui 0.6.15 → 0.6.16
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.
package/fesm2022/codexly-ui.mjs
CHANGED
|
@@ -7797,6 +7797,9 @@ class ClxModalComponent {
|
|
|
7797
7797
|
type="button"
|
|
7798
7798
|
[color]="_cancelColor()"
|
|
7799
7799
|
[variant]="_cancelVariant()"
|
|
7800
|
+
[icon]="cancelButton()?.icon"
|
|
7801
|
+
[loading]="cancelButton()?.loading ?? false"
|
|
7802
|
+
[disabled]="cancelButton()?.disabled ?? false"
|
|
7800
7803
|
size="md"
|
|
7801
7804
|
(click)="cancelClick.emit()">
|
|
7802
7805
|
{{ _cancelText() }}
|
|
@@ -7807,6 +7810,9 @@ class ClxModalComponent {
|
|
|
7807
7810
|
type="button"
|
|
7808
7811
|
[color]="_confirmColor()"
|
|
7809
7812
|
[variant]="_confirmVariant()"
|
|
7813
|
+
[icon]="confirmButton()?.icon"
|
|
7814
|
+
[loading]="confirmButton()?.loading ?? false"
|
|
7815
|
+
[disabled]="confirmButton()?.disabled ?? false"
|
|
7810
7816
|
size="md"
|
|
7811
7817
|
(click)="confirmClick.emit()">
|
|
7812
7818
|
{{ _confirmText() }}
|
|
@@ -7859,6 +7865,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
|
|
|
7859
7865
|
type="button"
|
|
7860
7866
|
[color]="_cancelColor()"
|
|
7861
7867
|
[variant]="_cancelVariant()"
|
|
7868
|
+
[icon]="cancelButton()?.icon"
|
|
7869
|
+
[loading]="cancelButton()?.loading ?? false"
|
|
7870
|
+
[disabled]="cancelButton()?.disabled ?? false"
|
|
7862
7871
|
size="md"
|
|
7863
7872
|
(click)="cancelClick.emit()">
|
|
7864
7873
|
{{ _cancelText() }}
|
|
@@ -7869,6 +7878,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
|
|
|
7869
7878
|
type="button"
|
|
7870
7879
|
[color]="_confirmColor()"
|
|
7871
7880
|
[variant]="_confirmVariant()"
|
|
7881
|
+
[icon]="confirmButton()?.icon"
|
|
7882
|
+
[loading]="confirmButton()?.loading ?? false"
|
|
7883
|
+
[disabled]="confirmButton()?.disabled ?? false"
|
|
7872
7884
|
size="md"
|
|
7873
7885
|
(click)="confirmClick.emit()">
|
|
7874
7886
|
{{ _confirmText() }}
|