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