@cloudtower/eagle 0.32.53 → 0.32.54

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.
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import { ColumnsType, ColumnType, TableProps as AntdTableProps } from "antd/lib/table";
3
- import { TableRowSelection } from "antd/lib/table/interface";
3
+ import { TableRowSelection, ExpandableConfig } from "antd/lib/table/interface";
4
4
  import { ITableSkeletonProps } from "./TableSkeleton";
5
5
  interface IdObject {
6
6
  id: string;
@@ -77,5 +77,6 @@ export interface TableProps<T extends {
77
77
  };
78
78
  onRow?: AntdTableProps<T>["onRow"];
79
79
  skeletonProps?: ITableSkeletonProps;
80
+ expandable?: ExpandableConfig<T>;
80
81
  }
81
82
  export {};
@@ -69,3 +69,9 @@ export declare const ErrorFalse: Story;
69
69
  * 固定表头显示空表格
70
70
  */
71
71
  export declare const ShowEmptyForFixd: Story;
72
+ /**
73
+ * 在 loading error 不存在的情况下
74
+ *
75
+ * 显示表格数据,表格可以展开
76
+ */
77
+ export declare const ShowCanExpandData: Story;