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