@pixpilot/formily-shadcn 0.9.1 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +75 -0
- package/dist/components/array-base/components/array-item-label.cjs +1 -1
- package/dist/components/array-base/components/array-item-label.js +1 -1
- package/dist/components/checkbox.d.cts +2 -2
- package/dist/components/checkbox.d.ts +2 -2
- package/dist/components/column.d.ts +2 -2
- package/dist/components/context/form-context.d.cts +20 -16
- package/dist/components/context/form-context.d.ts +20 -16
- package/dist/components/context/index.d.cts +1 -1
- package/dist/components/context/index.d.ts +1 -1
- package/dist/components/date-picker.d.cts +3 -3
- package/dist/components/date-picker.d.ts +3 -3
- package/dist/components/file-upload/file-upload-inline.d.ts +8 -8
- package/dist/components/file-upload/file-upload.d.ts +8 -8
- package/dist/components/file-upload/use-file-upload-feedback.cjs +2 -2
- package/dist/components/file-upload/use-file-upload-feedback.js +2 -2
- package/dist/components/form-grid.d.ts +2 -2
- package/dist/components/form-items-container.cjs +2 -5
- package/dist/components/form-items-container.js +2 -5
- package/dist/components/form.cjs +3 -5
- package/dist/components/form.d.cts +1 -2
- package/dist/components/form.d.ts +1 -2
- package/dist/components/form.js +3 -5
- package/dist/components/icon-picker.cjs +2 -2
- package/dist/components/icon-picker.d.ts +3 -3
- package/dist/components/icon-picker.js +2 -2
- package/dist/components/input.d.cts +2 -2
- package/dist/components/json-schema-form-renderer.cjs +34 -7
- package/dist/components/json-schema-form-renderer.d.cts +8 -3
- package/dist/components/json-schema-form-renderer.d.ts +8 -3
- package/dist/components/json-schema-form-renderer.js +32 -7
- package/dist/components/number-input.d.cts +2 -2
- package/dist/components/number-input.d.ts +2 -2
- package/dist/components/object-container.cjs +33 -7
- package/dist/components/object-container.js +34 -8
- package/dist/components/radio.d.ts +2 -2
- package/dist/components/rich-text-editor.cjs +1 -1
- package/dist/components/rich-text-editor.js +1 -1
- package/dist/components/row.d.ts +2 -2
- package/dist/components/schema-field/index.d.cts +1 -1
- package/dist/components/schema-field/index.d.ts +1 -1
- package/dist/components/schema-field/index.js +1 -1
- package/dist/components/schema-field/schema-field-basics.cjs +4 -4
- package/dist/components/schema-field/schema-field-basics.d.cts +194 -194
- package/dist/components/schema-field/schema-field-basics.d.ts +209 -209
- package/dist/components/schema-field/schema-field-basics.js +3 -3
- package/dist/components/schema-field/schema-field-extended.d.cts +427 -427
- package/dist/components/schema-field/schema-field-extended.d.ts +427 -427
- package/dist/components/schema-field/schema-field.cjs +1 -1
- package/dist/components/schema-field/schema-field.d.cts +237 -237
- package/dist/components/schema-field/schema-field.d.ts +236 -236
- package/dist/components/schema-field/schema-field.js +2 -2
- package/dist/components/separator.d.cts +2 -2
- package/dist/components/separator.d.ts +2 -2
- package/dist/components/slider.d.cts +2 -2
- package/dist/components/slider.d.ts +2 -2
- package/dist/components/switch.d.cts +2 -2
- package/dist/components/switch.d.ts +2 -2
- package/dist/components/tags-input-inline.d.cts +2 -2
- package/dist/components/textarea.d.cts +2 -2
- package/dist/components/textarea.d.ts +2 -2
- package/dist/hooks/index.js +1 -1
- package/dist/hooks/use-form-context.cjs +5 -0
- package/dist/hooks/use-form-context.js +5 -1
- package/dist/hooks/use-label.cjs +9 -2
- package/dist/hooks/use-label.js +9 -2
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/types/form.d.cts +0 -6
- package/dist/types/form.d.ts +0 -6
- package/dist/utils/extract-fields-decorators.cjs +37 -0
- package/dist/utils/extract-fields-decorators.js +36 -0
- package/dist/utils/index.cjs +2 -0
- package/dist/utils/index.js +3 -1
- package/dist/utils/resolve-responsive-space.cjs +45 -89
- package/dist/utils/resolve-responsive-space.js +42 -83
- package/dist/utils/transform-schema.cjs +9 -2
- package/dist/utils/transform-schema.js +9 -2
- package/dist/utils/validate-schema-components.cjs +45 -0
- package/dist/utils/validate-schema-components.js +43 -0
- package/package.json +4 -3
|
@@ -5,636 +5,636 @@ import { FormGrid } from "../form-grid.js";
|
|
|
5
5
|
import { FormItemProps } from "../form-item.js";
|
|
6
6
|
import { Row } from "../row.js";
|
|
7
7
|
import { ObjectContainerProps } from "../object-container.js";
|
|
8
|
-
import * as
|
|
9
|
-
import * as
|
|
10
|
-
import * as
|
|
11
|
-
import * as
|
|
12
|
-
import * as
|
|
13
|
-
import * as
|
|
14
|
-
import * as
|
|
8
|
+
import * as _formily_react23 from "@formily/react";
|
|
9
|
+
import * as react758 from "react";
|
|
10
|
+
import * as _pixpilot_shadcn_ui56 from "@pixpilot/shadcn-ui";
|
|
11
|
+
import * as _formily_core1 from "@formily/core";
|
|
12
|
+
import * as _radix_ui_react_checkbox20 from "@radix-ui/react-checkbox";
|
|
13
|
+
import * as _radix_ui_react_switch20 from "@radix-ui/react-switch";
|
|
14
|
+
import * as _radix_ui_react_separator20 from "@radix-ui/react-separator";
|
|
15
15
|
|
|
16
16
|
//#region src/components/schema-field/schema-field-extended.d.ts
|
|
17
17
|
declare const schemaFieldExtendedComponents: {
|
|
18
|
-
FileUploadInline:
|
|
18
|
+
FileUploadInline: react758.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
19
19
|
multiple: true;
|
|
20
|
-
value?:
|
|
21
|
-
onChange?:
|
|
22
|
-
} &
|
|
20
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata[];
|
|
21
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeMultipleFiles;
|
|
22
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
23
23
|
multiple?: false;
|
|
24
|
-
value?:
|
|
25
|
-
onChange?:
|
|
26
|
-
} &
|
|
27
|
-
IconPicker:
|
|
28
|
-
providers?:
|
|
29
|
-
}> &
|
|
30
|
-
FileUpload:
|
|
24
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata | null;
|
|
25
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeSingleFile;
|
|
26
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref">) & react758.RefAttributes<unknown>>;
|
|
27
|
+
IconPicker: react758.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui56.IconPickerProps, "providers"> & {
|
|
28
|
+
providers?: _pixpilot_shadcn_ui56.IconProviderProps[];
|
|
29
|
+
}> & react758.RefAttributes<unknown>>;
|
|
30
|
+
FileUpload: react758.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
31
31
|
multiple: true;
|
|
32
|
-
value?:
|
|
33
|
-
onChange?:
|
|
34
|
-
} &
|
|
32
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata[];
|
|
33
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeMultipleFiles;
|
|
34
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
35
35
|
multiple?: false;
|
|
36
|
-
value?:
|
|
37
|
-
onChange?:
|
|
38
|
-
} &
|
|
39
|
-
RichTextEditor:
|
|
40
|
-
Combobox:
|
|
41
|
-
TagsInput: typeof
|
|
42
|
-
TagsInputInLine:
|
|
43
|
-
Slider:
|
|
44
|
-
FormItem:
|
|
45
|
-
children?:
|
|
46
|
-
}>, "ref"> &
|
|
47
|
-
Hidden:
|
|
36
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata | null;
|
|
37
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeSingleFile;
|
|
38
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref">) & react758.RefAttributes<unknown>>;
|
|
39
|
+
RichTextEditor: react758.FC;
|
|
40
|
+
Combobox: react758.FC;
|
|
41
|
+
TagsInput: typeof _pixpilot_shadcn_ui56.TagsInput;
|
|
42
|
+
TagsInputInLine: react758.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui56.TagsInputProps> & react758.RefAttributes<unknown>>;
|
|
43
|
+
Slider: react758.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui56.SliderProps>, "ref"> & react758.RefAttributes<unknown>>;
|
|
44
|
+
FormItem: react758.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
45
|
+
children?: react758.ReactNode | undefined;
|
|
46
|
+
}>, "ref"> & react758.RefAttributes<unknown>>;
|
|
47
|
+
Hidden: react758.ForwardRefExoticComponent<Partial<{
|
|
48
48
|
children?: React.ReactNode;
|
|
49
49
|
value?: string;
|
|
50
|
-
}> &
|
|
51
|
-
Input:
|
|
52
|
-
Textarea:
|
|
53
|
-
NumberInput:
|
|
54
|
-
Checkbox:
|
|
55
|
-
Radio:
|
|
56
|
-
Select:
|
|
57
|
-
Switch:
|
|
58
|
-
DatePicker:
|
|
50
|
+
}> & react758.RefAttributes<unknown>>;
|
|
51
|
+
Input: react758.ForwardRefExoticComponent<Omit<Partial<react758.ClassAttributes<HTMLInputElement> & react758.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
52
|
+
Textarea: react758.ForwardRefExoticComponent<Omit<Partial<react758.ClassAttributes<HTMLTextAreaElement> & react758.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
53
|
+
NumberInput: react758.ForwardRefExoticComponent<Omit<Partial<react758.ClassAttributes<HTMLInputElement> & react758.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
54
|
+
Checkbox: react758.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox20.CheckboxProps & react758.RefAttributes<HTMLButtonElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
55
|
+
Radio: react758.FC;
|
|
56
|
+
Select: react758.FC;
|
|
57
|
+
Switch: react758.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch20.SwitchProps & react758.RefAttributes<HTMLButtonElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
58
|
+
DatePicker: react758.ForwardRefExoticComponent<Partial<{
|
|
59
59
|
value?: Date;
|
|
60
60
|
onChange?: (date: Date | undefined) => void;
|
|
61
61
|
placeholder?: string;
|
|
62
|
-
} & Omit<
|
|
62
|
+
} & Omit<_pixpilot_shadcn_ui56.DatePickerProps, "onSelect" | "selected" | "mode">> & react758.RefAttributes<unknown>>;
|
|
63
63
|
Row: typeof Row;
|
|
64
64
|
Column: typeof Column;
|
|
65
65
|
FormGrid: typeof FormGrid;
|
|
66
|
-
Separator:
|
|
66
|
+
Separator: react758.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator20.SeparatorProps & react758.RefAttributes<HTMLDivElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
67
67
|
ArrayCards: ComposedArrayProps;
|
|
68
|
-
ArrayDialog:
|
|
69
|
-
ArrayCollapse:
|
|
68
|
+
ArrayDialog: react758.FC<ArrayComponentProps>;
|
|
69
|
+
ArrayCollapse: react758.FC<ArrayComponentProps & {
|
|
70
70
|
defaultActiveKey?: Array<string | number>;
|
|
71
71
|
mode?: "accordion" | "multiple";
|
|
72
72
|
}>;
|
|
73
|
-
ArrayPopover:
|
|
74
|
-
ObjectContainer:
|
|
73
|
+
ArrayPopover: react758.FC<ArrayComponentProps>;
|
|
74
|
+
ObjectContainer: react758.FC<ObjectContainerProps>;
|
|
75
75
|
};
|
|
76
76
|
/**
|
|
77
77
|
* SchemaField with all Shadcn Formily components pre-registered
|
|
78
78
|
* Use this to render forms from JSON Schema
|
|
79
79
|
*/
|
|
80
80
|
declare const SchemaFieldExtended: {
|
|
81
|
-
<Decorator extends
|
|
81
|
+
<Decorator extends _formily_react23.JSXComponent, Component extends _formily_react23.JSXComponent>(props: _formily_react23.ISchemaFieldProps<Decorator, Component, _formily_core1.ObjectField<Decorator, Component>>): JSX.Element;
|
|
82
82
|
displayName: string;
|
|
83
83
|
Markup: {
|
|
84
|
-
<Decorator_1 extends "Radio" | "
|
|
85
|
-
FileUploadInline:
|
|
84
|
+
<Decorator_1 extends "Radio" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_1 extends "Radio" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react23.ISchemaMarkupFieldProps<{
|
|
85
|
+
FileUploadInline: react758.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
86
86
|
multiple: true;
|
|
87
|
-
value?:
|
|
88
|
-
onChange?:
|
|
89
|
-
} &
|
|
87
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata[];
|
|
88
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeMultipleFiles;
|
|
89
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
90
90
|
multiple?: false;
|
|
91
|
-
value?:
|
|
92
|
-
onChange?:
|
|
93
|
-
} &
|
|
94
|
-
IconPicker:
|
|
95
|
-
providers?:
|
|
96
|
-
}> &
|
|
97
|
-
FileUpload:
|
|
91
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata | null;
|
|
92
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeSingleFile;
|
|
93
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref">) & react758.RefAttributes<unknown>>;
|
|
94
|
+
IconPicker: react758.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui56.IconPickerProps, "providers"> & {
|
|
95
|
+
providers?: _pixpilot_shadcn_ui56.IconProviderProps[];
|
|
96
|
+
}> & react758.RefAttributes<unknown>>;
|
|
97
|
+
FileUpload: react758.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
98
98
|
multiple: true;
|
|
99
|
-
value?:
|
|
100
|
-
onChange?:
|
|
101
|
-
} &
|
|
99
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata[];
|
|
100
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeMultipleFiles;
|
|
101
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
102
102
|
multiple?: false;
|
|
103
|
-
value?:
|
|
104
|
-
onChange?:
|
|
105
|
-
} &
|
|
106
|
-
RichTextEditor:
|
|
107
|
-
Combobox:
|
|
108
|
-
TagsInput: typeof
|
|
109
|
-
TagsInputInLine:
|
|
110
|
-
Slider:
|
|
111
|
-
FormItem:
|
|
112
|
-
children?:
|
|
113
|
-
}>, "ref"> &
|
|
114
|
-
Hidden:
|
|
103
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata | null;
|
|
104
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeSingleFile;
|
|
105
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref">) & react758.RefAttributes<unknown>>;
|
|
106
|
+
RichTextEditor: react758.FC;
|
|
107
|
+
Combobox: react758.FC;
|
|
108
|
+
TagsInput: typeof _pixpilot_shadcn_ui56.TagsInput;
|
|
109
|
+
TagsInputInLine: react758.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui56.TagsInputProps> & react758.RefAttributes<unknown>>;
|
|
110
|
+
Slider: react758.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui56.SliderProps>, "ref"> & react758.RefAttributes<unknown>>;
|
|
111
|
+
FormItem: react758.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
112
|
+
children?: react758.ReactNode | undefined;
|
|
113
|
+
}>, "ref"> & react758.RefAttributes<unknown>>;
|
|
114
|
+
Hidden: react758.ForwardRefExoticComponent<Partial<{
|
|
115
115
|
children?: React.ReactNode;
|
|
116
116
|
value?: string;
|
|
117
|
-
}> &
|
|
118
|
-
Input:
|
|
119
|
-
Textarea:
|
|
120
|
-
NumberInput:
|
|
121
|
-
Checkbox:
|
|
122
|
-
Radio:
|
|
123
|
-
Select:
|
|
124
|
-
Switch:
|
|
125
|
-
DatePicker:
|
|
117
|
+
}> & react758.RefAttributes<unknown>>;
|
|
118
|
+
Input: react758.ForwardRefExoticComponent<Omit<Partial<react758.ClassAttributes<HTMLInputElement> & react758.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
119
|
+
Textarea: react758.ForwardRefExoticComponent<Omit<Partial<react758.ClassAttributes<HTMLTextAreaElement> & react758.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
120
|
+
NumberInput: react758.ForwardRefExoticComponent<Omit<Partial<react758.ClassAttributes<HTMLInputElement> & react758.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
121
|
+
Checkbox: react758.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox20.CheckboxProps & react758.RefAttributes<HTMLButtonElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
122
|
+
Radio: react758.FC;
|
|
123
|
+
Select: react758.FC;
|
|
124
|
+
Switch: react758.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch20.SwitchProps & react758.RefAttributes<HTMLButtonElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
125
|
+
DatePicker: react758.ForwardRefExoticComponent<Partial<{
|
|
126
126
|
value?: Date;
|
|
127
127
|
onChange?: (date: Date | undefined) => void;
|
|
128
128
|
placeholder?: string;
|
|
129
|
-
} & Omit<
|
|
129
|
+
} & Omit<_pixpilot_shadcn_ui56.DatePickerProps, "onSelect" | "selected" | "mode">> & react758.RefAttributes<unknown>>;
|
|
130
130
|
Row: typeof Row;
|
|
131
131
|
Column: typeof Column;
|
|
132
132
|
FormGrid: typeof FormGrid;
|
|
133
|
-
Separator:
|
|
133
|
+
Separator: react758.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator20.SeparatorProps & react758.RefAttributes<HTMLDivElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
134
134
|
ArrayCards: ComposedArrayProps;
|
|
135
|
-
ArrayDialog:
|
|
136
|
-
ArrayCollapse:
|
|
135
|
+
ArrayDialog: react758.FC<ArrayComponentProps>;
|
|
136
|
+
ArrayCollapse: react758.FC<ArrayComponentProps & {
|
|
137
137
|
defaultActiveKey?: Array<string | number>;
|
|
138
138
|
mode?: "accordion" | "multiple";
|
|
139
139
|
}>;
|
|
140
|
-
ArrayPopover:
|
|
141
|
-
ObjectContainer:
|
|
140
|
+
ArrayPopover: react758.FC<ArrayComponentProps>;
|
|
141
|
+
ObjectContainer: react758.FC<ObjectContainerProps>;
|
|
142
142
|
}, Component_1, Decorator_1>): JSX.Element;
|
|
143
143
|
displayName: string;
|
|
144
144
|
};
|
|
145
145
|
String: {
|
|
146
|
-
<Decorator_2 extends "Radio" | "
|
|
147
|
-
FileUploadInline:
|
|
146
|
+
<Decorator_2 extends "Radio" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_2 extends "Radio" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react23.ISchemaTypeFieldProps<{
|
|
147
|
+
FileUploadInline: react758.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
148
148
|
multiple: true;
|
|
149
|
-
value?:
|
|
150
|
-
onChange?:
|
|
151
|
-
} &
|
|
149
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata[];
|
|
150
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeMultipleFiles;
|
|
151
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
152
152
|
multiple?: false;
|
|
153
|
-
value?:
|
|
154
|
-
onChange?:
|
|
155
|
-
} &
|
|
156
|
-
IconPicker:
|
|
157
|
-
providers?:
|
|
158
|
-
}> &
|
|
159
|
-
FileUpload:
|
|
153
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata | null;
|
|
154
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeSingleFile;
|
|
155
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref">) & react758.RefAttributes<unknown>>;
|
|
156
|
+
IconPicker: react758.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui56.IconPickerProps, "providers"> & {
|
|
157
|
+
providers?: _pixpilot_shadcn_ui56.IconProviderProps[];
|
|
158
|
+
}> & react758.RefAttributes<unknown>>;
|
|
159
|
+
FileUpload: react758.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
160
160
|
multiple: true;
|
|
161
|
-
value?:
|
|
162
|
-
onChange?:
|
|
163
|
-
} &
|
|
161
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata[];
|
|
162
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeMultipleFiles;
|
|
163
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
164
164
|
multiple?: false;
|
|
165
|
-
value?:
|
|
166
|
-
onChange?:
|
|
167
|
-
} &
|
|
168
|
-
RichTextEditor:
|
|
169
|
-
Combobox:
|
|
170
|
-
TagsInput: typeof
|
|
171
|
-
TagsInputInLine:
|
|
172
|
-
Slider:
|
|
173
|
-
FormItem:
|
|
174
|
-
children?:
|
|
175
|
-
}>, "ref"> &
|
|
176
|
-
Hidden:
|
|
165
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata | null;
|
|
166
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeSingleFile;
|
|
167
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref">) & react758.RefAttributes<unknown>>;
|
|
168
|
+
RichTextEditor: react758.FC;
|
|
169
|
+
Combobox: react758.FC;
|
|
170
|
+
TagsInput: typeof _pixpilot_shadcn_ui56.TagsInput;
|
|
171
|
+
TagsInputInLine: react758.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui56.TagsInputProps> & react758.RefAttributes<unknown>>;
|
|
172
|
+
Slider: react758.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui56.SliderProps>, "ref"> & react758.RefAttributes<unknown>>;
|
|
173
|
+
FormItem: react758.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
174
|
+
children?: react758.ReactNode | undefined;
|
|
175
|
+
}>, "ref"> & react758.RefAttributes<unknown>>;
|
|
176
|
+
Hidden: react758.ForwardRefExoticComponent<Partial<{
|
|
177
177
|
children?: React.ReactNode;
|
|
178
178
|
value?: string;
|
|
179
|
-
}> &
|
|
180
|
-
Input:
|
|
181
|
-
Textarea:
|
|
182
|
-
NumberInput:
|
|
183
|
-
Checkbox:
|
|
184
|
-
Radio:
|
|
185
|
-
Select:
|
|
186
|
-
Switch:
|
|
187
|
-
DatePicker:
|
|
179
|
+
}> & react758.RefAttributes<unknown>>;
|
|
180
|
+
Input: react758.ForwardRefExoticComponent<Omit<Partial<react758.ClassAttributes<HTMLInputElement> & react758.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
181
|
+
Textarea: react758.ForwardRefExoticComponent<Omit<Partial<react758.ClassAttributes<HTMLTextAreaElement> & react758.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
182
|
+
NumberInput: react758.ForwardRefExoticComponent<Omit<Partial<react758.ClassAttributes<HTMLInputElement> & react758.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
183
|
+
Checkbox: react758.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox20.CheckboxProps & react758.RefAttributes<HTMLButtonElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
184
|
+
Radio: react758.FC;
|
|
185
|
+
Select: react758.FC;
|
|
186
|
+
Switch: react758.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch20.SwitchProps & react758.RefAttributes<HTMLButtonElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
187
|
+
DatePicker: react758.ForwardRefExoticComponent<Partial<{
|
|
188
188
|
value?: Date;
|
|
189
189
|
onChange?: (date: Date | undefined) => void;
|
|
190
190
|
placeholder?: string;
|
|
191
|
-
} & Omit<
|
|
191
|
+
} & Omit<_pixpilot_shadcn_ui56.DatePickerProps, "onSelect" | "selected" | "mode">> & react758.RefAttributes<unknown>>;
|
|
192
192
|
Row: typeof Row;
|
|
193
193
|
Column: typeof Column;
|
|
194
194
|
FormGrid: typeof FormGrid;
|
|
195
|
-
Separator:
|
|
195
|
+
Separator: react758.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator20.SeparatorProps & react758.RefAttributes<HTMLDivElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
196
196
|
ArrayCards: ComposedArrayProps;
|
|
197
|
-
ArrayDialog:
|
|
198
|
-
ArrayCollapse:
|
|
197
|
+
ArrayDialog: react758.FC<ArrayComponentProps>;
|
|
198
|
+
ArrayCollapse: react758.FC<ArrayComponentProps & {
|
|
199
199
|
defaultActiveKey?: Array<string | number>;
|
|
200
200
|
mode?: "accordion" | "multiple";
|
|
201
201
|
}>;
|
|
202
|
-
ArrayPopover:
|
|
203
|
-
ObjectContainer:
|
|
202
|
+
ArrayPopover: react758.FC<ArrayComponentProps>;
|
|
203
|
+
ObjectContainer: react758.FC<ObjectContainerProps>;
|
|
204
204
|
}, Component_2, Decorator_2>): JSX.Element;
|
|
205
205
|
displayName: string;
|
|
206
206
|
};
|
|
207
207
|
Object: {
|
|
208
|
-
<Decorator_3 extends "Radio" | "
|
|
209
|
-
FileUploadInline:
|
|
208
|
+
<Decorator_3 extends "Radio" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_3 extends "Radio" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react23.ISchemaTypeFieldProps<{
|
|
209
|
+
FileUploadInline: react758.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
210
210
|
multiple: true;
|
|
211
|
-
value?:
|
|
212
|
-
onChange?:
|
|
213
|
-
} &
|
|
211
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata[];
|
|
212
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeMultipleFiles;
|
|
213
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
214
214
|
multiple?: false;
|
|
215
|
-
value?:
|
|
216
|
-
onChange?:
|
|
217
|
-
} &
|
|
218
|
-
IconPicker:
|
|
219
|
-
providers?:
|
|
220
|
-
}> &
|
|
221
|
-
FileUpload:
|
|
215
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata | null;
|
|
216
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeSingleFile;
|
|
217
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref">) & react758.RefAttributes<unknown>>;
|
|
218
|
+
IconPicker: react758.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui56.IconPickerProps, "providers"> & {
|
|
219
|
+
providers?: _pixpilot_shadcn_ui56.IconProviderProps[];
|
|
220
|
+
}> & react758.RefAttributes<unknown>>;
|
|
221
|
+
FileUpload: react758.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
222
222
|
multiple: true;
|
|
223
|
-
value?:
|
|
224
|
-
onChange?:
|
|
225
|
-
} &
|
|
223
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata[];
|
|
224
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeMultipleFiles;
|
|
225
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
226
226
|
multiple?: false;
|
|
227
|
-
value?:
|
|
228
|
-
onChange?:
|
|
229
|
-
} &
|
|
230
|
-
RichTextEditor:
|
|
231
|
-
Combobox:
|
|
232
|
-
TagsInput: typeof
|
|
233
|
-
TagsInputInLine:
|
|
234
|
-
Slider:
|
|
235
|
-
FormItem:
|
|
236
|
-
children?:
|
|
237
|
-
}>, "ref"> &
|
|
238
|
-
Hidden:
|
|
227
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata | null;
|
|
228
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeSingleFile;
|
|
229
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref">) & react758.RefAttributes<unknown>>;
|
|
230
|
+
RichTextEditor: react758.FC;
|
|
231
|
+
Combobox: react758.FC;
|
|
232
|
+
TagsInput: typeof _pixpilot_shadcn_ui56.TagsInput;
|
|
233
|
+
TagsInputInLine: react758.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui56.TagsInputProps> & react758.RefAttributes<unknown>>;
|
|
234
|
+
Slider: react758.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui56.SliderProps>, "ref"> & react758.RefAttributes<unknown>>;
|
|
235
|
+
FormItem: react758.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
236
|
+
children?: react758.ReactNode | undefined;
|
|
237
|
+
}>, "ref"> & react758.RefAttributes<unknown>>;
|
|
238
|
+
Hidden: react758.ForwardRefExoticComponent<Partial<{
|
|
239
239
|
children?: React.ReactNode;
|
|
240
240
|
value?: string;
|
|
241
|
-
}> &
|
|
242
|
-
Input:
|
|
243
|
-
Textarea:
|
|
244
|
-
NumberInput:
|
|
245
|
-
Checkbox:
|
|
246
|
-
Radio:
|
|
247
|
-
Select:
|
|
248
|
-
Switch:
|
|
249
|
-
DatePicker:
|
|
241
|
+
}> & react758.RefAttributes<unknown>>;
|
|
242
|
+
Input: react758.ForwardRefExoticComponent<Omit<Partial<react758.ClassAttributes<HTMLInputElement> & react758.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
243
|
+
Textarea: react758.ForwardRefExoticComponent<Omit<Partial<react758.ClassAttributes<HTMLTextAreaElement> & react758.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
244
|
+
NumberInput: react758.ForwardRefExoticComponent<Omit<Partial<react758.ClassAttributes<HTMLInputElement> & react758.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
245
|
+
Checkbox: react758.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox20.CheckboxProps & react758.RefAttributes<HTMLButtonElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
246
|
+
Radio: react758.FC;
|
|
247
|
+
Select: react758.FC;
|
|
248
|
+
Switch: react758.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch20.SwitchProps & react758.RefAttributes<HTMLButtonElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
249
|
+
DatePicker: react758.ForwardRefExoticComponent<Partial<{
|
|
250
250
|
value?: Date;
|
|
251
251
|
onChange?: (date: Date | undefined) => void;
|
|
252
252
|
placeholder?: string;
|
|
253
|
-
} & Omit<
|
|
253
|
+
} & Omit<_pixpilot_shadcn_ui56.DatePickerProps, "onSelect" | "selected" | "mode">> & react758.RefAttributes<unknown>>;
|
|
254
254
|
Row: typeof Row;
|
|
255
255
|
Column: typeof Column;
|
|
256
256
|
FormGrid: typeof FormGrid;
|
|
257
|
-
Separator:
|
|
257
|
+
Separator: react758.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator20.SeparatorProps & react758.RefAttributes<HTMLDivElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
258
258
|
ArrayCards: ComposedArrayProps;
|
|
259
|
-
ArrayDialog:
|
|
260
|
-
ArrayCollapse:
|
|
259
|
+
ArrayDialog: react758.FC<ArrayComponentProps>;
|
|
260
|
+
ArrayCollapse: react758.FC<ArrayComponentProps & {
|
|
261
261
|
defaultActiveKey?: Array<string | number>;
|
|
262
262
|
mode?: "accordion" | "multiple";
|
|
263
263
|
}>;
|
|
264
|
-
ArrayPopover:
|
|
265
|
-
ObjectContainer:
|
|
264
|
+
ArrayPopover: react758.FC<ArrayComponentProps>;
|
|
265
|
+
ObjectContainer: react758.FC<ObjectContainerProps>;
|
|
266
266
|
}, Component_3, Decorator_3>): JSX.Element;
|
|
267
267
|
displayName: string;
|
|
268
268
|
};
|
|
269
269
|
Array: {
|
|
270
|
-
<Decorator_4 extends "Radio" | "
|
|
271
|
-
FileUploadInline:
|
|
270
|
+
<Decorator_4 extends "Radio" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_4 extends "Radio" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react23.ISchemaTypeFieldProps<{
|
|
271
|
+
FileUploadInline: react758.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
272
272
|
multiple: true;
|
|
273
|
-
value?:
|
|
274
|
-
onChange?:
|
|
275
|
-
} &
|
|
273
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata[];
|
|
274
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeMultipleFiles;
|
|
275
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
276
276
|
multiple?: false;
|
|
277
|
-
value?:
|
|
278
|
-
onChange?:
|
|
279
|
-
} &
|
|
280
|
-
IconPicker:
|
|
281
|
-
providers?:
|
|
282
|
-
}> &
|
|
283
|
-
FileUpload:
|
|
277
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata | null;
|
|
278
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeSingleFile;
|
|
279
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref">) & react758.RefAttributes<unknown>>;
|
|
280
|
+
IconPicker: react758.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui56.IconPickerProps, "providers"> & {
|
|
281
|
+
providers?: _pixpilot_shadcn_ui56.IconProviderProps[];
|
|
282
|
+
}> & react758.RefAttributes<unknown>>;
|
|
283
|
+
FileUpload: react758.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
284
284
|
multiple: true;
|
|
285
|
-
value?:
|
|
286
|
-
onChange?:
|
|
287
|
-
} &
|
|
285
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata[];
|
|
286
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeMultipleFiles;
|
|
287
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
288
288
|
multiple?: false;
|
|
289
|
-
value?:
|
|
290
|
-
onChange?:
|
|
291
|
-
} &
|
|
292
|
-
RichTextEditor:
|
|
293
|
-
Combobox:
|
|
294
|
-
TagsInput: typeof
|
|
295
|
-
TagsInputInLine:
|
|
296
|
-
Slider:
|
|
297
|
-
FormItem:
|
|
298
|
-
children?:
|
|
299
|
-
}>, "ref"> &
|
|
300
|
-
Hidden:
|
|
289
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata | null;
|
|
290
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeSingleFile;
|
|
291
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref">) & react758.RefAttributes<unknown>>;
|
|
292
|
+
RichTextEditor: react758.FC;
|
|
293
|
+
Combobox: react758.FC;
|
|
294
|
+
TagsInput: typeof _pixpilot_shadcn_ui56.TagsInput;
|
|
295
|
+
TagsInputInLine: react758.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui56.TagsInputProps> & react758.RefAttributes<unknown>>;
|
|
296
|
+
Slider: react758.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui56.SliderProps>, "ref"> & react758.RefAttributes<unknown>>;
|
|
297
|
+
FormItem: react758.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
298
|
+
children?: react758.ReactNode | undefined;
|
|
299
|
+
}>, "ref"> & react758.RefAttributes<unknown>>;
|
|
300
|
+
Hidden: react758.ForwardRefExoticComponent<Partial<{
|
|
301
301
|
children?: React.ReactNode;
|
|
302
302
|
value?: string;
|
|
303
|
-
}> &
|
|
304
|
-
Input:
|
|
305
|
-
Textarea:
|
|
306
|
-
NumberInput:
|
|
307
|
-
Checkbox:
|
|
308
|
-
Radio:
|
|
309
|
-
Select:
|
|
310
|
-
Switch:
|
|
311
|
-
DatePicker:
|
|
303
|
+
}> & react758.RefAttributes<unknown>>;
|
|
304
|
+
Input: react758.ForwardRefExoticComponent<Omit<Partial<react758.ClassAttributes<HTMLInputElement> & react758.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
305
|
+
Textarea: react758.ForwardRefExoticComponent<Omit<Partial<react758.ClassAttributes<HTMLTextAreaElement> & react758.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
306
|
+
NumberInput: react758.ForwardRefExoticComponent<Omit<Partial<react758.ClassAttributes<HTMLInputElement> & react758.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
307
|
+
Checkbox: react758.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox20.CheckboxProps & react758.RefAttributes<HTMLButtonElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
308
|
+
Radio: react758.FC;
|
|
309
|
+
Select: react758.FC;
|
|
310
|
+
Switch: react758.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch20.SwitchProps & react758.RefAttributes<HTMLButtonElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
311
|
+
DatePicker: react758.ForwardRefExoticComponent<Partial<{
|
|
312
312
|
value?: Date;
|
|
313
313
|
onChange?: (date: Date | undefined) => void;
|
|
314
314
|
placeholder?: string;
|
|
315
|
-
} & Omit<
|
|
315
|
+
} & Omit<_pixpilot_shadcn_ui56.DatePickerProps, "onSelect" | "selected" | "mode">> & react758.RefAttributes<unknown>>;
|
|
316
316
|
Row: typeof Row;
|
|
317
317
|
Column: typeof Column;
|
|
318
318
|
FormGrid: typeof FormGrid;
|
|
319
|
-
Separator:
|
|
319
|
+
Separator: react758.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator20.SeparatorProps & react758.RefAttributes<HTMLDivElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
320
320
|
ArrayCards: ComposedArrayProps;
|
|
321
|
-
ArrayDialog:
|
|
322
|
-
ArrayCollapse:
|
|
321
|
+
ArrayDialog: react758.FC<ArrayComponentProps>;
|
|
322
|
+
ArrayCollapse: react758.FC<ArrayComponentProps & {
|
|
323
323
|
defaultActiveKey?: Array<string | number>;
|
|
324
324
|
mode?: "accordion" | "multiple";
|
|
325
325
|
}>;
|
|
326
|
-
ArrayPopover:
|
|
327
|
-
ObjectContainer:
|
|
326
|
+
ArrayPopover: react758.FC<ArrayComponentProps>;
|
|
327
|
+
ObjectContainer: react758.FC<ObjectContainerProps>;
|
|
328
328
|
}, Component_4, Decorator_4>): JSX.Element;
|
|
329
329
|
displayName: string;
|
|
330
330
|
};
|
|
331
331
|
Boolean: {
|
|
332
|
-
<Decorator_5 extends "Radio" | "
|
|
333
|
-
FileUploadInline:
|
|
332
|
+
<Decorator_5 extends "Radio" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_5 extends "Radio" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react23.ISchemaTypeFieldProps<{
|
|
333
|
+
FileUploadInline: react758.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
334
334
|
multiple: true;
|
|
335
|
-
value?:
|
|
336
|
-
onChange?:
|
|
337
|
-
} &
|
|
335
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata[];
|
|
336
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeMultipleFiles;
|
|
337
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
338
338
|
multiple?: false;
|
|
339
|
-
value?:
|
|
340
|
-
onChange?:
|
|
341
|
-
} &
|
|
342
|
-
IconPicker:
|
|
343
|
-
providers?:
|
|
344
|
-
}> &
|
|
345
|
-
FileUpload:
|
|
339
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata | null;
|
|
340
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeSingleFile;
|
|
341
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref">) & react758.RefAttributes<unknown>>;
|
|
342
|
+
IconPicker: react758.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui56.IconPickerProps, "providers"> & {
|
|
343
|
+
providers?: _pixpilot_shadcn_ui56.IconProviderProps[];
|
|
344
|
+
}> & react758.RefAttributes<unknown>>;
|
|
345
|
+
FileUpload: react758.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
346
346
|
multiple: true;
|
|
347
|
-
value?:
|
|
348
|
-
onChange?:
|
|
349
|
-
} &
|
|
347
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata[];
|
|
348
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeMultipleFiles;
|
|
349
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
350
350
|
multiple?: false;
|
|
351
|
-
value?:
|
|
352
|
-
onChange?:
|
|
353
|
-
} &
|
|
354
|
-
RichTextEditor:
|
|
355
|
-
Combobox:
|
|
356
|
-
TagsInput: typeof
|
|
357
|
-
TagsInputInLine:
|
|
358
|
-
Slider:
|
|
359
|
-
FormItem:
|
|
360
|
-
children?:
|
|
361
|
-
}>, "ref"> &
|
|
362
|
-
Hidden:
|
|
351
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata | null;
|
|
352
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeSingleFile;
|
|
353
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref">) & react758.RefAttributes<unknown>>;
|
|
354
|
+
RichTextEditor: react758.FC;
|
|
355
|
+
Combobox: react758.FC;
|
|
356
|
+
TagsInput: typeof _pixpilot_shadcn_ui56.TagsInput;
|
|
357
|
+
TagsInputInLine: react758.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui56.TagsInputProps> & react758.RefAttributes<unknown>>;
|
|
358
|
+
Slider: react758.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui56.SliderProps>, "ref"> & react758.RefAttributes<unknown>>;
|
|
359
|
+
FormItem: react758.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
360
|
+
children?: react758.ReactNode | undefined;
|
|
361
|
+
}>, "ref"> & react758.RefAttributes<unknown>>;
|
|
362
|
+
Hidden: react758.ForwardRefExoticComponent<Partial<{
|
|
363
363
|
children?: React.ReactNode;
|
|
364
364
|
value?: string;
|
|
365
|
-
}> &
|
|
366
|
-
Input:
|
|
367
|
-
Textarea:
|
|
368
|
-
NumberInput:
|
|
369
|
-
Checkbox:
|
|
370
|
-
Radio:
|
|
371
|
-
Select:
|
|
372
|
-
Switch:
|
|
373
|
-
DatePicker:
|
|
365
|
+
}> & react758.RefAttributes<unknown>>;
|
|
366
|
+
Input: react758.ForwardRefExoticComponent<Omit<Partial<react758.ClassAttributes<HTMLInputElement> & react758.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
367
|
+
Textarea: react758.ForwardRefExoticComponent<Omit<Partial<react758.ClassAttributes<HTMLTextAreaElement> & react758.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
368
|
+
NumberInput: react758.ForwardRefExoticComponent<Omit<Partial<react758.ClassAttributes<HTMLInputElement> & react758.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
369
|
+
Checkbox: react758.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox20.CheckboxProps & react758.RefAttributes<HTMLButtonElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
370
|
+
Radio: react758.FC;
|
|
371
|
+
Select: react758.FC;
|
|
372
|
+
Switch: react758.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch20.SwitchProps & react758.RefAttributes<HTMLButtonElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
373
|
+
DatePicker: react758.ForwardRefExoticComponent<Partial<{
|
|
374
374
|
value?: Date;
|
|
375
375
|
onChange?: (date: Date | undefined) => void;
|
|
376
376
|
placeholder?: string;
|
|
377
|
-
} & Omit<
|
|
377
|
+
} & Omit<_pixpilot_shadcn_ui56.DatePickerProps, "onSelect" | "selected" | "mode">> & react758.RefAttributes<unknown>>;
|
|
378
378
|
Row: typeof Row;
|
|
379
379
|
Column: typeof Column;
|
|
380
380
|
FormGrid: typeof FormGrid;
|
|
381
|
-
Separator:
|
|
381
|
+
Separator: react758.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator20.SeparatorProps & react758.RefAttributes<HTMLDivElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
382
382
|
ArrayCards: ComposedArrayProps;
|
|
383
|
-
ArrayDialog:
|
|
384
|
-
ArrayCollapse:
|
|
383
|
+
ArrayDialog: react758.FC<ArrayComponentProps>;
|
|
384
|
+
ArrayCollapse: react758.FC<ArrayComponentProps & {
|
|
385
385
|
defaultActiveKey?: Array<string | number>;
|
|
386
386
|
mode?: "accordion" | "multiple";
|
|
387
387
|
}>;
|
|
388
|
-
ArrayPopover:
|
|
389
|
-
ObjectContainer:
|
|
388
|
+
ArrayPopover: react758.FC<ArrayComponentProps>;
|
|
389
|
+
ObjectContainer: react758.FC<ObjectContainerProps>;
|
|
390
390
|
}, Component_5, Decorator_5>): JSX.Element;
|
|
391
391
|
displayName: string;
|
|
392
392
|
};
|
|
393
393
|
Date: {
|
|
394
|
-
<Decorator_6 extends "Radio" | "
|
|
395
|
-
FileUploadInline:
|
|
394
|
+
<Decorator_6 extends "Radio" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_6 extends "Radio" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react23.ISchemaTypeFieldProps<{
|
|
395
|
+
FileUploadInline: react758.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
396
396
|
multiple: true;
|
|
397
|
-
value?:
|
|
398
|
-
onChange?:
|
|
399
|
-
} &
|
|
397
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata[];
|
|
398
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeMultipleFiles;
|
|
399
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
400
400
|
multiple?: false;
|
|
401
|
-
value?:
|
|
402
|
-
onChange?:
|
|
403
|
-
} &
|
|
404
|
-
IconPicker:
|
|
405
|
-
providers?:
|
|
406
|
-
}> &
|
|
407
|
-
FileUpload:
|
|
401
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata | null;
|
|
402
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeSingleFile;
|
|
403
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref">) & react758.RefAttributes<unknown>>;
|
|
404
|
+
IconPicker: react758.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui56.IconPickerProps, "providers"> & {
|
|
405
|
+
providers?: _pixpilot_shadcn_ui56.IconProviderProps[];
|
|
406
|
+
}> & react758.RefAttributes<unknown>>;
|
|
407
|
+
FileUpload: react758.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
408
408
|
multiple: true;
|
|
409
|
-
value?:
|
|
410
|
-
onChange?:
|
|
411
|
-
} &
|
|
409
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata[];
|
|
410
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeMultipleFiles;
|
|
411
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
412
412
|
multiple?: false;
|
|
413
|
-
value?:
|
|
414
|
-
onChange?:
|
|
415
|
-
} &
|
|
416
|
-
RichTextEditor:
|
|
417
|
-
Combobox:
|
|
418
|
-
TagsInput: typeof
|
|
419
|
-
TagsInputInLine:
|
|
420
|
-
Slider:
|
|
421
|
-
FormItem:
|
|
422
|
-
children?:
|
|
423
|
-
}>, "ref"> &
|
|
424
|
-
Hidden:
|
|
413
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata | null;
|
|
414
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeSingleFile;
|
|
415
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref">) & react758.RefAttributes<unknown>>;
|
|
416
|
+
RichTextEditor: react758.FC;
|
|
417
|
+
Combobox: react758.FC;
|
|
418
|
+
TagsInput: typeof _pixpilot_shadcn_ui56.TagsInput;
|
|
419
|
+
TagsInputInLine: react758.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui56.TagsInputProps> & react758.RefAttributes<unknown>>;
|
|
420
|
+
Slider: react758.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui56.SliderProps>, "ref"> & react758.RefAttributes<unknown>>;
|
|
421
|
+
FormItem: react758.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
422
|
+
children?: react758.ReactNode | undefined;
|
|
423
|
+
}>, "ref"> & react758.RefAttributes<unknown>>;
|
|
424
|
+
Hidden: react758.ForwardRefExoticComponent<Partial<{
|
|
425
425
|
children?: React.ReactNode;
|
|
426
426
|
value?: string;
|
|
427
|
-
}> &
|
|
428
|
-
Input:
|
|
429
|
-
Textarea:
|
|
430
|
-
NumberInput:
|
|
431
|
-
Checkbox:
|
|
432
|
-
Radio:
|
|
433
|
-
Select:
|
|
434
|
-
Switch:
|
|
435
|
-
DatePicker:
|
|
427
|
+
}> & react758.RefAttributes<unknown>>;
|
|
428
|
+
Input: react758.ForwardRefExoticComponent<Omit<Partial<react758.ClassAttributes<HTMLInputElement> & react758.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
429
|
+
Textarea: react758.ForwardRefExoticComponent<Omit<Partial<react758.ClassAttributes<HTMLTextAreaElement> & react758.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
430
|
+
NumberInput: react758.ForwardRefExoticComponent<Omit<Partial<react758.ClassAttributes<HTMLInputElement> & react758.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
431
|
+
Checkbox: react758.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox20.CheckboxProps & react758.RefAttributes<HTMLButtonElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
432
|
+
Radio: react758.FC;
|
|
433
|
+
Select: react758.FC;
|
|
434
|
+
Switch: react758.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch20.SwitchProps & react758.RefAttributes<HTMLButtonElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
435
|
+
DatePicker: react758.ForwardRefExoticComponent<Partial<{
|
|
436
436
|
value?: Date;
|
|
437
437
|
onChange?: (date: Date | undefined) => void;
|
|
438
438
|
placeholder?: string;
|
|
439
|
-
} & Omit<
|
|
439
|
+
} & Omit<_pixpilot_shadcn_ui56.DatePickerProps, "onSelect" | "selected" | "mode">> & react758.RefAttributes<unknown>>;
|
|
440
440
|
Row: typeof Row;
|
|
441
441
|
Column: typeof Column;
|
|
442
442
|
FormGrid: typeof FormGrid;
|
|
443
|
-
Separator:
|
|
443
|
+
Separator: react758.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator20.SeparatorProps & react758.RefAttributes<HTMLDivElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
444
444
|
ArrayCards: ComposedArrayProps;
|
|
445
|
-
ArrayDialog:
|
|
446
|
-
ArrayCollapse:
|
|
445
|
+
ArrayDialog: react758.FC<ArrayComponentProps>;
|
|
446
|
+
ArrayCollapse: react758.FC<ArrayComponentProps & {
|
|
447
447
|
defaultActiveKey?: Array<string | number>;
|
|
448
448
|
mode?: "accordion" | "multiple";
|
|
449
449
|
}>;
|
|
450
|
-
ArrayPopover:
|
|
451
|
-
ObjectContainer:
|
|
450
|
+
ArrayPopover: react758.FC<ArrayComponentProps>;
|
|
451
|
+
ObjectContainer: react758.FC<ObjectContainerProps>;
|
|
452
452
|
}, Component_6, Decorator_6>): JSX.Element;
|
|
453
453
|
displayName: string;
|
|
454
454
|
};
|
|
455
455
|
DateTime: {
|
|
456
|
-
<Decorator_7 extends "Radio" | "
|
|
457
|
-
FileUploadInline:
|
|
456
|
+
<Decorator_7 extends "Radio" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_7 extends "Radio" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react23.ISchemaTypeFieldProps<{
|
|
457
|
+
FileUploadInline: react758.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
458
458
|
multiple: true;
|
|
459
|
-
value?:
|
|
460
|
-
onChange?:
|
|
461
|
-
} &
|
|
459
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata[];
|
|
460
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeMultipleFiles;
|
|
461
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
462
462
|
multiple?: false;
|
|
463
|
-
value?:
|
|
464
|
-
onChange?:
|
|
465
|
-
} &
|
|
466
|
-
IconPicker:
|
|
467
|
-
providers?:
|
|
468
|
-
}> &
|
|
469
|
-
FileUpload:
|
|
463
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata | null;
|
|
464
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeSingleFile;
|
|
465
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref">) & react758.RefAttributes<unknown>>;
|
|
466
|
+
IconPicker: react758.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui56.IconPickerProps, "providers"> & {
|
|
467
|
+
providers?: _pixpilot_shadcn_ui56.IconProviderProps[];
|
|
468
|
+
}> & react758.RefAttributes<unknown>>;
|
|
469
|
+
FileUpload: react758.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
470
470
|
multiple: true;
|
|
471
|
-
value?:
|
|
472
|
-
onChange?:
|
|
473
|
-
} &
|
|
471
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata[];
|
|
472
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeMultipleFiles;
|
|
473
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
474
474
|
multiple?: false;
|
|
475
|
-
value?:
|
|
476
|
-
onChange?:
|
|
477
|
-
} &
|
|
478
|
-
RichTextEditor:
|
|
479
|
-
Combobox:
|
|
480
|
-
TagsInput: typeof
|
|
481
|
-
TagsInputInLine:
|
|
482
|
-
Slider:
|
|
483
|
-
FormItem:
|
|
484
|
-
children?:
|
|
485
|
-
}>, "ref"> &
|
|
486
|
-
Hidden:
|
|
475
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata | null;
|
|
476
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeSingleFile;
|
|
477
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref">) & react758.RefAttributes<unknown>>;
|
|
478
|
+
RichTextEditor: react758.FC;
|
|
479
|
+
Combobox: react758.FC;
|
|
480
|
+
TagsInput: typeof _pixpilot_shadcn_ui56.TagsInput;
|
|
481
|
+
TagsInputInLine: react758.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui56.TagsInputProps> & react758.RefAttributes<unknown>>;
|
|
482
|
+
Slider: react758.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui56.SliderProps>, "ref"> & react758.RefAttributes<unknown>>;
|
|
483
|
+
FormItem: react758.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
484
|
+
children?: react758.ReactNode | undefined;
|
|
485
|
+
}>, "ref"> & react758.RefAttributes<unknown>>;
|
|
486
|
+
Hidden: react758.ForwardRefExoticComponent<Partial<{
|
|
487
487
|
children?: React.ReactNode;
|
|
488
488
|
value?: string;
|
|
489
|
-
}> &
|
|
490
|
-
Input:
|
|
491
|
-
Textarea:
|
|
492
|
-
NumberInput:
|
|
493
|
-
Checkbox:
|
|
494
|
-
Radio:
|
|
495
|
-
Select:
|
|
496
|
-
Switch:
|
|
497
|
-
DatePicker:
|
|
489
|
+
}> & react758.RefAttributes<unknown>>;
|
|
490
|
+
Input: react758.ForwardRefExoticComponent<Omit<Partial<react758.ClassAttributes<HTMLInputElement> & react758.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
491
|
+
Textarea: react758.ForwardRefExoticComponent<Omit<Partial<react758.ClassAttributes<HTMLTextAreaElement> & react758.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
492
|
+
NumberInput: react758.ForwardRefExoticComponent<Omit<Partial<react758.ClassAttributes<HTMLInputElement> & react758.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
493
|
+
Checkbox: react758.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox20.CheckboxProps & react758.RefAttributes<HTMLButtonElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
494
|
+
Radio: react758.FC;
|
|
495
|
+
Select: react758.FC;
|
|
496
|
+
Switch: react758.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch20.SwitchProps & react758.RefAttributes<HTMLButtonElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
497
|
+
DatePicker: react758.ForwardRefExoticComponent<Partial<{
|
|
498
498
|
value?: Date;
|
|
499
499
|
onChange?: (date: Date | undefined) => void;
|
|
500
500
|
placeholder?: string;
|
|
501
|
-
} & Omit<
|
|
501
|
+
} & Omit<_pixpilot_shadcn_ui56.DatePickerProps, "onSelect" | "selected" | "mode">> & react758.RefAttributes<unknown>>;
|
|
502
502
|
Row: typeof Row;
|
|
503
503
|
Column: typeof Column;
|
|
504
504
|
FormGrid: typeof FormGrid;
|
|
505
|
-
Separator:
|
|
505
|
+
Separator: react758.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator20.SeparatorProps & react758.RefAttributes<HTMLDivElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
506
506
|
ArrayCards: ComposedArrayProps;
|
|
507
|
-
ArrayDialog:
|
|
508
|
-
ArrayCollapse:
|
|
507
|
+
ArrayDialog: react758.FC<ArrayComponentProps>;
|
|
508
|
+
ArrayCollapse: react758.FC<ArrayComponentProps & {
|
|
509
509
|
defaultActiveKey?: Array<string | number>;
|
|
510
510
|
mode?: "accordion" | "multiple";
|
|
511
511
|
}>;
|
|
512
|
-
ArrayPopover:
|
|
513
|
-
ObjectContainer:
|
|
512
|
+
ArrayPopover: react758.FC<ArrayComponentProps>;
|
|
513
|
+
ObjectContainer: react758.FC<ObjectContainerProps>;
|
|
514
514
|
}, Component_7, Decorator_7>): JSX.Element;
|
|
515
515
|
displayName: string;
|
|
516
516
|
};
|
|
517
517
|
Void: {
|
|
518
|
-
<Decorator_8 extends "Radio" | "
|
|
519
|
-
FileUploadInline:
|
|
518
|
+
<Decorator_8 extends "Radio" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_8 extends "Radio" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react23.ISchemaTypeFieldProps<{
|
|
519
|
+
FileUploadInline: react758.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
520
520
|
multiple: true;
|
|
521
|
-
value?:
|
|
522
|
-
onChange?:
|
|
523
|
-
} &
|
|
521
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata[];
|
|
522
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeMultipleFiles;
|
|
523
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
524
524
|
multiple?: false;
|
|
525
|
-
value?:
|
|
526
|
-
onChange?:
|
|
527
|
-
} &
|
|
528
|
-
IconPicker:
|
|
529
|
-
providers?:
|
|
530
|
-
}> &
|
|
531
|
-
FileUpload:
|
|
525
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata | null;
|
|
526
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeSingleFile;
|
|
527
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref">) & react758.RefAttributes<unknown>>;
|
|
528
|
+
IconPicker: react758.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui56.IconPickerProps, "providers"> & {
|
|
529
|
+
providers?: _pixpilot_shadcn_ui56.IconProviderProps[];
|
|
530
|
+
}> & react758.RefAttributes<unknown>>;
|
|
531
|
+
FileUpload: react758.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
532
532
|
multiple: true;
|
|
533
|
-
value?:
|
|
534
|
-
onChange?:
|
|
535
|
-
} &
|
|
533
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata[];
|
|
534
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeMultipleFiles;
|
|
535
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
536
536
|
multiple?: false;
|
|
537
|
-
value?:
|
|
538
|
-
onChange?:
|
|
539
|
-
} &
|
|
540
|
-
RichTextEditor:
|
|
541
|
-
Combobox:
|
|
542
|
-
TagsInput: typeof
|
|
543
|
-
TagsInputInLine:
|
|
544
|
-
Slider:
|
|
545
|
-
FormItem:
|
|
546
|
-
children?:
|
|
547
|
-
}>, "ref"> &
|
|
548
|
-
Hidden:
|
|
537
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata | null;
|
|
538
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeSingleFile;
|
|
539
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref">) & react758.RefAttributes<unknown>>;
|
|
540
|
+
RichTextEditor: react758.FC;
|
|
541
|
+
Combobox: react758.FC;
|
|
542
|
+
TagsInput: typeof _pixpilot_shadcn_ui56.TagsInput;
|
|
543
|
+
TagsInputInLine: react758.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui56.TagsInputProps> & react758.RefAttributes<unknown>>;
|
|
544
|
+
Slider: react758.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui56.SliderProps>, "ref"> & react758.RefAttributes<unknown>>;
|
|
545
|
+
FormItem: react758.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
546
|
+
children?: react758.ReactNode | undefined;
|
|
547
|
+
}>, "ref"> & react758.RefAttributes<unknown>>;
|
|
548
|
+
Hidden: react758.ForwardRefExoticComponent<Partial<{
|
|
549
549
|
children?: React.ReactNode;
|
|
550
550
|
value?: string;
|
|
551
|
-
}> &
|
|
552
|
-
Input:
|
|
553
|
-
Textarea:
|
|
554
|
-
NumberInput:
|
|
555
|
-
Checkbox:
|
|
556
|
-
Radio:
|
|
557
|
-
Select:
|
|
558
|
-
Switch:
|
|
559
|
-
DatePicker:
|
|
551
|
+
}> & react758.RefAttributes<unknown>>;
|
|
552
|
+
Input: react758.ForwardRefExoticComponent<Omit<Partial<react758.ClassAttributes<HTMLInputElement> & react758.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
553
|
+
Textarea: react758.ForwardRefExoticComponent<Omit<Partial<react758.ClassAttributes<HTMLTextAreaElement> & react758.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
554
|
+
NumberInput: react758.ForwardRefExoticComponent<Omit<Partial<react758.ClassAttributes<HTMLInputElement> & react758.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
555
|
+
Checkbox: react758.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox20.CheckboxProps & react758.RefAttributes<HTMLButtonElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
556
|
+
Radio: react758.FC;
|
|
557
|
+
Select: react758.FC;
|
|
558
|
+
Switch: react758.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch20.SwitchProps & react758.RefAttributes<HTMLButtonElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
559
|
+
DatePicker: react758.ForwardRefExoticComponent<Partial<{
|
|
560
560
|
value?: Date;
|
|
561
561
|
onChange?: (date: Date | undefined) => void;
|
|
562
562
|
placeholder?: string;
|
|
563
|
-
} & Omit<
|
|
563
|
+
} & Omit<_pixpilot_shadcn_ui56.DatePickerProps, "onSelect" | "selected" | "mode">> & react758.RefAttributes<unknown>>;
|
|
564
564
|
Row: typeof Row;
|
|
565
565
|
Column: typeof Column;
|
|
566
566
|
FormGrid: typeof FormGrid;
|
|
567
|
-
Separator:
|
|
567
|
+
Separator: react758.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator20.SeparatorProps & react758.RefAttributes<HTMLDivElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
568
568
|
ArrayCards: ComposedArrayProps;
|
|
569
|
-
ArrayDialog:
|
|
570
|
-
ArrayCollapse:
|
|
569
|
+
ArrayDialog: react758.FC<ArrayComponentProps>;
|
|
570
|
+
ArrayCollapse: react758.FC<ArrayComponentProps & {
|
|
571
571
|
defaultActiveKey?: Array<string | number>;
|
|
572
572
|
mode?: "accordion" | "multiple";
|
|
573
573
|
}>;
|
|
574
|
-
ArrayPopover:
|
|
575
|
-
ObjectContainer:
|
|
574
|
+
ArrayPopover: react758.FC<ArrayComponentProps>;
|
|
575
|
+
ObjectContainer: react758.FC<ObjectContainerProps>;
|
|
576
576
|
}, Component_8, Decorator_8>): JSX.Element;
|
|
577
577
|
displayName: string;
|
|
578
578
|
};
|
|
579
579
|
Number: {
|
|
580
|
-
<Decorator_9 extends "Radio" | "
|
|
581
|
-
FileUploadInline:
|
|
580
|
+
<Decorator_9 extends "Radio" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_9 extends "Radio" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react23.ISchemaTypeFieldProps<{
|
|
581
|
+
FileUploadInline: react758.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
582
582
|
multiple: true;
|
|
583
|
-
value?:
|
|
584
|
-
onChange?:
|
|
585
|
-
} &
|
|
583
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata[];
|
|
584
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeMultipleFiles;
|
|
585
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
586
586
|
multiple?: false;
|
|
587
|
-
value?:
|
|
588
|
-
onChange?:
|
|
589
|
-
} &
|
|
590
|
-
IconPicker:
|
|
591
|
-
providers?:
|
|
592
|
-
}> &
|
|
593
|
-
FileUpload:
|
|
587
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata | null;
|
|
588
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeSingleFile;
|
|
589
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref">) & react758.RefAttributes<unknown>>;
|
|
590
|
+
IconPicker: react758.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui56.IconPickerProps, "providers"> & {
|
|
591
|
+
providers?: _pixpilot_shadcn_ui56.IconProviderProps[];
|
|
592
|
+
}> & react758.RefAttributes<unknown>>;
|
|
593
|
+
FileUpload: react758.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
594
594
|
multiple: true;
|
|
595
|
-
value?:
|
|
596
|
-
onChange?:
|
|
597
|
-
} &
|
|
595
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata[];
|
|
596
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeMultipleFiles;
|
|
597
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui56.FileUploadInlineBaseProps & {
|
|
598
598
|
multiple?: false;
|
|
599
|
-
value?:
|
|
600
|
-
onChange?:
|
|
601
|
-
} &
|
|
602
|
-
RichTextEditor:
|
|
603
|
-
Combobox:
|
|
604
|
-
TagsInput: typeof
|
|
605
|
-
TagsInputInLine:
|
|
606
|
-
Slider:
|
|
607
|
-
FormItem:
|
|
608
|
-
children?:
|
|
609
|
-
}>, "ref"> &
|
|
610
|
-
Hidden:
|
|
599
|
+
value?: _pixpilot_shadcn_ui56.FileMetadata | null;
|
|
600
|
+
onChange?: _pixpilot_shadcn_ui56.OnChangeSingleFile;
|
|
601
|
+
} & _pixpilot_shadcn_ui56.FileUploadBaseProps>, "ref">) & react758.RefAttributes<unknown>>;
|
|
602
|
+
RichTextEditor: react758.FC;
|
|
603
|
+
Combobox: react758.FC;
|
|
604
|
+
TagsInput: typeof _pixpilot_shadcn_ui56.TagsInput;
|
|
605
|
+
TagsInputInLine: react758.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui56.TagsInputProps> & react758.RefAttributes<unknown>>;
|
|
606
|
+
Slider: react758.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui56.SliderProps>, "ref"> & react758.RefAttributes<unknown>>;
|
|
607
|
+
FormItem: react758.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
608
|
+
children?: react758.ReactNode | undefined;
|
|
609
|
+
}>, "ref"> & react758.RefAttributes<unknown>>;
|
|
610
|
+
Hidden: react758.ForwardRefExoticComponent<Partial<{
|
|
611
611
|
children?: React.ReactNode;
|
|
612
612
|
value?: string;
|
|
613
|
-
}> &
|
|
614
|
-
Input:
|
|
615
|
-
Textarea:
|
|
616
|
-
NumberInput:
|
|
617
|
-
Checkbox:
|
|
618
|
-
Radio:
|
|
619
|
-
Select:
|
|
620
|
-
Switch:
|
|
621
|
-
DatePicker:
|
|
613
|
+
}> & react758.RefAttributes<unknown>>;
|
|
614
|
+
Input: react758.ForwardRefExoticComponent<Omit<Partial<react758.ClassAttributes<HTMLInputElement> & react758.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
615
|
+
Textarea: react758.ForwardRefExoticComponent<Omit<Partial<react758.ClassAttributes<HTMLTextAreaElement> & react758.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
616
|
+
NumberInput: react758.ForwardRefExoticComponent<Omit<Partial<react758.ClassAttributes<HTMLInputElement> & react758.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
617
|
+
Checkbox: react758.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox20.CheckboxProps & react758.RefAttributes<HTMLButtonElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
618
|
+
Radio: react758.FC;
|
|
619
|
+
Select: react758.FC;
|
|
620
|
+
Switch: react758.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch20.SwitchProps & react758.RefAttributes<HTMLButtonElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
621
|
+
DatePicker: react758.ForwardRefExoticComponent<Partial<{
|
|
622
622
|
value?: Date;
|
|
623
623
|
onChange?: (date: Date | undefined) => void;
|
|
624
624
|
placeholder?: string;
|
|
625
|
-
} & Omit<
|
|
625
|
+
} & Omit<_pixpilot_shadcn_ui56.DatePickerProps, "onSelect" | "selected" | "mode">> & react758.RefAttributes<unknown>>;
|
|
626
626
|
Row: typeof Row;
|
|
627
627
|
Column: typeof Column;
|
|
628
628
|
FormGrid: typeof FormGrid;
|
|
629
|
-
Separator:
|
|
629
|
+
Separator: react758.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator20.SeparatorProps & react758.RefAttributes<HTMLDivElement>>, "ref"> & react758.RefAttributes<unknown>>;
|
|
630
630
|
ArrayCards: ComposedArrayProps;
|
|
631
|
-
ArrayDialog:
|
|
632
|
-
ArrayCollapse:
|
|
631
|
+
ArrayDialog: react758.FC<ArrayComponentProps>;
|
|
632
|
+
ArrayCollapse: react758.FC<ArrayComponentProps & {
|
|
633
633
|
defaultActiveKey?: Array<string | number>;
|
|
634
634
|
mode?: "accordion" | "multiple";
|
|
635
635
|
}>;
|
|
636
|
-
ArrayPopover:
|
|
637
|
-
ObjectContainer:
|
|
636
|
+
ArrayPopover: react758.FC<ArrayComponentProps>;
|
|
637
|
+
ObjectContainer: react758.FC<ObjectContainerProps>;
|
|
638
638
|
}, Component_9, Decorator_9>): JSX.Element;
|
|
639
639
|
displayName: string;
|
|
640
640
|
};
|