@para-ui/core 1.1.19 → 1.1.23
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/ComboSelect/WithTabsCombo/interface.d.ts +3 -1
- package/ComboSelect/index.js +1 -1
- package/ComboSelect/interface.d.ts +3 -1
- package/Table/index.js +1 -1
- package/Tree/Tree.d.ts +3 -147
- package/Tree/index.d.ts +1 -1
- package/Tree/index.js +3 -3
- package/Tree/interface.d.ts +179 -0
- package/Tree/utils/treeUtil.d.ts +1 -1
- package/Upload/index.d.ts +1 -1
- package/index.js +2 -2
- package/package.json +3 -1
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
import React from 'react';
|
|
7
7
|
import { TableProps as ITableProps } from '../../Table/interface';
|
|
8
|
-
import { TreeProps, TreeNodeProps } from '../../Tree';
|
|
8
|
+
import { TreeProps, TreeNodeProps } from '../../Tree/interface';
|
|
9
9
|
declare type TableProps = ITableProps & {
|
|
10
10
|
/** 表格参数 */
|
|
11
11
|
params?: Object;
|
|
@@ -131,4 +131,6 @@ export interface TabsComboSelectProps {
|
|
|
131
131
|
autoWidth?: boolean;
|
|
132
132
|
/** 自定义渲染tag */
|
|
133
133
|
tagRender?: (option: SelectedOption) => React.ReactNode;
|
|
134
|
+
/** tag 点击回调 */
|
|
135
|
+
onTagClick?: (option: SelectedOption, originData: any) => void;
|
|
134
136
|
}
|