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