@pixpilot/formily-shadcn 0.21.9 → 0.21.10
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.cts +3 -3
- package/dist/components/date-picker.d.ts +3 -3
- package/dist/components/file-upload/file-upload.d.cts +8 -8
- package/dist/components/form-grid.d.cts +2 -2
- package/dist/components/form.d.cts +2 -2
- package/dist/components/icon-picker.d.cts +3 -3
- package/dist/components/icon-picker.d.ts +3 -3
- package/dist/components/input.d.cts +3 -3
- package/dist/components/number/number-input.d.ts +3 -3
- package/dist/components/radio.d.cts +2 -2
- package/dist/components/schema-field/schema-field-basics.d.cts +233 -233
- package/dist/components/schema-field/schema-field-basics.d.ts +232 -232
- package/dist/components/schema-field/schema-field-extended.d.cts +265 -265
- package/dist/components/schema-field/schema-field-extended.d.ts +397 -397
- package/dist/components/schema-field/schema-field.d.cts +310 -310
- package/dist/components/schema-field/schema-field.d.ts +309 -309
- package/dist/components/slider/slider-input.d.cts +3 -3
- package/dist/components/slider/slider-select.d.cts +3 -3
- package/dist/components/slider/slider.d.cts +3 -3
- 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.cts +2 -2
- 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 react28 from "react";
|
|
13
13
|
import * as _formily_core0 from "@formily/core";
|
|
14
|
-
import * as
|
|
14
|
+
import * as _pixpilot_shadcn_ui8 from "@pixpilot/shadcn-ui";
|
|
15
15
|
import * as _radix_ui_react_checkbox0 from "@radix-ui/react-checkbox";
|
|
16
16
|
import * as _radix_ui_react_separator0 from "@radix-ui/react-separator";
|
|
17
17
|
import * as _radix_ui_react_switch0 from "@radix-ui/react-switch";
|
|
@@ -19,37 +19,37 @@ import * as _radix_ui_react_switch0 from "@radix-ui/react-switch";
|
|
|
19
19
|
//#region src/components/schema-field/schema-field-extended.d.ts
|
|
20
20
|
declare const extendedComponentRegistry: {
|
|
21
21
|
AvatarUpload: {
|
|
22
|
-
component: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
22
|
+
component: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.AvatarUploadProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
23
23
|
decorator: string;
|
|
24
24
|
};
|
|
25
25
|
FileUploadInline: {
|
|
26
|
-
component: react28.ForwardRefExoticComponent<(Omit<Partial<
|
|
26
|
+
component: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
27
27
|
multiple: true;
|
|
28
|
-
value?:
|
|
29
|
-
onChange?:
|
|
30
|
-
} &
|
|
28
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata[];
|
|
29
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeMultipleFiles;
|
|
30
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
31
31
|
multiple?: false;
|
|
32
|
-
value?:
|
|
33
|
-
onChange?:
|
|
34
|
-
} &
|
|
32
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata | null;
|
|
33
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeSingleFile;
|
|
34
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
35
35
|
decorator: string;
|
|
36
36
|
};
|
|
37
37
|
IconPicker: {
|
|
38
|
-
component: react28.ForwardRefExoticComponent<Partial<Omit<
|
|
39
|
-
providers?:
|
|
38
|
+
component: react28.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui8.IconPickerProps, "providers"> & {
|
|
39
|
+
providers?: _pixpilot_shadcn_ui8.IconProviderProps[];
|
|
40
40
|
}> & react28.RefAttributes<unknown>>;
|
|
41
41
|
decorator: string;
|
|
42
42
|
};
|
|
43
43
|
FileUpload: {
|
|
44
|
-
component: react28.ForwardRefExoticComponent<(Omit<Partial<
|
|
44
|
+
component: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
45
45
|
multiple: true;
|
|
46
|
-
value?:
|
|
47
|
-
onChange?:
|
|
48
|
-
} &
|
|
46
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata[];
|
|
47
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeMultipleFiles;
|
|
48
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
49
49
|
multiple?: false;
|
|
50
|
-
value?:
|
|
51
|
-
onChange?:
|
|
52
|
-
} &
|
|
50
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata | null;
|
|
51
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeSingleFile;
|
|
52
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
53
53
|
decorator: string;
|
|
54
54
|
};
|
|
55
55
|
RichTextEditor: {
|
|
@@ -57,7 +57,7 @@ declare const extendedComponentRegistry: {
|
|
|
57
57
|
decorator: string;
|
|
58
58
|
};
|
|
59
59
|
ColorPicker: {
|
|
60
|
-
component: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
60
|
+
component: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.ColorPickerProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
61
61
|
decorator: string;
|
|
62
62
|
};
|
|
63
63
|
Combobox: {
|
|
@@ -69,23 +69,23 @@ declare const extendedComponentRegistry: {
|
|
|
69
69
|
decorator: string;
|
|
70
70
|
};
|
|
71
71
|
Slider: {
|
|
72
|
-
component: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
72
|
+
component: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
73
73
|
decorator: string;
|
|
74
74
|
};
|
|
75
75
|
SliderInput: {
|
|
76
|
-
component: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
76
|
+
component: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderInputProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
77
77
|
decorator: string;
|
|
78
78
|
};
|
|
79
79
|
SliderSelect: {
|
|
80
|
-
component: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
80
|
+
component: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderSelectProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
81
81
|
decorator: string;
|
|
82
82
|
};
|
|
83
83
|
TagsInput: {
|
|
84
|
-
component: typeof
|
|
84
|
+
component: typeof _pixpilot_shadcn_ui8.TagsInput;
|
|
85
85
|
decorator: string;
|
|
86
86
|
};
|
|
87
87
|
TagsInputInLine: {
|
|
88
|
-
component: react28.ForwardRefExoticComponent<Partial<
|
|
88
|
+
component: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui8.TagsInputProps> & react28.RefAttributes<unknown>>;
|
|
89
89
|
decorator: string;
|
|
90
90
|
};
|
|
91
91
|
ArrayCards: {
|
|
@@ -119,7 +119,7 @@ declare const extendedComponentRegistry: {
|
|
|
119
119
|
value?: Date;
|
|
120
120
|
onChange?: (date: Date | undefined) => void;
|
|
121
121
|
placeholder?: string;
|
|
122
|
-
} & Omit<
|
|
122
|
+
} & Omit<_pixpilot_shadcn_ui8.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
|
|
123
123
|
decorator: string;
|
|
124
124
|
};
|
|
125
125
|
FormGrid: {
|
|
@@ -188,37 +188,37 @@ declare const extendedComponentRegistry: {
|
|
|
188
188
|
* Use this to render forms from JSON Schema
|
|
189
189
|
*/
|
|
190
190
|
declare const extendedComponents: {
|
|
191
|
-
AvatarUpload: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
192
|
-
FileUploadInline: react28.ForwardRefExoticComponent<(Omit<Partial<
|
|
191
|
+
AvatarUpload: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.AvatarUploadProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
192
|
+
FileUploadInline: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
193
193
|
multiple: true;
|
|
194
|
-
value?:
|
|
195
|
-
onChange?:
|
|
196
|
-
} &
|
|
194
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata[];
|
|
195
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeMultipleFiles;
|
|
196
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
197
197
|
multiple?: false;
|
|
198
|
-
value?:
|
|
199
|
-
onChange?:
|
|
200
|
-
} &
|
|
201
|
-
IconPicker: react28.ForwardRefExoticComponent<Partial<Omit<
|
|
202
|
-
providers?:
|
|
198
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata | null;
|
|
199
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeSingleFile;
|
|
200
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
201
|
+
IconPicker: react28.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui8.IconPickerProps, "providers"> & {
|
|
202
|
+
providers?: _pixpilot_shadcn_ui8.IconProviderProps[];
|
|
203
203
|
}> & react28.RefAttributes<unknown>>;
|
|
204
|
-
FileUpload: react28.ForwardRefExoticComponent<(Omit<Partial<
|
|
204
|
+
FileUpload: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
205
205
|
multiple: true;
|
|
206
|
-
value?:
|
|
207
|
-
onChange?:
|
|
208
|
-
} &
|
|
206
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata[];
|
|
207
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeMultipleFiles;
|
|
208
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
209
209
|
multiple?: false;
|
|
210
|
-
value?:
|
|
211
|
-
onChange?:
|
|
212
|
-
} &
|
|
210
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata | null;
|
|
211
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeSingleFile;
|
|
212
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
213
213
|
RichTextEditor: react28.FC;
|
|
214
|
-
ColorPicker: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
214
|
+
ColorPicker: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.ColorPickerProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
215
215
|
Combobox: react28.FC;
|
|
216
216
|
ColorSelect: react28.FC;
|
|
217
|
-
Slider: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
218
|
-
SliderInput: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
219
|
-
SliderSelect: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
220
|
-
TagsInput: typeof
|
|
221
|
-
TagsInputInLine: react28.ForwardRefExoticComponent<Partial<
|
|
217
|
+
Slider: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
218
|
+
SliderInput: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderInputProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
219
|
+
SliderSelect: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderSelectProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
220
|
+
TagsInput: typeof _pixpilot_shadcn_ui8.TagsInput;
|
|
221
|
+
TagsInputInLine: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui8.TagsInputProps> & react28.RefAttributes<unknown>>;
|
|
222
222
|
ArrayCards: ComposedArrayProps;
|
|
223
223
|
ArrayCollapse: react28.FC<ArrayComponentProps & {
|
|
224
224
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -232,7 +232,7 @@ declare const extendedComponents: {
|
|
|
232
232
|
value?: Date;
|
|
233
233
|
onChange?: (date: Date | undefined) => void;
|
|
234
234
|
placeholder?: string;
|
|
235
|
-
} & Omit<
|
|
235
|
+
} & Omit<_pixpilot_shadcn_ui8.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
|
|
236
236
|
FormGrid: typeof FormGrid;
|
|
237
237
|
FormItem: react28.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
238
238
|
children?: react28.ReactNode | undefined;
|
|
@@ -268,37 +268,37 @@ declare const SchemaFieldExtended: {
|
|
|
268
268
|
displayName: string;
|
|
269
269
|
Markup: {
|
|
270
270
|
<Decorator_1 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_1 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaMarkupFieldProps<{
|
|
271
|
-
AvatarUpload: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
272
|
-
FileUploadInline: react28.ForwardRefExoticComponent<(Omit<Partial<
|
|
271
|
+
AvatarUpload: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.AvatarUploadProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
272
|
+
FileUploadInline: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
273
273
|
multiple: true;
|
|
274
|
-
value?:
|
|
275
|
-
onChange?:
|
|
276
|
-
} &
|
|
274
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata[];
|
|
275
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeMultipleFiles;
|
|
276
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
277
277
|
multiple?: false;
|
|
278
|
-
value?:
|
|
279
|
-
onChange?:
|
|
280
|
-
} &
|
|
281
|
-
IconPicker: react28.ForwardRefExoticComponent<Partial<Omit<
|
|
282
|
-
providers?:
|
|
278
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata | null;
|
|
279
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeSingleFile;
|
|
280
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
281
|
+
IconPicker: react28.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui8.IconPickerProps, "providers"> & {
|
|
282
|
+
providers?: _pixpilot_shadcn_ui8.IconProviderProps[];
|
|
283
283
|
}> & react28.RefAttributes<unknown>>;
|
|
284
|
-
FileUpload: react28.ForwardRefExoticComponent<(Omit<Partial<
|
|
284
|
+
FileUpload: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
285
285
|
multiple: true;
|
|
286
|
-
value?:
|
|
287
|
-
onChange?:
|
|
288
|
-
} &
|
|
286
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata[];
|
|
287
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeMultipleFiles;
|
|
288
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
289
289
|
multiple?: false;
|
|
290
|
-
value?:
|
|
291
|
-
onChange?:
|
|
292
|
-
} &
|
|
290
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata | null;
|
|
291
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeSingleFile;
|
|
292
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
293
293
|
RichTextEditor: react28.FC;
|
|
294
|
-
ColorPicker: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
294
|
+
ColorPicker: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.ColorPickerProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
295
295
|
Combobox: react28.FC;
|
|
296
296
|
ColorSelect: react28.FC;
|
|
297
|
-
Slider: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
298
|
-
SliderInput: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
299
|
-
SliderSelect: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
300
|
-
TagsInput: typeof
|
|
301
|
-
TagsInputInLine: react28.ForwardRefExoticComponent<Partial<
|
|
297
|
+
Slider: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
298
|
+
SliderInput: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderInputProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
299
|
+
SliderSelect: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderSelectProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
300
|
+
TagsInput: typeof _pixpilot_shadcn_ui8.TagsInput;
|
|
301
|
+
TagsInputInLine: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui8.TagsInputProps> & react28.RefAttributes<unknown>>;
|
|
302
302
|
ArrayCards: ComposedArrayProps;
|
|
303
303
|
ArrayCollapse: react28.FC<ArrayComponentProps & {
|
|
304
304
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -312,7 +312,7 @@ declare const SchemaFieldExtended: {
|
|
|
312
312
|
value?: Date;
|
|
313
313
|
onChange?: (date: Date | undefined) => void;
|
|
314
314
|
placeholder?: string;
|
|
315
|
-
} & Omit<
|
|
315
|
+
} & Omit<_pixpilot_shadcn_ui8.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
|
|
316
316
|
FormGrid: typeof FormGrid;
|
|
317
317
|
FormItem: react28.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
318
318
|
children?: react28.ReactNode | undefined;
|
|
@@ -347,37 +347,37 @@ declare const SchemaFieldExtended: {
|
|
|
347
347
|
};
|
|
348
348
|
String: {
|
|
349
349
|
<Decorator_2 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_2 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
350
|
-
AvatarUpload: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
351
|
-
FileUploadInline: react28.ForwardRefExoticComponent<(Omit<Partial<
|
|
350
|
+
AvatarUpload: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.AvatarUploadProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
351
|
+
FileUploadInline: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
352
352
|
multiple: true;
|
|
353
|
-
value?:
|
|
354
|
-
onChange?:
|
|
355
|
-
} &
|
|
353
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata[];
|
|
354
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeMultipleFiles;
|
|
355
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
356
356
|
multiple?: false;
|
|
357
|
-
value?:
|
|
358
|
-
onChange?:
|
|
359
|
-
} &
|
|
360
|
-
IconPicker: react28.ForwardRefExoticComponent<Partial<Omit<
|
|
361
|
-
providers?:
|
|
357
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata | null;
|
|
358
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeSingleFile;
|
|
359
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
360
|
+
IconPicker: react28.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui8.IconPickerProps, "providers"> & {
|
|
361
|
+
providers?: _pixpilot_shadcn_ui8.IconProviderProps[];
|
|
362
362
|
}> & react28.RefAttributes<unknown>>;
|
|
363
|
-
FileUpload: react28.ForwardRefExoticComponent<(Omit<Partial<
|
|
363
|
+
FileUpload: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
364
364
|
multiple: true;
|
|
365
|
-
value?:
|
|
366
|
-
onChange?:
|
|
367
|
-
} &
|
|
365
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata[];
|
|
366
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeMultipleFiles;
|
|
367
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
368
368
|
multiple?: false;
|
|
369
|
-
value?:
|
|
370
|
-
onChange?:
|
|
371
|
-
} &
|
|
369
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata | null;
|
|
370
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeSingleFile;
|
|
371
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
372
372
|
RichTextEditor: react28.FC;
|
|
373
|
-
ColorPicker: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
373
|
+
ColorPicker: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.ColorPickerProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
374
374
|
Combobox: react28.FC;
|
|
375
375
|
ColorSelect: react28.FC;
|
|
376
|
-
Slider: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
377
|
-
SliderInput: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
378
|
-
SliderSelect: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
379
|
-
TagsInput: typeof
|
|
380
|
-
TagsInputInLine: react28.ForwardRefExoticComponent<Partial<
|
|
376
|
+
Slider: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
377
|
+
SliderInput: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderInputProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
378
|
+
SliderSelect: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderSelectProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
379
|
+
TagsInput: typeof _pixpilot_shadcn_ui8.TagsInput;
|
|
380
|
+
TagsInputInLine: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui8.TagsInputProps> & react28.RefAttributes<unknown>>;
|
|
381
381
|
ArrayCards: ComposedArrayProps;
|
|
382
382
|
ArrayCollapse: react28.FC<ArrayComponentProps & {
|
|
383
383
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -391,7 +391,7 @@ declare const SchemaFieldExtended: {
|
|
|
391
391
|
value?: Date;
|
|
392
392
|
onChange?: (date: Date | undefined) => void;
|
|
393
393
|
placeholder?: string;
|
|
394
|
-
} & Omit<
|
|
394
|
+
} & Omit<_pixpilot_shadcn_ui8.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
|
|
395
395
|
FormGrid: typeof FormGrid;
|
|
396
396
|
FormItem: react28.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
397
397
|
children?: react28.ReactNode | undefined;
|
|
@@ -426,37 +426,37 @@ declare const SchemaFieldExtended: {
|
|
|
426
426
|
};
|
|
427
427
|
Object: {
|
|
428
428
|
<Decorator_3 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_3 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
429
|
-
AvatarUpload: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
430
|
-
FileUploadInline: react28.ForwardRefExoticComponent<(Omit<Partial<
|
|
429
|
+
AvatarUpload: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.AvatarUploadProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
430
|
+
FileUploadInline: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
431
431
|
multiple: true;
|
|
432
|
-
value?:
|
|
433
|
-
onChange?:
|
|
434
|
-
} &
|
|
432
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata[];
|
|
433
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeMultipleFiles;
|
|
434
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
435
435
|
multiple?: false;
|
|
436
|
-
value?:
|
|
437
|
-
onChange?:
|
|
438
|
-
} &
|
|
439
|
-
IconPicker: react28.ForwardRefExoticComponent<Partial<Omit<
|
|
440
|
-
providers?:
|
|
436
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata | null;
|
|
437
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeSingleFile;
|
|
438
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
439
|
+
IconPicker: react28.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui8.IconPickerProps, "providers"> & {
|
|
440
|
+
providers?: _pixpilot_shadcn_ui8.IconProviderProps[];
|
|
441
441
|
}> & react28.RefAttributes<unknown>>;
|
|
442
|
-
FileUpload: react28.ForwardRefExoticComponent<(Omit<Partial<
|
|
442
|
+
FileUpload: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
443
443
|
multiple: true;
|
|
444
|
-
value?:
|
|
445
|
-
onChange?:
|
|
446
|
-
} &
|
|
444
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata[];
|
|
445
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeMultipleFiles;
|
|
446
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
447
447
|
multiple?: false;
|
|
448
|
-
value?:
|
|
449
|
-
onChange?:
|
|
450
|
-
} &
|
|
448
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata | null;
|
|
449
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeSingleFile;
|
|
450
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
451
451
|
RichTextEditor: react28.FC;
|
|
452
|
-
ColorPicker: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
452
|
+
ColorPicker: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.ColorPickerProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
453
453
|
Combobox: react28.FC;
|
|
454
454
|
ColorSelect: react28.FC;
|
|
455
|
-
Slider: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
456
|
-
SliderInput: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
457
|
-
SliderSelect: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
458
|
-
TagsInput: typeof
|
|
459
|
-
TagsInputInLine: react28.ForwardRefExoticComponent<Partial<
|
|
455
|
+
Slider: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
456
|
+
SliderInput: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderInputProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
457
|
+
SliderSelect: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderSelectProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
458
|
+
TagsInput: typeof _pixpilot_shadcn_ui8.TagsInput;
|
|
459
|
+
TagsInputInLine: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui8.TagsInputProps> & react28.RefAttributes<unknown>>;
|
|
460
460
|
ArrayCards: ComposedArrayProps;
|
|
461
461
|
ArrayCollapse: react28.FC<ArrayComponentProps & {
|
|
462
462
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -470,7 +470,7 @@ declare const SchemaFieldExtended: {
|
|
|
470
470
|
value?: Date;
|
|
471
471
|
onChange?: (date: Date | undefined) => void;
|
|
472
472
|
placeholder?: string;
|
|
473
|
-
} & Omit<
|
|
473
|
+
} & Omit<_pixpilot_shadcn_ui8.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
|
|
474
474
|
FormGrid: typeof FormGrid;
|
|
475
475
|
FormItem: react28.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
476
476
|
children?: react28.ReactNode | undefined;
|
|
@@ -505,37 +505,37 @@ declare const SchemaFieldExtended: {
|
|
|
505
505
|
};
|
|
506
506
|
Array: {
|
|
507
507
|
<Decorator_4 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_4 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
508
|
-
AvatarUpload: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
509
|
-
FileUploadInline: react28.ForwardRefExoticComponent<(Omit<Partial<
|
|
508
|
+
AvatarUpload: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.AvatarUploadProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
509
|
+
FileUploadInline: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
510
510
|
multiple: true;
|
|
511
|
-
value?:
|
|
512
|
-
onChange?:
|
|
513
|
-
} &
|
|
511
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata[];
|
|
512
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeMultipleFiles;
|
|
513
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
514
514
|
multiple?: false;
|
|
515
|
-
value?:
|
|
516
|
-
onChange?:
|
|
517
|
-
} &
|
|
518
|
-
IconPicker: react28.ForwardRefExoticComponent<Partial<Omit<
|
|
519
|
-
providers?:
|
|
515
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata | null;
|
|
516
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeSingleFile;
|
|
517
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
518
|
+
IconPicker: react28.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui8.IconPickerProps, "providers"> & {
|
|
519
|
+
providers?: _pixpilot_shadcn_ui8.IconProviderProps[];
|
|
520
520
|
}> & react28.RefAttributes<unknown>>;
|
|
521
|
-
FileUpload: react28.ForwardRefExoticComponent<(Omit<Partial<
|
|
521
|
+
FileUpload: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
522
522
|
multiple: true;
|
|
523
|
-
value?:
|
|
524
|
-
onChange?:
|
|
525
|
-
} &
|
|
523
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata[];
|
|
524
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeMultipleFiles;
|
|
525
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
526
526
|
multiple?: false;
|
|
527
|
-
value?:
|
|
528
|
-
onChange?:
|
|
529
|
-
} &
|
|
527
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata | null;
|
|
528
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeSingleFile;
|
|
529
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
530
530
|
RichTextEditor: react28.FC;
|
|
531
|
-
ColorPicker: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
531
|
+
ColorPicker: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.ColorPickerProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
532
532
|
Combobox: react28.FC;
|
|
533
533
|
ColorSelect: react28.FC;
|
|
534
|
-
Slider: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
535
|
-
SliderInput: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
536
|
-
SliderSelect: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
537
|
-
TagsInput: typeof
|
|
538
|
-
TagsInputInLine: react28.ForwardRefExoticComponent<Partial<
|
|
534
|
+
Slider: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
535
|
+
SliderInput: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderInputProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
536
|
+
SliderSelect: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderSelectProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
537
|
+
TagsInput: typeof _pixpilot_shadcn_ui8.TagsInput;
|
|
538
|
+
TagsInputInLine: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui8.TagsInputProps> & react28.RefAttributes<unknown>>;
|
|
539
539
|
ArrayCards: ComposedArrayProps;
|
|
540
540
|
ArrayCollapse: react28.FC<ArrayComponentProps & {
|
|
541
541
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -549,7 +549,7 @@ declare const SchemaFieldExtended: {
|
|
|
549
549
|
value?: Date;
|
|
550
550
|
onChange?: (date: Date | undefined) => void;
|
|
551
551
|
placeholder?: string;
|
|
552
|
-
} & Omit<
|
|
552
|
+
} & Omit<_pixpilot_shadcn_ui8.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
|
|
553
553
|
FormGrid: typeof FormGrid;
|
|
554
554
|
FormItem: react28.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
555
555
|
children?: react28.ReactNode | undefined;
|
|
@@ -584,37 +584,37 @@ declare const SchemaFieldExtended: {
|
|
|
584
584
|
};
|
|
585
585
|
Boolean: {
|
|
586
586
|
<Decorator_5 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_5 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
587
|
-
AvatarUpload: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
588
|
-
FileUploadInline: react28.ForwardRefExoticComponent<(Omit<Partial<
|
|
587
|
+
AvatarUpload: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.AvatarUploadProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
588
|
+
FileUploadInline: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
589
589
|
multiple: true;
|
|
590
|
-
value?:
|
|
591
|
-
onChange?:
|
|
592
|
-
} &
|
|
590
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata[];
|
|
591
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeMultipleFiles;
|
|
592
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
593
593
|
multiple?: false;
|
|
594
|
-
value?:
|
|
595
|
-
onChange?:
|
|
596
|
-
} &
|
|
597
|
-
IconPicker: react28.ForwardRefExoticComponent<Partial<Omit<
|
|
598
|
-
providers?:
|
|
594
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata | null;
|
|
595
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeSingleFile;
|
|
596
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
597
|
+
IconPicker: react28.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui8.IconPickerProps, "providers"> & {
|
|
598
|
+
providers?: _pixpilot_shadcn_ui8.IconProviderProps[];
|
|
599
599
|
}> & react28.RefAttributes<unknown>>;
|
|
600
|
-
FileUpload: react28.ForwardRefExoticComponent<(Omit<Partial<
|
|
600
|
+
FileUpload: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
601
601
|
multiple: true;
|
|
602
|
-
value?:
|
|
603
|
-
onChange?:
|
|
604
|
-
} &
|
|
602
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata[];
|
|
603
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeMultipleFiles;
|
|
604
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
605
605
|
multiple?: false;
|
|
606
|
-
value?:
|
|
607
|
-
onChange?:
|
|
608
|
-
} &
|
|
606
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata | null;
|
|
607
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeSingleFile;
|
|
608
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
609
609
|
RichTextEditor: react28.FC;
|
|
610
|
-
ColorPicker: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
610
|
+
ColorPicker: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.ColorPickerProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
611
611
|
Combobox: react28.FC;
|
|
612
612
|
ColorSelect: react28.FC;
|
|
613
|
-
Slider: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
614
|
-
SliderInput: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
615
|
-
SliderSelect: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
616
|
-
TagsInput: typeof
|
|
617
|
-
TagsInputInLine: react28.ForwardRefExoticComponent<Partial<
|
|
613
|
+
Slider: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
614
|
+
SliderInput: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderInputProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
615
|
+
SliderSelect: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderSelectProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
616
|
+
TagsInput: typeof _pixpilot_shadcn_ui8.TagsInput;
|
|
617
|
+
TagsInputInLine: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui8.TagsInputProps> & react28.RefAttributes<unknown>>;
|
|
618
618
|
ArrayCards: ComposedArrayProps;
|
|
619
619
|
ArrayCollapse: react28.FC<ArrayComponentProps & {
|
|
620
620
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -628,7 +628,7 @@ declare const SchemaFieldExtended: {
|
|
|
628
628
|
value?: Date;
|
|
629
629
|
onChange?: (date: Date | undefined) => void;
|
|
630
630
|
placeholder?: string;
|
|
631
|
-
} & Omit<
|
|
631
|
+
} & Omit<_pixpilot_shadcn_ui8.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
|
|
632
632
|
FormGrid: typeof FormGrid;
|
|
633
633
|
FormItem: react28.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
634
634
|
children?: react28.ReactNode | undefined;
|
|
@@ -663,37 +663,37 @@ declare const SchemaFieldExtended: {
|
|
|
663
663
|
};
|
|
664
664
|
Date: {
|
|
665
665
|
<Decorator_6 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_6 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
666
|
-
AvatarUpload: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
667
|
-
FileUploadInline: react28.ForwardRefExoticComponent<(Omit<Partial<
|
|
666
|
+
AvatarUpload: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.AvatarUploadProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
667
|
+
FileUploadInline: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
668
668
|
multiple: true;
|
|
669
|
-
value?:
|
|
670
|
-
onChange?:
|
|
671
|
-
} &
|
|
669
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata[];
|
|
670
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeMultipleFiles;
|
|
671
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
672
672
|
multiple?: false;
|
|
673
|
-
value?:
|
|
674
|
-
onChange?:
|
|
675
|
-
} &
|
|
676
|
-
IconPicker: react28.ForwardRefExoticComponent<Partial<Omit<
|
|
677
|
-
providers?:
|
|
673
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata | null;
|
|
674
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeSingleFile;
|
|
675
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
676
|
+
IconPicker: react28.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui8.IconPickerProps, "providers"> & {
|
|
677
|
+
providers?: _pixpilot_shadcn_ui8.IconProviderProps[];
|
|
678
678
|
}> & react28.RefAttributes<unknown>>;
|
|
679
|
-
FileUpload: react28.ForwardRefExoticComponent<(Omit<Partial<
|
|
679
|
+
FileUpload: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
680
680
|
multiple: true;
|
|
681
|
-
value?:
|
|
682
|
-
onChange?:
|
|
683
|
-
} &
|
|
681
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata[];
|
|
682
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeMultipleFiles;
|
|
683
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
684
684
|
multiple?: false;
|
|
685
|
-
value?:
|
|
686
|
-
onChange?:
|
|
687
|
-
} &
|
|
685
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata | null;
|
|
686
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeSingleFile;
|
|
687
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
688
688
|
RichTextEditor: react28.FC;
|
|
689
|
-
ColorPicker: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
689
|
+
ColorPicker: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.ColorPickerProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
690
690
|
Combobox: react28.FC;
|
|
691
691
|
ColorSelect: react28.FC;
|
|
692
|
-
Slider: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
693
|
-
SliderInput: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
694
|
-
SliderSelect: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
695
|
-
TagsInput: typeof
|
|
696
|
-
TagsInputInLine: react28.ForwardRefExoticComponent<Partial<
|
|
692
|
+
Slider: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
693
|
+
SliderInput: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderInputProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
694
|
+
SliderSelect: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderSelectProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
695
|
+
TagsInput: typeof _pixpilot_shadcn_ui8.TagsInput;
|
|
696
|
+
TagsInputInLine: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui8.TagsInputProps> & react28.RefAttributes<unknown>>;
|
|
697
697
|
ArrayCards: ComposedArrayProps;
|
|
698
698
|
ArrayCollapse: react28.FC<ArrayComponentProps & {
|
|
699
699
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -707,7 +707,7 @@ declare const SchemaFieldExtended: {
|
|
|
707
707
|
value?: Date;
|
|
708
708
|
onChange?: (date: Date | undefined) => void;
|
|
709
709
|
placeholder?: string;
|
|
710
|
-
} & Omit<
|
|
710
|
+
} & Omit<_pixpilot_shadcn_ui8.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
|
|
711
711
|
FormGrid: typeof FormGrid;
|
|
712
712
|
FormItem: react28.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
713
713
|
children?: react28.ReactNode | undefined;
|
|
@@ -742,37 +742,37 @@ declare const SchemaFieldExtended: {
|
|
|
742
742
|
};
|
|
743
743
|
DateTime: {
|
|
744
744
|
<Decorator_7 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_7 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
745
|
-
AvatarUpload: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
746
|
-
FileUploadInline: react28.ForwardRefExoticComponent<(Omit<Partial<
|
|
745
|
+
AvatarUpload: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.AvatarUploadProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
746
|
+
FileUploadInline: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
747
747
|
multiple: true;
|
|
748
|
-
value?:
|
|
749
|
-
onChange?:
|
|
750
|
-
} &
|
|
748
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata[];
|
|
749
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeMultipleFiles;
|
|
750
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
751
751
|
multiple?: false;
|
|
752
|
-
value?:
|
|
753
|
-
onChange?:
|
|
754
|
-
} &
|
|
755
|
-
IconPicker: react28.ForwardRefExoticComponent<Partial<Omit<
|
|
756
|
-
providers?:
|
|
752
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata | null;
|
|
753
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeSingleFile;
|
|
754
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
755
|
+
IconPicker: react28.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui8.IconPickerProps, "providers"> & {
|
|
756
|
+
providers?: _pixpilot_shadcn_ui8.IconProviderProps[];
|
|
757
757
|
}> & react28.RefAttributes<unknown>>;
|
|
758
|
-
FileUpload: react28.ForwardRefExoticComponent<(Omit<Partial<
|
|
758
|
+
FileUpload: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
759
759
|
multiple: true;
|
|
760
|
-
value?:
|
|
761
|
-
onChange?:
|
|
762
|
-
} &
|
|
760
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata[];
|
|
761
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeMultipleFiles;
|
|
762
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
763
763
|
multiple?: false;
|
|
764
|
-
value?:
|
|
765
|
-
onChange?:
|
|
766
|
-
} &
|
|
764
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata | null;
|
|
765
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeSingleFile;
|
|
766
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
767
767
|
RichTextEditor: react28.FC;
|
|
768
|
-
ColorPicker: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
768
|
+
ColorPicker: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.ColorPickerProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
769
769
|
Combobox: react28.FC;
|
|
770
770
|
ColorSelect: react28.FC;
|
|
771
|
-
Slider: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
772
|
-
SliderInput: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
773
|
-
SliderSelect: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
774
|
-
TagsInput: typeof
|
|
775
|
-
TagsInputInLine: react28.ForwardRefExoticComponent<Partial<
|
|
771
|
+
Slider: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
772
|
+
SliderInput: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderInputProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
773
|
+
SliderSelect: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderSelectProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
774
|
+
TagsInput: typeof _pixpilot_shadcn_ui8.TagsInput;
|
|
775
|
+
TagsInputInLine: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui8.TagsInputProps> & react28.RefAttributes<unknown>>;
|
|
776
776
|
ArrayCards: ComposedArrayProps;
|
|
777
777
|
ArrayCollapse: react28.FC<ArrayComponentProps & {
|
|
778
778
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -786,7 +786,7 @@ declare const SchemaFieldExtended: {
|
|
|
786
786
|
value?: Date;
|
|
787
787
|
onChange?: (date: Date | undefined) => void;
|
|
788
788
|
placeholder?: string;
|
|
789
|
-
} & Omit<
|
|
789
|
+
} & Omit<_pixpilot_shadcn_ui8.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
|
|
790
790
|
FormGrid: typeof FormGrid;
|
|
791
791
|
FormItem: react28.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
792
792
|
children?: react28.ReactNode | undefined;
|
|
@@ -821,37 +821,37 @@ declare const SchemaFieldExtended: {
|
|
|
821
821
|
};
|
|
822
822
|
Void: {
|
|
823
823
|
<Decorator_8 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_8 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
824
|
-
AvatarUpload: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
825
|
-
FileUploadInline: react28.ForwardRefExoticComponent<(Omit<Partial<
|
|
824
|
+
AvatarUpload: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.AvatarUploadProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
825
|
+
FileUploadInline: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
826
826
|
multiple: true;
|
|
827
|
-
value?:
|
|
828
|
-
onChange?:
|
|
829
|
-
} &
|
|
827
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata[];
|
|
828
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeMultipleFiles;
|
|
829
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
830
830
|
multiple?: false;
|
|
831
|
-
value?:
|
|
832
|
-
onChange?:
|
|
833
|
-
} &
|
|
834
|
-
IconPicker: react28.ForwardRefExoticComponent<Partial<Omit<
|
|
835
|
-
providers?:
|
|
831
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata | null;
|
|
832
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeSingleFile;
|
|
833
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
834
|
+
IconPicker: react28.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui8.IconPickerProps, "providers"> & {
|
|
835
|
+
providers?: _pixpilot_shadcn_ui8.IconProviderProps[];
|
|
836
836
|
}> & react28.RefAttributes<unknown>>;
|
|
837
|
-
FileUpload: react28.ForwardRefExoticComponent<(Omit<Partial<
|
|
837
|
+
FileUpload: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
838
838
|
multiple: true;
|
|
839
|
-
value?:
|
|
840
|
-
onChange?:
|
|
841
|
-
} &
|
|
839
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata[];
|
|
840
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeMultipleFiles;
|
|
841
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
842
842
|
multiple?: false;
|
|
843
|
-
value?:
|
|
844
|
-
onChange?:
|
|
845
|
-
} &
|
|
843
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata | null;
|
|
844
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeSingleFile;
|
|
845
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
846
846
|
RichTextEditor: react28.FC;
|
|
847
|
-
ColorPicker: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
847
|
+
ColorPicker: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.ColorPickerProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
848
848
|
Combobox: react28.FC;
|
|
849
849
|
ColorSelect: react28.FC;
|
|
850
|
-
Slider: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
851
|
-
SliderInput: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
852
|
-
SliderSelect: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
853
|
-
TagsInput: typeof
|
|
854
|
-
TagsInputInLine: react28.ForwardRefExoticComponent<Partial<
|
|
850
|
+
Slider: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
851
|
+
SliderInput: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderInputProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
852
|
+
SliderSelect: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderSelectProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
853
|
+
TagsInput: typeof _pixpilot_shadcn_ui8.TagsInput;
|
|
854
|
+
TagsInputInLine: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui8.TagsInputProps> & react28.RefAttributes<unknown>>;
|
|
855
855
|
ArrayCards: ComposedArrayProps;
|
|
856
856
|
ArrayCollapse: react28.FC<ArrayComponentProps & {
|
|
857
857
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -865,7 +865,7 @@ declare const SchemaFieldExtended: {
|
|
|
865
865
|
value?: Date;
|
|
866
866
|
onChange?: (date: Date | undefined) => void;
|
|
867
867
|
placeholder?: string;
|
|
868
|
-
} & Omit<
|
|
868
|
+
} & Omit<_pixpilot_shadcn_ui8.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
|
|
869
869
|
FormGrid: typeof FormGrid;
|
|
870
870
|
FormItem: react28.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
871
871
|
children?: react28.ReactNode | undefined;
|
|
@@ -900,37 +900,37 @@ declare const SchemaFieldExtended: {
|
|
|
900
900
|
};
|
|
901
901
|
Number: {
|
|
902
902
|
<Decorator_9 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_9 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
903
|
-
AvatarUpload: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
904
|
-
FileUploadInline: react28.ForwardRefExoticComponent<(Omit<Partial<
|
|
903
|
+
AvatarUpload: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.AvatarUploadProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
904
|
+
FileUploadInline: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
905
905
|
multiple: true;
|
|
906
|
-
value?:
|
|
907
|
-
onChange?:
|
|
908
|
-
} &
|
|
906
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata[];
|
|
907
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeMultipleFiles;
|
|
908
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
909
909
|
multiple?: false;
|
|
910
|
-
value?:
|
|
911
|
-
onChange?:
|
|
912
|
-
} &
|
|
913
|
-
IconPicker: react28.ForwardRefExoticComponent<Partial<Omit<
|
|
914
|
-
providers?:
|
|
910
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata | null;
|
|
911
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeSingleFile;
|
|
912
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
913
|
+
IconPicker: react28.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui8.IconPickerProps, "providers"> & {
|
|
914
|
+
providers?: _pixpilot_shadcn_ui8.IconProviderProps[];
|
|
915
915
|
}> & react28.RefAttributes<unknown>>;
|
|
916
|
-
FileUpload: react28.ForwardRefExoticComponent<(Omit<Partial<
|
|
916
|
+
FileUpload: react28.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
917
917
|
multiple: true;
|
|
918
|
-
value?:
|
|
919
|
-
onChange?:
|
|
920
|
-
} &
|
|
918
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata[];
|
|
919
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeMultipleFiles;
|
|
920
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui8.FileUploadInlineBaseProps & {
|
|
921
921
|
multiple?: false;
|
|
922
|
-
value?:
|
|
923
|
-
onChange?:
|
|
924
|
-
} &
|
|
922
|
+
value?: _pixpilot_shadcn_ui8.FileMetadata | null;
|
|
923
|
+
onChange?: _pixpilot_shadcn_ui8.OnChangeSingleFile;
|
|
924
|
+
} & _pixpilot_shadcn_ui8.FileUploadBaseProps>, "ref">) & react28.RefAttributes<unknown>>;
|
|
925
925
|
RichTextEditor: react28.FC;
|
|
926
|
-
ColorPicker: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
926
|
+
ColorPicker: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.ColorPickerProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
927
927
|
Combobox: react28.FC;
|
|
928
928
|
ColorSelect: react28.FC;
|
|
929
|
-
Slider: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
930
|
-
SliderInput: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
931
|
-
SliderSelect: react28.ForwardRefExoticComponent<Omit<Partial<
|
|
932
|
-
TagsInput: typeof
|
|
933
|
-
TagsInputInLine: react28.ForwardRefExoticComponent<Partial<
|
|
929
|
+
Slider: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
930
|
+
SliderInput: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderInputProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
931
|
+
SliderSelect: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui8.SliderSelectProps>, "ref"> & react28.RefAttributes<unknown>>;
|
|
932
|
+
TagsInput: typeof _pixpilot_shadcn_ui8.TagsInput;
|
|
933
|
+
TagsInputInLine: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui8.TagsInputProps> & react28.RefAttributes<unknown>>;
|
|
934
934
|
ArrayCards: ComposedArrayProps;
|
|
935
935
|
ArrayCollapse: react28.FC<ArrayComponentProps & {
|
|
936
936
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -944,7 +944,7 @@ declare const SchemaFieldExtended: {
|
|
|
944
944
|
value?: Date;
|
|
945
945
|
onChange?: (date: Date | undefined) => void;
|
|
946
946
|
placeholder?: string;
|
|
947
|
-
} & Omit<
|
|
947
|
+
} & Omit<_pixpilot_shadcn_ui8.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
|
|
948
948
|
FormGrid: typeof FormGrid;
|
|
949
949
|
FormItem: react28.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
950
950
|
children?: react28.ReactNode | undefined;
|