ontimize-web-ngx 15.5.6 → 15.5.7

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.
@@ -18610,6 +18610,14 @@ class OBooleanFormDataComponent extends OFormDataComponent {
18610
18610
  onClickBlocker(evt) {
18611
18611
  evt.stopPropagation();
18612
18612
  }
18613
+ getValue() {
18614
+ if (Util.isDefined(this.value) && this.value.value !== undefined) {
18615
+ return this.value.value ? this.trueValue : this.falseValue;
18616
+ }
18617
+ else {
18618
+ return this.defaultValue;
18619
+ }
18620
+ }
18613
18621
  }
18614
18622
  OBooleanFormDataComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: OBooleanFormDataComponent, deps: [{ token: forwardRef(() => OFormComponent), optional: true }, { token: i0.ElementRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Directive });
18615
18623
  OBooleanFormDataComponent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: OBooleanFormDataComponent, inputs: { trueValue: ["true-value", "trueValue"], falseValue: ["false-value", "falseValue"], booleanType: ["boolean-type", "booleanType"] }, usesInheritance: true, ngImport: i0 });