@pixpilot/formily-shadcn 0.15.0 → 0.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/checkbox.d.ts +2 -2
- package/dist/components/color-picker/color-picker.cjs +18 -0
- package/dist/components/color-picker/color-picker.js +14 -0
- package/dist/components/color-picker/index.cjs +1 -0
- package/dist/components/color-picker/index.js +1 -0
- package/dist/components/date-picker.d.cts +1 -1
- package/dist/components/date-picker.d.ts +3 -3
- package/dist/components/file-upload/file-upload-inline.d.cts +8 -8
- package/dist/components/file-upload/file-upload.d.cts +8 -8
- package/dist/components/form-item/connected-form-item.d.cts +4 -4
- package/dist/components/form-item/connected-form-item.d.ts +4 -4
- package/dist/components/icon-picker.d.ts +3 -3
- package/dist/components/input.d.ts +2 -2
- package/dist/components/number-input.d.ts +2 -2
- package/dist/components/object-container.cjs +2 -1
- package/dist/components/object-container.js +2 -1
- package/dist/components/schema-field/schema-field-basics.d.cts +211 -211
- package/dist/components/schema-field/schema-field-basics.d.ts +226 -226
- package/dist/components/schema-field/schema-field-extended.d.cts +34 -20
- package/dist/components/schema-field/schema-field-extended.d.ts +493 -479
- package/dist/components/schema-field/schema-field.cjs +6 -0
- package/dist/components/schema-field/schema-field.d.cts +267 -253
- package/dist/components/schema-field/schema-field.d.ts +272 -258
- package/dist/components/schema-field/schema-field.js +6 -0
- package/package.json +3 -3
|
@@ -10,9 +10,9 @@ import { Row } from "../row.cjs";
|
|
|
10
10
|
import { ObjectContainerProps } from "../object-container.cjs";
|
|
11
11
|
import * as _formily_react11 from "@formily/react";
|
|
12
12
|
import { ISchema } from "@formily/react";
|
|
13
|
-
import * as
|
|
13
|
+
import * as react580 from "react";
|
|
14
14
|
import * as _formily_core0 from "@formily/core";
|
|
15
|
-
import * as
|
|
15
|
+
import * as _pixpilot_shadcn_ui280 from "@pixpilot/shadcn-ui";
|
|
16
16
|
import { TagsInput } from "@pixpilot/shadcn-ui";
|
|
17
17
|
import * as _radix_ui_react_checkbox11 from "@radix-ui/react-checkbox";
|
|
18
18
|
import * as _radix_ui_react_switch11 from "@radix-ui/react-switch";
|
|
@@ -21,7 +21,7 @@ import * as _radix_ui_react_separator11 from "@radix-ui/react-separator";
|
|
|
21
21
|
//#region src/components/schema-field/schema-field.d.ts
|
|
22
22
|
declare const defaultComponentRegistry: {
|
|
23
23
|
Combobox: {
|
|
24
|
-
component:
|
|
24
|
+
component: react580.FC;
|
|
25
25
|
decorator: string;
|
|
26
26
|
};
|
|
27
27
|
TagsInput: {
|
|
@@ -29,58 +29,62 @@ declare const defaultComponentRegistry: {
|
|
|
29
29
|
decorator: string;
|
|
30
30
|
};
|
|
31
31
|
TagsInputInLine: {
|
|
32
|
-
component:
|
|
32
|
+
component: react580.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui280.TagsInputProps> & react580.RefAttributes<unknown>>;
|
|
33
33
|
decorator: string;
|
|
34
34
|
};
|
|
35
35
|
Slider: {
|
|
36
|
-
component:
|
|
36
|
+
component: react580.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui280.SliderProps>, "ref"> & react580.RefAttributes<unknown>>;
|
|
37
|
+
decorator: string;
|
|
38
|
+
};
|
|
39
|
+
ColorPicker: {
|
|
40
|
+
component: react580.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui280.ColorPickerProps>, "ref"> & react580.RefAttributes<unknown>>;
|
|
37
41
|
decorator: string;
|
|
38
42
|
};
|
|
39
43
|
FormItem: {
|
|
40
|
-
component:
|
|
41
|
-
children?:
|
|
42
|
-
}>, "ref"> &
|
|
44
|
+
component: react580.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
45
|
+
children?: react580.ReactNode | undefined;
|
|
46
|
+
}>, "ref"> & react580.RefAttributes<unknown>>;
|
|
43
47
|
};
|
|
44
48
|
Hidden: {
|
|
45
|
-
component:
|
|
49
|
+
component: react580.ForwardRefExoticComponent<Partial<{
|
|
46
50
|
children?: React.ReactNode;
|
|
47
51
|
value?: string;
|
|
48
|
-
}> &
|
|
52
|
+
}> & react580.RefAttributes<unknown>>;
|
|
49
53
|
};
|
|
50
54
|
Input: {
|
|
51
|
-
component:
|
|
55
|
+
component: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLInputElement> & react580.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
52
56
|
decorator: string;
|
|
53
57
|
};
|
|
54
58
|
Textarea: {
|
|
55
|
-
component:
|
|
59
|
+
component: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLTextAreaElement> & react580.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
56
60
|
decorator: string;
|
|
57
61
|
};
|
|
58
62
|
NumberInput: {
|
|
59
|
-
component:
|
|
63
|
+
component: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLInputElement> & react580.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
60
64
|
decorator: string;
|
|
61
65
|
};
|
|
62
66
|
Checkbox: {
|
|
63
|
-
component:
|
|
67
|
+
component: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox11.CheckboxProps & react580.RefAttributes<HTMLButtonElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
64
68
|
decorator: string;
|
|
65
69
|
};
|
|
66
70
|
Radio: {
|
|
67
|
-
component:
|
|
71
|
+
component: react580.FC;
|
|
68
72
|
decorator: string;
|
|
69
73
|
};
|
|
70
74
|
Select: {
|
|
71
|
-
component:
|
|
75
|
+
component: react580.FC;
|
|
72
76
|
decorator: string;
|
|
73
77
|
};
|
|
74
78
|
Switch: {
|
|
75
|
-
component:
|
|
79
|
+
component: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch11.SwitchProps & react580.RefAttributes<HTMLButtonElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
76
80
|
decorator: string;
|
|
77
81
|
};
|
|
78
82
|
DatePicker: {
|
|
79
|
-
component:
|
|
83
|
+
component: react580.ForwardRefExoticComponent<Partial<{
|
|
80
84
|
value?: Date;
|
|
81
85
|
onChange?: (date: Date | undefined) => void;
|
|
82
86
|
placeholder?: string;
|
|
83
|
-
} & Omit<
|
|
87
|
+
} & Omit<_pixpilot_shadcn_ui280.DatePickerProps, "onSelect" | "selected" | "mode">> & react580.RefAttributes<unknown>>;
|
|
84
88
|
decorator: string;
|
|
85
89
|
};
|
|
86
90
|
Row: {
|
|
@@ -93,429 +97,439 @@ declare const defaultComponentRegistry: {
|
|
|
93
97
|
component: typeof FormGrid;
|
|
94
98
|
};
|
|
95
99
|
Separator: {
|
|
96
|
-
component:
|
|
100
|
+
component: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator11.SeparatorProps & react580.RefAttributes<HTMLDivElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
97
101
|
};
|
|
98
102
|
ArrayCards: {
|
|
99
103
|
component: ComposedArrayProps;
|
|
100
104
|
decorator: string;
|
|
101
105
|
};
|
|
102
106
|
ArrayDialog: {
|
|
103
|
-
component:
|
|
107
|
+
component: react580.FC<ArrayComponentProps>;
|
|
104
108
|
decorator: string;
|
|
105
109
|
};
|
|
106
110
|
ArrayCollapse: {
|
|
107
|
-
component:
|
|
111
|
+
component: react580.FC<ArrayComponentProps & {
|
|
108
112
|
defaultActiveKey?: Array<string | number>;
|
|
109
113
|
mode?: "accordion" | "multiple";
|
|
110
114
|
}>;
|
|
111
115
|
decorator: string;
|
|
112
116
|
};
|
|
113
117
|
ArrayPopover: {
|
|
114
|
-
component:
|
|
118
|
+
component: react580.FC<ArrayComponentProps>;
|
|
115
119
|
decorator: string;
|
|
116
120
|
};
|
|
117
121
|
ObjectContainer: {
|
|
118
|
-
component:
|
|
122
|
+
component: react580.FC<ObjectContainerProps>;
|
|
119
123
|
decorator: string;
|
|
120
124
|
};
|
|
121
125
|
};
|
|
122
126
|
declare const defaultComponents: {
|
|
123
|
-
Combobox:
|
|
127
|
+
Combobox: react580.FC;
|
|
124
128
|
TagsInput: typeof TagsInput;
|
|
125
|
-
TagsInputInLine:
|
|
126
|
-
Slider:
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
129
|
+
TagsInputInLine: react580.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui280.TagsInputProps> & react580.RefAttributes<unknown>>;
|
|
130
|
+
Slider: react580.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui280.SliderProps>, "ref"> & react580.RefAttributes<unknown>>;
|
|
131
|
+
ColorPicker: react580.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui280.ColorPickerProps>, "ref"> & react580.RefAttributes<unknown>>;
|
|
132
|
+
FormItem: react580.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
133
|
+
children?: react580.ReactNode | undefined;
|
|
134
|
+
}>, "ref"> & react580.RefAttributes<unknown>>;
|
|
135
|
+
Hidden: react580.ForwardRefExoticComponent<Partial<{
|
|
131
136
|
children?: React.ReactNode;
|
|
132
137
|
value?: string;
|
|
133
|
-
}> &
|
|
134
|
-
Input:
|
|
135
|
-
Textarea:
|
|
136
|
-
NumberInput:
|
|
137
|
-
Checkbox:
|
|
138
|
-
Radio:
|
|
139
|
-
Select:
|
|
140
|
-
Switch:
|
|
141
|
-
DatePicker:
|
|
138
|
+
}> & react580.RefAttributes<unknown>>;
|
|
139
|
+
Input: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLInputElement> & react580.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
140
|
+
Textarea: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLTextAreaElement> & react580.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
141
|
+
NumberInput: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLInputElement> & react580.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
142
|
+
Checkbox: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox11.CheckboxProps & react580.RefAttributes<HTMLButtonElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
143
|
+
Radio: react580.FC;
|
|
144
|
+
Select: react580.FC;
|
|
145
|
+
Switch: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch11.SwitchProps & react580.RefAttributes<HTMLButtonElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
146
|
+
DatePicker: react580.ForwardRefExoticComponent<Partial<{
|
|
142
147
|
value?: Date;
|
|
143
148
|
onChange?: (date: Date | undefined) => void;
|
|
144
149
|
placeholder?: string;
|
|
145
|
-
} & Omit<
|
|
150
|
+
} & Omit<_pixpilot_shadcn_ui280.DatePickerProps, "onSelect" | "selected" | "mode">> & react580.RefAttributes<unknown>>;
|
|
146
151
|
Row: typeof Row;
|
|
147
152
|
Column: typeof Column;
|
|
148
153
|
FormGrid: typeof FormGrid;
|
|
149
|
-
Separator:
|
|
154
|
+
Separator: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator11.SeparatorProps & react580.RefAttributes<HTMLDivElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
150
155
|
ArrayCards: ComposedArrayProps;
|
|
151
|
-
ArrayDialog:
|
|
152
|
-
ArrayCollapse:
|
|
156
|
+
ArrayDialog: react580.FC<ArrayComponentProps>;
|
|
157
|
+
ArrayCollapse: react580.FC<ArrayComponentProps & {
|
|
153
158
|
defaultActiveKey?: Array<string | number>;
|
|
154
159
|
mode?: "accordion" | "multiple";
|
|
155
160
|
}>;
|
|
156
|
-
ArrayPopover:
|
|
157
|
-
ObjectContainer:
|
|
161
|
+
ArrayPopover: react580.FC<ArrayComponentProps>;
|
|
162
|
+
ObjectContainer: react580.FC<ObjectContainerProps>;
|
|
158
163
|
};
|
|
159
164
|
declare const SchemaField: {
|
|
160
165
|
<Decorator extends _formily_react11.JSXComponent, Component extends _formily_react11.JSXComponent>(props: _formily_react11.ISchemaFieldProps<Decorator, Component, _formily_core0.ObjectField<Decorator, Component>>): JSX.Element;
|
|
161
166
|
displayName: string;
|
|
162
167
|
Markup: {
|
|
163
|
-
<Decorator_1 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof", Component_1 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof">(props: _formily_react11.ISchemaMarkupFieldProps<{
|
|
164
|
-
Combobox:
|
|
168
|
+
<Decorator_1 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "ColorPicker" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "ColorPicker.$$typeof", Component_1 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "ColorPicker" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react11.ISchemaMarkupFieldProps<{
|
|
169
|
+
Combobox: react580.FC;
|
|
165
170
|
TagsInput: typeof TagsInput;
|
|
166
|
-
TagsInputInLine:
|
|
167
|
-
Slider:
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
171
|
+
TagsInputInLine: react580.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui280.TagsInputProps> & react580.RefAttributes<unknown>>;
|
|
172
|
+
Slider: react580.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui280.SliderProps>, "ref"> & react580.RefAttributes<unknown>>;
|
|
173
|
+
ColorPicker: react580.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui280.ColorPickerProps>, "ref"> & react580.RefAttributes<unknown>>;
|
|
174
|
+
FormItem: react580.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
175
|
+
children?: react580.ReactNode | undefined;
|
|
176
|
+
}>, "ref"> & react580.RefAttributes<unknown>>;
|
|
177
|
+
Hidden: react580.ForwardRefExoticComponent<Partial<{
|
|
172
178
|
children?: React.ReactNode;
|
|
173
179
|
value?: string;
|
|
174
|
-
}> &
|
|
175
|
-
Input:
|
|
176
|
-
Textarea:
|
|
177
|
-
NumberInput:
|
|
178
|
-
Checkbox:
|
|
179
|
-
Radio:
|
|
180
|
-
Select:
|
|
181
|
-
Switch:
|
|
182
|
-
DatePicker:
|
|
180
|
+
}> & react580.RefAttributes<unknown>>;
|
|
181
|
+
Input: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLInputElement> & react580.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
182
|
+
Textarea: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLTextAreaElement> & react580.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
183
|
+
NumberInput: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLInputElement> & react580.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
184
|
+
Checkbox: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox11.CheckboxProps & react580.RefAttributes<HTMLButtonElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
185
|
+
Radio: react580.FC;
|
|
186
|
+
Select: react580.FC;
|
|
187
|
+
Switch: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch11.SwitchProps & react580.RefAttributes<HTMLButtonElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
188
|
+
DatePicker: react580.ForwardRefExoticComponent<Partial<{
|
|
183
189
|
value?: Date;
|
|
184
190
|
onChange?: (date: Date | undefined) => void;
|
|
185
191
|
placeholder?: string;
|
|
186
|
-
} & Omit<
|
|
192
|
+
} & Omit<_pixpilot_shadcn_ui280.DatePickerProps, "onSelect" | "selected" | "mode">> & react580.RefAttributes<unknown>>;
|
|
187
193
|
Row: typeof Row;
|
|
188
194
|
Column: typeof Column;
|
|
189
195
|
FormGrid: typeof FormGrid;
|
|
190
|
-
Separator:
|
|
196
|
+
Separator: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator11.SeparatorProps & react580.RefAttributes<HTMLDivElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
191
197
|
ArrayCards: ComposedArrayProps;
|
|
192
|
-
ArrayDialog:
|
|
193
|
-
ArrayCollapse:
|
|
198
|
+
ArrayDialog: react580.FC<ArrayComponentProps>;
|
|
199
|
+
ArrayCollapse: react580.FC<ArrayComponentProps & {
|
|
194
200
|
defaultActiveKey?: Array<string | number>;
|
|
195
201
|
mode?: "accordion" | "multiple";
|
|
196
202
|
}>;
|
|
197
|
-
ArrayPopover:
|
|
198
|
-
ObjectContainer:
|
|
203
|
+
ArrayPopover: react580.FC<ArrayComponentProps>;
|
|
204
|
+
ObjectContainer: react580.FC<ObjectContainerProps>;
|
|
199
205
|
}, Component_1, Decorator_1>): JSX.Element;
|
|
200
206
|
displayName: string;
|
|
201
207
|
};
|
|
202
208
|
String: {
|
|
203
|
-
<Decorator_2 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof", Component_2 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
204
|
-
Combobox:
|
|
209
|
+
<Decorator_2 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "ColorPicker" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "ColorPicker.$$typeof", Component_2 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "ColorPicker" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
210
|
+
Combobox: react580.FC;
|
|
205
211
|
TagsInput: typeof TagsInput;
|
|
206
|
-
TagsInputInLine:
|
|
207
|
-
Slider:
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
+
TagsInputInLine: react580.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui280.TagsInputProps> & react580.RefAttributes<unknown>>;
|
|
213
|
+
Slider: react580.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui280.SliderProps>, "ref"> & react580.RefAttributes<unknown>>;
|
|
214
|
+
ColorPicker: react580.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui280.ColorPickerProps>, "ref"> & react580.RefAttributes<unknown>>;
|
|
215
|
+
FormItem: react580.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
216
|
+
children?: react580.ReactNode | undefined;
|
|
217
|
+
}>, "ref"> & react580.RefAttributes<unknown>>;
|
|
218
|
+
Hidden: react580.ForwardRefExoticComponent<Partial<{
|
|
212
219
|
children?: React.ReactNode;
|
|
213
220
|
value?: string;
|
|
214
|
-
}> &
|
|
215
|
-
Input:
|
|
216
|
-
Textarea:
|
|
217
|
-
NumberInput:
|
|
218
|
-
Checkbox:
|
|
219
|
-
Radio:
|
|
220
|
-
Select:
|
|
221
|
-
Switch:
|
|
222
|
-
DatePicker:
|
|
221
|
+
}> & react580.RefAttributes<unknown>>;
|
|
222
|
+
Input: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLInputElement> & react580.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
223
|
+
Textarea: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLTextAreaElement> & react580.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
224
|
+
NumberInput: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLInputElement> & react580.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
225
|
+
Checkbox: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox11.CheckboxProps & react580.RefAttributes<HTMLButtonElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
226
|
+
Radio: react580.FC;
|
|
227
|
+
Select: react580.FC;
|
|
228
|
+
Switch: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch11.SwitchProps & react580.RefAttributes<HTMLButtonElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
229
|
+
DatePicker: react580.ForwardRefExoticComponent<Partial<{
|
|
223
230
|
value?: Date;
|
|
224
231
|
onChange?: (date: Date | undefined) => void;
|
|
225
232
|
placeholder?: string;
|
|
226
|
-
} & Omit<
|
|
233
|
+
} & Omit<_pixpilot_shadcn_ui280.DatePickerProps, "onSelect" | "selected" | "mode">> & react580.RefAttributes<unknown>>;
|
|
227
234
|
Row: typeof Row;
|
|
228
235
|
Column: typeof Column;
|
|
229
236
|
FormGrid: typeof FormGrid;
|
|
230
|
-
Separator:
|
|
237
|
+
Separator: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator11.SeparatorProps & react580.RefAttributes<HTMLDivElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
231
238
|
ArrayCards: ComposedArrayProps;
|
|
232
|
-
ArrayDialog:
|
|
233
|
-
ArrayCollapse:
|
|
239
|
+
ArrayDialog: react580.FC<ArrayComponentProps>;
|
|
240
|
+
ArrayCollapse: react580.FC<ArrayComponentProps & {
|
|
234
241
|
defaultActiveKey?: Array<string | number>;
|
|
235
242
|
mode?: "accordion" | "multiple";
|
|
236
243
|
}>;
|
|
237
|
-
ArrayPopover:
|
|
238
|
-
ObjectContainer:
|
|
244
|
+
ArrayPopover: react580.FC<ArrayComponentProps>;
|
|
245
|
+
ObjectContainer: react580.FC<ObjectContainerProps>;
|
|
239
246
|
}, Component_2, Decorator_2>): JSX.Element;
|
|
240
247
|
displayName: string;
|
|
241
248
|
};
|
|
242
249
|
Object: {
|
|
243
|
-
<Decorator_3 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof", Component_3 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
244
|
-
Combobox:
|
|
250
|
+
<Decorator_3 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "ColorPicker" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "ColorPicker.$$typeof", Component_3 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "ColorPicker" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
251
|
+
Combobox: react580.FC;
|
|
245
252
|
TagsInput: typeof TagsInput;
|
|
246
|
-
TagsInputInLine:
|
|
247
|
-
Slider:
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
253
|
+
TagsInputInLine: react580.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui280.TagsInputProps> & react580.RefAttributes<unknown>>;
|
|
254
|
+
Slider: react580.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui280.SliderProps>, "ref"> & react580.RefAttributes<unknown>>;
|
|
255
|
+
ColorPicker: react580.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui280.ColorPickerProps>, "ref"> & react580.RefAttributes<unknown>>;
|
|
256
|
+
FormItem: react580.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
257
|
+
children?: react580.ReactNode | undefined;
|
|
258
|
+
}>, "ref"> & react580.RefAttributes<unknown>>;
|
|
259
|
+
Hidden: react580.ForwardRefExoticComponent<Partial<{
|
|
252
260
|
children?: React.ReactNode;
|
|
253
261
|
value?: string;
|
|
254
|
-
}> &
|
|
255
|
-
Input:
|
|
256
|
-
Textarea:
|
|
257
|
-
NumberInput:
|
|
258
|
-
Checkbox:
|
|
259
|
-
Radio:
|
|
260
|
-
Select:
|
|
261
|
-
Switch:
|
|
262
|
-
DatePicker:
|
|
262
|
+
}> & react580.RefAttributes<unknown>>;
|
|
263
|
+
Input: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLInputElement> & react580.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
264
|
+
Textarea: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLTextAreaElement> & react580.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
265
|
+
NumberInput: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLInputElement> & react580.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
266
|
+
Checkbox: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox11.CheckboxProps & react580.RefAttributes<HTMLButtonElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
267
|
+
Radio: react580.FC;
|
|
268
|
+
Select: react580.FC;
|
|
269
|
+
Switch: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch11.SwitchProps & react580.RefAttributes<HTMLButtonElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
270
|
+
DatePicker: react580.ForwardRefExoticComponent<Partial<{
|
|
263
271
|
value?: Date;
|
|
264
272
|
onChange?: (date: Date | undefined) => void;
|
|
265
273
|
placeholder?: string;
|
|
266
|
-
} & Omit<
|
|
274
|
+
} & Omit<_pixpilot_shadcn_ui280.DatePickerProps, "onSelect" | "selected" | "mode">> & react580.RefAttributes<unknown>>;
|
|
267
275
|
Row: typeof Row;
|
|
268
276
|
Column: typeof Column;
|
|
269
277
|
FormGrid: typeof FormGrid;
|
|
270
|
-
Separator:
|
|
278
|
+
Separator: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator11.SeparatorProps & react580.RefAttributes<HTMLDivElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
271
279
|
ArrayCards: ComposedArrayProps;
|
|
272
|
-
ArrayDialog:
|
|
273
|
-
ArrayCollapse:
|
|
280
|
+
ArrayDialog: react580.FC<ArrayComponentProps>;
|
|
281
|
+
ArrayCollapse: react580.FC<ArrayComponentProps & {
|
|
274
282
|
defaultActiveKey?: Array<string | number>;
|
|
275
283
|
mode?: "accordion" | "multiple";
|
|
276
284
|
}>;
|
|
277
|
-
ArrayPopover:
|
|
278
|
-
ObjectContainer:
|
|
285
|
+
ArrayPopover: react580.FC<ArrayComponentProps>;
|
|
286
|
+
ObjectContainer: react580.FC<ObjectContainerProps>;
|
|
279
287
|
}, Component_3, Decorator_3>): JSX.Element;
|
|
280
288
|
displayName: string;
|
|
281
289
|
};
|
|
282
290
|
Array: {
|
|
283
|
-
<Decorator_4 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof", Component_4 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
284
|
-
Combobox:
|
|
291
|
+
<Decorator_4 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "ColorPicker" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "ColorPicker.$$typeof", Component_4 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "ColorPicker" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
292
|
+
Combobox: react580.FC;
|
|
285
293
|
TagsInput: typeof TagsInput;
|
|
286
|
-
TagsInputInLine:
|
|
287
|
-
Slider:
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
294
|
+
TagsInputInLine: react580.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui280.TagsInputProps> & react580.RefAttributes<unknown>>;
|
|
295
|
+
Slider: react580.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui280.SliderProps>, "ref"> & react580.RefAttributes<unknown>>;
|
|
296
|
+
ColorPicker: react580.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui280.ColorPickerProps>, "ref"> & react580.RefAttributes<unknown>>;
|
|
297
|
+
FormItem: react580.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
298
|
+
children?: react580.ReactNode | undefined;
|
|
299
|
+
}>, "ref"> & react580.RefAttributes<unknown>>;
|
|
300
|
+
Hidden: react580.ForwardRefExoticComponent<Partial<{
|
|
292
301
|
children?: React.ReactNode;
|
|
293
302
|
value?: string;
|
|
294
|
-
}> &
|
|
295
|
-
Input:
|
|
296
|
-
Textarea:
|
|
297
|
-
NumberInput:
|
|
298
|
-
Checkbox:
|
|
299
|
-
Radio:
|
|
300
|
-
Select:
|
|
301
|
-
Switch:
|
|
302
|
-
DatePicker:
|
|
303
|
+
}> & react580.RefAttributes<unknown>>;
|
|
304
|
+
Input: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLInputElement> & react580.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
305
|
+
Textarea: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLTextAreaElement> & react580.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
306
|
+
NumberInput: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLInputElement> & react580.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
307
|
+
Checkbox: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox11.CheckboxProps & react580.RefAttributes<HTMLButtonElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
308
|
+
Radio: react580.FC;
|
|
309
|
+
Select: react580.FC;
|
|
310
|
+
Switch: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch11.SwitchProps & react580.RefAttributes<HTMLButtonElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
311
|
+
DatePicker: react580.ForwardRefExoticComponent<Partial<{
|
|
303
312
|
value?: Date;
|
|
304
313
|
onChange?: (date: Date | undefined) => void;
|
|
305
314
|
placeholder?: string;
|
|
306
|
-
} & Omit<
|
|
315
|
+
} & Omit<_pixpilot_shadcn_ui280.DatePickerProps, "onSelect" | "selected" | "mode">> & react580.RefAttributes<unknown>>;
|
|
307
316
|
Row: typeof Row;
|
|
308
317
|
Column: typeof Column;
|
|
309
318
|
FormGrid: typeof FormGrid;
|
|
310
|
-
Separator:
|
|
319
|
+
Separator: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator11.SeparatorProps & react580.RefAttributes<HTMLDivElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
311
320
|
ArrayCards: ComposedArrayProps;
|
|
312
|
-
ArrayDialog:
|
|
313
|
-
ArrayCollapse:
|
|
321
|
+
ArrayDialog: react580.FC<ArrayComponentProps>;
|
|
322
|
+
ArrayCollapse: react580.FC<ArrayComponentProps & {
|
|
314
323
|
defaultActiveKey?: Array<string | number>;
|
|
315
324
|
mode?: "accordion" | "multiple";
|
|
316
325
|
}>;
|
|
317
|
-
ArrayPopover:
|
|
318
|
-
ObjectContainer:
|
|
326
|
+
ArrayPopover: react580.FC<ArrayComponentProps>;
|
|
327
|
+
ObjectContainer: react580.FC<ObjectContainerProps>;
|
|
319
328
|
}, Component_4, Decorator_4>): JSX.Element;
|
|
320
329
|
displayName: string;
|
|
321
330
|
};
|
|
322
331
|
Boolean: {
|
|
323
|
-
<Decorator_5 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof", Component_5 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
324
|
-
Combobox:
|
|
332
|
+
<Decorator_5 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "ColorPicker" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "ColorPicker.$$typeof", Component_5 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "ColorPicker" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
333
|
+
Combobox: react580.FC;
|
|
325
334
|
TagsInput: typeof TagsInput;
|
|
326
|
-
TagsInputInLine:
|
|
327
|
-
Slider:
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
335
|
+
TagsInputInLine: react580.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui280.TagsInputProps> & react580.RefAttributes<unknown>>;
|
|
336
|
+
Slider: react580.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui280.SliderProps>, "ref"> & react580.RefAttributes<unknown>>;
|
|
337
|
+
ColorPicker: react580.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui280.ColorPickerProps>, "ref"> & react580.RefAttributes<unknown>>;
|
|
338
|
+
FormItem: react580.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
339
|
+
children?: react580.ReactNode | undefined;
|
|
340
|
+
}>, "ref"> & react580.RefAttributes<unknown>>;
|
|
341
|
+
Hidden: react580.ForwardRefExoticComponent<Partial<{
|
|
332
342
|
children?: React.ReactNode;
|
|
333
343
|
value?: string;
|
|
334
|
-
}> &
|
|
335
|
-
Input:
|
|
336
|
-
Textarea:
|
|
337
|
-
NumberInput:
|
|
338
|
-
Checkbox:
|
|
339
|
-
Radio:
|
|
340
|
-
Select:
|
|
341
|
-
Switch:
|
|
342
|
-
DatePicker:
|
|
344
|
+
}> & react580.RefAttributes<unknown>>;
|
|
345
|
+
Input: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLInputElement> & react580.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
346
|
+
Textarea: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLTextAreaElement> & react580.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
347
|
+
NumberInput: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLInputElement> & react580.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
348
|
+
Checkbox: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox11.CheckboxProps & react580.RefAttributes<HTMLButtonElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
349
|
+
Radio: react580.FC;
|
|
350
|
+
Select: react580.FC;
|
|
351
|
+
Switch: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch11.SwitchProps & react580.RefAttributes<HTMLButtonElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
352
|
+
DatePicker: react580.ForwardRefExoticComponent<Partial<{
|
|
343
353
|
value?: Date;
|
|
344
354
|
onChange?: (date: Date | undefined) => void;
|
|
345
355
|
placeholder?: string;
|
|
346
|
-
} & Omit<
|
|
356
|
+
} & Omit<_pixpilot_shadcn_ui280.DatePickerProps, "onSelect" | "selected" | "mode">> & react580.RefAttributes<unknown>>;
|
|
347
357
|
Row: typeof Row;
|
|
348
358
|
Column: typeof Column;
|
|
349
359
|
FormGrid: typeof FormGrid;
|
|
350
|
-
Separator:
|
|
360
|
+
Separator: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator11.SeparatorProps & react580.RefAttributes<HTMLDivElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
351
361
|
ArrayCards: ComposedArrayProps;
|
|
352
|
-
ArrayDialog:
|
|
353
|
-
ArrayCollapse:
|
|
362
|
+
ArrayDialog: react580.FC<ArrayComponentProps>;
|
|
363
|
+
ArrayCollapse: react580.FC<ArrayComponentProps & {
|
|
354
364
|
defaultActiveKey?: Array<string | number>;
|
|
355
365
|
mode?: "accordion" | "multiple";
|
|
356
366
|
}>;
|
|
357
|
-
ArrayPopover:
|
|
358
|
-
ObjectContainer:
|
|
367
|
+
ArrayPopover: react580.FC<ArrayComponentProps>;
|
|
368
|
+
ObjectContainer: react580.FC<ObjectContainerProps>;
|
|
359
369
|
}, Component_5, Decorator_5>): JSX.Element;
|
|
360
370
|
displayName: string;
|
|
361
371
|
};
|
|
362
372
|
Date: {
|
|
363
|
-
<Decorator_6 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof", Component_6 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
364
|
-
Combobox:
|
|
373
|
+
<Decorator_6 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "ColorPicker" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "ColorPicker.$$typeof", Component_6 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "ColorPicker" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
374
|
+
Combobox: react580.FC;
|
|
365
375
|
TagsInput: typeof TagsInput;
|
|
366
|
-
TagsInputInLine:
|
|
367
|
-
Slider:
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
376
|
+
TagsInputInLine: react580.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui280.TagsInputProps> & react580.RefAttributes<unknown>>;
|
|
377
|
+
Slider: react580.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui280.SliderProps>, "ref"> & react580.RefAttributes<unknown>>;
|
|
378
|
+
ColorPicker: react580.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui280.ColorPickerProps>, "ref"> & react580.RefAttributes<unknown>>;
|
|
379
|
+
FormItem: react580.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
380
|
+
children?: react580.ReactNode | undefined;
|
|
381
|
+
}>, "ref"> & react580.RefAttributes<unknown>>;
|
|
382
|
+
Hidden: react580.ForwardRefExoticComponent<Partial<{
|
|
372
383
|
children?: React.ReactNode;
|
|
373
384
|
value?: string;
|
|
374
|
-
}> &
|
|
375
|
-
Input:
|
|
376
|
-
Textarea:
|
|
377
|
-
NumberInput:
|
|
378
|
-
Checkbox:
|
|
379
|
-
Radio:
|
|
380
|
-
Select:
|
|
381
|
-
Switch:
|
|
382
|
-
DatePicker:
|
|
385
|
+
}> & react580.RefAttributes<unknown>>;
|
|
386
|
+
Input: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLInputElement> & react580.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
387
|
+
Textarea: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLTextAreaElement> & react580.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
388
|
+
NumberInput: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLInputElement> & react580.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
389
|
+
Checkbox: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox11.CheckboxProps & react580.RefAttributes<HTMLButtonElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
390
|
+
Radio: react580.FC;
|
|
391
|
+
Select: react580.FC;
|
|
392
|
+
Switch: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch11.SwitchProps & react580.RefAttributes<HTMLButtonElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
393
|
+
DatePicker: react580.ForwardRefExoticComponent<Partial<{
|
|
383
394
|
value?: Date;
|
|
384
395
|
onChange?: (date: Date | undefined) => void;
|
|
385
396
|
placeholder?: string;
|
|
386
|
-
} & Omit<
|
|
397
|
+
} & Omit<_pixpilot_shadcn_ui280.DatePickerProps, "onSelect" | "selected" | "mode">> & react580.RefAttributes<unknown>>;
|
|
387
398
|
Row: typeof Row;
|
|
388
399
|
Column: typeof Column;
|
|
389
400
|
FormGrid: typeof FormGrid;
|
|
390
|
-
Separator:
|
|
401
|
+
Separator: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator11.SeparatorProps & react580.RefAttributes<HTMLDivElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
391
402
|
ArrayCards: ComposedArrayProps;
|
|
392
|
-
ArrayDialog:
|
|
393
|
-
ArrayCollapse:
|
|
403
|
+
ArrayDialog: react580.FC<ArrayComponentProps>;
|
|
404
|
+
ArrayCollapse: react580.FC<ArrayComponentProps & {
|
|
394
405
|
defaultActiveKey?: Array<string | number>;
|
|
395
406
|
mode?: "accordion" | "multiple";
|
|
396
407
|
}>;
|
|
397
|
-
ArrayPopover:
|
|
398
|
-
ObjectContainer:
|
|
408
|
+
ArrayPopover: react580.FC<ArrayComponentProps>;
|
|
409
|
+
ObjectContainer: react580.FC<ObjectContainerProps>;
|
|
399
410
|
}, Component_6, Decorator_6>): JSX.Element;
|
|
400
411
|
displayName: string;
|
|
401
412
|
};
|
|
402
413
|
DateTime: {
|
|
403
|
-
<Decorator_7 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof", Component_7 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
404
|
-
Combobox:
|
|
414
|
+
<Decorator_7 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "ColorPicker" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "ColorPicker.$$typeof", Component_7 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "ColorPicker" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
415
|
+
Combobox: react580.FC;
|
|
405
416
|
TagsInput: typeof TagsInput;
|
|
406
|
-
TagsInputInLine:
|
|
407
|
-
Slider:
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
417
|
+
TagsInputInLine: react580.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui280.TagsInputProps> & react580.RefAttributes<unknown>>;
|
|
418
|
+
Slider: react580.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui280.SliderProps>, "ref"> & react580.RefAttributes<unknown>>;
|
|
419
|
+
ColorPicker: react580.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui280.ColorPickerProps>, "ref"> & react580.RefAttributes<unknown>>;
|
|
420
|
+
FormItem: react580.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
421
|
+
children?: react580.ReactNode | undefined;
|
|
422
|
+
}>, "ref"> & react580.RefAttributes<unknown>>;
|
|
423
|
+
Hidden: react580.ForwardRefExoticComponent<Partial<{
|
|
412
424
|
children?: React.ReactNode;
|
|
413
425
|
value?: string;
|
|
414
|
-
}> &
|
|
415
|
-
Input:
|
|
416
|
-
Textarea:
|
|
417
|
-
NumberInput:
|
|
418
|
-
Checkbox:
|
|
419
|
-
Radio:
|
|
420
|
-
Select:
|
|
421
|
-
Switch:
|
|
422
|
-
DatePicker:
|
|
426
|
+
}> & react580.RefAttributes<unknown>>;
|
|
427
|
+
Input: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLInputElement> & react580.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
428
|
+
Textarea: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLTextAreaElement> & react580.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
429
|
+
NumberInput: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLInputElement> & react580.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
430
|
+
Checkbox: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox11.CheckboxProps & react580.RefAttributes<HTMLButtonElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
431
|
+
Radio: react580.FC;
|
|
432
|
+
Select: react580.FC;
|
|
433
|
+
Switch: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch11.SwitchProps & react580.RefAttributes<HTMLButtonElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
434
|
+
DatePicker: react580.ForwardRefExoticComponent<Partial<{
|
|
423
435
|
value?: Date;
|
|
424
436
|
onChange?: (date: Date | undefined) => void;
|
|
425
437
|
placeholder?: string;
|
|
426
|
-
} & Omit<
|
|
438
|
+
} & Omit<_pixpilot_shadcn_ui280.DatePickerProps, "onSelect" | "selected" | "mode">> & react580.RefAttributes<unknown>>;
|
|
427
439
|
Row: typeof Row;
|
|
428
440
|
Column: typeof Column;
|
|
429
441
|
FormGrid: typeof FormGrid;
|
|
430
|
-
Separator:
|
|
442
|
+
Separator: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator11.SeparatorProps & react580.RefAttributes<HTMLDivElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
431
443
|
ArrayCards: ComposedArrayProps;
|
|
432
|
-
ArrayDialog:
|
|
433
|
-
ArrayCollapse:
|
|
444
|
+
ArrayDialog: react580.FC<ArrayComponentProps>;
|
|
445
|
+
ArrayCollapse: react580.FC<ArrayComponentProps & {
|
|
434
446
|
defaultActiveKey?: Array<string | number>;
|
|
435
447
|
mode?: "accordion" | "multiple";
|
|
436
448
|
}>;
|
|
437
|
-
ArrayPopover:
|
|
438
|
-
ObjectContainer:
|
|
449
|
+
ArrayPopover: react580.FC<ArrayComponentProps>;
|
|
450
|
+
ObjectContainer: react580.FC<ObjectContainerProps>;
|
|
439
451
|
}, Component_7, Decorator_7>): JSX.Element;
|
|
440
452
|
displayName: string;
|
|
441
453
|
};
|
|
442
454
|
Void: {
|
|
443
|
-
<Decorator_8 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof", Component_8 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
444
|
-
Combobox:
|
|
455
|
+
<Decorator_8 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "ColorPicker" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "ColorPicker.$$typeof", Component_8 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "ColorPicker" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
456
|
+
Combobox: react580.FC;
|
|
445
457
|
TagsInput: typeof TagsInput;
|
|
446
|
-
TagsInputInLine:
|
|
447
|
-
Slider:
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
458
|
+
TagsInputInLine: react580.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui280.TagsInputProps> & react580.RefAttributes<unknown>>;
|
|
459
|
+
Slider: react580.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui280.SliderProps>, "ref"> & react580.RefAttributes<unknown>>;
|
|
460
|
+
ColorPicker: react580.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui280.ColorPickerProps>, "ref"> & react580.RefAttributes<unknown>>;
|
|
461
|
+
FormItem: react580.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
462
|
+
children?: react580.ReactNode | undefined;
|
|
463
|
+
}>, "ref"> & react580.RefAttributes<unknown>>;
|
|
464
|
+
Hidden: react580.ForwardRefExoticComponent<Partial<{
|
|
452
465
|
children?: React.ReactNode;
|
|
453
466
|
value?: string;
|
|
454
|
-
}> &
|
|
455
|
-
Input:
|
|
456
|
-
Textarea:
|
|
457
|
-
NumberInput:
|
|
458
|
-
Checkbox:
|
|
459
|
-
Radio:
|
|
460
|
-
Select:
|
|
461
|
-
Switch:
|
|
462
|
-
DatePicker:
|
|
467
|
+
}> & react580.RefAttributes<unknown>>;
|
|
468
|
+
Input: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLInputElement> & react580.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
469
|
+
Textarea: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLTextAreaElement> & react580.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
470
|
+
NumberInput: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLInputElement> & react580.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
471
|
+
Checkbox: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox11.CheckboxProps & react580.RefAttributes<HTMLButtonElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
472
|
+
Radio: react580.FC;
|
|
473
|
+
Select: react580.FC;
|
|
474
|
+
Switch: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch11.SwitchProps & react580.RefAttributes<HTMLButtonElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
475
|
+
DatePicker: react580.ForwardRefExoticComponent<Partial<{
|
|
463
476
|
value?: Date;
|
|
464
477
|
onChange?: (date: Date | undefined) => void;
|
|
465
478
|
placeholder?: string;
|
|
466
|
-
} & Omit<
|
|
479
|
+
} & Omit<_pixpilot_shadcn_ui280.DatePickerProps, "onSelect" | "selected" | "mode">> & react580.RefAttributes<unknown>>;
|
|
467
480
|
Row: typeof Row;
|
|
468
481
|
Column: typeof Column;
|
|
469
482
|
FormGrid: typeof FormGrid;
|
|
470
|
-
Separator:
|
|
483
|
+
Separator: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator11.SeparatorProps & react580.RefAttributes<HTMLDivElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
471
484
|
ArrayCards: ComposedArrayProps;
|
|
472
|
-
ArrayDialog:
|
|
473
|
-
ArrayCollapse:
|
|
485
|
+
ArrayDialog: react580.FC<ArrayComponentProps>;
|
|
486
|
+
ArrayCollapse: react580.FC<ArrayComponentProps & {
|
|
474
487
|
defaultActiveKey?: Array<string | number>;
|
|
475
488
|
mode?: "accordion" | "multiple";
|
|
476
489
|
}>;
|
|
477
|
-
ArrayPopover:
|
|
478
|
-
ObjectContainer:
|
|
490
|
+
ArrayPopover: react580.FC<ArrayComponentProps>;
|
|
491
|
+
ObjectContainer: react580.FC<ObjectContainerProps>;
|
|
479
492
|
}, Component_8, Decorator_8>): JSX.Element;
|
|
480
493
|
displayName: string;
|
|
481
494
|
};
|
|
482
495
|
Number: {
|
|
483
|
-
<Decorator_9 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof", Component_9 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
484
|
-
Combobox:
|
|
496
|
+
<Decorator_9 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "ColorPicker" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "ColorPicker.$$typeof", Component_9 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "ColorPicker" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
497
|
+
Combobox: react580.FC;
|
|
485
498
|
TagsInput: typeof TagsInput;
|
|
486
|
-
TagsInputInLine:
|
|
487
|
-
Slider:
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
499
|
+
TagsInputInLine: react580.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui280.TagsInputProps> & react580.RefAttributes<unknown>>;
|
|
500
|
+
Slider: react580.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui280.SliderProps>, "ref"> & react580.RefAttributes<unknown>>;
|
|
501
|
+
ColorPicker: react580.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui280.ColorPickerProps>, "ref"> & react580.RefAttributes<unknown>>;
|
|
502
|
+
FormItem: react580.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
503
|
+
children?: react580.ReactNode | undefined;
|
|
504
|
+
}>, "ref"> & react580.RefAttributes<unknown>>;
|
|
505
|
+
Hidden: react580.ForwardRefExoticComponent<Partial<{
|
|
492
506
|
children?: React.ReactNode;
|
|
493
507
|
value?: string;
|
|
494
|
-
}> &
|
|
495
|
-
Input:
|
|
496
|
-
Textarea:
|
|
497
|
-
NumberInput:
|
|
498
|
-
Checkbox:
|
|
499
|
-
Radio:
|
|
500
|
-
Select:
|
|
501
|
-
Switch:
|
|
502
|
-
DatePicker:
|
|
508
|
+
}> & react580.RefAttributes<unknown>>;
|
|
509
|
+
Input: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLInputElement> & react580.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
510
|
+
Textarea: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLTextAreaElement> & react580.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
511
|
+
NumberInput: react580.ForwardRefExoticComponent<Omit<Partial<react580.ClassAttributes<HTMLInputElement> & react580.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
512
|
+
Checkbox: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox11.CheckboxProps & react580.RefAttributes<HTMLButtonElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
513
|
+
Radio: react580.FC;
|
|
514
|
+
Select: react580.FC;
|
|
515
|
+
Switch: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch11.SwitchProps & react580.RefAttributes<HTMLButtonElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
516
|
+
DatePicker: react580.ForwardRefExoticComponent<Partial<{
|
|
503
517
|
value?: Date;
|
|
504
518
|
onChange?: (date: Date | undefined) => void;
|
|
505
519
|
placeholder?: string;
|
|
506
|
-
} & Omit<
|
|
520
|
+
} & Omit<_pixpilot_shadcn_ui280.DatePickerProps, "onSelect" | "selected" | "mode">> & react580.RefAttributes<unknown>>;
|
|
507
521
|
Row: typeof Row;
|
|
508
522
|
Column: typeof Column;
|
|
509
523
|
FormGrid: typeof FormGrid;
|
|
510
|
-
Separator:
|
|
524
|
+
Separator: react580.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator11.SeparatorProps & react580.RefAttributes<HTMLDivElement>>, "ref"> & react580.RefAttributes<unknown>>;
|
|
511
525
|
ArrayCards: ComposedArrayProps;
|
|
512
|
-
ArrayDialog:
|
|
513
|
-
ArrayCollapse:
|
|
526
|
+
ArrayDialog: react580.FC<ArrayComponentProps>;
|
|
527
|
+
ArrayCollapse: react580.FC<ArrayComponentProps & {
|
|
514
528
|
defaultActiveKey?: Array<string | number>;
|
|
515
529
|
mode?: "accordion" | "multiple";
|
|
516
530
|
}>;
|
|
517
|
-
ArrayPopover:
|
|
518
|
-
ObjectContainer:
|
|
531
|
+
ArrayPopover: react580.FC<ArrayComponentProps>;
|
|
532
|
+
ObjectContainer: react580.FC<ObjectContainerProps>;
|
|
519
533
|
}, Component_9, Decorator_9>): JSX.Element;
|
|
520
534
|
displayName: string;
|
|
521
535
|
};
|