@pixpilot/formily-shadcn 0.11.0 → 0.11.2
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/date-picker.d.cts +3 -3
- 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/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 +2 -2
- package/dist/components/input.d.ts +2 -2
- package/dist/components/json-schema-form-renderer/json-schema-form-renderer.cjs +3 -3
- package/dist/components/json-schema-form-renderer/json-schema-form-renderer.js +1 -1
- package/dist/components/number-input.d.cts +2 -2
- package/dist/components/radio.d.cts +2 -2
- package/dist/components/row.d.cts +2 -2
- package/dist/components/schema-field/schema-field-basics.d.cts +211 -211
- package/dist/components/schema-field/schema-field-basics.d.ts +12 -12
- package/dist/components/schema-field/schema-field-extended.d.cts +468 -468
- package/dist/components/schema-field/schema-field-extended.d.ts +221 -221
- package/dist/components/schema-field/schema-field.d.cts +259 -259
- package/dist/components/schema-field/schema-field.d.ts +34 -34
- 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.ts +2 -2
- package/dist/components/textarea.d.ts +2 -2
- package/dist/utils/transform-schema.cjs +3 -2
- package/dist/utils/transform-schema.js +3 -2
- package/package.json +4 -4
|
@@ -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_ui0 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";
|
|
@@ -17,33 +17,33 @@ import * as _radix_ui_react_separator0 from "@radix-ui/react-separator";
|
|
|
17
17
|
//#region src/components/schema-field/schema-field-extended.d.ts
|
|
18
18
|
declare const extendedComponentRegistry: {
|
|
19
19
|
FileUploadInline: {
|
|
20
|
-
component: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
20
|
+
component: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
21
21
|
multiple: true;
|
|
22
|
-
value?:
|
|
23
|
-
onChange?:
|
|
24
|
-
} &
|
|
22
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
23
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
24
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
25
25
|
multiple?: false;
|
|
26
|
-
value?:
|
|
27
|
-
onChange?:
|
|
28
|
-
} &
|
|
26
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
27
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
28
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
29
29
|
decorator: string;
|
|
30
30
|
};
|
|
31
31
|
IconPicker: {
|
|
32
|
-
component: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
33
|
-
providers?:
|
|
32
|
+
component: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
|
|
33
|
+
providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
|
|
34
34
|
}> & react30.RefAttributes<unknown>>;
|
|
35
35
|
decorator: string;
|
|
36
36
|
};
|
|
37
37
|
FileUpload: {
|
|
38
|
-
component: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
38
|
+
component: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
39
39
|
multiple: true;
|
|
40
|
-
value?:
|
|
41
|
-
onChange?:
|
|
42
|
-
} &
|
|
40
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
41
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
42
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
43
43
|
multiple?: false;
|
|
44
|
-
value?:
|
|
45
|
-
onChange?:
|
|
46
|
-
} &
|
|
44
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
45
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
46
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
47
47
|
decorator: string;
|
|
48
48
|
};
|
|
49
49
|
RichTextEditor: {
|
|
@@ -55,15 +55,15 @@ declare const extendedComponentRegistry: {
|
|
|
55
55
|
decorator: string;
|
|
56
56
|
};
|
|
57
57
|
TagsInput: {
|
|
58
|
-
component: typeof
|
|
58
|
+
component: typeof _pixpilot_shadcn_ui0.TagsInput;
|
|
59
59
|
decorator: string;
|
|
60
60
|
};
|
|
61
61
|
TagsInputInLine: {
|
|
62
|
-
component: react30.ForwardRefExoticComponent<Partial<
|
|
62
|
+
component: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
63
63
|
decorator: string;
|
|
64
64
|
};
|
|
65
65
|
Slider: {
|
|
66
|
-
component: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
66
|
+
component: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
67
67
|
decorator: string;
|
|
68
68
|
};
|
|
69
69
|
FormItem: {
|
|
@@ -110,7 +110,7 @@ declare const extendedComponentRegistry: {
|
|
|
110
110
|
value?: Date;
|
|
111
111
|
onChange?: (date: Date | undefined) => void;
|
|
112
112
|
placeholder?: string;
|
|
113
|
-
} & Omit<
|
|
113
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
114
114
|
decorator: string;
|
|
115
115
|
};
|
|
116
116
|
Row: {
|
|
@@ -154,32 +154,32 @@ declare const extendedComponentRegistry: {
|
|
|
154
154
|
* Use this to render forms from JSON Schema
|
|
155
155
|
*/
|
|
156
156
|
declare const extendedComponents: {
|
|
157
|
-
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
157
|
+
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
158
158
|
multiple: true;
|
|
159
|
-
value?:
|
|
160
|
-
onChange?:
|
|
161
|
-
} &
|
|
159
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
160
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
161
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
162
162
|
multiple?: false;
|
|
163
|
-
value?:
|
|
164
|
-
onChange?:
|
|
165
|
-
} &
|
|
166
|
-
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
167
|
-
providers?:
|
|
163
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
164
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
165
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
166
|
+
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
|
|
167
|
+
providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
|
|
168
168
|
}> & react30.RefAttributes<unknown>>;
|
|
169
|
-
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
169
|
+
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
170
170
|
multiple: true;
|
|
171
|
-
value?:
|
|
172
|
-
onChange?:
|
|
173
|
-
} &
|
|
171
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
172
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
173
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
174
174
|
multiple?: false;
|
|
175
|
-
value?:
|
|
176
|
-
onChange?:
|
|
177
|
-
} &
|
|
175
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
176
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
177
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
178
178
|
RichTextEditor: react30.FC;
|
|
179
179
|
Combobox: react30.FC;
|
|
180
|
-
TagsInput: typeof
|
|
181
|
-
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<
|
|
182
|
-
Slider: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
180
|
+
TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
|
|
181
|
+
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
182
|
+
Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
183
183
|
FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
184
184
|
children?: react30.ReactNode | undefined;
|
|
185
185
|
}>, "ref"> & react30.RefAttributes<unknown>>;
|
|
@@ -198,7 +198,7 @@ declare const extendedComponents: {
|
|
|
198
198
|
value?: Date;
|
|
199
199
|
onChange?: (date: Date | undefined) => void;
|
|
200
200
|
placeholder?: string;
|
|
201
|
-
} & Omit<
|
|
201
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
202
202
|
Row: typeof Row;
|
|
203
203
|
Column: typeof Column;
|
|
204
204
|
FormGrid: typeof FormGrid;
|
|
@@ -217,32 +217,32 @@ declare const SchemaFieldExtended: {
|
|
|
217
217
|
displayName: string;
|
|
218
218
|
Markup: {
|
|
219
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
|
-
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
220
|
+
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
221
221
|
multiple: true;
|
|
222
|
-
value?:
|
|
223
|
-
onChange?:
|
|
224
|
-
} &
|
|
222
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
223
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
224
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
225
225
|
multiple?: false;
|
|
226
|
-
value?:
|
|
227
|
-
onChange?:
|
|
228
|
-
} &
|
|
229
|
-
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
230
|
-
providers?:
|
|
226
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
227
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
228
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
229
|
+
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
|
|
230
|
+
providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
|
|
231
231
|
}> & react30.RefAttributes<unknown>>;
|
|
232
|
-
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
232
|
+
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
233
233
|
multiple: true;
|
|
234
|
-
value?:
|
|
235
|
-
onChange?:
|
|
236
|
-
} &
|
|
234
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
235
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
236
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
237
237
|
multiple?: false;
|
|
238
|
-
value?:
|
|
239
|
-
onChange?:
|
|
240
|
-
} &
|
|
238
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
239
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
240
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
241
241
|
RichTextEditor: react30.FC;
|
|
242
242
|
Combobox: react30.FC;
|
|
243
|
-
TagsInput: typeof
|
|
244
|
-
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<
|
|
245
|
-
Slider: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
243
|
+
TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
|
|
244
|
+
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
245
|
+
Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
246
246
|
FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
247
247
|
children?: react30.ReactNode | undefined;
|
|
248
248
|
}>, "ref"> & react30.RefAttributes<unknown>>;
|
|
@@ -261,7 +261,7 @@ declare const SchemaFieldExtended: {
|
|
|
261
261
|
value?: Date;
|
|
262
262
|
onChange?: (date: Date | undefined) => void;
|
|
263
263
|
placeholder?: string;
|
|
264
|
-
} & Omit<
|
|
264
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
265
265
|
Row: typeof Row;
|
|
266
266
|
Column: typeof Column;
|
|
267
267
|
FormGrid: typeof FormGrid;
|
|
@@ -279,32 +279,32 @@ declare const SchemaFieldExtended: {
|
|
|
279
279
|
};
|
|
280
280
|
String: {
|
|
281
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
|
-
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
282
|
+
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
283
283
|
multiple: true;
|
|
284
|
-
value?:
|
|
285
|
-
onChange?:
|
|
286
|
-
} &
|
|
284
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
285
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
286
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
287
287
|
multiple?: false;
|
|
288
|
-
value?:
|
|
289
|
-
onChange?:
|
|
290
|
-
} &
|
|
291
|
-
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
292
|
-
providers?:
|
|
288
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
289
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
290
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
291
|
+
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
|
|
292
|
+
providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
|
|
293
293
|
}> & react30.RefAttributes<unknown>>;
|
|
294
|
-
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
294
|
+
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
295
295
|
multiple: true;
|
|
296
|
-
value?:
|
|
297
|
-
onChange?:
|
|
298
|
-
} &
|
|
296
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
297
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
298
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
299
299
|
multiple?: false;
|
|
300
|
-
value?:
|
|
301
|
-
onChange?:
|
|
302
|
-
} &
|
|
300
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
301
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
302
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
303
303
|
RichTextEditor: react30.FC;
|
|
304
304
|
Combobox: react30.FC;
|
|
305
|
-
TagsInput: typeof
|
|
306
|
-
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<
|
|
307
|
-
Slider: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
305
|
+
TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
|
|
306
|
+
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
307
|
+
Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
308
308
|
FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
309
309
|
children?: react30.ReactNode | undefined;
|
|
310
310
|
}>, "ref"> & react30.RefAttributes<unknown>>;
|
|
@@ -323,7 +323,7 @@ declare const SchemaFieldExtended: {
|
|
|
323
323
|
value?: Date;
|
|
324
324
|
onChange?: (date: Date | undefined) => void;
|
|
325
325
|
placeholder?: string;
|
|
326
|
-
} & Omit<
|
|
326
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
327
327
|
Row: typeof Row;
|
|
328
328
|
Column: typeof Column;
|
|
329
329
|
FormGrid: typeof FormGrid;
|
|
@@ -341,32 +341,32 @@ declare const SchemaFieldExtended: {
|
|
|
341
341
|
};
|
|
342
342
|
Object: {
|
|
343
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
|
-
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
344
|
+
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
345
345
|
multiple: true;
|
|
346
|
-
value?:
|
|
347
|
-
onChange?:
|
|
348
|
-
} &
|
|
346
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
347
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
348
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
349
349
|
multiple?: false;
|
|
350
|
-
value?:
|
|
351
|
-
onChange?:
|
|
352
|
-
} &
|
|
353
|
-
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
354
|
-
providers?:
|
|
350
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
351
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
352
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
353
|
+
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
|
|
354
|
+
providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
|
|
355
355
|
}> & react30.RefAttributes<unknown>>;
|
|
356
|
-
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
356
|
+
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
357
357
|
multiple: true;
|
|
358
|
-
value?:
|
|
359
|
-
onChange?:
|
|
360
|
-
} &
|
|
358
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
359
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
360
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
361
361
|
multiple?: false;
|
|
362
|
-
value?:
|
|
363
|
-
onChange?:
|
|
364
|
-
} &
|
|
362
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
363
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
364
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
365
365
|
RichTextEditor: react30.FC;
|
|
366
366
|
Combobox: react30.FC;
|
|
367
|
-
TagsInput: typeof
|
|
368
|
-
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<
|
|
369
|
-
Slider: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
367
|
+
TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
|
|
368
|
+
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
369
|
+
Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
370
370
|
FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
371
371
|
children?: react30.ReactNode | undefined;
|
|
372
372
|
}>, "ref"> & react30.RefAttributes<unknown>>;
|
|
@@ -385,7 +385,7 @@ declare const SchemaFieldExtended: {
|
|
|
385
385
|
value?: Date;
|
|
386
386
|
onChange?: (date: Date | undefined) => void;
|
|
387
387
|
placeholder?: string;
|
|
388
|
-
} & Omit<
|
|
388
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
389
389
|
Row: typeof Row;
|
|
390
390
|
Column: typeof Column;
|
|
391
391
|
FormGrid: typeof FormGrid;
|
|
@@ -403,32 +403,32 @@ declare const SchemaFieldExtended: {
|
|
|
403
403
|
};
|
|
404
404
|
Array: {
|
|
405
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
|
-
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
406
|
+
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
407
407
|
multiple: true;
|
|
408
|
-
value?:
|
|
409
|
-
onChange?:
|
|
410
|
-
} &
|
|
408
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
409
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
410
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
411
411
|
multiple?: false;
|
|
412
|
-
value?:
|
|
413
|
-
onChange?:
|
|
414
|
-
} &
|
|
415
|
-
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
416
|
-
providers?:
|
|
412
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
413
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
414
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
415
|
+
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
|
|
416
|
+
providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
|
|
417
417
|
}> & react30.RefAttributes<unknown>>;
|
|
418
|
-
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
418
|
+
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
419
419
|
multiple: true;
|
|
420
|
-
value?:
|
|
421
|
-
onChange?:
|
|
422
|
-
} &
|
|
420
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
421
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
422
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
423
423
|
multiple?: false;
|
|
424
|
-
value?:
|
|
425
|
-
onChange?:
|
|
426
|
-
} &
|
|
424
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
425
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
426
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
427
427
|
RichTextEditor: react30.FC;
|
|
428
428
|
Combobox: react30.FC;
|
|
429
|
-
TagsInput: typeof
|
|
430
|
-
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<
|
|
431
|
-
Slider: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
429
|
+
TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
|
|
430
|
+
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
431
|
+
Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
432
432
|
FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
433
433
|
children?: react30.ReactNode | undefined;
|
|
434
434
|
}>, "ref"> & react30.RefAttributes<unknown>>;
|
|
@@ -447,7 +447,7 @@ declare const SchemaFieldExtended: {
|
|
|
447
447
|
value?: Date;
|
|
448
448
|
onChange?: (date: Date | undefined) => void;
|
|
449
449
|
placeholder?: string;
|
|
450
|
-
} & Omit<
|
|
450
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
451
451
|
Row: typeof Row;
|
|
452
452
|
Column: typeof Column;
|
|
453
453
|
FormGrid: typeof FormGrid;
|
|
@@ -465,32 +465,32 @@ declare const SchemaFieldExtended: {
|
|
|
465
465
|
};
|
|
466
466
|
Boolean: {
|
|
467
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
|
-
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
468
|
+
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
469
469
|
multiple: true;
|
|
470
|
-
value?:
|
|
471
|
-
onChange?:
|
|
472
|
-
} &
|
|
470
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
471
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
472
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
473
473
|
multiple?: false;
|
|
474
|
-
value?:
|
|
475
|
-
onChange?:
|
|
476
|
-
} &
|
|
477
|
-
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
478
|
-
providers?:
|
|
474
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
475
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
476
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
477
|
+
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
|
|
478
|
+
providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
|
|
479
479
|
}> & react30.RefAttributes<unknown>>;
|
|
480
|
-
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
480
|
+
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
481
481
|
multiple: true;
|
|
482
|
-
value?:
|
|
483
|
-
onChange?:
|
|
484
|
-
} &
|
|
482
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
483
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
484
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
485
485
|
multiple?: false;
|
|
486
|
-
value?:
|
|
487
|
-
onChange?:
|
|
488
|
-
} &
|
|
486
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
487
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
488
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
489
489
|
RichTextEditor: react30.FC;
|
|
490
490
|
Combobox: react30.FC;
|
|
491
|
-
TagsInput: typeof
|
|
492
|
-
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<
|
|
493
|
-
Slider: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
491
|
+
TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
|
|
492
|
+
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
493
|
+
Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
494
494
|
FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
495
495
|
children?: react30.ReactNode | undefined;
|
|
496
496
|
}>, "ref"> & react30.RefAttributes<unknown>>;
|
|
@@ -509,7 +509,7 @@ declare const SchemaFieldExtended: {
|
|
|
509
509
|
value?: Date;
|
|
510
510
|
onChange?: (date: Date | undefined) => void;
|
|
511
511
|
placeholder?: string;
|
|
512
|
-
} & Omit<
|
|
512
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
513
513
|
Row: typeof Row;
|
|
514
514
|
Column: typeof Column;
|
|
515
515
|
FormGrid: typeof FormGrid;
|
|
@@ -527,32 +527,32 @@ declare const SchemaFieldExtended: {
|
|
|
527
527
|
};
|
|
528
528
|
Date: {
|
|
529
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
|
-
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
530
|
+
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
531
531
|
multiple: true;
|
|
532
|
-
value?:
|
|
533
|
-
onChange?:
|
|
534
|
-
} &
|
|
532
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
533
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
534
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
535
535
|
multiple?: false;
|
|
536
|
-
value?:
|
|
537
|
-
onChange?:
|
|
538
|
-
} &
|
|
539
|
-
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
540
|
-
providers?:
|
|
536
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
537
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
538
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
539
|
+
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
|
|
540
|
+
providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
|
|
541
541
|
}> & react30.RefAttributes<unknown>>;
|
|
542
|
-
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
542
|
+
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
543
543
|
multiple: true;
|
|
544
|
-
value?:
|
|
545
|
-
onChange?:
|
|
546
|
-
} &
|
|
544
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
545
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
546
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
547
547
|
multiple?: false;
|
|
548
|
-
value?:
|
|
549
|
-
onChange?:
|
|
550
|
-
} &
|
|
548
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
549
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
550
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
551
551
|
RichTextEditor: react30.FC;
|
|
552
552
|
Combobox: react30.FC;
|
|
553
|
-
TagsInput: typeof
|
|
554
|
-
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<
|
|
555
|
-
Slider: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
553
|
+
TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
|
|
554
|
+
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
555
|
+
Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
556
556
|
FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
557
557
|
children?: react30.ReactNode | undefined;
|
|
558
558
|
}>, "ref"> & react30.RefAttributes<unknown>>;
|
|
@@ -571,7 +571,7 @@ declare const SchemaFieldExtended: {
|
|
|
571
571
|
value?: Date;
|
|
572
572
|
onChange?: (date: Date | undefined) => void;
|
|
573
573
|
placeholder?: string;
|
|
574
|
-
} & Omit<
|
|
574
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
575
575
|
Row: typeof Row;
|
|
576
576
|
Column: typeof Column;
|
|
577
577
|
FormGrid: typeof FormGrid;
|
|
@@ -589,32 +589,32 @@ declare const SchemaFieldExtended: {
|
|
|
589
589
|
};
|
|
590
590
|
DateTime: {
|
|
591
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
|
-
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
592
|
+
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
593
593
|
multiple: true;
|
|
594
|
-
value?:
|
|
595
|
-
onChange?:
|
|
596
|
-
} &
|
|
594
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
595
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
596
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
597
597
|
multiple?: false;
|
|
598
|
-
value?:
|
|
599
|
-
onChange?:
|
|
600
|
-
} &
|
|
601
|
-
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
602
|
-
providers?:
|
|
598
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
599
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
600
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
601
|
+
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
|
|
602
|
+
providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
|
|
603
603
|
}> & react30.RefAttributes<unknown>>;
|
|
604
|
-
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
604
|
+
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
605
605
|
multiple: true;
|
|
606
|
-
value?:
|
|
607
|
-
onChange?:
|
|
608
|
-
} &
|
|
606
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
607
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
608
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
609
609
|
multiple?: false;
|
|
610
|
-
value?:
|
|
611
|
-
onChange?:
|
|
612
|
-
} &
|
|
610
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
611
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
612
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
613
613
|
RichTextEditor: react30.FC;
|
|
614
614
|
Combobox: react30.FC;
|
|
615
|
-
TagsInput: typeof
|
|
616
|
-
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<
|
|
617
|
-
Slider: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
615
|
+
TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
|
|
616
|
+
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
617
|
+
Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
618
618
|
FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
619
619
|
children?: react30.ReactNode | undefined;
|
|
620
620
|
}>, "ref"> & react30.RefAttributes<unknown>>;
|
|
@@ -633,7 +633,7 @@ declare const SchemaFieldExtended: {
|
|
|
633
633
|
value?: Date;
|
|
634
634
|
onChange?: (date: Date | undefined) => void;
|
|
635
635
|
placeholder?: string;
|
|
636
|
-
} & Omit<
|
|
636
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
637
637
|
Row: typeof Row;
|
|
638
638
|
Column: typeof Column;
|
|
639
639
|
FormGrid: typeof FormGrid;
|
|
@@ -651,32 +651,32 @@ declare const SchemaFieldExtended: {
|
|
|
651
651
|
};
|
|
652
652
|
Void: {
|
|
653
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
|
-
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
654
|
+
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
655
655
|
multiple: true;
|
|
656
|
-
value?:
|
|
657
|
-
onChange?:
|
|
658
|
-
} &
|
|
656
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
657
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
658
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
659
659
|
multiple?: false;
|
|
660
|
-
value?:
|
|
661
|
-
onChange?:
|
|
662
|
-
} &
|
|
663
|
-
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
664
|
-
providers?:
|
|
660
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
661
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
662
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
663
|
+
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
|
|
664
|
+
providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
|
|
665
665
|
}> & react30.RefAttributes<unknown>>;
|
|
666
|
-
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
666
|
+
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
667
667
|
multiple: true;
|
|
668
|
-
value?:
|
|
669
|
-
onChange?:
|
|
670
|
-
} &
|
|
668
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
669
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
670
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
671
671
|
multiple?: false;
|
|
672
|
-
value?:
|
|
673
|
-
onChange?:
|
|
674
|
-
} &
|
|
672
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
673
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
674
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
675
675
|
RichTextEditor: react30.FC;
|
|
676
676
|
Combobox: react30.FC;
|
|
677
|
-
TagsInput: typeof
|
|
678
|
-
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<
|
|
679
|
-
Slider: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
677
|
+
TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
|
|
678
|
+
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
679
|
+
Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
680
680
|
FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
681
681
|
children?: react30.ReactNode | undefined;
|
|
682
682
|
}>, "ref"> & react30.RefAttributes<unknown>>;
|
|
@@ -695,7 +695,7 @@ declare const SchemaFieldExtended: {
|
|
|
695
695
|
value?: Date;
|
|
696
696
|
onChange?: (date: Date | undefined) => void;
|
|
697
697
|
placeholder?: string;
|
|
698
|
-
} & Omit<
|
|
698
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
699
699
|
Row: typeof Row;
|
|
700
700
|
Column: typeof Column;
|
|
701
701
|
FormGrid: typeof FormGrid;
|
|
@@ -713,32 +713,32 @@ declare const SchemaFieldExtended: {
|
|
|
713
713
|
};
|
|
714
714
|
Number: {
|
|
715
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
|
-
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
716
|
+
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
717
717
|
multiple: true;
|
|
718
|
-
value?:
|
|
719
|
-
onChange?:
|
|
720
|
-
} &
|
|
718
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
719
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
720
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
721
721
|
multiple?: false;
|
|
722
|
-
value?:
|
|
723
|
-
onChange?:
|
|
724
|
-
} &
|
|
725
|
-
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
726
|
-
providers?:
|
|
722
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
723
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
724
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
725
|
+
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
|
|
726
|
+
providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
|
|
727
727
|
}> & react30.RefAttributes<unknown>>;
|
|
728
|
-
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
728
|
+
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
729
729
|
multiple: true;
|
|
730
|
-
value?:
|
|
731
|
-
onChange?:
|
|
732
|
-
} &
|
|
730
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
731
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
732
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
733
733
|
multiple?: false;
|
|
734
|
-
value?:
|
|
735
|
-
onChange?:
|
|
736
|
-
} &
|
|
734
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
735
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
736
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
737
737
|
RichTextEditor: react30.FC;
|
|
738
738
|
Combobox: react30.FC;
|
|
739
|
-
TagsInput: typeof
|
|
740
|
-
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<
|
|
741
|
-
Slider: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
739
|
+
TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
|
|
740
|
+
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
741
|
+
Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
742
742
|
FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
743
743
|
children?: react30.ReactNode | undefined;
|
|
744
744
|
}>, "ref"> & react30.RefAttributes<unknown>>;
|
|
@@ -757,7 +757,7 @@ declare const SchemaFieldExtended: {
|
|
|
757
757
|
value?: Date;
|
|
758
758
|
onChange?: (date: Date | undefined) => void;
|
|
759
759
|
placeholder?: string;
|
|
760
|
-
} & Omit<
|
|
760
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
761
761
|
Row: typeof Row;
|
|
762
762
|
Column: typeof Column;
|
|
763
763
|
FormGrid: typeof FormGrid;
|