@esfaenza/forms-and-validations 15.2.9 → 15.2.10
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/esm2020/lib/forms/form-adaptive/form-adaptive.component.mjs +2 -2
- package/esm2020/lib/forms/form-checkbox/form-checkbox.component.mjs +3 -3
- package/fesm2015/esfaenza-forms-and-validations.mjs +3 -3
- package/fesm2015/esfaenza-forms-and-validations.mjs.map +1 -1
- package/fesm2020/esfaenza-forms-and-validations.mjs +3 -3
- package/fesm2020/esfaenza-forms-and-validations.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -2625,7 +2625,7 @@ class FormAdaptiveComponent extends BaseFormControl {
|
|
|
2625
2625
|
else if (this.Type == "boolean") {
|
|
2626
2626
|
obj = obj ? (obj === true || obj.toLowerCase() == "true") : false;
|
|
2627
2627
|
this.alignValues = true;
|
|
2628
|
-
this.EvaluatedModel = this.lc.loc(obj ? '
|
|
2628
|
+
this.EvaluatedModel = this.lc.loc(obj ? 'Sì' : 'No');
|
|
2629
2629
|
}
|
|
2630
2630
|
else if (this.Type == "time") {
|
|
2631
2631
|
const [hours, minutes, seconds] = (obj || "00:00:00").split(":");
|
|
@@ -3054,11 +3054,11 @@ class FormCheckboxComponent extends BaseFormControl {
|
|
|
3054
3054
|
/** @ignore */
|
|
3055
3055
|
writeValue(obj) {
|
|
3056
3056
|
obj = obj ? (obj === true || obj.toLowerCase() == "true") : false;
|
|
3057
|
-
this.EvaluatedModel = this.lc.loc(obj ? '
|
|
3057
|
+
this.EvaluatedModel = this.lc.loc(obj ? 'Sì' : 'No');
|
|
3058
3058
|
super.writeValue(obj);
|
|
3059
3059
|
}
|
|
3060
3060
|
changed() {
|
|
3061
|
-
this.EvaluatedModel = this.lc.loc(this.Model ? '
|
|
3061
|
+
this.EvaluatedModel = this.lc.loc(this.Model ? 'Sì' : 'No');
|
|
3062
3062
|
super.changed(null, false, true);
|
|
3063
3063
|
}
|
|
3064
3064
|
/** @ignore */
|