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