@pixpilot/formily-shadcn 1.4.3 → 1.4.4
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/Column.d.ts +2 -2
- package/dist/components/DatePicker.d.ts +3 -3
- package/dist/components/Form.d.cts +2 -2
- package/dist/components/Form.d.ts +2 -2
- package/dist/components/FormGrid.d.cts +2 -2
- package/dist/components/FormGrid.d.ts +2 -2
- package/dist/components/IconPicker.d.cts +3 -3
- package/dist/components/IconPicker.d.ts +3 -3
- package/dist/components/IconToggle.d.cts +2 -2
- package/dist/components/IconToggle.d.ts +3 -3
- package/dist/components/Input.d.cts +3 -3
- package/dist/components/Input.d.ts +3 -3
- package/dist/components/Radio.d.ts +2 -2
- package/dist/components/Rating.d.ts +4 -4
- package/dist/components/Row.d.ts +2 -2
- package/dist/components/Separator.d.cts +2 -2
- package/dist/components/Separator.d.ts +2 -2
- package/dist/components/Switch.d.cts +2 -2
- package/dist/components/Switch.d.ts +2 -2
- package/dist/components/TagsInputInline.d.cts +2 -2
- package/dist/components/TagsInputInline.d.ts +3 -3
- package/dist/components/Textarea.d.cts +2 -2
- package/dist/components/Textarea.d.ts +2 -2
- package/dist/components/ToggleButton.d.cts +2 -2
- package/dist/components/ToggleButton.d.ts +3 -3
- package/dist/components/array-base/components/Addition.cjs +1 -1
- package/dist/components/array-base/components/Addition.js +1 -1
- package/dist/components/array-dialog/ArrayDialog.cjs +1 -0
- package/dist/components/array-dialog/ArrayDialog.js +1 -0
- package/dist/components/array-popover/ArrayPopover.cjs +1 -0
- package/dist/components/array-popover/ArrayPopover.js +1 -0
- package/dist/components/file-upload/FileUpload.d.ts +8 -8
- package/dist/components/file-upload/FileUploadInline.d.ts +8 -8
- package/dist/components/schema-field/schema-field-basics.d.ts +302 -302
- package/dist/components/schema-field/schema-field-extended.d.cts +9 -9
- package/dist/components/schema-field/schema-field-extended.d.ts +307 -307
- package/dist/components/schema-field/schema-field.d.cts +9 -9
- package/dist/components/schema-field/schema-field.d.ts +412 -412
- package/dist/components/slider/Slider.d.cts +3 -3
- package/dist/components/slider/Slider.d.ts +3 -3
- package/dist/components/slider/SliderInput.d.ts +3 -3
- package/dist/components/slider/SliderSelect.d.cts +3 -3
- package/dist/components/slider/SliderSelect.d.ts +2 -2
- package/package.json +1 -1
|
@@ -15,7 +15,7 @@ import { ToggleGroupBaseProps } from "../ToggleGroup.js";
|
|
|
15
15
|
import * as _formily_react69 from "@formily/react";
|
|
16
16
|
import { ISchema } from "@formily/react";
|
|
17
17
|
import * as react1168 from "react";
|
|
18
|
-
import * as
|
|
18
|
+
import * as _pixpilot_shadcn_ui135 from "@pixpilot/shadcn-ui";
|
|
19
19
|
import * as _formily_core1 from "@formily/core";
|
|
20
20
|
import * as _radix_ui_react_checkbox22 from "@radix-ui/react-checkbox";
|
|
21
21
|
import * as _radix_ui_react_separator22 from "@radix-ui/react-separator";
|
|
@@ -24,37 +24,37 @@ import * as _radix_ui_react_switch22 from "@radix-ui/react-switch";
|
|
|
24
24
|
//#region src/components/schema-field/schema-field-extended.d.ts
|
|
25
25
|
declare const extendedComponentRegistry: {
|
|
26
26
|
AvatarUpload: {
|
|
27
|
-
component: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
27
|
+
component: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.AvatarUploadProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
28
28
|
decorator: string;
|
|
29
29
|
};
|
|
30
30
|
FileUploadInline: {
|
|
31
|
-
component: react1168.ForwardRefExoticComponent<(Omit<Partial<
|
|
31
|
+
component: react1168.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
32
32
|
multiple: true;
|
|
33
|
-
value?:
|
|
34
|
-
onChange?:
|
|
35
|
-
} &
|
|
33
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata[];
|
|
34
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeMultipleFiles;
|
|
35
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
36
36
|
multiple?: false;
|
|
37
|
-
value?:
|
|
38
|
-
onChange?:
|
|
39
|
-
} &
|
|
37
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata | null;
|
|
38
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeSingleFile;
|
|
39
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref">) & react1168.RefAttributes<unknown>>;
|
|
40
40
|
decorator: string;
|
|
41
41
|
};
|
|
42
42
|
IconPicker: {
|
|
43
|
-
component: react1168.ForwardRefExoticComponent<Partial<Omit<
|
|
44
|
-
providers?:
|
|
43
|
+
component: react1168.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui135.IconPickerProps, "providers"> & {
|
|
44
|
+
providers?: _pixpilot_shadcn_ui135.IconProviderProps[];
|
|
45
45
|
}> & react1168.RefAttributes<unknown>>;
|
|
46
46
|
decorator: string;
|
|
47
47
|
};
|
|
48
48
|
FileUpload: {
|
|
49
|
-
component: react1168.ForwardRefExoticComponent<(Omit<Partial<
|
|
49
|
+
component: react1168.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
50
50
|
multiple: true;
|
|
51
|
-
value?:
|
|
52
|
-
onChange?:
|
|
53
|
-
} &
|
|
51
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata[];
|
|
52
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeMultipleFiles;
|
|
53
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
54
54
|
multiple?: false;
|
|
55
|
-
value?:
|
|
56
|
-
onChange?:
|
|
57
|
-
} &
|
|
55
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata | null;
|
|
56
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeSingleFile;
|
|
57
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref">) & react1168.RefAttributes<unknown>>;
|
|
58
58
|
decorator: string;
|
|
59
59
|
};
|
|
60
60
|
RichTextEditor: {
|
|
@@ -62,7 +62,7 @@ declare const extendedComponentRegistry: {
|
|
|
62
62
|
decorator: string;
|
|
63
63
|
};
|
|
64
64
|
ColorPicker: {
|
|
65
|
-
component: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
65
|
+
component: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.ColorPickerProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
66
66
|
decorator: string;
|
|
67
67
|
};
|
|
68
68
|
Combobox: {
|
|
@@ -74,29 +74,29 @@ declare const extendedComponentRegistry: {
|
|
|
74
74
|
decorator: string;
|
|
75
75
|
};
|
|
76
76
|
Rating: {
|
|
77
|
-
component: react1168.ForwardRefExoticComponent<Partial<
|
|
77
|
+
component: react1168.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui135.RatingProps & {
|
|
78
78
|
children?: react1168.ReactNode | undefined;
|
|
79
79
|
}> & react1168.RefAttributes<unknown>>;
|
|
80
80
|
decorator: string;
|
|
81
81
|
};
|
|
82
82
|
Slider: {
|
|
83
|
-
component: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
83
|
+
component: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
84
84
|
decorator: string;
|
|
85
85
|
};
|
|
86
86
|
SliderInput: {
|
|
87
|
-
component: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
87
|
+
component: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderInputProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
88
88
|
decorator: string;
|
|
89
89
|
};
|
|
90
90
|
SliderSelect: {
|
|
91
|
-
component: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
91
|
+
component: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderSelectProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
92
92
|
decorator: string;
|
|
93
93
|
};
|
|
94
94
|
TagsInput: {
|
|
95
|
-
component: typeof
|
|
95
|
+
component: typeof _pixpilot_shadcn_ui135.TagsInput;
|
|
96
96
|
decorator: string;
|
|
97
97
|
};
|
|
98
98
|
TagsInputInLine: {
|
|
99
|
-
component: react1168.ForwardRefExoticComponent<Partial<
|
|
99
|
+
component: react1168.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui135.TagsInputProps> & react1168.RefAttributes<unknown>>;
|
|
100
100
|
decorator: string;
|
|
101
101
|
};
|
|
102
102
|
ArrayCards: {
|
|
@@ -151,7 +151,7 @@ declare const extendedComponentRegistry: {
|
|
|
151
151
|
value?: Date;
|
|
152
152
|
onChange?: (date: Date | undefined) => void;
|
|
153
153
|
placeholder?: string;
|
|
154
|
-
} & Omit<
|
|
154
|
+
} & Omit<_pixpilot_shadcn_ui135.DatePickerProps, "onSelect" | "selected" | "mode">> & react1168.RefAttributes<unknown>>;
|
|
155
155
|
decorator: string;
|
|
156
156
|
};
|
|
157
157
|
FormGrid: {
|
|
@@ -169,11 +169,11 @@ declare const extendedComponentRegistry: {
|
|
|
169
169
|
}> & react1168.RefAttributes<unknown>>;
|
|
170
170
|
};
|
|
171
171
|
IconToggle: {
|
|
172
|
-
component: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
172
|
+
component: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui135.IconToggleProps, "ref"> & react1168.RefAttributes<HTMLButtonElement>>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
173
173
|
decorator: string;
|
|
174
174
|
};
|
|
175
175
|
ToggleButton: {
|
|
176
|
-
component: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
176
|
+
component: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui135.ToggleButtonProps, "ref"> & react1168.RefAttributes<HTMLButtonElement>>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
177
177
|
decorator: string;
|
|
178
178
|
};
|
|
179
179
|
Input: {
|
|
@@ -228,40 +228,40 @@ declare const extendedComponentRegistry: {
|
|
|
228
228
|
* Use this to render forms from JSON Schema
|
|
229
229
|
*/
|
|
230
230
|
declare const extendedComponents: {
|
|
231
|
-
AvatarUpload: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
232
|
-
FileUploadInline: react1168.ForwardRefExoticComponent<(Omit<Partial<
|
|
231
|
+
AvatarUpload: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.AvatarUploadProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
232
|
+
FileUploadInline: react1168.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
233
233
|
multiple: true;
|
|
234
|
-
value?:
|
|
235
|
-
onChange?:
|
|
236
|
-
} &
|
|
234
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata[];
|
|
235
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeMultipleFiles;
|
|
236
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
237
237
|
multiple?: false;
|
|
238
|
-
value?:
|
|
239
|
-
onChange?:
|
|
240
|
-
} &
|
|
241
|
-
IconPicker: react1168.ForwardRefExoticComponent<Partial<Omit<
|
|
242
|
-
providers?:
|
|
238
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata | null;
|
|
239
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeSingleFile;
|
|
240
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref">) & react1168.RefAttributes<unknown>>;
|
|
241
|
+
IconPicker: react1168.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui135.IconPickerProps, "providers"> & {
|
|
242
|
+
providers?: _pixpilot_shadcn_ui135.IconProviderProps[];
|
|
243
243
|
}> & react1168.RefAttributes<unknown>>;
|
|
244
|
-
FileUpload: react1168.ForwardRefExoticComponent<(Omit<Partial<
|
|
244
|
+
FileUpload: react1168.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
245
245
|
multiple: true;
|
|
246
|
-
value?:
|
|
247
|
-
onChange?:
|
|
248
|
-
} &
|
|
246
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata[];
|
|
247
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeMultipleFiles;
|
|
248
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
249
249
|
multiple?: false;
|
|
250
|
-
value?:
|
|
251
|
-
onChange?:
|
|
252
|
-
} &
|
|
250
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata | null;
|
|
251
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeSingleFile;
|
|
252
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref">) & react1168.RefAttributes<unknown>>;
|
|
253
253
|
RichTextEditor: react1168.FC;
|
|
254
|
-
ColorPicker: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
254
|
+
ColorPicker: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.ColorPickerProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
255
255
|
Combobox: react1168.FC;
|
|
256
256
|
ColorSelect: react1168.FC;
|
|
257
|
-
Rating: react1168.ForwardRefExoticComponent<Partial<
|
|
257
|
+
Rating: react1168.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui135.RatingProps & {
|
|
258
258
|
children?: react1168.ReactNode | undefined;
|
|
259
259
|
}> & react1168.RefAttributes<unknown>>;
|
|
260
|
-
Slider: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
261
|
-
SliderInput: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
262
|
-
SliderSelect: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
263
|
-
TagsInput: typeof
|
|
264
|
-
TagsInputInLine: react1168.ForwardRefExoticComponent<Partial<
|
|
260
|
+
Slider: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
261
|
+
SliderInput: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderInputProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
262
|
+
SliderSelect: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderSelectProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
263
|
+
TagsInput: typeof _pixpilot_shadcn_ui135.TagsInput;
|
|
264
|
+
TagsInputInLine: react1168.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui135.TagsInputProps> & react1168.RefAttributes<unknown>>;
|
|
265
265
|
ArrayCards: ComposedArrayProps;
|
|
266
266
|
ArrayCollapse: react1168.FC<ArrayComponentProps & {
|
|
267
267
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -284,7 +284,7 @@ declare const extendedComponents: {
|
|
|
284
284
|
value?: Date;
|
|
285
285
|
onChange?: (date: Date | undefined) => void;
|
|
286
286
|
placeholder?: string;
|
|
287
|
-
} & Omit<
|
|
287
|
+
} & Omit<_pixpilot_shadcn_ui135.DatePickerProps, "onSelect" | "selected" | "mode">> & react1168.RefAttributes<unknown>>;
|
|
288
288
|
FormGrid: typeof FormGrid;
|
|
289
289
|
FormItem: react1168.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
290
290
|
children?: react1168.ReactNode | undefined;
|
|
@@ -293,8 +293,8 @@ declare const extendedComponents: {
|
|
|
293
293
|
children?: React.ReactNode;
|
|
294
294
|
value?: string;
|
|
295
295
|
}> & react1168.RefAttributes<unknown>>;
|
|
296
|
-
IconToggle: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
297
|
-
ToggleButton: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
296
|
+
IconToggle: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui135.IconToggleProps, "ref"> & react1168.RefAttributes<HTMLButtonElement>>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
297
|
+
ToggleButton: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui135.ToggleButtonProps, "ref"> & react1168.RefAttributes<HTMLButtonElement>>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
298
298
|
Input: react1168.ForwardRefExoticComponent<Omit<Partial<react1168.ClassAttributes<HTMLInputElement> & react1168.InputHTMLAttributes<HTMLInputElement> & {
|
|
299
299
|
prefix?: React.ReactNode;
|
|
300
300
|
suffix?: React.ReactNode;
|
|
@@ -321,41 +321,41 @@ declare const SchemaFieldExtended: {
|
|
|
321
321
|
<Decorator extends _formily_react69.JSXComponent, Component extends _formily_react69.JSXComponent>(props: _formily_react69.ISchemaFieldProps<Decorator, Component, _formily_core1.ObjectField<Decorator, Component>>): JSX.Element;
|
|
322
322
|
displayName: string;
|
|
323
323
|
Markup: {
|
|
324
|
-
<Decorator_1 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "
|
|
325
|
-
AvatarUpload: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
326
|
-
FileUploadInline: react1168.ForwardRefExoticComponent<(Omit<Partial<
|
|
324
|
+
<Decorator_1 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_1 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react69.ISchemaMarkupFieldProps<{
|
|
325
|
+
AvatarUpload: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.AvatarUploadProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
326
|
+
FileUploadInline: react1168.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
327
327
|
multiple: true;
|
|
328
|
-
value?:
|
|
329
|
-
onChange?:
|
|
330
|
-
} &
|
|
328
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata[];
|
|
329
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeMultipleFiles;
|
|
330
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
331
331
|
multiple?: false;
|
|
332
|
-
value?:
|
|
333
|
-
onChange?:
|
|
334
|
-
} &
|
|
335
|
-
IconPicker: react1168.ForwardRefExoticComponent<Partial<Omit<
|
|
336
|
-
providers?:
|
|
332
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata | null;
|
|
333
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeSingleFile;
|
|
334
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref">) & react1168.RefAttributes<unknown>>;
|
|
335
|
+
IconPicker: react1168.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui135.IconPickerProps, "providers"> & {
|
|
336
|
+
providers?: _pixpilot_shadcn_ui135.IconProviderProps[];
|
|
337
337
|
}> & react1168.RefAttributes<unknown>>;
|
|
338
|
-
FileUpload: react1168.ForwardRefExoticComponent<(Omit<Partial<
|
|
338
|
+
FileUpload: react1168.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
339
339
|
multiple: true;
|
|
340
|
-
value?:
|
|
341
|
-
onChange?:
|
|
342
|
-
} &
|
|
340
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata[];
|
|
341
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeMultipleFiles;
|
|
342
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
343
343
|
multiple?: false;
|
|
344
|
-
value?:
|
|
345
|
-
onChange?:
|
|
346
|
-
} &
|
|
344
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata | null;
|
|
345
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeSingleFile;
|
|
346
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref">) & react1168.RefAttributes<unknown>>;
|
|
347
347
|
RichTextEditor: react1168.FC;
|
|
348
|
-
ColorPicker: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
348
|
+
ColorPicker: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.ColorPickerProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
349
349
|
Combobox: react1168.FC;
|
|
350
350
|
ColorSelect: react1168.FC;
|
|
351
|
-
Rating: react1168.ForwardRefExoticComponent<Partial<
|
|
351
|
+
Rating: react1168.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui135.RatingProps & {
|
|
352
352
|
children?: react1168.ReactNode | undefined;
|
|
353
353
|
}> & react1168.RefAttributes<unknown>>;
|
|
354
|
-
Slider: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
355
|
-
SliderInput: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
356
|
-
SliderSelect: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
357
|
-
TagsInput: typeof
|
|
358
|
-
TagsInputInLine: react1168.ForwardRefExoticComponent<Partial<
|
|
354
|
+
Slider: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
355
|
+
SliderInput: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderInputProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
356
|
+
SliderSelect: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderSelectProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
357
|
+
TagsInput: typeof _pixpilot_shadcn_ui135.TagsInput;
|
|
358
|
+
TagsInputInLine: react1168.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui135.TagsInputProps> & react1168.RefAttributes<unknown>>;
|
|
359
359
|
ArrayCards: ComposedArrayProps;
|
|
360
360
|
ArrayCollapse: react1168.FC<ArrayComponentProps & {
|
|
361
361
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -378,7 +378,7 @@ declare const SchemaFieldExtended: {
|
|
|
378
378
|
value?: Date;
|
|
379
379
|
onChange?: (date: Date | undefined) => void;
|
|
380
380
|
placeholder?: string;
|
|
381
|
-
} & Omit<
|
|
381
|
+
} & Omit<_pixpilot_shadcn_ui135.DatePickerProps, "onSelect" | "selected" | "mode">> & react1168.RefAttributes<unknown>>;
|
|
382
382
|
FormGrid: typeof FormGrid;
|
|
383
383
|
FormItem: react1168.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
384
384
|
children?: react1168.ReactNode | undefined;
|
|
@@ -387,8 +387,8 @@ declare const SchemaFieldExtended: {
|
|
|
387
387
|
children?: React.ReactNode;
|
|
388
388
|
value?: string;
|
|
389
389
|
}> & react1168.RefAttributes<unknown>>;
|
|
390
|
-
IconToggle: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
391
|
-
ToggleButton: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
390
|
+
IconToggle: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui135.IconToggleProps, "ref"> & react1168.RefAttributes<HTMLButtonElement>>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
391
|
+
ToggleButton: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui135.ToggleButtonProps, "ref"> & react1168.RefAttributes<HTMLButtonElement>>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
392
392
|
Input: react1168.ForwardRefExoticComponent<Omit<Partial<react1168.ClassAttributes<HTMLInputElement> & react1168.InputHTMLAttributes<HTMLInputElement> & {
|
|
393
393
|
prefix?: React.ReactNode;
|
|
394
394
|
suffix?: React.ReactNode;
|
|
@@ -414,41 +414,41 @@ declare const SchemaFieldExtended: {
|
|
|
414
414
|
displayName: string;
|
|
415
415
|
};
|
|
416
416
|
String: {
|
|
417
|
-
<Decorator_2 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "
|
|
418
|
-
AvatarUpload: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
419
|
-
FileUploadInline: react1168.ForwardRefExoticComponent<(Omit<Partial<
|
|
417
|
+
<Decorator_2 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_2 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
418
|
+
AvatarUpload: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.AvatarUploadProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
419
|
+
FileUploadInline: react1168.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
420
420
|
multiple: true;
|
|
421
|
-
value?:
|
|
422
|
-
onChange?:
|
|
423
|
-
} &
|
|
421
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata[];
|
|
422
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeMultipleFiles;
|
|
423
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
424
424
|
multiple?: false;
|
|
425
|
-
value?:
|
|
426
|
-
onChange?:
|
|
427
|
-
} &
|
|
428
|
-
IconPicker: react1168.ForwardRefExoticComponent<Partial<Omit<
|
|
429
|
-
providers?:
|
|
425
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata | null;
|
|
426
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeSingleFile;
|
|
427
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref">) & react1168.RefAttributes<unknown>>;
|
|
428
|
+
IconPicker: react1168.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui135.IconPickerProps, "providers"> & {
|
|
429
|
+
providers?: _pixpilot_shadcn_ui135.IconProviderProps[];
|
|
430
430
|
}> & react1168.RefAttributes<unknown>>;
|
|
431
|
-
FileUpload: react1168.ForwardRefExoticComponent<(Omit<Partial<
|
|
431
|
+
FileUpload: react1168.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
432
432
|
multiple: true;
|
|
433
|
-
value?:
|
|
434
|
-
onChange?:
|
|
435
|
-
} &
|
|
433
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata[];
|
|
434
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeMultipleFiles;
|
|
435
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
436
436
|
multiple?: false;
|
|
437
|
-
value?:
|
|
438
|
-
onChange?:
|
|
439
|
-
} &
|
|
437
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata | null;
|
|
438
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeSingleFile;
|
|
439
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref">) & react1168.RefAttributes<unknown>>;
|
|
440
440
|
RichTextEditor: react1168.FC;
|
|
441
|
-
ColorPicker: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
441
|
+
ColorPicker: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.ColorPickerProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
442
442
|
Combobox: react1168.FC;
|
|
443
443
|
ColorSelect: react1168.FC;
|
|
444
|
-
Rating: react1168.ForwardRefExoticComponent<Partial<
|
|
444
|
+
Rating: react1168.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui135.RatingProps & {
|
|
445
445
|
children?: react1168.ReactNode | undefined;
|
|
446
446
|
}> & react1168.RefAttributes<unknown>>;
|
|
447
|
-
Slider: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
448
|
-
SliderInput: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
449
|
-
SliderSelect: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
450
|
-
TagsInput: typeof
|
|
451
|
-
TagsInputInLine: react1168.ForwardRefExoticComponent<Partial<
|
|
447
|
+
Slider: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
448
|
+
SliderInput: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderInputProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
449
|
+
SliderSelect: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderSelectProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
450
|
+
TagsInput: typeof _pixpilot_shadcn_ui135.TagsInput;
|
|
451
|
+
TagsInputInLine: react1168.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui135.TagsInputProps> & react1168.RefAttributes<unknown>>;
|
|
452
452
|
ArrayCards: ComposedArrayProps;
|
|
453
453
|
ArrayCollapse: react1168.FC<ArrayComponentProps & {
|
|
454
454
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -471,7 +471,7 @@ declare const SchemaFieldExtended: {
|
|
|
471
471
|
value?: Date;
|
|
472
472
|
onChange?: (date: Date | undefined) => void;
|
|
473
473
|
placeholder?: string;
|
|
474
|
-
} & Omit<
|
|
474
|
+
} & Omit<_pixpilot_shadcn_ui135.DatePickerProps, "onSelect" | "selected" | "mode">> & react1168.RefAttributes<unknown>>;
|
|
475
475
|
FormGrid: typeof FormGrid;
|
|
476
476
|
FormItem: react1168.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
477
477
|
children?: react1168.ReactNode | undefined;
|
|
@@ -480,8 +480,8 @@ declare const SchemaFieldExtended: {
|
|
|
480
480
|
children?: React.ReactNode;
|
|
481
481
|
value?: string;
|
|
482
482
|
}> & react1168.RefAttributes<unknown>>;
|
|
483
|
-
IconToggle: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
484
|
-
ToggleButton: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
483
|
+
IconToggle: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui135.IconToggleProps, "ref"> & react1168.RefAttributes<HTMLButtonElement>>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
484
|
+
ToggleButton: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui135.ToggleButtonProps, "ref"> & react1168.RefAttributes<HTMLButtonElement>>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
485
485
|
Input: react1168.ForwardRefExoticComponent<Omit<Partial<react1168.ClassAttributes<HTMLInputElement> & react1168.InputHTMLAttributes<HTMLInputElement> & {
|
|
486
486
|
prefix?: React.ReactNode;
|
|
487
487
|
suffix?: React.ReactNode;
|
|
@@ -507,41 +507,41 @@ declare const SchemaFieldExtended: {
|
|
|
507
507
|
displayName: string;
|
|
508
508
|
};
|
|
509
509
|
Object: {
|
|
510
|
-
<Decorator_3 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "
|
|
511
|
-
AvatarUpload: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
512
|
-
FileUploadInline: react1168.ForwardRefExoticComponent<(Omit<Partial<
|
|
510
|
+
<Decorator_3 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_3 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
511
|
+
AvatarUpload: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.AvatarUploadProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
512
|
+
FileUploadInline: react1168.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
513
513
|
multiple: true;
|
|
514
|
-
value?:
|
|
515
|
-
onChange?:
|
|
516
|
-
} &
|
|
514
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata[];
|
|
515
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeMultipleFiles;
|
|
516
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
517
517
|
multiple?: false;
|
|
518
|
-
value?:
|
|
519
|
-
onChange?:
|
|
520
|
-
} &
|
|
521
|
-
IconPicker: react1168.ForwardRefExoticComponent<Partial<Omit<
|
|
522
|
-
providers?:
|
|
518
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata | null;
|
|
519
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeSingleFile;
|
|
520
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref">) & react1168.RefAttributes<unknown>>;
|
|
521
|
+
IconPicker: react1168.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui135.IconPickerProps, "providers"> & {
|
|
522
|
+
providers?: _pixpilot_shadcn_ui135.IconProviderProps[];
|
|
523
523
|
}> & react1168.RefAttributes<unknown>>;
|
|
524
|
-
FileUpload: react1168.ForwardRefExoticComponent<(Omit<Partial<
|
|
524
|
+
FileUpload: react1168.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
525
525
|
multiple: true;
|
|
526
|
-
value?:
|
|
527
|
-
onChange?:
|
|
528
|
-
} &
|
|
526
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata[];
|
|
527
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeMultipleFiles;
|
|
528
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
529
529
|
multiple?: false;
|
|
530
|
-
value?:
|
|
531
|
-
onChange?:
|
|
532
|
-
} &
|
|
530
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata | null;
|
|
531
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeSingleFile;
|
|
532
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref">) & react1168.RefAttributes<unknown>>;
|
|
533
533
|
RichTextEditor: react1168.FC;
|
|
534
|
-
ColorPicker: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
534
|
+
ColorPicker: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.ColorPickerProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
535
535
|
Combobox: react1168.FC;
|
|
536
536
|
ColorSelect: react1168.FC;
|
|
537
|
-
Rating: react1168.ForwardRefExoticComponent<Partial<
|
|
537
|
+
Rating: react1168.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui135.RatingProps & {
|
|
538
538
|
children?: react1168.ReactNode | undefined;
|
|
539
539
|
}> & react1168.RefAttributes<unknown>>;
|
|
540
|
-
Slider: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
541
|
-
SliderInput: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
542
|
-
SliderSelect: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
543
|
-
TagsInput: typeof
|
|
544
|
-
TagsInputInLine: react1168.ForwardRefExoticComponent<Partial<
|
|
540
|
+
Slider: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
541
|
+
SliderInput: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderInputProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
542
|
+
SliderSelect: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderSelectProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
543
|
+
TagsInput: typeof _pixpilot_shadcn_ui135.TagsInput;
|
|
544
|
+
TagsInputInLine: react1168.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui135.TagsInputProps> & react1168.RefAttributes<unknown>>;
|
|
545
545
|
ArrayCards: ComposedArrayProps;
|
|
546
546
|
ArrayCollapse: react1168.FC<ArrayComponentProps & {
|
|
547
547
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -564,7 +564,7 @@ declare const SchemaFieldExtended: {
|
|
|
564
564
|
value?: Date;
|
|
565
565
|
onChange?: (date: Date | undefined) => void;
|
|
566
566
|
placeholder?: string;
|
|
567
|
-
} & Omit<
|
|
567
|
+
} & Omit<_pixpilot_shadcn_ui135.DatePickerProps, "onSelect" | "selected" | "mode">> & react1168.RefAttributes<unknown>>;
|
|
568
568
|
FormGrid: typeof FormGrid;
|
|
569
569
|
FormItem: react1168.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
570
570
|
children?: react1168.ReactNode | undefined;
|
|
@@ -573,8 +573,8 @@ declare const SchemaFieldExtended: {
|
|
|
573
573
|
children?: React.ReactNode;
|
|
574
574
|
value?: string;
|
|
575
575
|
}> & react1168.RefAttributes<unknown>>;
|
|
576
|
-
IconToggle: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
577
|
-
ToggleButton: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
576
|
+
IconToggle: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui135.IconToggleProps, "ref"> & react1168.RefAttributes<HTMLButtonElement>>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
577
|
+
ToggleButton: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui135.ToggleButtonProps, "ref"> & react1168.RefAttributes<HTMLButtonElement>>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
578
578
|
Input: react1168.ForwardRefExoticComponent<Omit<Partial<react1168.ClassAttributes<HTMLInputElement> & react1168.InputHTMLAttributes<HTMLInputElement> & {
|
|
579
579
|
prefix?: React.ReactNode;
|
|
580
580
|
suffix?: React.ReactNode;
|
|
@@ -600,41 +600,41 @@ declare const SchemaFieldExtended: {
|
|
|
600
600
|
displayName: string;
|
|
601
601
|
};
|
|
602
602
|
Array: {
|
|
603
|
-
<Decorator_4 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "
|
|
604
|
-
AvatarUpload: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
605
|
-
FileUploadInline: react1168.ForwardRefExoticComponent<(Omit<Partial<
|
|
603
|
+
<Decorator_4 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_4 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
604
|
+
AvatarUpload: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.AvatarUploadProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
605
|
+
FileUploadInline: react1168.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
606
606
|
multiple: true;
|
|
607
|
-
value?:
|
|
608
|
-
onChange?:
|
|
609
|
-
} &
|
|
607
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata[];
|
|
608
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeMultipleFiles;
|
|
609
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
610
610
|
multiple?: false;
|
|
611
|
-
value?:
|
|
612
|
-
onChange?:
|
|
613
|
-
} &
|
|
614
|
-
IconPicker: react1168.ForwardRefExoticComponent<Partial<Omit<
|
|
615
|
-
providers?:
|
|
611
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata | null;
|
|
612
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeSingleFile;
|
|
613
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref">) & react1168.RefAttributes<unknown>>;
|
|
614
|
+
IconPicker: react1168.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui135.IconPickerProps, "providers"> & {
|
|
615
|
+
providers?: _pixpilot_shadcn_ui135.IconProviderProps[];
|
|
616
616
|
}> & react1168.RefAttributes<unknown>>;
|
|
617
|
-
FileUpload: react1168.ForwardRefExoticComponent<(Omit<Partial<
|
|
617
|
+
FileUpload: react1168.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
618
618
|
multiple: true;
|
|
619
|
-
value?:
|
|
620
|
-
onChange?:
|
|
621
|
-
} &
|
|
619
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata[];
|
|
620
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeMultipleFiles;
|
|
621
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
622
622
|
multiple?: false;
|
|
623
|
-
value?:
|
|
624
|
-
onChange?:
|
|
625
|
-
} &
|
|
623
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata | null;
|
|
624
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeSingleFile;
|
|
625
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref">) & react1168.RefAttributes<unknown>>;
|
|
626
626
|
RichTextEditor: react1168.FC;
|
|
627
|
-
ColorPicker: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
627
|
+
ColorPicker: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.ColorPickerProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
628
628
|
Combobox: react1168.FC;
|
|
629
629
|
ColorSelect: react1168.FC;
|
|
630
|
-
Rating: react1168.ForwardRefExoticComponent<Partial<
|
|
630
|
+
Rating: react1168.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui135.RatingProps & {
|
|
631
631
|
children?: react1168.ReactNode | undefined;
|
|
632
632
|
}> & react1168.RefAttributes<unknown>>;
|
|
633
|
-
Slider: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
634
|
-
SliderInput: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
635
|
-
SliderSelect: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
636
|
-
TagsInput: typeof
|
|
637
|
-
TagsInputInLine: react1168.ForwardRefExoticComponent<Partial<
|
|
633
|
+
Slider: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
634
|
+
SliderInput: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderInputProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
635
|
+
SliderSelect: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderSelectProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
636
|
+
TagsInput: typeof _pixpilot_shadcn_ui135.TagsInput;
|
|
637
|
+
TagsInputInLine: react1168.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui135.TagsInputProps> & react1168.RefAttributes<unknown>>;
|
|
638
638
|
ArrayCards: ComposedArrayProps;
|
|
639
639
|
ArrayCollapse: react1168.FC<ArrayComponentProps & {
|
|
640
640
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -657,7 +657,7 @@ declare const SchemaFieldExtended: {
|
|
|
657
657
|
value?: Date;
|
|
658
658
|
onChange?: (date: Date | undefined) => void;
|
|
659
659
|
placeholder?: string;
|
|
660
|
-
} & Omit<
|
|
660
|
+
} & Omit<_pixpilot_shadcn_ui135.DatePickerProps, "onSelect" | "selected" | "mode">> & react1168.RefAttributes<unknown>>;
|
|
661
661
|
FormGrid: typeof FormGrid;
|
|
662
662
|
FormItem: react1168.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
663
663
|
children?: react1168.ReactNode | undefined;
|
|
@@ -666,8 +666,8 @@ declare const SchemaFieldExtended: {
|
|
|
666
666
|
children?: React.ReactNode;
|
|
667
667
|
value?: string;
|
|
668
668
|
}> & react1168.RefAttributes<unknown>>;
|
|
669
|
-
IconToggle: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
670
|
-
ToggleButton: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
669
|
+
IconToggle: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui135.IconToggleProps, "ref"> & react1168.RefAttributes<HTMLButtonElement>>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
670
|
+
ToggleButton: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui135.ToggleButtonProps, "ref"> & react1168.RefAttributes<HTMLButtonElement>>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
671
671
|
Input: react1168.ForwardRefExoticComponent<Omit<Partial<react1168.ClassAttributes<HTMLInputElement> & react1168.InputHTMLAttributes<HTMLInputElement> & {
|
|
672
672
|
prefix?: React.ReactNode;
|
|
673
673
|
suffix?: React.ReactNode;
|
|
@@ -693,41 +693,41 @@ declare const SchemaFieldExtended: {
|
|
|
693
693
|
displayName: string;
|
|
694
694
|
};
|
|
695
695
|
Boolean: {
|
|
696
|
-
<Decorator_5 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "
|
|
697
|
-
AvatarUpload: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
698
|
-
FileUploadInline: react1168.ForwardRefExoticComponent<(Omit<Partial<
|
|
696
|
+
<Decorator_5 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_5 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
697
|
+
AvatarUpload: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.AvatarUploadProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
698
|
+
FileUploadInline: react1168.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
699
699
|
multiple: true;
|
|
700
|
-
value?:
|
|
701
|
-
onChange?:
|
|
702
|
-
} &
|
|
700
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata[];
|
|
701
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeMultipleFiles;
|
|
702
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
703
703
|
multiple?: false;
|
|
704
|
-
value?:
|
|
705
|
-
onChange?:
|
|
706
|
-
} &
|
|
707
|
-
IconPicker: react1168.ForwardRefExoticComponent<Partial<Omit<
|
|
708
|
-
providers?:
|
|
704
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata | null;
|
|
705
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeSingleFile;
|
|
706
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref">) & react1168.RefAttributes<unknown>>;
|
|
707
|
+
IconPicker: react1168.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui135.IconPickerProps, "providers"> & {
|
|
708
|
+
providers?: _pixpilot_shadcn_ui135.IconProviderProps[];
|
|
709
709
|
}> & react1168.RefAttributes<unknown>>;
|
|
710
|
-
FileUpload: react1168.ForwardRefExoticComponent<(Omit<Partial<
|
|
710
|
+
FileUpload: react1168.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
711
711
|
multiple: true;
|
|
712
|
-
value?:
|
|
713
|
-
onChange?:
|
|
714
|
-
} &
|
|
712
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata[];
|
|
713
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeMultipleFiles;
|
|
714
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
715
715
|
multiple?: false;
|
|
716
|
-
value?:
|
|
717
|
-
onChange?:
|
|
718
|
-
} &
|
|
716
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata | null;
|
|
717
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeSingleFile;
|
|
718
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref">) & react1168.RefAttributes<unknown>>;
|
|
719
719
|
RichTextEditor: react1168.FC;
|
|
720
|
-
ColorPicker: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
720
|
+
ColorPicker: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.ColorPickerProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
721
721
|
Combobox: react1168.FC;
|
|
722
722
|
ColorSelect: react1168.FC;
|
|
723
|
-
Rating: react1168.ForwardRefExoticComponent<Partial<
|
|
723
|
+
Rating: react1168.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui135.RatingProps & {
|
|
724
724
|
children?: react1168.ReactNode | undefined;
|
|
725
725
|
}> & react1168.RefAttributes<unknown>>;
|
|
726
|
-
Slider: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
727
|
-
SliderInput: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
728
|
-
SliderSelect: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
729
|
-
TagsInput: typeof
|
|
730
|
-
TagsInputInLine: react1168.ForwardRefExoticComponent<Partial<
|
|
726
|
+
Slider: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
727
|
+
SliderInput: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderInputProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
728
|
+
SliderSelect: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderSelectProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
729
|
+
TagsInput: typeof _pixpilot_shadcn_ui135.TagsInput;
|
|
730
|
+
TagsInputInLine: react1168.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui135.TagsInputProps> & react1168.RefAttributes<unknown>>;
|
|
731
731
|
ArrayCards: ComposedArrayProps;
|
|
732
732
|
ArrayCollapse: react1168.FC<ArrayComponentProps & {
|
|
733
733
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -750,7 +750,7 @@ declare const SchemaFieldExtended: {
|
|
|
750
750
|
value?: Date;
|
|
751
751
|
onChange?: (date: Date | undefined) => void;
|
|
752
752
|
placeholder?: string;
|
|
753
|
-
} & Omit<
|
|
753
|
+
} & Omit<_pixpilot_shadcn_ui135.DatePickerProps, "onSelect" | "selected" | "mode">> & react1168.RefAttributes<unknown>>;
|
|
754
754
|
FormGrid: typeof FormGrid;
|
|
755
755
|
FormItem: react1168.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
756
756
|
children?: react1168.ReactNode | undefined;
|
|
@@ -759,8 +759,8 @@ declare const SchemaFieldExtended: {
|
|
|
759
759
|
children?: React.ReactNode;
|
|
760
760
|
value?: string;
|
|
761
761
|
}> & react1168.RefAttributes<unknown>>;
|
|
762
|
-
IconToggle: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
763
|
-
ToggleButton: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
762
|
+
IconToggle: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui135.IconToggleProps, "ref"> & react1168.RefAttributes<HTMLButtonElement>>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
763
|
+
ToggleButton: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui135.ToggleButtonProps, "ref"> & react1168.RefAttributes<HTMLButtonElement>>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
764
764
|
Input: react1168.ForwardRefExoticComponent<Omit<Partial<react1168.ClassAttributes<HTMLInputElement> & react1168.InputHTMLAttributes<HTMLInputElement> & {
|
|
765
765
|
prefix?: React.ReactNode;
|
|
766
766
|
suffix?: React.ReactNode;
|
|
@@ -786,41 +786,41 @@ declare const SchemaFieldExtended: {
|
|
|
786
786
|
displayName: string;
|
|
787
787
|
};
|
|
788
788
|
Date: {
|
|
789
|
-
<Decorator_6 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "
|
|
790
|
-
AvatarUpload: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
791
|
-
FileUploadInline: react1168.ForwardRefExoticComponent<(Omit<Partial<
|
|
789
|
+
<Decorator_6 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_6 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
790
|
+
AvatarUpload: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.AvatarUploadProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
791
|
+
FileUploadInline: react1168.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
792
792
|
multiple: true;
|
|
793
|
-
value?:
|
|
794
|
-
onChange?:
|
|
795
|
-
} &
|
|
793
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata[];
|
|
794
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeMultipleFiles;
|
|
795
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
796
796
|
multiple?: false;
|
|
797
|
-
value?:
|
|
798
|
-
onChange?:
|
|
799
|
-
} &
|
|
800
|
-
IconPicker: react1168.ForwardRefExoticComponent<Partial<Omit<
|
|
801
|
-
providers?:
|
|
797
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata | null;
|
|
798
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeSingleFile;
|
|
799
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref">) & react1168.RefAttributes<unknown>>;
|
|
800
|
+
IconPicker: react1168.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui135.IconPickerProps, "providers"> & {
|
|
801
|
+
providers?: _pixpilot_shadcn_ui135.IconProviderProps[];
|
|
802
802
|
}> & react1168.RefAttributes<unknown>>;
|
|
803
|
-
FileUpload: react1168.ForwardRefExoticComponent<(Omit<Partial<
|
|
803
|
+
FileUpload: react1168.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
804
804
|
multiple: true;
|
|
805
|
-
value?:
|
|
806
|
-
onChange?:
|
|
807
|
-
} &
|
|
805
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata[];
|
|
806
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeMultipleFiles;
|
|
807
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
808
808
|
multiple?: false;
|
|
809
|
-
value?:
|
|
810
|
-
onChange?:
|
|
811
|
-
} &
|
|
809
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata | null;
|
|
810
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeSingleFile;
|
|
811
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref">) & react1168.RefAttributes<unknown>>;
|
|
812
812
|
RichTextEditor: react1168.FC;
|
|
813
|
-
ColorPicker: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
813
|
+
ColorPicker: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.ColorPickerProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
814
814
|
Combobox: react1168.FC;
|
|
815
815
|
ColorSelect: react1168.FC;
|
|
816
|
-
Rating: react1168.ForwardRefExoticComponent<Partial<
|
|
816
|
+
Rating: react1168.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui135.RatingProps & {
|
|
817
817
|
children?: react1168.ReactNode | undefined;
|
|
818
818
|
}> & react1168.RefAttributes<unknown>>;
|
|
819
|
-
Slider: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
820
|
-
SliderInput: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
821
|
-
SliderSelect: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
822
|
-
TagsInput: typeof
|
|
823
|
-
TagsInputInLine: react1168.ForwardRefExoticComponent<Partial<
|
|
819
|
+
Slider: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
820
|
+
SliderInput: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderInputProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
821
|
+
SliderSelect: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderSelectProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
822
|
+
TagsInput: typeof _pixpilot_shadcn_ui135.TagsInput;
|
|
823
|
+
TagsInputInLine: react1168.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui135.TagsInputProps> & react1168.RefAttributes<unknown>>;
|
|
824
824
|
ArrayCards: ComposedArrayProps;
|
|
825
825
|
ArrayCollapse: react1168.FC<ArrayComponentProps & {
|
|
826
826
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -843,7 +843,7 @@ declare const SchemaFieldExtended: {
|
|
|
843
843
|
value?: Date;
|
|
844
844
|
onChange?: (date: Date | undefined) => void;
|
|
845
845
|
placeholder?: string;
|
|
846
|
-
} & Omit<
|
|
846
|
+
} & Omit<_pixpilot_shadcn_ui135.DatePickerProps, "onSelect" | "selected" | "mode">> & react1168.RefAttributes<unknown>>;
|
|
847
847
|
FormGrid: typeof FormGrid;
|
|
848
848
|
FormItem: react1168.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
849
849
|
children?: react1168.ReactNode | undefined;
|
|
@@ -852,8 +852,8 @@ declare const SchemaFieldExtended: {
|
|
|
852
852
|
children?: React.ReactNode;
|
|
853
853
|
value?: string;
|
|
854
854
|
}> & react1168.RefAttributes<unknown>>;
|
|
855
|
-
IconToggle: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
856
|
-
ToggleButton: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
855
|
+
IconToggle: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui135.IconToggleProps, "ref"> & react1168.RefAttributes<HTMLButtonElement>>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
856
|
+
ToggleButton: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui135.ToggleButtonProps, "ref"> & react1168.RefAttributes<HTMLButtonElement>>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
857
857
|
Input: react1168.ForwardRefExoticComponent<Omit<Partial<react1168.ClassAttributes<HTMLInputElement> & react1168.InputHTMLAttributes<HTMLInputElement> & {
|
|
858
858
|
prefix?: React.ReactNode;
|
|
859
859
|
suffix?: React.ReactNode;
|
|
@@ -879,41 +879,41 @@ declare const SchemaFieldExtended: {
|
|
|
879
879
|
displayName: string;
|
|
880
880
|
};
|
|
881
881
|
DateTime: {
|
|
882
|
-
<Decorator_7 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "
|
|
883
|
-
AvatarUpload: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
884
|
-
FileUploadInline: react1168.ForwardRefExoticComponent<(Omit<Partial<
|
|
882
|
+
<Decorator_7 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_7 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
883
|
+
AvatarUpload: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.AvatarUploadProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
884
|
+
FileUploadInline: react1168.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
885
885
|
multiple: true;
|
|
886
|
-
value?:
|
|
887
|
-
onChange?:
|
|
888
|
-
} &
|
|
886
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata[];
|
|
887
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeMultipleFiles;
|
|
888
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
889
889
|
multiple?: false;
|
|
890
|
-
value?:
|
|
891
|
-
onChange?:
|
|
892
|
-
} &
|
|
893
|
-
IconPicker: react1168.ForwardRefExoticComponent<Partial<Omit<
|
|
894
|
-
providers?:
|
|
890
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata | null;
|
|
891
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeSingleFile;
|
|
892
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref">) & react1168.RefAttributes<unknown>>;
|
|
893
|
+
IconPicker: react1168.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui135.IconPickerProps, "providers"> & {
|
|
894
|
+
providers?: _pixpilot_shadcn_ui135.IconProviderProps[];
|
|
895
895
|
}> & react1168.RefAttributes<unknown>>;
|
|
896
|
-
FileUpload: react1168.ForwardRefExoticComponent<(Omit<Partial<
|
|
896
|
+
FileUpload: react1168.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
897
897
|
multiple: true;
|
|
898
|
-
value?:
|
|
899
|
-
onChange?:
|
|
900
|
-
} &
|
|
898
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata[];
|
|
899
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeMultipleFiles;
|
|
900
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
901
901
|
multiple?: false;
|
|
902
|
-
value?:
|
|
903
|
-
onChange?:
|
|
904
|
-
} &
|
|
902
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata | null;
|
|
903
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeSingleFile;
|
|
904
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref">) & react1168.RefAttributes<unknown>>;
|
|
905
905
|
RichTextEditor: react1168.FC;
|
|
906
|
-
ColorPicker: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
906
|
+
ColorPicker: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.ColorPickerProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
907
907
|
Combobox: react1168.FC;
|
|
908
908
|
ColorSelect: react1168.FC;
|
|
909
|
-
Rating: react1168.ForwardRefExoticComponent<Partial<
|
|
909
|
+
Rating: react1168.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui135.RatingProps & {
|
|
910
910
|
children?: react1168.ReactNode | undefined;
|
|
911
911
|
}> & react1168.RefAttributes<unknown>>;
|
|
912
|
-
Slider: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
913
|
-
SliderInput: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
914
|
-
SliderSelect: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
915
|
-
TagsInput: typeof
|
|
916
|
-
TagsInputInLine: react1168.ForwardRefExoticComponent<Partial<
|
|
912
|
+
Slider: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
913
|
+
SliderInput: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderInputProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
914
|
+
SliderSelect: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderSelectProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
915
|
+
TagsInput: typeof _pixpilot_shadcn_ui135.TagsInput;
|
|
916
|
+
TagsInputInLine: react1168.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui135.TagsInputProps> & react1168.RefAttributes<unknown>>;
|
|
917
917
|
ArrayCards: ComposedArrayProps;
|
|
918
918
|
ArrayCollapse: react1168.FC<ArrayComponentProps & {
|
|
919
919
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -936,7 +936,7 @@ declare const SchemaFieldExtended: {
|
|
|
936
936
|
value?: Date;
|
|
937
937
|
onChange?: (date: Date | undefined) => void;
|
|
938
938
|
placeholder?: string;
|
|
939
|
-
} & Omit<
|
|
939
|
+
} & Omit<_pixpilot_shadcn_ui135.DatePickerProps, "onSelect" | "selected" | "mode">> & react1168.RefAttributes<unknown>>;
|
|
940
940
|
FormGrid: typeof FormGrid;
|
|
941
941
|
FormItem: react1168.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
942
942
|
children?: react1168.ReactNode | undefined;
|
|
@@ -945,8 +945,8 @@ declare const SchemaFieldExtended: {
|
|
|
945
945
|
children?: React.ReactNode;
|
|
946
946
|
value?: string;
|
|
947
947
|
}> & react1168.RefAttributes<unknown>>;
|
|
948
|
-
IconToggle: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
949
|
-
ToggleButton: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
948
|
+
IconToggle: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui135.IconToggleProps, "ref"> & react1168.RefAttributes<HTMLButtonElement>>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
949
|
+
ToggleButton: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui135.ToggleButtonProps, "ref"> & react1168.RefAttributes<HTMLButtonElement>>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
950
950
|
Input: react1168.ForwardRefExoticComponent<Omit<Partial<react1168.ClassAttributes<HTMLInputElement> & react1168.InputHTMLAttributes<HTMLInputElement> & {
|
|
951
951
|
prefix?: React.ReactNode;
|
|
952
952
|
suffix?: React.ReactNode;
|
|
@@ -972,41 +972,41 @@ declare const SchemaFieldExtended: {
|
|
|
972
972
|
displayName: string;
|
|
973
973
|
};
|
|
974
974
|
Void: {
|
|
975
|
-
<Decorator_8 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "
|
|
976
|
-
AvatarUpload: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
977
|
-
FileUploadInline: react1168.ForwardRefExoticComponent<(Omit<Partial<
|
|
975
|
+
<Decorator_8 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_8 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
976
|
+
AvatarUpload: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.AvatarUploadProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
977
|
+
FileUploadInline: react1168.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
978
978
|
multiple: true;
|
|
979
|
-
value?:
|
|
980
|
-
onChange?:
|
|
981
|
-
} &
|
|
979
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata[];
|
|
980
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeMultipleFiles;
|
|
981
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
982
982
|
multiple?: false;
|
|
983
|
-
value?:
|
|
984
|
-
onChange?:
|
|
985
|
-
} &
|
|
986
|
-
IconPicker: react1168.ForwardRefExoticComponent<Partial<Omit<
|
|
987
|
-
providers?:
|
|
983
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata | null;
|
|
984
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeSingleFile;
|
|
985
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref">) & react1168.RefAttributes<unknown>>;
|
|
986
|
+
IconPicker: react1168.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui135.IconPickerProps, "providers"> & {
|
|
987
|
+
providers?: _pixpilot_shadcn_ui135.IconProviderProps[];
|
|
988
988
|
}> & react1168.RefAttributes<unknown>>;
|
|
989
|
-
FileUpload: react1168.ForwardRefExoticComponent<(Omit<Partial<
|
|
989
|
+
FileUpload: react1168.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
990
990
|
multiple: true;
|
|
991
|
-
value?:
|
|
992
|
-
onChange?:
|
|
993
|
-
} &
|
|
991
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata[];
|
|
992
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeMultipleFiles;
|
|
993
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
994
994
|
multiple?: false;
|
|
995
|
-
value?:
|
|
996
|
-
onChange?:
|
|
997
|
-
} &
|
|
995
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata | null;
|
|
996
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeSingleFile;
|
|
997
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref">) & react1168.RefAttributes<unknown>>;
|
|
998
998
|
RichTextEditor: react1168.FC;
|
|
999
|
-
ColorPicker: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
999
|
+
ColorPicker: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.ColorPickerProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
1000
1000
|
Combobox: react1168.FC;
|
|
1001
1001
|
ColorSelect: react1168.FC;
|
|
1002
|
-
Rating: react1168.ForwardRefExoticComponent<Partial<
|
|
1002
|
+
Rating: react1168.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui135.RatingProps & {
|
|
1003
1003
|
children?: react1168.ReactNode | undefined;
|
|
1004
1004
|
}> & react1168.RefAttributes<unknown>>;
|
|
1005
|
-
Slider: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
1006
|
-
SliderInput: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
1007
|
-
SliderSelect: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
1008
|
-
TagsInput: typeof
|
|
1009
|
-
TagsInputInLine: react1168.ForwardRefExoticComponent<Partial<
|
|
1005
|
+
Slider: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
1006
|
+
SliderInput: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderInputProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
1007
|
+
SliderSelect: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderSelectProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
1008
|
+
TagsInput: typeof _pixpilot_shadcn_ui135.TagsInput;
|
|
1009
|
+
TagsInputInLine: react1168.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui135.TagsInputProps> & react1168.RefAttributes<unknown>>;
|
|
1010
1010
|
ArrayCards: ComposedArrayProps;
|
|
1011
1011
|
ArrayCollapse: react1168.FC<ArrayComponentProps & {
|
|
1012
1012
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -1029,7 +1029,7 @@ declare const SchemaFieldExtended: {
|
|
|
1029
1029
|
value?: Date;
|
|
1030
1030
|
onChange?: (date: Date | undefined) => void;
|
|
1031
1031
|
placeholder?: string;
|
|
1032
|
-
} & Omit<
|
|
1032
|
+
} & Omit<_pixpilot_shadcn_ui135.DatePickerProps, "onSelect" | "selected" | "mode">> & react1168.RefAttributes<unknown>>;
|
|
1033
1033
|
FormGrid: typeof FormGrid;
|
|
1034
1034
|
FormItem: react1168.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
1035
1035
|
children?: react1168.ReactNode | undefined;
|
|
@@ -1038,8 +1038,8 @@ declare const SchemaFieldExtended: {
|
|
|
1038
1038
|
children?: React.ReactNode;
|
|
1039
1039
|
value?: string;
|
|
1040
1040
|
}> & react1168.RefAttributes<unknown>>;
|
|
1041
|
-
IconToggle: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
1042
|
-
ToggleButton: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
1041
|
+
IconToggle: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui135.IconToggleProps, "ref"> & react1168.RefAttributes<HTMLButtonElement>>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
1042
|
+
ToggleButton: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui135.ToggleButtonProps, "ref"> & react1168.RefAttributes<HTMLButtonElement>>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
1043
1043
|
Input: react1168.ForwardRefExoticComponent<Omit<Partial<react1168.ClassAttributes<HTMLInputElement> & react1168.InputHTMLAttributes<HTMLInputElement> & {
|
|
1044
1044
|
prefix?: React.ReactNode;
|
|
1045
1045
|
suffix?: React.ReactNode;
|
|
@@ -1065,41 +1065,41 @@ declare const SchemaFieldExtended: {
|
|
|
1065
1065
|
displayName: string;
|
|
1066
1066
|
};
|
|
1067
1067
|
Number: {
|
|
1068
|
-
<Decorator_9 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "
|
|
1069
|
-
AvatarUpload: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
1070
|
-
FileUploadInline: react1168.ForwardRefExoticComponent<(Omit<Partial<
|
|
1068
|
+
<Decorator_9 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_9 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
1069
|
+
AvatarUpload: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.AvatarUploadProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
1070
|
+
FileUploadInline: react1168.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
1071
1071
|
multiple: true;
|
|
1072
|
-
value?:
|
|
1073
|
-
onChange?:
|
|
1074
|
-
} &
|
|
1072
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata[];
|
|
1073
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeMultipleFiles;
|
|
1074
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
1075
1075
|
multiple?: false;
|
|
1076
|
-
value?:
|
|
1077
|
-
onChange?:
|
|
1078
|
-
} &
|
|
1079
|
-
IconPicker: react1168.ForwardRefExoticComponent<Partial<Omit<
|
|
1080
|
-
providers?:
|
|
1076
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata | null;
|
|
1077
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeSingleFile;
|
|
1078
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref">) & react1168.RefAttributes<unknown>>;
|
|
1079
|
+
IconPicker: react1168.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui135.IconPickerProps, "providers"> & {
|
|
1080
|
+
providers?: _pixpilot_shadcn_ui135.IconProviderProps[];
|
|
1081
1081
|
}> & react1168.RefAttributes<unknown>>;
|
|
1082
|
-
FileUpload: react1168.ForwardRefExoticComponent<(Omit<Partial<
|
|
1082
|
+
FileUpload: react1168.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
1083
1083
|
multiple: true;
|
|
1084
|
-
value?:
|
|
1085
|
-
onChange?:
|
|
1086
|
-
} &
|
|
1084
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata[];
|
|
1085
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeMultipleFiles;
|
|
1086
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui135.FileUploadInlineBaseProps & _pixpilot_shadcn_ui135.FileUploadRootPropsBaseProps & {
|
|
1087
1087
|
multiple?: false;
|
|
1088
|
-
value?:
|
|
1089
|
-
onChange?:
|
|
1090
|
-
} &
|
|
1088
|
+
value?: _pixpilot_shadcn_ui135.FileMetadata | null;
|
|
1089
|
+
onChange?: _pixpilot_shadcn_ui135.OnChangeSingleFile;
|
|
1090
|
+
} & _pixpilot_shadcn_ui135.FileUploadBaseProps>, "ref">) & react1168.RefAttributes<unknown>>;
|
|
1091
1091
|
RichTextEditor: react1168.FC;
|
|
1092
|
-
ColorPicker: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
1092
|
+
ColorPicker: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.ColorPickerProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
1093
1093
|
Combobox: react1168.FC;
|
|
1094
1094
|
ColorSelect: react1168.FC;
|
|
1095
|
-
Rating: react1168.ForwardRefExoticComponent<Partial<
|
|
1095
|
+
Rating: react1168.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui135.RatingProps & {
|
|
1096
1096
|
children?: react1168.ReactNode | undefined;
|
|
1097
1097
|
}> & react1168.RefAttributes<unknown>>;
|
|
1098
|
-
Slider: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
1099
|
-
SliderInput: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
1100
|
-
SliderSelect: react1168.ForwardRefExoticComponent<Omit<Partial<
|
|
1101
|
-
TagsInput: typeof
|
|
1102
|
-
TagsInputInLine: react1168.ForwardRefExoticComponent<Partial<
|
|
1098
|
+
Slider: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
1099
|
+
SliderInput: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderInputProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
1100
|
+
SliderSelect: react1168.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui135.SliderSelectProps>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
1101
|
+
TagsInput: typeof _pixpilot_shadcn_ui135.TagsInput;
|
|
1102
|
+
TagsInputInLine: react1168.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui135.TagsInputProps> & react1168.RefAttributes<unknown>>;
|
|
1103
1103
|
ArrayCards: ComposedArrayProps;
|
|
1104
1104
|
ArrayCollapse: react1168.FC<ArrayComponentProps & {
|
|
1105
1105
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -1122,7 +1122,7 @@ declare const SchemaFieldExtended: {
|
|
|
1122
1122
|
value?: Date;
|
|
1123
1123
|
onChange?: (date: Date | undefined) => void;
|
|
1124
1124
|
placeholder?: string;
|
|
1125
|
-
} & Omit<
|
|
1125
|
+
} & Omit<_pixpilot_shadcn_ui135.DatePickerProps, "onSelect" | "selected" | "mode">> & react1168.RefAttributes<unknown>>;
|
|
1126
1126
|
FormGrid: typeof FormGrid;
|
|
1127
1127
|
FormItem: react1168.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
1128
1128
|
children?: react1168.ReactNode | undefined;
|
|
@@ -1131,8 +1131,8 @@ declare const SchemaFieldExtended: {
|
|
|
1131
1131
|
children?: React.ReactNode;
|
|
1132
1132
|
value?: string;
|
|
1133
1133
|
}> & react1168.RefAttributes<unknown>>;
|
|
1134
|
-
IconToggle: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
1135
|
-
ToggleButton: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
1134
|
+
IconToggle: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui135.IconToggleProps, "ref"> & react1168.RefAttributes<HTMLButtonElement>>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
1135
|
+
ToggleButton: react1168.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui135.ToggleButtonProps, "ref"> & react1168.RefAttributes<HTMLButtonElement>>, "ref"> & react1168.RefAttributes<unknown>>;
|
|
1136
1136
|
Input: react1168.ForwardRefExoticComponent<Omit<Partial<react1168.ClassAttributes<HTMLInputElement> & react1168.InputHTMLAttributes<HTMLInputElement> & {
|
|
1137
1137
|
prefix?: React.ReactNode;
|
|
1138
1138
|
suffix?: React.ReactNode;
|