@pixpilot/formily-shadcn 0.15.0 → 0.15.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/checkbox.d.ts +2 -2
- package/dist/components/date-picker.d.cts +1 -1
- package/dist/components/date-picker.d.ts +3 -3
- package/dist/components/file-upload/file-upload-inline.d.cts +8 -8
- package/dist/components/file-upload/file-upload.d.cts +8 -8
- package/dist/components/form-item/connected-form-item.d.cts +4 -4
- package/dist/components/icon-picker.d.ts +3 -3
- package/dist/components/input.d.ts +2 -2
- package/dist/components/number-input.d.ts +2 -2
- package/dist/components/schema-field/schema-field-basics.d.cts +11 -11
- package/dist/components/schema-field/schema-field-basics.d.ts +226 -226
- package/dist/components/schema-field/schema-field-extended.d.cts +241 -241
- package/dist/components/schema-field/schema-field-extended.d.ts +479 -479
- package/dist/components/schema-field/schema-field.d.cts +11 -11
- package/dist/components/schema-field/schema-field.d.ts +258 -258
- package/package.json +3 -3
|
@@ -11,7 +11,7 @@ import * as _formily_react0 from "@formily/react";
|
|
|
11
11
|
import { ISchema } from "@formily/react";
|
|
12
12
|
import * as react30 from "react";
|
|
13
13
|
import * as _formily_core0 from "@formily/core";
|
|
14
|
-
import * as
|
|
14
|
+
import * as _pixpilot_shadcn_ui0 from "@pixpilot/shadcn-ui";
|
|
15
15
|
import * as _radix_ui_react_checkbox0 from "@radix-ui/react-checkbox";
|
|
16
16
|
import * as _radix_ui_react_switch0 from "@radix-ui/react-switch";
|
|
17
17
|
import * as _radix_ui_react_separator0 from "@radix-ui/react-separator";
|
|
@@ -19,37 +19,37 @@ import * as _radix_ui_react_separator0 from "@radix-ui/react-separator";
|
|
|
19
19
|
//#region src/components/schema-field/schema-field-extended.d.ts
|
|
20
20
|
declare const extendedComponentRegistry: {
|
|
21
21
|
AvatarUpload: {
|
|
22
|
-
component: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
22
|
+
component: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
23
23
|
decorator: string;
|
|
24
24
|
};
|
|
25
25
|
FileUploadInline: {
|
|
26
|
-
component: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
26
|
+
component: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
27
27
|
multiple: true;
|
|
28
|
-
value?:
|
|
29
|
-
onChange?:
|
|
30
|
-
} &
|
|
28
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
29
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
30
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
31
31
|
multiple?: false;
|
|
32
|
-
value?:
|
|
33
|
-
onChange?:
|
|
34
|
-
} &
|
|
32
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
33
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
34
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
35
35
|
decorator: string;
|
|
36
36
|
};
|
|
37
37
|
IconPicker: {
|
|
38
|
-
component: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
39
|
-
providers?:
|
|
38
|
+
component: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
|
|
39
|
+
providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
|
|
40
40
|
}> & react30.RefAttributes<unknown>>;
|
|
41
41
|
decorator: string;
|
|
42
42
|
};
|
|
43
43
|
FileUpload: {
|
|
44
|
-
component: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
44
|
+
component: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
45
45
|
multiple: true;
|
|
46
|
-
value?:
|
|
47
|
-
onChange?:
|
|
48
|
-
} &
|
|
46
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
47
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
48
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
49
49
|
multiple?: false;
|
|
50
|
-
value?:
|
|
51
|
-
onChange?:
|
|
52
|
-
} &
|
|
50
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
51
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
52
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
53
53
|
decorator: string;
|
|
54
54
|
};
|
|
55
55
|
RichTextEditor: {
|
|
@@ -61,15 +61,15 @@ declare const extendedComponentRegistry: {
|
|
|
61
61
|
decorator: string;
|
|
62
62
|
};
|
|
63
63
|
TagsInput: {
|
|
64
|
-
component: typeof
|
|
64
|
+
component: typeof _pixpilot_shadcn_ui0.TagsInput;
|
|
65
65
|
decorator: string;
|
|
66
66
|
};
|
|
67
67
|
TagsInputInLine: {
|
|
68
|
-
component: react30.ForwardRefExoticComponent<Partial<
|
|
68
|
+
component: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
69
69
|
decorator: string;
|
|
70
70
|
};
|
|
71
71
|
Slider: {
|
|
72
|
-
component: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
72
|
+
component: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
73
73
|
decorator: string;
|
|
74
74
|
};
|
|
75
75
|
FormItem: {
|
|
@@ -116,7 +116,7 @@ declare const extendedComponentRegistry: {
|
|
|
116
116
|
value?: Date;
|
|
117
117
|
onChange?: (date: Date | undefined) => void;
|
|
118
118
|
placeholder?: string;
|
|
119
|
-
} & Omit<
|
|
119
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
120
120
|
decorator: string;
|
|
121
121
|
};
|
|
122
122
|
Row: {
|
|
@@ -160,33 +160,33 @@ declare const extendedComponentRegistry: {
|
|
|
160
160
|
* Use this to render forms from JSON Schema
|
|
161
161
|
*/
|
|
162
162
|
declare const extendedComponents: {
|
|
163
|
-
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
164
|
-
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
163
|
+
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
164
|
+
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
165
165
|
multiple: true;
|
|
166
|
-
value?:
|
|
167
|
-
onChange?:
|
|
168
|
-
} &
|
|
166
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
167
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
168
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
169
169
|
multiple?: false;
|
|
170
|
-
value?:
|
|
171
|
-
onChange?:
|
|
172
|
-
} &
|
|
173
|
-
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
174
|
-
providers?:
|
|
170
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
171
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
172
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
173
|
+
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
|
|
174
|
+
providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
|
|
175
175
|
}> & react30.RefAttributes<unknown>>;
|
|
176
|
-
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
176
|
+
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
177
177
|
multiple: true;
|
|
178
|
-
value?:
|
|
179
|
-
onChange?:
|
|
180
|
-
} &
|
|
178
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
179
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
180
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
181
181
|
multiple?: false;
|
|
182
|
-
value?:
|
|
183
|
-
onChange?:
|
|
184
|
-
} &
|
|
182
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
183
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
184
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
185
185
|
RichTextEditor: react30.FC;
|
|
186
186
|
Combobox: react30.FC;
|
|
187
|
-
TagsInput: typeof
|
|
188
|
-
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<
|
|
189
|
-
Slider: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
187
|
+
TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
|
|
188
|
+
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
189
|
+
Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
190
190
|
FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
191
191
|
children?: react30.ReactNode | undefined;
|
|
192
192
|
}>, "ref"> & react30.RefAttributes<unknown>>;
|
|
@@ -205,7 +205,7 @@ declare const extendedComponents: {
|
|
|
205
205
|
value?: Date;
|
|
206
206
|
onChange?: (date: Date | undefined) => void;
|
|
207
207
|
placeholder?: string;
|
|
208
|
-
} & Omit<
|
|
208
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
209
209
|
Row: typeof Row;
|
|
210
210
|
Column: typeof Column;
|
|
211
211
|
FormGrid: typeof FormGrid;
|
|
@@ -223,34 +223,34 @@ declare const SchemaFieldExtended: {
|
|
|
223
223
|
<Decorator extends _formily_react0.JSXComponent, Component extends _formily_react0.JSXComponent>(props: _formily_react0.ISchemaFieldProps<Decorator, Component, _formily_core0.ObjectField<Decorator, Component>>): JSX.Element;
|
|
224
224
|
displayName: string;
|
|
225
225
|
Markup: {
|
|
226
|
-
<Decorator_1 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "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
|
|
227
|
-
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
228
|
-
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
226
|
+
<Decorator_1 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_1 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaMarkupFieldProps<{
|
|
227
|
+
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
228
|
+
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
229
229
|
multiple: true;
|
|
230
|
-
value?:
|
|
231
|
-
onChange?:
|
|
232
|
-
} &
|
|
230
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
231
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
232
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
233
233
|
multiple?: false;
|
|
234
|
-
value?:
|
|
235
|
-
onChange?:
|
|
236
|
-
} &
|
|
237
|
-
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
238
|
-
providers?:
|
|
234
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
235
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
236
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
237
|
+
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
|
|
238
|
+
providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
|
|
239
239
|
}> & react30.RefAttributes<unknown>>;
|
|
240
|
-
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
240
|
+
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
241
241
|
multiple: true;
|
|
242
|
-
value?:
|
|
243
|
-
onChange?:
|
|
244
|
-
} &
|
|
242
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
243
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
244
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
245
245
|
multiple?: false;
|
|
246
|
-
value?:
|
|
247
|
-
onChange?:
|
|
248
|
-
} &
|
|
246
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
247
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
248
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
249
249
|
RichTextEditor: react30.FC;
|
|
250
250
|
Combobox: react30.FC;
|
|
251
|
-
TagsInput: typeof
|
|
252
|
-
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<
|
|
253
|
-
Slider: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
251
|
+
TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
|
|
252
|
+
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
253
|
+
Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
254
254
|
FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
255
255
|
children?: react30.ReactNode | undefined;
|
|
256
256
|
}>, "ref"> & react30.RefAttributes<unknown>>;
|
|
@@ -269,7 +269,7 @@ declare const SchemaFieldExtended: {
|
|
|
269
269
|
value?: Date;
|
|
270
270
|
onChange?: (date: Date | undefined) => void;
|
|
271
271
|
placeholder?: string;
|
|
272
|
-
} & Omit<
|
|
272
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
273
273
|
Row: typeof Row;
|
|
274
274
|
Column: typeof Column;
|
|
275
275
|
FormGrid: typeof FormGrid;
|
|
@@ -286,34 +286,34 @@ declare const SchemaFieldExtended: {
|
|
|
286
286
|
displayName: string;
|
|
287
287
|
};
|
|
288
288
|
String: {
|
|
289
|
-
<Decorator_2 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "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
|
|
290
|
-
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
291
|
-
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
289
|
+
<Decorator_2 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_2 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
290
|
+
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
291
|
+
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
292
292
|
multiple: true;
|
|
293
|
-
value?:
|
|
294
|
-
onChange?:
|
|
295
|
-
} &
|
|
293
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
294
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
295
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
296
296
|
multiple?: false;
|
|
297
|
-
value?:
|
|
298
|
-
onChange?:
|
|
299
|
-
} &
|
|
300
|
-
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
301
|
-
providers?:
|
|
297
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
298
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
299
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
300
|
+
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
|
|
301
|
+
providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
|
|
302
302
|
}> & react30.RefAttributes<unknown>>;
|
|
303
|
-
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
303
|
+
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
304
304
|
multiple: true;
|
|
305
|
-
value?:
|
|
306
|
-
onChange?:
|
|
307
|
-
} &
|
|
305
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
306
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
307
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
308
308
|
multiple?: false;
|
|
309
|
-
value?:
|
|
310
|
-
onChange?:
|
|
311
|
-
} &
|
|
309
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
310
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
311
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
312
312
|
RichTextEditor: react30.FC;
|
|
313
313
|
Combobox: react30.FC;
|
|
314
|
-
TagsInput: typeof
|
|
315
|
-
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<
|
|
316
|
-
Slider: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
314
|
+
TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
|
|
315
|
+
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
316
|
+
Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
317
317
|
FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
318
318
|
children?: react30.ReactNode | undefined;
|
|
319
319
|
}>, "ref"> & react30.RefAttributes<unknown>>;
|
|
@@ -332,7 +332,7 @@ declare const SchemaFieldExtended: {
|
|
|
332
332
|
value?: Date;
|
|
333
333
|
onChange?: (date: Date | undefined) => void;
|
|
334
334
|
placeholder?: string;
|
|
335
|
-
} & Omit<
|
|
335
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
336
336
|
Row: typeof Row;
|
|
337
337
|
Column: typeof Column;
|
|
338
338
|
FormGrid: typeof FormGrid;
|
|
@@ -349,34 +349,34 @@ declare const SchemaFieldExtended: {
|
|
|
349
349
|
displayName: string;
|
|
350
350
|
};
|
|
351
351
|
Object: {
|
|
352
|
-
<Decorator_3 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "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
|
|
353
|
-
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
354
|
-
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
352
|
+
<Decorator_3 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_3 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
353
|
+
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
354
|
+
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
355
355
|
multiple: true;
|
|
356
|
-
value?:
|
|
357
|
-
onChange?:
|
|
358
|
-
} &
|
|
356
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
357
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
358
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
359
359
|
multiple?: false;
|
|
360
|
-
value?:
|
|
361
|
-
onChange?:
|
|
362
|
-
} &
|
|
363
|
-
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
364
|
-
providers?:
|
|
360
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
361
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
362
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
363
|
+
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
|
|
364
|
+
providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
|
|
365
365
|
}> & react30.RefAttributes<unknown>>;
|
|
366
|
-
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
366
|
+
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
367
367
|
multiple: true;
|
|
368
|
-
value?:
|
|
369
|
-
onChange?:
|
|
370
|
-
} &
|
|
368
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
369
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
370
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
371
371
|
multiple?: false;
|
|
372
|
-
value?:
|
|
373
|
-
onChange?:
|
|
374
|
-
} &
|
|
372
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
373
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
374
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
375
375
|
RichTextEditor: react30.FC;
|
|
376
376
|
Combobox: react30.FC;
|
|
377
|
-
TagsInput: typeof
|
|
378
|
-
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<
|
|
379
|
-
Slider: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
377
|
+
TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
|
|
378
|
+
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
379
|
+
Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
380
380
|
FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
381
381
|
children?: react30.ReactNode | undefined;
|
|
382
382
|
}>, "ref"> & react30.RefAttributes<unknown>>;
|
|
@@ -395,7 +395,7 @@ declare const SchemaFieldExtended: {
|
|
|
395
395
|
value?: Date;
|
|
396
396
|
onChange?: (date: Date | undefined) => void;
|
|
397
397
|
placeholder?: string;
|
|
398
|
-
} & Omit<
|
|
398
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
399
399
|
Row: typeof Row;
|
|
400
400
|
Column: typeof Column;
|
|
401
401
|
FormGrid: typeof FormGrid;
|
|
@@ -412,34 +412,34 @@ declare const SchemaFieldExtended: {
|
|
|
412
412
|
displayName: string;
|
|
413
413
|
};
|
|
414
414
|
Array: {
|
|
415
|
-
<Decorator_4 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "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
|
|
416
|
-
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
417
|
-
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
415
|
+
<Decorator_4 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_4 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
416
|
+
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
417
|
+
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
418
418
|
multiple: true;
|
|
419
|
-
value?:
|
|
420
|
-
onChange?:
|
|
421
|
-
} &
|
|
419
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
420
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
421
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
422
422
|
multiple?: false;
|
|
423
|
-
value?:
|
|
424
|
-
onChange?:
|
|
425
|
-
} &
|
|
426
|
-
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
427
|
-
providers?:
|
|
423
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
424
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
425
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
426
|
+
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
|
|
427
|
+
providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
|
|
428
428
|
}> & react30.RefAttributes<unknown>>;
|
|
429
|
-
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
429
|
+
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
430
430
|
multiple: true;
|
|
431
|
-
value?:
|
|
432
|
-
onChange?:
|
|
433
|
-
} &
|
|
431
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
432
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
433
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
434
434
|
multiple?: false;
|
|
435
|
-
value?:
|
|
436
|
-
onChange?:
|
|
437
|
-
} &
|
|
435
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
436
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
437
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
438
438
|
RichTextEditor: react30.FC;
|
|
439
439
|
Combobox: react30.FC;
|
|
440
|
-
TagsInput: typeof
|
|
441
|
-
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<
|
|
442
|
-
Slider: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
440
|
+
TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
|
|
441
|
+
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
442
|
+
Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
443
443
|
FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
444
444
|
children?: react30.ReactNode | undefined;
|
|
445
445
|
}>, "ref"> & react30.RefAttributes<unknown>>;
|
|
@@ -458,7 +458,7 @@ declare const SchemaFieldExtended: {
|
|
|
458
458
|
value?: Date;
|
|
459
459
|
onChange?: (date: Date | undefined) => void;
|
|
460
460
|
placeholder?: string;
|
|
461
|
-
} & Omit<
|
|
461
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
462
462
|
Row: typeof Row;
|
|
463
463
|
Column: typeof Column;
|
|
464
464
|
FormGrid: typeof FormGrid;
|
|
@@ -475,34 +475,34 @@ declare const SchemaFieldExtended: {
|
|
|
475
475
|
displayName: string;
|
|
476
476
|
};
|
|
477
477
|
Boolean: {
|
|
478
|
-
<Decorator_5 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "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
|
|
479
|
-
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
480
|
-
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
478
|
+
<Decorator_5 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_5 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
479
|
+
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
480
|
+
FileUploadInline: 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
|
-
} &
|
|
489
|
-
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
490
|
-
providers?:
|
|
486
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
487
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
488
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
489
|
+
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
|
|
490
|
+
providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
|
|
491
491
|
}> & react30.RefAttributes<unknown>>;
|
|
492
|
-
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
492
|
+
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
493
493
|
multiple: true;
|
|
494
|
-
value?:
|
|
495
|
-
onChange?:
|
|
496
|
-
} &
|
|
494
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
495
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
496
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
497
497
|
multiple?: false;
|
|
498
|
-
value?:
|
|
499
|
-
onChange?:
|
|
500
|
-
} &
|
|
498
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
499
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
500
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
501
501
|
RichTextEditor: react30.FC;
|
|
502
502
|
Combobox: react30.FC;
|
|
503
|
-
TagsInput: typeof
|
|
504
|
-
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<
|
|
505
|
-
Slider: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
503
|
+
TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
|
|
504
|
+
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
505
|
+
Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
506
506
|
FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
507
507
|
children?: react30.ReactNode | undefined;
|
|
508
508
|
}>, "ref"> & react30.RefAttributes<unknown>>;
|
|
@@ -521,7 +521,7 @@ declare const SchemaFieldExtended: {
|
|
|
521
521
|
value?: Date;
|
|
522
522
|
onChange?: (date: Date | undefined) => void;
|
|
523
523
|
placeholder?: string;
|
|
524
|
-
} & Omit<
|
|
524
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
525
525
|
Row: typeof Row;
|
|
526
526
|
Column: typeof Column;
|
|
527
527
|
FormGrid: typeof FormGrid;
|
|
@@ -538,34 +538,34 @@ declare const SchemaFieldExtended: {
|
|
|
538
538
|
displayName: string;
|
|
539
539
|
};
|
|
540
540
|
Date: {
|
|
541
|
-
<Decorator_6 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "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
|
|
542
|
-
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
543
|
-
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
541
|
+
<Decorator_6 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_6 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
542
|
+
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
543
|
+
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
544
544
|
multiple: true;
|
|
545
|
-
value?:
|
|
546
|
-
onChange?:
|
|
547
|
-
} &
|
|
545
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
546
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
547
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
548
548
|
multiple?: false;
|
|
549
|
-
value?:
|
|
550
|
-
onChange?:
|
|
551
|
-
} &
|
|
552
|
-
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
553
|
-
providers?:
|
|
549
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
550
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
551
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
552
|
+
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
|
|
553
|
+
providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
|
|
554
554
|
}> & react30.RefAttributes<unknown>>;
|
|
555
|
-
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
555
|
+
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
556
556
|
multiple: true;
|
|
557
|
-
value?:
|
|
558
|
-
onChange?:
|
|
559
|
-
} &
|
|
557
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
558
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
559
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
560
560
|
multiple?: false;
|
|
561
|
-
value?:
|
|
562
|
-
onChange?:
|
|
563
|
-
} &
|
|
561
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
562
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
563
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
564
564
|
RichTextEditor: react30.FC;
|
|
565
565
|
Combobox: react30.FC;
|
|
566
|
-
TagsInput: typeof
|
|
567
|
-
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<
|
|
568
|
-
Slider: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
566
|
+
TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
|
|
567
|
+
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
568
|
+
Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
569
569
|
FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
570
570
|
children?: react30.ReactNode | undefined;
|
|
571
571
|
}>, "ref"> & react30.RefAttributes<unknown>>;
|
|
@@ -584,7 +584,7 @@ declare const SchemaFieldExtended: {
|
|
|
584
584
|
value?: Date;
|
|
585
585
|
onChange?: (date: Date | undefined) => void;
|
|
586
586
|
placeholder?: string;
|
|
587
|
-
} & Omit<
|
|
587
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
588
588
|
Row: typeof Row;
|
|
589
589
|
Column: typeof Column;
|
|
590
590
|
FormGrid: typeof FormGrid;
|
|
@@ -601,34 +601,34 @@ declare const SchemaFieldExtended: {
|
|
|
601
601
|
displayName: string;
|
|
602
602
|
};
|
|
603
603
|
DateTime: {
|
|
604
|
-
<Decorator_7 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "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
|
|
605
|
-
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
606
|
-
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
604
|
+
<Decorator_7 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_7 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
605
|
+
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
606
|
+
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
607
607
|
multiple: true;
|
|
608
|
-
value?:
|
|
609
|
-
onChange?:
|
|
610
|
-
} &
|
|
608
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
609
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
610
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
611
611
|
multiple?: false;
|
|
612
|
-
value?:
|
|
613
|
-
onChange?:
|
|
614
|
-
} &
|
|
615
|
-
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
616
|
-
providers?:
|
|
612
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
613
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
614
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
615
|
+
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
|
|
616
|
+
providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
|
|
617
617
|
}> & react30.RefAttributes<unknown>>;
|
|
618
|
-
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
618
|
+
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
619
619
|
multiple: true;
|
|
620
|
-
value?:
|
|
621
|
-
onChange?:
|
|
622
|
-
} &
|
|
620
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
621
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
622
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
623
623
|
multiple?: false;
|
|
624
|
-
value?:
|
|
625
|
-
onChange?:
|
|
626
|
-
} &
|
|
624
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
625
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
626
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
627
627
|
RichTextEditor: react30.FC;
|
|
628
628
|
Combobox: react30.FC;
|
|
629
|
-
TagsInput: typeof
|
|
630
|
-
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<
|
|
631
|
-
Slider: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
629
|
+
TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
|
|
630
|
+
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
631
|
+
Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
632
632
|
FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
633
633
|
children?: react30.ReactNode | undefined;
|
|
634
634
|
}>, "ref"> & react30.RefAttributes<unknown>>;
|
|
@@ -647,7 +647,7 @@ declare const SchemaFieldExtended: {
|
|
|
647
647
|
value?: Date;
|
|
648
648
|
onChange?: (date: Date | undefined) => void;
|
|
649
649
|
placeholder?: string;
|
|
650
|
-
} & Omit<
|
|
650
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
651
651
|
Row: typeof Row;
|
|
652
652
|
Column: typeof Column;
|
|
653
653
|
FormGrid: typeof FormGrid;
|
|
@@ -664,34 +664,34 @@ declare const SchemaFieldExtended: {
|
|
|
664
664
|
displayName: string;
|
|
665
665
|
};
|
|
666
666
|
Void: {
|
|
667
|
-
<Decorator_8 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "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
|
|
668
|
-
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
669
|
-
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
667
|
+
<Decorator_8 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_8 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
668
|
+
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
669
|
+
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
670
670
|
multiple: true;
|
|
671
|
-
value?:
|
|
672
|
-
onChange?:
|
|
673
|
-
} &
|
|
671
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
672
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
673
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
674
674
|
multiple?: false;
|
|
675
|
-
value?:
|
|
676
|
-
onChange?:
|
|
677
|
-
} &
|
|
678
|
-
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
679
|
-
providers?:
|
|
675
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
676
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
677
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
678
|
+
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
|
|
679
|
+
providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
|
|
680
680
|
}> & react30.RefAttributes<unknown>>;
|
|
681
|
-
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
681
|
+
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
682
682
|
multiple: true;
|
|
683
|
-
value?:
|
|
684
|
-
onChange?:
|
|
685
|
-
} &
|
|
683
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
684
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
685
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
686
686
|
multiple?: false;
|
|
687
|
-
value?:
|
|
688
|
-
onChange?:
|
|
689
|
-
} &
|
|
687
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
688
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
689
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
690
690
|
RichTextEditor: react30.FC;
|
|
691
691
|
Combobox: react30.FC;
|
|
692
|
-
TagsInput: typeof
|
|
693
|
-
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<
|
|
694
|
-
Slider: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
692
|
+
TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
|
|
693
|
+
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
694
|
+
Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
695
695
|
FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
696
696
|
children?: react30.ReactNode | undefined;
|
|
697
697
|
}>, "ref"> & react30.RefAttributes<unknown>>;
|
|
@@ -710,7 +710,7 @@ declare const SchemaFieldExtended: {
|
|
|
710
710
|
value?: Date;
|
|
711
711
|
onChange?: (date: Date | undefined) => void;
|
|
712
712
|
placeholder?: string;
|
|
713
|
-
} & Omit<
|
|
713
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
714
714
|
Row: typeof Row;
|
|
715
715
|
Column: typeof Column;
|
|
716
716
|
FormGrid: typeof FormGrid;
|
|
@@ -727,34 +727,34 @@ declare const SchemaFieldExtended: {
|
|
|
727
727
|
displayName: string;
|
|
728
728
|
};
|
|
729
729
|
Number: {
|
|
730
|
-
<Decorator_9 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "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
|
|
731
|
-
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
732
|
-
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
730
|
+
<Decorator_9 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_9 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
731
|
+
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
732
|
+
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
733
733
|
multiple: true;
|
|
734
|
-
value?:
|
|
735
|
-
onChange?:
|
|
736
|
-
} &
|
|
734
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
735
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
736
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
737
737
|
multiple?: false;
|
|
738
|
-
value?:
|
|
739
|
-
onChange?:
|
|
740
|
-
} &
|
|
741
|
-
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<
|
|
742
|
-
providers?:
|
|
738
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
739
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
740
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
741
|
+
IconPicker: react30.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui0.IconPickerProps, "providers"> & {
|
|
742
|
+
providers?: _pixpilot_shadcn_ui0.IconProviderProps[];
|
|
743
743
|
}> & react30.RefAttributes<unknown>>;
|
|
744
|
-
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<
|
|
744
|
+
FileUpload: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
745
745
|
multiple: true;
|
|
746
|
-
value?:
|
|
747
|
-
onChange?:
|
|
748
|
-
} &
|
|
746
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata[];
|
|
747
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeMultipleFiles;
|
|
748
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineBaseProps & {
|
|
749
749
|
multiple?: false;
|
|
750
|
-
value?:
|
|
751
|
-
onChange?:
|
|
752
|
-
} &
|
|
750
|
+
value?: _pixpilot_shadcn_ui0.FileMetadata | null;
|
|
751
|
+
onChange?: _pixpilot_shadcn_ui0.OnChangeSingleFile;
|
|
752
|
+
} & _pixpilot_shadcn_ui0.FileUploadBaseProps>, "ref">) & react30.RefAttributes<unknown>>;
|
|
753
753
|
RichTextEditor: react30.FC;
|
|
754
754
|
Combobox: react30.FC;
|
|
755
|
-
TagsInput: typeof
|
|
756
|
-
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<
|
|
757
|
-
Slider: react30.ForwardRefExoticComponent<Omit<Partial<
|
|
755
|
+
TagsInput: typeof _pixpilot_shadcn_ui0.TagsInput;
|
|
756
|
+
TagsInputInLine: react30.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui0.TagsInputProps> & react30.RefAttributes<unknown>>;
|
|
757
|
+
Slider: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
758
758
|
FormItem: react30.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
759
759
|
children?: react30.ReactNode | undefined;
|
|
760
760
|
}>, "ref"> & react30.RefAttributes<unknown>>;
|
|
@@ -773,7 +773,7 @@ declare const SchemaFieldExtended: {
|
|
|
773
773
|
value?: Date;
|
|
774
774
|
onChange?: (date: Date | undefined) => void;
|
|
775
775
|
placeholder?: string;
|
|
776
|
-
} & Omit<
|
|
776
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
777
777
|
Row: typeof Row;
|
|
778
778
|
Column: typeof Column;
|
|
779
779
|
FormGrid: typeof FormGrid;
|