@pixpilot/formily-shadcn 0.30.0 → 0.30.2

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