px-react-ui-components 1.0.25 → 1.0.26
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.
|
@@ -229,6 +229,9 @@ function MyInput({
|
|
|
229
229
|
// min ve max kontrolü
|
|
230
230
|
if (min && newValue < min) newValue = min;else if (max && newValue > max) newValue = max;
|
|
231
231
|
}
|
|
232
|
+
if (type === MyInputType.MONEY && newValue) {
|
|
233
|
+
newValue = newValue.replace(/[^0-9.]/g, '');
|
|
234
|
+
}
|
|
232
235
|
if (type === MyInputType.TEXT || type === MyInputType.TEXTAREA) {
|
|
233
236
|
newValue = newValue.trim();
|
|
234
237
|
if (uppercase) newValue = newValue.toLocaleUpperCase("TR");else if (lowercase) newValue = newValue.toLocaleLowerCase("TR");else if (firstUppercase) newValue = newValue.split(' ').map(word => word.charAt(0).toLocaleUpperCase("TR") + word.slice(1).toLocaleLowerCase("TR")).join(' ');
|