@titaui/pc 1.8.4 → 1.8.61
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/components/dialog/index.css +1 -1
- package/lib/components/form/form-fields/duties/index.js +2 -1
- package/lib/components/form/form-fields/input/index.js +1 -1
- package/lib/components/form/form-fields/input-verification-code/index.js +18 -15
- package/lib/components/form/form-fields/password/index.css +18 -0
- package/lib/components/form/form-fields/password/index.js +33 -20
- package/lib/components/form/index.js +4 -1
- package/lib/components/table/index.css +1 -0
- package/lib/components/upload-photo-modal/constant.js +10 -4
- package/lib/components/upload-photo-modal/index.css +1 -2
- package/lib/components/upload-photo-modal/index.js +58 -186
- package/lib/components/user-selector/request-apis.js +1 -1
- package/lib/pages/personal-info/components/base-info/index.css +31 -3
- package/lib/pages/personal-info/components/base-info/index.js +13 -5
- package/lib/pages/personal-info/components/{edit-info → edit-base-info}/index.css +1 -1
- package/lib/pages/personal-info/components/{edit-info → edit-base-info}/index.js +3 -4
- package/lib/pages/personal-info/components/person-photo/index.css +18 -5
- package/lib/pages/personal-info/components/person-photo/index.js +18 -3
- package/package.json +1 -1
- package/src/components/dialog/index.scss +1 -1
- package/src/components/form/form-fields/duties/index.tsx +1 -1
- package/src/components/form/form-fields/input/index.tsx +2 -2
- package/src/components/form/form-fields/input-verification-code/index.tsx +100 -70
- package/src/components/form/form-fields/password/index.scss +20 -4
- package/src/components/form/form-fields/password/index.tsx +73 -51
- package/src/components/form/index.tsx +3 -1
- package/src/components/table/index.scss +1 -0
- package/src/components/upload-photo-modal/constant.ts +7 -1
- package/src/components/upload-photo-modal/index.scss +1 -2
- package/src/components/upload-photo-modal/index.tsx +53 -156
- package/src/components/user-selector/export-modules/duties-selector/index.tsx +1 -1
- package/src/components/user-selector/request-apis.js +1 -1
- package/src/pages/personal-info/components/base-info/index.scss +26 -3
- package/src/pages/personal-info/components/base-info/index.tsx +12 -3
- package/src/pages/personal-info/components/{edit-info → edit-base-info}/index.scss +1 -1
- package/src/pages/personal-info/components/{edit-info → edit-base-info}/index.tsx +2 -4
- package/src/pages/personal-info/components/person-photo/index.scss +17 -5
- package/src/pages/personal-info/components/person-photo/index.tsx +12 -4
- package/lib/pages/personal-info/components/edit-info/input/index.css +0 -89
- package/lib/pages/personal-info/components/edit-info/input/index.js +0 -199
- package/src/pages/personal-info/components/edit-info/input/index.scss +0 -82
- package/src/pages/personal-info/components/edit-info/input/index.tsx +0 -145
|
@@ -160,7 +160,8 @@ var _default = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
|
|
|
160
160
|
}),
|
|
161
161
|
getTooltipContainer: getContainer
|
|
162
162
|
}, /*#__PURE__*/_react["default"].createElement(_dutiesSelector["default"], {
|
|
163
|
-
ref: dutiedPopRef
|
|
163
|
+
ref: dutiedPopRef // @ts-ignore
|
|
164
|
+
,
|
|
164
165
|
multiple: false // position="bottomLeft"
|
|
165
166
|
,
|
|
166
167
|
position: "centerRight",
|
|
@@ -159,7 +159,7 @@ var _default = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
|
|
|
159
159
|
});
|
|
160
160
|
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
161
161
|
className: (0, _classnames["default"])(preCls, _defineProperty({}, "".concat(preCls, "-row"), layout === 'row'), className)
|
|
162
|
-
}, /*#__PURE__*/_react["default"].createElement("div", {
|
|
162
|
+
}, !!label && /*#__PURE__*/_react["default"].createElement("div", {
|
|
163
163
|
className: (0, _classnames["default"])("".concat(preCls, "__label"))
|
|
164
164
|
}, /*#__PURE__*/_react["default"].createElement("span", {
|
|
165
165
|
className: (0, _classnames["default"])("".concat(preCls, "__label-text"))
|
|
@@ -35,7 +35,7 @@ function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Sy
|
|
|
35
35
|
|
|
36
36
|
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
37
37
|
|
|
38
|
-
var preCls =
|
|
38
|
+
var preCls = "verification-code-input";
|
|
39
39
|
|
|
40
40
|
var OverlayInner = function OverlayInner(_ref) {
|
|
41
41
|
var hasError = _ref.hasError,
|
|
@@ -43,12 +43,12 @@ var OverlayInner = function OverlayInner(_ref) {
|
|
|
43
43
|
tip = _ref.tip;
|
|
44
44
|
if (hasActive) return /*#__PURE__*/_react["default"].createElement("span", {
|
|
45
45
|
style: {
|
|
46
|
-
|
|
46
|
+
color: "#3F4755"
|
|
47
47
|
}
|
|
48
48
|
}, tip);
|
|
49
49
|
if (hasError) return /*#__PURE__*/_react["default"].createElement("span", {
|
|
50
50
|
style: {
|
|
51
|
-
|
|
51
|
+
color: "#F05E5E"
|
|
52
52
|
}
|
|
53
53
|
}, tip);
|
|
54
54
|
return /*#__PURE__*/_react["default"].createElement("span", null);
|
|
@@ -70,7 +70,8 @@ var _default = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
|
|
|
70
70
|
_props$className = props.className,
|
|
71
71
|
className = _props$className === void 0 ? "" : _props$className,
|
|
72
72
|
_props$btnClick = props.btnClick,
|
|
73
|
-
btnClick = _props$btnClick === void 0 ? function () {} : _props$btnClick
|
|
73
|
+
btnClick = _props$btnClick === void 0 ? function () {} : _props$btnClick,
|
|
74
|
+
beforeSend = props.beforeSend;
|
|
74
75
|
var inputRef = (0, _react.useRef)();
|
|
75
76
|
|
|
76
77
|
var _useState = (0, _react.useState)(false),
|
|
@@ -83,7 +84,7 @@ var _default = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
|
|
|
83
84
|
hasActive = _useState4[0],
|
|
84
85
|
setHasActive = _useState4[1];
|
|
85
86
|
|
|
86
|
-
var _useState5 = (0, _react.useState)(
|
|
87
|
+
var _useState5 = (0, _react.useState)("获取验证码"),
|
|
87
88
|
_useState6 = _slicedToArray(_useState5, 2),
|
|
88
89
|
btn_info = _useState6[0],
|
|
89
90
|
setBtn_info = _useState6[1];
|
|
@@ -93,12 +94,12 @@ var _default = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
|
|
|
93
94
|
btnCanClick = _useState8[0],
|
|
94
95
|
setBtnCanClick = _useState8[1];
|
|
95
96
|
|
|
96
|
-
var _useState9 = (0, _react.useState)(
|
|
97
|
+
var _useState9 = (0, _react.useState)(""),
|
|
97
98
|
_useState10 = _slicedToArray(_useState9, 2),
|
|
98
99
|
tip = _useState10[0],
|
|
99
100
|
setTip = _useState10[1];
|
|
100
101
|
|
|
101
|
-
var _useState11 = (0, _react.useState)(props.value ||
|
|
102
|
+
var _useState11 = (0, _react.useState)(props.value || ""),
|
|
102
103
|
_useState12 = _slicedToArray(_useState11, 2),
|
|
103
104
|
value = _useState12[0],
|
|
104
105
|
setValue = _useState12[1];
|
|
@@ -150,15 +151,17 @@ var _default = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
|
|
|
150
151
|
setTip(errors[0].tip);
|
|
151
152
|
} else {
|
|
152
153
|
setHasError(false);
|
|
153
|
-
setTip(
|
|
154
|
+
setTip("");
|
|
154
155
|
}
|
|
155
156
|
};
|
|
156
157
|
|
|
157
158
|
var HandlerCode = function HandlerCode() {
|
|
158
|
-
|
|
159
|
+
if (beforeSend) {
|
|
160
|
+
var result = beforeSend();
|
|
161
|
+
if (!result) return;
|
|
162
|
+
}
|
|
159
163
|
|
|
160
|
-
if (
|
|
161
|
-
if (!btnCanClick || hasError) return;
|
|
164
|
+
if (!btnCanClick) return;
|
|
162
165
|
btnClick && btnClick();
|
|
163
166
|
var time = 60;
|
|
164
167
|
setBtn_info("".concat(time, "s\u91CD\u65B0\u53D1\u9001"));
|
|
@@ -166,7 +169,7 @@ var _default = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
|
|
|
166
169
|
var timer = setInterval(function () {
|
|
167
170
|
if (time === 0) {
|
|
168
171
|
clearInterval(timer);
|
|
169
|
-
setBtn_info(
|
|
172
|
+
setBtn_info("获取验证码");
|
|
170
173
|
setBtnCanClick(true);
|
|
171
174
|
} else {
|
|
172
175
|
setBtn_info("".concat(time, "s\u91CD\u65B0\u53D1\u9001"));
|
|
@@ -177,7 +180,7 @@ var _default = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
|
|
|
177
180
|
|
|
178
181
|
(0, _react.useImperativeHandle)(ref, function () {
|
|
179
182
|
return {
|
|
180
|
-
|
|
183
|
+
verifing: function verifing() {
|
|
181
184
|
var errors = _verifing();
|
|
182
185
|
|
|
183
186
|
if (errors.length) {
|
|
@@ -191,7 +194,7 @@ var _default = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
|
|
|
191
194
|
};
|
|
192
195
|
});
|
|
193
196
|
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
194
|
-
className: (0, _classnames["default"])(preCls, _defineProperty({}, "".concat(preCls, "-row"), layout ===
|
|
197
|
+
className: (0, _classnames["default"])(preCls, _defineProperty({}, "".concat(preCls, "-row"), layout === "row"), className)
|
|
195
198
|
}, /*#__PURE__*/_react["default"].createElement("div", {
|
|
196
199
|
className: (0, _classnames["default"])("".concat(preCls, "__label"))
|
|
197
200
|
}, /*#__PURE__*/_react["default"].createElement("span", {
|
|
@@ -201,7 +204,7 @@ var _default = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
|
|
|
201
204
|
}, "*")), /*#__PURE__*/_react["default"].createElement("div", {
|
|
202
205
|
className: (0, _classnames["default"])("".concat(preCls, "__border"), (_classNames2 = {}, _defineProperty(_classNames2, "".concat(preCls, "__border--error"), hasError), _defineProperty(_classNames2, "".concat(preCls, "__border--active"), hasActive), _defineProperty(_classNames2, "".concat(preCls, "__border--disabled"), disabled), _classNames2))
|
|
203
206
|
}, /*#__PURE__*/_react["default"].createElement(_errorTip["default"], {
|
|
204
|
-
placement:
|
|
207
|
+
placement: "topLeft",
|
|
205
208
|
destroyTooltipOnHide: true,
|
|
206
209
|
visible: (hasActive || hasError) && tip,
|
|
207
210
|
overlay: /*#__PURE__*/_react["default"].createElement(OverlayInner, {
|
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
.form-field-input-row {
|
|
2
|
+
display: flex;
|
|
3
|
+
align-items: center;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.form-field-input-row .form-field-input__label {
|
|
7
|
+
margin-bottom: unset;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.form-field-input-row .form-field-input__border {
|
|
11
|
+
margin-left: 16px;
|
|
12
|
+
flex: 1;
|
|
13
|
+
}
|
|
14
|
+
|
|
1
15
|
.form-field-input__label {
|
|
2
16
|
height: 22px;
|
|
3
17
|
font-size: 14px;
|
|
@@ -23,6 +37,10 @@
|
|
|
23
37
|
box-sizing: border-box;
|
|
24
38
|
}
|
|
25
39
|
|
|
40
|
+
.form-field-input__border .tu-icon-yincang {
|
|
41
|
+
cursor: pointer;
|
|
42
|
+
}
|
|
43
|
+
|
|
26
44
|
.form-field-input__border--error {
|
|
27
45
|
box-shadow: inset 0px 0px 4px 0px rgba(240, 94, 94, 0.3);
|
|
28
46
|
border: 1px solid #f05e5e;
|
|
@@ -35,7 +35,7 @@ function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Sy
|
|
|
35
35
|
|
|
36
36
|
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
37
37
|
|
|
38
|
-
var preCls =
|
|
38
|
+
var preCls = "form-field-input";
|
|
39
39
|
|
|
40
40
|
var OverlayInner = function OverlayInner(_ref) {
|
|
41
41
|
var hasError = _ref.hasError,
|
|
@@ -43,28 +43,28 @@ var OverlayInner = function OverlayInner(_ref) {
|
|
|
43
43
|
tip = _ref.tip;
|
|
44
44
|
if (hasError) return /*#__PURE__*/_react["default"].createElement("span", {
|
|
45
45
|
style: {
|
|
46
|
-
|
|
46
|
+
color: "#F05E5E"
|
|
47
47
|
}
|
|
48
48
|
}, tip);
|
|
49
49
|
if (hasActive) return /*#__PURE__*/_react["default"].createElement("span", {
|
|
50
50
|
style: {
|
|
51
|
-
|
|
51
|
+
color: "#3F4755"
|
|
52
52
|
}
|
|
53
53
|
}, tip);
|
|
54
54
|
return /*#__PURE__*/_react["default"].createElement("span", null);
|
|
55
55
|
};
|
|
56
56
|
|
|
57
57
|
var _default = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
|
|
58
|
-
var
|
|
58
|
+
var _classNames2;
|
|
59
59
|
|
|
60
60
|
var label = props.label,
|
|
61
61
|
verifies = props.verifies,
|
|
62
62
|
placeholder = props.placeholder,
|
|
63
63
|
onChange = props.onChange,
|
|
64
64
|
require = props.require,
|
|
65
|
-
type = props.type,
|
|
66
65
|
name = props.name,
|
|
67
|
-
getContainer = props.getContainer
|
|
66
|
+
getContainer = props.getContainer,
|
|
67
|
+
layout = props.layout;
|
|
68
68
|
var inputRef = (0, _react.useRef)();
|
|
69
69
|
|
|
70
70
|
var _useState = (0, _react.useState)(false),
|
|
@@ -77,15 +77,20 @@ var _default = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
|
|
|
77
77
|
hasActive = _useState4[0],
|
|
78
78
|
setHasActive = _useState4[1];
|
|
79
79
|
|
|
80
|
-
var _useState5 = (0, _react.useState)(
|
|
80
|
+
var _useState5 = (0, _react.useState)(false),
|
|
81
81
|
_useState6 = _slicedToArray(_useState5, 2),
|
|
82
|
-
|
|
83
|
-
|
|
82
|
+
showPwd = _useState6[0],
|
|
83
|
+
setShowPwd = _useState6[1];
|
|
84
84
|
|
|
85
|
-
var _useState7 = (0, _react.useState)(
|
|
85
|
+
var _useState7 = (0, _react.useState)(""),
|
|
86
86
|
_useState8 = _slicedToArray(_useState7, 2),
|
|
87
|
-
|
|
88
|
-
|
|
87
|
+
tip = _useState8[0],
|
|
88
|
+
setTip = _useState8[1];
|
|
89
|
+
|
|
90
|
+
var _useState9 = (0, _react.useState)(props.value || ""),
|
|
91
|
+
_useState10 = _slicedToArray(_useState9, 2),
|
|
92
|
+
value = _useState10[0],
|
|
93
|
+
setValue = _useState10[1];
|
|
89
94
|
|
|
90
95
|
(0, _react.useEffect)(function () {
|
|
91
96
|
setValue(props.value);
|
|
@@ -134,13 +139,13 @@ var _default = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
|
|
|
134
139
|
setTip(errors[0].tip);
|
|
135
140
|
} else {
|
|
136
141
|
setHasError(false);
|
|
137
|
-
setTip(
|
|
142
|
+
setTip("");
|
|
138
143
|
}
|
|
139
144
|
};
|
|
140
145
|
|
|
141
146
|
(0, _react.useImperativeHandle)(ref, function () {
|
|
142
147
|
return {
|
|
143
|
-
|
|
148
|
+
verifing: function verifing() {
|
|
144
149
|
var errors = _verifing();
|
|
145
150
|
|
|
146
151
|
if (errors.length) {
|
|
@@ -153,8 +158,13 @@ var _default = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
|
|
|
153
158
|
}
|
|
154
159
|
};
|
|
155
160
|
});
|
|
161
|
+
|
|
162
|
+
var onTypeChangeHandler = function onTypeChangeHandler() {
|
|
163
|
+
return setShowPwd(!showPwd);
|
|
164
|
+
};
|
|
165
|
+
|
|
156
166
|
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
157
|
-
className: (0, _classnames["default"])(preCls)
|
|
167
|
+
className: (0, _classnames["default"])(preCls, _defineProperty({}, "".concat(preCls, "-row"), layout === "row"))
|
|
158
168
|
}, /*#__PURE__*/_react["default"].createElement("div", {
|
|
159
169
|
className: (0, _classnames["default"])("".concat(preCls, "__label"))
|
|
160
170
|
}, /*#__PURE__*/_react["default"].createElement("span", {
|
|
@@ -162,9 +172,9 @@ var _default = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
|
|
|
162
172
|
}, label), require && /*#__PURE__*/_react["default"].createElement("span", {
|
|
163
173
|
className: (0, _classnames["default"])("".concat(preCls, "__label-require"))
|
|
164
174
|
}, "*")), /*#__PURE__*/_react["default"].createElement("div", {
|
|
165
|
-
className: (0, _classnames["default"])("".concat(preCls, "__border"), (
|
|
175
|
+
className: (0, _classnames["default"])("".concat(preCls, "__border"), (_classNames2 = {}, _defineProperty(_classNames2, "".concat(preCls, "__border--error"), hasError), _defineProperty(_classNames2, "".concat(preCls, "__border--active"), hasActive), _classNames2))
|
|
166
176
|
}, /*#__PURE__*/_react["default"].createElement(_errorTip["default"], {
|
|
167
|
-
placement:
|
|
177
|
+
placement: "topLeft",
|
|
168
178
|
destroyTooltipOnHide: true,
|
|
169
179
|
visible: (hasActive || hasError) && tip,
|
|
170
180
|
overlay: /*#__PURE__*/_react["default"].createElement(OverlayInner, {
|
|
@@ -173,9 +183,9 @@ var _default = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
|
|
|
173
183
|
tip: tip
|
|
174
184
|
}),
|
|
175
185
|
getTooltipContainer: getContainer
|
|
176
|
-
}, /*#__PURE__*/_react["default"].createElement("input", {
|
|
186
|
+
}, /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, /*#__PURE__*/_react["default"].createElement("input", {
|
|
177
187
|
ref: inputRef,
|
|
178
|
-
type:
|
|
188
|
+
type: showPwd ? "text" : "password",
|
|
179
189
|
className: (0, _classnames["default"])("".concat(preCls, "__input")),
|
|
180
190
|
value: value,
|
|
181
191
|
placeholder: placeholder,
|
|
@@ -183,7 +193,10 @@ var _default = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
|
|
|
183
193
|
onBlur: onBlurHandler,
|
|
184
194
|
onChange: onChangeHandler,
|
|
185
195
|
autoComplete: "off"
|
|
186
|
-
})
|
|
196
|
+
}), /*#__PURE__*/_react["default"].createElement("span", {
|
|
197
|
+
className: "tu-icon-yincang",
|
|
198
|
+
onClick: onTypeChangeHandler
|
|
199
|
+
})))));
|
|
187
200
|
});
|
|
188
201
|
|
|
189
202
|
exports["default"] = _default;
|
|
@@ -29,6 +29,8 @@ var _group = _interopRequireDefault(require("./form-fields/group"));
|
|
|
29
29
|
|
|
30
30
|
var _inputVerificationCode = _interopRequireDefault(require("./form-fields/input-verification-code"));
|
|
31
31
|
|
|
32
|
+
var _password = _interopRequireDefault(require("./form-fields/password"));
|
|
33
|
+
|
|
32
34
|
var _layout = require("./layout");
|
|
33
35
|
|
|
34
36
|
require("./index.css");
|
|
@@ -129,7 +131,8 @@ var FormFields = {
|
|
|
129
131
|
Radios: _radios["default"],
|
|
130
132
|
DropDown: _dropdown["default"],
|
|
131
133
|
GroupFields: _group["default"],
|
|
132
|
-
VerificationInput: _inputVerificationCode["default"]
|
|
134
|
+
VerificationInput: _inputVerificationCode["default"],
|
|
135
|
+
Password: _password["default"]
|
|
133
136
|
}; //@ts-ignore
|
|
134
137
|
|
|
135
138
|
Form.Fields = FormFields;
|
|
@@ -7,23 +7,29 @@ exports.List = void 0;
|
|
|
7
7
|
var List = [{
|
|
8
8
|
id: 'person',
|
|
9
9
|
accept: '.jpg,.jpeg,.gif,.png',
|
|
10
|
-
autoCropArea:
|
|
10
|
+
autoCropArea: 1,
|
|
11
11
|
initialAspectRatio: 1,
|
|
12
12
|
tips: '仅支持 jpg、jpeg、gif、png 格式 建议图片最小尺寸 150*150px',
|
|
13
|
-
previewTitle: '预览'
|
|
13
|
+
previewTitle: '预览',
|
|
14
|
+
minCropBoxHeight: 60,
|
|
15
|
+
minCropBoxWidth: 60
|
|
14
16
|
}, {
|
|
15
17
|
id: 'enterprise',
|
|
16
18
|
accept: '.jpg,.jpeg,.gif,.png',
|
|
17
19
|
autoCropArea: 1,
|
|
18
20
|
initialAspectRatio: 5,
|
|
19
21
|
tips: '建议 logo 尺寸 400*80 logo 最佳适配颜色为白色 仅支持 jpg、jpeg、gif、png 格式',
|
|
20
|
-
previewTitle: 'logo 预览'
|
|
22
|
+
previewTitle: 'logo 预览',
|
|
23
|
+
minCropBoxHeight: 20,
|
|
24
|
+
minCropBoxWidth: 20
|
|
21
25
|
}, {
|
|
22
26
|
id: 'browser',
|
|
23
27
|
accept: '',
|
|
24
28
|
autoCropArea: 0.5,
|
|
25
29
|
initialAspectRatio: 1,
|
|
26
30
|
tips: '图标尺寸 18*18,超过将被浏览器压缩',
|
|
27
|
-
previewTitle: '浏览器图标预览'
|
|
31
|
+
previewTitle: '浏览器图标预览',
|
|
32
|
+
minCropBoxHeight: 20,
|
|
33
|
+
minCropBoxWidth: 20
|
|
28
34
|
}];
|
|
29
35
|
exports.List = List;
|