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