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