@cloudtower/eagle 0.29.12 → 0.29.13

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.
@@ -30,6 +30,9 @@ export interface TableProps<T extends {
30
30
  }> {
31
31
  bordered?: boolean;
32
32
  loading?: boolean;
33
+ /**
34
+ * This means errorEl.
35
+ */
33
36
  error?: React.ReactNode | string;
34
37
  dataSource: T[] | undefined;
35
38
  columns: RequiredColumnProps<T>[];
@@ -57,3 +57,9 @@ export declare const ShowEmpty: Story;
57
57
  * 显示 Loading
58
58
  */
59
59
  export declare const ShowLoadingWithEmpty: Story;
60
+ /**
61
+ * 在 error false 的情况
62
+ *
63
+ * 显示 data
64
+ */
65
+ export declare const ErrorFalse: Story;