@nocobase/client 0.21.0-alpha.2 → 0.21.0-alpha.3

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.
@@ -39,7 +39,7 @@ export declare const useResetBlockActionProps: () => {
39
39
  onClick(): Promise<void>;
40
40
  };
41
41
  export declare const useCustomizeUpdateActionProps: () => {
42
- onClick(): Promise<void>;
42
+ onClick(e?: any, callBack?: any): Promise<void>;
43
43
  };
44
44
  export declare const useCustomizeBulkUpdateActionProps: () => {
45
45
  onClick(): Promise<void>;
@@ -51,19 +51,19 @@ export declare const useUpdateActionProps: () => {
51
51
  onClick(): Promise<void>;
52
52
  };
53
53
  export declare const useDestroyActionProps: () => {
54
- onClick(): Promise<void>;
54
+ onClick(e?: any, callBack?: any): Promise<void>;
55
55
  };
56
56
  export declare const useRemoveActionProps: (associationName: any) => {
57
57
  onClick(value: any): Promise<void>;
58
58
  };
59
59
  export declare const useDisassociateActionProps: () => {
60
- onClick(): Promise<void>;
60
+ onClick(e?: any, callBack?: any): Promise<void>;
61
61
  };
62
62
  export declare const useDetailPrintActionProps: () => {
63
63
  onClick(): Promise<void>;
64
64
  };
65
65
  export declare const useBulkDestroyActionProps: () => {
66
- onClick(): Promise<void>;
66
+ onClick(e?: any, callBack?: any): Promise<void>;
67
67
  };
68
68
  export declare const useRefreshActionProps: () => {
69
69
  onClick(): Promise<void>;
@@ -52,7 +52,6 @@ export declare class NanoidFieldInterface extends CollectionFieldInterface {
52
52
  'x-content': string;
53
53
  'x-decorator': string;
54
54
  'x-component': string;
55
- 'x-disabled': string;
56
55
  };
57
56
  };
58
57
  filterable: {
@@ -47,7 +47,6 @@ export declare const autoFill: {
47
47
  'x-content': string;
48
48
  'x-decorator': string;
49
49
  'x-component': string;
50
- 'x-disabled': string;
51
50
  };
52
51
  export declare const relationshipType: ISchema;
53
52
  export declare const constraintsProps: {
@@ -39,7 +39,6 @@ export declare class UUIDFieldInterface extends CollectionFieldInterface {
39
39
  'x-content': string;
40
40
  'x-decorator': string;
41
41
  'x-component': string;
42
- 'x-disabled': string;
43
42
  };
44
43
  };
45
44
  filterable: {
@@ -9,6 +9,14 @@ export declare class SqlCollectionTemplate extends CollectionTemplate {
9
9
  fields: any[];
10
10
  };
11
11
  configurableProperties: {
12
+ filterTargetKey: {
13
+ title: string;
14
+ type: string;
15
+ description: string;
16
+ 'x-decorator': string;
17
+ 'x-component': string;
18
+ 'x-reactions': string[];
19
+ };
12
20
  name: any;
13
21
  title: any;
14
22
  description: any;
@@ -88,7 +88,7 @@ export declare class ViewCollectionTemplate extends CollectionTemplate {
88
88
  fields: {
89
89
  type: string;
90
90
  'x-component': import("react").MemoExoticComponent<(props: any) => import("react").JSX.Element>;
91
- 'x-visible': string;
91
+ 'x-hidden': string;
92
92
  'x-reactions': {
93
93
  dependencies: string[];
94
94
  fulfill: {
@@ -111,5 +111,13 @@ export declare class ViewCollectionTemplate extends CollectionTemplate {
111
111
  };
112
112
  };
113
113
  };
114
+ filterTargetKey: {
115
+ title: string;
116
+ type: string;
117
+ description: string;
118
+ 'x-decorator': string;
119
+ 'x-component': string;
120
+ 'x-reactions': string[];
121
+ };
114
122
  };
115
123
  }