ets-fe-ng-sdk 19.0.102 → 19.0.103
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.
|
@@ -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
|