@pixpilot/formily-shadcn 0.13.4 → 0.14.1

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