@bigbinary/neetoui 5.2.18 → 5.2.19
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/formik.cjs.js +1 -1
- package/formik.cjs.js.map +1 -1
- package/formik.js +1 -1
- package/formik.js.map +1 -1
- package/index.cjs.js +1 -1
- package/index.cjs.js.map +1 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -20219,7 +20219,7 @@ var Input$2 = /*#__PURE__*/forwardRef$1(function (_ref, ref) {
|
|
|
20219
20219
|
};
|
|
20220
20220
|
var handleChange = rejectCharsRegex ? handleRegexChange : onChange;
|
|
20221
20221
|
var handleOnBlur = function handleOnBlur(e) {
|
|
20222
|
-
if (!disableTrimOnBlur) {
|
|
20222
|
+
if (!disableTrimOnBlur && typeof value === "string") {
|
|
20223
20223
|
e.target.value = value.trim();
|
|
20224
20224
|
handleChange(e);
|
|
20225
20225
|
}
|