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