@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
|
@@ -12996,12 +12996,12 @@
|
|
|
12996
12996
|
break;
|
|
12997
12997
|
}
|
|
12998
12998
|
}
|
|
12999
|
-
if (
|
|
13000
|
-
parsedValues[name] = value;
|
|
13001
|
-
}
|
|
13002
|
-
else if (_this.isTypeNumberOrEnum(type)) {
|
|
12999
|
+
if (_this.isTypeNumberOrEnum(type)) {
|
|
13003
13000
|
parsedValues[name] = field.multiple ? [] : null;
|
|
13004
13001
|
}
|
|
13002
|
+
else {
|
|
13003
|
+
parsedValues[name] = value;
|
|
13004
|
+
}
|
|
13005
13005
|
});
|
|
13006
13006
|
if (this.hasBlob)
|
|
13007
13007
|
parsedValues["fieldCustomization"] = this.formGroup.get("fieldCustomization").value;
|