@pixpilot/formily-shadcn 0.11.2 → 0.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/dist/components/array-base/components/array-copy.cjs +2 -2
  2. package/dist/components/array-base/components/array-copy.js +2 -2
  3. package/dist/components/array-base/components/edit.cjs +2 -2
  4. package/dist/components/array-base/components/edit.js +2 -2
  5. package/dist/components/array-base/components/move-down.cjs +2 -2
  6. package/dist/components/array-base/components/move-down.js +2 -2
  7. package/dist/components/array-base/components/move-up.cjs +2 -2
  8. package/dist/components/array-base/components/move-up.js +2 -2
  9. package/dist/components/array-base/components/remove.cjs +2 -2
  10. package/dist/components/array-base/components/remove.js +2 -2
  11. package/dist/components/checkbox.d.ts +2 -2
  12. package/dist/components/date-picker.d.ts +3 -3
  13. package/dist/components/file-upload/avatar-upload.cjs +35 -0
  14. package/dist/components/file-upload/avatar-upload.d.cts +12 -0
  15. package/dist/components/file-upload/avatar-upload.d.ts +12 -0
  16. package/dist/components/file-upload/avatar-upload.js +30 -0
  17. package/dist/components/file-upload/file-upload-inline.d.ts +8 -8
  18. package/dist/components/file-upload/file-upload.d.ts +8 -8
  19. package/dist/components/file-upload/index.cjs +1 -0
  20. package/dist/components/file-upload/index.d.cts +1 -0
  21. package/dist/components/file-upload/index.d.ts +1 -0
  22. package/dist/components/file-upload/index.js +1 -0
  23. package/dist/components/form-item/connected-form-item.d.cts +4 -4
  24. package/dist/components/form-item/connected-form-item.d.ts +4 -4
  25. package/dist/components/icon-picker.d.ts +3 -3
  26. package/dist/components/input.d.ts +2 -2
  27. package/dist/components/json-schema-form-renderer/json-schema-form-renderer.cjs +1 -4
  28. package/dist/components/json-schema-form-renderer/json-schema-form-renderer.js +3 -5
  29. package/dist/components/json-schema-form-renderer/types.d.cts +1 -2
  30. package/dist/components/json-schema-form-renderer/types.d.ts +1 -2
  31. package/dist/components/number-input.d.ts +2 -2
  32. package/dist/components/schema-field/schema-field-basics.d.ts +211 -211
  33. package/dist/components/schema-field/schema-field-extended.cjs +5 -0
  34. package/dist/components/schema-field/schema-field-extended.d.cts +23 -9
  35. package/dist/components/schema-field/schema-field-extended.d.ts +244 -230
  36. package/dist/components/schema-field/schema-field-extended.js +5 -0
  37. package/dist/components/schema-field/schema-field.d.ts +244 -244
  38. package/dist/components/separator.d.ts +2 -2
  39. package/dist/components/slider.d.cts +2 -2
  40. package/dist/components/slider.d.ts +2 -2
  41. package/dist/components/switch.d.cts +2 -2
  42. package/dist/components/switch.d.ts +2 -2
  43. package/dist/components/tags-input-inline.d.cts +2 -2
  44. package/dist/components/tags-input-inline.d.ts +2 -2
  45. package/dist/components/textarea.d.ts +2 -2
  46. package/dist/index.cjs +2 -0
  47. package/dist/index.d.cts +2 -1
  48. package/dist/index.d.ts +2 -1
  49. package/dist/index.js +2 -1
  50. package/dist/utils/transform-schema.cjs +6 -1
  51. package/dist/utils/transform-schema.js +6 -1
  52. package/package.json +2 -2
@@ -8,7 +8,7 @@ import { Row } from "../row.js";
8
8
  import { ObjectContainerProps } from "../object-container.js";
9
9
  import * as _formily_react0 from "@formily/react";
10
10
  import * as react30 from "react";
11
- import * as _pixpilot_shadcn_ui0 from "@pixpilot/shadcn-ui";
11
+ import * as _pixpilot_shadcn_ui16 from "@pixpilot/shadcn-ui";
12
12
  import * as _formily_core0 from "@formily/core";
13
13
  import * as _radix_ui_react_checkbox0 from "@radix-ui/react-checkbox";
14
14
  import * as _radix_ui_react_switch0 from "@radix-ui/react-switch";
@@ -16,34 +16,38 @@ import * as _radix_ui_react_separator0 from "@radix-ui/react-separator";
16
16
 
17
17
  //#region src/components/schema-field/schema-field-extended.d.ts
18
18
  declare const extendedComponentRegistry: {
19
+ AvatarUpload: {
20
+ component: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
21
+ decorator: string;
22
+ };
19
23
  FileUploadInline: {
20
- component: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
24
+ component: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
21
25
  multiple: true;
22
- value?: _pixpilot_shadcn_ui0.FileMetadata[];
23
- onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
24
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
26
+ value?: _pixpilot_shadcn_ui16.FileMetadata[];
27
+ onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
28
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
25
29
  multiple?: false;
26
- value?: _pixpilot_shadcn_ui0.FileMetadata | null;
27
- onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
28
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
30
+ value?: _pixpilot_shadcn_ui16.FileMetadata | null;
31
+ onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
32
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
29
33
  decorator: string;
30
34
  };
31
35
  IconPicker: {
32
- component: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
33
- providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
36
+ component: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
37
+ providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
34
38
  }> & react30.RefAttributes<unknown>>;
35
39
  decorator: string;
36
40
  };
37
41
  FileUpload: {
38
- component: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
42
+ component: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
39
43
  multiple: true;
40
- value?: _pixpilot_shadcn_ui0.FileMetadata[];
41
- onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
42
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
44
+ value?: _pixpilot_shadcn_ui16.FileMetadata[];
45
+ onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
46
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
43
47
  multiple?: false;
44
- value?: _pixpilot_shadcn_ui0.FileMetadata | null;
45
- onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
46
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
48
+ value?: _pixpilot_shadcn_ui16.FileMetadata | null;
49
+ onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
50
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
47
51
  decorator: string;
48
52
  };
49
53
  RichTextEditor: {
@@ -55,15 +59,15 @@ declare const extendedComponentRegistry: {
55
59
  decorator: string;
56
60
  };
57
61
  TagsInput: {
58
- component: typeof _pixpilot_shadcn_ui0.TagsInput;
62
+ component: typeof _pixpilot_shadcn_ui16.TagsInput;
59
63
  decorator: string;
60
64
  };
61
65
  TagsInputInLine: {
62
- component: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
66
+ component: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react30.RefAttributes<unknown>>;
63
67
  decorator: string;
64
68
  };
65
69
  Slider: {
66
- component: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
70
+ component: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
67
71
  decorator: string;
68
72
  };
69
73
  FormItem: {
@@ -110,7 +114,7 @@ declare const extendedComponentRegistry: {
110
114
  value?: Date;
111
115
  onChange?: (date: Date | undefined) => void;
112
116
  placeholder?: string;
113
- } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
117
+ } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
114
118
  decorator: string;
115
119
  };
116
120
  Row: {
@@ -154,32 +158,33 @@ declare const extendedComponentRegistry: {
154
158
  * Use this to render forms from JSON Schema
155
159
  */
156
160
  declare const extendedComponents: {
157
- FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
161
+ AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
162
+ FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
158
163
  multiple: true;
159
- value?: _pixpilot_shadcn_ui0.FileMetadata[];
160
- onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
161
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
164
+ value?: _pixpilot_shadcn_ui16.FileMetadata[];
165
+ onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
166
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
162
167
  multiple?: false;
163
- value?: _pixpilot_shadcn_ui0.FileMetadata | null;
164
- onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
165
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
166
- IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
167
- providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
168
+ value?: _pixpilot_shadcn_ui16.FileMetadata | null;
169
+ onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
170
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
171
+ IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
172
+ providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
168
173
  }> & react30.RefAttributes<unknown>>;
169
- FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
174
+ FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
170
175
  multiple: true;
171
- value?: _pixpilot_shadcn_ui0.FileMetadata[];
172
- onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
173
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
176
+ value?: _pixpilot_shadcn_ui16.FileMetadata[];
177
+ onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
178
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
174
179
  multiple?: false;
175
- value?: _pixpilot_shadcn_ui0.FileMetadata | null;
176
- onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
177
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
180
+ value?: _pixpilot_shadcn_ui16.FileMetadata | null;
181
+ onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
182
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
178
183
  RichTextEditor: react30.FC;
179
184
  Combobox: react30.FC;
180
- TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
181
- TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
182
- Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
185
+ TagsInput: typeof _pixpilot_shadcn_ui16.TagsInput;
186
+ TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react30.RefAttributes<unknown>>;
187
+ Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
183
188
  FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
184
189
  children?: react30.ReactNode | undefined;
185
190
  }>, "ref"> & react30.RefAttributes<unknown>>;
@@ -198,7 +203,7 @@ declare const extendedComponents: {
198
203
  value?: Date;
199
204
  onChange?: (date: Date | undefined) => void;
200
205
  placeholder?: string;
201
- } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
206
+ } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
202
207
  Row: typeof Row;
203
208
  Column: typeof Column;
204
209
  FormGrid: typeof FormGrid;
@@ -216,33 +221,34 @@ declare const SchemaFieldExtended: {
216
221
  <Decorator extends _formily_react0.JSXComponent, Component extends _formily_react0.JSXComponent>(props: _formily_react0.ISchemaFieldProps<Decorator, Component, _formily_core0.ObjectField<Decorator, Component>>): JSX.Element;
217
222
  displayName: string;
218
223
  Markup: {
219
- <Decorator_1 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_1 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaMarkupFieldProps<{
220
- FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
224
+ <Decorator_1 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_1 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaMarkupFieldProps<{
225
+ AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
226
+ FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
221
227
  multiple: true;
222
- value?: _pixpilot_shadcn_ui0.FileMetadata[];
223
- onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
224
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
228
+ value?: _pixpilot_shadcn_ui16.FileMetadata[];
229
+ onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
230
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
225
231
  multiple?: false;
226
- value?: _pixpilot_shadcn_ui0.FileMetadata | null;
227
- onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
228
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
229
- IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
230
- providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
232
+ value?: _pixpilot_shadcn_ui16.FileMetadata | null;
233
+ onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
234
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
235
+ IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
236
+ providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
231
237
  }> & react30.RefAttributes<unknown>>;
232
- FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
238
+ FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
233
239
  multiple: true;
234
- value?: _pixpilot_shadcn_ui0.FileMetadata[];
235
- onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
236
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
240
+ value?: _pixpilot_shadcn_ui16.FileMetadata[];
241
+ onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
242
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
237
243
  multiple?: false;
238
- value?: _pixpilot_shadcn_ui0.FileMetadata | null;
239
- onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
240
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
244
+ value?: _pixpilot_shadcn_ui16.FileMetadata | null;
245
+ onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
246
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
241
247
  RichTextEditor: react30.FC;
242
248
  Combobox: react30.FC;
243
- TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
244
- TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
245
- Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
249
+ TagsInput: typeof _pixpilot_shadcn_ui16.TagsInput;
250
+ TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react30.RefAttributes<unknown>>;
251
+ Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
246
252
  FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
247
253
  children?: react30.ReactNode | undefined;
248
254
  }>, "ref"> & react30.RefAttributes<unknown>>;
@@ -261,7 +267,7 @@ declare const SchemaFieldExtended: {
261
267
  value?: Date;
262
268
  onChange?: (date: Date | undefined) => void;
263
269
  placeholder?: string;
264
- } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
270
+ } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
265
271
  Row: typeof Row;
266
272
  Column: typeof Column;
267
273
  FormGrid: typeof FormGrid;
@@ -278,33 +284,34 @@ declare const SchemaFieldExtended: {
278
284
  displayName: string;
279
285
  };
280
286
  String: {
281
- <Decorator_2 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_2 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
282
- FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
287
+ <Decorator_2 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_2 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
288
+ AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
289
+ FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
283
290
  multiple: true;
284
- value?: _pixpilot_shadcn_ui0.FileMetadata[];
285
- onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
286
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
291
+ value?: _pixpilot_shadcn_ui16.FileMetadata[];
292
+ onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
293
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
287
294
  multiple?: false;
288
- value?: _pixpilot_shadcn_ui0.FileMetadata | null;
289
- onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
290
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
291
- IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
292
- providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
295
+ value?: _pixpilot_shadcn_ui16.FileMetadata | null;
296
+ onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
297
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
298
+ IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
299
+ providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
293
300
  }> & react30.RefAttributes<unknown>>;
294
- FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
301
+ FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
295
302
  multiple: true;
296
- value?: _pixpilot_shadcn_ui0.FileMetadata[];
297
- onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
298
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
303
+ value?: _pixpilot_shadcn_ui16.FileMetadata[];
304
+ onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
305
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
299
306
  multiple?: false;
300
- value?: _pixpilot_shadcn_ui0.FileMetadata | null;
301
- onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
302
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
307
+ value?: _pixpilot_shadcn_ui16.FileMetadata | null;
308
+ onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
309
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
303
310
  RichTextEditor: react30.FC;
304
311
  Combobox: react30.FC;
305
- TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
306
- TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
307
- Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
312
+ TagsInput: typeof _pixpilot_shadcn_ui16.TagsInput;
313
+ TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react30.RefAttributes<unknown>>;
314
+ Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
308
315
  FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
309
316
  children?: react30.ReactNode | undefined;
310
317
  }>, "ref"> & react30.RefAttributes<unknown>>;
@@ -323,7 +330,7 @@ declare const SchemaFieldExtended: {
323
330
  value?: Date;
324
331
  onChange?: (date: Date | undefined) => void;
325
332
  placeholder?: string;
326
- } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
333
+ } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
327
334
  Row: typeof Row;
328
335
  Column: typeof Column;
329
336
  FormGrid: typeof FormGrid;
@@ -340,33 +347,34 @@ declare const SchemaFieldExtended: {
340
347
  displayName: string;
341
348
  };
342
349
  Object: {
343
- <Decorator_3 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_3 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
344
- FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
350
+ <Decorator_3 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_3 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
351
+ AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
352
+ FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
345
353
  multiple: true;
346
- value?: _pixpilot_shadcn_ui0.FileMetadata[];
347
- onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
348
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
354
+ value?: _pixpilot_shadcn_ui16.FileMetadata[];
355
+ onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
356
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
349
357
  multiple?: false;
350
- value?: _pixpilot_shadcn_ui0.FileMetadata | null;
351
- onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
352
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
353
- IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
354
- providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
358
+ value?: _pixpilot_shadcn_ui16.FileMetadata | null;
359
+ onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
360
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
361
+ IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
362
+ providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
355
363
  }> & react30.RefAttributes<unknown>>;
356
- FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
364
+ FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
357
365
  multiple: true;
358
- value?: _pixpilot_shadcn_ui0.FileMetadata[];
359
- onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
360
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
366
+ value?: _pixpilot_shadcn_ui16.FileMetadata[];
367
+ onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
368
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
361
369
  multiple?: false;
362
- value?: _pixpilot_shadcn_ui0.FileMetadata | null;
363
- onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
364
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
370
+ value?: _pixpilot_shadcn_ui16.FileMetadata | null;
371
+ onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
372
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
365
373
  RichTextEditor: react30.FC;
366
374
  Combobox: react30.FC;
367
- TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
368
- TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
369
- Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
375
+ TagsInput: typeof _pixpilot_shadcn_ui16.TagsInput;
376
+ TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react30.RefAttributes<unknown>>;
377
+ Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
370
378
  FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
371
379
  children?: react30.ReactNode | undefined;
372
380
  }>, "ref"> & react30.RefAttributes<unknown>>;
@@ -385,7 +393,7 @@ declare const SchemaFieldExtended: {
385
393
  value?: Date;
386
394
  onChange?: (date: Date | undefined) => void;
387
395
  placeholder?: string;
388
- } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
396
+ } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
389
397
  Row: typeof Row;
390
398
  Column: typeof Column;
391
399
  FormGrid: typeof FormGrid;
@@ -402,33 +410,34 @@ declare const SchemaFieldExtended: {
402
410
  displayName: string;
403
411
  };
404
412
  Array: {
405
- <Decorator_4 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_4 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
406
- FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
413
+ <Decorator_4 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_4 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
414
+ AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
415
+ FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
407
416
  multiple: true;
408
- value?: _pixpilot_shadcn_ui0.FileMetadata[];
409
- onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
410
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
417
+ value?: _pixpilot_shadcn_ui16.FileMetadata[];
418
+ onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
419
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
411
420
  multiple?: false;
412
- value?: _pixpilot_shadcn_ui0.FileMetadata | null;
413
- onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
414
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
415
- IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
416
- providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
421
+ value?: _pixpilot_shadcn_ui16.FileMetadata | null;
422
+ onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
423
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
424
+ IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
425
+ providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
417
426
  }> & react30.RefAttributes<unknown>>;
418
- FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
427
+ FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
419
428
  multiple: true;
420
- value?: _pixpilot_shadcn_ui0.FileMetadata[];
421
- onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
422
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
429
+ value?: _pixpilot_shadcn_ui16.FileMetadata[];
430
+ onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
431
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
423
432
  multiple?: false;
424
- value?: _pixpilot_shadcn_ui0.FileMetadata | null;
425
- onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
426
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
433
+ value?: _pixpilot_shadcn_ui16.FileMetadata | null;
434
+ onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
435
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
427
436
  RichTextEditor: react30.FC;
428
437
  Combobox: react30.FC;
429
- TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
430
- TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
431
- Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
438
+ TagsInput: typeof _pixpilot_shadcn_ui16.TagsInput;
439
+ TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react30.RefAttributes<unknown>>;
440
+ Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
432
441
  FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
433
442
  children?: react30.ReactNode | undefined;
434
443
  }>, "ref"> & react30.RefAttributes<unknown>>;
@@ -447,7 +456,7 @@ declare const SchemaFieldExtended: {
447
456
  value?: Date;
448
457
  onChange?: (date: Date | undefined) => void;
449
458
  placeholder?: string;
450
- } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
459
+ } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
451
460
  Row: typeof Row;
452
461
  Column: typeof Column;
453
462
  FormGrid: typeof FormGrid;
@@ -464,33 +473,34 @@ declare const SchemaFieldExtended: {
464
473
  displayName: string;
465
474
  };
466
475
  Boolean: {
467
- <Decorator_5 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_5 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
468
- FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
476
+ <Decorator_5 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_5 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
477
+ AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
478
+ FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
469
479
  multiple: true;
470
- value?: _pixpilot_shadcn_ui0.FileMetadata[];
471
- onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
472
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
480
+ value?: _pixpilot_shadcn_ui16.FileMetadata[];
481
+ onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
482
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
473
483
  multiple?: false;
474
- value?: _pixpilot_shadcn_ui0.FileMetadata | null;
475
- onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
476
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
477
- IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
478
- providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
484
+ value?: _pixpilot_shadcn_ui16.FileMetadata | null;
485
+ onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
486
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
487
+ IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
488
+ providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
479
489
  }> & react30.RefAttributes<unknown>>;
480
- FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
490
+ FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
481
491
  multiple: true;
482
- value?: _pixpilot_shadcn_ui0.FileMetadata[];
483
- onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
484
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
492
+ value?: _pixpilot_shadcn_ui16.FileMetadata[];
493
+ onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
494
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
485
495
  multiple?: false;
486
- value?: _pixpilot_shadcn_ui0.FileMetadata | null;
487
- onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
488
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
496
+ value?: _pixpilot_shadcn_ui16.FileMetadata | null;
497
+ onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
498
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
489
499
  RichTextEditor: react30.FC;
490
500
  Combobox: react30.FC;
491
- TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
492
- TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
493
- Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
501
+ TagsInput: typeof _pixpilot_shadcn_ui16.TagsInput;
502
+ TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react30.RefAttributes<unknown>>;
503
+ Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
494
504
  FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
495
505
  children?: react30.ReactNode | undefined;
496
506
  }>, "ref"> & react30.RefAttributes<unknown>>;
@@ -509,7 +519,7 @@ declare const SchemaFieldExtended: {
509
519
  value?: Date;
510
520
  onChange?: (date: Date | undefined) => void;
511
521
  placeholder?: string;
512
- } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
522
+ } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
513
523
  Row: typeof Row;
514
524
  Column: typeof Column;
515
525
  FormGrid: typeof FormGrid;
@@ -526,33 +536,34 @@ declare const SchemaFieldExtended: {
526
536
  displayName: string;
527
537
  };
528
538
  Date: {
529
- <Decorator_6 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_6 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
530
- FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
539
+ <Decorator_6 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_6 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
540
+ AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
541
+ FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
531
542
  multiple: true;
532
- value?: _pixpilot_shadcn_ui0.FileMetadata[];
533
- onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
534
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
543
+ value?: _pixpilot_shadcn_ui16.FileMetadata[];
544
+ onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
545
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
535
546
  multiple?: false;
536
- value?: _pixpilot_shadcn_ui0.FileMetadata | null;
537
- onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
538
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
539
- IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
540
- providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
547
+ value?: _pixpilot_shadcn_ui16.FileMetadata | null;
548
+ onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
549
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
550
+ IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
551
+ providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
541
552
  }> & react30.RefAttributes<unknown>>;
542
- FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
553
+ FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
543
554
  multiple: true;
544
- value?: _pixpilot_shadcn_ui0.FileMetadata[];
545
- onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
546
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
555
+ value?: _pixpilot_shadcn_ui16.FileMetadata[];
556
+ onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
557
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
547
558
  multiple?: false;
548
- value?: _pixpilot_shadcn_ui0.FileMetadata | null;
549
- onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
550
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
559
+ value?: _pixpilot_shadcn_ui16.FileMetadata | null;
560
+ onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
561
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
551
562
  RichTextEditor: react30.FC;
552
563
  Combobox: react30.FC;
553
- TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
554
- TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
555
- Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
564
+ TagsInput: typeof _pixpilot_shadcn_ui16.TagsInput;
565
+ TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react30.RefAttributes<unknown>>;
566
+ Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
556
567
  FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
557
568
  children?: react30.ReactNode | undefined;
558
569
  }>, "ref"> & react30.RefAttributes<unknown>>;
@@ -571,7 +582,7 @@ declare const SchemaFieldExtended: {
571
582
  value?: Date;
572
583
  onChange?: (date: Date | undefined) => void;
573
584
  placeholder?: string;
574
- } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
585
+ } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
575
586
  Row: typeof Row;
576
587
  Column: typeof Column;
577
588
  FormGrid: typeof FormGrid;
@@ -588,33 +599,34 @@ declare const SchemaFieldExtended: {
588
599
  displayName: string;
589
600
  };
590
601
  DateTime: {
591
- <Decorator_7 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_7 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
592
- FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
602
+ <Decorator_7 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_7 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
603
+ AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
604
+ FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
593
605
  multiple: true;
594
- value?: _pixpilot_shadcn_ui0.FileMetadata[];
595
- onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
596
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
606
+ value?: _pixpilot_shadcn_ui16.FileMetadata[];
607
+ onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
608
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
597
609
  multiple?: false;
598
- value?: _pixpilot_shadcn_ui0.FileMetadata | null;
599
- onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
600
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
601
- IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
602
- providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
610
+ value?: _pixpilot_shadcn_ui16.FileMetadata | null;
611
+ onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
612
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
613
+ IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
614
+ providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
603
615
  }> & react30.RefAttributes<unknown>>;
604
- FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
616
+ FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
605
617
  multiple: true;
606
- value?: _pixpilot_shadcn_ui0.FileMetadata[];
607
- onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
608
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
618
+ value?: _pixpilot_shadcn_ui16.FileMetadata[];
619
+ onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
620
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
609
621
  multiple?: false;
610
- value?: _pixpilot_shadcn_ui0.FileMetadata | null;
611
- onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
612
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
622
+ value?: _pixpilot_shadcn_ui16.FileMetadata | null;
623
+ onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
624
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
613
625
  RichTextEditor: react30.FC;
614
626
  Combobox: react30.FC;
615
- TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
616
- TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
617
- Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
627
+ TagsInput: typeof _pixpilot_shadcn_ui16.TagsInput;
628
+ TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react30.RefAttributes<unknown>>;
629
+ Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
618
630
  FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
619
631
  children?: react30.ReactNode | undefined;
620
632
  }>, "ref"> & react30.RefAttributes<unknown>>;
@@ -633,7 +645,7 @@ declare const SchemaFieldExtended: {
633
645
  value?: Date;
634
646
  onChange?: (date: Date | undefined) => void;
635
647
  placeholder?: string;
636
- } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
648
+ } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
637
649
  Row: typeof Row;
638
650
  Column: typeof Column;
639
651
  FormGrid: typeof FormGrid;
@@ -650,33 +662,34 @@ declare const SchemaFieldExtended: {
650
662
  displayName: string;
651
663
  };
652
664
  Void: {
653
- <Decorator_8 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_8 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
654
- FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
665
+ <Decorator_8 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_8 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
666
+ AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
667
+ FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
655
668
  multiple: true;
656
- value?: _pixpilot_shadcn_ui0.FileMetadata[];
657
- onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
658
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
669
+ value?: _pixpilot_shadcn_ui16.FileMetadata[];
670
+ onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
671
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
659
672
  multiple?: false;
660
- value?: _pixpilot_shadcn_ui0.FileMetadata | null;
661
- onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
662
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
663
- IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
664
- providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
673
+ value?: _pixpilot_shadcn_ui16.FileMetadata | null;
674
+ onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
675
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
676
+ IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
677
+ providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
665
678
  }> & react30.RefAttributes<unknown>>;
666
- FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
679
+ FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
667
680
  multiple: true;
668
- value?: _pixpilot_shadcn_ui0.FileMetadata[];
669
- onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
670
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
681
+ value?: _pixpilot_shadcn_ui16.FileMetadata[];
682
+ onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
683
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
671
684
  multiple?: false;
672
- value?: _pixpilot_shadcn_ui0.FileMetadata | null;
673
- onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
674
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
685
+ value?: _pixpilot_shadcn_ui16.FileMetadata | null;
686
+ onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
687
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
675
688
  RichTextEditor: react30.FC;
676
689
  Combobox: react30.FC;
677
- TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
678
- TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
679
- Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
690
+ TagsInput: typeof _pixpilot_shadcn_ui16.TagsInput;
691
+ TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react30.RefAttributes<unknown>>;
692
+ Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
680
693
  FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
681
694
  children?: react30.ReactNode | undefined;
682
695
  }>, "ref"> & react30.RefAttributes<unknown>>;
@@ -695,7 +708,7 @@ declare const SchemaFieldExtended: {
695
708
  value?: Date;
696
709
  onChange?: (date: Date | undefined) => void;
697
710
  placeholder?: string;
698
- } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
711
+ } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
699
712
  Row: typeof Row;
700
713
  Column: typeof Column;
701
714
  FormGrid: typeof FormGrid;
@@ -712,33 +725,34 @@ declare const SchemaFieldExtended: {
712
725
  displayName: string;
713
726
  };
714
727
  Number: {
715
- <Decorator_9 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_9 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
716
- FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
728
+ <Decorator_9 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_9 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
729
+ AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
730
+ FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
717
731
  multiple: true;
718
- value?: _pixpilot_shadcn_ui0.FileMetadata[];
719
- onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
720
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
732
+ value?: _pixpilot_shadcn_ui16.FileMetadata[];
733
+ onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
734
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
721
735
  multiple?: false;
722
- value?: _pixpilot_shadcn_ui0.FileMetadata | null;
723
- onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
724
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
725
- IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
726
- providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
736
+ value?: _pixpilot_shadcn_ui16.FileMetadata | null;
737
+ onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
738
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
739
+ IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
740
+ providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
727
741
  }> & react30.RefAttributes<unknown>>;
728
- FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
742
+ FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
729
743
  multiple: true;
730
- value?: _pixpilot_shadcn_ui0.FileMetadata[];
731
- onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
732
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
744
+ value?: _pixpilot_shadcn_ui16.FileMetadata[];
745
+ onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
746
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
733
747
  multiple?: false;
734
- value?: _pixpilot_shadcn_ui0.FileMetadata | null;
735
- onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
736
- } & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
748
+ value?: _pixpilot_shadcn_ui16.FileMetadata | null;
749
+ onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
750
+ } & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
737
751
  RichTextEditor: react30.FC;
738
752
  Combobox: react30.FC;
739
- TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
740
- TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
741
- Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
753
+ TagsInput: typeof _pixpilot_shadcn_ui16.TagsInput;
754
+ TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react30.RefAttributes<unknown>>;
755
+ Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
742
756
  FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
743
757
  children?: react30.ReactNode | undefined;
744
758
  }>, "ref"> & react30.RefAttributes<unknown>>;
@@ -757,7 +771,7 @@ declare const SchemaFieldExtended: {
757
771
  value?: Date;
758
772
  onChange?: (date: Date | undefined) => void;
759
773
  placeholder?: string;
760
- } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
774
+ } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
761
775
  Row: typeof Row;
762
776
  Column: typeof Column;
763
777
  FormGrid: typeof FormGrid;