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