@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.
@@ -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 ? 'Yes' : 'No');
2628
+ this.EvaluatedModel = this.lc.loc(obj ? '' : '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 ? 'Yes' : 'No');
3057
+ this.EvaluatedModel = this.lc.loc(obj ? '' : 'No');
3058
3058
  super.writeValue(obj);
3059
3059
  }
3060
3060
  changed() {
3061
- this.EvaluatedModel = this.lc.loc(this.Model ? 'Yes' : 'No');
3061
+ this.EvaluatedModel = this.lc.loc(this.Model ? '' : 'No');
3062
3062
  super.changed(null, false, true);
3063
3063
  }
3064
3064
  /** @ignore */