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