@pixpilot/formily-shadcn 1.7.2 → 1.7.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Checkbox.d.ts +2 -2
- package/dist/components/DatePicker.d.ts +3 -3
- package/dist/components/IconPicker.d.cts +3 -3
- package/dist/components/IconPicker.d.ts +3 -3
- package/dist/components/IconToggle.d.cts +2 -2
- package/dist/components/Input.d.cts +3 -3
- package/dist/components/TagsInputInline.d.cts +2 -2
- package/dist/components/TagsInputInline.d.ts +2 -2
- package/dist/components/Textarea.d.cts +2 -2
- package/dist/components/Textarea.d.ts +2 -2
- package/dist/components/file-upload/FileUpload.d.cts +8 -8
- package/dist/components/file-upload/FileUpload.d.ts +8 -8
- package/dist/components/file-upload/FileUploadInline.d.cts +8 -8
- package/dist/components/file-upload/FileUploadInline.d.ts +8 -8
- package/dist/components/schema-field/schema-field-basics.d.cts +288 -288
- package/dist/components/schema-field/schema-field-basics.d.ts +303 -303
- package/dist/components/schema-field/schema-field-extended.d.cts +9 -9
- package/dist/components/schema-field/schema-field-extended.d.ts +633 -633
- package/dist/components/schema-field/schema-field.d.ts +412 -412
- package/dist/components/slider/SliderSelect.d.cts +3 -3
- package/package.json +3 -3
|
@@ -15,9 +15,9 @@ import { Row } from "../Row.cjs";
|
|
|
15
15
|
import { ToggleGroupBaseProps } from "../ToggleGroup.cjs";
|
|
16
16
|
import * as _formily_react69 from "@formily/react";
|
|
17
17
|
import { ISchema } from "@formily/react";
|
|
18
|
-
import * as
|
|
18
|
+
import * as react1432 from "react";
|
|
19
19
|
import * as _formily_core1 from "@formily/core";
|
|
20
|
-
import * as
|
|
20
|
+
import * as _pixpilot_shadcn_ui485 from "@pixpilot/shadcn-ui";
|
|
21
21
|
import * as _radix_ui_react_checkbox22 from "@radix-ui/react-checkbox";
|
|
22
22
|
import * as _radix_ui_react_separator22 from "@radix-ui/react-separator";
|
|
23
23
|
import * as _radix_ui_react_switch22 from "@radix-ui/react-switch";
|
|
@@ -29,7 +29,7 @@ declare const basicComponentRegistry: {
|
|
|
29
29
|
decorator: string;
|
|
30
30
|
};
|
|
31
31
|
ArrayCollapse: {
|
|
32
|
-
component:
|
|
32
|
+
component: react1432.FC<ArrayComponentProps & {
|
|
33
33
|
defaultActiveKey?: Array<string | number>;
|
|
34
34
|
mode?: "accordion" | "multiple";
|
|
35
35
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
@@ -37,7 +37,7 @@ declare const basicComponentRegistry: {
|
|
|
37
37
|
decorator: string;
|
|
38
38
|
};
|
|
39
39
|
ArrayDialog: {
|
|
40
|
-
component:
|
|
40
|
+
component: react1432.FC<ArrayComponentProps & {
|
|
41
41
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
42
42
|
}>;
|
|
43
43
|
decorator: string;
|
|
@@ -47,162 +47,162 @@ declare const basicComponentRegistry: {
|
|
|
47
47
|
decorator: string;
|
|
48
48
|
};
|
|
49
49
|
ArrayPopover: {
|
|
50
|
-
component:
|
|
50
|
+
component: react1432.FC<ArrayComponentProps & {
|
|
51
51
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
52
52
|
}>;
|
|
53
53
|
decorator: string;
|
|
54
54
|
};
|
|
55
55
|
ArrayTags: {
|
|
56
|
-
component:
|
|
56
|
+
component: react1432.MemoExoticComponent<_formily_react69.ReactFC<ArrayTagsProps>>;
|
|
57
57
|
decorator: string;
|
|
58
58
|
};
|
|
59
59
|
ArrayToggleGroup: {
|
|
60
|
-
component:
|
|
60
|
+
component: react1432.MemoExoticComponent<_formily_react69.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
61
61
|
decorator: string;
|
|
62
62
|
};
|
|
63
63
|
ToggleGroup: {
|
|
64
|
-
component:
|
|
64
|
+
component: react1432.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
65
65
|
decorator: string;
|
|
66
66
|
};
|
|
67
67
|
Checkbox: {
|
|
68
|
-
component:
|
|
68
|
+
component: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox22.CheckboxProps & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
69
69
|
decorator: string;
|
|
70
70
|
};
|
|
71
71
|
Column: {
|
|
72
72
|
component: typeof Column;
|
|
73
73
|
};
|
|
74
74
|
DatePicker: {
|
|
75
|
-
component:
|
|
75
|
+
component: react1432.ForwardRefExoticComponent<Partial<{
|
|
76
76
|
value?: Date;
|
|
77
77
|
onChange?: (date: Date | undefined) => void;
|
|
78
78
|
placeholder?: string;
|
|
79
|
-
} & Omit<
|
|
79
|
+
} & Omit<_pixpilot_shadcn_ui485.DatePickerProps, "onSelect" | "selected" | "mode">> & react1432.RefAttributes<unknown>>;
|
|
80
80
|
decorator: string;
|
|
81
81
|
};
|
|
82
82
|
FormGrid: {
|
|
83
83
|
component: typeof FormGrid;
|
|
84
84
|
};
|
|
85
85
|
FormItem: {
|
|
86
|
-
component:
|
|
87
|
-
children?:
|
|
88
|
-
}>, "ref"> &
|
|
86
|
+
component: react1432.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
87
|
+
children?: react1432.ReactNode | undefined;
|
|
88
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
89
89
|
};
|
|
90
90
|
Hidden: {
|
|
91
|
-
component:
|
|
91
|
+
component: react1432.ForwardRefExoticComponent<Partial<{
|
|
92
92
|
children?: React.ReactNode;
|
|
93
93
|
value?: string;
|
|
94
|
-
}> &
|
|
94
|
+
}> & react1432.RefAttributes<unknown>>;
|
|
95
95
|
};
|
|
96
96
|
IconToggle: {
|
|
97
|
-
component:
|
|
97
|
+
component: react1432.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui485.IconToggleProps, "ref"> & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
98
98
|
decorator: string;
|
|
99
99
|
};
|
|
100
100
|
ToggleButton: {
|
|
101
|
-
component:
|
|
101
|
+
component: react1432.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui485.ToggleButtonProps, "ref"> & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
102
102
|
decorator: string;
|
|
103
103
|
};
|
|
104
104
|
Input: {
|
|
105
|
-
component:
|
|
105
|
+
component: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLInputElement> & react1432.InputHTMLAttributes<HTMLInputElement> & {
|
|
106
106
|
prefix?: React.ReactNode;
|
|
107
107
|
suffix?: React.ReactNode;
|
|
108
108
|
groupClassName?: string;
|
|
109
109
|
prefixClassName?: string;
|
|
110
110
|
suffixClassName?: string;
|
|
111
|
-
}>, "ref"> &
|
|
111
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
112
112
|
decorator: string;
|
|
113
113
|
};
|
|
114
114
|
NumberInput: {
|
|
115
|
-
component:
|
|
115
|
+
component: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLInputElement> & react1432.InputHTMLAttributes<HTMLInputElement> & {
|
|
116
116
|
prefix?: React.ReactNode;
|
|
117
117
|
suffix?: React.ReactNode;
|
|
118
118
|
groupClassName?: string;
|
|
119
119
|
prefixClassName?: string;
|
|
120
120
|
suffixClassName?: string;
|
|
121
|
-
}>, "ref"> &
|
|
121
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
122
122
|
decorator: string;
|
|
123
123
|
};
|
|
124
124
|
ObjectContainer: {
|
|
125
|
-
component:
|
|
125
|
+
component: react1432.FC<ObjectContainerProps>;
|
|
126
126
|
decorator: string;
|
|
127
127
|
};
|
|
128
128
|
Radio: {
|
|
129
|
-
component:
|
|
129
|
+
component: react1432.FC;
|
|
130
130
|
decorator: string;
|
|
131
131
|
};
|
|
132
132
|
Row: {
|
|
133
133
|
component: typeof Row;
|
|
134
134
|
};
|
|
135
135
|
Select: {
|
|
136
|
-
component:
|
|
136
|
+
component: react1432.FC;
|
|
137
137
|
decorator: string;
|
|
138
138
|
};
|
|
139
139
|
Separator: {
|
|
140
|
-
component:
|
|
140
|
+
component: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator22.SeparatorProps & react1432.RefAttributes<HTMLDivElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
141
141
|
};
|
|
142
142
|
Switch: {
|
|
143
|
-
component:
|
|
143
|
+
component: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch22.SwitchProps & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
144
144
|
decorator: string;
|
|
145
145
|
};
|
|
146
146
|
Textarea: {
|
|
147
|
-
component:
|
|
147
|
+
component: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLTextAreaElement> & react1432.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
148
148
|
decorator: string;
|
|
149
149
|
};
|
|
150
150
|
};
|
|
151
151
|
declare const basicComponents: {
|
|
152
152
|
ArrayCards: ComposedArrayProps;
|
|
153
|
-
ArrayCollapse:
|
|
153
|
+
ArrayCollapse: react1432.FC<ArrayComponentProps & {
|
|
154
154
|
defaultActiveKey?: Array<string | number>;
|
|
155
155
|
mode?: "accordion" | "multiple";
|
|
156
156
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
157
157
|
}>;
|
|
158
|
-
ArrayDialog:
|
|
158
|
+
ArrayDialog: react1432.FC<ArrayComponentProps & {
|
|
159
159
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
160
160
|
}>;
|
|
161
161
|
ArrayInline: ComposedArrayProps;
|
|
162
|
-
ArrayPopover:
|
|
162
|
+
ArrayPopover: react1432.FC<ArrayComponentProps & {
|
|
163
163
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
164
164
|
}>;
|
|
165
|
-
ArrayTags:
|
|
166
|
-
ArrayToggleGroup:
|
|
167
|
-
ToggleGroup:
|
|
168
|
-
Checkbox:
|
|
165
|
+
ArrayTags: react1432.MemoExoticComponent<_formily_react69.ReactFC<ArrayTagsProps>>;
|
|
166
|
+
ArrayToggleGroup: react1432.MemoExoticComponent<_formily_react69.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
167
|
+
ToggleGroup: react1432.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
168
|
+
Checkbox: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox22.CheckboxProps & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
169
169
|
Column: typeof Column;
|
|
170
|
-
DatePicker:
|
|
170
|
+
DatePicker: react1432.ForwardRefExoticComponent<Partial<{
|
|
171
171
|
value?: Date;
|
|
172
172
|
onChange?: (date: Date | undefined) => void;
|
|
173
173
|
placeholder?: string;
|
|
174
|
-
} & Omit<
|
|
174
|
+
} & Omit<_pixpilot_shadcn_ui485.DatePickerProps, "onSelect" | "selected" | "mode">> & react1432.RefAttributes<unknown>>;
|
|
175
175
|
FormGrid: typeof FormGrid;
|
|
176
|
-
FormItem:
|
|
177
|
-
children?:
|
|
178
|
-
}>, "ref"> &
|
|
179
|
-
Hidden:
|
|
176
|
+
FormItem: react1432.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
177
|
+
children?: react1432.ReactNode | undefined;
|
|
178
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
179
|
+
Hidden: react1432.ForwardRefExoticComponent<Partial<{
|
|
180
180
|
children?: React.ReactNode;
|
|
181
181
|
value?: string;
|
|
182
|
-
}> &
|
|
183
|
-
IconToggle:
|
|
184
|
-
ToggleButton:
|
|
185
|
-
Input:
|
|
182
|
+
}> & react1432.RefAttributes<unknown>>;
|
|
183
|
+
IconToggle: react1432.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui485.IconToggleProps, "ref"> & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
184
|
+
ToggleButton: react1432.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui485.ToggleButtonProps, "ref"> & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
185
|
+
Input: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLInputElement> & react1432.InputHTMLAttributes<HTMLInputElement> & {
|
|
186
186
|
prefix?: React.ReactNode;
|
|
187
187
|
suffix?: React.ReactNode;
|
|
188
188
|
groupClassName?: string;
|
|
189
189
|
prefixClassName?: string;
|
|
190
190
|
suffixClassName?: string;
|
|
191
|
-
}>, "ref"> &
|
|
192
|
-
NumberInput:
|
|
191
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
192
|
+
NumberInput: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLInputElement> & react1432.InputHTMLAttributes<HTMLInputElement> & {
|
|
193
193
|
prefix?: React.ReactNode;
|
|
194
194
|
suffix?: React.ReactNode;
|
|
195
195
|
groupClassName?: string;
|
|
196
196
|
prefixClassName?: string;
|
|
197
197
|
suffixClassName?: string;
|
|
198
|
-
}>, "ref"> &
|
|
199
|
-
ObjectContainer:
|
|
200
|
-
Radio:
|
|
198
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
199
|
+
ObjectContainer: react1432.FC<ObjectContainerProps>;
|
|
200
|
+
Radio: react1432.FC;
|
|
201
201
|
Row: typeof Row;
|
|
202
|
-
Select:
|
|
203
|
-
Separator:
|
|
204
|
-
Switch:
|
|
205
|
-
Textarea:
|
|
202
|
+
Select: react1432.FC;
|
|
203
|
+
Separator: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator22.SeparatorProps & react1432.RefAttributes<HTMLDivElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
204
|
+
Switch: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch22.SwitchProps & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
205
|
+
Textarea: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLTextAreaElement> & react1432.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
206
206
|
};
|
|
207
207
|
declare const SchemaFieldBasics: {
|
|
208
208
|
<Decorator extends _formily_react69.JSXComponent, Component extends _formily_react69.JSXComponent>(props: _formily_react69.ISchemaFieldProps<Decorator, Component, _formily_core1.ObjectField<Decorator, Component>>): JSX.Element;
|
|
@@ -210,531 +210,531 @@ declare const SchemaFieldBasics: {
|
|
|
210
210
|
Markup: {
|
|
211
211
|
<Decorator_1 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof", Component_1 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof">(props: _formily_react69.ISchemaMarkupFieldProps<{
|
|
212
212
|
ArrayCards: ComposedArrayProps;
|
|
213
|
-
ArrayCollapse:
|
|
213
|
+
ArrayCollapse: react1432.FC<ArrayComponentProps & {
|
|
214
214
|
defaultActiveKey?: Array<string | number>;
|
|
215
215
|
mode?: "accordion" | "multiple";
|
|
216
216
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
217
217
|
}>;
|
|
218
|
-
ArrayDialog:
|
|
218
|
+
ArrayDialog: react1432.FC<ArrayComponentProps & {
|
|
219
219
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
220
220
|
}>;
|
|
221
221
|
ArrayInline: ComposedArrayProps;
|
|
222
|
-
ArrayPopover:
|
|
222
|
+
ArrayPopover: react1432.FC<ArrayComponentProps & {
|
|
223
223
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
224
224
|
}>;
|
|
225
|
-
ArrayTags:
|
|
226
|
-
ArrayToggleGroup:
|
|
227
|
-
ToggleGroup:
|
|
228
|
-
Checkbox:
|
|
225
|
+
ArrayTags: react1432.MemoExoticComponent<_formily_react69.ReactFC<ArrayTagsProps>>;
|
|
226
|
+
ArrayToggleGroup: react1432.MemoExoticComponent<_formily_react69.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
227
|
+
ToggleGroup: react1432.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
228
|
+
Checkbox: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox22.CheckboxProps & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
229
229
|
Column: typeof Column;
|
|
230
|
-
DatePicker:
|
|
230
|
+
DatePicker: react1432.ForwardRefExoticComponent<Partial<{
|
|
231
231
|
value?: Date;
|
|
232
232
|
onChange?: (date: Date | undefined) => void;
|
|
233
233
|
placeholder?: string;
|
|
234
|
-
} & Omit<
|
|
234
|
+
} & Omit<_pixpilot_shadcn_ui485.DatePickerProps, "onSelect" | "selected" | "mode">> & react1432.RefAttributes<unknown>>;
|
|
235
235
|
FormGrid: typeof FormGrid;
|
|
236
|
-
FormItem:
|
|
237
|
-
children?:
|
|
238
|
-
}>, "ref"> &
|
|
239
|
-
Hidden:
|
|
236
|
+
FormItem: react1432.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
237
|
+
children?: react1432.ReactNode | undefined;
|
|
238
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
239
|
+
Hidden: react1432.ForwardRefExoticComponent<Partial<{
|
|
240
240
|
children?: React.ReactNode;
|
|
241
241
|
value?: string;
|
|
242
|
-
}> &
|
|
243
|
-
IconToggle:
|
|
244
|
-
ToggleButton:
|
|
245
|
-
Input:
|
|
242
|
+
}> & react1432.RefAttributes<unknown>>;
|
|
243
|
+
IconToggle: react1432.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui485.IconToggleProps, "ref"> & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
244
|
+
ToggleButton: react1432.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui485.ToggleButtonProps, "ref"> & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
245
|
+
Input: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLInputElement> & react1432.InputHTMLAttributes<HTMLInputElement> & {
|
|
246
246
|
prefix?: React.ReactNode;
|
|
247
247
|
suffix?: React.ReactNode;
|
|
248
248
|
groupClassName?: string;
|
|
249
249
|
prefixClassName?: string;
|
|
250
250
|
suffixClassName?: string;
|
|
251
|
-
}>, "ref"> &
|
|
252
|
-
NumberInput:
|
|
251
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
252
|
+
NumberInput: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLInputElement> & react1432.InputHTMLAttributes<HTMLInputElement> & {
|
|
253
253
|
prefix?: React.ReactNode;
|
|
254
254
|
suffix?: React.ReactNode;
|
|
255
255
|
groupClassName?: string;
|
|
256
256
|
prefixClassName?: string;
|
|
257
257
|
suffixClassName?: string;
|
|
258
|
-
}>, "ref"> &
|
|
259
|
-
ObjectContainer:
|
|
260
|
-
Radio:
|
|
258
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
259
|
+
ObjectContainer: react1432.FC<ObjectContainerProps>;
|
|
260
|
+
Radio: react1432.FC;
|
|
261
261
|
Row: typeof Row;
|
|
262
|
-
Select:
|
|
263
|
-
Separator:
|
|
264
|
-
Switch:
|
|
265
|
-
Textarea:
|
|
262
|
+
Select: react1432.FC;
|
|
263
|
+
Separator: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator22.SeparatorProps & react1432.RefAttributes<HTMLDivElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
264
|
+
Switch: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch22.SwitchProps & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
265
|
+
Textarea: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLTextAreaElement> & react1432.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
266
266
|
}, Component_1, Decorator_1>): JSX.Element;
|
|
267
267
|
displayName: string;
|
|
268
268
|
};
|
|
269
269
|
String: {
|
|
270
270
|
<Decorator_2 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof", Component_2 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
271
271
|
ArrayCards: ComposedArrayProps;
|
|
272
|
-
ArrayCollapse:
|
|
272
|
+
ArrayCollapse: react1432.FC<ArrayComponentProps & {
|
|
273
273
|
defaultActiveKey?: Array<string | number>;
|
|
274
274
|
mode?: "accordion" | "multiple";
|
|
275
275
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
276
276
|
}>;
|
|
277
|
-
ArrayDialog:
|
|
277
|
+
ArrayDialog: react1432.FC<ArrayComponentProps & {
|
|
278
278
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
279
279
|
}>;
|
|
280
280
|
ArrayInline: ComposedArrayProps;
|
|
281
|
-
ArrayPopover:
|
|
281
|
+
ArrayPopover: react1432.FC<ArrayComponentProps & {
|
|
282
282
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
283
283
|
}>;
|
|
284
|
-
ArrayTags:
|
|
285
|
-
ArrayToggleGroup:
|
|
286
|
-
ToggleGroup:
|
|
287
|
-
Checkbox:
|
|
284
|
+
ArrayTags: react1432.MemoExoticComponent<_formily_react69.ReactFC<ArrayTagsProps>>;
|
|
285
|
+
ArrayToggleGroup: react1432.MemoExoticComponent<_formily_react69.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
286
|
+
ToggleGroup: react1432.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
287
|
+
Checkbox: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox22.CheckboxProps & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
288
288
|
Column: typeof Column;
|
|
289
|
-
DatePicker:
|
|
289
|
+
DatePicker: react1432.ForwardRefExoticComponent<Partial<{
|
|
290
290
|
value?: Date;
|
|
291
291
|
onChange?: (date: Date | undefined) => void;
|
|
292
292
|
placeholder?: string;
|
|
293
|
-
} & Omit<
|
|
293
|
+
} & Omit<_pixpilot_shadcn_ui485.DatePickerProps, "onSelect" | "selected" | "mode">> & react1432.RefAttributes<unknown>>;
|
|
294
294
|
FormGrid: typeof FormGrid;
|
|
295
|
-
FormItem:
|
|
296
|
-
children?:
|
|
297
|
-
}>, "ref"> &
|
|
298
|
-
Hidden:
|
|
295
|
+
FormItem: react1432.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
296
|
+
children?: react1432.ReactNode | undefined;
|
|
297
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
298
|
+
Hidden: react1432.ForwardRefExoticComponent<Partial<{
|
|
299
299
|
children?: React.ReactNode;
|
|
300
300
|
value?: string;
|
|
301
|
-
}> &
|
|
302
|
-
IconToggle:
|
|
303
|
-
ToggleButton:
|
|
304
|
-
Input:
|
|
301
|
+
}> & react1432.RefAttributes<unknown>>;
|
|
302
|
+
IconToggle: react1432.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui485.IconToggleProps, "ref"> & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
303
|
+
ToggleButton: react1432.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui485.ToggleButtonProps, "ref"> & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
304
|
+
Input: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLInputElement> & react1432.InputHTMLAttributes<HTMLInputElement> & {
|
|
305
305
|
prefix?: React.ReactNode;
|
|
306
306
|
suffix?: React.ReactNode;
|
|
307
307
|
groupClassName?: string;
|
|
308
308
|
prefixClassName?: string;
|
|
309
309
|
suffixClassName?: string;
|
|
310
|
-
}>, "ref"> &
|
|
311
|
-
NumberInput:
|
|
310
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
311
|
+
NumberInput: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLInputElement> & react1432.InputHTMLAttributes<HTMLInputElement> & {
|
|
312
312
|
prefix?: React.ReactNode;
|
|
313
313
|
suffix?: React.ReactNode;
|
|
314
314
|
groupClassName?: string;
|
|
315
315
|
prefixClassName?: string;
|
|
316
316
|
suffixClassName?: string;
|
|
317
|
-
}>, "ref"> &
|
|
318
|
-
ObjectContainer:
|
|
319
|
-
Radio:
|
|
317
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
318
|
+
ObjectContainer: react1432.FC<ObjectContainerProps>;
|
|
319
|
+
Radio: react1432.FC;
|
|
320
320
|
Row: typeof Row;
|
|
321
|
-
Select:
|
|
322
|
-
Separator:
|
|
323
|
-
Switch:
|
|
324
|
-
Textarea:
|
|
321
|
+
Select: react1432.FC;
|
|
322
|
+
Separator: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator22.SeparatorProps & react1432.RefAttributes<HTMLDivElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
323
|
+
Switch: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch22.SwitchProps & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
324
|
+
Textarea: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLTextAreaElement> & react1432.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
325
325
|
}, Component_2, Decorator_2>): JSX.Element;
|
|
326
326
|
displayName: string;
|
|
327
327
|
};
|
|
328
328
|
Object: {
|
|
329
329
|
<Decorator_3 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof", Component_3 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
330
330
|
ArrayCards: ComposedArrayProps;
|
|
331
|
-
ArrayCollapse:
|
|
331
|
+
ArrayCollapse: react1432.FC<ArrayComponentProps & {
|
|
332
332
|
defaultActiveKey?: Array<string | number>;
|
|
333
333
|
mode?: "accordion" | "multiple";
|
|
334
334
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
335
335
|
}>;
|
|
336
|
-
ArrayDialog:
|
|
336
|
+
ArrayDialog: react1432.FC<ArrayComponentProps & {
|
|
337
337
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
338
338
|
}>;
|
|
339
339
|
ArrayInline: ComposedArrayProps;
|
|
340
|
-
ArrayPopover:
|
|
340
|
+
ArrayPopover: react1432.FC<ArrayComponentProps & {
|
|
341
341
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
342
342
|
}>;
|
|
343
|
-
ArrayTags:
|
|
344
|
-
ArrayToggleGroup:
|
|
345
|
-
ToggleGroup:
|
|
346
|
-
Checkbox:
|
|
343
|
+
ArrayTags: react1432.MemoExoticComponent<_formily_react69.ReactFC<ArrayTagsProps>>;
|
|
344
|
+
ArrayToggleGroup: react1432.MemoExoticComponent<_formily_react69.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
345
|
+
ToggleGroup: react1432.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
346
|
+
Checkbox: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox22.CheckboxProps & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
347
347
|
Column: typeof Column;
|
|
348
|
-
DatePicker:
|
|
348
|
+
DatePicker: react1432.ForwardRefExoticComponent<Partial<{
|
|
349
349
|
value?: Date;
|
|
350
350
|
onChange?: (date: Date | undefined) => void;
|
|
351
351
|
placeholder?: string;
|
|
352
|
-
} & Omit<
|
|
352
|
+
} & Omit<_pixpilot_shadcn_ui485.DatePickerProps, "onSelect" | "selected" | "mode">> & react1432.RefAttributes<unknown>>;
|
|
353
353
|
FormGrid: typeof FormGrid;
|
|
354
|
-
FormItem:
|
|
355
|
-
children?:
|
|
356
|
-
}>, "ref"> &
|
|
357
|
-
Hidden:
|
|
354
|
+
FormItem: react1432.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
355
|
+
children?: react1432.ReactNode | undefined;
|
|
356
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
357
|
+
Hidden: react1432.ForwardRefExoticComponent<Partial<{
|
|
358
358
|
children?: React.ReactNode;
|
|
359
359
|
value?: string;
|
|
360
|
-
}> &
|
|
361
|
-
IconToggle:
|
|
362
|
-
ToggleButton:
|
|
363
|
-
Input:
|
|
360
|
+
}> & react1432.RefAttributes<unknown>>;
|
|
361
|
+
IconToggle: react1432.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui485.IconToggleProps, "ref"> & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
362
|
+
ToggleButton: react1432.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui485.ToggleButtonProps, "ref"> & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
363
|
+
Input: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLInputElement> & react1432.InputHTMLAttributes<HTMLInputElement> & {
|
|
364
364
|
prefix?: React.ReactNode;
|
|
365
365
|
suffix?: React.ReactNode;
|
|
366
366
|
groupClassName?: string;
|
|
367
367
|
prefixClassName?: string;
|
|
368
368
|
suffixClassName?: string;
|
|
369
|
-
}>, "ref"> &
|
|
370
|
-
NumberInput:
|
|
369
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
370
|
+
NumberInput: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLInputElement> & react1432.InputHTMLAttributes<HTMLInputElement> & {
|
|
371
371
|
prefix?: React.ReactNode;
|
|
372
372
|
suffix?: React.ReactNode;
|
|
373
373
|
groupClassName?: string;
|
|
374
374
|
prefixClassName?: string;
|
|
375
375
|
suffixClassName?: string;
|
|
376
|
-
}>, "ref"> &
|
|
377
|
-
ObjectContainer:
|
|
378
|
-
Radio:
|
|
376
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
377
|
+
ObjectContainer: react1432.FC<ObjectContainerProps>;
|
|
378
|
+
Radio: react1432.FC;
|
|
379
379
|
Row: typeof Row;
|
|
380
|
-
Select:
|
|
381
|
-
Separator:
|
|
382
|
-
Switch:
|
|
383
|
-
Textarea:
|
|
380
|
+
Select: react1432.FC;
|
|
381
|
+
Separator: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator22.SeparatorProps & react1432.RefAttributes<HTMLDivElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
382
|
+
Switch: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch22.SwitchProps & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
383
|
+
Textarea: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLTextAreaElement> & react1432.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
384
384
|
}, Component_3, Decorator_3>): JSX.Element;
|
|
385
385
|
displayName: string;
|
|
386
386
|
};
|
|
387
387
|
Array: {
|
|
388
388
|
<Decorator_4 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof", Component_4 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
389
389
|
ArrayCards: ComposedArrayProps;
|
|
390
|
-
ArrayCollapse:
|
|
390
|
+
ArrayCollapse: react1432.FC<ArrayComponentProps & {
|
|
391
391
|
defaultActiveKey?: Array<string | number>;
|
|
392
392
|
mode?: "accordion" | "multiple";
|
|
393
393
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
394
394
|
}>;
|
|
395
|
-
ArrayDialog:
|
|
395
|
+
ArrayDialog: react1432.FC<ArrayComponentProps & {
|
|
396
396
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
397
397
|
}>;
|
|
398
398
|
ArrayInline: ComposedArrayProps;
|
|
399
|
-
ArrayPopover:
|
|
399
|
+
ArrayPopover: react1432.FC<ArrayComponentProps & {
|
|
400
400
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
401
401
|
}>;
|
|
402
|
-
ArrayTags:
|
|
403
|
-
ArrayToggleGroup:
|
|
404
|
-
ToggleGroup:
|
|
405
|
-
Checkbox:
|
|
402
|
+
ArrayTags: react1432.MemoExoticComponent<_formily_react69.ReactFC<ArrayTagsProps>>;
|
|
403
|
+
ArrayToggleGroup: react1432.MemoExoticComponent<_formily_react69.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
404
|
+
ToggleGroup: react1432.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
405
|
+
Checkbox: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox22.CheckboxProps & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
406
406
|
Column: typeof Column;
|
|
407
|
-
DatePicker:
|
|
407
|
+
DatePicker: react1432.ForwardRefExoticComponent<Partial<{
|
|
408
408
|
value?: Date;
|
|
409
409
|
onChange?: (date: Date | undefined) => void;
|
|
410
410
|
placeholder?: string;
|
|
411
|
-
} & Omit<
|
|
411
|
+
} & Omit<_pixpilot_shadcn_ui485.DatePickerProps, "onSelect" | "selected" | "mode">> & react1432.RefAttributes<unknown>>;
|
|
412
412
|
FormGrid: typeof FormGrid;
|
|
413
|
-
FormItem:
|
|
414
|
-
children?:
|
|
415
|
-
}>, "ref"> &
|
|
416
|
-
Hidden:
|
|
413
|
+
FormItem: react1432.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
414
|
+
children?: react1432.ReactNode | undefined;
|
|
415
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
416
|
+
Hidden: react1432.ForwardRefExoticComponent<Partial<{
|
|
417
417
|
children?: React.ReactNode;
|
|
418
418
|
value?: string;
|
|
419
|
-
}> &
|
|
420
|
-
IconToggle:
|
|
421
|
-
ToggleButton:
|
|
422
|
-
Input:
|
|
419
|
+
}> & react1432.RefAttributes<unknown>>;
|
|
420
|
+
IconToggle: react1432.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui485.IconToggleProps, "ref"> & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
421
|
+
ToggleButton: react1432.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui485.ToggleButtonProps, "ref"> & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
422
|
+
Input: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLInputElement> & react1432.InputHTMLAttributes<HTMLInputElement> & {
|
|
423
423
|
prefix?: React.ReactNode;
|
|
424
424
|
suffix?: React.ReactNode;
|
|
425
425
|
groupClassName?: string;
|
|
426
426
|
prefixClassName?: string;
|
|
427
427
|
suffixClassName?: string;
|
|
428
|
-
}>, "ref"> &
|
|
429
|
-
NumberInput:
|
|
428
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
429
|
+
NumberInput: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLInputElement> & react1432.InputHTMLAttributes<HTMLInputElement> & {
|
|
430
430
|
prefix?: React.ReactNode;
|
|
431
431
|
suffix?: React.ReactNode;
|
|
432
432
|
groupClassName?: string;
|
|
433
433
|
prefixClassName?: string;
|
|
434
434
|
suffixClassName?: string;
|
|
435
|
-
}>, "ref"> &
|
|
436
|
-
ObjectContainer:
|
|
437
|
-
Radio:
|
|
435
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
436
|
+
ObjectContainer: react1432.FC<ObjectContainerProps>;
|
|
437
|
+
Radio: react1432.FC;
|
|
438
438
|
Row: typeof Row;
|
|
439
|
-
Select:
|
|
440
|
-
Separator:
|
|
441
|
-
Switch:
|
|
442
|
-
Textarea:
|
|
439
|
+
Select: react1432.FC;
|
|
440
|
+
Separator: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator22.SeparatorProps & react1432.RefAttributes<HTMLDivElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
441
|
+
Switch: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch22.SwitchProps & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
442
|
+
Textarea: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLTextAreaElement> & react1432.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
443
443
|
}, Component_4, Decorator_4>): JSX.Element;
|
|
444
444
|
displayName: string;
|
|
445
445
|
};
|
|
446
446
|
Boolean: {
|
|
447
447
|
<Decorator_5 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof", Component_5 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
448
448
|
ArrayCards: ComposedArrayProps;
|
|
449
|
-
ArrayCollapse:
|
|
449
|
+
ArrayCollapse: react1432.FC<ArrayComponentProps & {
|
|
450
450
|
defaultActiveKey?: Array<string | number>;
|
|
451
451
|
mode?: "accordion" | "multiple";
|
|
452
452
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
453
453
|
}>;
|
|
454
|
-
ArrayDialog:
|
|
454
|
+
ArrayDialog: react1432.FC<ArrayComponentProps & {
|
|
455
455
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
456
456
|
}>;
|
|
457
457
|
ArrayInline: ComposedArrayProps;
|
|
458
|
-
ArrayPopover:
|
|
458
|
+
ArrayPopover: react1432.FC<ArrayComponentProps & {
|
|
459
459
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
460
460
|
}>;
|
|
461
|
-
ArrayTags:
|
|
462
|
-
ArrayToggleGroup:
|
|
463
|
-
ToggleGroup:
|
|
464
|
-
Checkbox:
|
|
461
|
+
ArrayTags: react1432.MemoExoticComponent<_formily_react69.ReactFC<ArrayTagsProps>>;
|
|
462
|
+
ArrayToggleGroup: react1432.MemoExoticComponent<_formily_react69.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
463
|
+
ToggleGroup: react1432.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
464
|
+
Checkbox: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox22.CheckboxProps & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
465
465
|
Column: typeof Column;
|
|
466
|
-
DatePicker:
|
|
466
|
+
DatePicker: react1432.ForwardRefExoticComponent<Partial<{
|
|
467
467
|
value?: Date;
|
|
468
468
|
onChange?: (date: Date | undefined) => void;
|
|
469
469
|
placeholder?: string;
|
|
470
|
-
} & Omit<
|
|
470
|
+
} & Omit<_pixpilot_shadcn_ui485.DatePickerProps, "onSelect" | "selected" | "mode">> & react1432.RefAttributes<unknown>>;
|
|
471
471
|
FormGrid: typeof FormGrid;
|
|
472
|
-
FormItem:
|
|
473
|
-
children?:
|
|
474
|
-
}>, "ref"> &
|
|
475
|
-
Hidden:
|
|
472
|
+
FormItem: react1432.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
473
|
+
children?: react1432.ReactNode | undefined;
|
|
474
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
475
|
+
Hidden: react1432.ForwardRefExoticComponent<Partial<{
|
|
476
476
|
children?: React.ReactNode;
|
|
477
477
|
value?: string;
|
|
478
|
-
}> &
|
|
479
|
-
IconToggle:
|
|
480
|
-
ToggleButton:
|
|
481
|
-
Input:
|
|
478
|
+
}> & react1432.RefAttributes<unknown>>;
|
|
479
|
+
IconToggle: react1432.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui485.IconToggleProps, "ref"> & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
480
|
+
ToggleButton: react1432.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui485.ToggleButtonProps, "ref"> & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
481
|
+
Input: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLInputElement> & react1432.InputHTMLAttributes<HTMLInputElement> & {
|
|
482
482
|
prefix?: React.ReactNode;
|
|
483
483
|
suffix?: React.ReactNode;
|
|
484
484
|
groupClassName?: string;
|
|
485
485
|
prefixClassName?: string;
|
|
486
486
|
suffixClassName?: string;
|
|
487
|
-
}>, "ref"> &
|
|
488
|
-
NumberInput:
|
|
487
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
488
|
+
NumberInput: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLInputElement> & react1432.InputHTMLAttributes<HTMLInputElement> & {
|
|
489
489
|
prefix?: React.ReactNode;
|
|
490
490
|
suffix?: React.ReactNode;
|
|
491
491
|
groupClassName?: string;
|
|
492
492
|
prefixClassName?: string;
|
|
493
493
|
suffixClassName?: string;
|
|
494
|
-
}>, "ref"> &
|
|
495
|
-
ObjectContainer:
|
|
496
|
-
Radio:
|
|
494
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
495
|
+
ObjectContainer: react1432.FC<ObjectContainerProps>;
|
|
496
|
+
Radio: react1432.FC;
|
|
497
497
|
Row: typeof Row;
|
|
498
|
-
Select:
|
|
499
|
-
Separator:
|
|
500
|
-
Switch:
|
|
501
|
-
Textarea:
|
|
498
|
+
Select: react1432.FC;
|
|
499
|
+
Separator: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator22.SeparatorProps & react1432.RefAttributes<HTMLDivElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
500
|
+
Switch: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch22.SwitchProps & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
501
|
+
Textarea: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLTextAreaElement> & react1432.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
502
502
|
}, Component_5, Decorator_5>): JSX.Element;
|
|
503
503
|
displayName: string;
|
|
504
504
|
};
|
|
505
505
|
Date: {
|
|
506
506
|
<Decorator_6 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof", Component_6 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
507
507
|
ArrayCards: ComposedArrayProps;
|
|
508
|
-
ArrayCollapse:
|
|
508
|
+
ArrayCollapse: react1432.FC<ArrayComponentProps & {
|
|
509
509
|
defaultActiveKey?: Array<string | number>;
|
|
510
510
|
mode?: "accordion" | "multiple";
|
|
511
511
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
512
512
|
}>;
|
|
513
|
-
ArrayDialog:
|
|
513
|
+
ArrayDialog: react1432.FC<ArrayComponentProps & {
|
|
514
514
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
515
515
|
}>;
|
|
516
516
|
ArrayInline: ComposedArrayProps;
|
|
517
|
-
ArrayPopover:
|
|
517
|
+
ArrayPopover: react1432.FC<ArrayComponentProps & {
|
|
518
518
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
519
519
|
}>;
|
|
520
|
-
ArrayTags:
|
|
521
|
-
ArrayToggleGroup:
|
|
522
|
-
ToggleGroup:
|
|
523
|
-
Checkbox:
|
|
520
|
+
ArrayTags: react1432.MemoExoticComponent<_formily_react69.ReactFC<ArrayTagsProps>>;
|
|
521
|
+
ArrayToggleGroup: react1432.MemoExoticComponent<_formily_react69.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
522
|
+
ToggleGroup: react1432.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
523
|
+
Checkbox: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox22.CheckboxProps & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
524
524
|
Column: typeof Column;
|
|
525
|
-
DatePicker:
|
|
525
|
+
DatePicker: react1432.ForwardRefExoticComponent<Partial<{
|
|
526
526
|
value?: Date;
|
|
527
527
|
onChange?: (date: Date | undefined) => void;
|
|
528
528
|
placeholder?: string;
|
|
529
|
-
} & Omit<
|
|
529
|
+
} & Omit<_pixpilot_shadcn_ui485.DatePickerProps, "onSelect" | "selected" | "mode">> & react1432.RefAttributes<unknown>>;
|
|
530
530
|
FormGrid: typeof FormGrid;
|
|
531
|
-
FormItem:
|
|
532
|
-
children?:
|
|
533
|
-
}>, "ref"> &
|
|
534
|
-
Hidden:
|
|
531
|
+
FormItem: react1432.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
532
|
+
children?: react1432.ReactNode | undefined;
|
|
533
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
534
|
+
Hidden: react1432.ForwardRefExoticComponent<Partial<{
|
|
535
535
|
children?: React.ReactNode;
|
|
536
536
|
value?: string;
|
|
537
|
-
}> &
|
|
538
|
-
IconToggle:
|
|
539
|
-
ToggleButton:
|
|
540
|
-
Input:
|
|
537
|
+
}> & react1432.RefAttributes<unknown>>;
|
|
538
|
+
IconToggle: react1432.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui485.IconToggleProps, "ref"> & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
539
|
+
ToggleButton: react1432.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui485.ToggleButtonProps, "ref"> & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
540
|
+
Input: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLInputElement> & react1432.InputHTMLAttributes<HTMLInputElement> & {
|
|
541
541
|
prefix?: React.ReactNode;
|
|
542
542
|
suffix?: React.ReactNode;
|
|
543
543
|
groupClassName?: string;
|
|
544
544
|
prefixClassName?: string;
|
|
545
545
|
suffixClassName?: string;
|
|
546
|
-
}>, "ref"> &
|
|
547
|
-
NumberInput:
|
|
546
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
547
|
+
NumberInput: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLInputElement> & react1432.InputHTMLAttributes<HTMLInputElement> & {
|
|
548
548
|
prefix?: React.ReactNode;
|
|
549
549
|
suffix?: React.ReactNode;
|
|
550
550
|
groupClassName?: string;
|
|
551
551
|
prefixClassName?: string;
|
|
552
552
|
suffixClassName?: string;
|
|
553
|
-
}>, "ref"> &
|
|
554
|
-
ObjectContainer:
|
|
555
|
-
Radio:
|
|
553
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
554
|
+
ObjectContainer: react1432.FC<ObjectContainerProps>;
|
|
555
|
+
Radio: react1432.FC;
|
|
556
556
|
Row: typeof Row;
|
|
557
|
-
Select:
|
|
558
|
-
Separator:
|
|
559
|
-
Switch:
|
|
560
|
-
Textarea:
|
|
557
|
+
Select: react1432.FC;
|
|
558
|
+
Separator: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator22.SeparatorProps & react1432.RefAttributes<HTMLDivElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
559
|
+
Switch: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch22.SwitchProps & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
560
|
+
Textarea: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLTextAreaElement> & react1432.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
561
561
|
}, Component_6, Decorator_6>): JSX.Element;
|
|
562
562
|
displayName: string;
|
|
563
563
|
};
|
|
564
564
|
DateTime: {
|
|
565
565
|
<Decorator_7 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof", Component_7 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
566
566
|
ArrayCards: ComposedArrayProps;
|
|
567
|
-
ArrayCollapse:
|
|
567
|
+
ArrayCollapse: react1432.FC<ArrayComponentProps & {
|
|
568
568
|
defaultActiveKey?: Array<string | number>;
|
|
569
569
|
mode?: "accordion" | "multiple";
|
|
570
570
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
571
571
|
}>;
|
|
572
|
-
ArrayDialog:
|
|
572
|
+
ArrayDialog: react1432.FC<ArrayComponentProps & {
|
|
573
573
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
574
574
|
}>;
|
|
575
575
|
ArrayInline: ComposedArrayProps;
|
|
576
|
-
ArrayPopover:
|
|
576
|
+
ArrayPopover: react1432.FC<ArrayComponentProps & {
|
|
577
577
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
578
578
|
}>;
|
|
579
|
-
ArrayTags:
|
|
580
|
-
ArrayToggleGroup:
|
|
581
|
-
ToggleGroup:
|
|
582
|
-
Checkbox:
|
|
579
|
+
ArrayTags: react1432.MemoExoticComponent<_formily_react69.ReactFC<ArrayTagsProps>>;
|
|
580
|
+
ArrayToggleGroup: react1432.MemoExoticComponent<_formily_react69.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
581
|
+
ToggleGroup: react1432.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
582
|
+
Checkbox: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox22.CheckboxProps & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
583
583
|
Column: typeof Column;
|
|
584
|
-
DatePicker:
|
|
584
|
+
DatePicker: react1432.ForwardRefExoticComponent<Partial<{
|
|
585
585
|
value?: Date;
|
|
586
586
|
onChange?: (date: Date | undefined) => void;
|
|
587
587
|
placeholder?: string;
|
|
588
|
-
} & Omit<
|
|
588
|
+
} & Omit<_pixpilot_shadcn_ui485.DatePickerProps, "onSelect" | "selected" | "mode">> & react1432.RefAttributes<unknown>>;
|
|
589
589
|
FormGrid: typeof FormGrid;
|
|
590
|
-
FormItem:
|
|
591
|
-
children?:
|
|
592
|
-
}>, "ref"> &
|
|
593
|
-
Hidden:
|
|
590
|
+
FormItem: react1432.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
591
|
+
children?: react1432.ReactNode | undefined;
|
|
592
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
593
|
+
Hidden: react1432.ForwardRefExoticComponent<Partial<{
|
|
594
594
|
children?: React.ReactNode;
|
|
595
595
|
value?: string;
|
|
596
|
-
}> &
|
|
597
|
-
IconToggle:
|
|
598
|
-
ToggleButton:
|
|
599
|
-
Input:
|
|
596
|
+
}> & react1432.RefAttributes<unknown>>;
|
|
597
|
+
IconToggle: react1432.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui485.IconToggleProps, "ref"> & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
598
|
+
ToggleButton: react1432.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui485.ToggleButtonProps, "ref"> & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
599
|
+
Input: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLInputElement> & react1432.InputHTMLAttributes<HTMLInputElement> & {
|
|
600
600
|
prefix?: React.ReactNode;
|
|
601
601
|
suffix?: React.ReactNode;
|
|
602
602
|
groupClassName?: string;
|
|
603
603
|
prefixClassName?: string;
|
|
604
604
|
suffixClassName?: string;
|
|
605
|
-
}>, "ref"> &
|
|
606
|
-
NumberInput:
|
|
605
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
606
|
+
NumberInput: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLInputElement> & react1432.InputHTMLAttributes<HTMLInputElement> & {
|
|
607
607
|
prefix?: React.ReactNode;
|
|
608
608
|
suffix?: React.ReactNode;
|
|
609
609
|
groupClassName?: string;
|
|
610
610
|
prefixClassName?: string;
|
|
611
611
|
suffixClassName?: string;
|
|
612
|
-
}>, "ref"> &
|
|
613
|
-
ObjectContainer:
|
|
614
|
-
Radio:
|
|
612
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
613
|
+
ObjectContainer: react1432.FC<ObjectContainerProps>;
|
|
614
|
+
Radio: react1432.FC;
|
|
615
615
|
Row: typeof Row;
|
|
616
|
-
Select:
|
|
617
|
-
Separator:
|
|
618
|
-
Switch:
|
|
619
|
-
Textarea:
|
|
616
|
+
Select: react1432.FC;
|
|
617
|
+
Separator: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator22.SeparatorProps & react1432.RefAttributes<HTMLDivElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
618
|
+
Switch: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch22.SwitchProps & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
619
|
+
Textarea: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLTextAreaElement> & react1432.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
620
620
|
}, Component_7, Decorator_7>): JSX.Element;
|
|
621
621
|
displayName: string;
|
|
622
622
|
};
|
|
623
623
|
Void: {
|
|
624
624
|
<Decorator_8 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof", Component_8 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
625
625
|
ArrayCards: ComposedArrayProps;
|
|
626
|
-
ArrayCollapse:
|
|
626
|
+
ArrayCollapse: react1432.FC<ArrayComponentProps & {
|
|
627
627
|
defaultActiveKey?: Array<string | number>;
|
|
628
628
|
mode?: "accordion" | "multiple";
|
|
629
629
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
630
630
|
}>;
|
|
631
|
-
ArrayDialog:
|
|
631
|
+
ArrayDialog: react1432.FC<ArrayComponentProps & {
|
|
632
632
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
633
633
|
}>;
|
|
634
634
|
ArrayInline: ComposedArrayProps;
|
|
635
|
-
ArrayPopover:
|
|
635
|
+
ArrayPopover: react1432.FC<ArrayComponentProps & {
|
|
636
636
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
637
637
|
}>;
|
|
638
|
-
ArrayTags:
|
|
639
|
-
ArrayToggleGroup:
|
|
640
|
-
ToggleGroup:
|
|
641
|
-
Checkbox:
|
|
638
|
+
ArrayTags: react1432.MemoExoticComponent<_formily_react69.ReactFC<ArrayTagsProps>>;
|
|
639
|
+
ArrayToggleGroup: react1432.MemoExoticComponent<_formily_react69.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
640
|
+
ToggleGroup: react1432.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
641
|
+
Checkbox: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox22.CheckboxProps & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
642
642
|
Column: typeof Column;
|
|
643
|
-
DatePicker:
|
|
643
|
+
DatePicker: react1432.ForwardRefExoticComponent<Partial<{
|
|
644
644
|
value?: Date;
|
|
645
645
|
onChange?: (date: Date | undefined) => void;
|
|
646
646
|
placeholder?: string;
|
|
647
|
-
} & Omit<
|
|
647
|
+
} & Omit<_pixpilot_shadcn_ui485.DatePickerProps, "onSelect" | "selected" | "mode">> & react1432.RefAttributes<unknown>>;
|
|
648
648
|
FormGrid: typeof FormGrid;
|
|
649
|
-
FormItem:
|
|
650
|
-
children?:
|
|
651
|
-
}>, "ref"> &
|
|
652
|
-
Hidden:
|
|
649
|
+
FormItem: react1432.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
650
|
+
children?: react1432.ReactNode | undefined;
|
|
651
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
652
|
+
Hidden: react1432.ForwardRefExoticComponent<Partial<{
|
|
653
653
|
children?: React.ReactNode;
|
|
654
654
|
value?: string;
|
|
655
|
-
}> &
|
|
656
|
-
IconToggle:
|
|
657
|
-
ToggleButton:
|
|
658
|
-
Input:
|
|
655
|
+
}> & react1432.RefAttributes<unknown>>;
|
|
656
|
+
IconToggle: react1432.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui485.IconToggleProps, "ref"> & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
657
|
+
ToggleButton: react1432.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui485.ToggleButtonProps, "ref"> & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
658
|
+
Input: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLInputElement> & react1432.InputHTMLAttributes<HTMLInputElement> & {
|
|
659
659
|
prefix?: React.ReactNode;
|
|
660
660
|
suffix?: React.ReactNode;
|
|
661
661
|
groupClassName?: string;
|
|
662
662
|
prefixClassName?: string;
|
|
663
663
|
suffixClassName?: string;
|
|
664
|
-
}>, "ref"> &
|
|
665
|
-
NumberInput:
|
|
664
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
665
|
+
NumberInput: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLInputElement> & react1432.InputHTMLAttributes<HTMLInputElement> & {
|
|
666
666
|
prefix?: React.ReactNode;
|
|
667
667
|
suffix?: React.ReactNode;
|
|
668
668
|
groupClassName?: string;
|
|
669
669
|
prefixClassName?: string;
|
|
670
670
|
suffixClassName?: string;
|
|
671
|
-
}>, "ref"> &
|
|
672
|
-
ObjectContainer:
|
|
673
|
-
Radio:
|
|
671
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
672
|
+
ObjectContainer: react1432.FC<ObjectContainerProps>;
|
|
673
|
+
Radio: react1432.FC;
|
|
674
674
|
Row: typeof Row;
|
|
675
|
-
Select:
|
|
676
|
-
Separator:
|
|
677
|
-
Switch:
|
|
678
|
-
Textarea:
|
|
675
|
+
Select: react1432.FC;
|
|
676
|
+
Separator: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator22.SeparatorProps & react1432.RefAttributes<HTMLDivElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
677
|
+
Switch: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch22.SwitchProps & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
678
|
+
Textarea: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLTextAreaElement> & react1432.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
679
679
|
}, Component_8, Decorator_8>): JSX.Element;
|
|
680
680
|
displayName: string;
|
|
681
681
|
};
|
|
682
682
|
Number: {
|
|
683
683
|
<Decorator_9 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof", Component_9 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
684
684
|
ArrayCards: ComposedArrayProps;
|
|
685
|
-
ArrayCollapse:
|
|
685
|
+
ArrayCollapse: react1432.FC<ArrayComponentProps & {
|
|
686
686
|
defaultActiveKey?: Array<string | number>;
|
|
687
687
|
mode?: "accordion" | "multiple";
|
|
688
688
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
689
689
|
}>;
|
|
690
|
-
ArrayDialog:
|
|
690
|
+
ArrayDialog: react1432.FC<ArrayComponentProps & {
|
|
691
691
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
692
692
|
}>;
|
|
693
693
|
ArrayInline: ComposedArrayProps;
|
|
694
|
-
ArrayPopover:
|
|
694
|
+
ArrayPopover: react1432.FC<ArrayComponentProps & {
|
|
695
695
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
696
696
|
}>;
|
|
697
|
-
ArrayTags:
|
|
698
|
-
ArrayToggleGroup:
|
|
699
|
-
ToggleGroup:
|
|
700
|
-
Checkbox:
|
|
697
|
+
ArrayTags: react1432.MemoExoticComponent<_formily_react69.ReactFC<ArrayTagsProps>>;
|
|
698
|
+
ArrayToggleGroup: react1432.MemoExoticComponent<_formily_react69.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
699
|
+
ToggleGroup: react1432.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
700
|
+
Checkbox: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox22.CheckboxProps & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
701
701
|
Column: typeof Column;
|
|
702
|
-
DatePicker:
|
|
702
|
+
DatePicker: react1432.ForwardRefExoticComponent<Partial<{
|
|
703
703
|
value?: Date;
|
|
704
704
|
onChange?: (date: Date | undefined) => void;
|
|
705
705
|
placeholder?: string;
|
|
706
|
-
} & Omit<
|
|
706
|
+
} & Omit<_pixpilot_shadcn_ui485.DatePickerProps, "onSelect" | "selected" | "mode">> & react1432.RefAttributes<unknown>>;
|
|
707
707
|
FormGrid: typeof FormGrid;
|
|
708
|
-
FormItem:
|
|
709
|
-
children?:
|
|
710
|
-
}>, "ref"> &
|
|
711
|
-
Hidden:
|
|
708
|
+
FormItem: react1432.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
709
|
+
children?: react1432.ReactNode | undefined;
|
|
710
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
711
|
+
Hidden: react1432.ForwardRefExoticComponent<Partial<{
|
|
712
712
|
children?: React.ReactNode;
|
|
713
713
|
value?: string;
|
|
714
|
-
}> &
|
|
715
|
-
IconToggle:
|
|
716
|
-
ToggleButton:
|
|
717
|
-
Input:
|
|
714
|
+
}> & react1432.RefAttributes<unknown>>;
|
|
715
|
+
IconToggle: react1432.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui485.IconToggleProps, "ref"> & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
716
|
+
ToggleButton: react1432.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui485.ToggleButtonProps, "ref"> & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
717
|
+
Input: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLInputElement> & react1432.InputHTMLAttributes<HTMLInputElement> & {
|
|
718
718
|
prefix?: React.ReactNode;
|
|
719
719
|
suffix?: React.ReactNode;
|
|
720
720
|
groupClassName?: string;
|
|
721
721
|
prefixClassName?: string;
|
|
722
722
|
suffixClassName?: string;
|
|
723
|
-
}>, "ref"> &
|
|
724
|
-
NumberInput:
|
|
723
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
724
|
+
NumberInput: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLInputElement> & react1432.InputHTMLAttributes<HTMLInputElement> & {
|
|
725
725
|
prefix?: React.ReactNode;
|
|
726
726
|
suffix?: React.ReactNode;
|
|
727
727
|
groupClassName?: string;
|
|
728
728
|
prefixClassName?: string;
|
|
729
729
|
suffixClassName?: string;
|
|
730
|
-
}>, "ref"> &
|
|
731
|
-
ObjectContainer:
|
|
732
|
-
Radio:
|
|
730
|
+
}>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
731
|
+
ObjectContainer: react1432.FC<ObjectContainerProps>;
|
|
732
|
+
Radio: react1432.FC;
|
|
733
733
|
Row: typeof Row;
|
|
734
|
-
Select:
|
|
735
|
-
Separator:
|
|
736
|
-
Switch:
|
|
737
|
-
Textarea:
|
|
734
|
+
Select: react1432.FC;
|
|
735
|
+
Separator: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator22.SeparatorProps & react1432.RefAttributes<HTMLDivElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
736
|
+
Switch: react1432.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch22.SwitchProps & react1432.RefAttributes<HTMLButtonElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
737
|
+
Textarea: react1432.ForwardRefExoticComponent<Omit<Partial<react1432.ClassAttributes<HTMLTextAreaElement> & react1432.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
738
738
|
}, Component_9, Decorator_9>): JSX.Element;
|
|
739
739
|
displayName: string;
|
|
740
740
|
};
|