@cloudtower/eagle 0.33.22 → 0.33.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/dist/cjs/index.js +5 -2
- package/dist/cjs/stats1.html +1 -1
- package/dist/components.css +3283 -3283
- package/dist/esm/index.js +1 -1
- package/dist/esm/stats1.html +1 -1
- package/dist/linaria.merged.scss +3812 -3812
- package/dist/src/core/Antd5Tree/Antd5Tree.d.ts +1 -3
- package/dist/src/core/Antd5Tree/Antd5Tree.type.d.ts +3 -1
- package/dist/stories/docs/core/Antd5Tree.stories.d.ts +12 -1
- package/dist/style.css +3228 -3228
- package/package.json +4 -4
- package/dist/cjs/core/Antd5Tree/Antd5Tree.js +0 -30
- package/dist/esm/core/Antd5Tree/Antd5Tree.js +0 -24
|
@@ -8,7 +8,14 @@ import React from "react";
|
|
|
8
8
|
* * 更多 props 请参考:https://ant.design/components/tree-cn#API
|
|
9
9
|
*/
|
|
10
10
|
declare const meta: {
|
|
11
|
-
component:
|
|
11
|
+
component: (<T extends import("rc-tree").BasicDataNode | import("antd5").TreeDataNode = import("antd5").TreeDataNode>(props: import("antd5").TreeProps<T> & {
|
|
12
|
+
children?: React.ReactNode;
|
|
13
|
+
} & React.RefAttributes<import("rc-tree/lib/Tree").default<import("antd5").TreeDataNode>>) => React.ReactElement<any, string | React.JSXElementConstructor<any>>) & {
|
|
14
|
+
TreeNode: React.FC<import("rc-tree").TreeNodeProps<import("antd5").TreeDataNode>>;
|
|
15
|
+
DirectoryTree: (<T_1 extends import("rc-tree").BasicDataNode | import("antd5").TreeDataNode = import("antd5").TreeDataNode>(props: import("antd5/es/tree").DirectoryTreeProps<T_1> & {
|
|
16
|
+
children?: React.ReactNode;
|
|
17
|
+
} & React.RefAttributes<import("rc-tree/lib/Tree").default<import("antd5").TreeDataNode>>) => React.ReactElement<any, string | React.JSXElementConstructor<any>>) & Pick<React.FC<{}>, "displayName">;
|
|
18
|
+
};
|
|
12
19
|
title: "Core/Antd5Tree | 树形控件";
|
|
13
20
|
parameters: {
|
|
14
21
|
design: {
|
|
@@ -31,3 +38,7 @@ export declare const Checkable: Story;
|
|
|
31
38
|
* 默认展开部分节点
|
|
32
39
|
*/
|
|
33
40
|
export declare const DefaultExpanded: Story;
|
|
41
|
+
/**
|
|
42
|
+
* 使用 TreeNode 组件手动构建树
|
|
43
|
+
*/
|
|
44
|
+
export declare const TreeNodeUsage: Story;
|