@pixpilot/formily-shadcn 0.21.4 → 0.21.6
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/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-inline.d.ts +8 -8
- package/dist/components/file-upload/file-upload.d.cts +8 -8
- package/dist/components/file-upload/file-upload.d.ts +8 -8
- package/dist/components/form-grid.d.ts +2 -2
- package/dist/components/form.d.ts +2 -2
- package/dist/components/icon-picker.d.cts +3 -3
- package/dist/components/icon-picker.d.ts +3 -3
- package/dist/components/input.d.cts +3 -3
- package/dist/components/input.d.ts +3 -3
- package/dist/components/schema-field/schema-field-basics.d.ts +233 -233
- package/dist/components/schema-field/schema-field-extended.d.ts +530 -530
- package/dist/components/schema-field/schema-field.d.ts +310 -310
- package/dist/components/slider/slider-input.d.ts +3 -3
- package/dist/components/slider/slider-select.d.ts +3 -3
- package/dist/components/slider/slider.d.ts +3 -3
- package/package.json +4 -4
|
@@ -9,8 +9,8 @@ import { Row } from "../row.js";
|
|
|
9
9
|
import { ObjectContainerProps } from "../object-container.js";
|
|
10
10
|
import * as _formily_react0 from "@formily/react";
|
|
11
11
|
import { ISchema } from "@formily/react";
|
|
12
|
-
import * as
|
|
13
|
-
import * as
|
|
12
|
+
import * as react28 from "react";
|
|
13
|
+
import * as _pixpilot_shadcn_ui16 from "@pixpilot/shadcn-ui";
|
|
14
14
|
import * as _formily_core0 from "@formily/core";
|
|
15
15
|
import * as _radix_ui_react_checkbox0 from "@radix-ui/react-checkbox";
|
|
16
16
|
import * as _radix_ui_react_separator0 from "@radix-ui/react-separator";
|
|
@@ -19,73 +19,73 @@ import * as _radix_ui_react_switch0 from "@radix-ui/react-switch";
|
|
|
19
19
|
//#region src/components/schema-field/schema-field-extended.d.ts
|
|
20
20
|
declare const extendedComponentRegistry: {
|
|
21
21
|
AvatarUpload: {
|
|
22
|
-
component:
|
|
22
|
+
component: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
23
23
|
decorator: string;
|
|
24
24
|
};
|
|
25
25
|
FileUploadInline: {
|
|
26
|
-
component:
|
|
26
|
+
component: react28.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">) & react28.RefAttributes<unknown>>;
|
|
35
35
|
decorator: string;
|
|
36
36
|
};
|
|
37
37
|
IconPicker: {
|
|
38
|
-
component:
|
|
39
|
-
providers?:
|
|
40
|
-
}> &
|
|
38
|
+
component: react28.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
|
|
39
|
+
providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
|
|
40
|
+
}> & react28.RefAttributes<unknown>>;
|
|
41
41
|
decorator: string;
|
|
42
42
|
};
|
|
43
43
|
FileUpload: {
|
|
44
|
-
component:
|
|
44
|
+
component: react28.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">) & react28.RefAttributes<unknown>>;
|
|
53
53
|
decorator: string;
|
|
54
54
|
};
|
|
55
55
|
RichTextEditor: {
|
|
56
|
-
component:
|
|
56
|
+
component: react28.FC;
|
|
57
57
|
decorator: string;
|
|
58
58
|
};
|
|
59
59
|
ColorPicker: {
|
|
60
|
-
component:
|
|
60
|
+
component: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.ColorPickerProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
61
61
|
decorator: string;
|
|
62
62
|
};
|
|
63
63
|
Combobox: {
|
|
64
|
-
component:
|
|
64
|
+
component: react28.FC;
|
|
65
65
|
decorator: string;
|
|
66
66
|
};
|
|
67
67
|
ColorSelect: {
|
|
68
|
-
component:
|
|
68
|
+
component: react28.FC;
|
|
69
69
|
decorator: string;
|
|
70
70
|
};
|
|
71
71
|
Slider: {
|
|
72
|
-
component:
|
|
72
|
+
component: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
73
73
|
decorator: string;
|
|
74
74
|
};
|
|
75
75
|
SliderInput: {
|
|
76
|
-
component:
|
|
76
|
+
component: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderInputProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
77
77
|
decorator: string;
|
|
78
78
|
};
|
|
79
79
|
SliderSelect: {
|
|
80
|
-
component:
|
|
80
|
+
component: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderSelectProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
81
81
|
decorator: string;
|
|
82
82
|
};
|
|
83
83
|
TagsInput: {
|
|
84
|
-
component: typeof
|
|
84
|
+
component: typeof _pixpilot_shadcn_ui16.TagsInput;
|
|
85
85
|
decorator: string;
|
|
86
86
|
};
|
|
87
87
|
TagsInputInLine: {
|
|
88
|
-
component:
|
|
88
|
+
component: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react28.RefAttributes<unknown>>;
|
|
89
89
|
decorator: string;
|
|
90
90
|
};
|
|
91
91
|
ArrayCards: {
|
|
@@ -93,93 +93,93 @@ declare const extendedComponentRegistry: {
|
|
|
93
93
|
decorator: string;
|
|
94
94
|
};
|
|
95
95
|
ArrayCollapse: {
|
|
96
|
-
component:
|
|
96
|
+
component: react28.FC<ArrayComponentProps & {
|
|
97
97
|
defaultActiveKey?: Array<string | number>;
|
|
98
98
|
mode?: "accordion" | "multiple";
|
|
99
99
|
}>;
|
|
100
100
|
decorator: string;
|
|
101
101
|
};
|
|
102
102
|
ArrayDialog: {
|
|
103
|
-
component:
|
|
103
|
+
component: react28.FC<ArrayComponentProps>;
|
|
104
104
|
decorator: string;
|
|
105
105
|
};
|
|
106
106
|
ArrayPopover: {
|
|
107
|
-
component:
|
|
107
|
+
component: react28.FC<ArrayComponentProps>;
|
|
108
108
|
decorator: string;
|
|
109
109
|
};
|
|
110
110
|
Checkbox: {
|
|
111
|
-
component:
|
|
111
|
+
component: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
112
112
|
decorator: string;
|
|
113
113
|
};
|
|
114
114
|
Column: {
|
|
115
115
|
component: typeof Column;
|
|
116
116
|
};
|
|
117
117
|
DatePicker: {
|
|
118
|
-
component:
|
|
118
|
+
component: react28.ForwardRefExoticComponent<Partial<{
|
|
119
119
|
value?: Date;
|
|
120
120
|
onChange?: (date: Date | undefined) => void;
|
|
121
121
|
placeholder?: string;
|
|
122
|
-
} & Omit<
|
|
122
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
|
|
123
123
|
decorator: string;
|
|
124
124
|
};
|
|
125
125
|
FormGrid: {
|
|
126
126
|
component: typeof FormGrid;
|
|
127
127
|
};
|
|
128
128
|
FormItem: {
|
|
129
|
-
component:
|
|
130
|
-
children?:
|
|
131
|
-
}>, "ref"> &
|
|
129
|
+
component: react28.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
130
|
+
children?: react28.ReactNode | undefined;
|
|
131
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
132
132
|
};
|
|
133
133
|
Hidden: {
|
|
134
|
-
component:
|
|
134
|
+
component: react28.ForwardRefExoticComponent<Partial<{
|
|
135
135
|
children?: React.ReactNode;
|
|
136
136
|
value?: string;
|
|
137
|
-
}> &
|
|
137
|
+
}> & react28.RefAttributes<unknown>>;
|
|
138
138
|
};
|
|
139
139
|
Input: {
|
|
140
|
-
component:
|
|
140
|
+
component: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement> & {
|
|
141
141
|
prefix?: React.ReactNode;
|
|
142
142
|
suffix?: React.ReactNode;
|
|
143
143
|
groupClassName?: string;
|
|
144
144
|
prefixClassName?: string;
|
|
145
145
|
suffixClassName?: string;
|
|
146
|
-
}>, "ref"> &
|
|
146
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
147
147
|
decorator: string;
|
|
148
148
|
};
|
|
149
149
|
NumberInput: {
|
|
150
|
-
component:
|
|
150
|
+
component: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement> & {
|
|
151
151
|
prefix?: React.ReactNode;
|
|
152
152
|
suffix?: React.ReactNode;
|
|
153
153
|
groupClassName?: string;
|
|
154
154
|
prefixClassName?: string;
|
|
155
155
|
suffixClassName?: string;
|
|
156
|
-
}>, "ref"> &
|
|
156
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
157
157
|
decorator: string;
|
|
158
158
|
};
|
|
159
159
|
ObjectContainer: {
|
|
160
|
-
component:
|
|
160
|
+
component: react28.FC<ObjectContainerProps>;
|
|
161
161
|
decorator: string;
|
|
162
162
|
};
|
|
163
163
|
Radio: {
|
|
164
|
-
component:
|
|
164
|
+
component: react28.FC;
|
|
165
165
|
decorator: string;
|
|
166
166
|
};
|
|
167
167
|
Row: {
|
|
168
168
|
component: typeof Row;
|
|
169
169
|
};
|
|
170
170
|
Select: {
|
|
171
|
-
component:
|
|
171
|
+
component: react28.FC;
|
|
172
172
|
decorator: string;
|
|
173
173
|
};
|
|
174
174
|
Separator: {
|
|
175
|
-
component:
|
|
175
|
+
component: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react28.RefAttributes<HTMLDivElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
176
176
|
};
|
|
177
177
|
Switch: {
|
|
178
|
-
component:
|
|
178
|
+
component: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
179
179
|
decorator: string;
|
|
180
180
|
};
|
|
181
181
|
Textarea: {
|
|
182
|
-
component:
|
|
182
|
+
component: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLTextAreaElement> & react28.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
183
183
|
decorator: string;
|
|
184
184
|
};
|
|
185
185
|
};
|
|
@@ -188,792 +188,792 @@ declare const extendedComponentRegistry: {
|
|
|
188
188
|
* Use this to render forms from JSON Schema
|
|
189
189
|
*/
|
|
190
190
|
declare const extendedComponents: {
|
|
191
|
-
AvatarUpload:
|
|
192
|
-
FileUploadInline:
|
|
191
|
+
AvatarUpload: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
192
|
+
FileUploadInline: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
193
193
|
multiple: true;
|
|
194
|
-
value?:
|
|
195
|
-
onChange?:
|
|
196
|
-
} &
|
|
194
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
195
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
196
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
197
197
|
multiple?: false;
|
|
198
|
-
value?:
|
|
199
|
-
onChange?:
|
|
200
|
-
} &
|
|
201
|
-
IconPicker:
|
|
202
|
-
providers?:
|
|
203
|
-
}> &
|
|
204
|
-
FileUpload:
|
|
198
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
199
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
200
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
201
|
+
IconPicker: react28.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
|
|
202
|
+
providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
|
|
203
|
+
}> & react28.RefAttributes<unknown>>;
|
|
204
|
+
FileUpload: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
205
205
|
multiple: true;
|
|
206
|
-
value?:
|
|
207
|
-
onChange?:
|
|
208
|
-
} &
|
|
206
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
207
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
208
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
209
209
|
multiple?: false;
|
|
210
|
-
value?:
|
|
211
|
-
onChange?:
|
|
212
|
-
} &
|
|
213
|
-
RichTextEditor:
|
|
214
|
-
ColorPicker:
|
|
215
|
-
Combobox:
|
|
216
|
-
ColorSelect:
|
|
217
|
-
Slider:
|
|
218
|
-
SliderInput:
|
|
219
|
-
SliderSelect:
|
|
220
|
-
TagsInput: typeof
|
|
221
|
-
TagsInputInLine:
|
|
210
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
211
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
212
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
213
|
+
RichTextEditor: react28.FC;
|
|
214
|
+
ColorPicker: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.ColorPickerProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
215
|
+
Combobox: react28.FC;
|
|
216
|
+
ColorSelect: react28.FC;
|
|
217
|
+
Slider: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
218
|
+
SliderInput: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderInputProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
219
|
+
SliderSelect: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderSelectProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
220
|
+
TagsInput: typeof _pixpilot_shadcn_ui16.TagsInput;
|
|
221
|
+
TagsInputInLine: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react28.RefAttributes<unknown>>;
|
|
222
222
|
ArrayCards: ComposedArrayProps;
|
|
223
|
-
ArrayCollapse:
|
|
223
|
+
ArrayCollapse: react28.FC<ArrayComponentProps & {
|
|
224
224
|
defaultActiveKey?: Array<string | number>;
|
|
225
225
|
mode?: "accordion" | "multiple";
|
|
226
226
|
}>;
|
|
227
|
-
ArrayDialog:
|
|
228
|
-
ArrayPopover:
|
|
229
|
-
Checkbox:
|
|
227
|
+
ArrayDialog: react28.FC<ArrayComponentProps>;
|
|
228
|
+
ArrayPopover: react28.FC<ArrayComponentProps>;
|
|
229
|
+
Checkbox: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
230
230
|
Column: typeof Column;
|
|
231
|
-
DatePicker:
|
|
231
|
+
DatePicker: react28.ForwardRefExoticComponent<Partial<{
|
|
232
232
|
value?: Date;
|
|
233
233
|
onChange?: (date: Date | undefined) => void;
|
|
234
234
|
placeholder?: string;
|
|
235
|
-
} & Omit<
|
|
235
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
|
|
236
236
|
FormGrid: typeof FormGrid;
|
|
237
|
-
FormItem:
|
|
238
|
-
children?:
|
|
239
|
-
}>, "ref"> &
|
|
240
|
-
Hidden:
|
|
237
|
+
FormItem: react28.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
238
|
+
children?: react28.ReactNode | undefined;
|
|
239
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
240
|
+
Hidden: react28.ForwardRefExoticComponent<Partial<{
|
|
241
241
|
children?: React.ReactNode;
|
|
242
242
|
value?: string;
|
|
243
|
-
}> &
|
|
244
|
-
Input:
|
|
243
|
+
}> & react28.RefAttributes<unknown>>;
|
|
244
|
+
Input: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement> & {
|
|
245
245
|
prefix?: React.ReactNode;
|
|
246
246
|
suffix?: React.ReactNode;
|
|
247
247
|
groupClassName?: string;
|
|
248
248
|
prefixClassName?: string;
|
|
249
249
|
suffixClassName?: string;
|
|
250
|
-
}>, "ref"> &
|
|
251
|
-
NumberInput:
|
|
250
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
251
|
+
NumberInput: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement> & {
|
|
252
252
|
prefix?: React.ReactNode;
|
|
253
253
|
suffix?: React.ReactNode;
|
|
254
254
|
groupClassName?: string;
|
|
255
255
|
prefixClassName?: string;
|
|
256
256
|
suffixClassName?: string;
|
|
257
|
-
}>, "ref"> &
|
|
258
|
-
ObjectContainer:
|
|
259
|
-
Radio:
|
|
257
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
258
|
+
ObjectContainer: react28.FC<ObjectContainerProps>;
|
|
259
|
+
Radio: react28.FC;
|
|
260
260
|
Row: typeof Row;
|
|
261
|
-
Select:
|
|
262
|
-
Separator:
|
|
263
|
-
Switch:
|
|
264
|
-
Textarea:
|
|
261
|
+
Select: react28.FC;
|
|
262
|
+
Separator: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react28.RefAttributes<HTMLDivElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
263
|
+
Switch: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
264
|
+
Textarea: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLTextAreaElement> & react28.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
265
265
|
};
|
|
266
266
|
declare const SchemaFieldExtended: {
|
|
267
267
|
<Decorator extends _formily_react0.JSXComponent, Component extends _formily_react0.JSXComponent>(props: _formily_react0.ISchemaFieldProps<Decorator, Component, _formily_core0.ObjectField<Decorator, Component>>): JSX.Element;
|
|
268
268
|
displayName: string;
|
|
269
269
|
Markup: {
|
|
270
270
|
<Decorator_1 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_1 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaMarkupFieldProps<{
|
|
271
|
-
AvatarUpload:
|
|
272
|
-
FileUploadInline:
|
|
271
|
+
AvatarUpload: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
272
|
+
FileUploadInline: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
273
273
|
multiple: true;
|
|
274
|
-
value?:
|
|
275
|
-
onChange?:
|
|
276
|
-
} &
|
|
274
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
275
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
276
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
277
277
|
multiple?: false;
|
|
278
|
-
value?:
|
|
279
|
-
onChange?:
|
|
280
|
-
} &
|
|
281
|
-
IconPicker:
|
|
282
|
-
providers?:
|
|
283
|
-
}> &
|
|
284
|
-
FileUpload:
|
|
278
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
279
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
280
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
281
|
+
IconPicker: react28.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
|
|
282
|
+
providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
|
|
283
|
+
}> & react28.RefAttributes<unknown>>;
|
|
284
|
+
FileUpload: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
285
285
|
multiple: true;
|
|
286
|
-
value?:
|
|
287
|
-
onChange?:
|
|
288
|
-
} &
|
|
286
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
287
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
288
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
289
289
|
multiple?: false;
|
|
290
|
-
value?:
|
|
291
|
-
onChange?:
|
|
292
|
-
} &
|
|
293
|
-
RichTextEditor:
|
|
294
|
-
ColorPicker:
|
|
295
|
-
Combobox:
|
|
296
|
-
ColorSelect:
|
|
297
|
-
Slider:
|
|
298
|
-
SliderInput:
|
|
299
|
-
SliderSelect:
|
|
300
|
-
TagsInput: typeof
|
|
301
|
-
TagsInputInLine:
|
|
290
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
291
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
292
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
293
|
+
RichTextEditor: react28.FC;
|
|
294
|
+
ColorPicker: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.ColorPickerProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
295
|
+
Combobox: react28.FC;
|
|
296
|
+
ColorSelect: react28.FC;
|
|
297
|
+
Slider: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
298
|
+
SliderInput: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderInputProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
299
|
+
SliderSelect: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderSelectProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
300
|
+
TagsInput: typeof _pixpilot_shadcn_ui16.TagsInput;
|
|
301
|
+
TagsInputInLine: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react28.RefAttributes<unknown>>;
|
|
302
302
|
ArrayCards: ComposedArrayProps;
|
|
303
|
-
ArrayCollapse:
|
|
303
|
+
ArrayCollapse: react28.FC<ArrayComponentProps & {
|
|
304
304
|
defaultActiveKey?: Array<string | number>;
|
|
305
305
|
mode?: "accordion" | "multiple";
|
|
306
306
|
}>;
|
|
307
|
-
ArrayDialog:
|
|
308
|
-
ArrayPopover:
|
|
309
|
-
Checkbox:
|
|
307
|
+
ArrayDialog: react28.FC<ArrayComponentProps>;
|
|
308
|
+
ArrayPopover: react28.FC<ArrayComponentProps>;
|
|
309
|
+
Checkbox: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
310
310
|
Column: typeof Column;
|
|
311
|
-
DatePicker:
|
|
311
|
+
DatePicker: react28.ForwardRefExoticComponent<Partial<{
|
|
312
312
|
value?: Date;
|
|
313
313
|
onChange?: (date: Date | undefined) => void;
|
|
314
314
|
placeholder?: string;
|
|
315
|
-
} & Omit<
|
|
315
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
|
|
316
316
|
FormGrid: typeof FormGrid;
|
|
317
|
-
FormItem:
|
|
318
|
-
children?:
|
|
319
|
-
}>, "ref"> &
|
|
320
|
-
Hidden:
|
|
317
|
+
FormItem: react28.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
318
|
+
children?: react28.ReactNode | undefined;
|
|
319
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
320
|
+
Hidden: react28.ForwardRefExoticComponent<Partial<{
|
|
321
321
|
children?: React.ReactNode;
|
|
322
322
|
value?: string;
|
|
323
|
-
}> &
|
|
324
|
-
Input:
|
|
323
|
+
}> & react28.RefAttributes<unknown>>;
|
|
324
|
+
Input: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement> & {
|
|
325
325
|
prefix?: React.ReactNode;
|
|
326
326
|
suffix?: React.ReactNode;
|
|
327
327
|
groupClassName?: string;
|
|
328
328
|
prefixClassName?: string;
|
|
329
329
|
suffixClassName?: string;
|
|
330
|
-
}>, "ref"> &
|
|
331
|
-
NumberInput:
|
|
330
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
331
|
+
NumberInput: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement> & {
|
|
332
332
|
prefix?: React.ReactNode;
|
|
333
333
|
suffix?: React.ReactNode;
|
|
334
334
|
groupClassName?: string;
|
|
335
335
|
prefixClassName?: string;
|
|
336
336
|
suffixClassName?: string;
|
|
337
|
-
}>, "ref"> &
|
|
338
|
-
ObjectContainer:
|
|
339
|
-
Radio:
|
|
337
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
338
|
+
ObjectContainer: react28.FC<ObjectContainerProps>;
|
|
339
|
+
Radio: react28.FC;
|
|
340
340
|
Row: typeof Row;
|
|
341
|
-
Select:
|
|
342
|
-
Separator:
|
|
343
|
-
Switch:
|
|
344
|
-
Textarea:
|
|
341
|
+
Select: react28.FC;
|
|
342
|
+
Separator: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react28.RefAttributes<HTMLDivElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
343
|
+
Switch: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
344
|
+
Textarea: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLTextAreaElement> & react28.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
345
345
|
}, Component_1, Decorator_1>): JSX.Element;
|
|
346
346
|
displayName: string;
|
|
347
347
|
};
|
|
348
348
|
String: {
|
|
349
349
|
<Decorator_2 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_2 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
350
|
-
AvatarUpload:
|
|
351
|
-
FileUploadInline:
|
|
350
|
+
AvatarUpload: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
351
|
+
FileUploadInline: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
352
352
|
multiple: true;
|
|
353
|
-
value?:
|
|
354
|
-
onChange?:
|
|
355
|
-
} &
|
|
353
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
354
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
355
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
356
356
|
multiple?: false;
|
|
357
|
-
value?:
|
|
358
|
-
onChange?:
|
|
359
|
-
} &
|
|
360
|
-
IconPicker:
|
|
361
|
-
providers?:
|
|
362
|
-
}> &
|
|
363
|
-
FileUpload:
|
|
357
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
358
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
359
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
360
|
+
IconPicker: react28.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
|
|
361
|
+
providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
|
|
362
|
+
}> & react28.RefAttributes<unknown>>;
|
|
363
|
+
FileUpload: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
364
364
|
multiple: true;
|
|
365
|
-
value?:
|
|
366
|
-
onChange?:
|
|
367
|
-
} &
|
|
365
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
366
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
367
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
368
368
|
multiple?: false;
|
|
369
|
-
value?:
|
|
370
|
-
onChange?:
|
|
371
|
-
} &
|
|
372
|
-
RichTextEditor:
|
|
373
|
-
ColorPicker:
|
|
374
|
-
Combobox:
|
|
375
|
-
ColorSelect:
|
|
376
|
-
Slider:
|
|
377
|
-
SliderInput:
|
|
378
|
-
SliderSelect:
|
|
379
|
-
TagsInput: typeof
|
|
380
|
-
TagsInputInLine:
|
|
369
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
370
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
371
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
372
|
+
RichTextEditor: react28.FC;
|
|
373
|
+
ColorPicker: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.ColorPickerProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
374
|
+
Combobox: react28.FC;
|
|
375
|
+
ColorSelect: react28.FC;
|
|
376
|
+
Slider: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
377
|
+
SliderInput: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderInputProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
378
|
+
SliderSelect: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderSelectProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
379
|
+
TagsInput: typeof _pixpilot_shadcn_ui16.TagsInput;
|
|
380
|
+
TagsInputInLine: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react28.RefAttributes<unknown>>;
|
|
381
381
|
ArrayCards: ComposedArrayProps;
|
|
382
|
-
ArrayCollapse:
|
|
382
|
+
ArrayCollapse: react28.FC<ArrayComponentProps & {
|
|
383
383
|
defaultActiveKey?: Array<string | number>;
|
|
384
384
|
mode?: "accordion" | "multiple";
|
|
385
385
|
}>;
|
|
386
|
-
ArrayDialog:
|
|
387
|
-
ArrayPopover:
|
|
388
|
-
Checkbox:
|
|
386
|
+
ArrayDialog: react28.FC<ArrayComponentProps>;
|
|
387
|
+
ArrayPopover: react28.FC<ArrayComponentProps>;
|
|
388
|
+
Checkbox: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
389
389
|
Column: typeof Column;
|
|
390
|
-
DatePicker:
|
|
390
|
+
DatePicker: react28.ForwardRefExoticComponent<Partial<{
|
|
391
391
|
value?: Date;
|
|
392
392
|
onChange?: (date: Date | undefined) => void;
|
|
393
393
|
placeholder?: string;
|
|
394
|
-
} & Omit<
|
|
394
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
|
|
395
395
|
FormGrid: typeof FormGrid;
|
|
396
|
-
FormItem:
|
|
397
|
-
children?:
|
|
398
|
-
}>, "ref"> &
|
|
399
|
-
Hidden:
|
|
396
|
+
FormItem: react28.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
397
|
+
children?: react28.ReactNode | undefined;
|
|
398
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
399
|
+
Hidden: react28.ForwardRefExoticComponent<Partial<{
|
|
400
400
|
children?: React.ReactNode;
|
|
401
401
|
value?: string;
|
|
402
|
-
}> &
|
|
403
|
-
Input:
|
|
402
|
+
}> & react28.RefAttributes<unknown>>;
|
|
403
|
+
Input: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement> & {
|
|
404
404
|
prefix?: React.ReactNode;
|
|
405
405
|
suffix?: React.ReactNode;
|
|
406
406
|
groupClassName?: string;
|
|
407
407
|
prefixClassName?: string;
|
|
408
408
|
suffixClassName?: string;
|
|
409
|
-
}>, "ref"> &
|
|
410
|
-
NumberInput:
|
|
409
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
410
|
+
NumberInput: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement> & {
|
|
411
411
|
prefix?: React.ReactNode;
|
|
412
412
|
suffix?: React.ReactNode;
|
|
413
413
|
groupClassName?: string;
|
|
414
414
|
prefixClassName?: string;
|
|
415
415
|
suffixClassName?: string;
|
|
416
|
-
}>, "ref"> &
|
|
417
|
-
ObjectContainer:
|
|
418
|
-
Radio:
|
|
416
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
417
|
+
ObjectContainer: react28.FC<ObjectContainerProps>;
|
|
418
|
+
Radio: react28.FC;
|
|
419
419
|
Row: typeof Row;
|
|
420
|
-
Select:
|
|
421
|
-
Separator:
|
|
422
|
-
Switch:
|
|
423
|
-
Textarea:
|
|
420
|
+
Select: react28.FC;
|
|
421
|
+
Separator: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react28.RefAttributes<HTMLDivElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
422
|
+
Switch: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
423
|
+
Textarea: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLTextAreaElement> & react28.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
424
424
|
}, Component_2, Decorator_2>): JSX.Element;
|
|
425
425
|
displayName: string;
|
|
426
426
|
};
|
|
427
427
|
Object: {
|
|
428
428
|
<Decorator_3 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_3 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
429
|
-
AvatarUpload:
|
|
430
|
-
FileUploadInline:
|
|
429
|
+
AvatarUpload: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
430
|
+
FileUploadInline: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
431
431
|
multiple: true;
|
|
432
|
-
value?:
|
|
433
|
-
onChange?:
|
|
434
|
-
} &
|
|
432
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
433
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
434
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
435
435
|
multiple?: false;
|
|
436
|
-
value?:
|
|
437
|
-
onChange?:
|
|
438
|
-
} &
|
|
439
|
-
IconPicker:
|
|
440
|
-
providers?:
|
|
441
|
-
}> &
|
|
442
|
-
FileUpload:
|
|
436
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
437
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
438
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
439
|
+
IconPicker: react28.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
|
|
440
|
+
providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
|
|
441
|
+
}> & react28.RefAttributes<unknown>>;
|
|
442
|
+
FileUpload: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
443
443
|
multiple: true;
|
|
444
|
-
value?:
|
|
445
|
-
onChange?:
|
|
446
|
-
} &
|
|
444
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
445
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
446
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
447
447
|
multiple?: false;
|
|
448
|
-
value?:
|
|
449
|
-
onChange?:
|
|
450
|
-
} &
|
|
451
|
-
RichTextEditor:
|
|
452
|
-
ColorPicker:
|
|
453
|
-
Combobox:
|
|
454
|
-
ColorSelect:
|
|
455
|
-
Slider:
|
|
456
|
-
SliderInput:
|
|
457
|
-
SliderSelect:
|
|
458
|
-
TagsInput: typeof
|
|
459
|
-
TagsInputInLine:
|
|
448
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
449
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
450
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
451
|
+
RichTextEditor: react28.FC;
|
|
452
|
+
ColorPicker: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.ColorPickerProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
453
|
+
Combobox: react28.FC;
|
|
454
|
+
ColorSelect: react28.FC;
|
|
455
|
+
Slider: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
456
|
+
SliderInput: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderInputProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
457
|
+
SliderSelect: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderSelectProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
458
|
+
TagsInput: typeof _pixpilot_shadcn_ui16.TagsInput;
|
|
459
|
+
TagsInputInLine: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react28.RefAttributes<unknown>>;
|
|
460
460
|
ArrayCards: ComposedArrayProps;
|
|
461
|
-
ArrayCollapse:
|
|
461
|
+
ArrayCollapse: react28.FC<ArrayComponentProps & {
|
|
462
462
|
defaultActiveKey?: Array<string | number>;
|
|
463
463
|
mode?: "accordion" | "multiple";
|
|
464
464
|
}>;
|
|
465
|
-
ArrayDialog:
|
|
466
|
-
ArrayPopover:
|
|
467
|
-
Checkbox:
|
|
465
|
+
ArrayDialog: react28.FC<ArrayComponentProps>;
|
|
466
|
+
ArrayPopover: react28.FC<ArrayComponentProps>;
|
|
467
|
+
Checkbox: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
468
468
|
Column: typeof Column;
|
|
469
|
-
DatePicker:
|
|
469
|
+
DatePicker: react28.ForwardRefExoticComponent<Partial<{
|
|
470
470
|
value?: Date;
|
|
471
471
|
onChange?: (date: Date | undefined) => void;
|
|
472
472
|
placeholder?: string;
|
|
473
|
-
} & Omit<
|
|
473
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
|
|
474
474
|
FormGrid: typeof FormGrid;
|
|
475
|
-
FormItem:
|
|
476
|
-
children?:
|
|
477
|
-
}>, "ref"> &
|
|
478
|
-
Hidden:
|
|
475
|
+
FormItem: react28.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
476
|
+
children?: react28.ReactNode | undefined;
|
|
477
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
478
|
+
Hidden: react28.ForwardRefExoticComponent<Partial<{
|
|
479
479
|
children?: React.ReactNode;
|
|
480
480
|
value?: string;
|
|
481
|
-
}> &
|
|
482
|
-
Input:
|
|
481
|
+
}> & react28.RefAttributes<unknown>>;
|
|
482
|
+
Input: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement> & {
|
|
483
483
|
prefix?: React.ReactNode;
|
|
484
484
|
suffix?: React.ReactNode;
|
|
485
485
|
groupClassName?: string;
|
|
486
486
|
prefixClassName?: string;
|
|
487
487
|
suffixClassName?: string;
|
|
488
|
-
}>, "ref"> &
|
|
489
|
-
NumberInput:
|
|
488
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
489
|
+
NumberInput: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement> & {
|
|
490
490
|
prefix?: React.ReactNode;
|
|
491
491
|
suffix?: React.ReactNode;
|
|
492
492
|
groupClassName?: string;
|
|
493
493
|
prefixClassName?: string;
|
|
494
494
|
suffixClassName?: string;
|
|
495
|
-
}>, "ref"> &
|
|
496
|
-
ObjectContainer:
|
|
497
|
-
Radio:
|
|
495
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
496
|
+
ObjectContainer: react28.FC<ObjectContainerProps>;
|
|
497
|
+
Radio: react28.FC;
|
|
498
498
|
Row: typeof Row;
|
|
499
|
-
Select:
|
|
500
|
-
Separator:
|
|
501
|
-
Switch:
|
|
502
|
-
Textarea:
|
|
499
|
+
Select: react28.FC;
|
|
500
|
+
Separator: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react28.RefAttributes<HTMLDivElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
501
|
+
Switch: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
502
|
+
Textarea: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLTextAreaElement> & react28.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
503
503
|
}, Component_3, Decorator_3>): JSX.Element;
|
|
504
504
|
displayName: string;
|
|
505
505
|
};
|
|
506
506
|
Array: {
|
|
507
507
|
<Decorator_4 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_4 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
508
|
-
AvatarUpload:
|
|
509
|
-
FileUploadInline:
|
|
508
|
+
AvatarUpload: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
509
|
+
FileUploadInline: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
510
510
|
multiple: true;
|
|
511
|
-
value?:
|
|
512
|
-
onChange?:
|
|
513
|
-
} &
|
|
511
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
512
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
513
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
514
514
|
multiple?: false;
|
|
515
|
-
value?:
|
|
516
|
-
onChange?:
|
|
517
|
-
} &
|
|
518
|
-
IconPicker:
|
|
519
|
-
providers?:
|
|
520
|
-
}> &
|
|
521
|
-
FileUpload:
|
|
515
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
516
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
517
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
518
|
+
IconPicker: react28.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
|
|
519
|
+
providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
|
|
520
|
+
}> & react28.RefAttributes<unknown>>;
|
|
521
|
+
FileUpload: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
522
522
|
multiple: true;
|
|
523
|
-
value?:
|
|
524
|
-
onChange?:
|
|
525
|
-
} &
|
|
523
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
524
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
525
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
526
526
|
multiple?: false;
|
|
527
|
-
value?:
|
|
528
|
-
onChange?:
|
|
529
|
-
} &
|
|
530
|
-
RichTextEditor:
|
|
531
|
-
ColorPicker:
|
|
532
|
-
Combobox:
|
|
533
|
-
ColorSelect:
|
|
534
|
-
Slider:
|
|
535
|
-
SliderInput:
|
|
536
|
-
SliderSelect:
|
|
537
|
-
TagsInput: typeof
|
|
538
|
-
TagsInputInLine:
|
|
527
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
528
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
529
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
530
|
+
RichTextEditor: react28.FC;
|
|
531
|
+
ColorPicker: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.ColorPickerProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
532
|
+
Combobox: react28.FC;
|
|
533
|
+
ColorSelect: react28.FC;
|
|
534
|
+
Slider: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
535
|
+
SliderInput: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderInputProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
536
|
+
SliderSelect: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderSelectProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
537
|
+
TagsInput: typeof _pixpilot_shadcn_ui16.TagsInput;
|
|
538
|
+
TagsInputInLine: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react28.RefAttributes<unknown>>;
|
|
539
539
|
ArrayCards: ComposedArrayProps;
|
|
540
|
-
ArrayCollapse:
|
|
540
|
+
ArrayCollapse: react28.FC<ArrayComponentProps & {
|
|
541
541
|
defaultActiveKey?: Array<string | number>;
|
|
542
542
|
mode?: "accordion" | "multiple";
|
|
543
543
|
}>;
|
|
544
|
-
ArrayDialog:
|
|
545
|
-
ArrayPopover:
|
|
546
|
-
Checkbox:
|
|
544
|
+
ArrayDialog: react28.FC<ArrayComponentProps>;
|
|
545
|
+
ArrayPopover: react28.FC<ArrayComponentProps>;
|
|
546
|
+
Checkbox: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
547
547
|
Column: typeof Column;
|
|
548
|
-
DatePicker:
|
|
548
|
+
DatePicker: react28.ForwardRefExoticComponent<Partial<{
|
|
549
549
|
value?: Date;
|
|
550
550
|
onChange?: (date: Date | undefined) => void;
|
|
551
551
|
placeholder?: string;
|
|
552
|
-
} & Omit<
|
|
552
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
|
|
553
553
|
FormGrid: typeof FormGrid;
|
|
554
|
-
FormItem:
|
|
555
|
-
children?:
|
|
556
|
-
}>, "ref"> &
|
|
557
|
-
Hidden:
|
|
554
|
+
FormItem: react28.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
555
|
+
children?: react28.ReactNode | undefined;
|
|
556
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
557
|
+
Hidden: react28.ForwardRefExoticComponent<Partial<{
|
|
558
558
|
children?: React.ReactNode;
|
|
559
559
|
value?: string;
|
|
560
|
-
}> &
|
|
561
|
-
Input:
|
|
560
|
+
}> & react28.RefAttributes<unknown>>;
|
|
561
|
+
Input: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement> & {
|
|
562
562
|
prefix?: React.ReactNode;
|
|
563
563
|
suffix?: React.ReactNode;
|
|
564
564
|
groupClassName?: string;
|
|
565
565
|
prefixClassName?: string;
|
|
566
566
|
suffixClassName?: string;
|
|
567
|
-
}>, "ref"> &
|
|
568
|
-
NumberInput:
|
|
567
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
568
|
+
NumberInput: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement> & {
|
|
569
569
|
prefix?: React.ReactNode;
|
|
570
570
|
suffix?: React.ReactNode;
|
|
571
571
|
groupClassName?: string;
|
|
572
572
|
prefixClassName?: string;
|
|
573
573
|
suffixClassName?: string;
|
|
574
|
-
}>, "ref"> &
|
|
575
|
-
ObjectContainer:
|
|
576
|
-
Radio:
|
|
574
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
575
|
+
ObjectContainer: react28.FC<ObjectContainerProps>;
|
|
576
|
+
Radio: react28.FC;
|
|
577
577
|
Row: typeof Row;
|
|
578
|
-
Select:
|
|
579
|
-
Separator:
|
|
580
|
-
Switch:
|
|
581
|
-
Textarea:
|
|
578
|
+
Select: react28.FC;
|
|
579
|
+
Separator: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react28.RefAttributes<HTMLDivElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
580
|
+
Switch: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
581
|
+
Textarea: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLTextAreaElement> & react28.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
582
582
|
}, Component_4, Decorator_4>): JSX.Element;
|
|
583
583
|
displayName: string;
|
|
584
584
|
};
|
|
585
585
|
Boolean: {
|
|
586
586
|
<Decorator_5 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_5 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
587
|
-
AvatarUpload:
|
|
588
|
-
FileUploadInline:
|
|
587
|
+
AvatarUpload: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
588
|
+
FileUploadInline: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
589
589
|
multiple: true;
|
|
590
|
-
value?:
|
|
591
|
-
onChange?:
|
|
592
|
-
} &
|
|
590
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
591
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
592
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
593
593
|
multiple?: false;
|
|
594
|
-
value?:
|
|
595
|
-
onChange?:
|
|
596
|
-
} &
|
|
597
|
-
IconPicker:
|
|
598
|
-
providers?:
|
|
599
|
-
}> &
|
|
600
|
-
FileUpload:
|
|
594
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
595
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
596
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
597
|
+
IconPicker: react28.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
|
|
598
|
+
providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
|
|
599
|
+
}> & react28.RefAttributes<unknown>>;
|
|
600
|
+
FileUpload: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
601
601
|
multiple: true;
|
|
602
|
-
value?:
|
|
603
|
-
onChange?:
|
|
604
|
-
} &
|
|
602
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
603
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
604
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
605
605
|
multiple?: false;
|
|
606
|
-
value?:
|
|
607
|
-
onChange?:
|
|
608
|
-
} &
|
|
609
|
-
RichTextEditor:
|
|
610
|
-
ColorPicker:
|
|
611
|
-
Combobox:
|
|
612
|
-
ColorSelect:
|
|
613
|
-
Slider:
|
|
614
|
-
SliderInput:
|
|
615
|
-
SliderSelect:
|
|
616
|
-
TagsInput: typeof
|
|
617
|
-
TagsInputInLine:
|
|
606
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
607
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
608
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
609
|
+
RichTextEditor: react28.FC;
|
|
610
|
+
ColorPicker: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.ColorPickerProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
611
|
+
Combobox: react28.FC;
|
|
612
|
+
ColorSelect: react28.FC;
|
|
613
|
+
Slider: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
614
|
+
SliderInput: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderInputProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
615
|
+
SliderSelect: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderSelectProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
616
|
+
TagsInput: typeof _pixpilot_shadcn_ui16.TagsInput;
|
|
617
|
+
TagsInputInLine: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react28.RefAttributes<unknown>>;
|
|
618
618
|
ArrayCards: ComposedArrayProps;
|
|
619
|
-
ArrayCollapse:
|
|
619
|
+
ArrayCollapse: react28.FC<ArrayComponentProps & {
|
|
620
620
|
defaultActiveKey?: Array<string | number>;
|
|
621
621
|
mode?: "accordion" | "multiple";
|
|
622
622
|
}>;
|
|
623
|
-
ArrayDialog:
|
|
624
|
-
ArrayPopover:
|
|
625
|
-
Checkbox:
|
|
623
|
+
ArrayDialog: react28.FC<ArrayComponentProps>;
|
|
624
|
+
ArrayPopover: react28.FC<ArrayComponentProps>;
|
|
625
|
+
Checkbox: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
626
626
|
Column: typeof Column;
|
|
627
|
-
DatePicker:
|
|
627
|
+
DatePicker: react28.ForwardRefExoticComponent<Partial<{
|
|
628
628
|
value?: Date;
|
|
629
629
|
onChange?: (date: Date | undefined) => void;
|
|
630
630
|
placeholder?: string;
|
|
631
|
-
} & Omit<
|
|
631
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
|
|
632
632
|
FormGrid: typeof FormGrid;
|
|
633
|
-
FormItem:
|
|
634
|
-
children?:
|
|
635
|
-
}>, "ref"> &
|
|
636
|
-
Hidden:
|
|
633
|
+
FormItem: react28.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
634
|
+
children?: react28.ReactNode | undefined;
|
|
635
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
636
|
+
Hidden: react28.ForwardRefExoticComponent<Partial<{
|
|
637
637
|
children?: React.ReactNode;
|
|
638
638
|
value?: string;
|
|
639
|
-
}> &
|
|
640
|
-
Input:
|
|
639
|
+
}> & react28.RefAttributes<unknown>>;
|
|
640
|
+
Input: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement> & {
|
|
641
641
|
prefix?: React.ReactNode;
|
|
642
642
|
suffix?: React.ReactNode;
|
|
643
643
|
groupClassName?: string;
|
|
644
644
|
prefixClassName?: string;
|
|
645
645
|
suffixClassName?: string;
|
|
646
|
-
}>, "ref"> &
|
|
647
|
-
NumberInput:
|
|
646
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
647
|
+
NumberInput: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement> & {
|
|
648
648
|
prefix?: React.ReactNode;
|
|
649
649
|
suffix?: React.ReactNode;
|
|
650
650
|
groupClassName?: string;
|
|
651
651
|
prefixClassName?: string;
|
|
652
652
|
suffixClassName?: string;
|
|
653
|
-
}>, "ref"> &
|
|
654
|
-
ObjectContainer:
|
|
655
|
-
Radio:
|
|
653
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
654
|
+
ObjectContainer: react28.FC<ObjectContainerProps>;
|
|
655
|
+
Radio: react28.FC;
|
|
656
656
|
Row: typeof Row;
|
|
657
|
-
Select:
|
|
658
|
-
Separator:
|
|
659
|
-
Switch:
|
|
660
|
-
Textarea:
|
|
657
|
+
Select: react28.FC;
|
|
658
|
+
Separator: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react28.RefAttributes<HTMLDivElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
659
|
+
Switch: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
660
|
+
Textarea: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLTextAreaElement> & react28.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
661
661
|
}, Component_5, Decorator_5>): JSX.Element;
|
|
662
662
|
displayName: string;
|
|
663
663
|
};
|
|
664
664
|
Date: {
|
|
665
665
|
<Decorator_6 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_6 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
666
|
-
AvatarUpload:
|
|
667
|
-
FileUploadInline:
|
|
666
|
+
AvatarUpload: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
667
|
+
FileUploadInline: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
668
668
|
multiple: true;
|
|
669
|
-
value?:
|
|
670
|
-
onChange?:
|
|
671
|
-
} &
|
|
669
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
670
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
671
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
672
672
|
multiple?: false;
|
|
673
|
-
value?:
|
|
674
|
-
onChange?:
|
|
675
|
-
} &
|
|
676
|
-
IconPicker:
|
|
677
|
-
providers?:
|
|
678
|
-
}> &
|
|
679
|
-
FileUpload:
|
|
673
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
674
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
675
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
676
|
+
IconPicker: react28.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
|
|
677
|
+
providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
|
|
678
|
+
}> & react28.RefAttributes<unknown>>;
|
|
679
|
+
FileUpload: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
680
680
|
multiple: true;
|
|
681
|
-
value?:
|
|
682
|
-
onChange?:
|
|
683
|
-
} &
|
|
681
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
682
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
683
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
684
684
|
multiple?: false;
|
|
685
|
-
value?:
|
|
686
|
-
onChange?:
|
|
687
|
-
} &
|
|
688
|
-
RichTextEditor:
|
|
689
|
-
ColorPicker:
|
|
690
|
-
Combobox:
|
|
691
|
-
ColorSelect:
|
|
692
|
-
Slider:
|
|
693
|
-
SliderInput:
|
|
694
|
-
SliderSelect:
|
|
695
|
-
TagsInput: typeof
|
|
696
|
-
TagsInputInLine:
|
|
685
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
686
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
687
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
688
|
+
RichTextEditor: react28.FC;
|
|
689
|
+
ColorPicker: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.ColorPickerProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
690
|
+
Combobox: react28.FC;
|
|
691
|
+
ColorSelect: react28.FC;
|
|
692
|
+
Slider: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
693
|
+
SliderInput: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderInputProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
694
|
+
SliderSelect: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderSelectProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
695
|
+
TagsInput: typeof _pixpilot_shadcn_ui16.TagsInput;
|
|
696
|
+
TagsInputInLine: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react28.RefAttributes<unknown>>;
|
|
697
697
|
ArrayCards: ComposedArrayProps;
|
|
698
|
-
ArrayCollapse:
|
|
698
|
+
ArrayCollapse: react28.FC<ArrayComponentProps & {
|
|
699
699
|
defaultActiveKey?: Array<string | number>;
|
|
700
700
|
mode?: "accordion" | "multiple";
|
|
701
701
|
}>;
|
|
702
|
-
ArrayDialog:
|
|
703
|
-
ArrayPopover:
|
|
704
|
-
Checkbox:
|
|
702
|
+
ArrayDialog: react28.FC<ArrayComponentProps>;
|
|
703
|
+
ArrayPopover: react28.FC<ArrayComponentProps>;
|
|
704
|
+
Checkbox: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
705
705
|
Column: typeof Column;
|
|
706
|
-
DatePicker:
|
|
706
|
+
DatePicker: react28.ForwardRefExoticComponent<Partial<{
|
|
707
707
|
value?: Date;
|
|
708
708
|
onChange?: (date: Date | undefined) => void;
|
|
709
709
|
placeholder?: string;
|
|
710
|
-
} & Omit<
|
|
710
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
|
|
711
711
|
FormGrid: typeof FormGrid;
|
|
712
|
-
FormItem:
|
|
713
|
-
children?:
|
|
714
|
-
}>, "ref"> &
|
|
715
|
-
Hidden:
|
|
712
|
+
FormItem: react28.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
713
|
+
children?: react28.ReactNode | undefined;
|
|
714
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
715
|
+
Hidden: react28.ForwardRefExoticComponent<Partial<{
|
|
716
716
|
children?: React.ReactNode;
|
|
717
717
|
value?: string;
|
|
718
|
-
}> &
|
|
719
|
-
Input:
|
|
718
|
+
}> & react28.RefAttributes<unknown>>;
|
|
719
|
+
Input: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement> & {
|
|
720
720
|
prefix?: React.ReactNode;
|
|
721
721
|
suffix?: React.ReactNode;
|
|
722
722
|
groupClassName?: string;
|
|
723
723
|
prefixClassName?: string;
|
|
724
724
|
suffixClassName?: string;
|
|
725
|
-
}>, "ref"> &
|
|
726
|
-
NumberInput:
|
|
725
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
726
|
+
NumberInput: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement> & {
|
|
727
727
|
prefix?: React.ReactNode;
|
|
728
728
|
suffix?: React.ReactNode;
|
|
729
729
|
groupClassName?: string;
|
|
730
730
|
prefixClassName?: string;
|
|
731
731
|
suffixClassName?: string;
|
|
732
|
-
}>, "ref"> &
|
|
733
|
-
ObjectContainer:
|
|
734
|
-
Radio:
|
|
732
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
733
|
+
ObjectContainer: react28.FC<ObjectContainerProps>;
|
|
734
|
+
Radio: react28.FC;
|
|
735
735
|
Row: typeof Row;
|
|
736
|
-
Select:
|
|
737
|
-
Separator:
|
|
738
|
-
Switch:
|
|
739
|
-
Textarea:
|
|
736
|
+
Select: react28.FC;
|
|
737
|
+
Separator: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react28.RefAttributes<HTMLDivElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
738
|
+
Switch: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
739
|
+
Textarea: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLTextAreaElement> & react28.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
740
740
|
}, Component_6, Decorator_6>): JSX.Element;
|
|
741
741
|
displayName: string;
|
|
742
742
|
};
|
|
743
743
|
DateTime: {
|
|
744
744
|
<Decorator_7 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_7 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
745
|
-
AvatarUpload:
|
|
746
|
-
FileUploadInline:
|
|
745
|
+
AvatarUpload: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
746
|
+
FileUploadInline: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
747
747
|
multiple: true;
|
|
748
|
-
value?:
|
|
749
|
-
onChange?:
|
|
750
|
-
} &
|
|
748
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
749
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
750
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
751
751
|
multiple?: false;
|
|
752
|
-
value?:
|
|
753
|
-
onChange?:
|
|
754
|
-
} &
|
|
755
|
-
IconPicker:
|
|
756
|
-
providers?:
|
|
757
|
-
}> &
|
|
758
|
-
FileUpload:
|
|
752
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
753
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
754
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
755
|
+
IconPicker: react28.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
|
|
756
|
+
providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
|
|
757
|
+
}> & react28.RefAttributes<unknown>>;
|
|
758
|
+
FileUpload: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
759
759
|
multiple: true;
|
|
760
|
-
value?:
|
|
761
|
-
onChange?:
|
|
762
|
-
} &
|
|
760
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
761
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
762
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
763
763
|
multiple?: false;
|
|
764
|
-
value?:
|
|
765
|
-
onChange?:
|
|
766
|
-
} &
|
|
767
|
-
RichTextEditor:
|
|
768
|
-
ColorPicker:
|
|
769
|
-
Combobox:
|
|
770
|
-
ColorSelect:
|
|
771
|
-
Slider:
|
|
772
|
-
SliderInput:
|
|
773
|
-
SliderSelect:
|
|
774
|
-
TagsInput: typeof
|
|
775
|
-
TagsInputInLine:
|
|
764
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
765
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
766
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
767
|
+
RichTextEditor: react28.FC;
|
|
768
|
+
ColorPicker: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.ColorPickerProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
769
|
+
Combobox: react28.FC;
|
|
770
|
+
ColorSelect: react28.FC;
|
|
771
|
+
Slider: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
772
|
+
SliderInput: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderInputProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
773
|
+
SliderSelect: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderSelectProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
774
|
+
TagsInput: typeof _pixpilot_shadcn_ui16.TagsInput;
|
|
775
|
+
TagsInputInLine: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react28.RefAttributes<unknown>>;
|
|
776
776
|
ArrayCards: ComposedArrayProps;
|
|
777
|
-
ArrayCollapse:
|
|
777
|
+
ArrayCollapse: react28.FC<ArrayComponentProps & {
|
|
778
778
|
defaultActiveKey?: Array<string | number>;
|
|
779
779
|
mode?: "accordion" | "multiple";
|
|
780
780
|
}>;
|
|
781
|
-
ArrayDialog:
|
|
782
|
-
ArrayPopover:
|
|
783
|
-
Checkbox:
|
|
781
|
+
ArrayDialog: react28.FC<ArrayComponentProps>;
|
|
782
|
+
ArrayPopover: react28.FC<ArrayComponentProps>;
|
|
783
|
+
Checkbox: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
784
784
|
Column: typeof Column;
|
|
785
|
-
DatePicker:
|
|
785
|
+
DatePicker: react28.ForwardRefExoticComponent<Partial<{
|
|
786
786
|
value?: Date;
|
|
787
787
|
onChange?: (date: Date | undefined) => void;
|
|
788
788
|
placeholder?: string;
|
|
789
|
-
} & Omit<
|
|
789
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
|
|
790
790
|
FormGrid: typeof FormGrid;
|
|
791
|
-
FormItem:
|
|
792
|
-
children?:
|
|
793
|
-
}>, "ref"> &
|
|
794
|
-
Hidden:
|
|
791
|
+
FormItem: react28.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
792
|
+
children?: react28.ReactNode | undefined;
|
|
793
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
794
|
+
Hidden: react28.ForwardRefExoticComponent<Partial<{
|
|
795
795
|
children?: React.ReactNode;
|
|
796
796
|
value?: string;
|
|
797
|
-
}> &
|
|
798
|
-
Input:
|
|
797
|
+
}> & react28.RefAttributes<unknown>>;
|
|
798
|
+
Input: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement> & {
|
|
799
799
|
prefix?: React.ReactNode;
|
|
800
800
|
suffix?: React.ReactNode;
|
|
801
801
|
groupClassName?: string;
|
|
802
802
|
prefixClassName?: string;
|
|
803
803
|
suffixClassName?: string;
|
|
804
|
-
}>, "ref"> &
|
|
805
|
-
NumberInput:
|
|
804
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
805
|
+
NumberInput: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement> & {
|
|
806
806
|
prefix?: React.ReactNode;
|
|
807
807
|
suffix?: React.ReactNode;
|
|
808
808
|
groupClassName?: string;
|
|
809
809
|
prefixClassName?: string;
|
|
810
810
|
suffixClassName?: string;
|
|
811
|
-
}>, "ref"> &
|
|
812
|
-
ObjectContainer:
|
|
813
|
-
Radio:
|
|
811
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
812
|
+
ObjectContainer: react28.FC<ObjectContainerProps>;
|
|
813
|
+
Radio: react28.FC;
|
|
814
814
|
Row: typeof Row;
|
|
815
|
-
Select:
|
|
816
|
-
Separator:
|
|
817
|
-
Switch:
|
|
818
|
-
Textarea:
|
|
815
|
+
Select: react28.FC;
|
|
816
|
+
Separator: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react28.RefAttributes<HTMLDivElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
817
|
+
Switch: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
818
|
+
Textarea: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLTextAreaElement> & react28.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
819
819
|
}, Component_7, Decorator_7>): JSX.Element;
|
|
820
820
|
displayName: string;
|
|
821
821
|
};
|
|
822
822
|
Void: {
|
|
823
823
|
<Decorator_8 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_8 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
824
|
-
AvatarUpload:
|
|
825
|
-
FileUploadInline:
|
|
824
|
+
AvatarUpload: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
825
|
+
FileUploadInline: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
826
826
|
multiple: true;
|
|
827
|
-
value?:
|
|
828
|
-
onChange?:
|
|
829
|
-
} &
|
|
827
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
828
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
829
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
830
830
|
multiple?: false;
|
|
831
|
-
value?:
|
|
832
|
-
onChange?:
|
|
833
|
-
} &
|
|
834
|
-
IconPicker:
|
|
835
|
-
providers?:
|
|
836
|
-
}> &
|
|
837
|
-
FileUpload:
|
|
831
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
832
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
833
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
834
|
+
IconPicker: react28.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
|
|
835
|
+
providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
|
|
836
|
+
}> & react28.RefAttributes<unknown>>;
|
|
837
|
+
FileUpload: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
838
838
|
multiple: true;
|
|
839
|
-
value?:
|
|
840
|
-
onChange?:
|
|
841
|
-
} &
|
|
839
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
840
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
841
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
842
842
|
multiple?: false;
|
|
843
|
-
value?:
|
|
844
|
-
onChange?:
|
|
845
|
-
} &
|
|
846
|
-
RichTextEditor:
|
|
847
|
-
ColorPicker:
|
|
848
|
-
Combobox:
|
|
849
|
-
ColorSelect:
|
|
850
|
-
Slider:
|
|
851
|
-
SliderInput:
|
|
852
|
-
SliderSelect:
|
|
853
|
-
TagsInput: typeof
|
|
854
|
-
TagsInputInLine:
|
|
843
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
844
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
845
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
846
|
+
RichTextEditor: react28.FC;
|
|
847
|
+
ColorPicker: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.ColorPickerProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
848
|
+
Combobox: react28.FC;
|
|
849
|
+
ColorSelect: react28.FC;
|
|
850
|
+
Slider: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
851
|
+
SliderInput: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderInputProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
852
|
+
SliderSelect: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderSelectProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
853
|
+
TagsInput: typeof _pixpilot_shadcn_ui16.TagsInput;
|
|
854
|
+
TagsInputInLine: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react28.RefAttributes<unknown>>;
|
|
855
855
|
ArrayCards: ComposedArrayProps;
|
|
856
|
-
ArrayCollapse:
|
|
856
|
+
ArrayCollapse: react28.FC<ArrayComponentProps & {
|
|
857
857
|
defaultActiveKey?: Array<string | number>;
|
|
858
858
|
mode?: "accordion" | "multiple";
|
|
859
859
|
}>;
|
|
860
|
-
ArrayDialog:
|
|
861
|
-
ArrayPopover:
|
|
862
|
-
Checkbox:
|
|
860
|
+
ArrayDialog: react28.FC<ArrayComponentProps>;
|
|
861
|
+
ArrayPopover: react28.FC<ArrayComponentProps>;
|
|
862
|
+
Checkbox: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
863
863
|
Column: typeof Column;
|
|
864
|
-
DatePicker:
|
|
864
|
+
DatePicker: react28.ForwardRefExoticComponent<Partial<{
|
|
865
865
|
value?: Date;
|
|
866
866
|
onChange?: (date: Date | undefined) => void;
|
|
867
867
|
placeholder?: string;
|
|
868
|
-
} & Omit<
|
|
868
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
|
|
869
869
|
FormGrid: typeof FormGrid;
|
|
870
|
-
FormItem:
|
|
871
|
-
children?:
|
|
872
|
-
}>, "ref"> &
|
|
873
|
-
Hidden:
|
|
870
|
+
FormItem: react28.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
871
|
+
children?: react28.ReactNode | undefined;
|
|
872
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
873
|
+
Hidden: react28.ForwardRefExoticComponent<Partial<{
|
|
874
874
|
children?: React.ReactNode;
|
|
875
875
|
value?: string;
|
|
876
|
-
}> &
|
|
877
|
-
Input:
|
|
876
|
+
}> & react28.RefAttributes<unknown>>;
|
|
877
|
+
Input: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement> & {
|
|
878
878
|
prefix?: React.ReactNode;
|
|
879
879
|
suffix?: React.ReactNode;
|
|
880
880
|
groupClassName?: string;
|
|
881
881
|
prefixClassName?: string;
|
|
882
882
|
suffixClassName?: string;
|
|
883
|
-
}>, "ref"> &
|
|
884
|
-
NumberInput:
|
|
883
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
884
|
+
NumberInput: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement> & {
|
|
885
885
|
prefix?: React.ReactNode;
|
|
886
886
|
suffix?: React.ReactNode;
|
|
887
887
|
groupClassName?: string;
|
|
888
888
|
prefixClassName?: string;
|
|
889
889
|
suffixClassName?: string;
|
|
890
|
-
}>, "ref"> &
|
|
891
|
-
ObjectContainer:
|
|
892
|
-
Radio:
|
|
890
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
891
|
+
ObjectContainer: react28.FC<ObjectContainerProps>;
|
|
892
|
+
Radio: react28.FC;
|
|
893
893
|
Row: typeof Row;
|
|
894
|
-
Select:
|
|
895
|
-
Separator:
|
|
896
|
-
Switch:
|
|
897
|
-
Textarea:
|
|
894
|
+
Select: react28.FC;
|
|
895
|
+
Separator: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react28.RefAttributes<HTMLDivElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
896
|
+
Switch: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
897
|
+
Textarea: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLTextAreaElement> & react28.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
898
898
|
}, Component_8, Decorator_8>): JSX.Element;
|
|
899
899
|
displayName: string;
|
|
900
900
|
};
|
|
901
901
|
Number: {
|
|
902
902
|
<Decorator_9 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_9 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
903
|
-
AvatarUpload:
|
|
904
|
-
FileUploadInline:
|
|
903
|
+
AvatarUpload: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
904
|
+
FileUploadInline: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
905
905
|
multiple: true;
|
|
906
|
-
value?:
|
|
907
|
-
onChange?:
|
|
908
|
-
} &
|
|
906
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
907
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
908
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
909
909
|
multiple?: false;
|
|
910
|
-
value?:
|
|
911
|
-
onChange?:
|
|
912
|
-
} &
|
|
913
|
-
IconPicker:
|
|
914
|
-
providers?:
|
|
915
|
-
}> &
|
|
916
|
-
FileUpload:
|
|
910
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
911
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
912
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
913
|
+
IconPicker: react28.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
|
|
914
|
+
providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
|
|
915
|
+
}> & react28.RefAttributes<unknown>>;
|
|
916
|
+
FileUpload: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
917
917
|
multiple: true;
|
|
918
|
-
value?:
|
|
919
|
-
onChange?:
|
|
920
|
-
} &
|
|
918
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
919
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
920
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
921
921
|
multiple?: false;
|
|
922
|
-
value?:
|
|
923
|
-
onChange?:
|
|
924
|
-
} &
|
|
925
|
-
RichTextEditor:
|
|
926
|
-
ColorPicker:
|
|
927
|
-
Combobox:
|
|
928
|
-
ColorSelect:
|
|
929
|
-
Slider:
|
|
930
|
-
SliderInput:
|
|
931
|
-
SliderSelect:
|
|
932
|
-
TagsInput: typeof
|
|
933
|
-
TagsInputInLine:
|
|
922
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
923
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
924
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
925
|
+
RichTextEditor: react28.FC;
|
|
926
|
+
ColorPicker: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.ColorPickerProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
927
|
+
Combobox: react28.FC;
|
|
928
|
+
ColorSelect: react28.FC;
|
|
929
|
+
Slider: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
930
|
+
SliderInput: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderInputProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
931
|
+
SliderSelect: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderSelectProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
932
|
+
TagsInput: typeof _pixpilot_shadcn_ui16.TagsInput;
|
|
933
|
+
TagsInputInLine: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react28.RefAttributes<unknown>>;
|
|
934
934
|
ArrayCards: ComposedArrayProps;
|
|
935
|
-
ArrayCollapse:
|
|
935
|
+
ArrayCollapse: react28.FC<ArrayComponentProps & {
|
|
936
936
|
defaultActiveKey?: Array<string | number>;
|
|
937
937
|
mode?: "accordion" | "multiple";
|
|
938
938
|
}>;
|
|
939
|
-
ArrayDialog:
|
|
940
|
-
ArrayPopover:
|
|
941
|
-
Checkbox:
|
|
939
|
+
ArrayDialog: react28.FC<ArrayComponentProps>;
|
|
940
|
+
ArrayPopover: react28.FC<ArrayComponentProps>;
|
|
941
|
+
Checkbox: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
942
942
|
Column: typeof Column;
|
|
943
|
-
DatePicker:
|
|
943
|
+
DatePicker: react28.ForwardRefExoticComponent<Partial<{
|
|
944
944
|
value?: Date;
|
|
945
945
|
onChange?: (date: Date | undefined) => void;
|
|
946
946
|
placeholder?: string;
|
|
947
|
-
} & Omit<
|
|
947
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
|
|
948
948
|
FormGrid: typeof FormGrid;
|
|
949
|
-
FormItem:
|
|
950
|
-
children?:
|
|
951
|
-
}>, "ref"> &
|
|
952
|
-
Hidden:
|
|
949
|
+
FormItem: react28.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
950
|
+
children?: react28.ReactNode | undefined;
|
|
951
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
952
|
+
Hidden: react28.ForwardRefExoticComponent<Partial<{
|
|
953
953
|
children?: React.ReactNode;
|
|
954
954
|
value?: string;
|
|
955
|
-
}> &
|
|
956
|
-
Input:
|
|
955
|
+
}> & react28.RefAttributes<unknown>>;
|
|
956
|
+
Input: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement> & {
|
|
957
957
|
prefix?: React.ReactNode;
|
|
958
958
|
suffix?: React.ReactNode;
|
|
959
959
|
groupClassName?: string;
|
|
960
960
|
prefixClassName?: string;
|
|
961
961
|
suffixClassName?: string;
|
|
962
|
-
}>, "ref"> &
|
|
963
|
-
NumberInput:
|
|
962
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
963
|
+
NumberInput: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement> & {
|
|
964
964
|
prefix?: React.ReactNode;
|
|
965
965
|
suffix?: React.ReactNode;
|
|
966
966
|
groupClassName?: string;
|
|
967
967
|
prefixClassName?: string;
|
|
968
968
|
suffixClassName?: string;
|
|
969
|
-
}>, "ref"> &
|
|
970
|
-
ObjectContainer:
|
|
971
|
-
Radio:
|
|
969
|
+
}>, "ref"> & react28.RefAttributes<unknown>>;
|
|
970
|
+
ObjectContainer: react28.FC<ObjectContainerProps>;
|
|
971
|
+
Radio: react28.FC;
|
|
972
972
|
Row: typeof Row;
|
|
973
|
-
Select:
|
|
974
|
-
Separator:
|
|
975
|
-
Switch:
|
|
976
|
-
Textarea:
|
|
973
|
+
Select: react28.FC;
|
|
974
|
+
Separator: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react28.RefAttributes<HTMLDivElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
975
|
+
Switch: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
976
|
+
Textarea: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLTextAreaElement> & react28.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react28.RefAttributes<unknown>>;
|
|
977
977
|
}, Component_9, Decorator_9>): JSX.Element;
|
|
978
978
|
displayName: string;
|
|
979
979
|
};
|