ets-fe-ng-sdk 19.0.33 → 19.0.34

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.
@@ -6596,7 +6596,7 @@ class InputBase {
6596
6596
  control?.reset();
6597
6597
  control?.disable();
6598
6598
  }
6599
- else if (control?.disabled)
6599
+ else if (disable == false && control?.disabled)
6600
6600
  control?.enable();
6601
6601
  };
6602
6602
  this.showPasswordSignal = signal(null);
@@ -12312,12 +12312,12 @@ class FormGeneratorComponent extends BaseFormGenerator {
12312
12312
  set _isShow(v) {
12313
12313
  if (v)
12314
12314
  this.form()?.disable({ emitEvent: false });
12315
- else
12315
+ else if (v == false)
12316
12316
  this.form()?.enable();
12317
12317
  setTimeout(() => {
12318
12318
  if (v)
12319
12319
  this.form()?.disable({ emitEvent: false });
12320
- else
12320
+ else if (v == false)
12321
12321
  this.form()?.enable();
12322
12322
  }, 500);
12323
12323
  }
@@ -12411,7 +12411,7 @@ class FormGeneratorComponent extends BaseFormGenerator {
12411
12411
  }
12412
12412
  }
12413
12413
  handleFormScheme(scheme) {
12414
- scheme.id = this.utilityService.generateUUID();
12414
+ scheme.id = scheme.field.toString();
12415
12415
  if (scheme.stacked == null)
12416
12416
  scheme.stacked = true;
12417
12417
  if (scheme.showValidationMsg == null)