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 CHANGED
@@ -1,4 +1,4 @@
1
- /*! acud v1.4.25 */
1
+ /*! acud v1.4.26 */
2
2
  /* color */
3
3
  /* 默认颜色 */
4
4
  /* 通用-icon */
package/dist/acud.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! acud v1.4.25 */
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
- } else {
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
  }