@seniorsistemas/angular-components 17.10.11 → 17.10.12
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/bundles/seniorsistemas-angular-components.umd.js +4 -4
- package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
- package/esm2015/components/custom-fields/custom-fields.component.js +5 -5
- package/esm5/components/custom-fields/custom-fields.component.js +5 -5
- package/fesm2015/seniorsistemas-angular-components.js +4 -4
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +4 -4
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
|
@@ -12850,12 +12850,12 @@ var CustomFieldsComponent = /** @class */ (function () {
|
|
|
12850
12850
|
break;
|
|
12851
12851
|
}
|
|
12852
12852
|
}
|
|
12853
|
-
if (
|
|
12854
|
-
parsedValues[name] = value;
|
|
12855
|
-
}
|
|
12856
|
-
else if (_this.isTypeNumberOrEnum(type)) {
|
|
12853
|
+
if (_this.isTypeNumberOrEnum(type)) {
|
|
12857
12854
|
parsedValues[name] = field.multiple ? [] : null;
|
|
12858
12855
|
}
|
|
12856
|
+
else {
|
|
12857
|
+
parsedValues[name] = value;
|
|
12858
|
+
}
|
|
12859
12859
|
});
|
|
12860
12860
|
if (this.hasBlob)
|
|
12861
12861
|
parsedValues["fieldCustomization"] = this.formGroup.get("fieldCustomization").value;
|