@signalplus/params-about 0.1.40 → 0.1.41
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/lib/es/index.js +18 -8
- package/package.json +1 -1
package/lib/es/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Bundle of @signalplus/params-about
|
|
3
3
|
* Generated: 2022-04-19
|
|
4
|
-
* Version: 0.1.
|
|
4
|
+
* Version: 0.1.41
|
|
5
5
|
* License: MIT
|
|
6
6
|
* Author: 2631541504@qq.com
|
|
7
7
|
*/
|
|
@@ -541,7 +541,8 @@ var Num = /*#__PURE__*/function (_PureComponent) {
|
|
|
541
541
|
placeholder: this.props.placeholder || 'Value',
|
|
542
542
|
value: this.state.tempValue || '',
|
|
543
543
|
onChange: this.onChange,
|
|
544
|
-
onBlur: this.onBlur
|
|
544
|
+
onBlur: this.onBlur,
|
|
545
|
+
autoComplete: "off"
|
|
545
546
|
}), this.props.isPercentage && /*#__PURE__*/React.createElement("span", {
|
|
546
547
|
className: "param-number-suffix"
|
|
547
548
|
}, "%"));
|
|
@@ -721,7 +722,8 @@ var TextArray = /*#__PURE__*/function (_PureComponent) {
|
|
|
721
722
|
placeholder: "Phone",
|
|
722
723
|
value: it,
|
|
723
724
|
onChange: _this2.onChange.bind(null, i),
|
|
724
|
-
onBlur: _this2.props.onBlur
|
|
725
|
+
onBlur: _this2.props.onBlur,
|
|
726
|
+
autoComplete: "off"
|
|
725
727
|
}), /*#__PURE__*/React.createElement("div", {
|
|
726
728
|
className: "param-arr-ops"
|
|
727
729
|
}, /*#__PURE__*/React.createElement(PlusOutlined, {
|
|
@@ -1085,7 +1087,8 @@ var Text = /*#__PURE__*/function (_PureComponent) {
|
|
|
1085
1087
|
placeholder: this.props.placeholder || 'Text',
|
|
1086
1088
|
value: this.props.value || '',
|
|
1087
1089
|
onChange: this.onChange,
|
|
1088
|
-
onBlur: this.onBlur
|
|
1090
|
+
onBlur: this.onBlur,
|
|
1091
|
+
autoComplete: "off"
|
|
1089
1092
|
}));
|
|
1090
1093
|
}
|
|
1091
1094
|
}], [{
|
|
@@ -1388,7 +1391,9 @@ var ParamForm = /*#__PURE__*/function (_PureComponent) {
|
|
|
1388
1391
|
Comp: function Comp(props) {
|
|
1389
1392
|
return /*#__PURE__*/React.createElement(Input, Object.assign({
|
|
1390
1393
|
placeholder: '请输入'
|
|
1391
|
-
}, props
|
|
1394
|
+
}, props, {
|
|
1395
|
+
autoComplete: "off"
|
|
1396
|
+
}));
|
|
1392
1397
|
},
|
|
1393
1398
|
required: true,
|
|
1394
1399
|
validator: validatorCvt(function (val) {
|
|
@@ -1400,7 +1405,9 @@ var ParamForm = /*#__PURE__*/function (_PureComponent) {
|
|
|
1400
1405
|
Comp: function Comp(props) {
|
|
1401
1406
|
return /*#__PURE__*/React.createElement(Input, Object.assign({
|
|
1402
1407
|
placeholder: '请输入'
|
|
1403
|
-
}, props
|
|
1408
|
+
}, props, {
|
|
1409
|
+
autoComplete: "off"
|
|
1410
|
+
}));
|
|
1404
1411
|
}
|
|
1405
1412
|
}, {
|
|
1406
1413
|
label: '参数类型',
|
|
@@ -1442,7 +1449,9 @@ var ParamForm = /*#__PURE__*/function (_PureComponent) {
|
|
|
1442
1449
|
Comp: function Comp(props) {
|
|
1443
1450
|
return /*#__PURE__*/React.createElement(Input.TextArea, Object.assign({
|
|
1444
1451
|
placeholder: '请输入'
|
|
1445
|
-
}, props
|
|
1452
|
+
}, props, {
|
|
1453
|
+
autoComplete: "off"
|
|
1454
|
+
}));
|
|
1446
1455
|
}
|
|
1447
1456
|
}];
|
|
1448
1457
|
}
|
|
@@ -1917,7 +1926,8 @@ var ParamGroupEditor = /*#__PURE__*/function (_PureComponent) {
|
|
|
1917
1926
|
name: 'name',
|
|
1918
1927
|
Comp: function Comp(props) {
|
|
1919
1928
|
return /*#__PURE__*/React.createElement(Input, Object.assign({}, props, {
|
|
1920
|
-
placeholder: '请输入'
|
|
1929
|
+
placeholder: '请输入',
|
|
1930
|
+
autoComplete: "off"
|
|
1921
1931
|
}));
|
|
1922
1932
|
},
|
|
1923
1933
|
validator: validatorCvt(function (val) {
|