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