@pixpilot/formily-shadcn 0.15.0 → 0.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/checkbox.d.ts +2 -2
- package/dist/components/color-picker/color-picker.cjs +18 -0
- package/dist/components/color-picker/color-picker.js +14 -0
- package/dist/components/color-picker/index.cjs +1 -0
- package/dist/components/color-picker/index.js +1 -0
- package/dist/components/date-picker.d.cts +1 -1
- package/dist/components/date-picker.d.ts +3 -3
- package/dist/components/file-upload/file-upload-inline.d.cts +8 -8
- package/dist/components/file-upload/file-upload.d.cts +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.ts +3 -3
- package/dist/components/input.d.ts +2 -2
- package/dist/components/number-input.d.ts +2 -2
- package/dist/components/object-container.cjs +2 -1
- package/dist/components/object-container.js +2 -1
- package/dist/components/schema-field/schema-field-basics.d.cts +211 -211
- package/dist/components/schema-field/schema-field-basics.d.ts +226 -226
- package/dist/components/schema-field/schema-field-extended.d.cts +34 -20
- package/dist/components/schema-field/schema-field-extended.d.ts +493 -479
- package/dist/components/schema-field/schema-field.cjs +6 -0
- package/dist/components/schema-field/schema-field.d.cts +267 -253
- package/dist/components/schema-field/schema-field.d.ts +272 -258
- package/dist/components/schema-field/schema-field.js +6 -0
- package/package.json +3 -3
|
@@ -10,9 +10,9 @@ import { Row } from "../row.cjs";
|
|
|
10
10
|
import { ObjectContainerProps } from "../object-container.cjs";
|
|
11
11
|
import * as _formily_react23 from "@formily/react";
|
|
12
12
|
import { ISchema } from "@formily/react";
|
|
13
|
-
import * as
|
|
13
|
+
import * as react1031 from "react";
|
|
14
14
|
import * as _formily_core1 from "@formily/core";
|
|
15
|
-
import * as
|
|
15
|
+
import * as _pixpilot_shadcn_ui324 from "@pixpilot/shadcn-ui";
|
|
16
16
|
import * as _radix_ui_react_checkbox22 from "@radix-ui/react-checkbox";
|
|
17
17
|
import * as _radix_ui_react_switch22 from "@radix-ui/react-switch";
|
|
18
18
|
import * as _radix_ui_react_separator22 from "@radix-ui/react-separator";
|
|
@@ -20,50 +20,50 @@ import * as _radix_ui_react_separator22 from "@radix-ui/react-separator";
|
|
|
20
20
|
//#region src/components/schema-field/schema-field-basics.d.ts
|
|
21
21
|
declare const basicComponentRegistry: {
|
|
22
22
|
FormItem: {
|
|
23
|
-
component:
|
|
24
|
-
children?:
|
|
25
|
-
}>, "ref"> &
|
|
23
|
+
component: react1031.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
24
|
+
children?: react1031.ReactNode | undefined;
|
|
25
|
+
}>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
26
26
|
};
|
|
27
27
|
Hidden: {
|
|
28
|
-
component:
|
|
28
|
+
component: react1031.ForwardRefExoticComponent<Partial<{
|
|
29
29
|
children?: React.ReactNode;
|
|
30
30
|
value?: string;
|
|
31
|
-
}> &
|
|
31
|
+
}> & react1031.RefAttributes<unknown>>;
|
|
32
32
|
};
|
|
33
33
|
Input: {
|
|
34
|
-
component:
|
|
34
|
+
component: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLInputElement> & react1031.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
35
35
|
decorator: string;
|
|
36
36
|
};
|
|
37
37
|
Textarea: {
|
|
38
|
-
component:
|
|
38
|
+
component: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLTextAreaElement> & react1031.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
39
39
|
decorator: string;
|
|
40
40
|
};
|
|
41
41
|
NumberInput: {
|
|
42
|
-
component:
|
|
42
|
+
component: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLInputElement> & react1031.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
43
43
|
decorator: string;
|
|
44
44
|
};
|
|
45
45
|
Checkbox: {
|
|
46
|
-
component:
|
|
46
|
+
component: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox22.CheckboxProps & react1031.RefAttributes<HTMLButtonElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
47
47
|
decorator: string;
|
|
48
48
|
};
|
|
49
49
|
Radio: {
|
|
50
|
-
component:
|
|
50
|
+
component: react1031.FC;
|
|
51
51
|
decorator: string;
|
|
52
52
|
};
|
|
53
53
|
Select: {
|
|
54
|
-
component:
|
|
54
|
+
component: react1031.FC;
|
|
55
55
|
decorator: string;
|
|
56
56
|
};
|
|
57
57
|
Switch: {
|
|
58
|
-
component:
|
|
58
|
+
component: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch22.SwitchProps & react1031.RefAttributes<HTMLButtonElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
59
59
|
decorator: string;
|
|
60
60
|
};
|
|
61
61
|
DatePicker: {
|
|
62
|
-
component:
|
|
62
|
+
component: react1031.ForwardRefExoticComponent<Partial<{
|
|
63
63
|
value?: Date;
|
|
64
64
|
onChange?: (date: Date | undefined) => void;
|
|
65
65
|
placeholder?: string;
|
|
66
|
-
} & Omit<
|
|
66
|
+
} & Omit<_pixpilot_shadcn_ui324.DatePickerProps, "onSelect" | "selected" | "mode">> & react1031.RefAttributes<unknown>>;
|
|
67
67
|
decorator: string;
|
|
68
68
|
};
|
|
69
69
|
Row: {
|
|
@@ -76,389 +76,389 @@ declare const basicComponentRegistry: {
|
|
|
76
76
|
component: typeof FormGrid;
|
|
77
77
|
};
|
|
78
78
|
Separator: {
|
|
79
|
-
component:
|
|
79
|
+
component: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator22.SeparatorProps & react1031.RefAttributes<HTMLDivElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
80
80
|
};
|
|
81
81
|
ArrayCards: {
|
|
82
82
|
component: ComposedArrayProps;
|
|
83
83
|
decorator: string;
|
|
84
84
|
};
|
|
85
85
|
ArrayDialog: {
|
|
86
|
-
component:
|
|
86
|
+
component: react1031.FC<ArrayComponentProps>;
|
|
87
87
|
decorator: string;
|
|
88
88
|
};
|
|
89
89
|
ArrayCollapse: {
|
|
90
|
-
component:
|
|
90
|
+
component: react1031.FC<ArrayComponentProps & {
|
|
91
91
|
defaultActiveKey?: Array<string | number>;
|
|
92
92
|
mode?: "accordion" | "multiple";
|
|
93
93
|
}>;
|
|
94
94
|
decorator: string;
|
|
95
95
|
};
|
|
96
96
|
ArrayPopover: {
|
|
97
|
-
component:
|
|
97
|
+
component: react1031.FC<ArrayComponentProps>;
|
|
98
98
|
decorator: string;
|
|
99
99
|
};
|
|
100
100
|
ObjectContainer: {
|
|
101
|
-
component:
|
|
101
|
+
component: react1031.FC<ObjectContainerProps>;
|
|
102
102
|
decorator: string;
|
|
103
103
|
};
|
|
104
104
|
};
|
|
105
105
|
declare const basicComponents: {
|
|
106
|
-
FormItem:
|
|
107
|
-
children?:
|
|
108
|
-
}>, "ref"> &
|
|
109
|
-
Hidden:
|
|
106
|
+
FormItem: react1031.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
107
|
+
children?: react1031.ReactNode | undefined;
|
|
108
|
+
}>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
109
|
+
Hidden: react1031.ForwardRefExoticComponent<Partial<{
|
|
110
110
|
children?: React.ReactNode;
|
|
111
111
|
value?: string;
|
|
112
|
-
}> &
|
|
113
|
-
Input:
|
|
114
|
-
Textarea:
|
|
115
|
-
NumberInput:
|
|
116
|
-
Checkbox:
|
|
117
|
-
Radio:
|
|
118
|
-
Select:
|
|
119
|
-
Switch:
|
|
120
|
-
DatePicker:
|
|
112
|
+
}> & react1031.RefAttributes<unknown>>;
|
|
113
|
+
Input: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLInputElement> & react1031.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
114
|
+
Textarea: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLTextAreaElement> & react1031.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
115
|
+
NumberInput: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLInputElement> & react1031.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
116
|
+
Checkbox: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox22.CheckboxProps & react1031.RefAttributes<HTMLButtonElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
117
|
+
Radio: react1031.FC;
|
|
118
|
+
Select: react1031.FC;
|
|
119
|
+
Switch: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch22.SwitchProps & react1031.RefAttributes<HTMLButtonElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
120
|
+
DatePicker: react1031.ForwardRefExoticComponent<Partial<{
|
|
121
121
|
value?: Date;
|
|
122
122
|
onChange?: (date: Date | undefined) => void;
|
|
123
123
|
placeholder?: string;
|
|
124
|
-
} & Omit<
|
|
124
|
+
} & Omit<_pixpilot_shadcn_ui324.DatePickerProps, "onSelect" | "selected" | "mode">> & react1031.RefAttributes<unknown>>;
|
|
125
125
|
Row: typeof Row;
|
|
126
126
|
Column: typeof Column;
|
|
127
127
|
FormGrid: typeof FormGrid;
|
|
128
|
-
Separator:
|
|
128
|
+
Separator: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator22.SeparatorProps & react1031.RefAttributes<HTMLDivElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
129
129
|
ArrayCards: ComposedArrayProps;
|
|
130
|
-
ArrayDialog:
|
|
131
|
-
ArrayCollapse:
|
|
130
|
+
ArrayDialog: react1031.FC<ArrayComponentProps>;
|
|
131
|
+
ArrayCollapse: react1031.FC<ArrayComponentProps & {
|
|
132
132
|
defaultActiveKey?: Array<string | number>;
|
|
133
133
|
mode?: "accordion" | "multiple";
|
|
134
134
|
}>;
|
|
135
|
-
ArrayPopover:
|
|
136
|
-
ObjectContainer:
|
|
135
|
+
ArrayPopover: react1031.FC<ArrayComponentProps>;
|
|
136
|
+
ObjectContainer: react1031.FC<ObjectContainerProps>;
|
|
137
137
|
};
|
|
138
138
|
declare const SchemaFieldBasics: {
|
|
139
139
|
<Decorator extends _formily_react23.JSXComponent, Component extends _formily_react23.JSXComponent>(props: _formily_react23.ISchemaFieldProps<Decorator, Component, _formily_core1.ObjectField<Decorator, Component>>): JSX.Element;
|
|
140
140
|
displayName: string;
|
|
141
141
|
Markup: {
|
|
142
142
|
<Decorator_1 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord", Component_1 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord">(props: _formily_react23.ISchemaMarkupFieldProps<{
|
|
143
|
-
FormItem:
|
|
144
|
-
children?:
|
|
145
|
-
}>, "ref"> &
|
|
146
|
-
Hidden:
|
|
143
|
+
FormItem: react1031.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
144
|
+
children?: react1031.ReactNode | undefined;
|
|
145
|
+
}>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
146
|
+
Hidden: react1031.ForwardRefExoticComponent<Partial<{
|
|
147
147
|
children?: React.ReactNode;
|
|
148
148
|
value?: string;
|
|
149
|
-
}> &
|
|
150
|
-
Input:
|
|
151
|
-
Textarea:
|
|
152
|
-
NumberInput:
|
|
153
|
-
Checkbox:
|
|
154
|
-
Radio:
|
|
155
|
-
Select:
|
|
156
|
-
Switch:
|
|
157
|
-
DatePicker:
|
|
149
|
+
}> & react1031.RefAttributes<unknown>>;
|
|
150
|
+
Input: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLInputElement> & react1031.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
151
|
+
Textarea: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLTextAreaElement> & react1031.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
152
|
+
NumberInput: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLInputElement> & react1031.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
153
|
+
Checkbox: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox22.CheckboxProps & react1031.RefAttributes<HTMLButtonElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
154
|
+
Radio: react1031.FC;
|
|
155
|
+
Select: react1031.FC;
|
|
156
|
+
Switch: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch22.SwitchProps & react1031.RefAttributes<HTMLButtonElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
157
|
+
DatePicker: react1031.ForwardRefExoticComponent<Partial<{
|
|
158
158
|
value?: Date;
|
|
159
159
|
onChange?: (date: Date | undefined) => void;
|
|
160
160
|
placeholder?: string;
|
|
161
|
-
} & Omit<
|
|
161
|
+
} & Omit<_pixpilot_shadcn_ui324.DatePickerProps, "onSelect" | "selected" | "mode">> & react1031.RefAttributes<unknown>>;
|
|
162
162
|
Row: typeof Row;
|
|
163
163
|
Column: typeof Column;
|
|
164
164
|
FormGrid: typeof FormGrid;
|
|
165
|
-
Separator:
|
|
165
|
+
Separator: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator22.SeparatorProps & react1031.RefAttributes<HTMLDivElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
166
166
|
ArrayCards: ComposedArrayProps;
|
|
167
|
-
ArrayDialog:
|
|
168
|
-
ArrayCollapse:
|
|
167
|
+
ArrayDialog: react1031.FC<ArrayComponentProps>;
|
|
168
|
+
ArrayCollapse: react1031.FC<ArrayComponentProps & {
|
|
169
169
|
defaultActiveKey?: Array<string | number>;
|
|
170
170
|
mode?: "accordion" | "multiple";
|
|
171
171
|
}>;
|
|
172
|
-
ArrayPopover:
|
|
173
|
-
ObjectContainer:
|
|
172
|
+
ArrayPopover: react1031.FC<ArrayComponentProps>;
|
|
173
|
+
ObjectContainer: react1031.FC<ObjectContainerProps>;
|
|
174
174
|
}, Component_1, Decorator_1>): JSX.Element;
|
|
175
175
|
displayName: string;
|
|
176
176
|
};
|
|
177
177
|
String: {
|
|
178
178
|
<Decorator_2 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord", Component_2 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord">(props: _formily_react23.ISchemaTypeFieldProps<{
|
|
179
|
-
FormItem:
|
|
180
|
-
children?:
|
|
181
|
-
}>, "ref"> &
|
|
182
|
-
Hidden:
|
|
179
|
+
FormItem: react1031.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
180
|
+
children?: react1031.ReactNode | undefined;
|
|
181
|
+
}>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
182
|
+
Hidden: react1031.ForwardRefExoticComponent<Partial<{
|
|
183
183
|
children?: React.ReactNode;
|
|
184
184
|
value?: string;
|
|
185
|
-
}> &
|
|
186
|
-
Input:
|
|
187
|
-
Textarea:
|
|
188
|
-
NumberInput:
|
|
189
|
-
Checkbox:
|
|
190
|
-
Radio:
|
|
191
|
-
Select:
|
|
192
|
-
Switch:
|
|
193
|
-
DatePicker:
|
|
185
|
+
}> & react1031.RefAttributes<unknown>>;
|
|
186
|
+
Input: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLInputElement> & react1031.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
187
|
+
Textarea: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLTextAreaElement> & react1031.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
188
|
+
NumberInput: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLInputElement> & react1031.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
189
|
+
Checkbox: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox22.CheckboxProps & react1031.RefAttributes<HTMLButtonElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
190
|
+
Radio: react1031.FC;
|
|
191
|
+
Select: react1031.FC;
|
|
192
|
+
Switch: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch22.SwitchProps & react1031.RefAttributes<HTMLButtonElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
193
|
+
DatePicker: react1031.ForwardRefExoticComponent<Partial<{
|
|
194
194
|
value?: Date;
|
|
195
195
|
onChange?: (date: Date | undefined) => void;
|
|
196
196
|
placeholder?: string;
|
|
197
|
-
} & Omit<
|
|
197
|
+
} & Omit<_pixpilot_shadcn_ui324.DatePickerProps, "onSelect" | "selected" | "mode">> & react1031.RefAttributes<unknown>>;
|
|
198
198
|
Row: typeof Row;
|
|
199
199
|
Column: typeof Column;
|
|
200
200
|
FormGrid: typeof FormGrid;
|
|
201
|
-
Separator:
|
|
201
|
+
Separator: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator22.SeparatorProps & react1031.RefAttributes<HTMLDivElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
202
202
|
ArrayCards: ComposedArrayProps;
|
|
203
|
-
ArrayDialog:
|
|
204
|
-
ArrayCollapse:
|
|
203
|
+
ArrayDialog: react1031.FC<ArrayComponentProps>;
|
|
204
|
+
ArrayCollapse: react1031.FC<ArrayComponentProps & {
|
|
205
205
|
defaultActiveKey?: Array<string | number>;
|
|
206
206
|
mode?: "accordion" | "multiple";
|
|
207
207
|
}>;
|
|
208
|
-
ArrayPopover:
|
|
209
|
-
ObjectContainer:
|
|
208
|
+
ArrayPopover: react1031.FC<ArrayComponentProps>;
|
|
209
|
+
ObjectContainer: react1031.FC<ObjectContainerProps>;
|
|
210
210
|
}, Component_2, Decorator_2>): JSX.Element;
|
|
211
211
|
displayName: string;
|
|
212
212
|
};
|
|
213
213
|
Object: {
|
|
214
214
|
<Decorator_3 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord", Component_3 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord">(props: _formily_react23.ISchemaTypeFieldProps<{
|
|
215
|
-
FormItem:
|
|
216
|
-
children?:
|
|
217
|
-
}>, "ref"> &
|
|
218
|
-
Hidden:
|
|
215
|
+
FormItem: react1031.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
216
|
+
children?: react1031.ReactNode | undefined;
|
|
217
|
+
}>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
218
|
+
Hidden: react1031.ForwardRefExoticComponent<Partial<{
|
|
219
219
|
children?: React.ReactNode;
|
|
220
220
|
value?: string;
|
|
221
|
-
}> &
|
|
222
|
-
Input:
|
|
223
|
-
Textarea:
|
|
224
|
-
NumberInput:
|
|
225
|
-
Checkbox:
|
|
226
|
-
Radio:
|
|
227
|
-
Select:
|
|
228
|
-
Switch:
|
|
229
|
-
DatePicker:
|
|
221
|
+
}> & react1031.RefAttributes<unknown>>;
|
|
222
|
+
Input: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLInputElement> & react1031.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
223
|
+
Textarea: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLTextAreaElement> & react1031.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
224
|
+
NumberInput: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLInputElement> & react1031.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
225
|
+
Checkbox: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox22.CheckboxProps & react1031.RefAttributes<HTMLButtonElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
226
|
+
Radio: react1031.FC;
|
|
227
|
+
Select: react1031.FC;
|
|
228
|
+
Switch: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch22.SwitchProps & react1031.RefAttributes<HTMLButtonElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
229
|
+
DatePicker: react1031.ForwardRefExoticComponent<Partial<{
|
|
230
230
|
value?: Date;
|
|
231
231
|
onChange?: (date: Date | undefined) => void;
|
|
232
232
|
placeholder?: string;
|
|
233
|
-
} & Omit<
|
|
233
|
+
} & Omit<_pixpilot_shadcn_ui324.DatePickerProps, "onSelect" | "selected" | "mode">> & react1031.RefAttributes<unknown>>;
|
|
234
234
|
Row: typeof Row;
|
|
235
235
|
Column: typeof Column;
|
|
236
236
|
FormGrid: typeof FormGrid;
|
|
237
|
-
Separator:
|
|
237
|
+
Separator: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator22.SeparatorProps & react1031.RefAttributes<HTMLDivElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
238
238
|
ArrayCards: ComposedArrayProps;
|
|
239
|
-
ArrayDialog:
|
|
240
|
-
ArrayCollapse:
|
|
239
|
+
ArrayDialog: react1031.FC<ArrayComponentProps>;
|
|
240
|
+
ArrayCollapse: react1031.FC<ArrayComponentProps & {
|
|
241
241
|
defaultActiveKey?: Array<string | number>;
|
|
242
242
|
mode?: "accordion" | "multiple";
|
|
243
243
|
}>;
|
|
244
|
-
ArrayPopover:
|
|
245
|
-
ObjectContainer:
|
|
244
|
+
ArrayPopover: react1031.FC<ArrayComponentProps>;
|
|
245
|
+
ObjectContainer: react1031.FC<ObjectContainerProps>;
|
|
246
246
|
}, Component_3, Decorator_3>): JSX.Element;
|
|
247
247
|
displayName: string;
|
|
248
248
|
};
|
|
249
249
|
Array: {
|
|
250
250
|
<Decorator_4 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord", Component_4 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord">(props: _formily_react23.ISchemaTypeFieldProps<{
|
|
251
|
-
FormItem:
|
|
252
|
-
children?:
|
|
253
|
-
}>, "ref"> &
|
|
254
|
-
Hidden:
|
|
251
|
+
FormItem: react1031.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
252
|
+
children?: react1031.ReactNode | undefined;
|
|
253
|
+
}>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
254
|
+
Hidden: react1031.ForwardRefExoticComponent<Partial<{
|
|
255
255
|
children?: React.ReactNode;
|
|
256
256
|
value?: string;
|
|
257
|
-
}> &
|
|
258
|
-
Input:
|
|
259
|
-
Textarea:
|
|
260
|
-
NumberInput:
|
|
261
|
-
Checkbox:
|
|
262
|
-
Radio:
|
|
263
|
-
Select:
|
|
264
|
-
Switch:
|
|
265
|
-
DatePicker:
|
|
257
|
+
}> & react1031.RefAttributes<unknown>>;
|
|
258
|
+
Input: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLInputElement> & react1031.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
259
|
+
Textarea: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLTextAreaElement> & react1031.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
260
|
+
NumberInput: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLInputElement> & react1031.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
261
|
+
Checkbox: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox22.CheckboxProps & react1031.RefAttributes<HTMLButtonElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
262
|
+
Radio: react1031.FC;
|
|
263
|
+
Select: react1031.FC;
|
|
264
|
+
Switch: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch22.SwitchProps & react1031.RefAttributes<HTMLButtonElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
265
|
+
DatePicker: react1031.ForwardRefExoticComponent<Partial<{
|
|
266
266
|
value?: Date;
|
|
267
267
|
onChange?: (date: Date | undefined) => void;
|
|
268
268
|
placeholder?: string;
|
|
269
|
-
} & Omit<
|
|
269
|
+
} & Omit<_pixpilot_shadcn_ui324.DatePickerProps, "onSelect" | "selected" | "mode">> & react1031.RefAttributes<unknown>>;
|
|
270
270
|
Row: typeof Row;
|
|
271
271
|
Column: typeof Column;
|
|
272
272
|
FormGrid: typeof FormGrid;
|
|
273
|
-
Separator:
|
|
273
|
+
Separator: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator22.SeparatorProps & react1031.RefAttributes<HTMLDivElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
274
274
|
ArrayCards: ComposedArrayProps;
|
|
275
|
-
ArrayDialog:
|
|
276
|
-
ArrayCollapse:
|
|
275
|
+
ArrayDialog: react1031.FC<ArrayComponentProps>;
|
|
276
|
+
ArrayCollapse: react1031.FC<ArrayComponentProps & {
|
|
277
277
|
defaultActiveKey?: Array<string | number>;
|
|
278
278
|
mode?: "accordion" | "multiple";
|
|
279
279
|
}>;
|
|
280
|
-
ArrayPopover:
|
|
281
|
-
ObjectContainer:
|
|
280
|
+
ArrayPopover: react1031.FC<ArrayComponentProps>;
|
|
281
|
+
ObjectContainer: react1031.FC<ObjectContainerProps>;
|
|
282
282
|
}, Component_4, Decorator_4>): JSX.Element;
|
|
283
283
|
displayName: string;
|
|
284
284
|
};
|
|
285
285
|
Boolean: {
|
|
286
286
|
<Decorator_5 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord", Component_5 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord">(props: _formily_react23.ISchemaTypeFieldProps<{
|
|
287
|
-
FormItem:
|
|
288
|
-
children?:
|
|
289
|
-
}>, "ref"> &
|
|
290
|
-
Hidden:
|
|
287
|
+
FormItem: react1031.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
288
|
+
children?: react1031.ReactNode | undefined;
|
|
289
|
+
}>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
290
|
+
Hidden: react1031.ForwardRefExoticComponent<Partial<{
|
|
291
291
|
children?: React.ReactNode;
|
|
292
292
|
value?: string;
|
|
293
|
-
}> &
|
|
294
|
-
Input:
|
|
295
|
-
Textarea:
|
|
296
|
-
NumberInput:
|
|
297
|
-
Checkbox:
|
|
298
|
-
Radio:
|
|
299
|
-
Select:
|
|
300
|
-
Switch:
|
|
301
|
-
DatePicker:
|
|
293
|
+
}> & react1031.RefAttributes<unknown>>;
|
|
294
|
+
Input: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLInputElement> & react1031.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
295
|
+
Textarea: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLTextAreaElement> & react1031.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
296
|
+
NumberInput: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLInputElement> & react1031.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
297
|
+
Checkbox: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox22.CheckboxProps & react1031.RefAttributes<HTMLButtonElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
298
|
+
Radio: react1031.FC;
|
|
299
|
+
Select: react1031.FC;
|
|
300
|
+
Switch: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch22.SwitchProps & react1031.RefAttributes<HTMLButtonElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
301
|
+
DatePicker: react1031.ForwardRefExoticComponent<Partial<{
|
|
302
302
|
value?: Date;
|
|
303
303
|
onChange?: (date: Date | undefined) => void;
|
|
304
304
|
placeholder?: string;
|
|
305
|
-
} & Omit<
|
|
305
|
+
} & Omit<_pixpilot_shadcn_ui324.DatePickerProps, "onSelect" | "selected" | "mode">> & react1031.RefAttributes<unknown>>;
|
|
306
306
|
Row: typeof Row;
|
|
307
307
|
Column: typeof Column;
|
|
308
308
|
FormGrid: typeof FormGrid;
|
|
309
|
-
Separator:
|
|
309
|
+
Separator: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator22.SeparatorProps & react1031.RefAttributes<HTMLDivElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
310
310
|
ArrayCards: ComposedArrayProps;
|
|
311
|
-
ArrayDialog:
|
|
312
|
-
ArrayCollapse:
|
|
311
|
+
ArrayDialog: react1031.FC<ArrayComponentProps>;
|
|
312
|
+
ArrayCollapse: react1031.FC<ArrayComponentProps & {
|
|
313
313
|
defaultActiveKey?: Array<string | number>;
|
|
314
314
|
mode?: "accordion" | "multiple";
|
|
315
315
|
}>;
|
|
316
|
-
ArrayPopover:
|
|
317
|
-
ObjectContainer:
|
|
316
|
+
ArrayPopover: react1031.FC<ArrayComponentProps>;
|
|
317
|
+
ObjectContainer: react1031.FC<ObjectContainerProps>;
|
|
318
318
|
}, Component_5, Decorator_5>): JSX.Element;
|
|
319
319
|
displayName: string;
|
|
320
320
|
};
|
|
321
321
|
Date: {
|
|
322
322
|
<Decorator_6 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord", Component_6 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord">(props: _formily_react23.ISchemaTypeFieldProps<{
|
|
323
|
-
FormItem:
|
|
324
|
-
children?:
|
|
325
|
-
}>, "ref"> &
|
|
326
|
-
Hidden:
|
|
323
|
+
FormItem: react1031.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
324
|
+
children?: react1031.ReactNode | undefined;
|
|
325
|
+
}>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
326
|
+
Hidden: react1031.ForwardRefExoticComponent<Partial<{
|
|
327
327
|
children?: React.ReactNode;
|
|
328
328
|
value?: string;
|
|
329
|
-
}> &
|
|
330
|
-
Input:
|
|
331
|
-
Textarea:
|
|
332
|
-
NumberInput:
|
|
333
|
-
Checkbox:
|
|
334
|
-
Radio:
|
|
335
|
-
Select:
|
|
336
|
-
Switch:
|
|
337
|
-
DatePicker:
|
|
329
|
+
}> & react1031.RefAttributes<unknown>>;
|
|
330
|
+
Input: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLInputElement> & react1031.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
331
|
+
Textarea: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLTextAreaElement> & react1031.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
332
|
+
NumberInput: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLInputElement> & react1031.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
333
|
+
Checkbox: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox22.CheckboxProps & react1031.RefAttributes<HTMLButtonElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
334
|
+
Radio: react1031.FC;
|
|
335
|
+
Select: react1031.FC;
|
|
336
|
+
Switch: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch22.SwitchProps & react1031.RefAttributes<HTMLButtonElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
337
|
+
DatePicker: react1031.ForwardRefExoticComponent<Partial<{
|
|
338
338
|
value?: Date;
|
|
339
339
|
onChange?: (date: Date | undefined) => void;
|
|
340
340
|
placeholder?: string;
|
|
341
|
-
} & Omit<
|
|
341
|
+
} & Omit<_pixpilot_shadcn_ui324.DatePickerProps, "onSelect" | "selected" | "mode">> & react1031.RefAttributes<unknown>>;
|
|
342
342
|
Row: typeof Row;
|
|
343
343
|
Column: typeof Column;
|
|
344
344
|
FormGrid: typeof FormGrid;
|
|
345
|
-
Separator:
|
|
345
|
+
Separator: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator22.SeparatorProps & react1031.RefAttributes<HTMLDivElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
346
346
|
ArrayCards: ComposedArrayProps;
|
|
347
|
-
ArrayDialog:
|
|
348
|
-
ArrayCollapse:
|
|
347
|
+
ArrayDialog: react1031.FC<ArrayComponentProps>;
|
|
348
|
+
ArrayCollapse: react1031.FC<ArrayComponentProps & {
|
|
349
349
|
defaultActiveKey?: Array<string | number>;
|
|
350
350
|
mode?: "accordion" | "multiple";
|
|
351
351
|
}>;
|
|
352
|
-
ArrayPopover:
|
|
353
|
-
ObjectContainer:
|
|
352
|
+
ArrayPopover: react1031.FC<ArrayComponentProps>;
|
|
353
|
+
ObjectContainer: react1031.FC<ObjectContainerProps>;
|
|
354
354
|
}, Component_6, Decorator_6>): JSX.Element;
|
|
355
355
|
displayName: string;
|
|
356
356
|
};
|
|
357
357
|
DateTime: {
|
|
358
358
|
<Decorator_7 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord", Component_7 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord">(props: _formily_react23.ISchemaTypeFieldProps<{
|
|
359
|
-
FormItem:
|
|
360
|
-
children?:
|
|
361
|
-
}>, "ref"> &
|
|
362
|
-
Hidden:
|
|
359
|
+
FormItem: react1031.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
360
|
+
children?: react1031.ReactNode | undefined;
|
|
361
|
+
}>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
362
|
+
Hidden: react1031.ForwardRefExoticComponent<Partial<{
|
|
363
363
|
children?: React.ReactNode;
|
|
364
364
|
value?: string;
|
|
365
|
-
}> &
|
|
366
|
-
Input:
|
|
367
|
-
Textarea:
|
|
368
|
-
NumberInput:
|
|
369
|
-
Checkbox:
|
|
370
|
-
Radio:
|
|
371
|
-
Select:
|
|
372
|
-
Switch:
|
|
373
|
-
DatePicker:
|
|
365
|
+
}> & react1031.RefAttributes<unknown>>;
|
|
366
|
+
Input: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLInputElement> & react1031.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
367
|
+
Textarea: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLTextAreaElement> & react1031.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
368
|
+
NumberInput: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLInputElement> & react1031.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
369
|
+
Checkbox: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox22.CheckboxProps & react1031.RefAttributes<HTMLButtonElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
370
|
+
Radio: react1031.FC;
|
|
371
|
+
Select: react1031.FC;
|
|
372
|
+
Switch: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch22.SwitchProps & react1031.RefAttributes<HTMLButtonElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
373
|
+
DatePicker: react1031.ForwardRefExoticComponent<Partial<{
|
|
374
374
|
value?: Date;
|
|
375
375
|
onChange?: (date: Date | undefined) => void;
|
|
376
376
|
placeholder?: string;
|
|
377
|
-
} & Omit<
|
|
377
|
+
} & Omit<_pixpilot_shadcn_ui324.DatePickerProps, "onSelect" | "selected" | "mode">> & react1031.RefAttributes<unknown>>;
|
|
378
378
|
Row: typeof Row;
|
|
379
379
|
Column: typeof Column;
|
|
380
380
|
FormGrid: typeof FormGrid;
|
|
381
|
-
Separator:
|
|
381
|
+
Separator: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator22.SeparatorProps & react1031.RefAttributes<HTMLDivElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
382
382
|
ArrayCards: ComposedArrayProps;
|
|
383
|
-
ArrayDialog:
|
|
384
|
-
ArrayCollapse:
|
|
383
|
+
ArrayDialog: react1031.FC<ArrayComponentProps>;
|
|
384
|
+
ArrayCollapse: react1031.FC<ArrayComponentProps & {
|
|
385
385
|
defaultActiveKey?: Array<string | number>;
|
|
386
386
|
mode?: "accordion" | "multiple";
|
|
387
387
|
}>;
|
|
388
|
-
ArrayPopover:
|
|
389
|
-
ObjectContainer:
|
|
388
|
+
ArrayPopover: react1031.FC<ArrayComponentProps>;
|
|
389
|
+
ObjectContainer: react1031.FC<ObjectContainerProps>;
|
|
390
390
|
}, Component_7, Decorator_7>): JSX.Element;
|
|
391
391
|
displayName: string;
|
|
392
392
|
};
|
|
393
393
|
Void: {
|
|
394
394
|
<Decorator_8 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord", Component_8 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord">(props: _formily_react23.ISchemaTypeFieldProps<{
|
|
395
|
-
FormItem:
|
|
396
|
-
children?:
|
|
397
|
-
}>, "ref"> &
|
|
398
|
-
Hidden:
|
|
395
|
+
FormItem: react1031.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
396
|
+
children?: react1031.ReactNode | undefined;
|
|
397
|
+
}>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
398
|
+
Hidden: react1031.ForwardRefExoticComponent<Partial<{
|
|
399
399
|
children?: React.ReactNode;
|
|
400
400
|
value?: string;
|
|
401
|
-
}> &
|
|
402
|
-
Input:
|
|
403
|
-
Textarea:
|
|
404
|
-
NumberInput:
|
|
405
|
-
Checkbox:
|
|
406
|
-
Radio:
|
|
407
|
-
Select:
|
|
408
|
-
Switch:
|
|
409
|
-
DatePicker:
|
|
401
|
+
}> & react1031.RefAttributes<unknown>>;
|
|
402
|
+
Input: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLInputElement> & react1031.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
403
|
+
Textarea: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLTextAreaElement> & react1031.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
404
|
+
NumberInput: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLInputElement> & react1031.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
405
|
+
Checkbox: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox22.CheckboxProps & react1031.RefAttributes<HTMLButtonElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
406
|
+
Radio: react1031.FC;
|
|
407
|
+
Select: react1031.FC;
|
|
408
|
+
Switch: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch22.SwitchProps & react1031.RefAttributes<HTMLButtonElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
409
|
+
DatePicker: react1031.ForwardRefExoticComponent<Partial<{
|
|
410
410
|
value?: Date;
|
|
411
411
|
onChange?: (date: Date | undefined) => void;
|
|
412
412
|
placeholder?: string;
|
|
413
|
-
} & Omit<
|
|
413
|
+
} & Omit<_pixpilot_shadcn_ui324.DatePickerProps, "onSelect" | "selected" | "mode">> & react1031.RefAttributes<unknown>>;
|
|
414
414
|
Row: typeof Row;
|
|
415
415
|
Column: typeof Column;
|
|
416
416
|
FormGrid: typeof FormGrid;
|
|
417
|
-
Separator:
|
|
417
|
+
Separator: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator22.SeparatorProps & react1031.RefAttributes<HTMLDivElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
418
418
|
ArrayCards: ComposedArrayProps;
|
|
419
|
-
ArrayDialog:
|
|
420
|
-
ArrayCollapse:
|
|
419
|
+
ArrayDialog: react1031.FC<ArrayComponentProps>;
|
|
420
|
+
ArrayCollapse: react1031.FC<ArrayComponentProps & {
|
|
421
421
|
defaultActiveKey?: Array<string | number>;
|
|
422
422
|
mode?: "accordion" | "multiple";
|
|
423
423
|
}>;
|
|
424
|
-
ArrayPopover:
|
|
425
|
-
ObjectContainer:
|
|
424
|
+
ArrayPopover: react1031.FC<ArrayComponentProps>;
|
|
425
|
+
ObjectContainer: react1031.FC<ObjectContainerProps>;
|
|
426
426
|
}, Component_8, Decorator_8>): JSX.Element;
|
|
427
427
|
displayName: string;
|
|
428
428
|
};
|
|
429
429
|
Number: {
|
|
430
430
|
<Decorator_9 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord", Component_9 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord">(props: _formily_react23.ISchemaTypeFieldProps<{
|
|
431
|
-
FormItem:
|
|
432
|
-
children?:
|
|
433
|
-
}>, "ref"> &
|
|
434
|
-
Hidden:
|
|
431
|
+
FormItem: react1031.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
432
|
+
children?: react1031.ReactNode | undefined;
|
|
433
|
+
}>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
434
|
+
Hidden: react1031.ForwardRefExoticComponent<Partial<{
|
|
435
435
|
children?: React.ReactNode;
|
|
436
436
|
value?: string;
|
|
437
|
-
}> &
|
|
438
|
-
Input:
|
|
439
|
-
Textarea:
|
|
440
|
-
NumberInput:
|
|
441
|
-
Checkbox:
|
|
442
|
-
Radio:
|
|
443
|
-
Select:
|
|
444
|
-
Switch:
|
|
445
|
-
DatePicker:
|
|
437
|
+
}> & react1031.RefAttributes<unknown>>;
|
|
438
|
+
Input: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLInputElement> & react1031.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
439
|
+
Textarea: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLTextAreaElement> & react1031.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
440
|
+
NumberInput: react1031.ForwardRefExoticComponent<Omit<Partial<react1031.ClassAttributes<HTMLInputElement> & react1031.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
441
|
+
Checkbox: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox22.CheckboxProps & react1031.RefAttributes<HTMLButtonElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
442
|
+
Radio: react1031.FC;
|
|
443
|
+
Select: react1031.FC;
|
|
444
|
+
Switch: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch22.SwitchProps & react1031.RefAttributes<HTMLButtonElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
445
|
+
DatePicker: react1031.ForwardRefExoticComponent<Partial<{
|
|
446
446
|
value?: Date;
|
|
447
447
|
onChange?: (date: Date | undefined) => void;
|
|
448
448
|
placeholder?: string;
|
|
449
|
-
} & Omit<
|
|
449
|
+
} & Omit<_pixpilot_shadcn_ui324.DatePickerProps, "onSelect" | "selected" | "mode">> & react1031.RefAttributes<unknown>>;
|
|
450
450
|
Row: typeof Row;
|
|
451
451
|
Column: typeof Column;
|
|
452
452
|
FormGrid: typeof FormGrid;
|
|
453
|
-
Separator:
|
|
453
|
+
Separator: react1031.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator22.SeparatorProps & react1031.RefAttributes<HTMLDivElement>>, "ref"> & react1031.RefAttributes<unknown>>;
|
|
454
454
|
ArrayCards: ComposedArrayProps;
|
|
455
|
-
ArrayDialog:
|
|
456
|
-
ArrayCollapse:
|
|
455
|
+
ArrayDialog: react1031.FC<ArrayComponentProps>;
|
|
456
|
+
ArrayCollapse: react1031.FC<ArrayComponentProps & {
|
|
457
457
|
defaultActiveKey?: Array<string | number>;
|
|
458
458
|
mode?: "accordion" | "multiple";
|
|
459
459
|
}>;
|
|
460
|
-
ArrayPopover:
|
|
461
|
-
ObjectContainer:
|
|
460
|
+
ArrayPopover: react1031.FC<ArrayComponentProps>;
|
|
461
|
+
ObjectContainer: react1031.FC<ObjectContainerProps>;
|
|
462
462
|
}, Component_9, Decorator_9>): JSX.Element;
|
|
463
463
|
displayName: string;
|
|
464
464
|
};
|