@pixpilot/formily-shadcn 1.18.0 → 2.0.0

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