acud 1.4.25 → 1.4.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.
- package/dist/acud.css +1 -1
- package/dist/acud.js +3 -3
- package/dist/acud.js.map +1 -1
- package/dist/acud.min.css +1 -1
- package/dist/acud.min.js +12 -10
- package/dist/acud.min.js.map +1 -1
- package/es/input/TextArea.js +2 -2
- package/lib/input/TextArea.js +2 -2
- package/package.json +1 -1
package/dist/acud.css
CHANGED
package/dist/acud.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! acud v1.4.
|
|
1
|
+
/*! acud v1.4.26 */
|
|
2
2
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
3
3
|
if(typeof exports === 'object' && typeof module === 'object')
|
|
4
4
|
module.exports = factory(require("react"), require("react-dom"));
|
|
@@ -21125,9 +21125,9 @@ var TextArea = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_3___default.a.forward
|
|
|
21125
21125
|
}
|
|
21126
21126
|
if (forbidIfLimit && limitLength && e.target.value.length >= limitLength) {
|
|
21127
21127
|
setValue(e.target.value.slice(0, limitLength));
|
|
21128
|
-
|
|
21129
|
-
setValue(e.target.value);
|
|
21128
|
+
return;
|
|
21130
21129
|
}
|
|
21130
|
+
setValue(e.target.value);
|
|
21131
21131
|
if (props.onChange) {
|
|
21132
21132
|
props.onChange(e);
|
|
21133
21133
|
}
|