tin-spa 2.13.13 → 2.13.14
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/esm2020/lib/components/table/detailsDialog.component.mjs +4 -2
- package/esm2020/lib/components/table-internal/detailsDialog-internal.component.mjs +4 -2
- package/esm2020/lib/components/table-lite/detailsDialog-lite.component.mjs +4 -2
- package/fesm2015/tin-spa.mjs +9 -3
- package/fesm2015/tin-spa.mjs.map +1 -1
- package/fesm2020/tin-spa.mjs +9 -3
- package/fesm2020/tin-spa.mjs.map +1 -1
- package/package.json +1 -1
package/fesm2020/tin-spa.mjs
CHANGED
|
@@ -5398,7 +5398,9 @@ class DetailsDialogLite {
|
|
|
5398
5398
|
}
|
|
5399
5399
|
processButtonAction(button) {
|
|
5400
5400
|
if (!button.action) {
|
|
5401
|
-
|
|
5401
|
+
if (!button.keepOpen) {
|
|
5402
|
+
this.dialogRef.close({ message: 'emit', data: this.details });
|
|
5403
|
+
}
|
|
5402
5404
|
return;
|
|
5403
5405
|
}
|
|
5404
5406
|
if (button.skipValidation || this.validateForm()) {
|
|
@@ -7004,7 +7006,9 @@ class DetailsDialogInternal {
|
|
|
7004
7006
|
}
|
|
7005
7007
|
processButtonAction(button) {
|
|
7006
7008
|
if (!button.action) {
|
|
7007
|
-
|
|
7009
|
+
if (!button.keepOpen) {
|
|
7010
|
+
this.dialogRef.close({ message: 'emit', data: this.details });
|
|
7011
|
+
}
|
|
7008
7012
|
return;
|
|
7009
7013
|
}
|
|
7010
7014
|
if (button.skipValidation || this.validateForm()) {
|
|
@@ -8092,7 +8096,9 @@ class DetailsDialog {
|
|
|
8092
8096
|
}
|
|
8093
8097
|
processButtonAction(button) {
|
|
8094
8098
|
if (!button.action) {
|
|
8095
|
-
|
|
8099
|
+
if (!button.keepOpen) {
|
|
8100
|
+
this.dialogRef.close({ message: 'emit', data: this.details });
|
|
8101
|
+
}
|
|
8096
8102
|
return;
|
|
8097
8103
|
}
|
|
8098
8104
|
if (button.skipValidation || this.validateForm()) {
|