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.
- package/assets/scss/styles.scss +1 -1
- package/fesm2022/ets-fe-ng-sdk.mjs +8 -8
- package/fesm2022/ets-fe-ng-sdk.mjs.map +1 -1
- package/lib/Services/utility.service.d.ts +1 -1
- package/lib/Shared/components/btn/btn.component.d.ts +3 -3
- package/lib/Shared/components/index-comp-layout/index-comp-layout.component.d.ts +1 -1
- package/lib/Shared/components/table/table.pipe.d.ts +2 -2
- package/package.json +1 -1
package/assets/scss/styles.scss
CHANGED
|
@@ -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.
|
|
8675
|
-
|
|
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
|
-
|
|
17385
|
-
|
|
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
|
});
|