@pixpilot/formily-shadcn 1.15.1 → 1.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/object-container/ObjectContainer.cjs +1 -1
- package/dist/components/object-container/ObjectContainer.js +1 -1
- package/dist/components/schema-field/schema-field-basics.d.cts +270 -270
- package/dist/components/schema-field/schema-field-extended.d.cts +424 -424
- package/dist/components/schema-field/schema-field.d.cts +357 -357
- package/package.json +6 -6
|
@@ -23,14 +23,14 @@ import { HiddenProps } from "../hidden/Hidden.cjs";
|
|
|
23
23
|
import "../hidden/index.cjs";
|
|
24
24
|
import { SelectProps as SelectProps$1 } from "../select/Select.cjs";
|
|
25
25
|
import "../select/index.cjs";
|
|
26
|
-
import * as
|
|
26
|
+
import * as _formily_react35 from "@formily/react";
|
|
27
27
|
import { ISchema } from "@formily/react";
|
|
28
|
-
import * as
|
|
29
|
-
import * as
|
|
30
|
-
import * as
|
|
31
|
-
import * as
|
|
32
|
-
import * as
|
|
33
|
-
import * as
|
|
28
|
+
import * as react430 from "react";
|
|
29
|
+
import * as _formily_core0 from "@formily/core";
|
|
30
|
+
import * as _pixpilot_shadcn_ui142 from "@pixpilot/shadcn-ui";
|
|
31
|
+
import * as _radix_ui_react_checkbox10 from "@radix-ui/react-checkbox";
|
|
32
|
+
import * as _radix_ui_react_separator10 from "@radix-ui/react-separator";
|
|
33
|
+
import * as _radix_ui_react_switch10 from "@radix-ui/react-switch";
|
|
34
34
|
|
|
35
35
|
//#region src/components/schema-field/schema-field-basics.d.ts
|
|
36
36
|
declare const basicComponentRegistry: {
|
|
@@ -39,7 +39,7 @@ declare const basicComponentRegistry: {
|
|
|
39
39
|
decorator: string;
|
|
40
40
|
};
|
|
41
41
|
ArrayCollapse: {
|
|
42
|
-
component:
|
|
42
|
+
component: react430.FC<ArrayComponentProps & {
|
|
43
43
|
defaultActiveKey?: Array<string | number>;
|
|
44
44
|
mode?: "accordion" | "multiple";
|
|
45
45
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
@@ -47,7 +47,7 @@ declare const basicComponentRegistry: {
|
|
|
47
47
|
decorator: string;
|
|
48
48
|
};
|
|
49
49
|
ArrayDialog: {
|
|
50
|
-
component:
|
|
50
|
+
component: react430.FC<ArrayComponentProps & {
|
|
51
51
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
52
52
|
}>;
|
|
53
53
|
decorator: string;
|
|
@@ -57,529 +57,529 @@ declare const basicComponentRegistry: {
|
|
|
57
57
|
decorator: string;
|
|
58
58
|
};
|
|
59
59
|
ArrayPopover: {
|
|
60
|
-
component:
|
|
60
|
+
component: react430.FC<ArrayComponentProps & {
|
|
61
61
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
62
62
|
}>;
|
|
63
63
|
decorator: string;
|
|
64
64
|
};
|
|
65
65
|
ArrayTags: {
|
|
66
|
-
component:
|
|
66
|
+
component: react430.MemoExoticComponent<_formily_react35.ReactFC<ArrayTagsProps>>;
|
|
67
67
|
decorator: string;
|
|
68
68
|
};
|
|
69
69
|
ArrayToggleGroup: {
|
|
70
|
-
component:
|
|
70
|
+
component: react430.MemoExoticComponent<_formily_react35.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
71
71
|
decorator: string;
|
|
72
72
|
};
|
|
73
73
|
ToggleGroup: {
|
|
74
|
-
component:
|
|
74
|
+
component: react430.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react430.RefAttributes<unknown>>;
|
|
75
75
|
decorator: string;
|
|
76
76
|
};
|
|
77
77
|
Checkbox: {
|
|
78
|
-
component:
|
|
78
|
+
component: react430.FC<_radix_ui_react_checkbox10.CheckboxProps & react430.RefAttributes<HTMLButtonElement>>;
|
|
79
79
|
decorator: string;
|
|
80
80
|
};
|
|
81
81
|
Column: {
|
|
82
82
|
component: typeof Column;
|
|
83
83
|
};
|
|
84
84
|
DatePicker: {
|
|
85
|
-
component:
|
|
85
|
+
component: react430.ForwardRefExoticComponent<Partial<{
|
|
86
86
|
value?: Date;
|
|
87
87
|
onChange?: (date: Date | undefined) => void;
|
|
88
88
|
placeholder?: string;
|
|
89
|
-
} & Omit<
|
|
89
|
+
} & Omit<_pixpilot_shadcn_ui142.DatePickerProps, "onSelect" | "selected" | "mode">> & react430.RefAttributes<unknown>>;
|
|
90
90
|
decorator: string;
|
|
91
91
|
};
|
|
92
92
|
FormGrid: {
|
|
93
93
|
component: typeof FormGrid;
|
|
94
94
|
};
|
|
95
95
|
FormItem: {
|
|
96
|
-
component:
|
|
97
|
-
children?:
|
|
98
|
-
}>, "ref"> &
|
|
96
|
+
component: react430.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
97
|
+
children?: react430.ReactNode | undefined;
|
|
98
|
+
}>, "ref"> & react430.RefAttributes<unknown>>;
|
|
99
99
|
};
|
|
100
100
|
Hidden: {
|
|
101
|
-
component:
|
|
101
|
+
component: react430.ForwardRefExoticComponent<Partial<HiddenProps> & react430.RefAttributes<unknown>>;
|
|
102
102
|
};
|
|
103
103
|
IconToggle: {
|
|
104
|
-
component:
|
|
104
|
+
component: react430.FC<_pixpilot_shadcn_ui142.IconToggleProps>;
|
|
105
105
|
decorator: string;
|
|
106
106
|
};
|
|
107
107
|
ToggleButton: {
|
|
108
|
-
component:
|
|
108
|
+
component: react430.FC<_pixpilot_shadcn_ui142.ToggleButtonProps>;
|
|
109
109
|
decorator: string;
|
|
110
110
|
};
|
|
111
111
|
Input: {
|
|
112
|
-
component:
|
|
112
|
+
component: react430.FC<_pixpilot_shadcn_ui142.InputProps>;
|
|
113
113
|
decorator: string;
|
|
114
114
|
};
|
|
115
115
|
NumberInput: {
|
|
116
|
-
component:
|
|
116
|
+
component: react430.FC<_pixpilot_shadcn_ui142.InputProps>;
|
|
117
117
|
decorator: string;
|
|
118
118
|
};
|
|
119
119
|
ObjectContainer: {
|
|
120
|
-
component:
|
|
120
|
+
component: react430.FC<ObjectContainerProps>;
|
|
121
121
|
decorator: string;
|
|
122
122
|
};
|
|
123
123
|
Radio: {
|
|
124
|
-
component:
|
|
124
|
+
component: react430.FC<RadioProps>;
|
|
125
125
|
decorator: string;
|
|
126
126
|
};
|
|
127
127
|
Row: {
|
|
128
128
|
component: typeof Row;
|
|
129
129
|
};
|
|
130
130
|
Select: {
|
|
131
|
-
component:
|
|
131
|
+
component: react430.FC<SelectProps$1>;
|
|
132
132
|
decorator: string;
|
|
133
133
|
};
|
|
134
134
|
Separator: {
|
|
135
|
-
component:
|
|
135
|
+
component: react430.FC<_radix_ui_react_separator10.SeparatorProps & react430.RefAttributes<HTMLDivElement>>;
|
|
136
136
|
};
|
|
137
137
|
Switch: {
|
|
138
|
-
component:
|
|
138
|
+
component: react430.FC<_radix_ui_react_switch10.SwitchProps & react430.RefAttributes<HTMLButtonElement>>;
|
|
139
139
|
decorator: string;
|
|
140
140
|
};
|
|
141
141
|
Textarea: {
|
|
142
|
-
component:
|
|
142
|
+
component: react430.FC<react430.ClassAttributes<HTMLTextAreaElement> & react430.TextareaHTMLAttributes<HTMLTextAreaElement>>;
|
|
143
143
|
decorator: string;
|
|
144
144
|
};
|
|
145
145
|
};
|
|
146
146
|
declare const basicComponents: {
|
|
147
147
|
ArrayCards: ComposedArrayProps;
|
|
148
|
-
ArrayCollapse:
|
|
148
|
+
ArrayCollapse: react430.FC<ArrayComponentProps & {
|
|
149
149
|
defaultActiveKey?: Array<string | number>;
|
|
150
150
|
mode?: "accordion" | "multiple";
|
|
151
151
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
152
152
|
}>;
|
|
153
|
-
ArrayDialog:
|
|
153
|
+
ArrayDialog: react430.FC<ArrayComponentProps & {
|
|
154
154
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
155
155
|
}>;
|
|
156
156
|
ArrayInline: ComposedArrayProps;
|
|
157
|
-
ArrayPopover:
|
|
157
|
+
ArrayPopover: react430.FC<ArrayComponentProps & {
|
|
158
158
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
159
159
|
}>;
|
|
160
|
-
ArrayTags:
|
|
161
|
-
ArrayToggleGroup:
|
|
162
|
-
ToggleGroup:
|
|
163
|
-
Checkbox:
|
|
160
|
+
ArrayTags: react430.MemoExoticComponent<_formily_react35.ReactFC<ArrayTagsProps>>;
|
|
161
|
+
ArrayToggleGroup: react430.MemoExoticComponent<_formily_react35.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
162
|
+
ToggleGroup: react430.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react430.RefAttributes<unknown>>;
|
|
163
|
+
Checkbox: react430.FC<_radix_ui_react_checkbox10.CheckboxProps & react430.RefAttributes<HTMLButtonElement>>;
|
|
164
164
|
Column: typeof Column;
|
|
165
|
-
DatePicker:
|
|
165
|
+
DatePicker: react430.ForwardRefExoticComponent<Partial<{
|
|
166
166
|
value?: Date;
|
|
167
167
|
onChange?: (date: Date | undefined) => void;
|
|
168
168
|
placeholder?: string;
|
|
169
|
-
} & Omit<
|
|
169
|
+
} & Omit<_pixpilot_shadcn_ui142.DatePickerProps, "onSelect" | "selected" | "mode">> & react430.RefAttributes<unknown>>;
|
|
170
170
|
FormGrid: typeof FormGrid;
|
|
171
|
-
FormItem:
|
|
172
|
-
children?:
|
|
173
|
-
}>, "ref"> &
|
|
174
|
-
Hidden:
|
|
175
|
-
IconToggle:
|
|
176
|
-
ToggleButton:
|
|
177
|
-
Input:
|
|
178
|
-
NumberInput:
|
|
179
|
-
ObjectContainer:
|
|
180
|
-
Radio:
|
|
171
|
+
FormItem: react430.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
172
|
+
children?: react430.ReactNode | undefined;
|
|
173
|
+
}>, "ref"> & react430.RefAttributes<unknown>>;
|
|
174
|
+
Hidden: react430.ForwardRefExoticComponent<Partial<HiddenProps> & react430.RefAttributes<unknown>>;
|
|
175
|
+
IconToggle: react430.FC<_pixpilot_shadcn_ui142.IconToggleProps>;
|
|
176
|
+
ToggleButton: react430.FC<_pixpilot_shadcn_ui142.ToggleButtonProps>;
|
|
177
|
+
Input: react430.FC<_pixpilot_shadcn_ui142.InputProps>;
|
|
178
|
+
NumberInput: react430.FC<_pixpilot_shadcn_ui142.InputProps>;
|
|
179
|
+
ObjectContainer: react430.FC<ObjectContainerProps>;
|
|
180
|
+
Radio: react430.FC<RadioProps>;
|
|
181
181
|
Row: typeof Row;
|
|
182
|
-
Select:
|
|
183
|
-
Separator:
|
|
184
|
-
Switch:
|
|
185
|
-
Textarea:
|
|
182
|
+
Select: react430.FC<SelectProps$1>;
|
|
183
|
+
Separator: react430.FC<_radix_ui_react_separator10.SeparatorProps & react430.RefAttributes<HTMLDivElement>>;
|
|
184
|
+
Switch: react430.FC<_radix_ui_react_switch10.SwitchProps & react430.RefAttributes<HTMLButtonElement>>;
|
|
185
|
+
Textarea: react430.FC<react430.ClassAttributes<HTMLTextAreaElement> & react430.TextareaHTMLAttributes<HTMLTextAreaElement>>;
|
|
186
186
|
};
|
|
187
187
|
declare const SchemaFieldBasics: {
|
|
188
|
-
<Decorator extends
|
|
188
|
+
<Decorator extends _formily_react35.JSXComponent, Component extends _formily_react35.JSXComponent>(props: _formily_react35.ISchemaFieldProps<Decorator, Component, _formily_core0.ObjectField<Decorator, Component>>): JSX.Element;
|
|
189
189
|
displayName: string;
|
|
190
190
|
Markup: {
|
|
191
|
-
<Decorator_1 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof", Component_1 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof">(props:
|
|
191
|
+
<Decorator_1 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof", Component_1 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof">(props: _formily_react35.ISchemaMarkupFieldProps<{
|
|
192
192
|
ArrayCards: ComposedArrayProps;
|
|
193
|
-
ArrayCollapse:
|
|
193
|
+
ArrayCollapse: react430.FC<ArrayComponentProps & {
|
|
194
194
|
defaultActiveKey?: Array<string | number>;
|
|
195
195
|
mode?: "accordion" | "multiple";
|
|
196
196
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
197
197
|
}>;
|
|
198
|
-
ArrayDialog:
|
|
198
|
+
ArrayDialog: react430.FC<ArrayComponentProps & {
|
|
199
199
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
200
200
|
}>;
|
|
201
201
|
ArrayInline: ComposedArrayProps;
|
|
202
|
-
ArrayPopover:
|
|
202
|
+
ArrayPopover: react430.FC<ArrayComponentProps & {
|
|
203
203
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
204
204
|
}>;
|
|
205
|
-
ArrayTags:
|
|
206
|
-
ArrayToggleGroup:
|
|
207
|
-
ToggleGroup:
|
|
208
|
-
Checkbox:
|
|
205
|
+
ArrayTags: react430.MemoExoticComponent<_formily_react35.ReactFC<ArrayTagsProps>>;
|
|
206
|
+
ArrayToggleGroup: react430.MemoExoticComponent<_formily_react35.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
207
|
+
ToggleGroup: react430.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react430.RefAttributes<unknown>>;
|
|
208
|
+
Checkbox: react430.FC<_radix_ui_react_checkbox10.CheckboxProps & react430.RefAttributes<HTMLButtonElement>>;
|
|
209
209
|
Column: typeof Column;
|
|
210
|
-
DatePicker:
|
|
210
|
+
DatePicker: react430.ForwardRefExoticComponent<Partial<{
|
|
211
211
|
value?: Date;
|
|
212
212
|
onChange?: (date: Date | undefined) => void;
|
|
213
213
|
placeholder?: string;
|
|
214
|
-
} & Omit<
|
|
214
|
+
} & Omit<_pixpilot_shadcn_ui142.DatePickerProps, "onSelect" | "selected" | "mode">> & react430.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: react430.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
217
|
+
children?: react430.ReactNode | undefined;
|
|
218
|
+
}>, "ref"> & react430.RefAttributes<unknown>>;
|
|
219
|
+
Hidden: react430.ForwardRefExoticComponent<Partial<HiddenProps> & react430.RefAttributes<unknown>>;
|
|
220
|
+
IconToggle: react430.FC<_pixpilot_shadcn_ui142.IconToggleProps>;
|
|
221
|
+
ToggleButton: react430.FC<_pixpilot_shadcn_ui142.ToggleButtonProps>;
|
|
222
|
+
Input: react430.FC<_pixpilot_shadcn_ui142.InputProps>;
|
|
223
|
+
NumberInput: react430.FC<_pixpilot_shadcn_ui142.InputProps>;
|
|
224
|
+
ObjectContainer: react430.FC<ObjectContainerProps>;
|
|
225
|
+
Radio: react430.FC<RadioProps>;
|
|
226
226
|
Row: typeof Row;
|
|
227
|
-
Select:
|
|
228
|
-
Separator:
|
|
229
|
-
Switch:
|
|
230
|
-
Textarea:
|
|
227
|
+
Select: react430.FC<SelectProps$1>;
|
|
228
|
+
Separator: react430.FC<_radix_ui_react_separator10.SeparatorProps & react430.RefAttributes<HTMLDivElement>>;
|
|
229
|
+
Switch: react430.FC<_radix_ui_react_switch10.SwitchProps & react430.RefAttributes<HTMLButtonElement>>;
|
|
230
|
+
Textarea: react430.FC<react430.ClassAttributes<HTMLTextAreaElement> & react430.TextareaHTMLAttributes<HTMLTextAreaElement>>;
|
|
231
231
|
}, Component_1, Decorator_1>): JSX.Element;
|
|
232
232
|
displayName: string;
|
|
233
233
|
};
|
|
234
234
|
String: {
|
|
235
|
-
<Decorator_2 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof", Component_2 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof">(props:
|
|
235
|
+
<Decorator_2 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof", Component_2 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof">(props: _formily_react35.ISchemaTypeFieldProps<{
|
|
236
236
|
ArrayCards: ComposedArrayProps;
|
|
237
|
-
ArrayCollapse:
|
|
237
|
+
ArrayCollapse: react430.FC<ArrayComponentProps & {
|
|
238
238
|
defaultActiveKey?: Array<string | number>;
|
|
239
239
|
mode?: "accordion" | "multiple";
|
|
240
240
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
241
241
|
}>;
|
|
242
|
-
ArrayDialog:
|
|
242
|
+
ArrayDialog: react430.FC<ArrayComponentProps & {
|
|
243
243
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
244
244
|
}>;
|
|
245
245
|
ArrayInline: ComposedArrayProps;
|
|
246
|
-
ArrayPopover:
|
|
246
|
+
ArrayPopover: react430.FC<ArrayComponentProps & {
|
|
247
247
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
248
248
|
}>;
|
|
249
|
-
ArrayTags:
|
|
250
|
-
ArrayToggleGroup:
|
|
251
|
-
ToggleGroup:
|
|
252
|
-
Checkbox:
|
|
249
|
+
ArrayTags: react430.MemoExoticComponent<_formily_react35.ReactFC<ArrayTagsProps>>;
|
|
250
|
+
ArrayToggleGroup: react430.MemoExoticComponent<_formily_react35.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
251
|
+
ToggleGroup: react430.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react430.RefAttributes<unknown>>;
|
|
252
|
+
Checkbox: react430.FC<_radix_ui_react_checkbox10.CheckboxProps & react430.RefAttributes<HTMLButtonElement>>;
|
|
253
253
|
Column: typeof Column;
|
|
254
|
-
DatePicker:
|
|
254
|
+
DatePicker: react430.ForwardRefExoticComponent<Partial<{
|
|
255
255
|
value?: Date;
|
|
256
256
|
onChange?: (date: Date | undefined) => void;
|
|
257
257
|
placeholder?: string;
|
|
258
|
-
} & Omit<
|
|
258
|
+
} & Omit<_pixpilot_shadcn_ui142.DatePickerProps, "onSelect" | "selected" | "mode">> & react430.RefAttributes<unknown>>;
|
|
259
259
|
FormGrid: typeof FormGrid;
|
|
260
|
-
FormItem:
|
|
261
|
-
children?:
|
|
262
|
-
}>, "ref"> &
|
|
263
|
-
Hidden:
|
|
264
|
-
IconToggle:
|
|
265
|
-
ToggleButton:
|
|
266
|
-
Input:
|
|
267
|
-
NumberInput:
|
|
268
|
-
ObjectContainer:
|
|
269
|
-
Radio:
|
|
260
|
+
FormItem: react430.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
261
|
+
children?: react430.ReactNode | undefined;
|
|
262
|
+
}>, "ref"> & react430.RefAttributes<unknown>>;
|
|
263
|
+
Hidden: react430.ForwardRefExoticComponent<Partial<HiddenProps> & react430.RefAttributes<unknown>>;
|
|
264
|
+
IconToggle: react430.FC<_pixpilot_shadcn_ui142.IconToggleProps>;
|
|
265
|
+
ToggleButton: react430.FC<_pixpilot_shadcn_ui142.ToggleButtonProps>;
|
|
266
|
+
Input: react430.FC<_pixpilot_shadcn_ui142.InputProps>;
|
|
267
|
+
NumberInput: react430.FC<_pixpilot_shadcn_ui142.InputProps>;
|
|
268
|
+
ObjectContainer: react430.FC<ObjectContainerProps>;
|
|
269
|
+
Radio: react430.FC<RadioProps>;
|
|
270
270
|
Row: typeof Row;
|
|
271
|
-
Select:
|
|
272
|
-
Separator:
|
|
273
|
-
Switch:
|
|
274
|
-
Textarea:
|
|
271
|
+
Select: react430.FC<SelectProps$1>;
|
|
272
|
+
Separator: react430.FC<_radix_ui_react_separator10.SeparatorProps & react430.RefAttributes<HTMLDivElement>>;
|
|
273
|
+
Switch: react430.FC<_radix_ui_react_switch10.SwitchProps & react430.RefAttributes<HTMLButtonElement>>;
|
|
274
|
+
Textarea: react430.FC<react430.ClassAttributes<HTMLTextAreaElement> & react430.TextareaHTMLAttributes<HTMLTextAreaElement>>;
|
|
275
275
|
}, Component_2, Decorator_2>): JSX.Element;
|
|
276
276
|
displayName: string;
|
|
277
277
|
};
|
|
278
278
|
Object: {
|
|
279
|
-
<Decorator_3 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof", Component_3 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof">(props:
|
|
279
|
+
<Decorator_3 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof", Component_3 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof">(props: _formily_react35.ISchemaTypeFieldProps<{
|
|
280
280
|
ArrayCards: ComposedArrayProps;
|
|
281
|
-
ArrayCollapse:
|
|
281
|
+
ArrayCollapse: react430.FC<ArrayComponentProps & {
|
|
282
282
|
defaultActiveKey?: Array<string | number>;
|
|
283
283
|
mode?: "accordion" | "multiple";
|
|
284
284
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
285
285
|
}>;
|
|
286
|
-
ArrayDialog:
|
|
286
|
+
ArrayDialog: react430.FC<ArrayComponentProps & {
|
|
287
287
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
288
288
|
}>;
|
|
289
289
|
ArrayInline: ComposedArrayProps;
|
|
290
|
-
ArrayPopover:
|
|
290
|
+
ArrayPopover: react430.FC<ArrayComponentProps & {
|
|
291
291
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
292
292
|
}>;
|
|
293
|
-
ArrayTags:
|
|
294
|
-
ArrayToggleGroup:
|
|
295
|
-
ToggleGroup:
|
|
296
|
-
Checkbox:
|
|
293
|
+
ArrayTags: react430.MemoExoticComponent<_formily_react35.ReactFC<ArrayTagsProps>>;
|
|
294
|
+
ArrayToggleGroup: react430.MemoExoticComponent<_formily_react35.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
295
|
+
ToggleGroup: react430.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react430.RefAttributes<unknown>>;
|
|
296
|
+
Checkbox: react430.FC<_radix_ui_react_checkbox10.CheckboxProps & react430.RefAttributes<HTMLButtonElement>>;
|
|
297
297
|
Column: typeof Column;
|
|
298
|
-
DatePicker:
|
|
298
|
+
DatePicker: react430.ForwardRefExoticComponent<Partial<{
|
|
299
299
|
value?: Date;
|
|
300
300
|
onChange?: (date: Date | undefined) => void;
|
|
301
301
|
placeholder?: string;
|
|
302
|
-
} & Omit<
|
|
302
|
+
} & Omit<_pixpilot_shadcn_ui142.DatePickerProps, "onSelect" | "selected" | "mode">> & react430.RefAttributes<unknown>>;
|
|
303
303
|
FormGrid: typeof FormGrid;
|
|
304
|
-
FormItem:
|
|
305
|
-
children?:
|
|
306
|
-
}>, "ref"> &
|
|
307
|
-
Hidden:
|
|
308
|
-
IconToggle:
|
|
309
|
-
ToggleButton:
|
|
310
|
-
Input:
|
|
311
|
-
NumberInput:
|
|
312
|
-
ObjectContainer:
|
|
313
|
-
Radio:
|
|
304
|
+
FormItem: react430.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
305
|
+
children?: react430.ReactNode | undefined;
|
|
306
|
+
}>, "ref"> & react430.RefAttributes<unknown>>;
|
|
307
|
+
Hidden: react430.ForwardRefExoticComponent<Partial<HiddenProps> & react430.RefAttributes<unknown>>;
|
|
308
|
+
IconToggle: react430.FC<_pixpilot_shadcn_ui142.IconToggleProps>;
|
|
309
|
+
ToggleButton: react430.FC<_pixpilot_shadcn_ui142.ToggleButtonProps>;
|
|
310
|
+
Input: react430.FC<_pixpilot_shadcn_ui142.InputProps>;
|
|
311
|
+
NumberInput: react430.FC<_pixpilot_shadcn_ui142.InputProps>;
|
|
312
|
+
ObjectContainer: react430.FC<ObjectContainerProps>;
|
|
313
|
+
Radio: react430.FC<RadioProps>;
|
|
314
314
|
Row: typeof Row;
|
|
315
|
-
Select:
|
|
316
|
-
Separator:
|
|
317
|
-
Switch:
|
|
318
|
-
Textarea:
|
|
315
|
+
Select: react430.FC<SelectProps$1>;
|
|
316
|
+
Separator: react430.FC<_radix_ui_react_separator10.SeparatorProps & react430.RefAttributes<HTMLDivElement>>;
|
|
317
|
+
Switch: react430.FC<_radix_ui_react_switch10.SwitchProps & react430.RefAttributes<HTMLButtonElement>>;
|
|
318
|
+
Textarea: react430.FC<react430.ClassAttributes<HTMLTextAreaElement> & react430.TextareaHTMLAttributes<HTMLTextAreaElement>>;
|
|
319
319
|
}, Component_3, Decorator_3>): JSX.Element;
|
|
320
320
|
displayName: string;
|
|
321
321
|
};
|
|
322
322
|
Array: {
|
|
323
|
-
<Decorator_4 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof", Component_4 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof">(props:
|
|
323
|
+
<Decorator_4 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof", Component_4 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof">(props: _formily_react35.ISchemaTypeFieldProps<{
|
|
324
324
|
ArrayCards: ComposedArrayProps;
|
|
325
|
-
ArrayCollapse:
|
|
325
|
+
ArrayCollapse: react430.FC<ArrayComponentProps & {
|
|
326
326
|
defaultActiveKey?: Array<string | number>;
|
|
327
327
|
mode?: "accordion" | "multiple";
|
|
328
328
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
329
329
|
}>;
|
|
330
|
-
ArrayDialog:
|
|
330
|
+
ArrayDialog: react430.FC<ArrayComponentProps & {
|
|
331
331
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
332
332
|
}>;
|
|
333
333
|
ArrayInline: ComposedArrayProps;
|
|
334
|
-
ArrayPopover:
|
|
334
|
+
ArrayPopover: react430.FC<ArrayComponentProps & {
|
|
335
335
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
336
336
|
}>;
|
|
337
|
-
ArrayTags:
|
|
338
|
-
ArrayToggleGroup:
|
|
339
|
-
ToggleGroup:
|
|
340
|
-
Checkbox:
|
|
337
|
+
ArrayTags: react430.MemoExoticComponent<_formily_react35.ReactFC<ArrayTagsProps>>;
|
|
338
|
+
ArrayToggleGroup: react430.MemoExoticComponent<_formily_react35.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
339
|
+
ToggleGroup: react430.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react430.RefAttributes<unknown>>;
|
|
340
|
+
Checkbox: react430.FC<_radix_ui_react_checkbox10.CheckboxProps & react430.RefAttributes<HTMLButtonElement>>;
|
|
341
341
|
Column: typeof Column;
|
|
342
|
-
DatePicker:
|
|
342
|
+
DatePicker: react430.ForwardRefExoticComponent<Partial<{
|
|
343
343
|
value?: Date;
|
|
344
344
|
onChange?: (date: Date | undefined) => void;
|
|
345
345
|
placeholder?: string;
|
|
346
|
-
} & Omit<
|
|
346
|
+
} & Omit<_pixpilot_shadcn_ui142.DatePickerProps, "onSelect" | "selected" | "mode">> & react430.RefAttributes<unknown>>;
|
|
347
347
|
FormGrid: typeof FormGrid;
|
|
348
|
-
FormItem:
|
|
349
|
-
children?:
|
|
350
|
-
}>, "ref"> &
|
|
351
|
-
Hidden:
|
|
352
|
-
IconToggle:
|
|
353
|
-
ToggleButton:
|
|
354
|
-
Input:
|
|
355
|
-
NumberInput:
|
|
356
|
-
ObjectContainer:
|
|
357
|
-
Radio:
|
|
348
|
+
FormItem: react430.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
349
|
+
children?: react430.ReactNode | undefined;
|
|
350
|
+
}>, "ref"> & react430.RefAttributes<unknown>>;
|
|
351
|
+
Hidden: react430.ForwardRefExoticComponent<Partial<HiddenProps> & react430.RefAttributes<unknown>>;
|
|
352
|
+
IconToggle: react430.FC<_pixpilot_shadcn_ui142.IconToggleProps>;
|
|
353
|
+
ToggleButton: react430.FC<_pixpilot_shadcn_ui142.ToggleButtonProps>;
|
|
354
|
+
Input: react430.FC<_pixpilot_shadcn_ui142.InputProps>;
|
|
355
|
+
NumberInput: react430.FC<_pixpilot_shadcn_ui142.InputProps>;
|
|
356
|
+
ObjectContainer: react430.FC<ObjectContainerProps>;
|
|
357
|
+
Radio: react430.FC<RadioProps>;
|
|
358
358
|
Row: typeof Row;
|
|
359
|
-
Select:
|
|
360
|
-
Separator:
|
|
361
|
-
Switch:
|
|
362
|
-
Textarea:
|
|
359
|
+
Select: react430.FC<SelectProps$1>;
|
|
360
|
+
Separator: react430.FC<_radix_ui_react_separator10.SeparatorProps & react430.RefAttributes<HTMLDivElement>>;
|
|
361
|
+
Switch: react430.FC<_radix_ui_react_switch10.SwitchProps & react430.RefAttributes<HTMLButtonElement>>;
|
|
362
|
+
Textarea: react430.FC<react430.ClassAttributes<HTMLTextAreaElement> & react430.TextareaHTMLAttributes<HTMLTextAreaElement>>;
|
|
363
363
|
}, Component_4, Decorator_4>): JSX.Element;
|
|
364
364
|
displayName: string;
|
|
365
365
|
};
|
|
366
366
|
Boolean: {
|
|
367
|
-
<Decorator_5 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof", Component_5 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof">(props:
|
|
367
|
+
<Decorator_5 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof", Component_5 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof">(props: _formily_react35.ISchemaTypeFieldProps<{
|
|
368
368
|
ArrayCards: ComposedArrayProps;
|
|
369
|
-
ArrayCollapse:
|
|
369
|
+
ArrayCollapse: react430.FC<ArrayComponentProps & {
|
|
370
370
|
defaultActiveKey?: Array<string | number>;
|
|
371
371
|
mode?: "accordion" | "multiple";
|
|
372
372
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
373
373
|
}>;
|
|
374
|
-
ArrayDialog:
|
|
374
|
+
ArrayDialog: react430.FC<ArrayComponentProps & {
|
|
375
375
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
376
376
|
}>;
|
|
377
377
|
ArrayInline: ComposedArrayProps;
|
|
378
|
-
ArrayPopover:
|
|
378
|
+
ArrayPopover: react430.FC<ArrayComponentProps & {
|
|
379
379
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
380
380
|
}>;
|
|
381
|
-
ArrayTags:
|
|
382
|
-
ArrayToggleGroup:
|
|
383
|
-
ToggleGroup:
|
|
384
|
-
Checkbox:
|
|
381
|
+
ArrayTags: react430.MemoExoticComponent<_formily_react35.ReactFC<ArrayTagsProps>>;
|
|
382
|
+
ArrayToggleGroup: react430.MemoExoticComponent<_formily_react35.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
383
|
+
ToggleGroup: react430.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react430.RefAttributes<unknown>>;
|
|
384
|
+
Checkbox: react430.FC<_radix_ui_react_checkbox10.CheckboxProps & react430.RefAttributes<HTMLButtonElement>>;
|
|
385
385
|
Column: typeof Column;
|
|
386
|
-
DatePicker:
|
|
386
|
+
DatePicker: react430.ForwardRefExoticComponent<Partial<{
|
|
387
387
|
value?: Date;
|
|
388
388
|
onChange?: (date: Date | undefined) => void;
|
|
389
389
|
placeholder?: string;
|
|
390
|
-
} & Omit<
|
|
390
|
+
} & Omit<_pixpilot_shadcn_ui142.DatePickerProps, "onSelect" | "selected" | "mode">> & react430.RefAttributes<unknown>>;
|
|
391
391
|
FormGrid: typeof FormGrid;
|
|
392
|
-
FormItem:
|
|
393
|
-
children?:
|
|
394
|
-
}>, "ref"> &
|
|
395
|
-
Hidden:
|
|
396
|
-
IconToggle:
|
|
397
|
-
ToggleButton:
|
|
398
|
-
Input:
|
|
399
|
-
NumberInput:
|
|
400
|
-
ObjectContainer:
|
|
401
|
-
Radio:
|
|
392
|
+
FormItem: react430.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
393
|
+
children?: react430.ReactNode | undefined;
|
|
394
|
+
}>, "ref"> & react430.RefAttributes<unknown>>;
|
|
395
|
+
Hidden: react430.ForwardRefExoticComponent<Partial<HiddenProps> & react430.RefAttributes<unknown>>;
|
|
396
|
+
IconToggle: react430.FC<_pixpilot_shadcn_ui142.IconToggleProps>;
|
|
397
|
+
ToggleButton: react430.FC<_pixpilot_shadcn_ui142.ToggleButtonProps>;
|
|
398
|
+
Input: react430.FC<_pixpilot_shadcn_ui142.InputProps>;
|
|
399
|
+
NumberInput: react430.FC<_pixpilot_shadcn_ui142.InputProps>;
|
|
400
|
+
ObjectContainer: react430.FC<ObjectContainerProps>;
|
|
401
|
+
Radio: react430.FC<RadioProps>;
|
|
402
402
|
Row: typeof Row;
|
|
403
|
-
Select:
|
|
404
|
-
Separator:
|
|
405
|
-
Switch:
|
|
406
|
-
Textarea:
|
|
403
|
+
Select: react430.FC<SelectProps$1>;
|
|
404
|
+
Separator: react430.FC<_radix_ui_react_separator10.SeparatorProps & react430.RefAttributes<HTMLDivElement>>;
|
|
405
|
+
Switch: react430.FC<_radix_ui_react_switch10.SwitchProps & react430.RefAttributes<HTMLButtonElement>>;
|
|
406
|
+
Textarea: react430.FC<react430.ClassAttributes<HTMLTextAreaElement> & react430.TextareaHTMLAttributes<HTMLTextAreaElement>>;
|
|
407
407
|
}, Component_5, Decorator_5>): JSX.Element;
|
|
408
408
|
displayName: string;
|
|
409
409
|
};
|
|
410
410
|
Date: {
|
|
411
|
-
<Decorator_6 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof", Component_6 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof">(props:
|
|
411
|
+
<Decorator_6 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof", Component_6 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof">(props: _formily_react35.ISchemaTypeFieldProps<{
|
|
412
412
|
ArrayCards: ComposedArrayProps;
|
|
413
|
-
ArrayCollapse:
|
|
413
|
+
ArrayCollapse: react430.FC<ArrayComponentProps & {
|
|
414
414
|
defaultActiveKey?: Array<string | number>;
|
|
415
415
|
mode?: "accordion" | "multiple";
|
|
416
416
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
417
417
|
}>;
|
|
418
|
-
ArrayDialog:
|
|
418
|
+
ArrayDialog: react430.FC<ArrayComponentProps & {
|
|
419
419
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
420
420
|
}>;
|
|
421
421
|
ArrayInline: ComposedArrayProps;
|
|
422
|
-
ArrayPopover:
|
|
422
|
+
ArrayPopover: react430.FC<ArrayComponentProps & {
|
|
423
423
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
424
424
|
}>;
|
|
425
|
-
ArrayTags:
|
|
426
|
-
ArrayToggleGroup:
|
|
427
|
-
ToggleGroup:
|
|
428
|
-
Checkbox:
|
|
425
|
+
ArrayTags: react430.MemoExoticComponent<_formily_react35.ReactFC<ArrayTagsProps>>;
|
|
426
|
+
ArrayToggleGroup: react430.MemoExoticComponent<_formily_react35.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
427
|
+
ToggleGroup: react430.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react430.RefAttributes<unknown>>;
|
|
428
|
+
Checkbox: react430.FC<_radix_ui_react_checkbox10.CheckboxProps & react430.RefAttributes<HTMLButtonElement>>;
|
|
429
429
|
Column: typeof Column;
|
|
430
|
-
DatePicker:
|
|
430
|
+
DatePicker: react430.ForwardRefExoticComponent<Partial<{
|
|
431
431
|
value?: Date;
|
|
432
432
|
onChange?: (date: Date | undefined) => void;
|
|
433
433
|
placeholder?: string;
|
|
434
|
-
} & Omit<
|
|
434
|
+
} & Omit<_pixpilot_shadcn_ui142.DatePickerProps, "onSelect" | "selected" | "mode">> & react430.RefAttributes<unknown>>;
|
|
435
435
|
FormGrid: typeof FormGrid;
|
|
436
|
-
FormItem:
|
|
437
|
-
children?:
|
|
438
|
-
}>, "ref"> &
|
|
439
|
-
Hidden:
|
|
440
|
-
IconToggle:
|
|
441
|
-
ToggleButton:
|
|
442
|
-
Input:
|
|
443
|
-
NumberInput:
|
|
444
|
-
ObjectContainer:
|
|
445
|
-
Radio:
|
|
436
|
+
FormItem: react430.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
437
|
+
children?: react430.ReactNode | undefined;
|
|
438
|
+
}>, "ref"> & react430.RefAttributes<unknown>>;
|
|
439
|
+
Hidden: react430.ForwardRefExoticComponent<Partial<HiddenProps> & react430.RefAttributes<unknown>>;
|
|
440
|
+
IconToggle: react430.FC<_pixpilot_shadcn_ui142.IconToggleProps>;
|
|
441
|
+
ToggleButton: react430.FC<_pixpilot_shadcn_ui142.ToggleButtonProps>;
|
|
442
|
+
Input: react430.FC<_pixpilot_shadcn_ui142.InputProps>;
|
|
443
|
+
NumberInput: react430.FC<_pixpilot_shadcn_ui142.InputProps>;
|
|
444
|
+
ObjectContainer: react430.FC<ObjectContainerProps>;
|
|
445
|
+
Radio: react430.FC<RadioProps>;
|
|
446
446
|
Row: typeof Row;
|
|
447
|
-
Select:
|
|
448
|
-
Separator:
|
|
449
|
-
Switch:
|
|
450
|
-
Textarea:
|
|
447
|
+
Select: react430.FC<SelectProps$1>;
|
|
448
|
+
Separator: react430.FC<_radix_ui_react_separator10.SeparatorProps & react430.RefAttributes<HTMLDivElement>>;
|
|
449
|
+
Switch: react430.FC<_radix_ui_react_switch10.SwitchProps & react430.RefAttributes<HTMLButtonElement>>;
|
|
450
|
+
Textarea: react430.FC<react430.ClassAttributes<HTMLTextAreaElement> & react430.TextareaHTMLAttributes<HTMLTextAreaElement>>;
|
|
451
451
|
}, Component_6, Decorator_6>): JSX.Element;
|
|
452
452
|
displayName: string;
|
|
453
453
|
};
|
|
454
454
|
DateTime: {
|
|
455
|
-
<Decorator_7 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof", Component_7 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof">(props:
|
|
455
|
+
<Decorator_7 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof", Component_7 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof">(props: _formily_react35.ISchemaTypeFieldProps<{
|
|
456
456
|
ArrayCards: ComposedArrayProps;
|
|
457
|
-
ArrayCollapse:
|
|
457
|
+
ArrayCollapse: react430.FC<ArrayComponentProps & {
|
|
458
458
|
defaultActiveKey?: Array<string | number>;
|
|
459
459
|
mode?: "accordion" | "multiple";
|
|
460
460
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
461
461
|
}>;
|
|
462
|
-
ArrayDialog:
|
|
462
|
+
ArrayDialog: react430.FC<ArrayComponentProps & {
|
|
463
463
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
464
464
|
}>;
|
|
465
465
|
ArrayInline: ComposedArrayProps;
|
|
466
|
-
ArrayPopover:
|
|
466
|
+
ArrayPopover: react430.FC<ArrayComponentProps & {
|
|
467
467
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
468
468
|
}>;
|
|
469
|
-
ArrayTags:
|
|
470
|
-
ArrayToggleGroup:
|
|
471
|
-
ToggleGroup:
|
|
472
|
-
Checkbox:
|
|
469
|
+
ArrayTags: react430.MemoExoticComponent<_formily_react35.ReactFC<ArrayTagsProps>>;
|
|
470
|
+
ArrayToggleGroup: react430.MemoExoticComponent<_formily_react35.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
471
|
+
ToggleGroup: react430.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react430.RefAttributes<unknown>>;
|
|
472
|
+
Checkbox: react430.FC<_radix_ui_react_checkbox10.CheckboxProps & react430.RefAttributes<HTMLButtonElement>>;
|
|
473
473
|
Column: typeof Column;
|
|
474
|
-
DatePicker:
|
|
474
|
+
DatePicker: react430.ForwardRefExoticComponent<Partial<{
|
|
475
475
|
value?: Date;
|
|
476
476
|
onChange?: (date: Date | undefined) => void;
|
|
477
477
|
placeholder?: string;
|
|
478
|
-
} & Omit<
|
|
478
|
+
} & Omit<_pixpilot_shadcn_ui142.DatePickerProps, "onSelect" | "selected" | "mode">> & react430.RefAttributes<unknown>>;
|
|
479
479
|
FormGrid: typeof FormGrid;
|
|
480
|
-
FormItem:
|
|
481
|
-
children?:
|
|
482
|
-
}>, "ref"> &
|
|
483
|
-
Hidden:
|
|
484
|
-
IconToggle:
|
|
485
|
-
ToggleButton:
|
|
486
|
-
Input:
|
|
487
|
-
NumberInput:
|
|
488
|
-
ObjectContainer:
|
|
489
|
-
Radio:
|
|
480
|
+
FormItem: react430.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
481
|
+
children?: react430.ReactNode | undefined;
|
|
482
|
+
}>, "ref"> & react430.RefAttributes<unknown>>;
|
|
483
|
+
Hidden: react430.ForwardRefExoticComponent<Partial<HiddenProps> & react430.RefAttributes<unknown>>;
|
|
484
|
+
IconToggle: react430.FC<_pixpilot_shadcn_ui142.IconToggleProps>;
|
|
485
|
+
ToggleButton: react430.FC<_pixpilot_shadcn_ui142.ToggleButtonProps>;
|
|
486
|
+
Input: react430.FC<_pixpilot_shadcn_ui142.InputProps>;
|
|
487
|
+
NumberInput: react430.FC<_pixpilot_shadcn_ui142.InputProps>;
|
|
488
|
+
ObjectContainer: react430.FC<ObjectContainerProps>;
|
|
489
|
+
Radio: react430.FC<RadioProps>;
|
|
490
490
|
Row: typeof Row;
|
|
491
|
-
Select:
|
|
492
|
-
Separator:
|
|
493
|
-
Switch:
|
|
494
|
-
Textarea:
|
|
491
|
+
Select: react430.FC<SelectProps$1>;
|
|
492
|
+
Separator: react430.FC<_radix_ui_react_separator10.SeparatorProps & react430.RefAttributes<HTMLDivElement>>;
|
|
493
|
+
Switch: react430.FC<_radix_ui_react_switch10.SwitchProps & react430.RefAttributes<HTMLButtonElement>>;
|
|
494
|
+
Textarea: react430.FC<react430.ClassAttributes<HTMLTextAreaElement> & react430.TextareaHTMLAttributes<HTMLTextAreaElement>>;
|
|
495
495
|
}, Component_7, Decorator_7>): JSX.Element;
|
|
496
496
|
displayName: string;
|
|
497
497
|
};
|
|
498
498
|
Void: {
|
|
499
|
-
<Decorator_8 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof", Component_8 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof">(props:
|
|
499
|
+
<Decorator_8 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof", Component_8 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof">(props: _formily_react35.ISchemaTypeFieldProps<{
|
|
500
500
|
ArrayCards: ComposedArrayProps;
|
|
501
|
-
ArrayCollapse:
|
|
501
|
+
ArrayCollapse: react430.FC<ArrayComponentProps & {
|
|
502
502
|
defaultActiveKey?: Array<string | number>;
|
|
503
503
|
mode?: "accordion" | "multiple";
|
|
504
504
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
505
505
|
}>;
|
|
506
|
-
ArrayDialog:
|
|
506
|
+
ArrayDialog: react430.FC<ArrayComponentProps & {
|
|
507
507
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
508
508
|
}>;
|
|
509
509
|
ArrayInline: ComposedArrayProps;
|
|
510
|
-
ArrayPopover:
|
|
510
|
+
ArrayPopover: react430.FC<ArrayComponentProps & {
|
|
511
511
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
512
512
|
}>;
|
|
513
|
-
ArrayTags:
|
|
514
|
-
ArrayToggleGroup:
|
|
515
|
-
ToggleGroup:
|
|
516
|
-
Checkbox:
|
|
513
|
+
ArrayTags: react430.MemoExoticComponent<_formily_react35.ReactFC<ArrayTagsProps>>;
|
|
514
|
+
ArrayToggleGroup: react430.MemoExoticComponent<_formily_react35.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
515
|
+
ToggleGroup: react430.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react430.RefAttributes<unknown>>;
|
|
516
|
+
Checkbox: react430.FC<_radix_ui_react_checkbox10.CheckboxProps & react430.RefAttributes<HTMLButtonElement>>;
|
|
517
517
|
Column: typeof Column;
|
|
518
|
-
DatePicker:
|
|
518
|
+
DatePicker: react430.ForwardRefExoticComponent<Partial<{
|
|
519
519
|
value?: Date;
|
|
520
520
|
onChange?: (date: Date | undefined) => void;
|
|
521
521
|
placeholder?: string;
|
|
522
|
-
} & Omit<
|
|
522
|
+
} & Omit<_pixpilot_shadcn_ui142.DatePickerProps, "onSelect" | "selected" | "mode">> & react430.RefAttributes<unknown>>;
|
|
523
523
|
FormGrid: typeof FormGrid;
|
|
524
|
-
FormItem:
|
|
525
|
-
children?:
|
|
526
|
-
}>, "ref"> &
|
|
527
|
-
Hidden:
|
|
528
|
-
IconToggle:
|
|
529
|
-
ToggleButton:
|
|
530
|
-
Input:
|
|
531
|
-
NumberInput:
|
|
532
|
-
ObjectContainer:
|
|
533
|
-
Radio:
|
|
524
|
+
FormItem: react430.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
525
|
+
children?: react430.ReactNode | undefined;
|
|
526
|
+
}>, "ref"> & react430.RefAttributes<unknown>>;
|
|
527
|
+
Hidden: react430.ForwardRefExoticComponent<Partial<HiddenProps> & react430.RefAttributes<unknown>>;
|
|
528
|
+
IconToggle: react430.FC<_pixpilot_shadcn_ui142.IconToggleProps>;
|
|
529
|
+
ToggleButton: react430.FC<_pixpilot_shadcn_ui142.ToggleButtonProps>;
|
|
530
|
+
Input: react430.FC<_pixpilot_shadcn_ui142.InputProps>;
|
|
531
|
+
NumberInput: react430.FC<_pixpilot_shadcn_ui142.InputProps>;
|
|
532
|
+
ObjectContainer: react430.FC<ObjectContainerProps>;
|
|
533
|
+
Radio: react430.FC<RadioProps>;
|
|
534
534
|
Row: typeof Row;
|
|
535
|
-
Select:
|
|
536
|
-
Separator:
|
|
537
|
-
Switch:
|
|
538
|
-
Textarea:
|
|
535
|
+
Select: react430.FC<SelectProps$1>;
|
|
536
|
+
Separator: react430.FC<_radix_ui_react_separator10.SeparatorProps & react430.RefAttributes<HTMLDivElement>>;
|
|
537
|
+
Switch: react430.FC<_radix_ui_react_switch10.SwitchProps & react430.RefAttributes<HTMLButtonElement>>;
|
|
538
|
+
Textarea: react430.FC<react430.ClassAttributes<HTMLTextAreaElement> & react430.TextareaHTMLAttributes<HTMLTextAreaElement>>;
|
|
539
539
|
}, Component_8, Decorator_8>): JSX.Element;
|
|
540
540
|
displayName: string;
|
|
541
541
|
};
|
|
542
542
|
Number: {
|
|
543
|
-
<Decorator_9 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof", Component_9 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof">(props:
|
|
543
|
+
<Decorator_9 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof", Component_9 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof">(props: _formily_react35.ISchemaTypeFieldProps<{
|
|
544
544
|
ArrayCards: ComposedArrayProps;
|
|
545
|
-
ArrayCollapse:
|
|
545
|
+
ArrayCollapse: react430.FC<ArrayComponentProps & {
|
|
546
546
|
defaultActiveKey?: Array<string | number>;
|
|
547
547
|
mode?: "accordion" | "multiple";
|
|
548
548
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
549
549
|
}>;
|
|
550
|
-
ArrayDialog:
|
|
550
|
+
ArrayDialog: react430.FC<ArrayComponentProps & {
|
|
551
551
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
552
552
|
}>;
|
|
553
553
|
ArrayInline: ComposedArrayProps;
|
|
554
|
-
ArrayPopover:
|
|
554
|
+
ArrayPopover: react430.FC<ArrayComponentProps & {
|
|
555
555
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
556
556
|
}>;
|
|
557
|
-
ArrayTags:
|
|
558
|
-
ArrayToggleGroup:
|
|
559
|
-
ToggleGroup:
|
|
560
|
-
Checkbox:
|
|
557
|
+
ArrayTags: react430.MemoExoticComponent<_formily_react35.ReactFC<ArrayTagsProps>>;
|
|
558
|
+
ArrayToggleGroup: react430.MemoExoticComponent<_formily_react35.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
559
|
+
ToggleGroup: react430.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react430.RefAttributes<unknown>>;
|
|
560
|
+
Checkbox: react430.FC<_radix_ui_react_checkbox10.CheckboxProps & react430.RefAttributes<HTMLButtonElement>>;
|
|
561
561
|
Column: typeof Column;
|
|
562
|
-
DatePicker:
|
|
562
|
+
DatePicker: react430.ForwardRefExoticComponent<Partial<{
|
|
563
563
|
value?: Date;
|
|
564
564
|
onChange?: (date: Date | undefined) => void;
|
|
565
565
|
placeholder?: string;
|
|
566
|
-
} & Omit<
|
|
566
|
+
} & Omit<_pixpilot_shadcn_ui142.DatePickerProps, "onSelect" | "selected" | "mode">> & react430.RefAttributes<unknown>>;
|
|
567
567
|
FormGrid: typeof FormGrid;
|
|
568
|
-
FormItem:
|
|
569
|
-
children?:
|
|
570
|
-
}>, "ref"> &
|
|
571
|
-
Hidden:
|
|
572
|
-
IconToggle:
|
|
573
|
-
ToggleButton:
|
|
574
|
-
Input:
|
|
575
|
-
NumberInput:
|
|
576
|
-
ObjectContainer:
|
|
577
|
-
Radio:
|
|
568
|
+
FormItem: react430.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
569
|
+
children?: react430.ReactNode | undefined;
|
|
570
|
+
}>, "ref"> & react430.RefAttributes<unknown>>;
|
|
571
|
+
Hidden: react430.ForwardRefExoticComponent<Partial<HiddenProps> & react430.RefAttributes<unknown>>;
|
|
572
|
+
IconToggle: react430.FC<_pixpilot_shadcn_ui142.IconToggleProps>;
|
|
573
|
+
ToggleButton: react430.FC<_pixpilot_shadcn_ui142.ToggleButtonProps>;
|
|
574
|
+
Input: react430.FC<_pixpilot_shadcn_ui142.InputProps>;
|
|
575
|
+
NumberInput: react430.FC<_pixpilot_shadcn_ui142.InputProps>;
|
|
576
|
+
ObjectContainer: react430.FC<ObjectContainerProps>;
|
|
577
|
+
Radio: react430.FC<RadioProps>;
|
|
578
578
|
Row: typeof Row;
|
|
579
|
-
Select:
|
|
580
|
-
Separator:
|
|
581
|
-
Switch:
|
|
582
|
-
Textarea:
|
|
579
|
+
Select: react430.FC<SelectProps$1>;
|
|
580
|
+
Separator: react430.FC<_radix_ui_react_separator10.SeparatorProps & react430.RefAttributes<HTMLDivElement>>;
|
|
581
|
+
Switch: react430.FC<_radix_ui_react_switch10.SwitchProps & react430.RefAttributes<HTMLButtonElement>>;
|
|
582
|
+
Textarea: react430.FC<react430.ClassAttributes<HTMLTextAreaElement> & react430.TextareaHTMLAttributes<HTMLTextAreaElement>>;
|
|
583
583
|
}, Component_9, Decorator_9>): JSX.Element;
|
|
584
584
|
displayName: string;
|
|
585
585
|
};
|