@pixpilot/formily-shadcn 0.15.1 → 0.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/color-picker/color-picker.cjs +18 -0
- package/dist/components/color-picker/color-picker.js +14 -0
- package/dist/components/color-picker/index.cjs +1 -0
- package/dist/components/color-picker/index.js +1 -0
- package/dist/components/file-upload/file-upload-inline.d.cts +8 -8
- package/dist/components/file-upload/file-upload.d.cts +8 -8
- package/dist/components/form-item/connected-form-item.d.cts +4 -4
- package/dist/components/form-item/connected-form-item.d.ts +4 -4
- package/dist/components/object-container.cjs +2 -1
- package/dist/components/object-container.js +2 -1
- package/dist/components/schema-field/schema-field-basics.d.cts +211 -211
- package/dist/components/schema-field/schema-field-basics.d.ts +211 -211
- package/dist/components/schema-field/schema-field-extended.d.cts +255 -241
- package/dist/components/schema-field/schema-field-extended.d.ts +23 -9
- package/dist/components/schema-field/schema-field.cjs +6 -0
- package/dist/components/schema-field/schema-field.d.cts +267 -253
- package/dist/components/schema-field/schema-field.d.ts +267 -253
- package/dist/components/schema-field/schema-field.js +6 -0
- package/package.json +3 -3
|
@@ -11,7 +11,7 @@ import * as _formily_react0 from "@formily/react";
|
|
|
11
11
|
import { ISchema } from "@formily/react";
|
|
12
12
|
import * as react30 from "react";
|
|
13
13
|
import * as _formily_core0 from "@formily/core";
|
|
14
|
-
import * as
|
|
14
|
+
import * as _pixpilot_shadcn_ui16 from "@pixpilot/shadcn-ui";
|
|
15
15
|
import * as _radix_ui_react_checkbox0 from "@radix-ui/react-checkbox";
|
|
16
16
|
import * as _radix_ui_react_switch0 from "@radix-ui/react-switch";
|
|
17
17
|
import * as _radix_ui_react_separator0 from "@radix-ui/react-separator";
|
|
@@ -19,37 +19,37 @@ import * as _radix_ui_react_separator0 from "@radix-ui/react-separator";
|
|
|
19
19
|
//#region src/components/schema-field/schema-field-extended.d.ts
|
|
20
20
|
declare const extendedComponentRegistry: {
|
|
21
21
|
AvatarUpload: {
|
|
22
|
-
component: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
22
|
+
component: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
23
23
|
decorator: string;
|
|
24
24
|
};
|
|
25
25
|
FileUploadInline: {
|
|
26
|
-
component: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
26
|
+
component: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
27
27
|
multiple: true;
|
|
28
|
-
value?:
|
|
29
|
-
onChange?:
|
|
30
|
-
} &
|
|
28
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
29
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
30
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
31
31
|
multiple?: false;
|
|
32
|
-
value?:
|
|
33
|
-
onChange?:
|
|
34
|
-
} &
|
|
32
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
33
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
34
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
35
35
|
decorator: string;
|
|
36
36
|
};
|
|
37
37
|
IconPicker: {
|
|
38
|
-
component: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
39
|
-
providers?:
|
|
38
|
+
component: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
|
|
39
|
+
providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
|
|
40
40
|
}> & react30.RefAttributes<unknown>>;
|
|
41
41
|
decorator: string;
|
|
42
42
|
};
|
|
43
43
|
FileUpload: {
|
|
44
|
-
component: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
44
|
+
component: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
45
45
|
multiple: true;
|
|
46
|
-
value?:
|
|
47
|
-
onChange?:
|
|
48
|
-
} &
|
|
46
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
47
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
48
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
49
49
|
multiple?: false;
|
|
50
|
-
value?:
|
|
51
|
-
onChange?:
|
|
52
|
-
} &
|
|
50
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
51
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
52
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
53
53
|
decorator: string;
|
|
54
54
|
};
|
|
55
55
|
RichTextEditor: {
|
|
@@ -61,15 +61,19 @@ declare const extendedComponentRegistry: {
|
|
|
61
61
|
decorator: string;
|
|
62
62
|
};
|
|
63
63
|
TagsInput: {
|
|
64
|
-
component: typeof
|
|
64
|
+
component: typeof _pixpilot_shadcn_ui16.TagsInput;
|
|
65
65
|
decorator: string;
|
|
66
66
|
};
|
|
67
67
|
TagsInputInLine: {
|
|
68
|
-
component: react30.ForwardRefExoticComponent<Partial<
|
|
68
|
+
component: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
69
69
|
decorator: string;
|
|
70
70
|
};
|
|
71
71
|
Slider: {
|
|
72
|
-
component: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
72
|
+
component: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
73
|
+
decorator: string;
|
|
74
|
+
};
|
|
75
|
+
ColorPicker: {
|
|
76
|
+
component: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.ColorPickerProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
73
77
|
decorator: string;
|
|
74
78
|
};
|
|
75
79
|
FormItem: {
|
|
@@ -116,7 +120,7 @@ declare const extendedComponentRegistry: {
|
|
|
116
120
|
value?: Date;
|
|
117
121
|
onChange?: (date: Date | undefined) => void;
|
|
118
122
|
placeholder?: string;
|
|
119
|
-
} & Omit<
|
|
123
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
120
124
|
decorator: string;
|
|
121
125
|
};
|
|
122
126
|
Row: {
|
|
@@ -160,33 +164,34 @@ declare const extendedComponentRegistry: {
|
|
|
160
164
|
* Use this to render forms from JSON Schema
|
|
161
165
|
*/
|
|
162
166
|
declare const extendedComponents: {
|
|
163
|
-
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
164
|
-
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
167
|
+
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
168
|
+
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
165
169
|
multiple: true;
|
|
166
|
-
value?:
|
|
167
|
-
onChange?:
|
|
168
|
-
} &
|
|
170
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
171
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
172
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
169
173
|
multiple?: false;
|
|
170
|
-
value?:
|
|
171
|
-
onChange?:
|
|
172
|
-
} &
|
|
173
|
-
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
174
|
-
providers?:
|
|
174
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
175
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
176
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
177
|
+
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
|
|
178
|
+
providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
|
|
175
179
|
}> & react30.RefAttributes<unknown>>;
|
|
176
|
-
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
180
|
+
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
177
181
|
multiple: true;
|
|
178
|
-
value?:
|
|
179
|
-
onChange?:
|
|
180
|
-
} &
|
|
182
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
183
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
184
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
181
185
|
multiple?: false;
|
|
182
|
-
value?:
|
|
183
|
-
onChange?:
|
|
184
|
-
} &
|
|
186
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
187
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
188
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
185
189
|
RichTextEditor: react30.FC;
|
|
186
190
|
Combobox: react30.FC;
|
|
187
|
-
TagsInput: typeof
|
|
188
|
-
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<
|
|
189
|
-
Slider: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
191
|
+
TagsInput: typeof _pixpilot_shadcn_ui16.TagsInput;
|
|
192
|
+
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
193
|
+
Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
194
|
+
ColorPicker: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.ColorPickerProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
190
195
|
FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
191
196
|
children?: react30.ReactNode | undefined;
|
|
192
197
|
}>, "ref"> & react30.RefAttributes<unknown>>;
|
|
@@ -205,7 +210,7 @@ declare const extendedComponents: {
|
|
|
205
210
|
value?: Date;
|
|
206
211
|
onChange?: (date: Date | undefined) => void;
|
|
207
212
|
placeholder?: string;
|
|
208
|
-
} & Omit<
|
|
213
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
209
214
|
Row: typeof Row;
|
|
210
215
|
Column: typeof Column;
|
|
211
216
|
FormGrid: typeof FormGrid;
|
|
@@ -223,34 +228,35 @@ declare const SchemaFieldExtended: {
|
|
|
223
228
|
<Decorator extends _formily_react0.JSXComponent, Component extends _formily_react0.JSXComponent>(props: _formily_react0.ISchemaFieldProps<Decorator, Component, _formily_core0.ObjectField<Decorator, Component>>): JSX.Element;
|
|
224
229
|
displayName: string;
|
|
225
230
|
Markup: {
|
|
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<
|
|
228
|
-
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
231
|
+
<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" | "ColorPicker" | "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" | "ColorPicker.$$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" | "ColorPicker" | "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" | "ColorPicker.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaMarkupFieldProps<{
|
|
232
|
+
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
233
|
+
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
229
234
|
multiple: true;
|
|
230
|
-
value?:
|
|
231
|
-
onChange?:
|
|
232
|
-
} &
|
|
235
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
236
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
237
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
233
238
|
multiple?: false;
|
|
234
|
-
value?:
|
|
235
|
-
onChange?:
|
|
236
|
-
} &
|
|
237
|
-
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
238
|
-
providers?:
|
|
239
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
240
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
241
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
242
|
+
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
|
|
243
|
+
providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
|
|
239
244
|
}> & react30.RefAttributes<unknown>>;
|
|
240
|
-
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
245
|
+
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
241
246
|
multiple: true;
|
|
242
|
-
value?:
|
|
243
|
-
onChange?:
|
|
244
|
-
} &
|
|
247
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
248
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
249
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
245
250
|
multiple?: false;
|
|
246
|
-
value?:
|
|
247
|
-
onChange?:
|
|
248
|
-
} &
|
|
251
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
252
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
253
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
249
254
|
RichTextEditor: react30.FC;
|
|
250
255
|
Combobox: react30.FC;
|
|
251
|
-
TagsInput: typeof
|
|
252
|
-
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<
|
|
253
|
-
Slider: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
256
|
+
TagsInput: typeof _pixpilot_shadcn_ui16.TagsInput;
|
|
257
|
+
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
258
|
+
Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
259
|
+
ColorPicker: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.ColorPickerProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
254
260
|
FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
255
261
|
children?: react30.ReactNode | undefined;
|
|
256
262
|
}>, "ref"> & react30.RefAttributes<unknown>>;
|
|
@@ -269,7 +275,7 @@ declare const SchemaFieldExtended: {
|
|
|
269
275
|
value?: Date;
|
|
270
276
|
onChange?: (date: Date | undefined) => void;
|
|
271
277
|
placeholder?: string;
|
|
272
|
-
} & Omit<
|
|
278
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
273
279
|
Row: typeof Row;
|
|
274
280
|
Column: typeof Column;
|
|
275
281
|
FormGrid: typeof FormGrid;
|
|
@@ -286,34 +292,35 @@ declare const SchemaFieldExtended: {
|
|
|
286
292
|
displayName: string;
|
|
287
293
|
};
|
|
288
294
|
String: {
|
|
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<
|
|
291
|
-
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
295
|
+
<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" | "ColorPicker" | "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" | "ColorPicker.$$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" | "ColorPicker" | "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" | "ColorPicker.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
296
|
+
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
297
|
+
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
292
298
|
multiple: true;
|
|
293
|
-
value?:
|
|
294
|
-
onChange?:
|
|
295
|
-
} &
|
|
299
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
300
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
301
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
296
302
|
multiple?: false;
|
|
297
|
-
value?:
|
|
298
|
-
onChange?:
|
|
299
|
-
} &
|
|
300
|
-
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
301
|
-
providers?:
|
|
303
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
304
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
305
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
306
|
+
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
|
|
307
|
+
providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
|
|
302
308
|
}> & react30.RefAttributes<unknown>>;
|
|
303
|
-
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
309
|
+
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
304
310
|
multiple: true;
|
|
305
|
-
value?:
|
|
306
|
-
onChange?:
|
|
307
|
-
} &
|
|
311
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
312
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
313
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
308
314
|
multiple?: false;
|
|
309
|
-
value?:
|
|
310
|
-
onChange?:
|
|
311
|
-
} &
|
|
315
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
316
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
317
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
312
318
|
RichTextEditor: react30.FC;
|
|
313
319
|
Combobox: react30.FC;
|
|
314
|
-
TagsInput: typeof
|
|
315
|
-
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<
|
|
316
|
-
Slider: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
320
|
+
TagsInput: typeof _pixpilot_shadcn_ui16.TagsInput;
|
|
321
|
+
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
322
|
+
Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
323
|
+
ColorPicker: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.ColorPickerProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
317
324
|
FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
318
325
|
children?: react30.ReactNode | undefined;
|
|
319
326
|
}>, "ref"> & react30.RefAttributes<unknown>>;
|
|
@@ -332,7 +339,7 @@ declare const SchemaFieldExtended: {
|
|
|
332
339
|
value?: Date;
|
|
333
340
|
onChange?: (date: Date | undefined) => void;
|
|
334
341
|
placeholder?: string;
|
|
335
|
-
} & Omit<
|
|
342
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
336
343
|
Row: typeof Row;
|
|
337
344
|
Column: typeof Column;
|
|
338
345
|
FormGrid: typeof FormGrid;
|
|
@@ -349,34 +356,35 @@ declare const SchemaFieldExtended: {
|
|
|
349
356
|
displayName: string;
|
|
350
357
|
};
|
|
351
358
|
Object: {
|
|
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<
|
|
354
|
-
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
359
|
+
<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" | "ColorPicker" | "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" | "ColorPicker.$$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" | "ColorPicker" | "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" | "ColorPicker.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
360
|
+
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
361
|
+
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
355
362
|
multiple: true;
|
|
356
|
-
value?:
|
|
357
|
-
onChange?:
|
|
358
|
-
} &
|
|
363
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
364
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
365
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
359
366
|
multiple?: false;
|
|
360
|
-
value?:
|
|
361
|
-
onChange?:
|
|
362
|
-
} &
|
|
363
|
-
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
364
|
-
providers?:
|
|
367
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
368
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
369
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
370
|
+
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
|
|
371
|
+
providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
|
|
365
372
|
}> & react30.RefAttributes<unknown>>;
|
|
366
|
-
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
373
|
+
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
367
374
|
multiple: true;
|
|
368
|
-
value?:
|
|
369
|
-
onChange?:
|
|
370
|
-
} &
|
|
375
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
376
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
377
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
371
378
|
multiple?: false;
|
|
372
|
-
value?:
|
|
373
|
-
onChange?:
|
|
374
|
-
} &
|
|
379
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
380
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
381
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
375
382
|
RichTextEditor: react30.FC;
|
|
376
383
|
Combobox: react30.FC;
|
|
377
|
-
TagsInput: typeof
|
|
378
|
-
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<
|
|
379
|
-
Slider: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
384
|
+
TagsInput: typeof _pixpilot_shadcn_ui16.TagsInput;
|
|
385
|
+
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
386
|
+
Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
387
|
+
ColorPicker: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.ColorPickerProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
380
388
|
FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
381
389
|
children?: react30.ReactNode | undefined;
|
|
382
390
|
}>, "ref"> & react30.RefAttributes<unknown>>;
|
|
@@ -395,7 +403,7 @@ declare const SchemaFieldExtended: {
|
|
|
395
403
|
value?: Date;
|
|
396
404
|
onChange?: (date: Date | undefined) => void;
|
|
397
405
|
placeholder?: string;
|
|
398
|
-
} & Omit<
|
|
406
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
399
407
|
Row: typeof Row;
|
|
400
408
|
Column: typeof Column;
|
|
401
409
|
FormGrid: typeof FormGrid;
|
|
@@ -412,34 +420,35 @@ declare const SchemaFieldExtended: {
|
|
|
412
420
|
displayName: string;
|
|
413
421
|
};
|
|
414
422
|
Array: {
|
|
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<
|
|
417
|
-
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
423
|
+
<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" | "ColorPicker" | "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" | "ColorPicker.$$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" | "ColorPicker" | "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" | "ColorPicker.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
424
|
+
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
425
|
+
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
418
426
|
multiple: true;
|
|
419
|
-
value?:
|
|
420
|
-
onChange?:
|
|
421
|
-
} &
|
|
427
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
428
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
429
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
422
430
|
multiple?: false;
|
|
423
|
-
value?:
|
|
424
|
-
onChange?:
|
|
425
|
-
} &
|
|
426
|
-
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
427
|
-
providers?:
|
|
431
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
432
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
433
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
434
|
+
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
|
|
435
|
+
providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
|
|
428
436
|
}> & react30.RefAttributes<unknown>>;
|
|
429
|
-
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
437
|
+
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
430
438
|
multiple: true;
|
|
431
|
-
value?:
|
|
432
|
-
onChange?:
|
|
433
|
-
} &
|
|
439
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
440
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
441
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
434
442
|
multiple?: false;
|
|
435
|
-
value?:
|
|
436
|
-
onChange?:
|
|
437
|
-
} &
|
|
443
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
444
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
445
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
438
446
|
RichTextEditor: react30.FC;
|
|
439
447
|
Combobox: react30.FC;
|
|
440
|
-
TagsInput: typeof
|
|
441
|
-
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<
|
|
442
|
-
Slider: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
448
|
+
TagsInput: typeof _pixpilot_shadcn_ui16.TagsInput;
|
|
449
|
+
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
450
|
+
Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
451
|
+
ColorPicker: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.ColorPickerProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
443
452
|
FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
444
453
|
children?: react30.ReactNode | undefined;
|
|
445
454
|
}>, "ref"> & react30.RefAttributes<unknown>>;
|
|
@@ -458,7 +467,7 @@ declare const SchemaFieldExtended: {
|
|
|
458
467
|
value?: Date;
|
|
459
468
|
onChange?: (date: Date | undefined) => void;
|
|
460
469
|
placeholder?: string;
|
|
461
|
-
} & Omit<
|
|
470
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
462
471
|
Row: typeof Row;
|
|
463
472
|
Column: typeof Column;
|
|
464
473
|
FormGrid: typeof FormGrid;
|
|
@@ -475,34 +484,35 @@ declare const SchemaFieldExtended: {
|
|
|
475
484
|
displayName: string;
|
|
476
485
|
};
|
|
477
486
|
Boolean: {
|
|
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<
|
|
480
|
-
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
487
|
+
<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" | "ColorPicker" | "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" | "ColorPicker.$$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" | "ColorPicker" | "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" | "ColorPicker.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
488
|
+
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
489
|
+
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
481
490
|
multiple: true;
|
|
482
|
-
value?:
|
|
483
|
-
onChange?:
|
|
484
|
-
} &
|
|
491
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
492
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
493
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
485
494
|
multiple?: false;
|
|
486
|
-
value?:
|
|
487
|
-
onChange?:
|
|
488
|
-
} &
|
|
489
|
-
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
490
|
-
providers?:
|
|
495
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
496
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
497
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
498
|
+
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
|
|
499
|
+
providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
|
|
491
500
|
}> & react30.RefAttributes<unknown>>;
|
|
492
|
-
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
501
|
+
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
493
502
|
multiple: true;
|
|
494
|
-
value?:
|
|
495
|
-
onChange?:
|
|
496
|
-
} &
|
|
503
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
504
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
505
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
497
506
|
multiple?: false;
|
|
498
|
-
value?:
|
|
499
|
-
onChange?:
|
|
500
|
-
} &
|
|
507
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
508
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
509
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
501
510
|
RichTextEditor: react30.FC;
|
|
502
511
|
Combobox: react30.FC;
|
|
503
|
-
TagsInput: typeof
|
|
504
|
-
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<
|
|
505
|
-
Slider: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
512
|
+
TagsInput: typeof _pixpilot_shadcn_ui16.TagsInput;
|
|
513
|
+
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
514
|
+
Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
515
|
+
ColorPicker: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.ColorPickerProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
506
516
|
FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
507
517
|
children?: react30.ReactNode | undefined;
|
|
508
518
|
}>, "ref"> & react30.RefAttributes<unknown>>;
|
|
@@ -521,7 +531,7 @@ declare const SchemaFieldExtended: {
|
|
|
521
531
|
value?: Date;
|
|
522
532
|
onChange?: (date: Date | undefined) => void;
|
|
523
533
|
placeholder?: string;
|
|
524
|
-
} & Omit<
|
|
534
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
525
535
|
Row: typeof Row;
|
|
526
536
|
Column: typeof Column;
|
|
527
537
|
FormGrid: typeof FormGrid;
|
|
@@ -538,34 +548,35 @@ declare const SchemaFieldExtended: {
|
|
|
538
548
|
displayName: string;
|
|
539
549
|
};
|
|
540
550
|
Date: {
|
|
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<
|
|
543
|
-
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
551
|
+
<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" | "ColorPicker" | "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" | "ColorPicker.$$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" | "ColorPicker" | "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" | "ColorPicker.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
552
|
+
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
553
|
+
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
544
554
|
multiple: true;
|
|
545
|
-
value?:
|
|
546
|
-
onChange?:
|
|
547
|
-
} &
|
|
555
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
556
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
557
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
548
558
|
multiple?: false;
|
|
549
|
-
value?:
|
|
550
|
-
onChange?:
|
|
551
|
-
} &
|
|
552
|
-
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
553
|
-
providers?:
|
|
559
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
560
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
561
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
562
|
+
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
|
|
563
|
+
providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
|
|
554
564
|
}> & react30.RefAttributes<unknown>>;
|
|
555
|
-
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
565
|
+
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
556
566
|
multiple: true;
|
|
557
|
-
value?:
|
|
558
|
-
onChange?:
|
|
559
|
-
} &
|
|
567
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
568
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
569
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
560
570
|
multiple?: false;
|
|
561
|
-
value?:
|
|
562
|
-
onChange?:
|
|
563
|
-
} &
|
|
571
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
572
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
573
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
564
574
|
RichTextEditor: react30.FC;
|
|
565
575
|
Combobox: react30.FC;
|
|
566
|
-
TagsInput: typeof
|
|
567
|
-
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<
|
|
568
|
-
Slider: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
576
|
+
TagsInput: typeof _pixpilot_shadcn_ui16.TagsInput;
|
|
577
|
+
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
578
|
+
Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
579
|
+
ColorPicker: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.ColorPickerProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
569
580
|
FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
570
581
|
children?: react30.ReactNode | undefined;
|
|
571
582
|
}>, "ref"> & react30.RefAttributes<unknown>>;
|
|
@@ -584,7 +595,7 @@ declare const SchemaFieldExtended: {
|
|
|
584
595
|
value?: Date;
|
|
585
596
|
onChange?: (date: Date | undefined) => void;
|
|
586
597
|
placeholder?: string;
|
|
587
|
-
} & Omit<
|
|
598
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
588
599
|
Row: typeof Row;
|
|
589
600
|
Column: typeof Column;
|
|
590
601
|
FormGrid: typeof FormGrid;
|
|
@@ -601,34 +612,35 @@ declare const SchemaFieldExtended: {
|
|
|
601
612
|
displayName: string;
|
|
602
613
|
};
|
|
603
614
|
DateTime: {
|
|
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<
|
|
606
|
-
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
615
|
+
<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" | "ColorPicker" | "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" | "ColorPicker.$$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" | "ColorPicker" | "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" | "ColorPicker.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
616
|
+
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
617
|
+
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
607
618
|
multiple: true;
|
|
608
|
-
value?:
|
|
609
|
-
onChange?:
|
|
610
|
-
} &
|
|
619
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
620
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
621
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
611
622
|
multiple?: false;
|
|
612
|
-
value?:
|
|
613
|
-
onChange?:
|
|
614
|
-
} &
|
|
615
|
-
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
616
|
-
providers?:
|
|
623
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
624
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
625
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
626
|
+
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
|
|
627
|
+
providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
|
|
617
628
|
}> & react30.RefAttributes<unknown>>;
|
|
618
|
-
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
629
|
+
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
619
630
|
multiple: true;
|
|
620
|
-
value?:
|
|
621
|
-
onChange?:
|
|
622
|
-
} &
|
|
631
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
632
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
633
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
623
634
|
multiple?: false;
|
|
624
|
-
value?:
|
|
625
|
-
onChange?:
|
|
626
|
-
} &
|
|
635
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
636
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
637
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
627
638
|
RichTextEditor: react30.FC;
|
|
628
639
|
Combobox: react30.FC;
|
|
629
|
-
TagsInput: typeof
|
|
630
|
-
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<
|
|
631
|
-
Slider: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
640
|
+
TagsInput: typeof _pixpilot_shadcn_ui16.TagsInput;
|
|
641
|
+
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
642
|
+
Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
643
|
+
ColorPicker: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.ColorPickerProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
632
644
|
FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
633
645
|
children?: react30.ReactNode | undefined;
|
|
634
646
|
}>, "ref"> & react30.RefAttributes<unknown>>;
|
|
@@ -647,7 +659,7 @@ declare const SchemaFieldExtended: {
|
|
|
647
659
|
value?: Date;
|
|
648
660
|
onChange?: (date: Date | undefined) => void;
|
|
649
661
|
placeholder?: string;
|
|
650
|
-
} & Omit<
|
|
662
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
651
663
|
Row: typeof Row;
|
|
652
664
|
Column: typeof Column;
|
|
653
665
|
FormGrid: typeof FormGrid;
|
|
@@ -664,34 +676,35 @@ declare const SchemaFieldExtended: {
|
|
|
664
676
|
displayName: string;
|
|
665
677
|
};
|
|
666
678
|
Void: {
|
|
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<
|
|
669
|
-
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
679
|
+
<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" | "ColorPicker" | "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" | "ColorPicker.$$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" | "ColorPicker" | "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" | "ColorPicker.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
680
|
+
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
681
|
+
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
670
682
|
multiple: true;
|
|
671
|
-
value?:
|
|
672
|
-
onChange?:
|
|
673
|
-
} &
|
|
683
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
684
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
685
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
674
686
|
multiple?: false;
|
|
675
|
-
value?:
|
|
676
|
-
onChange?:
|
|
677
|
-
} &
|
|
678
|
-
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
679
|
-
providers?:
|
|
687
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
688
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
689
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
690
|
+
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
|
|
691
|
+
providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
|
|
680
692
|
}> & react30.RefAttributes<unknown>>;
|
|
681
|
-
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
693
|
+
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
682
694
|
multiple: true;
|
|
683
|
-
value?:
|
|
684
|
-
onChange?:
|
|
685
|
-
} &
|
|
695
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
696
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
697
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
686
698
|
multiple?: false;
|
|
687
|
-
value?:
|
|
688
|
-
onChange?:
|
|
689
|
-
} &
|
|
699
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
700
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
701
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
690
702
|
RichTextEditor: react30.FC;
|
|
691
703
|
Combobox: react30.FC;
|
|
692
|
-
TagsInput: typeof
|
|
693
|
-
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<
|
|
694
|
-
Slider: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
704
|
+
TagsInput: typeof _pixpilot_shadcn_ui16.TagsInput;
|
|
705
|
+
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
706
|
+
Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
707
|
+
ColorPicker: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.ColorPickerProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
695
708
|
FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
696
709
|
children?: react30.ReactNode | undefined;
|
|
697
710
|
}>, "ref"> & react30.RefAttributes<unknown>>;
|
|
@@ -710,7 +723,7 @@ declare const SchemaFieldExtended: {
|
|
|
710
723
|
value?: Date;
|
|
711
724
|
onChange?: (date: Date | undefined) => void;
|
|
712
725
|
placeholder?: string;
|
|
713
|
-
} & Omit<
|
|
726
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
714
727
|
Row: typeof Row;
|
|
715
728
|
Column: typeof Column;
|
|
716
729
|
FormGrid: typeof FormGrid;
|
|
@@ -727,34 +740,35 @@ declare const SchemaFieldExtended: {
|
|
|
727
740
|
displayName: string;
|
|
728
741
|
};
|
|
729
742
|
Number: {
|
|
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<
|
|
732
|
-
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
743
|
+
<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" | "ColorPicker" | "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" | "ColorPicker.$$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" | "ColorPicker" | "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" | "ColorPicker.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
744
|
+
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
745
|
+
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
733
746
|
multiple: true;
|
|
734
|
-
value?:
|
|
735
|
-
onChange?:
|
|
736
|
-
} &
|
|
747
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
748
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
749
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
737
750
|
multiple?: false;
|
|
738
|
-
value?:
|
|
739
|
-
onChange?:
|
|
740
|
-
} &
|
|
741
|
-
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
742
|
-
providers?:
|
|
751
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
752
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
753
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
754
|
+
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui16.IconPickerProps, "providers"> & {
|
|
755
|
+
providers?: _pixpilot_shadcn_ui16.IconProviderProps[];
|
|
743
756
|
}> & react30.RefAttributes<unknown>>;
|
|
744
|
-
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
757
|
+
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
745
758
|
multiple: true;
|
|
746
|
-
value?:
|
|
747
|
-
onChange?:
|
|
748
|
-
} &
|
|
759
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata[];
|
|
760
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeMultipleFiles;
|
|
761
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
749
762
|
multiple?: false;
|
|
750
|
-
value?:
|
|
751
|
-
onChange?:
|
|
752
|
-
} &
|
|
763
|
+
value?: _pixpilot_shadcn_ui16.FileMetadata | null;
|
|
764
|
+
onChange?: _pixpilot_shadcn_ui16.OnChangeSingleFile;
|
|
765
|
+
} & _pixpilot_shadcn_ui16.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
753
766
|
RichTextEditor: react30.FC;
|
|
754
767
|
Combobox: react30.FC;
|
|
755
|
-
TagsInput: typeof
|
|
756
|
-
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<
|
|
757
|
-
Slider: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
768
|
+
TagsInput: typeof _pixpilot_shadcn_ui16.TagsInput;
|
|
769
|
+
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
770
|
+
Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
771
|
+
ColorPicker: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.ColorPickerProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
758
772
|
FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
759
773
|
children?: react30.ReactNode | undefined;
|
|
760
774
|
}>, "ref"> & react30.RefAttributes<unknown>>;
|
|
@@ -773,7 +787,7 @@ declare const SchemaFieldExtended: {
|
|
|
773
787
|
value?: Date;
|
|
774
788
|
onChange?: (date: Date | undefined) => void;
|
|
775
789
|
placeholder?: string;
|
|
776
|
-
} & Omit<
|
|
790
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
777
791
|
Row: typeof Row;
|
|
778
792
|
Column: typeof Column;
|
|
779
793
|
FormGrid: typeof FormGrid;
|