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