@jiaozhiye/qm-design-react 1.8.8 → 1.8.10

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.
@@ -104,6 +104,8 @@ export type { StepProps, StepsProps } from 'antd';
104
104
  export { Steps } from 'antd';
105
105
  export type { SwitchProps } from 'antd';
106
106
  export { Switch } from 'antd';
107
+ export type { TableProps, TablePaginationConfig, TableColumnGroupType, TableColumnType, TableColumnProps, TableColumnsType } from 'antd';
108
+ export { Table } from 'antd';
107
109
  export type { TransferProps } from 'antd';
108
110
  export { Transfer } from 'antd';
109
111
  export type { TreeProps, TreeNodeProps, TreeDataNode } from 'antd';
@@ -19,7 +19,9 @@ type IProps = {
19
19
  placement?: PlacementType;
20
20
  control?: boolean;
21
21
  destroyOnHide?: boolean;
22
- onSelect?: (selector: string) => void;
22
+ zIndex?: number;
23
+ selectFilter?: (selector: string) => string;
24
+ onSelect?: (node: HTMLElement, path: string) => void;
23
25
  onChange?: (items: StepProps[], current: number) => void;
24
26
  onClose?: (current: number) => void;
25
27
  onFinish?: () => void;