easy3wui 1.5.38 → 1.5.39
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.
|
@@ -1355,7 +1355,7 @@ var Easy3wFormPage = function (_Component) {
|
|
|
1355
1355
|
maxlength = cmptPros.maxLength || cmptPros.maxlength;
|
|
1356
1356
|
}
|
|
1357
1357
|
if (!cmptPros.rows) {
|
|
1358
|
-
cmptPros = (0, _extends3['default'])({ autosize: { minRows: 2, maxRows:
|
|
1358
|
+
cmptPros = (0, _extends3['default'])({ autosize: { minRows: 2, maxRows: 9999 } }, cmptPros);
|
|
1359
1359
|
}
|
|
1360
1360
|
return _react2['default'].createElement(TextArea, (0, _extends3['default'])({ onChange: function onChange(e) {
|
|
1361
1361
|
return _this.textAreaOnchange(e, maxlength);
|
|
@@ -79,7 +79,7 @@ var Easy3wGridTextArea = function (_Component) {
|
|
|
79
79
|
|
|
80
80
|
var defaultMaxLength = 2000;
|
|
81
81
|
if (!rows) {
|
|
82
|
-
cmptPros = (0, _extends3['default'])({ autosize: { minRows: 2, maxRows:
|
|
82
|
+
cmptPros = (0, _extends3['default'])({ autosize: { minRows: 2, maxRows: 9999 } }, cmptPros);
|
|
83
83
|
}
|
|
84
84
|
var rules = [{ required: required, message: requiredMessage || '\u8BF7\u586B\u5199' + label }, { max: maxLength || defaultMaxLength, message: '\u5F55\u5165\u6587\u5B57\u957F\u5EA6\u4E0D\u80FD\u8D85\u8FC7' + (maxLength || defaultMaxLength), transform: this.touchTransform }];
|
|
85
85
|
if (disabled) {
|