shineout 1.8.0-rc.6 → 1.8.2
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/css/AnimationList/AbsoluteList.js +45 -68
- package/css/Cascader/Result.js +3 -2
- package/css/Cascader/styles/cascader.css +9 -1
- package/css/Checkbox/Group.js +6 -3
- package/css/Checkbox/index.d.ts +1 -1
- package/css/DatePicker/Month.js +7 -1
- package/css/Datum/Tree.js +2 -1
- package/css/Menu/Root.js +10 -4
- package/css/Modal/events.js +6 -3
- package/css/Rule/index.d.ts +26 -3
- package/css/Select/Result.js +5 -4
- package/css/Select/styles/select.css +8 -4
- package/css/Spin/index.d.ts +3 -1
- package/css/Table/SeperateTable.js +9 -5
- package/css/Table/index.d.ts +10 -0
- package/css/Textarea/index.d.ts +34 -23
- package/css/Tooltip/styles/tooltip.css +31 -31
- package/css/index.d.ts +1 -1
- package/css/index.js +1 -1
- package/dist/shineout.js +183 -179
- package/dist/shineout.js.map +1 -1
- package/dist/shineout.min.js +1 -1
- package/dist/theme.antd.css +1 -1
- package/dist/theme.antd2.css +1 -1
- package/dist/theme.default.css +1 -1
- package/dist/theme.shineout.css +1 -1
- package/es/AnimationList/AbsoluteList.js +46 -69
- package/es/Cascader/Result.js +3 -2
- package/es/Cascader/styles/cascader.less +11 -1
- package/es/Checkbox/Group.js +6 -3
- package/es/Checkbox/index.d.ts +1 -1
- package/es/DatePicker/Month.js +7 -1
- package/es/Datum/Tree.js +2 -1
- package/es/Menu/Root.js +9 -4
- package/es/Modal/events.js +6 -3
- package/es/Rule/index.d.ts +26 -3
- package/es/Select/Result.js +5 -4
- package/es/Select/styles/select.less +8 -3
- package/es/Spin/index.d.ts +3 -1
- package/es/Table/SeperateTable.js +9 -5
- package/es/Table/index.d.ts +10 -0
- package/es/Textarea/index.d.ts +34 -23
- package/es/Tooltip/styles/tooltip.less +7 -5
- package/es/index.d.ts +1 -1
- package/es/index.js +1 -1
- package/es/styles/themes/base.less +1 -1
- package/lib/AnimationList/AbsoluteList.js +45 -68
- package/lib/Cascader/Result.js +3 -2
- package/lib/Cascader/styles/cascader.less +11 -1
- package/lib/Checkbox/Group.js +6 -3
- package/lib/Checkbox/index.d.ts +1 -1
- package/lib/DatePicker/Month.js +7 -1
- package/lib/Datum/Tree.js +2 -1
- package/lib/Menu/Root.js +10 -4
- package/lib/Modal/events.js +6 -3
- package/lib/Rule/index.d.ts +26 -3
- package/lib/Select/Result.js +5 -4
- package/lib/Select/styles/select.less +8 -3
- package/lib/Spin/index.d.ts +3 -1
- package/lib/Table/SeperateTable.js +9 -5
- package/lib/Table/index.d.ts +10 -0
- package/lib/Textarea/index.d.ts +34 -23
- package/lib/Tooltip/styles/tooltip.less +7 -5
- package/lib/index.d.ts +1 -1
- package/lib/index.js +1 -1
- package/lib/styles/themes/base.less +1 -1
- package/package.json +1 -1
|
@@ -133,9 +133,7 @@ function _default(List) {
|
|
|
133
133
|
};
|
|
134
134
|
|
|
135
135
|
_proto.getPosition = function getPosition(rect) {
|
|
136
|
-
var
|
|
137
|
-
fixed = _this$props.fixed,
|
|
138
|
-
absolute = _this$props.absolute;
|
|
136
|
+
var fixed = this.props.fixed;
|
|
139
137
|
var position = this.props.position;
|
|
140
138
|
var rtl = (0, _config.isRTL)();
|
|
141
139
|
var style = {
|
|
@@ -156,34 +154,13 @@ function _default(List) {
|
|
|
156
154
|
position = (0, _strings.getRTLPosition)(position);
|
|
157
155
|
}
|
|
158
156
|
|
|
159
|
-
var containerScroll;
|
|
160
|
-
var containerRect;
|
|
161
157
|
var container = this.container;
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
};
|
|
169
|
-
|
|
170
|
-
if (rtl) {
|
|
171
|
-
containerScroll.width = container.scrollWidth;
|
|
172
|
-
}
|
|
173
|
-
} else {
|
|
174
|
-
containerRect = {
|
|
175
|
-
left: 0,
|
|
176
|
-
top: 0,
|
|
177
|
-
right: 0,
|
|
178
|
-
bottom: 0
|
|
179
|
-
};
|
|
180
|
-
containerScroll = _document.docScroll;
|
|
181
|
-
|
|
182
|
-
if (rtl) {
|
|
183
|
-
containerRect.width = document.documentElement.clientWidth || document.body.clientWidth;
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
|
-
|
|
158
|
+
var rootContainer = container === root || !container ? document.body : container;
|
|
159
|
+
var containerRect = rootContainer.getBoundingClientRect();
|
|
160
|
+
var containerScroll = {
|
|
161
|
+
left: rootContainer.scrollLeft,
|
|
162
|
+
top: rootContainer.scrollTop
|
|
163
|
+
};
|
|
187
164
|
this.containerRect = containerRect;
|
|
188
165
|
|
|
189
166
|
if (listPosition.includes(position)) {
|
|
@@ -202,12 +179,12 @@ function _default(List) {
|
|
|
202
179
|
if (h === 'left') {
|
|
203
180
|
style.left = rect.left - containerRect.left + containerScroll.left;
|
|
204
181
|
} else {
|
|
205
|
-
style.left = rect.right - containerRect.
|
|
182
|
+
style.left = rect.right - containerRect.left + containerScroll.left;
|
|
206
183
|
style.transform = 'translateX(-100%)';
|
|
207
184
|
}
|
|
208
185
|
|
|
209
186
|
if (v === 'bottom') {
|
|
210
|
-
style.top = rect.bottom - containerRect.
|
|
187
|
+
style.top = rect.bottom - containerRect.top + containerScroll.top + PICKER_V_MARGIN;
|
|
211
188
|
} else {
|
|
212
189
|
style.top = rect.top - containerRect.top + containerScroll.top - PICKER_V_MARGIN;
|
|
213
190
|
style.transform = style.transform ? 'translate(-100%, -100%)' : 'translateY(-100%)';
|
|
@@ -223,10 +200,10 @@ function _default(List) {
|
|
|
223
200
|
};
|
|
224
201
|
|
|
225
202
|
_proto.getStyle = function getStyle() {
|
|
226
|
-
var _this$
|
|
227
|
-
parentElement = _this$
|
|
228
|
-
scrollElement = _this$
|
|
229
|
-
focus = _this$
|
|
203
|
+
var _this$props = this.props,
|
|
204
|
+
parentElement = _this$props.parentElement,
|
|
205
|
+
scrollElement = _this$props.scrollElement,
|
|
206
|
+
focus = _this$props.focus;
|
|
230
207
|
var lazyResult = {
|
|
231
208
|
focus: focus,
|
|
232
209
|
style: this.lastStyle
|
|
@@ -263,9 +240,9 @@ function _default(List) {
|
|
|
263
240
|
};
|
|
264
241
|
|
|
265
242
|
_proto.resetPosition = function resetPosition(clean) {
|
|
266
|
-
var _this$
|
|
267
|
-
focus = _this$
|
|
268
|
-
parentElement = _this$
|
|
243
|
+
var _this$props2 = this.props,
|
|
244
|
+
focus = _this$props2.focus,
|
|
245
|
+
parentElement = _this$props2.parentElement;
|
|
269
246
|
if (!this.el || !focus || this.ajustdoc && !clean) return;
|
|
270
247
|
var pos = this.el.getBoundingClientRect();
|
|
271
248
|
var left = pos.left;
|
|
@@ -300,21 +277,21 @@ function _default(List) {
|
|
|
300
277
|
};
|
|
301
278
|
|
|
302
279
|
_proto.renderList = function renderList() {
|
|
303
|
-
var _this$
|
|
304
|
-
parentElement = _this$
|
|
305
|
-
absolute = _this$
|
|
306
|
-
focus = _this$
|
|
307
|
-
rootClass = _this$
|
|
308
|
-
position = _this$
|
|
309
|
-
scrollLeft = _this$
|
|
310
|
-
scrollTop = _this$
|
|
311
|
-
scrollElement = _this$
|
|
312
|
-
_this$
|
|
313
|
-
style = _this$
|
|
314
|
-
zIndex = _this$
|
|
315
|
-
getResetPosition = _this$
|
|
316
|
-
ignore = _this$
|
|
317
|
-
props = (0, _objectWithoutPropertiesLoose2.default)(_this$
|
|
280
|
+
var _this$props3 = this.props,
|
|
281
|
+
parentElement = _this$props3.parentElement,
|
|
282
|
+
absolute = _this$props3.absolute,
|
|
283
|
+
focus = _this$props3.focus,
|
|
284
|
+
rootClass = _this$props3.rootClass,
|
|
285
|
+
position = _this$props3.position,
|
|
286
|
+
scrollLeft = _this$props3.scrollLeft,
|
|
287
|
+
scrollTop = _this$props3.scrollTop,
|
|
288
|
+
scrollElement = _this$props3.scrollElement,
|
|
289
|
+
_this$props3$style = _this$props3.style,
|
|
290
|
+
style = _this$props3$style === void 0 ? {} : _this$props3$style,
|
|
291
|
+
zIndex = _this$props3.zIndex,
|
|
292
|
+
getResetPosition = _this$props3.getResetPosition,
|
|
293
|
+
ignore = _this$props3.autoAdapt,
|
|
294
|
+
props = (0, _objectWithoutPropertiesLoose2.default)(_this$props3, ["parentElement", "absolute", "focus", "rootClass", "position", "scrollLeft", "scrollTop", "scrollElement", "style", "zIndex", "getResetPosition", "autoAdapt"]);
|
|
318
295
|
var parsed = parseInt(zIndex, 10);
|
|
319
296
|
if (!Number.isNaN(parsed)) style.zIndex = parsed;
|
|
320
297
|
var mergeStyle = Object.assign({}, style, this.state.overdoc ? getOverDocStyle() : undefined);
|
|
@@ -339,20 +316,20 @@ function _default(List) {
|
|
|
339
316
|
}
|
|
340
317
|
|
|
341
318
|
if (!this.container) return null;
|
|
342
|
-
var _this$
|
|
343
|
-
parentElement = _this$
|
|
344
|
-
rootClass = _this$
|
|
345
|
-
absolute = _this$
|
|
346
|
-
position = _this$
|
|
347
|
-
scrollLeft = _this$
|
|
348
|
-
scrollTop = _this$
|
|
349
|
-
scrollElement = _this$
|
|
350
|
-
autoClass = _this$
|
|
351
|
-
zIndex = _this$
|
|
352
|
-
getResetPosition = _this$
|
|
353
|
-
value = _this$
|
|
354
|
-
ignore = _this$
|
|
355
|
-
props = (0, _objectWithoutPropertiesLoose2.default)(_this$
|
|
319
|
+
var _this$props4 = this.props,
|
|
320
|
+
parentElement = _this$props4.parentElement,
|
|
321
|
+
rootClass = _this$props4.rootClass,
|
|
322
|
+
absolute = _this$props4.absolute,
|
|
323
|
+
position = _this$props4.position,
|
|
324
|
+
scrollLeft = _this$props4.scrollLeft,
|
|
325
|
+
scrollTop = _this$props4.scrollTop,
|
|
326
|
+
scrollElement = _this$props4.scrollElement,
|
|
327
|
+
autoClass = _this$props4.autoClass,
|
|
328
|
+
zIndex = _this$props4.zIndex,
|
|
329
|
+
getResetPosition = _this$props4.getResetPosition,
|
|
330
|
+
value = _this$props4.value,
|
|
331
|
+
ignore = _this$props4.autoAdapt,
|
|
332
|
+
props = (0, _objectWithoutPropertiesLoose2.default)(_this$props4, ["parentElement", "rootClass", "absolute", "position", "scrollLeft", "scrollTop", "scrollElement", "autoClass", "zIndex", "getResetPosition", "value", "autoAdapt"]);
|
|
356
333
|
var mergeClass = (0, _classnames.default)((0, _styles.listClass)('absolute-wrapper'), rootClass, autoClass);
|
|
357
334
|
|
|
358
335
|
var _ref = props.focus ? this.getStyle() : {
|
package/css/Cascader/Result.js
CHANGED
|
@@ -349,11 +349,12 @@ function (_PureComponent) {
|
|
|
349
349
|
compressed = _this$props8.compressed,
|
|
350
350
|
multiple = _this$props8.multiple;
|
|
351
351
|
var result = value.length === 0 ? this.renderPlaceholder() : this.renderResult();
|
|
352
|
+
var clearEl = this.renderClear();
|
|
352
353
|
return _react.default.createElement("div", {
|
|
353
354
|
ref: this.bindResult,
|
|
354
|
-
className: (0, _styles3.cascaderClass)('result', multiple && compressed && 'compressed'),
|
|
355
|
+
className: (0, _styles3.cascaderClass)('result', multiple && compressed && 'compressed', clearEl && 'result-clearable'),
|
|
355
356
|
style: style
|
|
356
|
-
}, result, this.renderIndicator(),
|
|
357
|
+
}, result, this.renderIndicator(), clearEl);
|
|
357
358
|
};
|
|
358
359
|
|
|
359
360
|
return Result;
|
|
@@ -127,10 +127,18 @@
|
|
|
127
127
|
background-color: inherit;
|
|
128
128
|
color: inherit;
|
|
129
129
|
}
|
|
130
|
-
.so-cascader
|
|
130
|
+
.so-cascader-disabled .so-cascader-result .so-select-multi {
|
|
131
|
+
visibility: visible;
|
|
132
|
+
cursor: not-allowed;
|
|
133
|
+
}
|
|
134
|
+
.so-cascader:not(.so-cascader-disabled).so-cascader-focus .so-cascader-close,
|
|
131
135
|
.so-cascader:not(.so-cascader-disabled) .so-cascader-result:hover .so-cascader-close {
|
|
132
136
|
display: block;
|
|
133
137
|
}
|
|
138
|
+
.so-cascader:not(.so-cascader-disabled).so-cascader-focus .so-cascader-result-clearable .so-select-multi,
|
|
139
|
+
.so-cascader:not(.so-cascader-disabled) .so-cascader-result-clearable:hover .so-select-multi {
|
|
140
|
+
visibility: hidden;
|
|
141
|
+
}
|
|
134
142
|
.so-cascader-multiple .so-cascader-close {
|
|
135
143
|
right: 19px;
|
|
136
144
|
}
|
package/css/Checkbox/Group.js
CHANGED
|
@@ -108,12 +108,14 @@ function (_PureComponent) {
|
|
|
108
108
|
data = _this$props2.data,
|
|
109
109
|
datum = _this$props2.datum,
|
|
110
110
|
keygen = _this$props2.keygen,
|
|
111
|
-
children = _this$props2.children
|
|
111
|
+
children = _this$props2.children,
|
|
112
|
+
style = _this$props2.style;
|
|
112
113
|
var className = (0, _classnames.default)((0, _styles.checkinputClass)('group', ['no-block', 'block'][Number(block)]), this.props.className);
|
|
113
114
|
|
|
114
115
|
if (data === undefined) {
|
|
115
116
|
return _react.default.createElement("div", {
|
|
116
|
-
className: className
|
|
117
|
+
className: className,
|
|
118
|
+
style: style
|
|
117
119
|
}, _react.default.createElement(_context.Provider, {
|
|
118
120
|
value: {
|
|
119
121
|
onRawChange: this.handleRawChange,
|
|
@@ -123,7 +125,8 @@ function (_PureComponent) {
|
|
|
123
125
|
}
|
|
124
126
|
|
|
125
127
|
return _react.default.createElement("div", {
|
|
126
|
-
className: className
|
|
128
|
+
className: className,
|
|
129
|
+
style: style
|
|
127
130
|
}, data.map(function (d, i) {
|
|
128
131
|
return _react.default.createElement(_Checkbox.default, {
|
|
129
132
|
checked: datum.check(d),
|
package/css/Checkbox/index.d.ts
CHANGED
|
@@ -47,7 +47,7 @@ export interface CheckboxProps<T> extends StandardProps, FormItemStandardProps<T
|
|
|
47
47
|
|
|
48
48
|
// attention: checkbox group value is array
|
|
49
49
|
|
|
50
|
-
export interface CheckboxGroupProps<Data, T> extends ListItemStandardProps<Data, T
|
|
50
|
+
export interface CheckboxGroupProps<Data, T> extends ListItemStandardProps<Data, T>, Omit<FormItemStandardProps<T[]>, 'placeholder'>, StandardProps {
|
|
51
51
|
|
|
52
52
|
/**
|
|
53
53
|
* The data item
|
package/css/DatePicker/Month.js
CHANGED
|
@@ -76,7 +76,8 @@ function (_PureComponent) {
|
|
|
76
76
|
type = _this$props3.type,
|
|
77
77
|
current = _this$props3.current,
|
|
78
78
|
index = _this$props3.index,
|
|
79
|
-
rangeDate = _this$props3.rangeDate
|
|
79
|
+
rangeDate = _this$props3.rangeDate,
|
|
80
|
+
max = _this$props3.max;
|
|
80
81
|
|
|
81
82
|
var date = _utils.default.toDate(MONTHBASE);
|
|
82
83
|
|
|
@@ -84,6 +85,10 @@ function (_PureComponent) {
|
|
|
84
85
|
date.setFullYear(current.getFullYear());
|
|
85
86
|
var isDisabled = min && _utils.default.compareMonth(min, date, 1) >= 0;
|
|
86
87
|
|
|
88
|
+
if (!isDisabled) {
|
|
89
|
+
isDisabled = max && _utils.default.compareMonth(date, max, 1) >= 0;
|
|
90
|
+
}
|
|
91
|
+
|
|
87
92
|
if (!isDisabled && type === 'month' && typeof disabled === 'function') {
|
|
88
93
|
isDisabled = disabled(date);
|
|
89
94
|
}
|
|
@@ -137,6 +142,7 @@ Month.propTypes = {
|
|
|
137
142
|
current: _propTypes.default.object.isRequired,
|
|
138
143
|
disabled: _propTypes.default.func,
|
|
139
144
|
// max: PropTypes.object,
|
|
145
|
+
max: _propTypes.default.oneOfType([_propTypes.default.object, _propTypes.default.string]),
|
|
140
146
|
min: _propTypes.default.oneOfType([_propTypes.default.object, _propTypes.default.string]),
|
|
141
147
|
onChange: _propTypes.default.func.isRequired,
|
|
142
148
|
onModeChange: _propTypes.default.func.isRequired,
|
package/css/Datum/Tree.js
CHANGED
|
@@ -303,7 +303,8 @@ function () {
|
|
|
303
303
|
var id = _this5.getKey(d, path[path.length - 1], i);
|
|
304
304
|
|
|
305
305
|
if (_this5.dataMap.get(id)) {
|
|
306
|
-
console.
|
|
306
|
+
console.error("There is already a key \"" + id + "\" exists. The key must be unique.");
|
|
307
|
+
return;
|
|
307
308
|
}
|
|
308
309
|
|
|
309
310
|
_this5.dataMap.set(id, d);
|
package/css/Menu/Root.js
CHANGED
|
@@ -37,6 +37,8 @@ var _is = require("../utils/is");
|
|
|
37
37
|
|
|
38
38
|
var _config = require("../config");
|
|
39
39
|
|
|
40
|
+
var _component = require("../component");
|
|
41
|
+
|
|
40
42
|
var modeDirection = {
|
|
41
43
|
'vertical-auto': 'y',
|
|
42
44
|
vertical: 'y',
|
|
@@ -78,13 +80,13 @@ function keyToMap(keys, value) {
|
|
|
78
80
|
|
|
79
81
|
var Root =
|
|
80
82
|
/*#__PURE__*/
|
|
81
|
-
function (
|
|
82
|
-
(0, _inheritsLoose2.default)(Root,
|
|
83
|
+
function (_Component) {
|
|
84
|
+
(0, _inheritsLoose2.default)(Root, _Component);
|
|
83
85
|
|
|
84
86
|
function Root(props) {
|
|
85
87
|
var _this;
|
|
86
88
|
|
|
87
|
-
_this =
|
|
89
|
+
_this = _Component.call(this, props) || this;
|
|
88
90
|
_this.state = {
|
|
89
91
|
activeKey: null,
|
|
90
92
|
scrollTop: 0,
|
|
@@ -115,6 +117,8 @@ function (_React$Component) {
|
|
|
115
117
|
var _proto = Root.prototype;
|
|
116
118
|
|
|
117
119
|
_proto.componentDidMount = function componentDidMount() {
|
|
120
|
+
_Component.prototype.componentDidMount.call(this);
|
|
121
|
+
|
|
118
122
|
this.updateState();
|
|
119
123
|
};
|
|
120
124
|
|
|
@@ -124,6 +128,8 @@ function (_React$Component) {
|
|
|
124
128
|
|
|
125
129
|
_proto.componentWillUnmount = function componentWillUnmount() {
|
|
126
130
|
this.container.removeEventListener('wheel', this.handleWheel);
|
|
131
|
+
|
|
132
|
+
_Component.prototype.componentWillUnmount.call(this);
|
|
127
133
|
};
|
|
128
134
|
|
|
129
135
|
_proto.getOpenKeys = function getOpenKeys() {
|
|
@@ -419,7 +425,7 @@ function (_React$Component) {
|
|
|
419
425
|
};
|
|
420
426
|
|
|
421
427
|
return Root;
|
|
422
|
-
}(
|
|
428
|
+
}(_component.Component);
|
|
423
429
|
|
|
424
430
|
Root.propTypes = (0, _objectSpread2.default)({}, (0, _proptypes.getProps)(_propTypes.default, 'style', 'keygen'), {
|
|
425
431
|
active: _propTypes.default.func,
|
package/css/Modal/events.js
CHANGED
|
@@ -129,10 +129,13 @@ function open(props, isPortal) {
|
|
|
129
129
|
div.style.display = 'block';
|
|
130
130
|
var parsed = parseInt(zIndex, 10);
|
|
131
131
|
if (!Number.isNaN(parsed)) div.style.zIndex = parsed;
|
|
132
|
-
var scrollWidth = window.innerWidth - _document.docSize.width;
|
|
133
132
|
var doc = document.body.parentNode;
|
|
134
|
-
|
|
135
|
-
doc.style.paddingRight
|
|
133
|
+
|
|
134
|
+
if (!doc.style.paddingRight) {
|
|
135
|
+
var scrollWidth = window.innerWidth - _document.docSize.width;
|
|
136
|
+
doc.style.overflow = 'hidden';
|
|
137
|
+
doc.style.paddingRight = scrollWidth + "px";
|
|
138
|
+
}
|
|
136
139
|
|
|
137
140
|
var handleClose = function handleClose() {
|
|
138
141
|
if (onClose) onClose();
|
package/css/Rule/index.d.ts
CHANGED
|
@@ -51,7 +51,7 @@ export interface RuleParams {
|
|
|
51
51
|
} | validFunc | any) ;
|
|
52
52
|
}
|
|
53
53
|
|
|
54
|
-
export type RuleParamsType<Value, P = any, FormData = any> = Array<RuleParams
|
|
54
|
+
export type RuleParamsType<Value, P = any, FormData = any> = Array<RuleParams | ((value?: Value, formData?: FormData, callback?: ((cbArgs: true | Error) => void), props?: P) => void) | object>
|
|
55
55
|
|
|
56
56
|
export interface RuleResult {
|
|
57
57
|
required (message?: string): Required;
|
|
@@ -82,8 +82,31 @@ export interface RuleResult {
|
|
|
82
82
|
|
|
83
83
|
}
|
|
84
84
|
|
|
85
|
-
|
|
86
|
-
|
|
85
|
+
export interface paramFunc<U> {
|
|
86
|
+
(args?: U ): {args: U, func: validFunc, message?: string}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
declare function Rule<U>() : RuleResult
|
|
90
|
+
|
|
91
|
+
declare function Rule<A extends RuleParams, U>(a: A) : {
|
|
92
|
+
[P in keyof A]: paramFunc<U>
|
|
93
|
+
} & RuleResult
|
|
94
|
+
|
|
95
|
+
declare function Rule<A extends RuleParams, B extends RuleParams, U>(a: A, b: B) : {
|
|
96
|
+
[P in keyof (A & B)]: paramFunc<U>
|
|
97
|
+
} & RuleResult
|
|
98
|
+
|
|
99
|
+
declare function Rule<A extends RuleParams, B extends RuleParams, C extends RuleParams, U>(a: A, b: B, c: C) : {
|
|
100
|
+
[P in keyof (A & B & C)]: paramFunc<U>
|
|
101
|
+
} & RuleResult
|
|
102
|
+
|
|
103
|
+
declare function Rule<A extends RuleParams, B extends RuleParams, C extends RuleParams, D extends RuleParams, U>(a: A, b: B, c: C, d: D) : {
|
|
104
|
+
[P in keyof (A & B & C & D)]: paramFunc<U>
|
|
105
|
+
} & RuleResult
|
|
106
|
+
|
|
107
|
+
declare function Rule<
|
|
108
|
+
U>(...args: RuleParams[]) : {
|
|
109
|
+
[key: string]: paramFunc<U>
|
|
87
110
|
} & RuleResult
|
|
88
111
|
|
|
89
112
|
|
package/css/Select/Result.js
CHANGED
|
@@ -362,18 +362,19 @@ function (_PureComponent) {
|
|
|
362
362
|
var showPlaceholder = this.isEmptyResult();
|
|
363
363
|
var result = showPlaceholder ? this.renderPlaceholder() : this.renderResult();
|
|
364
364
|
var rtl = (0, _config.isRTL)();
|
|
365
|
+
var clearEl = this.renderClear();
|
|
365
366
|
|
|
366
367
|
if (rtl) {
|
|
367
368
|
return _react.default.createElement("div", {
|
|
368
369
|
ref: this.bindResult,
|
|
369
|
-
className: (0, _styles.selectClass)('result', compressed && 'compressed', showPlaceholder && 'empty')
|
|
370
|
-
},
|
|
370
|
+
className: (0, _styles.selectClass)('result', compressed && 'compressed', showPlaceholder && 'empty', clearEl && 'result-clearable')
|
|
371
|
+
}, clearEl, this.renderIndicator(), result);
|
|
371
372
|
}
|
|
372
373
|
|
|
373
374
|
return _react.default.createElement("div", {
|
|
374
375
|
ref: this.bindResult,
|
|
375
|
-
className: (0, _styles.selectClass)('result', compressed && 'compressed', showPlaceholder && 'empty')
|
|
376
|
-
}, result, this.renderIndicator(),
|
|
376
|
+
className: (0, _styles.selectClass)('result', compressed && 'compressed', showPlaceholder && 'empty', clearEl && 'result-clearable')
|
|
377
|
+
}, result, this.renderIndicator(), clearEl);
|
|
377
378
|
};
|
|
378
379
|
|
|
379
380
|
return Result;
|
|
@@ -170,10 +170,6 @@
|
|
|
170
170
|
margin-top: -5px;
|
|
171
171
|
}
|
|
172
172
|
.so-select-indicator.so-select-close {
|
|
173
|
-
-webkit-box-sizing: content-box;
|
|
174
|
-
box-sizing: content-box;
|
|
175
|
-
border-left: 1px solid #fff;
|
|
176
|
-
border-right: 1px solid #fff;
|
|
177
173
|
display: none;
|
|
178
174
|
background: var(--select-clear-bg-color, #94a1ae);
|
|
179
175
|
border-radius: 6px;
|
|
@@ -247,6 +243,10 @@
|
|
|
247
243
|
.so-select-result:hover .so-select-close {
|
|
248
244
|
display: block;
|
|
249
245
|
}
|
|
246
|
+
.so-select-focus .so-select-result-clearable .so-select-multi,
|
|
247
|
+
.so-select-result-clearable:hover .so-select-multi {
|
|
248
|
+
visibility: hidden;
|
|
249
|
+
}
|
|
250
250
|
.so-select-focus .so-select-caret {
|
|
251
251
|
-webkit-transform: rotate(180deg);
|
|
252
252
|
-ms-transform: rotate(180deg);
|
|
@@ -512,6 +512,10 @@ span.so-select-option {
|
|
|
512
512
|
.so-select-disabled .so-select-result .so-select-item .so-select-close {
|
|
513
513
|
display: none;
|
|
514
514
|
}
|
|
515
|
+
.so-select-disabled .so-select-result .so-select-multi {
|
|
516
|
+
visibility: visible;
|
|
517
|
+
cursor: not-allowed;
|
|
518
|
+
}
|
|
515
519
|
.so-select-root {
|
|
516
520
|
position: absolute;
|
|
517
521
|
top: 0;
|
package/css/Spin/index.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import * as React from 'react'
|
|
2
2
|
import { ReactNode } from 'react'
|
|
3
|
+
import { StandardProps } from '../@types/common'
|
|
4
|
+
|
|
3
5
|
|
|
4
6
|
type SpinName = 'default' |
|
|
5
7
|
'chasing-dots' |
|
|
@@ -19,7 +21,7 @@ declare class Spin extends React.Component<SpinProps, {}> {
|
|
|
19
21
|
render(): JSX.Element;
|
|
20
22
|
}
|
|
21
23
|
|
|
22
|
-
export interface SpinProps {
|
|
24
|
+
export interface SpinProps extends StandardProps{
|
|
23
25
|
|
|
24
26
|
/**
|
|
25
27
|
* color
|
|
@@ -344,13 +344,17 @@ function (_PureComponent) {
|
|
|
344
344
|
|
|
345
345
|
|
|
346
346
|
if (treeColumnsName && changedByExpand) {
|
|
347
|
+
// Blank space may appear after clicking the top or bottom collapse button
|
|
347
348
|
if (fullHeight - this.lastScrollTop < (1 - this.lastScrollArgs[1]) * scrollHeight) {
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
349
|
+
if (fullHeight <= scrollHeight) {
|
|
350
|
+
index = 0;
|
|
351
|
+
} else {
|
|
352
|
+
this.tbody.style.marginTop = scrollHeight + "px";
|
|
353
|
+
(0, _translate.setTranslate)(this.tbody, "-" + offsetLeft + "px", "-" + fullHeight + "px");
|
|
354
|
+
this.lastScrollTop = fullHeight;
|
|
355
|
+
return;
|
|
356
|
+
}
|
|
351
357
|
}
|
|
352
|
-
|
|
353
|
-
return;
|
|
354
358
|
}
|
|
355
359
|
|
|
356
360
|
if (index === 0) {
|
package/css/Table/index.d.ts
CHANGED
|
@@ -532,6 +532,16 @@ export interface TableProps<Value, TRD> extends StandardProps, ListItemStandardP
|
|
|
532
532
|
* default: false
|
|
533
533
|
*/
|
|
534
534
|
hideHeader?: boolean
|
|
535
|
+
|
|
536
|
+
/**
|
|
537
|
+
* make all columns scalable
|
|
538
|
+
*
|
|
539
|
+
* 使所有列可伸缩
|
|
540
|
+
*
|
|
541
|
+
* default: false
|
|
542
|
+
*/
|
|
543
|
+
columnResizable?: boolean
|
|
544
|
+
|
|
535
545
|
}
|
|
536
546
|
|
|
537
547
|
declare class Table<Value = any, TRD = TableRowData> extends React.Component<TableProps<Value, TRD>, {}> {
|
package/css/Textarea/index.d.ts
CHANGED
|
@@ -2,24 +2,24 @@ import * as React from 'react'
|
|
|
2
2
|
import { StandardProps, RegularAttributes, FormItemStandardProps } from '../@types/common'
|
|
3
3
|
|
|
4
4
|
export interface TextareaProps<Value> extends
|
|
5
|
-
StandardProps,
|
|
5
|
+
StandardProps,
|
|
6
6
|
FormItemStandardProps<Value>
|
|
7
7
|
{
|
|
8
8
|
|
|
9
9
|
/**
|
|
10
10
|
* show border bottom
|
|
11
|
-
*
|
|
11
|
+
*
|
|
12
12
|
* 仅仅展示下边框
|
|
13
|
-
*
|
|
13
|
+
*
|
|
14
14
|
* default: false
|
|
15
15
|
*/
|
|
16
16
|
underline?: boolean;
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
19
|
* Whether the height changes automatically with the content
|
|
20
|
-
*
|
|
20
|
+
*
|
|
21
21
|
* 高度是否随内容自动变化
|
|
22
|
-
*
|
|
22
|
+
*
|
|
23
23
|
* default: false
|
|
24
24
|
*/
|
|
25
25
|
autosize?: boolean;
|
|
@@ -27,76 +27,87 @@ FormItemStandardProps<Value>
|
|
|
27
27
|
|
|
28
28
|
/**
|
|
29
29
|
* User input triggers onChange and to check interval, unit: ms.
|
|
30
|
-
*
|
|
30
|
+
*
|
|
31
31
|
* 用户输入触发 onChange 和校验间隔时间,单位 毫秒。
|
|
32
|
-
*
|
|
32
|
+
*
|
|
33
33
|
* default: 400
|
|
34
34
|
*/
|
|
35
35
|
delay?: number;
|
|
36
36
|
|
|
37
37
|
/**
|
|
38
38
|
* Infomation
|
|
39
|
-
*
|
|
39
|
+
*
|
|
40
40
|
* 提示信息
|
|
41
|
-
*
|
|
41
|
+
*
|
|
42
42
|
* default: -
|
|
43
43
|
*/
|
|
44
44
|
info?: ((value: string) => string) | number;
|
|
45
45
|
|
|
46
46
|
/**
|
|
47
47
|
* The callback function for enter key
|
|
48
|
-
*
|
|
48
|
+
*
|
|
49
49
|
* 回车键回调函数
|
|
50
|
-
*
|
|
51
|
-
* default:
|
|
50
|
+
*
|
|
51
|
+
* default:
|
|
52
52
|
*/
|
|
53
53
|
onEnterPress?: (value: Value) => void;
|
|
54
54
|
|
|
55
55
|
/**
|
|
56
56
|
* The position where the message pops up
|
|
57
|
-
*
|
|
57
|
+
*
|
|
58
58
|
* 信息弹出位置
|
|
59
|
-
*
|
|
60
|
-
* default:
|
|
59
|
+
*
|
|
60
|
+
* default:
|
|
61
61
|
*/
|
|
62
62
|
popover?: RegularAttributes.Position;
|
|
63
63
|
|
|
64
64
|
/**
|
|
65
65
|
* The minimum row height. Same as native textarea rows property.
|
|
66
|
-
*
|
|
66
|
+
*
|
|
67
67
|
* 最小行高,同原生 textarea rows 属性
|
|
68
|
-
*
|
|
68
|
+
*
|
|
69
69
|
* default: 4
|
|
70
70
|
*/
|
|
71
71
|
rows?: number;
|
|
72
72
|
|
|
73
73
|
/**
|
|
74
74
|
* the maxHeight of the textarea, scroll bars appear after more than
|
|
75
|
-
*
|
|
75
|
+
*
|
|
76
76
|
* 输入框的最大高度, 超过之后会出现滚动条
|
|
77
|
-
*
|
|
77
|
+
*
|
|
78
78
|
* default: -
|
|
79
79
|
*/
|
|
80
80
|
maxHeight?: number | string;
|
|
81
81
|
|
|
82
82
|
/**
|
|
83
83
|
* When trim is true, blank characters are automatically deleted when lose focus。
|
|
84
|
-
*
|
|
84
|
+
*
|
|
85
85
|
* trim 为 true 时,失去焦点时会自动删除空白字符。
|
|
86
|
-
*
|
|
86
|
+
*
|
|
87
87
|
* default: false
|
|
88
88
|
*/
|
|
89
89
|
trim?: boolean;
|
|
90
90
|
|
|
91
91
|
/**
|
|
92
92
|
* support resize
|
|
93
|
-
*
|
|
93
|
+
*
|
|
94
94
|
* 是否可以伸缩高度
|
|
95
|
-
*
|
|
95
|
+
*
|
|
96
96
|
* default: false
|
|
97
97
|
*/
|
|
98
98
|
resize?: boolean;
|
|
99
99
|
|
|
100
|
+
/**
|
|
101
|
+
* disabled
|
|
102
|
+
*
|
|
103
|
+
* 禁用
|
|
104
|
+
*
|
|
105
|
+
* default: false
|
|
106
|
+
*/
|
|
107
|
+
disabled?: boolean;
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
|
|
100
111
|
}
|
|
101
112
|
|
|
102
113
|
declare class Textarea<Value = any> extends React.Component<TextareaProps<Value>, {}> {}
|