@pixpilot/formily-shadcn 1.17.1 → 1.18.1

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.
Files changed (46) hide show
  1. package/dist/components/array-drawer/ArrayDrawer.cjs +70 -0
  2. package/dist/components/array-drawer/ArrayDrawer.d.cts +16 -0
  3. package/dist/components/array-drawer/ArrayDrawer.d.ts +16 -0
  4. package/dist/components/array-drawer/ArrayDrawer.js +66 -0
  5. package/dist/components/array-drawer/EditDrawer.cjs +129 -0
  6. package/dist/components/array-drawer/EditDrawer.js +124 -0
  7. package/dist/components/array-drawer/index.d.cts +1 -0
  8. package/dist/components/array-drawer/index.d.ts +1 -0
  9. package/dist/components/array-drawer/mcp.js +59 -0
  10. package/dist/components/date-picker/DatePicker.d.cts +3 -3
  11. package/dist/components/dialog-item/ConnectedDialogItem.d.cts +4 -4
  12. package/dist/components/drawer-item/BaseDrawerItem.cjs +112 -0
  13. package/dist/components/drawer-item/BaseDrawerItem.d.cts +59 -0
  14. package/dist/components/drawer-item/BaseDrawerItem.d.ts +59 -0
  15. package/dist/components/drawer-item/BaseDrawerItem.js +107 -0
  16. package/dist/components/drawer-item/ConnectedDrawerItem.cjs +16 -0
  17. package/dist/components/drawer-item/ConnectedDrawerItem.d.cts +15 -0
  18. package/dist/components/drawer-item/ConnectedDrawerItem.d.ts +15 -0
  19. package/dist/components/drawer-item/ConnectedDrawerItem.js +14 -0
  20. package/dist/components/drawer-item/index.d.cts +2 -0
  21. package/dist/components/drawer-item/index.d.ts +2 -0
  22. package/dist/components/drawer-item/mcp.js +119 -0
  23. package/dist/components/form-item/BaseFormItem.cjs +1 -0
  24. package/dist/components/form-item/BaseFormItem.js +1 -0
  25. package/dist/components/form-item/ConnectedFormItem.d.cts +4 -4
  26. package/dist/components/form-item/ConnectedFormItem.d.ts +4 -4
  27. package/dist/components/form-item/FormItemLabel.cjs +3 -2
  28. package/dist/components/form-item/FormItemLabel.js +3 -2
  29. package/dist/components/popover-item/ConnectedPopoverItem.d.cts +4 -4
  30. package/dist/components/popover-item/ConnectedPopoverItem.d.ts +4 -4
  31. package/dist/components/radio/Radio.d.cts +2 -2
  32. package/dist/components/row/Row.d.cts +2 -2
  33. package/dist/components/schema-field/schema-field-basics.cjs +7 -0
  34. package/dist/components/schema-field/schema-field-basics.d.cts +435 -329
  35. package/dist/components/schema-field/schema-field-basics.d.ts +442 -336
  36. package/dist/components/schema-field/schema-field-basics.js +7 -0
  37. package/dist/components/schema-field/schema-field-extended.d.cts +578 -472
  38. package/dist/components/schema-field/schema-field-extended.d.ts +578 -472
  39. package/dist/components/schema-field/schema-field.d.cts +523 -417
  40. package/dist/components/schema-field/schema-field.d.ts +530 -424
  41. package/dist/generated/mcp-registry.js +80 -76
  42. package/dist/index.cjs +6 -0
  43. package/dist/index.d.cts +6 -1
  44. package/dist/index.d.ts +6 -1
  45. package/dist/index.js +4 -1
  46. package/package.json +3 -3
@@ -14,6 +14,8 @@ import { FormItemProps } from "../form-item/form-item-types.js";
14
14
  import "../form-item/index.js";
15
15
  import { DialogItemProps } from "../dialog-item/BaseDialogItem.js";
16
16
  import "../dialog-item/index.js";
17
+ import { DrawerItemProps } from "../drawer-item/BaseDrawerItem.js";
18
+ import "../drawer-item/index.js";
17
19
  import { FormGrid } from "../form-grid/FormGrid.js";
18
20
  import "../form-grid/index.js";
19
21
  import { IconPickerProps as IconPickerProps$1 } from "../icon-picker/IconPicker.js";
@@ -34,7 +36,7 @@ import { SelectProps as SelectProps$1 } from "../select/Select.js";
34
36
  import "../select/index.js";
35
37
  import * as _formily_react1 from "@formily/react";
36
38
  import { ISchema } from "@formily/react";
37
- import * as react7 from "react";
39
+ import * as react10 from "react";
38
40
  import * as _pixpilot_shadcn_ui0 from "@pixpilot/shadcn-ui";
39
41
  import * as _formily_core0 from "@formily/core";
40
42
  import * as _radix_ui_react_checkbox0 from "@radix-ui/react-checkbox";
@@ -44,51 +46,51 @@ import * as _radix_ui_react_switch0 from "@radix-ui/react-switch";
44
46
  //#region src/components/schema-field/schema-field-extended.d.ts
45
47
  declare const extendedComponentRegistry: {
46
48
  AvatarUpload: {
47
- component: react7.FC<_pixpilot_shadcn_ui0.AvatarUploadProps & UploadValueMapper<_pixpilot_shadcn_ui0.FileMetadata | null>>;
49
+ component: react10.FC<_pixpilot_shadcn_ui0.AvatarUploadProps & UploadValueMapper<_pixpilot_shadcn_ui0.FileMetadata | null>>;
48
50
  decorator: string;
49
51
  };
50
52
  FileUploadInline: {
51
- component: react7.FC<FileUploadInlineProps$1>;
53
+ component: react10.FC<FileUploadInlineProps$1>;
52
54
  decorator: string;
53
55
  };
54
56
  IconPicker: {
55
- component: react7.FC<IconPickerProps$1>;
57
+ component: react10.FC<IconPickerProps$1>;
56
58
  decorator: string;
57
59
  };
58
60
  FileUpload: {
59
- component: react7.FC<FileUploadProps$1>;
61
+ component: react10.FC<FileUploadProps$1>;
60
62
  decorator: string;
61
63
  };
62
64
  RichTextEditor: {
63
- component: react7.FC<_pixpilot_shadcn_ui0.RichTextEditorProps>;
65
+ component: react10.FC<_pixpilot_shadcn_ui0.RichTextEditorProps>;
64
66
  decorator: string;
65
67
  };
66
68
  ColorPicker: {
67
- component: react7.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react7.RefAttributes<unknown>>;
69
+ component: react10.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react10.RefAttributes<unknown>>;
68
70
  decorator: string;
69
71
  };
70
72
  Combobox: {
71
- component: react7.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
73
+ component: react10.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
72
74
  decorator: string;
73
75
  };
74
76
  ColorSelect: {
75
- component: react7.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
77
+ component: react10.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
76
78
  decorator: string;
77
79
  };
78
80
  Rating: {
79
- component: react7.FC<_pixpilot_shadcn_ui0.RatingProps>;
81
+ component: react10.FC<_pixpilot_shadcn_ui0.RatingProps>;
80
82
  decorator: string;
81
83
  };
82
84
  Slider: {
83
- component: react7.FC<_pixpilot_shadcn_ui0.SliderProps>;
85
+ component: react10.FC<_pixpilot_shadcn_ui0.SliderProps>;
84
86
  decorator: string;
85
87
  };
86
88
  SliderInput: {
87
- component: react7.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
89
+ component: react10.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
88
90
  decorator: string;
89
91
  };
90
92
  SliderSelect: {
91
- component: react7.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
93
+ component: react10.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
92
94
  decorator: string;
93
95
  };
94
96
  TagsInput: {
@@ -96,7 +98,7 @@ declare const extendedComponentRegistry: {
96
98
  decorator: string;
97
99
  };
98
100
  TagsInputInLine: {
99
- component: react7.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
101
+ component: react10.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
100
102
  decorator: string;
101
103
  };
102
104
  ArrayCards: {
@@ -104,7 +106,7 @@ declare const extendedComponentRegistry: {
104
106
  decorator: string;
105
107
  };
106
108
  ArrayCollapse: {
107
- component: react7.FC<ArrayComponentProps & {
109
+ component: react10.FC<ArrayComponentProps & {
108
110
  defaultActiveKey?: Array<string | number>;
109
111
  mode?: "accordion" | "multiple";
110
112
  collapseProps?: React.HTMLAttributes<HTMLDivElement>;
@@ -112,109 +114,123 @@ declare const extendedComponentRegistry: {
112
114
  decorator: string;
113
115
  };
114
116
  ArrayDialog: {
115
- component: react7.FC<ArrayComponentProps & {
117
+ component: react10.FC<ArrayComponentProps & {
116
118
  dialogProps?: React.HTMLAttributes<HTMLDivElement>;
117
119
  }>;
118
120
  decorator: string;
119
121
  };
122
+ ArrayDrawer: {
123
+ component: react10.FC<ArrayComponentProps & {
124
+ drawerProps?: React.HTMLAttributes<HTMLDivElement> & {
125
+ direction?: "top" | "bottom" | "left" | "right";
126
+ floating?: boolean;
127
+ };
128
+ }>;
129
+ decorator: string;
130
+ };
120
131
  ArrayInline: {
121
132
  component: ComposedArrayProps;
122
133
  decorator: string;
123
134
  };
124
135
  ArrayPopover: {
125
- component: react7.FC<ArrayComponentProps & {
136
+ component: react10.FC<ArrayComponentProps & {
126
137
  popoverProps?: React.HTMLAttributes<HTMLDivElement>;
127
138
  }>;
128
139
  decorator: string;
129
140
  };
130
141
  ArrayTags: {
131
- component: react7.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
142
+ component: react10.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
132
143
  decorator: string;
133
144
  };
134
145
  ArrayToggleGroup: {
135
- component: react7.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
146
+ component: react10.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
136
147
  decorator: string;
137
148
  };
138
149
  ToggleGroup: {
139
- component: react7.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react7.RefAttributes<unknown>>;
150
+ component: react10.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react10.RefAttributes<unknown>>;
140
151
  decorator: string;
141
152
  };
142
153
  Checkbox: {
143
- component: react7.FC<_radix_ui_react_checkbox0.CheckboxProps & react7.RefAttributes<HTMLButtonElement>>;
154
+ component: react10.FC<_radix_ui_react_checkbox0.CheckboxProps & react10.RefAttributes<HTMLButtonElement>>;
144
155
  decorator: string;
145
156
  };
146
157
  Column: {
147
158
  component: typeof Column;
148
159
  };
149
160
  DatePicker: {
150
- component: react7.ForwardRefExoticComponent<Partial<{
161
+ component: react10.ForwardRefExoticComponent<Partial<{
151
162
  value?: Date;
152
163
  onChange?: (date: Date | undefined) => void;
153
164
  placeholder?: string;
154
- } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react7.RefAttributes<unknown>>;
165
+ } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react10.RefAttributes<unknown>>;
155
166
  decorator: string;
156
167
  };
157
168
  DialogItem: {
158
- component: react7.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
159
- children?: react7.ReactNode | undefined;
160
- }>, "ref"> & react7.RefAttributes<unknown>>;
169
+ component: react10.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
170
+ children?: react10.ReactNode | undefined;
171
+ }>, "ref"> & react10.RefAttributes<unknown>>;
172
+ };
173
+ DrawerItem: {
174
+ component: react10.ForwardRefExoticComponent<Omit<Partial<DrawerItemProps & {
175
+ children?: react10.ReactNode | undefined;
176
+ }>, "ref"> & react10.RefAttributes<unknown>>;
161
177
  };
162
178
  PopoverItem: {
163
- component: react7.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
164
- children?: react7.ReactNode | undefined;
165
- }>, "ref"> & react7.RefAttributes<unknown>>;
179
+ component: react10.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
180
+ children?: react10.ReactNode | undefined;
181
+ }>, "ref"> & react10.RefAttributes<unknown>>;
166
182
  };
167
183
  FormGrid: {
168
184
  component: typeof FormGrid;
169
185
  };
170
186
  FormItem: {
171
- component: react7.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
172
- children?: react7.ReactNode | undefined;
173
- }>, "ref"> & react7.RefAttributes<unknown>>;
187
+ component: react10.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
188
+ children?: react10.ReactNode | undefined;
189
+ }>, "ref"> & react10.RefAttributes<unknown>>;
174
190
  };
175
191
  Hidden: {
176
- component: react7.ForwardRefExoticComponent<Partial<HiddenProps> & react7.RefAttributes<unknown>>;
192
+ component: react10.ForwardRefExoticComponent<Partial<HiddenProps> & react10.RefAttributes<unknown>>;
177
193
  };
178
194
  IconToggle: {
179
- component: react7.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
195
+ component: react10.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
180
196
  decorator: string;
181
197
  };
182
198
  ToggleButton: {
183
- component: react7.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
199
+ component: react10.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
184
200
  decorator: string;
185
201
  };
186
202
  Input: {
187
- component: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
203
+ component: react10.FC<_pixpilot_shadcn_ui0.InputProps>;
188
204
  decorator: string;
189
205
  };
190
206
  NumberInput: {
191
- component: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
207
+ component: react10.FC<_pixpilot_shadcn_ui0.InputProps>;
192
208
  decorator: string;
193
209
  };
194
210
  ObjectContainer: {
195
- component: react7.FC<ObjectContainerProps>;
211
+ component: react10.FC<ObjectContainerProps>;
196
212
  decorator: string;
197
213
  };
198
214
  Radio: {
199
- component: react7.FC<RadioProps>;
215
+ component: react10.FC<RadioProps>;
200
216
  decorator: string;
201
217
  };
202
218
  Row: {
203
219
  component: typeof Row;
204
220
  };
205
221
  Select: {
206
- component: react7.FC<SelectProps$1>;
222
+ component: react10.FC<SelectProps$1>;
207
223
  decorator: string;
208
224
  };
209
225
  Separator: {
210
- component: react7.FC<_radix_ui_react_separator0.SeparatorProps & react7.RefAttributes<HTMLDivElement>>;
226
+ component: react10.FC<_radix_ui_react_separator0.SeparatorProps & react10.RefAttributes<HTMLDivElement>>;
211
227
  };
212
228
  Switch: {
213
- component: react7.FC<_radix_ui_react_switch0.SwitchProps & react7.RefAttributes<HTMLButtonElement>>;
229
+ component: react10.FC<_radix_ui_react_switch0.SwitchProps & react10.RefAttributes<HTMLButtonElement>>;
214
230
  decorator: string;
215
231
  };
216
232
  Textarea: {
217
- component: react7.FC<react7.ClassAttributes<HTMLTextAreaElement> & react7.TextareaHTMLAttributes<HTMLTextAreaElement>>;
233
+ component: react10.FC<react10.ClassAttributes<HTMLTextAreaElement> & react10.TextareaHTMLAttributes<HTMLTextAreaElement>>;
218
234
  decorator: string;
219
235
  };
220
236
  };
@@ -223,642 +239,732 @@ declare const extendedComponentRegistry: {
223
239
  * Use this to render forms from JSON Schema
224
240
  */
225
241
  declare const extendedComponents: {
226
- AvatarUpload: react7.FC<_pixpilot_shadcn_ui0.AvatarUploadProps & UploadValueMapper<_pixpilot_shadcn_ui0.FileMetadata | null>>;
227
- FileUploadInline: react7.FC<FileUploadInlineProps$1>;
228
- IconPicker: react7.FC<IconPickerProps$1>;
229
- FileUpload: react7.FC<FileUploadProps$1>;
230
- RichTextEditor: react7.FC<_pixpilot_shadcn_ui0.RichTextEditorProps>;
231
- ColorPicker: react7.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react7.RefAttributes<unknown>>;
232
- Combobox: react7.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
233
- ColorSelect: react7.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
234
- Rating: react7.FC<_pixpilot_shadcn_ui0.RatingProps>;
235
- Slider: react7.FC<_pixpilot_shadcn_ui0.SliderProps>;
236
- SliderInput: react7.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
237
- SliderSelect: react7.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
242
+ AvatarUpload: react10.FC<_pixpilot_shadcn_ui0.AvatarUploadProps & UploadValueMapper<_pixpilot_shadcn_ui0.FileMetadata | null>>;
243
+ FileUploadInline: react10.FC<FileUploadInlineProps$1>;
244
+ IconPicker: react10.FC<IconPickerProps$1>;
245
+ FileUpload: react10.FC<FileUploadProps$1>;
246
+ RichTextEditor: react10.FC<_pixpilot_shadcn_ui0.RichTextEditorProps>;
247
+ ColorPicker: react10.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react10.RefAttributes<unknown>>;
248
+ Combobox: react10.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
249
+ ColorSelect: react10.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
250
+ Rating: react10.FC<_pixpilot_shadcn_ui0.RatingProps>;
251
+ Slider: react10.FC<_pixpilot_shadcn_ui0.SliderProps>;
252
+ SliderInput: react10.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
253
+ SliderSelect: react10.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
238
254
  TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
239
- TagsInputInLine: react7.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
255
+ TagsInputInLine: react10.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
240
256
  ArrayCards: ComposedArrayProps;
241
- ArrayCollapse: react7.FC<ArrayComponentProps & {
257
+ ArrayCollapse: react10.FC<ArrayComponentProps & {
242
258
  defaultActiveKey?: Array<string | number>;
243
259
  mode?: "accordion" | "multiple";
244
260
  collapseProps?: React.HTMLAttributes<HTMLDivElement>;
245
261
  }>;
246
- ArrayDialog: react7.FC<ArrayComponentProps & {
262
+ ArrayDialog: react10.FC<ArrayComponentProps & {
247
263
  dialogProps?: React.HTMLAttributes<HTMLDivElement>;
248
264
  }>;
265
+ ArrayDrawer: react10.FC<ArrayComponentProps & {
266
+ drawerProps?: React.HTMLAttributes<HTMLDivElement> & {
267
+ direction?: "top" | "bottom" | "left" | "right";
268
+ floating?: boolean;
269
+ };
270
+ }>;
249
271
  ArrayInline: ComposedArrayProps;
250
- ArrayPopover: react7.FC<ArrayComponentProps & {
272
+ ArrayPopover: react10.FC<ArrayComponentProps & {
251
273
  popoverProps?: React.HTMLAttributes<HTMLDivElement>;
252
274
  }>;
253
- ArrayTags: react7.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
254
- ArrayToggleGroup: react7.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
255
- ToggleGroup: react7.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react7.RefAttributes<unknown>>;
256
- Checkbox: react7.FC<_radix_ui_react_checkbox0.CheckboxProps & react7.RefAttributes<HTMLButtonElement>>;
275
+ ArrayTags: react10.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
276
+ ArrayToggleGroup: react10.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
277
+ ToggleGroup: react10.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react10.RefAttributes<unknown>>;
278
+ Checkbox: react10.FC<_radix_ui_react_checkbox0.CheckboxProps & react10.RefAttributes<HTMLButtonElement>>;
257
279
  Column: typeof Column;
258
- DatePicker: react7.ForwardRefExoticComponent<Partial<{
280
+ DatePicker: react10.ForwardRefExoticComponent<Partial<{
259
281
  value?: Date;
260
282
  onChange?: (date: Date | undefined) => void;
261
283
  placeholder?: string;
262
- } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react7.RefAttributes<unknown>>;
263
- DialogItem: react7.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
264
- children?: react7.ReactNode | undefined;
265
- }>, "ref"> & react7.RefAttributes<unknown>>;
266
- PopoverItem: react7.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
267
- children?: react7.ReactNode | undefined;
268
- }>, "ref"> & react7.RefAttributes<unknown>>;
284
+ } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react10.RefAttributes<unknown>>;
285
+ DialogItem: react10.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
286
+ children?: react10.ReactNode | undefined;
287
+ }>, "ref"> & react10.RefAttributes<unknown>>;
288
+ DrawerItem: react10.ForwardRefExoticComponent<Omit<Partial<DrawerItemProps & {
289
+ children?: react10.ReactNode | undefined;
290
+ }>, "ref"> & react10.RefAttributes<unknown>>;
291
+ PopoverItem: react10.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
292
+ children?: react10.ReactNode | undefined;
293
+ }>, "ref"> & react10.RefAttributes<unknown>>;
269
294
  FormGrid: typeof FormGrid;
270
- FormItem: react7.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
271
- children?: react7.ReactNode | undefined;
272
- }>, "ref"> & react7.RefAttributes<unknown>>;
273
- Hidden: react7.ForwardRefExoticComponent<Partial<HiddenProps> & react7.RefAttributes<unknown>>;
274
- IconToggle: react7.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
275
- ToggleButton: react7.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
276
- Input: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
277
- NumberInput: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
278
- ObjectContainer: react7.FC<ObjectContainerProps>;
279
- Radio: react7.FC<RadioProps>;
295
+ FormItem: react10.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
296
+ children?: react10.ReactNode | undefined;
297
+ }>, "ref"> & react10.RefAttributes<unknown>>;
298
+ Hidden: react10.ForwardRefExoticComponent<Partial<HiddenProps> & react10.RefAttributes<unknown>>;
299
+ IconToggle: react10.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
300
+ ToggleButton: react10.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
301
+ Input: react10.FC<_pixpilot_shadcn_ui0.InputProps>;
302
+ NumberInput: react10.FC<_pixpilot_shadcn_ui0.InputProps>;
303
+ ObjectContainer: react10.FC<ObjectContainerProps>;
304
+ Radio: react10.FC<RadioProps>;
280
305
  Row: typeof Row;
281
- Select: react7.FC<SelectProps$1>;
282
- Separator: react7.FC<_radix_ui_react_separator0.SeparatorProps & react7.RefAttributes<HTMLDivElement>>;
283
- Switch: react7.FC<_radix_ui_react_switch0.SwitchProps & react7.RefAttributes<HTMLButtonElement>>;
284
- Textarea: react7.FC<react7.ClassAttributes<HTMLTextAreaElement> & react7.TextareaHTMLAttributes<HTMLTextAreaElement>>;
306
+ Select: react10.FC<SelectProps$1>;
307
+ Separator: react10.FC<_radix_ui_react_separator0.SeparatorProps & react10.RefAttributes<HTMLDivElement>>;
308
+ Switch: react10.FC<_radix_ui_react_switch0.SwitchProps & react10.RefAttributes<HTMLButtonElement>>;
309
+ Textarea: react10.FC<react10.ClassAttributes<HTMLTextAreaElement> & react10.TextareaHTMLAttributes<HTMLTextAreaElement>>;
285
310
  };
286
311
  declare const SchemaFieldExtended: {
287
312
  <Decorator extends _formily_react1.JSXComponent, Component extends _formily_react1.JSXComponent>(props: _formily_react1.ISchemaFieldProps<Decorator, Component, _formily_core0.ObjectField<Decorator, Component>>): JSX.Element;
288
313
  displayName: string;
289
314
  Markup: {
290
- <Decorator_1 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_1 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react1.ISchemaMarkupFieldProps<{
291
- AvatarUpload: react7.FC<_pixpilot_shadcn_ui0.AvatarUploadProps & UploadValueMapper<_pixpilot_shadcn_ui0.FileMetadata | null>>;
292
- FileUploadInline: react7.FC<FileUploadInlineProps$1>;
293
- IconPicker: react7.FC<IconPickerProps$1>;
294
- FileUpload: react7.FC<FileUploadProps$1>;
295
- RichTextEditor: react7.FC<_pixpilot_shadcn_ui0.RichTextEditorProps>;
296
- ColorPicker: react7.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react7.RefAttributes<unknown>>;
297
- Combobox: react7.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
298
- ColorSelect: react7.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
299
- Rating: react7.FC<_pixpilot_shadcn_ui0.RatingProps>;
300
- Slider: react7.FC<_pixpilot_shadcn_ui0.SliderProps>;
301
- SliderInput: react7.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
302
- SliderSelect: react7.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
315
+ <Decorator_1 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_1 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react1.ISchemaMarkupFieldProps<{
316
+ AvatarUpload: react10.FC<_pixpilot_shadcn_ui0.AvatarUploadProps & UploadValueMapper<_pixpilot_shadcn_ui0.FileMetadata | null>>;
317
+ FileUploadInline: react10.FC<FileUploadInlineProps$1>;
318
+ IconPicker: react10.FC<IconPickerProps$1>;
319
+ FileUpload: react10.FC<FileUploadProps$1>;
320
+ RichTextEditor: react10.FC<_pixpilot_shadcn_ui0.RichTextEditorProps>;
321
+ ColorPicker: react10.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react10.RefAttributes<unknown>>;
322
+ Combobox: react10.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
323
+ ColorSelect: react10.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
324
+ Rating: react10.FC<_pixpilot_shadcn_ui0.RatingProps>;
325
+ Slider: react10.FC<_pixpilot_shadcn_ui0.SliderProps>;
326
+ SliderInput: react10.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
327
+ SliderSelect: react10.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
303
328
  TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
304
- TagsInputInLine: react7.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
329
+ TagsInputInLine: react10.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
305
330
  ArrayCards: ComposedArrayProps;
306
- ArrayCollapse: react7.FC<ArrayComponentProps & {
331
+ ArrayCollapse: react10.FC<ArrayComponentProps & {
307
332
  defaultActiveKey?: Array<string | number>;
308
333
  mode?: "accordion" | "multiple";
309
334
  collapseProps?: React.HTMLAttributes<HTMLDivElement>;
310
335
  }>;
311
- ArrayDialog: react7.FC<ArrayComponentProps & {
336
+ ArrayDialog: react10.FC<ArrayComponentProps & {
312
337
  dialogProps?: React.HTMLAttributes<HTMLDivElement>;
313
338
  }>;
339
+ ArrayDrawer: react10.FC<ArrayComponentProps & {
340
+ drawerProps?: React.HTMLAttributes<HTMLDivElement> & {
341
+ direction?: "top" | "bottom" | "left" | "right";
342
+ floating?: boolean;
343
+ };
344
+ }>;
314
345
  ArrayInline: ComposedArrayProps;
315
- ArrayPopover: react7.FC<ArrayComponentProps & {
346
+ ArrayPopover: react10.FC<ArrayComponentProps & {
316
347
  popoverProps?: React.HTMLAttributes<HTMLDivElement>;
317
348
  }>;
318
- ArrayTags: react7.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
319
- ArrayToggleGroup: react7.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
320
- ToggleGroup: react7.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react7.RefAttributes<unknown>>;
321
- Checkbox: react7.FC<_radix_ui_react_checkbox0.CheckboxProps & react7.RefAttributes<HTMLButtonElement>>;
349
+ ArrayTags: react10.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
350
+ ArrayToggleGroup: react10.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
351
+ ToggleGroup: react10.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react10.RefAttributes<unknown>>;
352
+ Checkbox: react10.FC<_radix_ui_react_checkbox0.CheckboxProps & react10.RefAttributes<HTMLButtonElement>>;
322
353
  Column: typeof Column;
323
- DatePicker: react7.ForwardRefExoticComponent<Partial<{
354
+ DatePicker: react10.ForwardRefExoticComponent<Partial<{
324
355
  value?: Date;
325
356
  onChange?: (date: Date | undefined) => void;
326
357
  placeholder?: string;
327
- } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react7.RefAttributes<unknown>>;
328
- DialogItem: react7.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
329
- children?: react7.ReactNode | undefined;
330
- }>, "ref"> & react7.RefAttributes<unknown>>;
331
- PopoverItem: react7.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
332
- children?: react7.ReactNode | undefined;
333
- }>, "ref"> & react7.RefAttributes<unknown>>;
358
+ } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react10.RefAttributes<unknown>>;
359
+ DialogItem: react10.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
360
+ children?: react10.ReactNode | undefined;
361
+ }>, "ref"> & react10.RefAttributes<unknown>>;
362
+ DrawerItem: react10.ForwardRefExoticComponent<Omit<Partial<DrawerItemProps & {
363
+ children?: react10.ReactNode | undefined;
364
+ }>, "ref"> & react10.RefAttributes<unknown>>;
365
+ PopoverItem: react10.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
366
+ children?: react10.ReactNode | undefined;
367
+ }>, "ref"> & react10.RefAttributes<unknown>>;
334
368
  FormGrid: typeof FormGrid;
335
- FormItem: react7.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
336
- children?: react7.ReactNode | undefined;
337
- }>, "ref"> & react7.RefAttributes<unknown>>;
338
- Hidden: react7.ForwardRefExoticComponent<Partial<HiddenProps> & react7.RefAttributes<unknown>>;
339
- IconToggle: react7.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
340
- ToggleButton: react7.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
341
- Input: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
342
- NumberInput: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
343
- ObjectContainer: react7.FC<ObjectContainerProps>;
344
- Radio: react7.FC<RadioProps>;
369
+ FormItem: react10.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
370
+ children?: react10.ReactNode | undefined;
371
+ }>, "ref"> & react10.RefAttributes<unknown>>;
372
+ Hidden: react10.ForwardRefExoticComponent<Partial<HiddenProps> & react10.RefAttributes<unknown>>;
373
+ IconToggle: react10.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
374
+ ToggleButton: react10.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
375
+ Input: react10.FC<_pixpilot_shadcn_ui0.InputProps>;
376
+ NumberInput: react10.FC<_pixpilot_shadcn_ui0.InputProps>;
377
+ ObjectContainer: react10.FC<ObjectContainerProps>;
378
+ Radio: react10.FC<RadioProps>;
345
379
  Row: typeof Row;
346
- Select: react7.FC<SelectProps$1>;
347
- Separator: react7.FC<_radix_ui_react_separator0.SeparatorProps & react7.RefAttributes<HTMLDivElement>>;
348
- Switch: react7.FC<_radix_ui_react_switch0.SwitchProps & react7.RefAttributes<HTMLButtonElement>>;
349
- Textarea: react7.FC<react7.ClassAttributes<HTMLTextAreaElement> & react7.TextareaHTMLAttributes<HTMLTextAreaElement>>;
380
+ Select: react10.FC<SelectProps$1>;
381
+ Separator: react10.FC<_radix_ui_react_separator0.SeparatorProps & react10.RefAttributes<HTMLDivElement>>;
382
+ Switch: react10.FC<_radix_ui_react_switch0.SwitchProps & react10.RefAttributes<HTMLButtonElement>>;
383
+ Textarea: react10.FC<react10.ClassAttributes<HTMLTextAreaElement> & react10.TextareaHTMLAttributes<HTMLTextAreaElement>>;
350
384
  }, Component_1, Decorator_1>): JSX.Element;
351
385
  displayName: string;
352
386
  };
353
387
  String: {
354
- <Decorator_2 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_2 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
355
- AvatarUpload: react7.FC<_pixpilot_shadcn_ui0.AvatarUploadProps & UploadValueMapper<_pixpilot_shadcn_ui0.FileMetadata | null>>;
356
- FileUploadInline: react7.FC<FileUploadInlineProps$1>;
357
- IconPicker: react7.FC<IconPickerProps$1>;
358
- FileUpload: react7.FC<FileUploadProps$1>;
359
- RichTextEditor: react7.FC<_pixpilot_shadcn_ui0.RichTextEditorProps>;
360
- ColorPicker: react7.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react7.RefAttributes<unknown>>;
361
- Combobox: react7.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
362
- ColorSelect: react7.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
363
- Rating: react7.FC<_pixpilot_shadcn_ui0.RatingProps>;
364
- Slider: react7.FC<_pixpilot_shadcn_ui0.SliderProps>;
365
- SliderInput: react7.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
366
- SliderSelect: react7.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
388
+ <Decorator_2 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_2 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
389
+ AvatarUpload: react10.FC<_pixpilot_shadcn_ui0.AvatarUploadProps & UploadValueMapper<_pixpilot_shadcn_ui0.FileMetadata | null>>;
390
+ FileUploadInline: react10.FC<FileUploadInlineProps$1>;
391
+ IconPicker: react10.FC<IconPickerProps$1>;
392
+ FileUpload: react10.FC<FileUploadProps$1>;
393
+ RichTextEditor: react10.FC<_pixpilot_shadcn_ui0.RichTextEditorProps>;
394
+ ColorPicker: react10.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react10.RefAttributes<unknown>>;
395
+ Combobox: react10.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
396
+ ColorSelect: react10.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
397
+ Rating: react10.FC<_pixpilot_shadcn_ui0.RatingProps>;
398
+ Slider: react10.FC<_pixpilot_shadcn_ui0.SliderProps>;
399
+ SliderInput: react10.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
400
+ SliderSelect: react10.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
367
401
  TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
368
- TagsInputInLine: react7.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
402
+ TagsInputInLine: react10.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
369
403
  ArrayCards: ComposedArrayProps;
370
- ArrayCollapse: react7.FC<ArrayComponentProps & {
404
+ ArrayCollapse: react10.FC<ArrayComponentProps & {
371
405
  defaultActiveKey?: Array<string | number>;
372
406
  mode?: "accordion" | "multiple";
373
407
  collapseProps?: React.HTMLAttributes<HTMLDivElement>;
374
408
  }>;
375
- ArrayDialog: react7.FC<ArrayComponentProps & {
409
+ ArrayDialog: react10.FC<ArrayComponentProps & {
376
410
  dialogProps?: React.HTMLAttributes<HTMLDivElement>;
377
411
  }>;
412
+ ArrayDrawer: react10.FC<ArrayComponentProps & {
413
+ drawerProps?: React.HTMLAttributes<HTMLDivElement> & {
414
+ direction?: "top" | "bottom" | "left" | "right";
415
+ floating?: boolean;
416
+ };
417
+ }>;
378
418
  ArrayInline: ComposedArrayProps;
379
- ArrayPopover: react7.FC<ArrayComponentProps & {
419
+ ArrayPopover: react10.FC<ArrayComponentProps & {
380
420
  popoverProps?: React.HTMLAttributes<HTMLDivElement>;
381
421
  }>;
382
- ArrayTags: react7.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
383
- ArrayToggleGroup: react7.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
384
- ToggleGroup: react7.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react7.RefAttributes<unknown>>;
385
- Checkbox: react7.FC<_radix_ui_react_checkbox0.CheckboxProps & react7.RefAttributes<HTMLButtonElement>>;
422
+ ArrayTags: react10.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
423
+ ArrayToggleGroup: react10.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
424
+ ToggleGroup: react10.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react10.RefAttributes<unknown>>;
425
+ Checkbox: react10.FC<_radix_ui_react_checkbox0.CheckboxProps & react10.RefAttributes<HTMLButtonElement>>;
386
426
  Column: typeof Column;
387
- DatePicker: react7.ForwardRefExoticComponent<Partial<{
427
+ DatePicker: react10.ForwardRefExoticComponent<Partial<{
388
428
  value?: Date;
389
429
  onChange?: (date: Date | undefined) => void;
390
430
  placeholder?: string;
391
- } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react7.RefAttributes<unknown>>;
392
- DialogItem: react7.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
393
- children?: react7.ReactNode | undefined;
394
- }>, "ref"> & react7.RefAttributes<unknown>>;
395
- PopoverItem: react7.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
396
- children?: react7.ReactNode | undefined;
397
- }>, "ref"> & react7.RefAttributes<unknown>>;
431
+ } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react10.RefAttributes<unknown>>;
432
+ DialogItem: react10.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
433
+ children?: react10.ReactNode | undefined;
434
+ }>, "ref"> & react10.RefAttributes<unknown>>;
435
+ DrawerItem: react10.ForwardRefExoticComponent<Omit<Partial<DrawerItemProps & {
436
+ children?: react10.ReactNode | undefined;
437
+ }>, "ref"> & react10.RefAttributes<unknown>>;
438
+ PopoverItem: react10.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
439
+ children?: react10.ReactNode | undefined;
440
+ }>, "ref"> & react10.RefAttributes<unknown>>;
398
441
  FormGrid: typeof FormGrid;
399
- FormItem: react7.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
400
- children?: react7.ReactNode | undefined;
401
- }>, "ref"> & react7.RefAttributes<unknown>>;
402
- Hidden: react7.ForwardRefExoticComponent<Partial<HiddenProps> & react7.RefAttributes<unknown>>;
403
- IconToggle: react7.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
404
- ToggleButton: react7.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
405
- Input: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
406
- NumberInput: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
407
- ObjectContainer: react7.FC<ObjectContainerProps>;
408
- Radio: react7.FC<RadioProps>;
442
+ FormItem: react10.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
443
+ children?: react10.ReactNode | undefined;
444
+ }>, "ref"> & react10.RefAttributes<unknown>>;
445
+ Hidden: react10.ForwardRefExoticComponent<Partial<HiddenProps> & react10.RefAttributes<unknown>>;
446
+ IconToggle: react10.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
447
+ ToggleButton: react10.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
448
+ Input: react10.FC<_pixpilot_shadcn_ui0.InputProps>;
449
+ NumberInput: react10.FC<_pixpilot_shadcn_ui0.InputProps>;
450
+ ObjectContainer: react10.FC<ObjectContainerProps>;
451
+ Radio: react10.FC<RadioProps>;
409
452
  Row: typeof Row;
410
- Select: react7.FC<SelectProps$1>;
411
- Separator: react7.FC<_radix_ui_react_separator0.SeparatorProps & react7.RefAttributes<HTMLDivElement>>;
412
- Switch: react7.FC<_radix_ui_react_switch0.SwitchProps & react7.RefAttributes<HTMLButtonElement>>;
413
- Textarea: react7.FC<react7.ClassAttributes<HTMLTextAreaElement> & react7.TextareaHTMLAttributes<HTMLTextAreaElement>>;
453
+ Select: react10.FC<SelectProps$1>;
454
+ Separator: react10.FC<_radix_ui_react_separator0.SeparatorProps & react10.RefAttributes<HTMLDivElement>>;
455
+ Switch: react10.FC<_radix_ui_react_switch0.SwitchProps & react10.RefAttributes<HTMLButtonElement>>;
456
+ Textarea: react10.FC<react10.ClassAttributes<HTMLTextAreaElement> & react10.TextareaHTMLAttributes<HTMLTextAreaElement>>;
414
457
  }, Component_2, Decorator_2>): JSX.Element;
415
458
  displayName: string;
416
459
  };
417
460
  Object: {
418
- <Decorator_3 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_3 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
419
- AvatarUpload: react7.FC<_pixpilot_shadcn_ui0.AvatarUploadProps & UploadValueMapper<_pixpilot_shadcn_ui0.FileMetadata | null>>;
420
- FileUploadInline: react7.FC<FileUploadInlineProps$1>;
421
- IconPicker: react7.FC<IconPickerProps$1>;
422
- FileUpload: react7.FC<FileUploadProps$1>;
423
- RichTextEditor: react7.FC<_pixpilot_shadcn_ui0.RichTextEditorProps>;
424
- ColorPicker: react7.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react7.RefAttributes<unknown>>;
425
- Combobox: react7.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
426
- ColorSelect: react7.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
427
- Rating: react7.FC<_pixpilot_shadcn_ui0.RatingProps>;
428
- Slider: react7.FC<_pixpilot_shadcn_ui0.SliderProps>;
429
- SliderInput: react7.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
430
- SliderSelect: react7.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
461
+ <Decorator_3 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_3 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
462
+ AvatarUpload: react10.FC<_pixpilot_shadcn_ui0.AvatarUploadProps & UploadValueMapper<_pixpilot_shadcn_ui0.FileMetadata | null>>;
463
+ FileUploadInline: react10.FC<FileUploadInlineProps$1>;
464
+ IconPicker: react10.FC<IconPickerProps$1>;
465
+ FileUpload: react10.FC<FileUploadProps$1>;
466
+ RichTextEditor: react10.FC<_pixpilot_shadcn_ui0.RichTextEditorProps>;
467
+ ColorPicker: react10.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react10.RefAttributes<unknown>>;
468
+ Combobox: react10.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
469
+ ColorSelect: react10.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
470
+ Rating: react10.FC<_pixpilot_shadcn_ui0.RatingProps>;
471
+ Slider: react10.FC<_pixpilot_shadcn_ui0.SliderProps>;
472
+ SliderInput: react10.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
473
+ SliderSelect: react10.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
431
474
  TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
432
- TagsInputInLine: react7.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
475
+ TagsInputInLine: react10.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
433
476
  ArrayCards: ComposedArrayProps;
434
- ArrayCollapse: react7.FC<ArrayComponentProps & {
477
+ ArrayCollapse: react10.FC<ArrayComponentProps & {
435
478
  defaultActiveKey?: Array<string | number>;
436
479
  mode?: "accordion" | "multiple";
437
480
  collapseProps?: React.HTMLAttributes<HTMLDivElement>;
438
481
  }>;
439
- ArrayDialog: react7.FC<ArrayComponentProps & {
482
+ ArrayDialog: react10.FC<ArrayComponentProps & {
440
483
  dialogProps?: React.HTMLAttributes<HTMLDivElement>;
441
484
  }>;
485
+ ArrayDrawer: react10.FC<ArrayComponentProps & {
486
+ drawerProps?: React.HTMLAttributes<HTMLDivElement> & {
487
+ direction?: "top" | "bottom" | "left" | "right";
488
+ floating?: boolean;
489
+ };
490
+ }>;
442
491
  ArrayInline: ComposedArrayProps;
443
- ArrayPopover: react7.FC<ArrayComponentProps & {
492
+ ArrayPopover: react10.FC<ArrayComponentProps & {
444
493
  popoverProps?: React.HTMLAttributes<HTMLDivElement>;
445
494
  }>;
446
- ArrayTags: react7.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
447
- ArrayToggleGroup: react7.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
448
- ToggleGroup: react7.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react7.RefAttributes<unknown>>;
449
- Checkbox: react7.FC<_radix_ui_react_checkbox0.CheckboxProps & react7.RefAttributes<HTMLButtonElement>>;
495
+ ArrayTags: react10.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
496
+ ArrayToggleGroup: react10.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
497
+ ToggleGroup: react10.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react10.RefAttributes<unknown>>;
498
+ Checkbox: react10.FC<_radix_ui_react_checkbox0.CheckboxProps & react10.RefAttributes<HTMLButtonElement>>;
450
499
  Column: typeof Column;
451
- DatePicker: react7.ForwardRefExoticComponent<Partial<{
500
+ DatePicker: react10.ForwardRefExoticComponent<Partial<{
452
501
  value?: Date;
453
502
  onChange?: (date: Date | undefined) => void;
454
503
  placeholder?: string;
455
- } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react7.RefAttributes<unknown>>;
456
- DialogItem: react7.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
457
- children?: react7.ReactNode | undefined;
458
- }>, "ref"> & react7.RefAttributes<unknown>>;
459
- PopoverItem: react7.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
460
- children?: react7.ReactNode | undefined;
461
- }>, "ref"> & react7.RefAttributes<unknown>>;
504
+ } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react10.RefAttributes<unknown>>;
505
+ DialogItem: react10.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
506
+ children?: react10.ReactNode | undefined;
507
+ }>, "ref"> & react10.RefAttributes<unknown>>;
508
+ DrawerItem: react10.ForwardRefExoticComponent<Omit<Partial<DrawerItemProps & {
509
+ children?: react10.ReactNode | undefined;
510
+ }>, "ref"> & react10.RefAttributes<unknown>>;
511
+ PopoverItem: react10.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
512
+ children?: react10.ReactNode | undefined;
513
+ }>, "ref"> & react10.RefAttributes<unknown>>;
462
514
  FormGrid: typeof FormGrid;
463
- FormItem: react7.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
464
- children?: react7.ReactNode | undefined;
465
- }>, "ref"> & react7.RefAttributes<unknown>>;
466
- Hidden: react7.ForwardRefExoticComponent<Partial<HiddenProps> & react7.RefAttributes<unknown>>;
467
- IconToggle: react7.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
468
- ToggleButton: react7.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
469
- Input: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
470
- NumberInput: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
471
- ObjectContainer: react7.FC<ObjectContainerProps>;
472
- Radio: react7.FC<RadioProps>;
515
+ FormItem: react10.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
516
+ children?: react10.ReactNode | undefined;
517
+ }>, "ref"> & react10.RefAttributes<unknown>>;
518
+ Hidden: react10.ForwardRefExoticComponent<Partial<HiddenProps> & react10.RefAttributes<unknown>>;
519
+ IconToggle: react10.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
520
+ ToggleButton: react10.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
521
+ Input: react10.FC<_pixpilot_shadcn_ui0.InputProps>;
522
+ NumberInput: react10.FC<_pixpilot_shadcn_ui0.InputProps>;
523
+ ObjectContainer: react10.FC<ObjectContainerProps>;
524
+ Radio: react10.FC<RadioProps>;
473
525
  Row: typeof Row;
474
- Select: react7.FC<SelectProps$1>;
475
- Separator: react7.FC<_radix_ui_react_separator0.SeparatorProps & react7.RefAttributes<HTMLDivElement>>;
476
- Switch: react7.FC<_radix_ui_react_switch0.SwitchProps & react7.RefAttributes<HTMLButtonElement>>;
477
- Textarea: react7.FC<react7.ClassAttributes<HTMLTextAreaElement> & react7.TextareaHTMLAttributes<HTMLTextAreaElement>>;
526
+ Select: react10.FC<SelectProps$1>;
527
+ Separator: react10.FC<_radix_ui_react_separator0.SeparatorProps & react10.RefAttributes<HTMLDivElement>>;
528
+ Switch: react10.FC<_radix_ui_react_switch0.SwitchProps & react10.RefAttributes<HTMLButtonElement>>;
529
+ Textarea: react10.FC<react10.ClassAttributes<HTMLTextAreaElement> & react10.TextareaHTMLAttributes<HTMLTextAreaElement>>;
478
530
  }, Component_3, Decorator_3>): JSX.Element;
479
531
  displayName: string;
480
532
  };
481
533
  Array: {
482
- <Decorator_4 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_4 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
483
- AvatarUpload: react7.FC<_pixpilot_shadcn_ui0.AvatarUploadProps & UploadValueMapper<_pixpilot_shadcn_ui0.FileMetadata | null>>;
484
- FileUploadInline: react7.FC<FileUploadInlineProps$1>;
485
- IconPicker: react7.FC<IconPickerProps$1>;
486
- FileUpload: react7.FC<FileUploadProps$1>;
487
- RichTextEditor: react7.FC<_pixpilot_shadcn_ui0.RichTextEditorProps>;
488
- ColorPicker: react7.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react7.RefAttributes<unknown>>;
489
- Combobox: react7.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
490
- ColorSelect: react7.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
491
- Rating: react7.FC<_pixpilot_shadcn_ui0.RatingProps>;
492
- Slider: react7.FC<_pixpilot_shadcn_ui0.SliderProps>;
493
- SliderInput: react7.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
494
- SliderSelect: react7.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
534
+ <Decorator_4 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_4 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
535
+ AvatarUpload: react10.FC<_pixpilot_shadcn_ui0.AvatarUploadProps & UploadValueMapper<_pixpilot_shadcn_ui0.FileMetadata | null>>;
536
+ FileUploadInline: react10.FC<FileUploadInlineProps$1>;
537
+ IconPicker: react10.FC<IconPickerProps$1>;
538
+ FileUpload: react10.FC<FileUploadProps$1>;
539
+ RichTextEditor: react10.FC<_pixpilot_shadcn_ui0.RichTextEditorProps>;
540
+ ColorPicker: react10.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react10.RefAttributes<unknown>>;
541
+ Combobox: react10.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
542
+ ColorSelect: react10.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
543
+ Rating: react10.FC<_pixpilot_shadcn_ui0.RatingProps>;
544
+ Slider: react10.FC<_pixpilot_shadcn_ui0.SliderProps>;
545
+ SliderInput: react10.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
546
+ SliderSelect: react10.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
495
547
  TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
496
- TagsInputInLine: react7.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
548
+ TagsInputInLine: react10.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
497
549
  ArrayCards: ComposedArrayProps;
498
- ArrayCollapse: react7.FC<ArrayComponentProps & {
550
+ ArrayCollapse: react10.FC<ArrayComponentProps & {
499
551
  defaultActiveKey?: Array<string | number>;
500
552
  mode?: "accordion" | "multiple";
501
553
  collapseProps?: React.HTMLAttributes<HTMLDivElement>;
502
554
  }>;
503
- ArrayDialog: react7.FC<ArrayComponentProps & {
555
+ ArrayDialog: react10.FC<ArrayComponentProps & {
504
556
  dialogProps?: React.HTMLAttributes<HTMLDivElement>;
505
557
  }>;
558
+ ArrayDrawer: react10.FC<ArrayComponentProps & {
559
+ drawerProps?: React.HTMLAttributes<HTMLDivElement> & {
560
+ direction?: "top" | "bottom" | "left" | "right";
561
+ floating?: boolean;
562
+ };
563
+ }>;
506
564
  ArrayInline: ComposedArrayProps;
507
- ArrayPopover: react7.FC<ArrayComponentProps & {
565
+ ArrayPopover: react10.FC<ArrayComponentProps & {
508
566
  popoverProps?: React.HTMLAttributes<HTMLDivElement>;
509
567
  }>;
510
- ArrayTags: react7.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
511
- ArrayToggleGroup: react7.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
512
- ToggleGroup: react7.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react7.RefAttributes<unknown>>;
513
- Checkbox: react7.FC<_radix_ui_react_checkbox0.CheckboxProps & react7.RefAttributes<HTMLButtonElement>>;
568
+ ArrayTags: react10.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
569
+ ArrayToggleGroup: react10.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
570
+ ToggleGroup: react10.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react10.RefAttributes<unknown>>;
571
+ Checkbox: react10.FC<_radix_ui_react_checkbox0.CheckboxProps & react10.RefAttributes<HTMLButtonElement>>;
514
572
  Column: typeof Column;
515
- DatePicker: react7.ForwardRefExoticComponent<Partial<{
573
+ DatePicker: react10.ForwardRefExoticComponent<Partial<{
516
574
  value?: Date;
517
575
  onChange?: (date: Date | undefined) => void;
518
576
  placeholder?: string;
519
- } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react7.RefAttributes<unknown>>;
520
- DialogItem: react7.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
521
- children?: react7.ReactNode | undefined;
522
- }>, "ref"> & react7.RefAttributes<unknown>>;
523
- PopoverItem: react7.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
524
- children?: react7.ReactNode | undefined;
525
- }>, "ref"> & react7.RefAttributes<unknown>>;
577
+ } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react10.RefAttributes<unknown>>;
578
+ DialogItem: react10.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
579
+ children?: react10.ReactNode | undefined;
580
+ }>, "ref"> & react10.RefAttributes<unknown>>;
581
+ DrawerItem: react10.ForwardRefExoticComponent<Omit<Partial<DrawerItemProps & {
582
+ children?: react10.ReactNode | undefined;
583
+ }>, "ref"> & react10.RefAttributes<unknown>>;
584
+ PopoverItem: react10.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
585
+ children?: react10.ReactNode | undefined;
586
+ }>, "ref"> & react10.RefAttributes<unknown>>;
526
587
  FormGrid: typeof FormGrid;
527
- FormItem: react7.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
528
- children?: react7.ReactNode | undefined;
529
- }>, "ref"> & react7.RefAttributes<unknown>>;
530
- Hidden: react7.ForwardRefExoticComponent<Partial<HiddenProps> & react7.RefAttributes<unknown>>;
531
- IconToggle: react7.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
532
- ToggleButton: react7.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
533
- Input: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
534
- NumberInput: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
535
- ObjectContainer: react7.FC<ObjectContainerProps>;
536
- Radio: react7.FC<RadioProps>;
588
+ FormItem: react10.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
589
+ children?: react10.ReactNode | undefined;
590
+ }>, "ref"> & react10.RefAttributes<unknown>>;
591
+ Hidden: react10.ForwardRefExoticComponent<Partial<HiddenProps> & react10.RefAttributes<unknown>>;
592
+ IconToggle: react10.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
593
+ ToggleButton: react10.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
594
+ Input: react10.FC<_pixpilot_shadcn_ui0.InputProps>;
595
+ NumberInput: react10.FC<_pixpilot_shadcn_ui0.InputProps>;
596
+ ObjectContainer: react10.FC<ObjectContainerProps>;
597
+ Radio: react10.FC<RadioProps>;
537
598
  Row: typeof Row;
538
- Select: react7.FC<SelectProps$1>;
539
- Separator: react7.FC<_radix_ui_react_separator0.SeparatorProps & react7.RefAttributes<HTMLDivElement>>;
540
- Switch: react7.FC<_radix_ui_react_switch0.SwitchProps & react7.RefAttributes<HTMLButtonElement>>;
541
- Textarea: react7.FC<react7.ClassAttributes<HTMLTextAreaElement> & react7.TextareaHTMLAttributes<HTMLTextAreaElement>>;
599
+ Select: react10.FC<SelectProps$1>;
600
+ Separator: react10.FC<_radix_ui_react_separator0.SeparatorProps & react10.RefAttributes<HTMLDivElement>>;
601
+ Switch: react10.FC<_radix_ui_react_switch0.SwitchProps & react10.RefAttributes<HTMLButtonElement>>;
602
+ Textarea: react10.FC<react10.ClassAttributes<HTMLTextAreaElement> & react10.TextareaHTMLAttributes<HTMLTextAreaElement>>;
542
603
  }, Component_4, Decorator_4>): JSX.Element;
543
604
  displayName: string;
544
605
  };
545
606
  Boolean: {
546
- <Decorator_5 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_5 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
547
- AvatarUpload: react7.FC<_pixpilot_shadcn_ui0.AvatarUploadProps & UploadValueMapper<_pixpilot_shadcn_ui0.FileMetadata | null>>;
548
- FileUploadInline: react7.FC<FileUploadInlineProps$1>;
549
- IconPicker: react7.FC<IconPickerProps$1>;
550
- FileUpload: react7.FC<FileUploadProps$1>;
551
- RichTextEditor: react7.FC<_pixpilot_shadcn_ui0.RichTextEditorProps>;
552
- ColorPicker: react7.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react7.RefAttributes<unknown>>;
553
- Combobox: react7.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
554
- ColorSelect: react7.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
555
- Rating: react7.FC<_pixpilot_shadcn_ui0.RatingProps>;
556
- Slider: react7.FC<_pixpilot_shadcn_ui0.SliderProps>;
557
- SliderInput: react7.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
558
- SliderSelect: react7.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
607
+ <Decorator_5 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_5 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
608
+ AvatarUpload: react10.FC<_pixpilot_shadcn_ui0.AvatarUploadProps & UploadValueMapper<_pixpilot_shadcn_ui0.FileMetadata | null>>;
609
+ FileUploadInline: react10.FC<FileUploadInlineProps$1>;
610
+ IconPicker: react10.FC<IconPickerProps$1>;
611
+ FileUpload: react10.FC<FileUploadProps$1>;
612
+ RichTextEditor: react10.FC<_pixpilot_shadcn_ui0.RichTextEditorProps>;
613
+ ColorPicker: react10.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react10.RefAttributes<unknown>>;
614
+ Combobox: react10.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
615
+ ColorSelect: react10.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
616
+ Rating: react10.FC<_pixpilot_shadcn_ui0.RatingProps>;
617
+ Slider: react10.FC<_pixpilot_shadcn_ui0.SliderProps>;
618
+ SliderInput: react10.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
619
+ SliderSelect: react10.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
559
620
  TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
560
- TagsInputInLine: react7.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
621
+ TagsInputInLine: react10.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
561
622
  ArrayCards: ComposedArrayProps;
562
- ArrayCollapse: react7.FC<ArrayComponentProps & {
623
+ ArrayCollapse: react10.FC<ArrayComponentProps & {
563
624
  defaultActiveKey?: Array<string | number>;
564
625
  mode?: "accordion" | "multiple";
565
626
  collapseProps?: React.HTMLAttributes<HTMLDivElement>;
566
627
  }>;
567
- ArrayDialog: react7.FC<ArrayComponentProps & {
628
+ ArrayDialog: react10.FC<ArrayComponentProps & {
568
629
  dialogProps?: React.HTMLAttributes<HTMLDivElement>;
569
630
  }>;
631
+ ArrayDrawer: react10.FC<ArrayComponentProps & {
632
+ drawerProps?: React.HTMLAttributes<HTMLDivElement> & {
633
+ direction?: "top" | "bottom" | "left" | "right";
634
+ floating?: boolean;
635
+ };
636
+ }>;
570
637
  ArrayInline: ComposedArrayProps;
571
- ArrayPopover: react7.FC<ArrayComponentProps & {
638
+ ArrayPopover: react10.FC<ArrayComponentProps & {
572
639
  popoverProps?: React.HTMLAttributes<HTMLDivElement>;
573
640
  }>;
574
- ArrayTags: react7.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
575
- ArrayToggleGroup: react7.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
576
- ToggleGroup: react7.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react7.RefAttributes<unknown>>;
577
- Checkbox: react7.FC<_radix_ui_react_checkbox0.CheckboxProps & react7.RefAttributes<HTMLButtonElement>>;
641
+ ArrayTags: react10.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
642
+ ArrayToggleGroup: react10.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
643
+ ToggleGroup: react10.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react10.RefAttributes<unknown>>;
644
+ Checkbox: react10.FC<_radix_ui_react_checkbox0.CheckboxProps & react10.RefAttributes<HTMLButtonElement>>;
578
645
  Column: typeof Column;
579
- DatePicker: react7.ForwardRefExoticComponent<Partial<{
646
+ DatePicker: react10.ForwardRefExoticComponent<Partial<{
580
647
  value?: Date;
581
648
  onChange?: (date: Date | undefined) => void;
582
649
  placeholder?: string;
583
- } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react7.RefAttributes<unknown>>;
584
- DialogItem: react7.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
585
- children?: react7.ReactNode | undefined;
586
- }>, "ref"> & react7.RefAttributes<unknown>>;
587
- PopoverItem: react7.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
588
- children?: react7.ReactNode | undefined;
589
- }>, "ref"> & react7.RefAttributes<unknown>>;
650
+ } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react10.RefAttributes<unknown>>;
651
+ DialogItem: react10.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
652
+ children?: react10.ReactNode | undefined;
653
+ }>, "ref"> & react10.RefAttributes<unknown>>;
654
+ DrawerItem: react10.ForwardRefExoticComponent<Omit<Partial<DrawerItemProps & {
655
+ children?: react10.ReactNode | undefined;
656
+ }>, "ref"> & react10.RefAttributes<unknown>>;
657
+ PopoverItem: react10.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
658
+ children?: react10.ReactNode | undefined;
659
+ }>, "ref"> & react10.RefAttributes<unknown>>;
590
660
  FormGrid: typeof FormGrid;
591
- FormItem: react7.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
592
- children?: react7.ReactNode | undefined;
593
- }>, "ref"> & react7.RefAttributes<unknown>>;
594
- Hidden: react7.ForwardRefExoticComponent<Partial<HiddenProps> & react7.RefAttributes<unknown>>;
595
- IconToggle: react7.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
596
- ToggleButton: react7.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
597
- Input: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
598
- NumberInput: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
599
- ObjectContainer: react7.FC<ObjectContainerProps>;
600
- Radio: react7.FC<RadioProps>;
661
+ FormItem: react10.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
662
+ children?: react10.ReactNode | undefined;
663
+ }>, "ref"> & react10.RefAttributes<unknown>>;
664
+ Hidden: react10.ForwardRefExoticComponent<Partial<HiddenProps> & react10.RefAttributes<unknown>>;
665
+ IconToggle: react10.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
666
+ ToggleButton: react10.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
667
+ Input: react10.FC<_pixpilot_shadcn_ui0.InputProps>;
668
+ NumberInput: react10.FC<_pixpilot_shadcn_ui0.InputProps>;
669
+ ObjectContainer: react10.FC<ObjectContainerProps>;
670
+ Radio: react10.FC<RadioProps>;
601
671
  Row: typeof Row;
602
- Select: react7.FC<SelectProps$1>;
603
- Separator: react7.FC<_radix_ui_react_separator0.SeparatorProps & react7.RefAttributes<HTMLDivElement>>;
604
- Switch: react7.FC<_radix_ui_react_switch0.SwitchProps & react7.RefAttributes<HTMLButtonElement>>;
605
- Textarea: react7.FC<react7.ClassAttributes<HTMLTextAreaElement> & react7.TextareaHTMLAttributes<HTMLTextAreaElement>>;
672
+ Select: react10.FC<SelectProps$1>;
673
+ Separator: react10.FC<_radix_ui_react_separator0.SeparatorProps & react10.RefAttributes<HTMLDivElement>>;
674
+ Switch: react10.FC<_radix_ui_react_switch0.SwitchProps & react10.RefAttributes<HTMLButtonElement>>;
675
+ Textarea: react10.FC<react10.ClassAttributes<HTMLTextAreaElement> & react10.TextareaHTMLAttributes<HTMLTextAreaElement>>;
606
676
  }, Component_5, Decorator_5>): JSX.Element;
607
677
  displayName: string;
608
678
  };
609
679
  Date: {
610
- <Decorator_6 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_6 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
611
- AvatarUpload: react7.FC<_pixpilot_shadcn_ui0.AvatarUploadProps & UploadValueMapper<_pixpilot_shadcn_ui0.FileMetadata | null>>;
612
- FileUploadInline: react7.FC<FileUploadInlineProps$1>;
613
- IconPicker: react7.FC<IconPickerProps$1>;
614
- FileUpload: react7.FC<FileUploadProps$1>;
615
- RichTextEditor: react7.FC<_pixpilot_shadcn_ui0.RichTextEditorProps>;
616
- ColorPicker: react7.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react7.RefAttributes<unknown>>;
617
- Combobox: react7.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
618
- ColorSelect: react7.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
619
- Rating: react7.FC<_pixpilot_shadcn_ui0.RatingProps>;
620
- Slider: react7.FC<_pixpilot_shadcn_ui0.SliderProps>;
621
- SliderInput: react7.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
622
- SliderSelect: react7.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
680
+ <Decorator_6 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_6 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
681
+ AvatarUpload: react10.FC<_pixpilot_shadcn_ui0.AvatarUploadProps & UploadValueMapper<_pixpilot_shadcn_ui0.FileMetadata | null>>;
682
+ FileUploadInline: react10.FC<FileUploadInlineProps$1>;
683
+ IconPicker: react10.FC<IconPickerProps$1>;
684
+ FileUpload: react10.FC<FileUploadProps$1>;
685
+ RichTextEditor: react10.FC<_pixpilot_shadcn_ui0.RichTextEditorProps>;
686
+ ColorPicker: react10.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react10.RefAttributes<unknown>>;
687
+ Combobox: react10.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
688
+ ColorSelect: react10.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
689
+ Rating: react10.FC<_pixpilot_shadcn_ui0.RatingProps>;
690
+ Slider: react10.FC<_pixpilot_shadcn_ui0.SliderProps>;
691
+ SliderInput: react10.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
692
+ SliderSelect: react10.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
623
693
  TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
624
- TagsInputInLine: react7.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
694
+ TagsInputInLine: react10.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
625
695
  ArrayCards: ComposedArrayProps;
626
- ArrayCollapse: react7.FC<ArrayComponentProps & {
696
+ ArrayCollapse: react10.FC<ArrayComponentProps & {
627
697
  defaultActiveKey?: Array<string | number>;
628
698
  mode?: "accordion" | "multiple";
629
699
  collapseProps?: React.HTMLAttributes<HTMLDivElement>;
630
700
  }>;
631
- ArrayDialog: react7.FC<ArrayComponentProps & {
701
+ ArrayDialog: react10.FC<ArrayComponentProps & {
632
702
  dialogProps?: React.HTMLAttributes<HTMLDivElement>;
633
703
  }>;
704
+ ArrayDrawer: react10.FC<ArrayComponentProps & {
705
+ drawerProps?: React.HTMLAttributes<HTMLDivElement> & {
706
+ direction?: "top" | "bottom" | "left" | "right";
707
+ floating?: boolean;
708
+ };
709
+ }>;
634
710
  ArrayInline: ComposedArrayProps;
635
- ArrayPopover: react7.FC<ArrayComponentProps & {
711
+ ArrayPopover: react10.FC<ArrayComponentProps & {
636
712
  popoverProps?: React.HTMLAttributes<HTMLDivElement>;
637
713
  }>;
638
- ArrayTags: react7.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
639
- ArrayToggleGroup: react7.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
640
- ToggleGroup: react7.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react7.RefAttributes<unknown>>;
641
- Checkbox: react7.FC<_radix_ui_react_checkbox0.CheckboxProps & react7.RefAttributes<HTMLButtonElement>>;
714
+ ArrayTags: react10.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
715
+ ArrayToggleGroup: react10.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
716
+ ToggleGroup: react10.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react10.RefAttributes<unknown>>;
717
+ Checkbox: react10.FC<_radix_ui_react_checkbox0.CheckboxProps & react10.RefAttributes<HTMLButtonElement>>;
642
718
  Column: typeof Column;
643
- DatePicker: react7.ForwardRefExoticComponent<Partial<{
719
+ DatePicker: react10.ForwardRefExoticComponent<Partial<{
644
720
  value?: Date;
645
721
  onChange?: (date: Date | undefined) => void;
646
722
  placeholder?: string;
647
- } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react7.RefAttributes<unknown>>;
648
- DialogItem: react7.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
649
- children?: react7.ReactNode | undefined;
650
- }>, "ref"> & react7.RefAttributes<unknown>>;
651
- PopoverItem: react7.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
652
- children?: react7.ReactNode | undefined;
653
- }>, "ref"> & react7.RefAttributes<unknown>>;
723
+ } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react10.RefAttributes<unknown>>;
724
+ DialogItem: react10.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
725
+ children?: react10.ReactNode | undefined;
726
+ }>, "ref"> & react10.RefAttributes<unknown>>;
727
+ DrawerItem: react10.ForwardRefExoticComponent<Omit<Partial<DrawerItemProps & {
728
+ children?: react10.ReactNode | undefined;
729
+ }>, "ref"> & react10.RefAttributes<unknown>>;
730
+ PopoverItem: react10.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
731
+ children?: react10.ReactNode | undefined;
732
+ }>, "ref"> & react10.RefAttributes<unknown>>;
654
733
  FormGrid: typeof FormGrid;
655
- FormItem: react7.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
656
- children?: react7.ReactNode | undefined;
657
- }>, "ref"> & react7.RefAttributes<unknown>>;
658
- Hidden: react7.ForwardRefExoticComponent<Partial<HiddenProps> & react7.RefAttributes<unknown>>;
659
- IconToggle: react7.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
660
- ToggleButton: react7.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
661
- Input: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
662
- NumberInput: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
663
- ObjectContainer: react7.FC<ObjectContainerProps>;
664
- Radio: react7.FC<RadioProps>;
734
+ FormItem: react10.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
735
+ children?: react10.ReactNode | undefined;
736
+ }>, "ref"> & react10.RefAttributes<unknown>>;
737
+ Hidden: react10.ForwardRefExoticComponent<Partial<HiddenProps> & react10.RefAttributes<unknown>>;
738
+ IconToggle: react10.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
739
+ ToggleButton: react10.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
740
+ Input: react10.FC<_pixpilot_shadcn_ui0.InputProps>;
741
+ NumberInput: react10.FC<_pixpilot_shadcn_ui0.InputProps>;
742
+ ObjectContainer: react10.FC<ObjectContainerProps>;
743
+ Radio: react10.FC<RadioProps>;
665
744
  Row: typeof Row;
666
- Select: react7.FC<SelectProps$1>;
667
- Separator: react7.FC<_radix_ui_react_separator0.SeparatorProps & react7.RefAttributes<HTMLDivElement>>;
668
- Switch: react7.FC<_radix_ui_react_switch0.SwitchProps & react7.RefAttributes<HTMLButtonElement>>;
669
- Textarea: react7.FC<react7.ClassAttributes<HTMLTextAreaElement> & react7.TextareaHTMLAttributes<HTMLTextAreaElement>>;
745
+ Select: react10.FC<SelectProps$1>;
746
+ Separator: react10.FC<_radix_ui_react_separator0.SeparatorProps & react10.RefAttributes<HTMLDivElement>>;
747
+ Switch: react10.FC<_radix_ui_react_switch0.SwitchProps & react10.RefAttributes<HTMLButtonElement>>;
748
+ Textarea: react10.FC<react10.ClassAttributes<HTMLTextAreaElement> & react10.TextareaHTMLAttributes<HTMLTextAreaElement>>;
670
749
  }, Component_6, Decorator_6>): JSX.Element;
671
750
  displayName: string;
672
751
  };
673
752
  DateTime: {
674
- <Decorator_7 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_7 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
675
- AvatarUpload: react7.FC<_pixpilot_shadcn_ui0.AvatarUploadProps & UploadValueMapper<_pixpilot_shadcn_ui0.FileMetadata | null>>;
676
- FileUploadInline: react7.FC<FileUploadInlineProps$1>;
677
- IconPicker: react7.FC<IconPickerProps$1>;
678
- FileUpload: react7.FC<FileUploadProps$1>;
679
- RichTextEditor: react7.FC<_pixpilot_shadcn_ui0.RichTextEditorProps>;
680
- ColorPicker: react7.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react7.RefAttributes<unknown>>;
681
- Combobox: react7.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
682
- ColorSelect: react7.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
683
- Rating: react7.FC<_pixpilot_shadcn_ui0.RatingProps>;
684
- Slider: react7.FC<_pixpilot_shadcn_ui0.SliderProps>;
685
- SliderInput: react7.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
686
- SliderSelect: react7.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
753
+ <Decorator_7 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_7 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
754
+ AvatarUpload: react10.FC<_pixpilot_shadcn_ui0.AvatarUploadProps & UploadValueMapper<_pixpilot_shadcn_ui0.FileMetadata | null>>;
755
+ FileUploadInline: react10.FC<FileUploadInlineProps$1>;
756
+ IconPicker: react10.FC<IconPickerProps$1>;
757
+ FileUpload: react10.FC<FileUploadProps$1>;
758
+ RichTextEditor: react10.FC<_pixpilot_shadcn_ui0.RichTextEditorProps>;
759
+ ColorPicker: react10.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react10.RefAttributes<unknown>>;
760
+ Combobox: react10.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
761
+ ColorSelect: react10.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
762
+ Rating: react10.FC<_pixpilot_shadcn_ui0.RatingProps>;
763
+ Slider: react10.FC<_pixpilot_shadcn_ui0.SliderProps>;
764
+ SliderInput: react10.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
765
+ SliderSelect: react10.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
687
766
  TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
688
- TagsInputInLine: react7.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
767
+ TagsInputInLine: react10.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
689
768
  ArrayCards: ComposedArrayProps;
690
- ArrayCollapse: react7.FC<ArrayComponentProps & {
769
+ ArrayCollapse: react10.FC<ArrayComponentProps & {
691
770
  defaultActiveKey?: Array<string | number>;
692
771
  mode?: "accordion" | "multiple";
693
772
  collapseProps?: React.HTMLAttributes<HTMLDivElement>;
694
773
  }>;
695
- ArrayDialog: react7.FC<ArrayComponentProps & {
774
+ ArrayDialog: react10.FC<ArrayComponentProps & {
696
775
  dialogProps?: React.HTMLAttributes<HTMLDivElement>;
697
776
  }>;
777
+ ArrayDrawer: react10.FC<ArrayComponentProps & {
778
+ drawerProps?: React.HTMLAttributes<HTMLDivElement> & {
779
+ direction?: "top" | "bottom" | "left" | "right";
780
+ floating?: boolean;
781
+ };
782
+ }>;
698
783
  ArrayInline: ComposedArrayProps;
699
- ArrayPopover: react7.FC<ArrayComponentProps & {
784
+ ArrayPopover: react10.FC<ArrayComponentProps & {
700
785
  popoverProps?: React.HTMLAttributes<HTMLDivElement>;
701
786
  }>;
702
- ArrayTags: react7.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
703
- ArrayToggleGroup: react7.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
704
- ToggleGroup: react7.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react7.RefAttributes<unknown>>;
705
- Checkbox: react7.FC<_radix_ui_react_checkbox0.CheckboxProps & react7.RefAttributes<HTMLButtonElement>>;
787
+ ArrayTags: react10.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
788
+ ArrayToggleGroup: react10.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
789
+ ToggleGroup: react10.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react10.RefAttributes<unknown>>;
790
+ Checkbox: react10.FC<_radix_ui_react_checkbox0.CheckboxProps & react10.RefAttributes<HTMLButtonElement>>;
706
791
  Column: typeof Column;
707
- DatePicker: react7.ForwardRefExoticComponent<Partial<{
792
+ DatePicker: react10.ForwardRefExoticComponent<Partial<{
708
793
  value?: Date;
709
794
  onChange?: (date: Date | undefined) => void;
710
795
  placeholder?: string;
711
- } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react7.RefAttributes<unknown>>;
712
- DialogItem: react7.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
713
- children?: react7.ReactNode | undefined;
714
- }>, "ref"> & react7.RefAttributes<unknown>>;
715
- PopoverItem: react7.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
716
- children?: react7.ReactNode | undefined;
717
- }>, "ref"> & react7.RefAttributes<unknown>>;
796
+ } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react10.RefAttributes<unknown>>;
797
+ DialogItem: react10.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
798
+ children?: react10.ReactNode | undefined;
799
+ }>, "ref"> & react10.RefAttributes<unknown>>;
800
+ DrawerItem: react10.ForwardRefExoticComponent<Omit<Partial<DrawerItemProps & {
801
+ children?: react10.ReactNode | undefined;
802
+ }>, "ref"> & react10.RefAttributes<unknown>>;
803
+ PopoverItem: react10.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
804
+ children?: react10.ReactNode | undefined;
805
+ }>, "ref"> & react10.RefAttributes<unknown>>;
718
806
  FormGrid: typeof FormGrid;
719
- FormItem: react7.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
720
- children?: react7.ReactNode | undefined;
721
- }>, "ref"> & react7.RefAttributes<unknown>>;
722
- Hidden: react7.ForwardRefExoticComponent<Partial<HiddenProps> & react7.RefAttributes<unknown>>;
723
- IconToggle: react7.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
724
- ToggleButton: react7.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
725
- Input: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
726
- NumberInput: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
727
- ObjectContainer: react7.FC<ObjectContainerProps>;
728
- Radio: react7.FC<RadioProps>;
807
+ FormItem: react10.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
808
+ children?: react10.ReactNode | undefined;
809
+ }>, "ref"> & react10.RefAttributes<unknown>>;
810
+ Hidden: react10.ForwardRefExoticComponent<Partial<HiddenProps> & react10.RefAttributes<unknown>>;
811
+ IconToggle: react10.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
812
+ ToggleButton: react10.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
813
+ Input: react10.FC<_pixpilot_shadcn_ui0.InputProps>;
814
+ NumberInput: react10.FC<_pixpilot_shadcn_ui0.InputProps>;
815
+ ObjectContainer: react10.FC<ObjectContainerProps>;
816
+ Radio: react10.FC<RadioProps>;
729
817
  Row: typeof Row;
730
- Select: react7.FC<SelectProps$1>;
731
- Separator: react7.FC<_radix_ui_react_separator0.SeparatorProps & react7.RefAttributes<HTMLDivElement>>;
732
- Switch: react7.FC<_radix_ui_react_switch0.SwitchProps & react7.RefAttributes<HTMLButtonElement>>;
733
- Textarea: react7.FC<react7.ClassAttributes<HTMLTextAreaElement> & react7.TextareaHTMLAttributes<HTMLTextAreaElement>>;
818
+ Select: react10.FC<SelectProps$1>;
819
+ Separator: react10.FC<_radix_ui_react_separator0.SeparatorProps & react10.RefAttributes<HTMLDivElement>>;
820
+ Switch: react10.FC<_radix_ui_react_switch0.SwitchProps & react10.RefAttributes<HTMLButtonElement>>;
821
+ Textarea: react10.FC<react10.ClassAttributes<HTMLTextAreaElement> & react10.TextareaHTMLAttributes<HTMLTextAreaElement>>;
734
822
  }, Component_7, Decorator_7>): JSX.Element;
735
823
  displayName: string;
736
824
  };
737
825
  Void: {
738
- <Decorator_8 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_8 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
739
- AvatarUpload: react7.FC<_pixpilot_shadcn_ui0.AvatarUploadProps & UploadValueMapper<_pixpilot_shadcn_ui0.FileMetadata | null>>;
740
- FileUploadInline: react7.FC<FileUploadInlineProps$1>;
741
- IconPicker: react7.FC<IconPickerProps$1>;
742
- FileUpload: react7.FC<FileUploadProps$1>;
743
- RichTextEditor: react7.FC<_pixpilot_shadcn_ui0.RichTextEditorProps>;
744
- ColorPicker: react7.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react7.RefAttributes<unknown>>;
745
- Combobox: react7.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
746
- ColorSelect: react7.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
747
- Rating: react7.FC<_pixpilot_shadcn_ui0.RatingProps>;
748
- Slider: react7.FC<_pixpilot_shadcn_ui0.SliderProps>;
749
- SliderInput: react7.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
750
- SliderSelect: react7.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
826
+ <Decorator_8 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_8 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
827
+ AvatarUpload: react10.FC<_pixpilot_shadcn_ui0.AvatarUploadProps & UploadValueMapper<_pixpilot_shadcn_ui0.FileMetadata | null>>;
828
+ FileUploadInline: react10.FC<FileUploadInlineProps$1>;
829
+ IconPicker: react10.FC<IconPickerProps$1>;
830
+ FileUpload: react10.FC<FileUploadProps$1>;
831
+ RichTextEditor: react10.FC<_pixpilot_shadcn_ui0.RichTextEditorProps>;
832
+ ColorPicker: react10.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react10.RefAttributes<unknown>>;
833
+ Combobox: react10.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
834
+ ColorSelect: react10.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
835
+ Rating: react10.FC<_pixpilot_shadcn_ui0.RatingProps>;
836
+ Slider: react10.FC<_pixpilot_shadcn_ui0.SliderProps>;
837
+ SliderInput: react10.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
838
+ SliderSelect: react10.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
751
839
  TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
752
- TagsInputInLine: react7.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
840
+ TagsInputInLine: react10.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
753
841
  ArrayCards: ComposedArrayProps;
754
- ArrayCollapse: react7.FC<ArrayComponentProps & {
842
+ ArrayCollapse: react10.FC<ArrayComponentProps & {
755
843
  defaultActiveKey?: Array<string | number>;
756
844
  mode?: "accordion" | "multiple";
757
845
  collapseProps?: React.HTMLAttributes<HTMLDivElement>;
758
846
  }>;
759
- ArrayDialog: react7.FC<ArrayComponentProps & {
847
+ ArrayDialog: react10.FC<ArrayComponentProps & {
760
848
  dialogProps?: React.HTMLAttributes<HTMLDivElement>;
761
849
  }>;
850
+ ArrayDrawer: react10.FC<ArrayComponentProps & {
851
+ drawerProps?: React.HTMLAttributes<HTMLDivElement> & {
852
+ direction?: "top" | "bottom" | "left" | "right";
853
+ floating?: boolean;
854
+ };
855
+ }>;
762
856
  ArrayInline: ComposedArrayProps;
763
- ArrayPopover: react7.FC<ArrayComponentProps & {
857
+ ArrayPopover: react10.FC<ArrayComponentProps & {
764
858
  popoverProps?: React.HTMLAttributes<HTMLDivElement>;
765
859
  }>;
766
- ArrayTags: react7.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
767
- ArrayToggleGroup: react7.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
768
- ToggleGroup: react7.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react7.RefAttributes<unknown>>;
769
- Checkbox: react7.FC<_radix_ui_react_checkbox0.CheckboxProps & react7.RefAttributes<HTMLButtonElement>>;
860
+ ArrayTags: react10.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
861
+ ArrayToggleGroup: react10.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
862
+ ToggleGroup: react10.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react10.RefAttributes<unknown>>;
863
+ Checkbox: react10.FC<_radix_ui_react_checkbox0.CheckboxProps & react10.RefAttributes<HTMLButtonElement>>;
770
864
  Column: typeof Column;
771
- DatePicker: react7.ForwardRefExoticComponent<Partial<{
865
+ DatePicker: react10.ForwardRefExoticComponent<Partial<{
772
866
  value?: Date;
773
867
  onChange?: (date: Date | undefined) => void;
774
868
  placeholder?: string;
775
- } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react7.RefAttributes<unknown>>;
776
- DialogItem: react7.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
777
- children?: react7.ReactNode | undefined;
778
- }>, "ref"> & react7.RefAttributes<unknown>>;
779
- PopoverItem: react7.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
780
- children?: react7.ReactNode | undefined;
781
- }>, "ref"> & react7.RefAttributes<unknown>>;
869
+ } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react10.RefAttributes<unknown>>;
870
+ DialogItem: react10.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
871
+ children?: react10.ReactNode | undefined;
872
+ }>, "ref"> & react10.RefAttributes<unknown>>;
873
+ DrawerItem: react10.ForwardRefExoticComponent<Omit<Partial<DrawerItemProps & {
874
+ children?: react10.ReactNode | undefined;
875
+ }>, "ref"> & react10.RefAttributes<unknown>>;
876
+ PopoverItem: react10.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
877
+ children?: react10.ReactNode | undefined;
878
+ }>, "ref"> & react10.RefAttributes<unknown>>;
782
879
  FormGrid: typeof FormGrid;
783
- FormItem: react7.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
784
- children?: react7.ReactNode | undefined;
785
- }>, "ref"> & react7.RefAttributes<unknown>>;
786
- Hidden: react7.ForwardRefExoticComponent<Partial<HiddenProps> & react7.RefAttributes<unknown>>;
787
- IconToggle: react7.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
788
- ToggleButton: react7.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
789
- Input: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
790
- NumberInput: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
791
- ObjectContainer: react7.FC<ObjectContainerProps>;
792
- Radio: react7.FC<RadioProps>;
880
+ FormItem: react10.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
881
+ children?: react10.ReactNode | undefined;
882
+ }>, "ref"> & react10.RefAttributes<unknown>>;
883
+ Hidden: react10.ForwardRefExoticComponent<Partial<HiddenProps> & react10.RefAttributes<unknown>>;
884
+ IconToggle: react10.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
885
+ ToggleButton: react10.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
886
+ Input: react10.FC<_pixpilot_shadcn_ui0.InputProps>;
887
+ NumberInput: react10.FC<_pixpilot_shadcn_ui0.InputProps>;
888
+ ObjectContainer: react10.FC<ObjectContainerProps>;
889
+ Radio: react10.FC<RadioProps>;
793
890
  Row: typeof Row;
794
- Select: react7.FC<SelectProps$1>;
795
- Separator: react7.FC<_radix_ui_react_separator0.SeparatorProps & react7.RefAttributes<HTMLDivElement>>;
796
- Switch: react7.FC<_radix_ui_react_switch0.SwitchProps & react7.RefAttributes<HTMLButtonElement>>;
797
- Textarea: react7.FC<react7.ClassAttributes<HTMLTextAreaElement> & react7.TextareaHTMLAttributes<HTMLTextAreaElement>>;
891
+ Select: react10.FC<SelectProps$1>;
892
+ Separator: react10.FC<_radix_ui_react_separator0.SeparatorProps & react10.RefAttributes<HTMLDivElement>>;
893
+ Switch: react10.FC<_radix_ui_react_switch0.SwitchProps & react10.RefAttributes<HTMLButtonElement>>;
894
+ Textarea: react10.FC<react10.ClassAttributes<HTMLTextAreaElement> & react10.TextareaHTMLAttributes<HTMLTextAreaElement>>;
798
895
  }, Component_8, Decorator_8>): JSX.Element;
799
896
  displayName: string;
800
897
  };
801
898
  Number: {
802
- <Decorator_9 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_9 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
803
- AvatarUpload: react7.FC<_pixpilot_shadcn_ui0.AvatarUploadProps & UploadValueMapper<_pixpilot_shadcn_ui0.FileMetadata | null>>;
804
- FileUploadInline: react7.FC<FileUploadInlineProps$1>;
805
- IconPicker: react7.FC<IconPickerProps$1>;
806
- FileUpload: react7.FC<FileUploadProps$1>;
807
- RichTextEditor: react7.FC<_pixpilot_shadcn_ui0.RichTextEditorProps>;
808
- ColorPicker: react7.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react7.RefAttributes<unknown>>;
809
- Combobox: react7.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
810
- ColorSelect: react7.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
811
- Rating: react7.FC<_pixpilot_shadcn_ui0.RatingProps>;
812
- Slider: react7.FC<_pixpilot_shadcn_ui0.SliderProps>;
813
- SliderInput: react7.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
814
- SliderSelect: react7.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
899
+ <Decorator_9 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_9 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
900
+ AvatarUpload: react10.FC<_pixpilot_shadcn_ui0.AvatarUploadProps & UploadValueMapper<_pixpilot_shadcn_ui0.FileMetadata | null>>;
901
+ FileUploadInline: react10.FC<FileUploadInlineProps$1>;
902
+ IconPicker: react10.FC<IconPickerProps$1>;
903
+ FileUpload: react10.FC<FileUploadProps$1>;
904
+ RichTextEditor: react10.FC<_pixpilot_shadcn_ui0.RichTextEditorProps>;
905
+ ColorPicker: react10.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react10.RefAttributes<unknown>>;
906
+ Combobox: react10.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
907
+ ColorSelect: react10.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
908
+ Rating: react10.FC<_pixpilot_shadcn_ui0.RatingProps>;
909
+ Slider: react10.FC<_pixpilot_shadcn_ui0.SliderProps>;
910
+ SliderInput: react10.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
911
+ SliderSelect: react10.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
815
912
  TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
816
- TagsInputInLine: react7.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
913
+ TagsInputInLine: react10.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
817
914
  ArrayCards: ComposedArrayProps;
818
- ArrayCollapse: react7.FC<ArrayComponentProps & {
915
+ ArrayCollapse: react10.FC<ArrayComponentProps & {
819
916
  defaultActiveKey?: Array<string | number>;
820
917
  mode?: "accordion" | "multiple";
821
918
  collapseProps?: React.HTMLAttributes<HTMLDivElement>;
822
919
  }>;
823
- ArrayDialog: react7.FC<ArrayComponentProps & {
920
+ ArrayDialog: react10.FC<ArrayComponentProps & {
824
921
  dialogProps?: React.HTMLAttributes<HTMLDivElement>;
825
922
  }>;
923
+ ArrayDrawer: react10.FC<ArrayComponentProps & {
924
+ drawerProps?: React.HTMLAttributes<HTMLDivElement> & {
925
+ direction?: "top" | "bottom" | "left" | "right";
926
+ floating?: boolean;
927
+ };
928
+ }>;
826
929
  ArrayInline: ComposedArrayProps;
827
- ArrayPopover: react7.FC<ArrayComponentProps & {
930
+ ArrayPopover: react10.FC<ArrayComponentProps & {
828
931
  popoverProps?: React.HTMLAttributes<HTMLDivElement>;
829
932
  }>;
830
- ArrayTags: react7.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
831
- ArrayToggleGroup: react7.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
832
- ToggleGroup: react7.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react7.RefAttributes<unknown>>;
833
- Checkbox: react7.FC<_radix_ui_react_checkbox0.CheckboxProps & react7.RefAttributes<HTMLButtonElement>>;
933
+ ArrayTags: react10.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
934
+ ArrayToggleGroup: react10.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
935
+ ToggleGroup: react10.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react10.RefAttributes<unknown>>;
936
+ Checkbox: react10.FC<_radix_ui_react_checkbox0.CheckboxProps & react10.RefAttributes<HTMLButtonElement>>;
834
937
  Column: typeof Column;
835
- DatePicker: react7.ForwardRefExoticComponent<Partial<{
938
+ DatePicker: react10.ForwardRefExoticComponent<Partial<{
836
939
  value?: Date;
837
940
  onChange?: (date: Date | undefined) => void;
838
941
  placeholder?: string;
839
- } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react7.RefAttributes<unknown>>;
840
- DialogItem: react7.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
841
- children?: react7.ReactNode | undefined;
842
- }>, "ref"> & react7.RefAttributes<unknown>>;
843
- PopoverItem: react7.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
844
- children?: react7.ReactNode | undefined;
845
- }>, "ref"> & react7.RefAttributes<unknown>>;
942
+ } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react10.RefAttributes<unknown>>;
943
+ DialogItem: react10.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
944
+ children?: react10.ReactNode | undefined;
945
+ }>, "ref"> & react10.RefAttributes<unknown>>;
946
+ DrawerItem: react10.ForwardRefExoticComponent<Omit<Partial<DrawerItemProps & {
947
+ children?: react10.ReactNode | undefined;
948
+ }>, "ref"> & react10.RefAttributes<unknown>>;
949
+ PopoverItem: react10.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
950
+ children?: react10.ReactNode | undefined;
951
+ }>, "ref"> & react10.RefAttributes<unknown>>;
846
952
  FormGrid: typeof FormGrid;
847
- FormItem: react7.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
848
- children?: react7.ReactNode | undefined;
849
- }>, "ref"> & react7.RefAttributes<unknown>>;
850
- Hidden: react7.ForwardRefExoticComponent<Partial<HiddenProps> & react7.RefAttributes<unknown>>;
851
- IconToggle: react7.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
852
- ToggleButton: react7.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
853
- Input: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
854
- NumberInput: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
855
- ObjectContainer: react7.FC<ObjectContainerProps>;
856
- Radio: react7.FC<RadioProps>;
953
+ FormItem: react10.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
954
+ children?: react10.ReactNode | undefined;
955
+ }>, "ref"> & react10.RefAttributes<unknown>>;
956
+ Hidden: react10.ForwardRefExoticComponent<Partial<HiddenProps> & react10.RefAttributes<unknown>>;
957
+ IconToggle: react10.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
958
+ ToggleButton: react10.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
959
+ Input: react10.FC<_pixpilot_shadcn_ui0.InputProps>;
960
+ NumberInput: react10.FC<_pixpilot_shadcn_ui0.InputProps>;
961
+ ObjectContainer: react10.FC<ObjectContainerProps>;
962
+ Radio: react10.FC<RadioProps>;
857
963
  Row: typeof Row;
858
- Select: react7.FC<SelectProps$1>;
859
- Separator: react7.FC<_radix_ui_react_separator0.SeparatorProps & react7.RefAttributes<HTMLDivElement>>;
860
- Switch: react7.FC<_radix_ui_react_switch0.SwitchProps & react7.RefAttributes<HTMLButtonElement>>;
861
- Textarea: react7.FC<react7.ClassAttributes<HTMLTextAreaElement> & react7.TextareaHTMLAttributes<HTMLTextAreaElement>>;
964
+ Select: react10.FC<SelectProps$1>;
965
+ Separator: react10.FC<_radix_ui_react_separator0.SeparatorProps & react10.RefAttributes<HTMLDivElement>>;
966
+ Switch: react10.FC<_radix_ui_react_switch0.SwitchProps & react10.RefAttributes<HTMLButtonElement>>;
967
+ Textarea: react10.FC<react10.ClassAttributes<HTMLTextAreaElement> & react10.TextareaHTMLAttributes<HTMLTextAreaElement>>;
862
968
  }, Component_9, Decorator_9>): JSX.Element;
863
969
  displayName: string;
864
970
  };