ps-toolkit-ui 1.12.6 → 1.12.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.
- package/bundles/ps-toolkit-ui.umd.js +1 -1
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/components/form/textbox/form.textbox.component.js +2 -2
- package/fesm2015/ps-toolkit-ui.js +1 -1
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -6183,7 +6183,7 @@
|
|
|
6183
6183
|
return null;
|
|
6184
6184
|
}
|
|
6185
6185
|
if (v && _this.inp.type === exports.InputType.Number || _this.inp.type === exports.InputType.Price) {
|
|
6186
|
-
v = parseFloat(v.toString().replace(/,/g, ''));
|
|
6186
|
+
v = parseFloat(v.toString().replace(/,/g, '')) || 0;
|
|
6187
6187
|
}
|
|
6188
6188
|
return v;
|
|
6189
6189
|
};
|