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