@pixpilot/formily-shadcn 0.8.4 → 0.9.0

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