@pixpilot/formily-shadcn 0.6.0 → 0.8.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 (217) hide show
  1. package/dist/_virtual/rolldown_runtime.cjs +25 -1
  2. package/dist/_virtual/rolldown_runtime.js +24 -1
  3. package/dist/components/array-base/array-base.cjs +59 -1
  4. package/dist/components/array-base/array-base.js +55 -1
  5. package/dist/components/array-base/array-context.cjs +28 -1
  6. package/dist/components/array-base/array-context.js +22 -1
  7. package/dist/components/array-base/component-context.cjs +28 -1
  8. package/dist/components/array-base/component-context.js +22 -1
  9. package/dist/components/array-base/components/addition.cjs +51 -1
  10. package/dist/components/array-base/components/addition.d.cts +1 -1
  11. package/dist/components/array-base/components/addition.d.ts +1 -1
  12. package/dist/components/array-base/components/addition.js +45 -1
  13. package/dist/components/array-base/components/array-copy.cjs +49 -1
  14. package/dist/components/array-base/components/array-copy.js +42 -1
  15. package/dist/components/array-base/components/array-index.cjs +15 -1
  16. package/dist/components/array-base/components/array-index.js +13 -1
  17. package/dist/components/array-base/components/array-item-label.cjs +22 -1
  18. package/dist/components/array-base/components/array-item-label.js +19 -1
  19. package/dist/components/array-base/components/components.cjs +30 -1
  20. package/dist/components/array-base/components/components.js +29 -1
  21. package/dist/components/array-base/components/edit.cjs +42 -1
  22. package/dist/components/array-base/components/edit.js +36 -1
  23. package/dist/components/array-base/components/empty.cjs +19 -1
  24. package/dist/components/array-base/components/empty.js +16 -1
  25. package/dist/components/array-base/components/get-array-components.cjs +88 -1
  26. package/dist/components/array-base/components/get-array-components.js +84 -1
  27. package/dist/components/array-base/components/move-down.cjs +47 -1
  28. package/dist/components/array-base/components/move-down.js +41 -1
  29. package/dist/components/array-base/components/move-up.cjs +47 -1
  30. package/dist/components/array-base/components/move-up.js +41 -1
  31. package/dist/components/array-base/components/remove.cjs +46 -1
  32. package/dist/components/array-base/components/remove.js +40 -1
  33. package/dist/components/array-base/components/title.cjs +17 -1
  34. package/dist/components/array-base/components/title.js +14 -1
  35. package/dist/components/array-base/components/use-array-components-registry.cjs +56 -1
  36. package/dist/components/array-base/components/use-array-components-registry.js +52 -1
  37. package/dist/components/array-base/constants/index.cjs +17 -1
  38. package/dist/components/array-base/constants/index.js +15 -1
  39. package/dist/components/array-base/index.cjs +2 -1
  40. package/dist/components/array-base/index.js +2 -1
  41. package/dist/components/array-base/utils/filter-and-sort-components.cjs +34 -1
  42. package/dist/components/array-base/utils/filter-and-sort-components.js +34 -1
  43. package/dist/components/array-base/utils/is-array-component.cjs +65 -1
  44. package/dist/components/array-base/utils/is-array-component.js +56 -1
  45. package/dist/components/array-cards/array-cards.cjs +64 -1
  46. package/dist/components/array-cards/array-cards.js +60 -1
  47. package/dist/components/array-cards/index.cjs +1 -1
  48. package/dist/components/array-cards/index.js +1 -1
  49. package/dist/components/array-cards/item.cjs +64 -1
  50. package/dist/components/array-cards/item.js +60 -1
  51. package/dist/components/array-collapse/array-collapse.cjs +96 -1
  52. package/dist/components/array-collapse/array-collapse.js +92 -1
  53. package/dist/components/array-collapse/index.cjs +1 -1
  54. package/dist/components/array-collapse/index.js +1 -1
  55. package/dist/components/array-collapse/item.cjs +84 -1
  56. package/dist/components/array-collapse/item.js +78 -1
  57. package/dist/components/array-common/array-items-list.cjs +43 -1
  58. package/dist/components/array-common/array-items-list.js +39 -1
  59. package/dist/components/array-common/create-active-item-manager.cjs +29 -1
  60. package/dist/components/array-common/create-active-item-manager.js +27 -1
  61. package/dist/components/array-common/index.cjs +5 -1
  62. package/dist/components/array-common/index.js +5 -1
  63. package/dist/components/array-common/item-wrapper.cjs +26 -1
  64. package/dist/components/array-common/item-wrapper.js +21 -1
  65. package/dist/components/array-common/list-item.cjs +53 -1
  66. package/dist/components/array-common/list-item.js +48 -1
  67. package/dist/components/array-common/use-array-editor.cjs +47 -1
  68. package/dist/components/array-common/use-array-editor.js +44 -1
  69. package/dist/components/array-dialog/array-dialog.cjs +66 -1
  70. package/dist/components/array-dialog/array-dialog.js +62 -1
  71. package/dist/components/array-dialog/edit-dialog.cjs +61 -1
  72. package/dist/components/array-dialog/edit-dialog.js +57 -1
  73. package/dist/components/array-dialog/index.cjs +1 -1
  74. package/dist/components/array-dialog/index.js +1 -1
  75. package/dist/components/array-popover/array-popover.cjs +58 -1
  76. package/dist/components/array-popover/array-popover.js +53 -1
  77. package/dist/components/array-popover/index.cjs +1 -1
  78. package/dist/components/array-popover/index.js +1 -1
  79. package/dist/components/array-popover/popover.cjs +75 -1
  80. package/dist/components/array-popover/popover.js +71 -1
  81. package/dist/components/checkbox.cjs +26 -1
  82. package/dist/components/checkbox.js +23 -1
  83. package/dist/components/column.cjs +39 -1
  84. package/dist/components/column.js +35 -1
  85. package/dist/components/combobox.cjs +14 -1
  86. package/dist/components/combobox.js +11 -1
  87. package/dist/components/context/context.cjs +7 -1
  88. package/dist/components/context/context.js +7 -1
  89. package/dist/components/context/form-context.cjs +9 -1
  90. package/dist/components/context/form-context.d.cts +12 -6
  91. package/dist/components/context/form-context.d.ts +12 -6
  92. package/dist/components/context/form-context.js +7 -1
  93. package/dist/components/context/index.cjs +2 -1
  94. package/dist/components/context/index.d.cts +1 -1
  95. package/dist/components/context/index.d.ts +1 -1
  96. package/dist/components/context/index.js +2 -1
  97. package/dist/components/date-picker.cjs +23 -1
  98. package/dist/components/date-picker.js +19 -1
  99. package/dist/components/file-upload/file-upload-inline.cjs +35 -0
  100. package/dist/components/file-upload/file-upload-inline.d.cts +20 -0
  101. package/dist/components/file-upload/file-upload-inline.d.ts +20 -0
  102. package/dist/components/file-upload/file-upload-inline.js +30 -0
  103. package/dist/components/file-upload/file-upload.cjs +35 -0
  104. package/dist/components/file-upload/file-upload.d.cts +20 -0
  105. package/dist/components/file-upload/file-upload.d.ts +20 -0
  106. package/dist/components/file-upload/file-upload.js +30 -0
  107. package/dist/components/file-upload/index.cjs +2 -0
  108. package/dist/components/file-upload/index.d.cts +2 -0
  109. package/dist/components/file-upload/index.d.ts +2 -0
  110. package/dist/components/file-upload/index.js +2 -0
  111. package/dist/components/file-upload/use-file-upload-feedback.cjs +59 -0
  112. package/dist/components/file-upload/use-file-upload-feedback.js +53 -0
  113. package/dist/components/form-grid.cjs +19 -1
  114. package/dist/components/form-grid.js +15 -1
  115. package/dist/components/form-item.cjs +118 -3
  116. package/dist/components/form-item.js +112 -3
  117. package/dist/components/form-items-container.cjs +28 -1
  118. package/dist/components/form-items-container.js +24 -1
  119. package/dist/components/form.cjs +56 -1
  120. package/dist/components/form.d.cts +1 -1
  121. package/dist/components/form.d.ts +1 -1
  122. package/dist/components/form.js +51 -1
  123. package/dist/components/hidden.cjs +26 -1
  124. package/dist/components/hidden.js +23 -1
  125. package/dist/components/icon-picker.cjs +37 -1
  126. package/dist/components/icon-picker.d.cts +2 -2
  127. package/dist/components/icon-picker.d.ts +2 -2
  128. package/dist/components/icon-picker.js +33 -1
  129. package/dist/components/input.cjs +20 -1
  130. package/dist/components/input.js +17 -1
  131. package/dist/components/json-schema-form-renderer.cjs +30 -1
  132. package/dist/components/json-schema-form-renderer.d.cts +3 -0
  133. package/dist/components/json-schema-form-renderer.d.ts +3 -0
  134. package/dist/components/json-schema-form-renderer.js +26 -1
  135. package/dist/components/number-input.cjs +19 -1
  136. package/dist/components/number-input.d.cts +2 -2
  137. package/dist/components/number-input.js +16 -1
  138. package/dist/components/object-container.cjs +35 -1
  139. package/dist/components/object-container.js +32 -1
  140. package/dist/components/radio.cjs +40 -1
  141. package/dist/components/radio.js +35 -1
  142. package/dist/components/rich-text-editor.cjs +27 -0
  143. package/dist/components/rich-text-editor.d.cts +6 -0
  144. package/dist/components/rich-text-editor.d.ts +6 -0
  145. package/dist/components/rich-text-editor.js +23 -0
  146. package/dist/components/row.cjs +39 -1
  147. package/dist/components/row.js +35 -1
  148. package/dist/components/schema-field-extended.cjs +25 -0
  149. package/dist/components/schema-field-extended.d.cts +630 -0
  150. package/dist/components/schema-field-extended.d.ts +630 -0
  151. package/dist/components/schema-field-extended.js +23 -0
  152. package/dist/components/schema-field.cjs +61 -1
  153. package/dist/components/schema-field.d.cts +290 -288
  154. package/dist/components/schema-field.d.ts +136 -134
  155. package/dist/components/schema-field.js +57 -1
  156. package/dist/components/select.cjs +11 -1
  157. package/dist/components/select.js +8 -1
  158. package/dist/components/separator.cjs +15 -1
  159. package/dist/components/separator.d.cts +3 -3
  160. package/dist/components/separator.d.ts +3 -3
  161. package/dist/components/separator.js +12 -1
  162. package/dist/components/slider.cjs +33 -1
  163. package/dist/components/slider.d.cts +2 -2
  164. package/dist/components/slider.d.ts +2 -2
  165. package/dist/components/slider.js +29 -1
  166. package/dist/components/switch.cjs +21 -1
  167. package/dist/components/switch.d.cts +3 -3
  168. package/dist/components/switch.d.ts +3 -3
  169. package/dist/components/switch.js +18 -1
  170. package/dist/components/tags-input-inline.cjs +26 -1
  171. package/dist/components/tags-input-inline.d.cts +3 -3
  172. package/dist/components/tags-input-inline.d.ts +3 -3
  173. package/dist/components/tags-input-inline.js +23 -1
  174. package/dist/components/textarea.cjs +19 -1
  175. package/dist/components/textarea.d.cts +2 -2
  176. package/dist/components/textarea.js +16 -1
  177. package/dist/hooks/index.cjs +3 -1
  178. package/dist/hooks/index.js +3 -1
  179. package/dist/hooks/use-description.cjs +14 -1
  180. package/dist/hooks/use-description.js +12 -1
  181. package/dist/hooks/use-form-context.cjs +13 -1
  182. package/dist/hooks/use-form-context.js +11 -1
  183. package/dist/hooks/use-label.cjs +19 -1
  184. package/dist/hooks/use-label.js +16 -1
  185. package/dist/index.cjs +102 -1
  186. package/dist/index.d.cts +7 -4
  187. package/dist/index.d.ts +7 -4
  188. package/dist/index.js +35 -1
  189. package/dist/types/form.d.cts +1 -9
  190. package/dist/types/form.d.ts +1 -9
  191. package/dist/utils/create-panel-state-manager.cjs +40 -1
  192. package/dist/utils/create-panel-state-manager.js +38 -1
  193. package/dist/utils/for-each-schema.cjs +27 -1
  194. package/dist/utils/for-each-schema.js +26 -1
  195. package/dist/utils/get-array-item-info.cjs +20 -1
  196. package/dist/utils/get-array-item-info.js +19 -1
  197. package/dist/utils/get-default-value.cjs +22 -1
  198. package/dist/utils/get-default-value.js +20 -1
  199. package/dist/utils/has-array-item-errors.cjs +15 -1
  200. package/dist/utils/has-array-item-errors.js +14 -1
  201. package/dist/utils/has-error.cjs +12 -1
  202. package/dist/utils/has-error.js +10 -1
  203. package/dist/utils/index.cjs +10 -1
  204. package/dist/utils/index.js +10 -1
  205. package/dist/utils/resolve-responsive-space.cjs +131 -1
  206. package/dist/utils/resolve-responsive-space.js +123 -1
  207. package/dist/utils/transform-schema.cjs +45 -1
  208. package/dist/utils/transform-schema.js +43 -1
  209. package/dist/utils/use-array-item-editor.cjs +3 -1
  210. package/dist/utils/use-array-item-editor.js +1 -1
  211. package/dist/utils/validate-array-item-fields.cjs +22 -1
  212. package/dist/utils/validate-array-item-fields.js +22 -1
  213. package/package.json +5 -5
  214. package/dist/components/file-upload-inline.cjs +0 -3
  215. package/dist/components/file-upload-inline.d.cts +0 -12
  216. package/dist/components/file-upload-inline.d.ts +0 -12
  217. package/dist/components/file-upload-inline.js +0 -3
@@ -0,0 +1,630 @@
1
+ import { ArrayComponentProps, ComposedArrayProps } from "./array-base/types.cjs";
2
+ import "./array-base/index.cjs";
3
+ import { Column } from "./column.cjs";
4
+ import { FormGrid } from "./form-grid.cjs";
5
+ import { FormItemProps } from "./form-item.cjs";
6
+ import { Row } from "./row.cjs";
7
+ import { ObjectContainerProps } from "./object-container.cjs";
8
+ import * as _formily_react11 from "@formily/react";
9
+ import * as react384 from "react";
10
+ import * as _formily_core0 from "@formily/core";
11
+ import * as _pixpilot_shadcn_ui9 from "@pixpilot/shadcn-ui";
12
+ import * as _radix_ui_react_checkbox10 from "@radix-ui/react-checkbox";
13
+ import * as react_day_picker10 from "react-day-picker";
14
+ import * as _radix_ui_react_switch9 from "@radix-ui/react-switch";
15
+ import * as _radix_ui_react_separator9 from "@radix-ui/react-separator";
16
+
17
+ //#region src/components/schema-field-extended.d.ts
18
+ /**
19
+ * SchemaField with all Shadcn Formily components pre-registered
20
+ * Use this to render forms from JSON Schema
21
+ */
22
+ declare const SchemaFieldExtended: {
23
+ <Decorator extends _formily_react11.JSXComponent, Component extends _formily_react11.JSXComponent>(props: _formily_react11.ISchemaFieldProps<Decorator, Component, _formily_core0.ObjectField<Decorator, Component>>): JSX.Element;
24
+ displayName: string;
25
+ Markup: {
26
+ <Decorator_1 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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_react11.ISchemaMarkupFieldProps<{
27
+ FormItem: react384.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
28
+ children?: react384.ReactNode | undefined;
29
+ }>, "ref"> & react384.RefAttributes<unknown>>;
30
+ Hidden: react384.ForwardRefExoticComponent<Partial<{
31
+ children?: React.ReactNode;
32
+ value?: string;
33
+ }> & react384.RefAttributes<unknown>>;
34
+ Input: react384.ForwardRefExoticComponent<Omit<Partial<react384.ClassAttributes<HTMLInputElement> & react384.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react384.RefAttributes<unknown>>;
35
+ Textarea: react384.ForwardRefExoticComponent<Omit<Partial<react384.ClassAttributes<HTMLTextAreaElement> & react384.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react384.RefAttributes<unknown>>;
36
+ NumberInput: react384.ForwardRefExoticComponent<Omit<Partial<react384.ClassAttributes<HTMLInputElement> & react384.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react384.RefAttributes<unknown>>;
37
+ Checkbox: react384.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react384.RefAttributes<HTMLButtonElement>>, "ref"> & react384.RefAttributes<unknown>>;
38
+ Radio: react384.FC;
39
+ Select: react384.FC;
40
+ Switch: react384.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch9.SwitchProps & react384.RefAttributes<HTMLButtonElement>>, "ref"> & react384.RefAttributes<unknown>>;
41
+ DatePicker: react384.ForwardRefExoticComponent<Partial<{
42
+ value?: Date;
43
+ onChange?: (date: Date | undefined) => void;
44
+ placeholder?: string;
45
+ } & Omit<{
46
+ value?: Date;
47
+ onChange?: (date: Date | undefined) => void;
48
+ placeholder?: string;
49
+ } & Omit<react_day_picker10.DayPickerProps & {
50
+ buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
51
+ }, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react384.RefAttributes<unknown>>;
52
+ Row: typeof Row;
53
+ Column: typeof Column;
54
+ FormGrid: typeof FormGrid;
55
+ Combobox: react384.FC;
56
+ TagsInput: typeof _pixpilot_shadcn_ui9.TagsInput;
57
+ Separator: react384.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator9.SeparatorProps & react384.RefAttributes<HTMLDivElement>>, "ref"> & react384.RefAttributes<unknown>>;
58
+ Slider: react384.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui9.SliderProps>, "ref"> & react384.RefAttributes<unknown>>;
59
+ ArrayCards: ComposedArrayProps;
60
+ ArrayDialog: react384.FC<ArrayComponentProps>;
61
+ ArrayCollapse: react384.FC<ArrayComponentProps & {
62
+ defaultActiveKey?: Array<string | number>;
63
+ mode?: "accordion" | "multiple";
64
+ }>;
65
+ ArrayPopover: react384.FC<ArrayComponentProps>;
66
+ ObjectContainer: react384.FC<ObjectContainerProps>;
67
+ FileUploadInline: react384.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
68
+ multiple: true;
69
+ value?: _pixpilot_shadcn_ui9.FileMetadata[];
70
+ onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
71
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
72
+ multiple?: false;
73
+ value?: _pixpilot_shadcn_ui9.FileMetadata | null;
74
+ onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
75
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react384.RefAttributes<unknown>>;
76
+ IconPicker: react384.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui9.IconPickerProps, "providers"> & {
77
+ providers?: _pixpilot_shadcn_ui9.IconProviderProps[];
78
+ }> & react384.RefAttributes<unknown>>;
79
+ FileUpload: react384.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
80
+ multiple: true;
81
+ value?: _pixpilot_shadcn_ui9.FileMetadata[];
82
+ onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
83
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
84
+ multiple?: false;
85
+ value?: _pixpilot_shadcn_ui9.FileMetadata | null;
86
+ onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
87
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react384.RefAttributes<unknown>>;
88
+ RichTextEditor: react384.FC;
89
+ }, Component_1, Decorator_1>): JSX.Element;
90
+ displayName: string;
91
+ };
92
+ String: {
93
+ <Decorator_2 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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_react11.ISchemaTypeFieldProps<{
94
+ FormItem: react384.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
95
+ children?: react384.ReactNode | undefined;
96
+ }>, "ref"> & react384.RefAttributes<unknown>>;
97
+ Hidden: react384.ForwardRefExoticComponent<Partial<{
98
+ children?: React.ReactNode;
99
+ value?: string;
100
+ }> & react384.RefAttributes<unknown>>;
101
+ Input: react384.ForwardRefExoticComponent<Omit<Partial<react384.ClassAttributes<HTMLInputElement> & react384.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react384.RefAttributes<unknown>>;
102
+ Textarea: react384.ForwardRefExoticComponent<Omit<Partial<react384.ClassAttributes<HTMLTextAreaElement> & react384.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react384.RefAttributes<unknown>>;
103
+ NumberInput: react384.ForwardRefExoticComponent<Omit<Partial<react384.ClassAttributes<HTMLInputElement> & react384.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react384.RefAttributes<unknown>>;
104
+ Checkbox: react384.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react384.RefAttributes<HTMLButtonElement>>, "ref"> & react384.RefAttributes<unknown>>;
105
+ Radio: react384.FC;
106
+ Select: react384.FC;
107
+ Switch: react384.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch9.SwitchProps & react384.RefAttributes<HTMLButtonElement>>, "ref"> & react384.RefAttributes<unknown>>;
108
+ DatePicker: react384.ForwardRefExoticComponent<Partial<{
109
+ value?: Date;
110
+ onChange?: (date: Date | undefined) => void;
111
+ placeholder?: string;
112
+ } & Omit<{
113
+ value?: Date;
114
+ onChange?: (date: Date | undefined) => void;
115
+ placeholder?: string;
116
+ } & Omit<react_day_picker10.DayPickerProps & {
117
+ buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
118
+ }, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react384.RefAttributes<unknown>>;
119
+ Row: typeof Row;
120
+ Column: typeof Column;
121
+ FormGrid: typeof FormGrid;
122
+ Combobox: react384.FC;
123
+ TagsInput: typeof _pixpilot_shadcn_ui9.TagsInput;
124
+ Separator: react384.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator9.SeparatorProps & react384.RefAttributes<HTMLDivElement>>, "ref"> & react384.RefAttributes<unknown>>;
125
+ Slider: react384.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui9.SliderProps>, "ref"> & react384.RefAttributes<unknown>>;
126
+ ArrayCards: ComposedArrayProps;
127
+ ArrayDialog: react384.FC<ArrayComponentProps>;
128
+ ArrayCollapse: react384.FC<ArrayComponentProps & {
129
+ defaultActiveKey?: Array<string | number>;
130
+ mode?: "accordion" | "multiple";
131
+ }>;
132
+ ArrayPopover: react384.FC<ArrayComponentProps>;
133
+ ObjectContainer: react384.FC<ObjectContainerProps>;
134
+ FileUploadInline: react384.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
135
+ multiple: true;
136
+ value?: _pixpilot_shadcn_ui9.FileMetadata[];
137
+ onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
138
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
139
+ multiple?: false;
140
+ value?: _pixpilot_shadcn_ui9.FileMetadata | null;
141
+ onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
142
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react384.RefAttributes<unknown>>;
143
+ IconPicker: react384.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui9.IconPickerProps, "providers"> & {
144
+ providers?: _pixpilot_shadcn_ui9.IconProviderProps[];
145
+ }> & react384.RefAttributes<unknown>>;
146
+ FileUpload: react384.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
147
+ multiple: true;
148
+ value?: _pixpilot_shadcn_ui9.FileMetadata[];
149
+ onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
150
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
151
+ multiple?: false;
152
+ value?: _pixpilot_shadcn_ui9.FileMetadata | null;
153
+ onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
154
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react384.RefAttributes<unknown>>;
155
+ RichTextEditor: react384.FC;
156
+ }, Component_2, Decorator_2>): JSX.Element;
157
+ displayName: string;
158
+ };
159
+ Object: {
160
+ <Decorator_3 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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_react11.ISchemaTypeFieldProps<{
161
+ FormItem: react384.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
162
+ children?: react384.ReactNode | undefined;
163
+ }>, "ref"> & react384.RefAttributes<unknown>>;
164
+ Hidden: react384.ForwardRefExoticComponent<Partial<{
165
+ children?: React.ReactNode;
166
+ value?: string;
167
+ }> & react384.RefAttributes<unknown>>;
168
+ Input: react384.ForwardRefExoticComponent<Omit<Partial<react384.ClassAttributes<HTMLInputElement> & react384.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react384.RefAttributes<unknown>>;
169
+ Textarea: react384.ForwardRefExoticComponent<Omit<Partial<react384.ClassAttributes<HTMLTextAreaElement> & react384.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react384.RefAttributes<unknown>>;
170
+ NumberInput: react384.ForwardRefExoticComponent<Omit<Partial<react384.ClassAttributes<HTMLInputElement> & react384.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react384.RefAttributes<unknown>>;
171
+ Checkbox: react384.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react384.RefAttributes<HTMLButtonElement>>, "ref"> & react384.RefAttributes<unknown>>;
172
+ Radio: react384.FC;
173
+ Select: react384.FC;
174
+ Switch: react384.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch9.SwitchProps & react384.RefAttributes<HTMLButtonElement>>, "ref"> & react384.RefAttributes<unknown>>;
175
+ DatePicker: react384.ForwardRefExoticComponent<Partial<{
176
+ value?: Date;
177
+ onChange?: (date: Date | undefined) => void;
178
+ placeholder?: string;
179
+ } & Omit<{
180
+ value?: Date;
181
+ onChange?: (date: Date | undefined) => void;
182
+ placeholder?: string;
183
+ } & Omit<react_day_picker10.DayPickerProps & {
184
+ buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
185
+ }, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react384.RefAttributes<unknown>>;
186
+ Row: typeof Row;
187
+ Column: typeof Column;
188
+ FormGrid: typeof FormGrid;
189
+ Combobox: react384.FC;
190
+ TagsInput: typeof _pixpilot_shadcn_ui9.TagsInput;
191
+ Separator: react384.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator9.SeparatorProps & react384.RefAttributes<HTMLDivElement>>, "ref"> & react384.RefAttributes<unknown>>;
192
+ Slider: react384.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui9.SliderProps>, "ref"> & react384.RefAttributes<unknown>>;
193
+ ArrayCards: ComposedArrayProps;
194
+ ArrayDialog: react384.FC<ArrayComponentProps>;
195
+ ArrayCollapse: react384.FC<ArrayComponentProps & {
196
+ defaultActiveKey?: Array<string | number>;
197
+ mode?: "accordion" | "multiple";
198
+ }>;
199
+ ArrayPopover: react384.FC<ArrayComponentProps>;
200
+ ObjectContainer: react384.FC<ObjectContainerProps>;
201
+ FileUploadInline: react384.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
202
+ multiple: true;
203
+ value?: _pixpilot_shadcn_ui9.FileMetadata[];
204
+ onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
205
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
206
+ multiple?: false;
207
+ value?: _pixpilot_shadcn_ui9.FileMetadata | null;
208
+ onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
209
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react384.RefAttributes<unknown>>;
210
+ IconPicker: react384.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui9.IconPickerProps, "providers"> & {
211
+ providers?: _pixpilot_shadcn_ui9.IconProviderProps[];
212
+ }> & react384.RefAttributes<unknown>>;
213
+ FileUpload: react384.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
214
+ multiple: true;
215
+ value?: _pixpilot_shadcn_ui9.FileMetadata[];
216
+ onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
217
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
218
+ multiple?: false;
219
+ value?: _pixpilot_shadcn_ui9.FileMetadata | null;
220
+ onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
221
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react384.RefAttributes<unknown>>;
222
+ RichTextEditor: react384.FC;
223
+ }, Component_3, Decorator_3>): JSX.Element;
224
+ displayName: string;
225
+ };
226
+ Array: {
227
+ <Decorator_4 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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_react11.ISchemaTypeFieldProps<{
228
+ FormItem: react384.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
229
+ children?: react384.ReactNode | undefined;
230
+ }>, "ref"> & react384.RefAttributes<unknown>>;
231
+ Hidden: react384.ForwardRefExoticComponent<Partial<{
232
+ children?: React.ReactNode;
233
+ value?: string;
234
+ }> & react384.RefAttributes<unknown>>;
235
+ Input: react384.ForwardRefExoticComponent<Omit<Partial<react384.ClassAttributes<HTMLInputElement> & react384.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react384.RefAttributes<unknown>>;
236
+ Textarea: react384.ForwardRefExoticComponent<Omit<Partial<react384.ClassAttributes<HTMLTextAreaElement> & react384.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react384.RefAttributes<unknown>>;
237
+ NumberInput: react384.ForwardRefExoticComponent<Omit<Partial<react384.ClassAttributes<HTMLInputElement> & react384.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react384.RefAttributes<unknown>>;
238
+ Checkbox: react384.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react384.RefAttributes<HTMLButtonElement>>, "ref"> & react384.RefAttributes<unknown>>;
239
+ Radio: react384.FC;
240
+ Select: react384.FC;
241
+ Switch: react384.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch9.SwitchProps & react384.RefAttributes<HTMLButtonElement>>, "ref"> & react384.RefAttributes<unknown>>;
242
+ DatePicker: react384.ForwardRefExoticComponent<Partial<{
243
+ value?: Date;
244
+ onChange?: (date: Date | undefined) => void;
245
+ placeholder?: string;
246
+ } & Omit<{
247
+ value?: Date;
248
+ onChange?: (date: Date | undefined) => void;
249
+ placeholder?: string;
250
+ } & Omit<react_day_picker10.DayPickerProps & {
251
+ buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
252
+ }, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react384.RefAttributes<unknown>>;
253
+ Row: typeof Row;
254
+ Column: typeof Column;
255
+ FormGrid: typeof FormGrid;
256
+ Combobox: react384.FC;
257
+ TagsInput: typeof _pixpilot_shadcn_ui9.TagsInput;
258
+ Separator: react384.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator9.SeparatorProps & react384.RefAttributes<HTMLDivElement>>, "ref"> & react384.RefAttributes<unknown>>;
259
+ Slider: react384.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui9.SliderProps>, "ref"> & react384.RefAttributes<unknown>>;
260
+ ArrayCards: ComposedArrayProps;
261
+ ArrayDialog: react384.FC<ArrayComponentProps>;
262
+ ArrayCollapse: react384.FC<ArrayComponentProps & {
263
+ defaultActiveKey?: Array<string | number>;
264
+ mode?: "accordion" | "multiple";
265
+ }>;
266
+ ArrayPopover: react384.FC<ArrayComponentProps>;
267
+ ObjectContainer: react384.FC<ObjectContainerProps>;
268
+ FileUploadInline: react384.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
269
+ multiple: true;
270
+ value?: _pixpilot_shadcn_ui9.FileMetadata[];
271
+ onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
272
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
273
+ multiple?: false;
274
+ value?: _pixpilot_shadcn_ui9.FileMetadata | null;
275
+ onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
276
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react384.RefAttributes<unknown>>;
277
+ IconPicker: react384.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui9.IconPickerProps, "providers"> & {
278
+ providers?: _pixpilot_shadcn_ui9.IconProviderProps[];
279
+ }> & react384.RefAttributes<unknown>>;
280
+ FileUpload: react384.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
281
+ multiple: true;
282
+ value?: _pixpilot_shadcn_ui9.FileMetadata[];
283
+ onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
284
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
285
+ multiple?: false;
286
+ value?: _pixpilot_shadcn_ui9.FileMetadata | null;
287
+ onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
288
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react384.RefAttributes<unknown>>;
289
+ RichTextEditor: react384.FC;
290
+ }, Component_4, Decorator_4>): JSX.Element;
291
+ displayName: string;
292
+ };
293
+ Boolean: {
294
+ <Decorator_5 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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_react11.ISchemaTypeFieldProps<{
295
+ FormItem: react384.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
296
+ children?: react384.ReactNode | undefined;
297
+ }>, "ref"> & react384.RefAttributes<unknown>>;
298
+ Hidden: react384.ForwardRefExoticComponent<Partial<{
299
+ children?: React.ReactNode;
300
+ value?: string;
301
+ }> & react384.RefAttributes<unknown>>;
302
+ Input: react384.ForwardRefExoticComponent<Omit<Partial<react384.ClassAttributes<HTMLInputElement> & react384.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react384.RefAttributes<unknown>>;
303
+ Textarea: react384.ForwardRefExoticComponent<Omit<Partial<react384.ClassAttributes<HTMLTextAreaElement> & react384.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react384.RefAttributes<unknown>>;
304
+ NumberInput: react384.ForwardRefExoticComponent<Omit<Partial<react384.ClassAttributes<HTMLInputElement> & react384.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react384.RefAttributes<unknown>>;
305
+ Checkbox: react384.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react384.RefAttributes<HTMLButtonElement>>, "ref"> & react384.RefAttributes<unknown>>;
306
+ Radio: react384.FC;
307
+ Select: react384.FC;
308
+ Switch: react384.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch9.SwitchProps & react384.RefAttributes<HTMLButtonElement>>, "ref"> & react384.RefAttributes<unknown>>;
309
+ DatePicker: react384.ForwardRefExoticComponent<Partial<{
310
+ value?: Date;
311
+ onChange?: (date: Date | undefined) => void;
312
+ placeholder?: string;
313
+ } & Omit<{
314
+ value?: Date;
315
+ onChange?: (date: Date | undefined) => void;
316
+ placeholder?: string;
317
+ } & Omit<react_day_picker10.DayPickerProps & {
318
+ buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
319
+ }, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react384.RefAttributes<unknown>>;
320
+ Row: typeof Row;
321
+ Column: typeof Column;
322
+ FormGrid: typeof FormGrid;
323
+ Combobox: react384.FC;
324
+ TagsInput: typeof _pixpilot_shadcn_ui9.TagsInput;
325
+ Separator: react384.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator9.SeparatorProps & react384.RefAttributes<HTMLDivElement>>, "ref"> & react384.RefAttributes<unknown>>;
326
+ Slider: react384.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui9.SliderProps>, "ref"> & react384.RefAttributes<unknown>>;
327
+ ArrayCards: ComposedArrayProps;
328
+ ArrayDialog: react384.FC<ArrayComponentProps>;
329
+ ArrayCollapse: react384.FC<ArrayComponentProps & {
330
+ defaultActiveKey?: Array<string | number>;
331
+ mode?: "accordion" | "multiple";
332
+ }>;
333
+ ArrayPopover: react384.FC<ArrayComponentProps>;
334
+ ObjectContainer: react384.FC<ObjectContainerProps>;
335
+ FileUploadInline: react384.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
336
+ multiple: true;
337
+ value?: _pixpilot_shadcn_ui9.FileMetadata[];
338
+ onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
339
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
340
+ multiple?: false;
341
+ value?: _pixpilot_shadcn_ui9.FileMetadata | null;
342
+ onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
343
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react384.RefAttributes<unknown>>;
344
+ IconPicker: react384.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui9.IconPickerProps, "providers"> & {
345
+ providers?: _pixpilot_shadcn_ui9.IconProviderProps[];
346
+ }> & react384.RefAttributes<unknown>>;
347
+ FileUpload: react384.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
348
+ multiple: true;
349
+ value?: _pixpilot_shadcn_ui9.FileMetadata[];
350
+ onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
351
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
352
+ multiple?: false;
353
+ value?: _pixpilot_shadcn_ui9.FileMetadata | null;
354
+ onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
355
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react384.RefAttributes<unknown>>;
356
+ RichTextEditor: react384.FC;
357
+ }, Component_5, Decorator_5>): JSX.Element;
358
+ displayName: string;
359
+ };
360
+ Date: {
361
+ <Decorator_6 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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_react11.ISchemaTypeFieldProps<{
362
+ FormItem: react384.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
363
+ children?: react384.ReactNode | undefined;
364
+ }>, "ref"> & react384.RefAttributes<unknown>>;
365
+ Hidden: react384.ForwardRefExoticComponent<Partial<{
366
+ children?: React.ReactNode;
367
+ value?: string;
368
+ }> & react384.RefAttributes<unknown>>;
369
+ Input: react384.ForwardRefExoticComponent<Omit<Partial<react384.ClassAttributes<HTMLInputElement> & react384.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react384.RefAttributes<unknown>>;
370
+ Textarea: react384.ForwardRefExoticComponent<Omit<Partial<react384.ClassAttributes<HTMLTextAreaElement> & react384.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react384.RefAttributes<unknown>>;
371
+ NumberInput: react384.ForwardRefExoticComponent<Omit<Partial<react384.ClassAttributes<HTMLInputElement> & react384.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react384.RefAttributes<unknown>>;
372
+ Checkbox: react384.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react384.RefAttributes<HTMLButtonElement>>, "ref"> & react384.RefAttributes<unknown>>;
373
+ Radio: react384.FC;
374
+ Select: react384.FC;
375
+ Switch: react384.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch9.SwitchProps & react384.RefAttributes<HTMLButtonElement>>, "ref"> & react384.RefAttributes<unknown>>;
376
+ DatePicker: react384.ForwardRefExoticComponent<Partial<{
377
+ value?: Date;
378
+ onChange?: (date: Date | undefined) => void;
379
+ placeholder?: string;
380
+ } & Omit<{
381
+ value?: Date;
382
+ onChange?: (date: Date | undefined) => void;
383
+ placeholder?: string;
384
+ } & Omit<react_day_picker10.DayPickerProps & {
385
+ buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
386
+ }, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react384.RefAttributes<unknown>>;
387
+ Row: typeof Row;
388
+ Column: typeof Column;
389
+ FormGrid: typeof FormGrid;
390
+ Combobox: react384.FC;
391
+ TagsInput: typeof _pixpilot_shadcn_ui9.TagsInput;
392
+ Separator: react384.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator9.SeparatorProps & react384.RefAttributes<HTMLDivElement>>, "ref"> & react384.RefAttributes<unknown>>;
393
+ Slider: react384.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui9.SliderProps>, "ref"> & react384.RefAttributes<unknown>>;
394
+ ArrayCards: ComposedArrayProps;
395
+ ArrayDialog: react384.FC<ArrayComponentProps>;
396
+ ArrayCollapse: react384.FC<ArrayComponentProps & {
397
+ defaultActiveKey?: Array<string | number>;
398
+ mode?: "accordion" | "multiple";
399
+ }>;
400
+ ArrayPopover: react384.FC<ArrayComponentProps>;
401
+ ObjectContainer: react384.FC<ObjectContainerProps>;
402
+ FileUploadInline: react384.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
403
+ multiple: true;
404
+ value?: _pixpilot_shadcn_ui9.FileMetadata[];
405
+ onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
406
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
407
+ multiple?: false;
408
+ value?: _pixpilot_shadcn_ui9.FileMetadata | null;
409
+ onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
410
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react384.RefAttributes<unknown>>;
411
+ IconPicker: react384.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui9.IconPickerProps, "providers"> & {
412
+ providers?: _pixpilot_shadcn_ui9.IconProviderProps[];
413
+ }> & react384.RefAttributes<unknown>>;
414
+ FileUpload: react384.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
415
+ multiple: true;
416
+ value?: _pixpilot_shadcn_ui9.FileMetadata[];
417
+ onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
418
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
419
+ multiple?: false;
420
+ value?: _pixpilot_shadcn_ui9.FileMetadata | null;
421
+ onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
422
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react384.RefAttributes<unknown>>;
423
+ RichTextEditor: react384.FC;
424
+ }, Component_6, Decorator_6>): JSX.Element;
425
+ displayName: string;
426
+ };
427
+ DateTime: {
428
+ <Decorator_7 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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_react11.ISchemaTypeFieldProps<{
429
+ FormItem: react384.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
430
+ children?: react384.ReactNode | undefined;
431
+ }>, "ref"> & react384.RefAttributes<unknown>>;
432
+ Hidden: react384.ForwardRefExoticComponent<Partial<{
433
+ children?: React.ReactNode;
434
+ value?: string;
435
+ }> & react384.RefAttributes<unknown>>;
436
+ Input: react384.ForwardRefExoticComponent<Omit<Partial<react384.ClassAttributes<HTMLInputElement> & react384.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react384.RefAttributes<unknown>>;
437
+ Textarea: react384.ForwardRefExoticComponent<Omit<Partial<react384.ClassAttributes<HTMLTextAreaElement> & react384.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react384.RefAttributes<unknown>>;
438
+ NumberInput: react384.ForwardRefExoticComponent<Omit<Partial<react384.ClassAttributes<HTMLInputElement> & react384.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react384.RefAttributes<unknown>>;
439
+ Checkbox: react384.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react384.RefAttributes<HTMLButtonElement>>, "ref"> & react384.RefAttributes<unknown>>;
440
+ Radio: react384.FC;
441
+ Select: react384.FC;
442
+ Switch: react384.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch9.SwitchProps & react384.RefAttributes<HTMLButtonElement>>, "ref"> & react384.RefAttributes<unknown>>;
443
+ DatePicker: react384.ForwardRefExoticComponent<Partial<{
444
+ value?: Date;
445
+ onChange?: (date: Date | undefined) => void;
446
+ placeholder?: string;
447
+ } & Omit<{
448
+ value?: Date;
449
+ onChange?: (date: Date | undefined) => void;
450
+ placeholder?: string;
451
+ } & Omit<react_day_picker10.DayPickerProps & {
452
+ buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
453
+ }, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react384.RefAttributes<unknown>>;
454
+ Row: typeof Row;
455
+ Column: typeof Column;
456
+ FormGrid: typeof FormGrid;
457
+ Combobox: react384.FC;
458
+ TagsInput: typeof _pixpilot_shadcn_ui9.TagsInput;
459
+ Separator: react384.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator9.SeparatorProps & react384.RefAttributes<HTMLDivElement>>, "ref"> & react384.RefAttributes<unknown>>;
460
+ Slider: react384.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui9.SliderProps>, "ref"> & react384.RefAttributes<unknown>>;
461
+ ArrayCards: ComposedArrayProps;
462
+ ArrayDialog: react384.FC<ArrayComponentProps>;
463
+ ArrayCollapse: react384.FC<ArrayComponentProps & {
464
+ defaultActiveKey?: Array<string | number>;
465
+ mode?: "accordion" | "multiple";
466
+ }>;
467
+ ArrayPopover: react384.FC<ArrayComponentProps>;
468
+ ObjectContainer: react384.FC<ObjectContainerProps>;
469
+ FileUploadInline: react384.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
470
+ multiple: true;
471
+ value?: _pixpilot_shadcn_ui9.FileMetadata[];
472
+ onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
473
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
474
+ multiple?: false;
475
+ value?: _pixpilot_shadcn_ui9.FileMetadata | null;
476
+ onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
477
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react384.RefAttributes<unknown>>;
478
+ IconPicker: react384.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui9.IconPickerProps, "providers"> & {
479
+ providers?: _pixpilot_shadcn_ui9.IconProviderProps[];
480
+ }> & react384.RefAttributes<unknown>>;
481
+ FileUpload: react384.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
482
+ multiple: true;
483
+ value?: _pixpilot_shadcn_ui9.FileMetadata[];
484
+ onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
485
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
486
+ multiple?: false;
487
+ value?: _pixpilot_shadcn_ui9.FileMetadata | null;
488
+ onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
489
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react384.RefAttributes<unknown>>;
490
+ RichTextEditor: react384.FC;
491
+ }, Component_7, Decorator_7>): JSX.Element;
492
+ displayName: string;
493
+ };
494
+ Void: {
495
+ <Decorator_8 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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_react11.ISchemaTypeFieldProps<{
496
+ FormItem: react384.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
497
+ children?: react384.ReactNode | undefined;
498
+ }>, "ref"> & react384.RefAttributes<unknown>>;
499
+ Hidden: react384.ForwardRefExoticComponent<Partial<{
500
+ children?: React.ReactNode;
501
+ value?: string;
502
+ }> & react384.RefAttributes<unknown>>;
503
+ Input: react384.ForwardRefExoticComponent<Omit<Partial<react384.ClassAttributes<HTMLInputElement> & react384.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react384.RefAttributes<unknown>>;
504
+ Textarea: react384.ForwardRefExoticComponent<Omit<Partial<react384.ClassAttributes<HTMLTextAreaElement> & react384.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react384.RefAttributes<unknown>>;
505
+ NumberInput: react384.ForwardRefExoticComponent<Omit<Partial<react384.ClassAttributes<HTMLInputElement> & react384.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react384.RefAttributes<unknown>>;
506
+ Checkbox: react384.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react384.RefAttributes<HTMLButtonElement>>, "ref"> & react384.RefAttributes<unknown>>;
507
+ Radio: react384.FC;
508
+ Select: react384.FC;
509
+ Switch: react384.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch9.SwitchProps & react384.RefAttributes<HTMLButtonElement>>, "ref"> & react384.RefAttributes<unknown>>;
510
+ DatePicker: react384.ForwardRefExoticComponent<Partial<{
511
+ value?: Date;
512
+ onChange?: (date: Date | undefined) => void;
513
+ placeholder?: string;
514
+ } & Omit<{
515
+ value?: Date;
516
+ onChange?: (date: Date | undefined) => void;
517
+ placeholder?: string;
518
+ } & Omit<react_day_picker10.DayPickerProps & {
519
+ buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
520
+ }, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react384.RefAttributes<unknown>>;
521
+ Row: typeof Row;
522
+ Column: typeof Column;
523
+ FormGrid: typeof FormGrid;
524
+ Combobox: react384.FC;
525
+ TagsInput: typeof _pixpilot_shadcn_ui9.TagsInput;
526
+ Separator: react384.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator9.SeparatorProps & react384.RefAttributes<HTMLDivElement>>, "ref"> & react384.RefAttributes<unknown>>;
527
+ Slider: react384.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui9.SliderProps>, "ref"> & react384.RefAttributes<unknown>>;
528
+ ArrayCards: ComposedArrayProps;
529
+ ArrayDialog: react384.FC<ArrayComponentProps>;
530
+ ArrayCollapse: react384.FC<ArrayComponentProps & {
531
+ defaultActiveKey?: Array<string | number>;
532
+ mode?: "accordion" | "multiple";
533
+ }>;
534
+ ArrayPopover: react384.FC<ArrayComponentProps>;
535
+ ObjectContainer: react384.FC<ObjectContainerProps>;
536
+ FileUploadInline: react384.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
537
+ multiple: true;
538
+ value?: _pixpilot_shadcn_ui9.FileMetadata[];
539
+ onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
540
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
541
+ multiple?: false;
542
+ value?: _pixpilot_shadcn_ui9.FileMetadata | null;
543
+ onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
544
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react384.RefAttributes<unknown>>;
545
+ IconPicker: react384.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui9.IconPickerProps, "providers"> & {
546
+ providers?: _pixpilot_shadcn_ui9.IconProviderProps[];
547
+ }> & react384.RefAttributes<unknown>>;
548
+ FileUpload: react384.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
549
+ multiple: true;
550
+ value?: _pixpilot_shadcn_ui9.FileMetadata[];
551
+ onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
552
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
553
+ multiple?: false;
554
+ value?: _pixpilot_shadcn_ui9.FileMetadata | null;
555
+ onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
556
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react384.RefAttributes<unknown>>;
557
+ RichTextEditor: react384.FC;
558
+ }, Component_8, Decorator_8>): JSX.Element;
559
+ displayName: string;
560
+ };
561
+ Number: {
562
+ <Decorator_9 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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_react11.ISchemaTypeFieldProps<{
563
+ FormItem: react384.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
564
+ children?: react384.ReactNode | undefined;
565
+ }>, "ref"> & react384.RefAttributes<unknown>>;
566
+ Hidden: react384.ForwardRefExoticComponent<Partial<{
567
+ children?: React.ReactNode;
568
+ value?: string;
569
+ }> & react384.RefAttributes<unknown>>;
570
+ Input: react384.ForwardRefExoticComponent<Omit<Partial<react384.ClassAttributes<HTMLInputElement> & react384.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react384.RefAttributes<unknown>>;
571
+ Textarea: react384.ForwardRefExoticComponent<Omit<Partial<react384.ClassAttributes<HTMLTextAreaElement> & react384.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react384.RefAttributes<unknown>>;
572
+ NumberInput: react384.ForwardRefExoticComponent<Omit<Partial<react384.ClassAttributes<HTMLInputElement> & react384.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react384.RefAttributes<unknown>>;
573
+ Checkbox: react384.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react384.RefAttributes<HTMLButtonElement>>, "ref"> & react384.RefAttributes<unknown>>;
574
+ Radio: react384.FC;
575
+ Select: react384.FC;
576
+ Switch: react384.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch9.SwitchProps & react384.RefAttributes<HTMLButtonElement>>, "ref"> & react384.RefAttributes<unknown>>;
577
+ DatePicker: react384.ForwardRefExoticComponent<Partial<{
578
+ value?: Date;
579
+ onChange?: (date: Date | undefined) => void;
580
+ placeholder?: string;
581
+ } & Omit<{
582
+ value?: Date;
583
+ onChange?: (date: Date | undefined) => void;
584
+ placeholder?: string;
585
+ } & Omit<react_day_picker10.DayPickerProps & {
586
+ buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
587
+ }, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react384.RefAttributes<unknown>>;
588
+ Row: typeof Row;
589
+ Column: typeof Column;
590
+ FormGrid: typeof FormGrid;
591
+ Combobox: react384.FC;
592
+ TagsInput: typeof _pixpilot_shadcn_ui9.TagsInput;
593
+ Separator: react384.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator9.SeparatorProps & react384.RefAttributes<HTMLDivElement>>, "ref"> & react384.RefAttributes<unknown>>;
594
+ Slider: react384.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui9.SliderProps>, "ref"> & react384.RefAttributes<unknown>>;
595
+ ArrayCards: ComposedArrayProps;
596
+ ArrayDialog: react384.FC<ArrayComponentProps>;
597
+ ArrayCollapse: react384.FC<ArrayComponentProps & {
598
+ defaultActiveKey?: Array<string | number>;
599
+ mode?: "accordion" | "multiple";
600
+ }>;
601
+ ArrayPopover: react384.FC<ArrayComponentProps>;
602
+ ObjectContainer: react384.FC<ObjectContainerProps>;
603
+ FileUploadInline: react384.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
604
+ multiple: true;
605
+ value?: _pixpilot_shadcn_ui9.FileMetadata[];
606
+ onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
607
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
608
+ multiple?: false;
609
+ value?: _pixpilot_shadcn_ui9.FileMetadata | null;
610
+ onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
611
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react384.RefAttributes<unknown>>;
612
+ IconPicker: react384.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui9.IconPickerProps, "providers"> & {
613
+ providers?: _pixpilot_shadcn_ui9.IconProviderProps[];
614
+ }> & react384.RefAttributes<unknown>>;
615
+ FileUpload: react384.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
616
+ multiple: true;
617
+ value?: _pixpilot_shadcn_ui9.FileMetadata[];
618
+ onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
619
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
620
+ multiple?: false;
621
+ value?: _pixpilot_shadcn_ui9.FileMetadata | null;
622
+ onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
623
+ } & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react384.RefAttributes<unknown>>;
624
+ RichTextEditor: react384.FC;
625
+ }, Component_9, Decorator_9>): JSX.Element;
626
+ displayName: string;
627
+ };
628
+ };
629
+ //#endregion
630
+ export { SchemaFieldExtended };