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