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