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