@nocobase/client 1.5.0-beta.32 → 1.5.0-beta.34

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.
@@ -102,7 +102,7 @@ export declare const BlockProvider: (props: {
102
102
  * @returns
103
103
  */
104
104
  export declare const useBlockAssociationContext: () => any;
105
- export declare const useFilterByTk: () => any;
105
+ export declare const useFilterByTk: (blockProps?: any) => any;
106
106
  /**
107
107
  * @deprecated
108
108
  */
@@ -116,7 +116,7 @@ export declare const useSourceIdFromParentRecord: () => any;
116
116
  * @internal
117
117
  * @returns
118
118
  */
119
- export declare const useParamsFromRecord: () => {
119
+ export declare const useParamsFromRecord: (props?: any) => {
120
120
  filterByTk: any;
121
121
  };
122
122
  export declare const RecordLink: (props: any) => React.JSX.Element;
@@ -48,10 +48,30 @@ export declare class CheckboxFieldInterface extends CollectionFieldInterface {
48
48
  value: string;
49
49
  selected: boolean;
50
50
  noValue: boolean;
51
+ schema: {
52
+ 'x-component': string;
53
+ 'x-component-props': {
54
+ multiple: boolean;
55
+ options: {
56
+ label: string;
57
+ value: boolean;
58
+ }[];
59
+ };
60
+ };
51
61
  } | {
52
62
  label: string;
53
63
  value: string;
54
64
  noValue: boolean;
65
+ schema: {
66
+ 'x-component': string;
67
+ 'x-component-props': {
68
+ multiple: boolean;
69
+ options: {
70
+ label: string;
71
+ value: boolean;
72
+ }[];
73
+ };
74
+ };
55
75
  selected?: undefined;
56
76
  })[];
57
77
  };
@@ -184,10 +184,30 @@ export declare const boolean: ({
184
184
  value: string;
185
185
  selected: boolean;
186
186
  noValue: boolean;
187
+ schema: {
188
+ 'x-component': string;
189
+ 'x-component-props': {
190
+ multiple: boolean;
191
+ options: {
192
+ label: string;
193
+ value: boolean;
194
+ }[];
195
+ };
196
+ };
187
197
  } | {
188
198
  label: string;
189
199
  value: string;
190
200
  noValue: boolean;
201
+ schema: {
202
+ 'x-component': string;
203
+ 'x-component-props': {
204
+ multiple: boolean;
205
+ options: {
206
+ label: string;
207
+ value: boolean;
208
+ }[];
209
+ };
210
+ };
191
211
  selected?: undefined;
192
212
  })[];
193
213
  export declare const tableoid: {