antd-management-fast-framework 2.11.6 → 2.11.7

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,8 +1,9 @@
1
1
  export class DataPreviewDrawer extends Base {
2
2
  static open(): void;
3
3
  constructor(properties: any);
4
+ showReloadButton: boolean;
4
5
  renderPresetTitleIcon: () => any;
5
- renderPresetTitle: () => any;
6
+ getPresetPageTitle: () => any;
6
7
  establishCardCollectionConfig: () => {
7
8
  list: {
8
9
  title: {
@@ -12,11 +13,20 @@ export class DataPreviewDrawer extends Base {
12
13
  items: {
13
14
  lg: number;
14
15
  type: string;
15
- fieldData: {
16
- label: string;
17
- helper: string;
16
+ list: {
17
+ label: any;
18
+ value: any;
19
+ }[];
20
+ props: {
21
+ bordered: boolean;
22
+ size: string;
23
+ column: number;
24
+ labelStyle: {
25
+ width: string;
26
+ };
27
+ emptyValue: string;
28
+ ellipsis: boolean;
18
29
  };
19
- value: string;
20
30
  }[];
21
31
  }[];
22
32
  };
@@ -24,6 +34,9 @@ export class DataPreviewDrawer extends Base {
24
34
  export namespace DataPreviewDrawer {
25
35
  namespace defaultProps {
26
36
  let title: string;
37
+ let descriptionLabel: string;
38
+ let description: string;
39
+ let listData: never[];
27
40
  let icon: React.JSX.Element;
28
41
  let placement: string;
29
42
  let width: number;