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