@douyinfe/semi-ui 2.21.0-alpha.0 → 2.21.0-beta.1

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.
Files changed (60) hide show
  1. package/README.md +4 -4
  2. package/dist/css/semi.css +7 -0
  3. package/dist/css/semi.min.css +1 -1
  4. package/dist/umd/semi-ui.js +489 -446
  5. package/dist/umd/semi-ui.js.map +1 -1
  6. package/dist/umd/semi-ui.min.js +1 -1
  7. package/dist/umd/semi-ui.min.js.map +1 -1
  8. package/lib/cjs/anchor/index.d.ts +1 -1
  9. package/lib/cjs/autoComplete/index.d.ts +4 -1
  10. package/lib/cjs/autoComplete/index.js +6 -1
  11. package/lib/cjs/breadcrumb/item.js +1 -0
  12. package/lib/cjs/button/buttonGroup.js +14 -9
  13. package/lib/cjs/datePicker/datePicker.d.ts +2 -2
  14. package/lib/cjs/datePicker/monthsGrid.d.ts +1 -1
  15. package/lib/cjs/datePicker/quickControl.d.ts +1 -1
  16. package/lib/cjs/datePicker/yearAndMonth.d.ts +1 -1
  17. package/lib/cjs/dropdown/index.d.ts +1 -1
  18. package/lib/cjs/dropdown/index.js +2 -1
  19. package/lib/cjs/form/baseForm.d.ts +1 -1
  20. package/lib/cjs/form/field.d.ts +1 -1
  21. package/lib/cjs/form/hoc/withField.js +7 -4
  22. package/lib/cjs/inputNumber/index.js +1 -1
  23. package/lib/cjs/modal/ModalContent.js +9 -2
  24. package/lib/cjs/navigation/Footer.js +2 -2
  25. package/lib/cjs/navigation/OpenIconTransition.js +1 -0
  26. package/lib/cjs/navigation/SubNav.js +6 -2
  27. package/lib/cjs/popover/index.d.ts +1 -1
  28. package/lib/cjs/select/index.d.ts +1 -1
  29. package/lib/cjs/table/Body/index.js +1 -1
  30. package/lib/cjs/table/Table.d.ts +1 -1
  31. package/lib/cjs/timeline/index.js +1 -0
  32. package/lib/cjs/tooltip/index.d.ts +1 -1
  33. package/lib/cjs/typography/title.d.ts +1 -1
  34. package/lib/es/anchor/index.d.ts +1 -1
  35. package/lib/es/autoComplete/index.d.ts +4 -1
  36. package/lib/es/autoComplete/index.js +6 -1
  37. package/lib/es/breadcrumb/item.js +1 -0
  38. package/lib/es/button/buttonGroup.js +14 -9
  39. package/lib/es/datePicker/datePicker.d.ts +2 -2
  40. package/lib/es/datePicker/monthsGrid.d.ts +1 -1
  41. package/lib/es/datePicker/quickControl.d.ts +1 -1
  42. package/lib/es/datePicker/yearAndMonth.d.ts +1 -1
  43. package/lib/es/dropdown/index.d.ts +1 -1
  44. package/lib/es/dropdown/index.js +2 -1
  45. package/lib/es/form/baseForm.d.ts +1 -1
  46. package/lib/es/form/field.d.ts +1 -1
  47. package/lib/es/form/hoc/withField.js +8 -5
  48. package/lib/es/inputNumber/index.js +1 -1
  49. package/lib/es/modal/ModalContent.js +8 -2
  50. package/lib/es/navigation/Footer.js +2 -2
  51. package/lib/es/navigation/OpenIconTransition.js +1 -0
  52. package/lib/es/navigation/SubNav.js +6 -2
  53. package/lib/es/popover/index.d.ts +1 -1
  54. package/lib/es/select/index.d.ts +1 -1
  55. package/lib/es/table/Body/index.js +1 -1
  56. package/lib/es/table/Table.d.ts +1 -1
  57. package/lib/es/timeline/index.js +1 -0
  58. package/lib/es/tooltip/index.d.ts +1 -1
  59. package/lib/es/typography/title.d.ts +1 -1
  60. package/package.json +7 -7
@@ -48,7 +48,7 @@ declare class Anchor extends BaseComponent<AnchorProps, AnchorState> {
48
48
  offsetTop: PropTypes.Requireable<number>;
49
49
  targetOffset: PropTypes.Requireable<number>;
50
50
  showTooltip: PropTypes.Requireable<boolean>;
51
- position: PropTypes.Requireable<"top" | "topLeft" | "topRight" | "left" | "leftTop" | "leftBottom" | "right" | "rightTop" | "rightBottom" | "bottom" | "bottomLeft" | "bottomRight" | "leftTopOver" | "rightTopOver">;
51
+ position: PropTypes.Requireable<"left" | "top" | "right" | "bottom" | "topLeft" | "topRight" | "leftTop" | "leftBottom" | "rightTop" | "rightBottom" | "bottomLeft" | "bottomRight" | "leftTopOver" | "rightTopOver">;
52
52
  maxWidth: PropTypes.Requireable<string | number>;
53
53
  maxHeight: PropTypes.Requireable<string | number>;
54
54
  getContainer: PropTypes.Requireable<(...args: any[]) => any>;
@@ -55,6 +55,7 @@ export interface AutoCompleteProps<T extends AutoCompleteItems> {
55
55
  onChangeWithObject?: boolean;
56
56
  onSelectWithObject?: boolean;
57
57
  onDropdownVisibleChange?: (visible: boolean) => void;
58
+ onKeyDown?: (e: React.KeyboardEvent<HTMLInputElement>) => void;
58
59
  prefix?: React.ReactNode;
59
60
  placeholder?: string;
60
61
  position?: Position;
@@ -113,7 +114,8 @@ declare class AutoComplete<T extends AutoCompleteItems> extends BaseComponent<Au
113
114
  onBlur: PropTypes.Requireable<(...args: any[]) => any>;
114
115
  onFocus: PropTypes.Requireable<(...args: any[]) => any>;
115
116
  onChange: PropTypes.Requireable<(...args: any[]) => any>;
116
- position: PropTypes.Requireable<"top" | "topLeft" | "topRight" | "left" | "leftTop" | "leftBottom" | "right" | "rightTop" | "rightBottom" | "bottom" | "bottomLeft" | "bottomRight" | "leftTopOver" | "rightTopOver" | "leftBottomOver" | "rightBottomOver">;
117
+ onKeyDown: PropTypes.Requireable<(...args: any[]) => any>;
118
+ position: PropTypes.Requireable<"left" | "top" | "right" | "bottom" | "topLeft" | "topRight" | "leftTop" | "leftBottom" | "rightTop" | "rightBottom" | "bottomLeft" | "bottomRight" | "leftTopOver" | "rightTopOver" | "leftBottomOver" | "rightBottomOver">;
117
119
  placeholder: PropTypes.Requireable<string>;
118
120
  prefix: PropTypes.Requireable<PropTypes.ReactNodeLike>;
119
121
  onChangeWithObject: PropTypes.Requireable<boolean>;
@@ -159,6 +161,7 @@ declare class AutoComplete<T extends AutoCompleteItems> extends BaseComponent<Au
159
161
  validateStatus: "default";
160
162
  autoFocus: boolean;
161
163
  emptyContent: null;
164
+ onKeyDown: (...args: any[]) => void;
162
165
  };
163
166
  triggerRef: React.RefObject<HTMLDivElement> | null;
164
167
  optionsRef: React.RefObject<HTMLDivElement> | null;
@@ -158,6 +158,9 @@ class AutoComplete extends _baseComponent.default {
158
158
  notifyBlur: event => {
159
159
  this.props.onBlur(event);
160
160
  },
161
+ notifyKeyDown: e => {
162
+ this.props.onKeyDown(e);
163
+ },
161
164
  rePositionDropdown: () => {
162
165
  let {
163
166
  rePosKey
@@ -380,6 +383,7 @@ AutoComplete.propTypes = {
380
383
  onBlur: _propTypes.default.func,
381
384
  onFocus: _propTypes.default.func,
382
385
  onChange: _propTypes.default.func,
386
+ onKeyDown: _propTypes.default.func,
383
387
  position: _propTypes.default.oneOf(positionSet),
384
388
  placeholder: _propTypes.default.string,
385
389
  prefix: _propTypes.default.node,
@@ -425,7 +429,8 @@ AutoComplete.defaultProps = {
425
429
  maxHeight: 300,
426
430
  validateStatus: 'default',
427
431
  autoFocus: false,
428
- emptyContent: null // onPressEnter: () => undefined,
432
+ emptyContent: null,
433
+ onKeyDown: _noop2.default // onPressEnter: () => undefined,
429
434
  // defaultOpen: false,
430
435
 
431
436
  };
@@ -50,6 +50,7 @@ class BreadcrumbItem extends _baseComponent.default {
50
50
  const className = "".concat(clsPrefix, "-item-icon");
51
51
 
52
52
  if ( /*#__PURE__*/_react.default.isValidElement(iconType)) {
53
+ //@ts-ignore
53
54
  return /*#__PURE__*/_react.default.cloneElement(iconType, {
54
55
  className,
55
56
  size: iconSize
@@ -45,7 +45,7 @@ class ButtonGroup extends _baseComponent.default {
45
45
  let lineCls = "".concat(prefixCls, "-group-line");
46
46
 
47
47
  if (inner.length > 1) {
48
- inner.slice(0, -1).forEach(item => {
48
+ inner.slice(0, -1).forEach((item, index) => {
49
49
  const isButtonType = (0, _get2.default)(item, 'type.elementType') === 'Button';
50
50
  const buttonProps = (0, _get2.default)(item, 'props');
51
51
 
@@ -62,7 +62,8 @@ class ButtonGroup extends _baseComponent.default {
62
62
 
63
63
  if (isButtonType) {
64
64
  innerWithLine.push(item, /*#__PURE__*/_react.default.createElement("span", {
65
- className: lineCls
65
+ className: lineCls,
66
+ key: "line-".concat(index)
66
67
  }));
67
68
  } else {
68
69
  innerWithLine.push(item);
@@ -93,13 +94,17 @@ class ButtonGroup extends _baseComponent.default {
93
94
  const cls = (0, _classnames.default)("".concat(prefixCls, "-group"), className);
94
95
 
95
96
  if (children) {
96
- inner = (Array.isArray(children) ? children : [children]).map((itm, index) => /*#__PURE__*/(0, _react.isValidElement)(itm) ? /*#__PURE__*/(0, _react.cloneElement)(itm, Object.assign(Object.assign(Object.assign({
97
- disabled,
98
- size,
99
- type
100
- }, itm.props), rest), {
101
- key: index
102
- })) : itm);
97
+ inner = (Array.isArray(children) ? children : [children]).map((itm, index) => {
98
+ var _a;
99
+
100
+ return /*#__PURE__*/(0, _react.isValidElement)(itm) ? /*#__PURE__*/(0, _react.cloneElement)(itm, Object.assign(Object.assign(Object.assign({
101
+ disabled,
102
+ size,
103
+ type
104
+ }, itm.props), rest), {
105
+ key: (_a = itm.key) !== null && _a !== void 0 ? _a : index
106
+ })) : itm;
107
+ });
103
108
  innerWithLine = this.getInnerWithLine(inner);
104
109
  }
105
110
 
@@ -56,7 +56,7 @@ export default class DatePicker extends BaseComponent<DatePickerProps, DatePicke
56
56
  max: PropTypes.Requireable<number>;
57
57
  placeholder: PropTypes.Requireable<string | any[]>;
58
58
  presets: PropTypes.Requireable<any[]>;
59
- presetPosition: PropTypes.Requireable<"top" | "left" | "right" | "bottom">;
59
+ presetPosition: PropTypes.Requireable<"left" | "top" | "right" | "bottom">;
60
60
  onChange: PropTypes.Requireable<(...args: any[]) => any>;
61
61
  onChangeWithDateFirst: PropTypes.Requireable<boolean>;
62
62
  weekStartsOn: PropTypes.Requireable<number>;
@@ -73,7 +73,7 @@ export default class DatePicker extends BaseComponent<DatePickerProps, DatePicke
73
73
  insetLabel: PropTypes.Requireable<PropTypes.ReactNodeLike>;
74
74
  insetLabelId: PropTypes.Requireable<string>;
75
75
  zIndex: PropTypes.Requireable<number>;
76
- position: PropTypes.Requireable<"top" | "topLeft" | "topRight" | "left" | "leftTop" | "leftBottom" | "right" | "rightTop" | "rightBottom" | "bottom" | "bottomLeft" | "bottomRight" | "leftTopOver" | "rightTopOver">;
76
+ position: PropTypes.Requireable<"left" | "top" | "right" | "bottom" | "topLeft" | "topRight" | "leftTop" | "leftBottom" | "rightTop" | "rightBottom" | "bottomLeft" | "bottomRight" | "leftTopOver" | "rightTopOver">;
77
77
  getPopupContainer: PropTypes.Requireable<(...args: any[]) => any>;
78
78
  onCancel: PropTypes.Requireable<(...args: any[]) => any>;
79
79
  onConfirm: PropTypes.Requireable<(...args: any[]) => any>;
@@ -50,7 +50,7 @@ export default class MonthsGrid extends BaseComponent<MonthsGridProps, MonthsGri
50
50
  onPanelChange: PropTypes.Requireable<(...args: any[]) => any>;
51
51
  focusRecordsRef: PropTypes.Requireable<object>;
52
52
  triggerRender: PropTypes.Requireable<(...args: any[]) => any>;
53
- presetPosition: PropTypes.Requireable<"top" | "left" | "right" | "bottom">;
53
+ presetPosition: PropTypes.Requireable<"left" | "top" | "right" | "bottom">;
54
54
  renderQuickControls: PropTypes.Requireable<PropTypes.ReactNodeLike>;
55
55
  renderDateInput: PropTypes.Requireable<PropTypes.ReactNodeLike>;
56
56
  };
@@ -13,7 +13,7 @@ export interface QuickControlProps {
13
13
  declare class QuickControl extends PureComponent<QuickControlProps> {
14
14
  static propTypes: {
15
15
  presets: PropTypes.Requireable<any[]>;
16
- presetPosition: PropTypes.Requireable<"top" | "left" | "right" | "bottom">;
16
+ presetPosition: PropTypes.Requireable<"left" | "top" | "right" | "bottom">;
17
17
  onPresetClick: PropTypes.Requireable<(...args: any[]) => any>;
18
18
  type: PropTypes.Requireable<string>;
19
19
  insetInput: PropTypes.Requireable<boolean>;
@@ -20,7 +20,7 @@ declare class YearAndMonth extends BaseComponent<YearAndMonthProps, YearAndMonth
20
20
  noBackBtn: PropTypes.Requireable<boolean>;
21
21
  disabledDate: PropTypes.Requireable<(...args: any[]) => any>;
22
22
  density: PropTypes.Requireable<string>;
23
- presetPosition: PropTypes.Requireable<"top" | "left" | "right" | "bottom">;
23
+ presetPosition: PropTypes.Requireable<"left" | "top" | "right" | "bottom">;
24
24
  renderQuickControls: PropTypes.Requireable<PropTypes.ReactNodeLike>;
25
25
  renderDateInput: PropTypes.Requireable<PropTypes.ReactNodeLike>;
26
26
  };
@@ -59,7 +59,7 @@ declare class Dropdown extends BaseComponent<DropdownProps, DropdownState> {
59
59
  render: PropTypes.Requireable<PropTypes.ReactNodeLike>;
60
60
  children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
61
61
  visible: PropTypes.Requireable<boolean>;
62
- position: PropTypes.Requireable<"top" | "topLeft" | "topRight" | "left" | "leftTop" | "leftBottom" | "right" | "rightTop" | "rightBottom" | "bottom" | "bottomLeft" | "bottomRight" | "leftTopOver" | "rightTopOver" | "leftBottomOver" | "rightBottomOver">;
62
+ position: PropTypes.Requireable<"left" | "top" | "right" | "bottom" | "topLeft" | "topRight" | "leftTop" | "leftBottom" | "rightTop" | "rightBottom" | "bottomLeft" | "bottomRight" | "leftTopOver" | "rightTopOver" | "leftBottomOver" | "rightBottomOver">;
63
63
  getPopupContainer: PropTypes.Requireable<(...args: any[]) => any>;
64
64
  mouseEnterDelay: PropTypes.Requireable<number>;
65
65
  mouseLeaveDelay: PropTypes.Requireable<number>;
@@ -229,6 +229,7 @@ class Dropdown extends _baseComponent.default {
229
229
  showArrow: false,
230
230
  returnFocusOnClose: true
231
231
  }, attr), /*#__PURE__*/_react.default.isValidElement(children) ? /*#__PURE__*/_react.default.cloneElement(children, {
232
+ //@ts-ignore
232
233
  className: (0, _classnames.default)((0, _get2.default)(children, 'props.className'), {
233
234
  ["".concat(prefixCls, "-showing")]: popVisible
234
235
  }),
@@ -237,7 +238,7 @@ class Dropdown extends _baseComponent.default {
237
238
  onKeyDown: e => {
238
239
  this.foundation.handleKeyDown(e);
239
240
  const childrenKeyDown = (0, _get2.default)(children, 'props.onKeyDown');
240
- childrenKeyDown && childrenKeyDown();
241
+ childrenKeyDown && childrenKeyDown(e);
241
242
  }
242
243
  }) : children);
243
244
  }
@@ -80,7 +80,7 @@ declare class Form extends BaseComponent<BaseFormProps, BaseFormState> {
80
80
  emptyContent?: React.ReactNode;
81
81
  onDropdownVisibleChange?: (visible: boolean) => void;
82
82
  zIndex?: number;
83
- position?: "top" | "topLeft" | "topRight" | "left" | "leftTop" | "leftBottom" | "right" | "rightTop" | "rightBottom" | "bottom" | "bottomLeft" | "bottomRight" | "leftTopOver" | "rightTopOver" | "leftBottomOver" | "rightBottomOver";
83
+ position?: "left" | "top" | "right" | "bottom" | "topLeft" | "topRight" | "leftTop" | "leftBottom" | "rightTop" | "rightBottom" | "bottomLeft" | "bottomRight" | "leftTopOver" | "rightTopOver" | "leftBottomOver" | "rightBottomOver";
84
84
  onSearch?: (value: string) => void;
85
85
  dropdownClassName?: string;
86
86
  dropdownStyle?: React.CSSProperties;
@@ -28,7 +28,7 @@ declare const FormSelect: import("react").ComponentType<import("utility-types").
28
28
  emptyContent?: import("react").ReactNode;
29
29
  onDropdownVisibleChange?: (visible: boolean) => void;
30
30
  zIndex?: number;
31
- position?: "top" | "topLeft" | "topRight" | "left" | "leftTop" | "leftBottom" | "right" | "rightTop" | "rightBottom" | "bottom" | "bottomLeft" | "bottomRight" | "leftTopOver" | "rightTopOver" | "leftBottomOver" | "rightBottomOver";
31
+ position?: "left" | "top" | "right" | "bottom" | "topLeft" | "topRight" | "leftTop" | "leftBottom" | "rightTop" | "rightBottom" | "bottomLeft" | "bottomRight" | "leftTopOver" | "rightTopOver" | "leftBottomOver" | "rightBottomOver";
32
32
  onSearch?: (value: string) => void;
33
33
  dropdownClassName?: string;
34
34
  dropdownStyle?: import("react").CSSProperties;
@@ -36,7 +36,10 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
36
36
  function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
37
37
 
38
38
  /* eslint-disable max-lines-per-function, react-hooks/rules-of-hooks, prefer-const, max-len */
39
- const prefix = _constants.cssClasses.PREFIX;
39
+ const prefix = _constants.cssClasses.PREFIX; // To avoid useLayoutEffect warning when ssr, refer: https://gist.github.com/gaearon/e7d97cdf38a2907924ea12e4ebdf3c85
40
+ // Fix issue 1140
41
+
42
+ const useIsomorphicEffect = typeof window !== 'undefined' ? _react.useLayoutEffect : _react.useEffect;
40
43
  /**
41
44
  * withFiled is used to inject components
42
45
  * 1. Takes over the value and onChange of the component and synchronizes them to Form Foundation
@@ -376,12 +379,12 @@ function withField(Component, opts) {
376
379
  status
377
380
  }; // avoid hooks capture value, fixed issue 346
378
381
 
379
- (0, _react.useLayoutEffect)(() => {
382
+ useIsomorphicEffect(() => {
380
383
  rulesRef.current = rules;
381
384
  validateRef.current = validate;
382
385
  }, [rules, validate]); // exec validate once when trigger inlcude 'mount'
383
386
 
384
- (0, _react.useLayoutEffect)(() => {
387
+ useIsomorphicEffect(() => {
385
388
  if (validateOnMount) {
386
389
  fieldValidate(value);
387
390
  } // eslint-disable-next-line react-hooks/exhaustive-deps
@@ -389,7 +392,7 @@ function withField(Component, opts) {
389
392
  }, []); // register when mounted,unregister when unmounted
390
393
  // register again when field change
391
394
 
392
- (0, _react.useLayoutEffect)(() => {
395
+ useIsomorphicEffect(() => {
393
396
  // register
394
397
  if (typeof field === 'undefined') {
395
398
  // eslint-disable-next-line @typescript-eslint/no-empty-function
@@ -399,7 +399,7 @@ class InputNumber extends _baseComponent.default {
399
399
  }
400
400
  }
401
401
 
402
- if ((0, _isString2.default)(newValue) && newValue !== String(this.props.value)) {
402
+ if (newValue && (0, _isString2.default)(newValue) && newValue !== String(this.props.value)) {
403
403
  this.foundation.notifyChange(newValue, null);
404
404
  }
405
405
  }
@@ -223,7 +223,6 @@ class ModalContent extends _baseComponent.default {
223
223
  }, /*#__PURE__*/_react.default.createElement("div", {
224
224
  role: "dialog",
225
225
  ref: this.modalDialogRef,
226
- tabIndex: -1,
227
226
  "aria-modal": "true",
228
227
  "aria-labelledby": "".concat(_constants.cssClasses.DIALOG, "-title"),
229
228
  "aria-describedby": "".concat(_constants.cssClasses.DIALOG, "-body"),
@@ -323,8 +322,17 @@ class ModalContent extends _baseComponent.default {
323
322
  }
324
323
 
325
324
  componentDidMount() {
325
+ var _a;
326
+
326
327
  this.foundation.handleKeyDownEventListenerMount();
327
328
  this.foundation.modalDialogFocus();
329
+
330
+ const nodes = _FocusHandle.default.getFocusableElements(this.modalDialogRef.current);
331
+
332
+ if (!this.modalDialogRef.current.contains(document.activeElement)) {
333
+ // focus on first focusable element
334
+ (_a = nodes[0]) === null || _a === void 0 ? void 0 : _a.focus();
335
+ }
328
336
  }
329
337
 
330
338
  componentWillUnmount() {
@@ -354,7 +362,6 @@ class ModalContent extends _baseComponent.default {
354
362
  className: classList
355
363
  }, this.getMaskElement(), /*#__PURE__*/_react.default.createElement("div", {
356
364
  role: "none",
357
- tabIndex: -1,
358
365
  className: (0, _classnames.default)({
359
366
  ["".concat(_constants.cssClasses.DIALOG, "-wrap")]: true,
360
367
  ["".concat(_constants.cssClasses.DIALOG, "-wrap-center")]: this.props.centered
@@ -45,13 +45,13 @@ class NavFooter extends _react.PureComponent {
45
45
  locale,
46
46
  isCollapsed
47
47
  } = this.context;
48
- return /*#__PURE__*/_react.default.createElement(_CollapseButton.default, Object.assign({
48
+ return /*#__PURE__*/_react.default.createElement(_CollapseButton.default, {
49
49
  prefixCls: prefixCls,
50
50
  isCollapsed: isCollapsed,
51
51
  locale: locale,
52
52
  onClick: onCollapseChange,
53
53
  collapseText: collapseText
54
- }, collapseButton));
54
+ });
55
55
  };
56
56
  }
57
57
 
@@ -65,6 +65,7 @@ function OpenIconTransition() {
65
65
 
66
66
  if ( /*#__PURE__*/_react.default.isValidElement(children)) {
67
67
  return /*#__PURE__*/_react.default.cloneElement(children, {
68
+ // @ts-ignore
68
69
  style: Object.assign(Object.assign({}, children.props && children.props.style), formatedStyle)
69
70
  });
70
71
  }
@@ -151,11 +151,15 @@ class SubNav extends _baseComponent.default {
151
151
  ["".concat(prefixCls, "-item-icon-info")]: !isToggleIcon
152
152
  });
153
153
  const isOpen = this.adapter.getIsOpen();
154
- const iconElem = /*#__PURE__*/_react.default.isValidElement(icon) ? withTransition ? /*#__PURE__*/_react.default.createElement(_OpenIconTransition.default, {
154
+ const iconElem = /*#__PURE__*/_react.default.isValidElement(icon) ? withTransition ?
155
+ /*#__PURE__*/
156
+ // @ts-ignore
157
+ _react.default.createElement(_OpenIconTransition.default, {
155
158
  isOpen: isOpen
156
159
  }, /*#__PURE__*/_react.default.cloneElement(icon, {
157
160
  size: iconSize
158
- })) : /*#__PURE__*/_react.default.cloneElement(icon, {
161
+ })) //@ts-ignore
162
+ : /*#__PURE__*/_react.default.cloneElement(icon, {
159
163
  size: iconSize
160
164
  }) : null;
161
165
  return /*#__PURE__*/_react.default.createElement("i", {
@@ -53,7 +53,7 @@ declare class Popover extends React.PureComponent<PopoverProps, PopoverState> {
53
53
  visible: PropTypes.Requireable<boolean>;
54
54
  autoAdjustOverflow: PropTypes.Requireable<boolean>;
55
55
  motion: PropTypes.Requireable<boolean | object>;
56
- position: PropTypes.Requireable<"top" | "topLeft" | "topRight" | "left" | "leftTop" | "leftBottom" | "right" | "rightTop" | "rightBottom" | "bottom" | "bottomLeft" | "bottomRight" | "leftTopOver" | "rightTopOver">;
56
+ position: PropTypes.Requireable<"left" | "top" | "right" | "bottom" | "topLeft" | "topRight" | "leftTop" | "leftBottom" | "rightTop" | "rightBottom" | "bottomLeft" | "bottomRight" | "leftTopOver" | "rightTopOver">;
57
57
  mouseEnterDelay: PropTypes.Requireable<number>;
58
58
  mouseLeaveDelay: PropTypes.Requireable<number>;
59
59
  trigger: PropTypes.Validator<"hover" | "focus" | "click" | "custom">;
@@ -168,7 +168,7 @@ declare class Select extends BaseComponent<SelectProps, SelectState> {
168
168
  emptyContent: PropTypes.Requireable<PropTypes.ReactNodeLike>;
169
169
  onDropdownVisibleChange: PropTypes.Requireable<(...args: any[]) => any>;
170
170
  zIndex: PropTypes.Requireable<number>;
171
- position: PropTypes.Requireable<"top" | "topLeft" | "topRight" | "left" | "leftTop" | "leftBottom" | "right" | "rightTop" | "rightBottom" | "bottom" | "bottomLeft" | "bottomRight" | "leftTopOver" | "rightTopOver" | "leftBottomOver" | "rightBottomOver">;
171
+ position: PropTypes.Requireable<"left" | "top" | "right" | "bottom" | "topLeft" | "topRight" | "leftTop" | "leftBottom" | "rightTop" | "rightBottom" | "bottomLeft" | "bottomRight" | "leftTopOver" | "rightTopOver" | "leftBottomOver" | "rightBottomOver">;
172
172
  onSearch: PropTypes.Requireable<(...args: any[]) => any>;
173
173
  getPopupContainer: PropTypes.Requireable<(...args: any[]) => any>;
174
174
  dropdownClassName: PropTypes.Requireable<string>;
@@ -313,7 +313,7 @@ class Body extends _baseComponent.default {
313
313
  overflowY: 'auto'
314
314
  };
315
315
  const wrapCls = (0, _classnames.default)("".concat(prefixCls, "-body"));
316
- return /*#__PURE__*/_react.default.createElement(_reactWindow.VariableSizeList, Object.assign({}, virtualized, {
316
+ return /*#__PURE__*/_react.default.createElement(_reactWindow.VariableSizeList, Object.assign({}, typeof virtualized === 'object' ? virtualized : {}, {
317
317
  initialScrollOffset: this.state.cache.virtualizedScrollTop,
318
318
  onScroll: this.handleVirtualizedScroll,
319
319
  onItemsRendered: this.onItemsRendered,
@@ -300,7 +300,7 @@ declare class Table<RecordType extends Record<string, any>> extends BaseComponen
300
300
  showSizeChanger?: boolean;
301
301
  showQuickJumper?: boolean;
302
302
  popoverZIndex?: number;
303
- popoverPosition?: "top" | "topLeft" | "topRight" | "left" | "leftTop" | "leftBottom" | "right" | "rightTop" | "rightBottom" | "bottom" | "bottomLeft" | "bottomRight" | "leftTopOver" | "rightTopOver" | "leftBottomOver" | "rightBottomOver";
303
+ popoverPosition?: "left" | "top" | "right" | "bottom" | "topLeft" | "topRight" | "leftTop" | "leftBottom" | "rightTop" | "rightBottom" | "bottomLeft" | "bottomRight" | "leftTopOver" | "rightTopOver" | "leftBottomOver" | "rightBottomOver";
304
304
  hideOnSinglePage?: boolean;
305
305
  hoverShowPageSelect?: boolean;
306
306
  };
@@ -66,6 +66,7 @@ class Timeline extends _react.PureComponent {
66
66
  this.addClassName = items => _react.default.Children.map(items, (ele, idx) => {
67
67
  if ( /*#__PURE__*/_react.default.isValidElement(ele)) {
68
68
  return /*#__PURE__*/_react.default.cloneElement(ele, {
69
+ // @ts-ignore
69
70
  className: (0, _classnames.default)(ele.props.className, this.getPosCls(ele, idx))
70
71
  });
71
72
  }
@@ -81,7 +81,7 @@ export default class Tooltip extends BaseComponent<TooltipProps, TooltipState> {
81
81
  children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
82
82
  motion: PropTypes.Requireable<boolean | object>;
83
83
  autoAdjustOverflow: PropTypes.Requireable<boolean>;
84
- position: PropTypes.Requireable<"top" | "topLeft" | "topRight" | "left" | "leftTop" | "leftBottom" | "right" | "rightTop" | "rightBottom" | "bottom" | "bottomLeft" | "bottomRight" | "leftTopOver" | "rightTopOver" | "leftBottomOver" | "rightBottomOver">;
84
+ position: PropTypes.Requireable<"left" | "top" | "right" | "bottom" | "topLeft" | "topRight" | "leftTop" | "leftBottom" | "rightTop" | "rightBottom" | "bottomLeft" | "bottomRight" | "leftTopOver" | "rightTopOver" | "leftBottomOver" | "rightBottomOver">;
85
85
  getPopupContainer: PropTypes.Requireable<(...args: any[]) => any>;
86
86
  mouseEnterDelay: PropTypes.Requireable<number>;
87
87
  mouseLeaveDelay: PropTypes.Requireable<number>;
@@ -37,7 +37,7 @@ export default class Title extends PureComponent<TitleProps> {
37
37
  underline: PropTypes.Requireable<boolean>;
38
38
  strong: PropTypes.Requireable<boolean>;
39
39
  type: PropTypes.Requireable<"warning" | "success" | "primary" | "tertiary" | "secondary" | "danger" | "quaternary">;
40
- heading: PropTypes.Requireable<1 | 2 | 3 | 4 | 5 | 6>;
40
+ heading: PropTypes.Requireable<1 | 2 | 3 | 4 | 6 | 5>;
41
41
  style: PropTypes.Requireable<object>;
42
42
  className: PropTypes.Requireable<string>;
43
43
  component: PropTypes.Requireable<string>;
@@ -48,7 +48,7 @@ declare class Anchor extends BaseComponent<AnchorProps, AnchorState> {
48
48
  offsetTop: PropTypes.Requireable<number>;
49
49
  targetOffset: PropTypes.Requireable<number>;
50
50
  showTooltip: PropTypes.Requireable<boolean>;
51
- position: PropTypes.Requireable<"top" | "topLeft" | "topRight" | "left" | "leftTop" | "leftBottom" | "right" | "rightTop" | "rightBottom" | "bottom" | "bottomLeft" | "bottomRight" | "leftTopOver" | "rightTopOver">;
51
+ position: PropTypes.Requireable<"left" | "top" | "right" | "bottom" | "topLeft" | "topRight" | "leftTop" | "leftBottom" | "rightTop" | "rightBottom" | "bottomLeft" | "bottomRight" | "leftTopOver" | "rightTopOver">;
52
52
  maxWidth: PropTypes.Requireable<string | number>;
53
53
  maxHeight: PropTypes.Requireable<string | number>;
54
54
  getContainer: PropTypes.Requireable<(...args: any[]) => any>;
@@ -55,6 +55,7 @@ export interface AutoCompleteProps<T extends AutoCompleteItems> {
55
55
  onChangeWithObject?: boolean;
56
56
  onSelectWithObject?: boolean;
57
57
  onDropdownVisibleChange?: (visible: boolean) => void;
58
+ onKeyDown?: (e: React.KeyboardEvent<HTMLInputElement>) => void;
58
59
  prefix?: React.ReactNode;
59
60
  placeholder?: string;
60
61
  position?: Position;
@@ -113,7 +114,8 @@ declare class AutoComplete<T extends AutoCompleteItems> extends BaseComponent<Au
113
114
  onBlur: PropTypes.Requireable<(...args: any[]) => any>;
114
115
  onFocus: PropTypes.Requireable<(...args: any[]) => any>;
115
116
  onChange: PropTypes.Requireable<(...args: any[]) => any>;
116
- position: PropTypes.Requireable<"top" | "topLeft" | "topRight" | "left" | "leftTop" | "leftBottom" | "right" | "rightTop" | "rightBottom" | "bottom" | "bottomLeft" | "bottomRight" | "leftTopOver" | "rightTopOver" | "leftBottomOver" | "rightBottomOver">;
117
+ onKeyDown: PropTypes.Requireable<(...args: any[]) => any>;
118
+ position: PropTypes.Requireable<"left" | "top" | "right" | "bottom" | "topLeft" | "topRight" | "leftTop" | "leftBottom" | "rightTop" | "rightBottom" | "bottomLeft" | "bottomRight" | "leftTopOver" | "rightTopOver" | "leftBottomOver" | "rightBottomOver">;
117
119
  placeholder: PropTypes.Requireable<string>;
118
120
  prefix: PropTypes.Requireable<PropTypes.ReactNodeLike>;
119
121
  onChangeWithObject: PropTypes.Requireable<boolean>;
@@ -159,6 +161,7 @@ declare class AutoComplete<T extends AutoCompleteItems> extends BaseComponent<Au
159
161
  validateStatus: "default";
160
162
  autoFocus: boolean;
161
163
  emptyContent: null;
164
+ onKeyDown: (...args: any[]) => void;
162
165
  };
163
166
  triggerRef: React.RefObject<HTMLDivElement> | null;
164
167
  optionsRef: React.RefObject<HTMLDivElement> | null;
@@ -134,6 +134,9 @@ class AutoComplete extends BaseComponent {
134
134
  notifyBlur: event => {
135
135
  this.props.onBlur(event);
136
136
  },
137
+ notifyKeyDown: e => {
138
+ this.props.onKeyDown(e);
139
+ },
137
140
  rePositionDropdown: () => {
138
141
  let {
139
142
  rePosKey
@@ -356,6 +359,7 @@ AutoComplete.propTypes = {
356
359
  onBlur: PropTypes.func,
357
360
  onFocus: PropTypes.func,
358
361
  onChange: PropTypes.func,
362
+ onKeyDown: PropTypes.func,
359
363
  position: PropTypes.oneOf(positionSet),
360
364
  placeholder: PropTypes.string,
361
365
  prefix: PropTypes.node,
@@ -401,7 +405,8 @@ AutoComplete.defaultProps = {
401
405
  maxHeight: 300,
402
406
  validateStatus: 'default',
403
407
  autoFocus: false,
404
- emptyContent: null // onPressEnter: () => undefined,
408
+ emptyContent: null,
409
+ onKeyDown: _noop // onPressEnter: () => undefined,
405
410
  // defaultOpen: false,
406
411
 
407
412
  };
@@ -24,6 +24,7 @@ export default class BreadcrumbItem extends BaseComponent {
24
24
  const className = "".concat(clsPrefix, "-item-icon");
25
25
 
26
26
  if ( /*#__PURE__*/React.isValidElement(iconType)) {
27
+ //@ts-ignore
27
28
  return /*#__PURE__*/React.cloneElement(iconType, {
28
29
  className,
29
30
  size: iconSize
@@ -25,7 +25,7 @@ export default class ButtonGroup extends BaseComponent {
25
25
  let lineCls = "".concat(prefixCls, "-group-line");
26
26
 
27
27
  if (inner.length > 1) {
28
- inner.slice(0, -1).forEach(item => {
28
+ inner.slice(0, -1).forEach((item, index) => {
29
29
  const isButtonType = _get(item, 'type.elementType') === 'Button';
30
30
 
31
31
  const buttonProps = _get(item, 'props');
@@ -43,7 +43,8 @@ export default class ButtonGroup extends BaseComponent {
43
43
 
44
44
  if (isButtonType) {
45
45
  innerWithLine.push(item, /*#__PURE__*/React.createElement("span", {
46
- className: lineCls
46
+ className: lineCls,
47
+ key: "line-".concat(index)
47
48
  }));
48
49
  } else {
49
50
  innerWithLine.push(item);
@@ -74,13 +75,17 @@ export default class ButtonGroup extends BaseComponent {
74
75
  const cls = classNames("".concat(prefixCls, "-group"), className);
75
76
 
76
77
  if (children) {
77
- inner = (Array.isArray(children) ? children : [children]).map((itm, index) => /*#__PURE__*/isValidElement(itm) ? /*#__PURE__*/cloneElement(itm, Object.assign(Object.assign(Object.assign({
78
- disabled,
79
- size,
80
- type
81
- }, itm.props), rest), {
82
- key: index
83
- })) : itm);
78
+ inner = (Array.isArray(children) ? children : [children]).map((itm, index) => {
79
+ var _a;
80
+
81
+ return /*#__PURE__*/isValidElement(itm) ? /*#__PURE__*/cloneElement(itm, Object.assign(Object.assign(Object.assign({
82
+ disabled,
83
+ size,
84
+ type
85
+ }, itm.props), rest), {
86
+ key: (_a = itm.key) !== null && _a !== void 0 ? _a : index
87
+ })) : itm;
88
+ });
84
89
  innerWithLine = this.getInnerWithLine(inner);
85
90
  }
86
91
 
@@ -56,7 +56,7 @@ export default class DatePicker extends BaseComponent<DatePickerProps, DatePicke
56
56
  max: PropTypes.Requireable<number>;
57
57
  placeholder: PropTypes.Requireable<string | any[]>;
58
58
  presets: PropTypes.Requireable<any[]>;
59
- presetPosition: PropTypes.Requireable<"top" | "left" | "right" | "bottom">;
59
+ presetPosition: PropTypes.Requireable<"left" | "top" | "right" | "bottom">;
60
60
  onChange: PropTypes.Requireable<(...args: any[]) => any>;
61
61
  onChangeWithDateFirst: PropTypes.Requireable<boolean>;
62
62
  weekStartsOn: PropTypes.Requireable<number>;
@@ -73,7 +73,7 @@ export default class DatePicker extends BaseComponent<DatePickerProps, DatePicke
73
73
  insetLabel: PropTypes.Requireable<PropTypes.ReactNodeLike>;
74
74
  insetLabelId: PropTypes.Requireable<string>;
75
75
  zIndex: PropTypes.Requireable<number>;
76
- position: PropTypes.Requireable<"top" | "topLeft" | "topRight" | "left" | "leftTop" | "leftBottom" | "right" | "rightTop" | "rightBottom" | "bottom" | "bottomLeft" | "bottomRight" | "leftTopOver" | "rightTopOver">;
76
+ position: PropTypes.Requireable<"left" | "top" | "right" | "bottom" | "topLeft" | "topRight" | "leftTop" | "leftBottom" | "rightTop" | "rightBottom" | "bottomLeft" | "bottomRight" | "leftTopOver" | "rightTopOver">;
77
77
  getPopupContainer: PropTypes.Requireable<(...args: any[]) => any>;
78
78
  onCancel: PropTypes.Requireable<(...args: any[]) => any>;
79
79
  onConfirm: PropTypes.Requireable<(...args: any[]) => any>;
@@ -50,7 +50,7 @@ export default class MonthsGrid extends BaseComponent<MonthsGridProps, MonthsGri
50
50
  onPanelChange: PropTypes.Requireable<(...args: any[]) => any>;
51
51
  focusRecordsRef: PropTypes.Requireable<object>;
52
52
  triggerRender: PropTypes.Requireable<(...args: any[]) => any>;
53
- presetPosition: PropTypes.Requireable<"top" | "left" | "right" | "bottom">;
53
+ presetPosition: PropTypes.Requireable<"left" | "top" | "right" | "bottom">;
54
54
  renderQuickControls: PropTypes.Requireable<PropTypes.ReactNodeLike>;
55
55
  renderDateInput: PropTypes.Requireable<PropTypes.ReactNodeLike>;
56
56
  };
@@ -13,7 +13,7 @@ export interface QuickControlProps {
13
13
  declare class QuickControl extends PureComponent<QuickControlProps> {
14
14
  static propTypes: {
15
15
  presets: PropTypes.Requireable<any[]>;
16
- presetPosition: PropTypes.Requireable<"top" | "left" | "right" | "bottom">;
16
+ presetPosition: PropTypes.Requireable<"left" | "top" | "right" | "bottom">;
17
17
  onPresetClick: PropTypes.Requireable<(...args: any[]) => any>;
18
18
  type: PropTypes.Requireable<string>;
19
19
  insetInput: PropTypes.Requireable<boolean>;
@@ -20,7 +20,7 @@ declare class YearAndMonth extends BaseComponent<YearAndMonthProps, YearAndMonth
20
20
  noBackBtn: PropTypes.Requireable<boolean>;
21
21
  disabledDate: PropTypes.Requireable<(...args: any[]) => any>;
22
22
  density: PropTypes.Requireable<string>;
23
- presetPosition: PropTypes.Requireable<"top" | "left" | "right" | "bottom">;
23
+ presetPosition: PropTypes.Requireable<"left" | "top" | "right" | "bottom">;
24
24
  renderQuickControls: PropTypes.Requireable<PropTypes.ReactNodeLike>;
25
25
  renderDateInput: PropTypes.Requireable<PropTypes.ReactNodeLike>;
26
26
  };
@@ -59,7 +59,7 @@ declare class Dropdown extends BaseComponent<DropdownProps, DropdownState> {
59
59
  render: PropTypes.Requireable<PropTypes.ReactNodeLike>;
60
60
  children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
61
61
  visible: PropTypes.Requireable<boolean>;
62
- position: PropTypes.Requireable<"top" | "topLeft" | "topRight" | "left" | "leftTop" | "leftBottom" | "right" | "rightTop" | "rightBottom" | "bottom" | "bottomLeft" | "bottomRight" | "leftTopOver" | "rightTopOver" | "leftBottomOver" | "rightBottomOver">;
62
+ position: PropTypes.Requireable<"left" | "top" | "right" | "bottom" | "topLeft" | "topRight" | "leftTop" | "leftBottom" | "rightTop" | "rightBottom" | "bottomLeft" | "bottomRight" | "leftTopOver" | "rightTopOver" | "leftBottomOver" | "rightBottomOver">;
63
63
  getPopupContainer: PropTypes.Requireable<(...args: any[]) => any>;
64
64
  mouseEnterDelay: PropTypes.Requireable<number>;
65
65
  mouseLeaveDelay: PropTypes.Requireable<number>;