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.
@@ -5398,7 +5398,9 @@ class DetailsDialogLite {
5398
5398
  }
5399
5399
  processButtonAction(button) {
5400
5400
  if (!button.action) {
5401
- this.dialogRef.close({ message: 'emit', data: this.details });
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
- this.dialogRef.close({ message: 'emit', data: this.details });
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
- this.dialogRef.close({ message: 'emit', data: this.details });
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()) {