@seniorsistemas/angular-components 17.12.0 → 17.12.1
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 +3 -0
- package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js +2 -2
- package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
- package/esm2015/components/custom-fields/custom-fields.component.js +4 -1
- package/esm5/components/custom-fields/custom-fields.component.js +4 -1
- package/fesm2015/seniorsistemas-angular-components.js +3 -0
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +3 -0
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
|
@@ -12962,6 +12962,9 @@ var CustomFieldsComponent = /** @class */ (function () {
|
|
|
12962
12962
|
scale: 0,
|
|
12963
12963
|
};
|
|
12964
12964
|
break;
|
|
12965
|
+
case CustomFieldType.Any:
|
|
12966
|
+
field.type = FieldType.String;
|
|
12967
|
+
break;
|
|
12965
12968
|
}
|
|
12966
12969
|
return new FormField(__assign({ name: field.id, label: field.customization.label, tooltip: field.customization.tooltip, infoSign: field.customization.infoSign, type: field.type, mask: field.customization.mask, required: function () { return field.customization.mandatory; }, calendarOptions: localeOptions.calendar, currencyOptions: localeOptions.number }, parameters));
|
|
12967
12970
|
};
|