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