@nocobase/client 1.4.29 → 1.4.31
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.
- package/es/collection-manager/interfaces/checkbox.d.ts +20 -0
- package/es/collection-manager/interfaces/properties/operators.d.ts +20 -0
- package/es/index.mjs +1596 -1493
- package/es/modules/blocks/filter-blocks/FilterCollectionField.d.ts +15 -0
- package/es/schema-settings/VariableInput/hooks/useParentRecordVariable.d.ts +2 -2
- package/lib/index.js +93 -93
- package/package.json +5 -5
|
@@ -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: {
|