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