ets-fe-ng-sdk 19.0.102 → 19.0.104

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.
@@ -340,7 +340,7 @@ router-outlet+* {
340
340
  text-align: center;
341
341
  }
342
342
  }
343
-
343
+ .mat-mdc-select-disabled,
344
344
  .form-control.disabled,
345
345
  .form-control:disabled,
346
346
  .form-control[readonly],
@@ -8667,13 +8667,13 @@ class InputFormatDirective {
8667
8667
  this.setNumberInput(value);
8668
8668
  else if (this.oType == 'percentage')
8669
8669
  this.setPercentageInput(value);
8670
- else if (this.oType == 'checkbox')
8670
+ else if (this.oType == 'checkbox') {
8671
+ this.setCheckboxInput(value);
8671
8672
  if (value == null)
8672
8673
  this.input(false);
8673
8674
  else
8674
- this.setCheckboxInput(value);
8675
- else
8676
- this.setInput(value);
8675
+ this.setInput(value);
8676
+ }
8677
8677
  }
8678
8678
  /**
8679
8679
  * Register a callback function for value changes
@@ -17380,10 +17380,10 @@ class FormErrorComponent {
17380
17380
  this.resultTemplateRef = viewChild('resultTemplate');
17381
17381
  /** Reference to the error container element */
17382
17382
  this.errContRef = viewChild('errCont');
17383
- effect(() => {
17384
- console.log('errored forms', this.errors());
17385
- console.log('cErrored forms', this.cErrors());
17386
- });
17383
+ // effect(() => {
17384
+ // console.log('errored forms', this.errors());
17385
+ // console.log('cErrored forms', this.cErrors());
17386
+ // });
17387
17387
  this.destroyerRef.onDestroy(() => {
17388
17388
  this.sub?.clear();
17389
17389
  });