@pixpilot/formily-shadcn 0.8.0 → 0.8.2

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