@pixpilot/formily-shadcn 0.8.1 → 0.8.3
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/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/schema-field-extended.d.cts +9 -9
- package/dist/components/schema-field-extended.d.ts +263 -263
- package/dist/components/schema-field.d.cts +9 -9
- package/dist/components/schema-field.d.ts +220 -220
- package/dist/components/separator.d.ts +3 -3
- package/dist/components/slider.d.ts +2 -2
- package/dist/components/switch.d.ts +2 -2
- package/package.json +5 -5
|
@@ -6,7 +6,7 @@ import { FormItemProps } from "./form-item.js";
|
|
|
6
6
|
import { Row } from "./row.js";
|
|
7
7
|
import { ObjectContainerProps } from "./object-container.js";
|
|
8
8
|
import * as _formily_react0 from "@formily/react";
|
|
9
|
-
import * as
|
|
9
|
+
import * as react14 from "react";
|
|
10
10
|
import * as _pixpilot_shadcn_ui0 from "@pixpilot/shadcn-ui";
|
|
11
11
|
import { TagsInput } from "@pixpilot/shadcn-ui";
|
|
12
12
|
import * as _formily_core0 from "@formily/core";
|
|
@@ -17,21 +17,21 @@ import * as _radix_ui_react_separator0 from "@radix-ui/react-separator";
|
|
|
17
17
|
|
|
18
18
|
//#region src/components/schema-field.d.ts
|
|
19
19
|
declare const basicComponents: {
|
|
20
|
-
FormItem:
|
|
21
|
-
children?:
|
|
22
|
-
}>, "ref"> &
|
|
23
|
-
Hidden:
|
|
20
|
+
FormItem: react14.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
21
|
+
children?: react14.ReactNode | undefined;
|
|
22
|
+
}>, "ref"> & react14.RefAttributes<unknown>>;
|
|
23
|
+
Hidden: react14.ForwardRefExoticComponent<Partial<{
|
|
24
24
|
children?: React.ReactNode;
|
|
25
25
|
value?: string;
|
|
26
|
-
}> &
|
|
27
|
-
Input:
|
|
28
|
-
Textarea:
|
|
29
|
-
NumberInput:
|
|
30
|
-
Checkbox:
|
|
31
|
-
Radio:
|
|
32
|
-
Select:
|
|
33
|
-
Switch:
|
|
34
|
-
DatePicker:
|
|
26
|
+
}> & react14.RefAttributes<unknown>>;
|
|
27
|
+
Input: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
28
|
+
Textarea: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLTextAreaElement> & react14.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
29
|
+
NumberInput: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
30
|
+
Checkbox: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
31
|
+
Radio: react14.FC;
|
|
32
|
+
Select: react14.FC;
|
|
33
|
+
Switch: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
34
|
+
DatePicker: react14.ForwardRefExoticComponent<Partial<{
|
|
35
35
|
value?: Date;
|
|
36
36
|
onChange?: (date: Date | undefined) => void;
|
|
37
37
|
placeholder?: string;
|
|
@@ -41,43 +41,43 @@ declare const basicComponents: {
|
|
|
41
41
|
placeholder?: string;
|
|
42
42
|
} & Omit<react_day_picker0.DayPickerProps & {
|
|
43
43
|
buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
|
|
44
|
-
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> &
|
|
44
|
+
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react14.RefAttributes<unknown>>;
|
|
45
45
|
Row: typeof Row;
|
|
46
46
|
Column: typeof Column;
|
|
47
47
|
FormGrid: typeof FormGrid;
|
|
48
|
-
Combobox:
|
|
48
|
+
Combobox: react14.FC;
|
|
49
49
|
TagsInput: typeof TagsInput;
|
|
50
|
-
Separator:
|
|
51
|
-
Slider:
|
|
50
|
+
Separator: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react14.RefAttributes<HTMLDivElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
51
|
+
Slider: react14.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react14.RefAttributes<unknown>>;
|
|
52
52
|
ArrayCards: ComposedArrayProps;
|
|
53
|
-
ArrayDialog:
|
|
54
|
-
ArrayCollapse:
|
|
53
|
+
ArrayDialog: react14.FC<ArrayComponentProps>;
|
|
54
|
+
ArrayCollapse: react14.FC<ArrayComponentProps & {
|
|
55
55
|
defaultActiveKey?: Array<string | number>;
|
|
56
56
|
mode?: "accordion" | "multiple";
|
|
57
57
|
}>;
|
|
58
|
-
ArrayPopover:
|
|
59
|
-
ObjectContainer:
|
|
58
|
+
ArrayPopover: react14.FC<ArrayComponentProps>;
|
|
59
|
+
ObjectContainer: react14.FC<ObjectContainerProps>;
|
|
60
60
|
};
|
|
61
61
|
declare const SchemaField: {
|
|
62
62
|
<Decorator extends _formily_react0.JSXComponent, Component extends _formily_react0.JSXComponent>(props: _formily_react0.ISchemaFieldProps<Decorator, Component, _formily_core0.ObjectField<Decorator, Component>>): JSX.Element;
|
|
63
63
|
displayName: string;
|
|
64
64
|
Markup: {
|
|
65
|
-
<Decorator_1 extends "
|
|
66
|
-
FormItem:
|
|
67
|
-
children?:
|
|
68
|
-
}>, "ref"> &
|
|
69
|
-
Hidden:
|
|
65
|
+
<Decorator_1 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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 "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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_react0.ISchemaMarkupFieldProps<{
|
|
66
|
+
FormItem: react14.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
67
|
+
children?: react14.ReactNode | undefined;
|
|
68
|
+
}>, "ref"> & react14.RefAttributes<unknown>>;
|
|
69
|
+
Hidden: react14.ForwardRefExoticComponent<Partial<{
|
|
70
70
|
children?: React.ReactNode;
|
|
71
71
|
value?: string;
|
|
72
|
-
}> &
|
|
73
|
-
Input:
|
|
74
|
-
Textarea:
|
|
75
|
-
NumberInput:
|
|
76
|
-
Checkbox:
|
|
77
|
-
Radio:
|
|
78
|
-
Select:
|
|
79
|
-
Switch:
|
|
80
|
-
DatePicker:
|
|
72
|
+
}> & react14.RefAttributes<unknown>>;
|
|
73
|
+
Input: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
74
|
+
Textarea: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLTextAreaElement> & react14.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
75
|
+
NumberInput: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
76
|
+
Checkbox: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
77
|
+
Radio: react14.FC;
|
|
78
|
+
Select: react14.FC;
|
|
79
|
+
Switch: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
80
|
+
DatePicker: react14.ForwardRefExoticComponent<Partial<{
|
|
81
81
|
value?: Date;
|
|
82
82
|
onChange?: (date: Date | undefined) => void;
|
|
83
83
|
placeholder?: string;
|
|
@@ -87,42 +87,42 @@ declare const SchemaField: {
|
|
|
87
87
|
placeholder?: string;
|
|
88
88
|
} & Omit<react_day_picker0.DayPickerProps & {
|
|
89
89
|
buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
|
|
90
|
-
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> &
|
|
90
|
+
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react14.RefAttributes<unknown>>;
|
|
91
91
|
Row: typeof Row;
|
|
92
92
|
Column: typeof Column;
|
|
93
93
|
FormGrid: typeof FormGrid;
|
|
94
|
-
Combobox:
|
|
94
|
+
Combobox: react14.FC;
|
|
95
95
|
TagsInput: typeof TagsInput;
|
|
96
|
-
Separator:
|
|
97
|
-
Slider:
|
|
96
|
+
Separator: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react14.RefAttributes<HTMLDivElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
97
|
+
Slider: react14.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react14.RefAttributes<unknown>>;
|
|
98
98
|
ArrayCards: ComposedArrayProps;
|
|
99
|
-
ArrayDialog:
|
|
100
|
-
ArrayCollapse:
|
|
99
|
+
ArrayDialog: react14.FC<ArrayComponentProps>;
|
|
100
|
+
ArrayCollapse: react14.FC<ArrayComponentProps & {
|
|
101
101
|
defaultActiveKey?: Array<string | number>;
|
|
102
102
|
mode?: "accordion" | "multiple";
|
|
103
103
|
}>;
|
|
104
|
-
ArrayPopover:
|
|
105
|
-
ObjectContainer:
|
|
104
|
+
ArrayPopover: react14.FC<ArrayComponentProps>;
|
|
105
|
+
ObjectContainer: react14.FC<ObjectContainerProps>;
|
|
106
106
|
}, Component_1, Decorator_1>): JSX.Element;
|
|
107
107
|
displayName: string;
|
|
108
108
|
};
|
|
109
109
|
String: {
|
|
110
|
-
<Decorator_2 extends "
|
|
111
|
-
FormItem:
|
|
112
|
-
children?:
|
|
113
|
-
}>, "ref"> &
|
|
114
|
-
Hidden:
|
|
110
|
+
<Decorator_2 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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 "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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_react0.ISchemaTypeFieldProps<{
|
|
111
|
+
FormItem: react14.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
112
|
+
children?: react14.ReactNode | undefined;
|
|
113
|
+
}>, "ref"> & react14.RefAttributes<unknown>>;
|
|
114
|
+
Hidden: react14.ForwardRefExoticComponent<Partial<{
|
|
115
115
|
children?: React.ReactNode;
|
|
116
116
|
value?: string;
|
|
117
|
-
}> &
|
|
118
|
-
Input:
|
|
119
|
-
Textarea:
|
|
120
|
-
NumberInput:
|
|
121
|
-
Checkbox:
|
|
122
|
-
Radio:
|
|
123
|
-
Select:
|
|
124
|
-
Switch:
|
|
125
|
-
DatePicker:
|
|
117
|
+
}> & react14.RefAttributes<unknown>>;
|
|
118
|
+
Input: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
119
|
+
Textarea: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLTextAreaElement> & react14.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
120
|
+
NumberInput: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
121
|
+
Checkbox: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
122
|
+
Radio: react14.FC;
|
|
123
|
+
Select: react14.FC;
|
|
124
|
+
Switch: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
125
|
+
DatePicker: react14.ForwardRefExoticComponent<Partial<{
|
|
126
126
|
value?: Date;
|
|
127
127
|
onChange?: (date: Date | undefined) => void;
|
|
128
128
|
placeholder?: string;
|
|
@@ -132,42 +132,42 @@ declare const SchemaField: {
|
|
|
132
132
|
placeholder?: string;
|
|
133
133
|
} & Omit<react_day_picker0.DayPickerProps & {
|
|
134
134
|
buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
|
|
135
|
-
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> &
|
|
135
|
+
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react14.RefAttributes<unknown>>;
|
|
136
136
|
Row: typeof Row;
|
|
137
137
|
Column: typeof Column;
|
|
138
138
|
FormGrid: typeof FormGrid;
|
|
139
|
-
Combobox:
|
|
139
|
+
Combobox: react14.FC;
|
|
140
140
|
TagsInput: typeof TagsInput;
|
|
141
|
-
Separator:
|
|
142
|
-
Slider:
|
|
141
|
+
Separator: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react14.RefAttributes<HTMLDivElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
142
|
+
Slider: react14.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react14.RefAttributes<unknown>>;
|
|
143
143
|
ArrayCards: ComposedArrayProps;
|
|
144
|
-
ArrayDialog:
|
|
145
|
-
ArrayCollapse:
|
|
144
|
+
ArrayDialog: react14.FC<ArrayComponentProps>;
|
|
145
|
+
ArrayCollapse: react14.FC<ArrayComponentProps & {
|
|
146
146
|
defaultActiveKey?: Array<string | number>;
|
|
147
147
|
mode?: "accordion" | "multiple";
|
|
148
148
|
}>;
|
|
149
|
-
ArrayPopover:
|
|
150
|
-
ObjectContainer:
|
|
149
|
+
ArrayPopover: react14.FC<ArrayComponentProps>;
|
|
150
|
+
ObjectContainer: react14.FC<ObjectContainerProps>;
|
|
151
151
|
}, Component_2, Decorator_2>): JSX.Element;
|
|
152
152
|
displayName: string;
|
|
153
153
|
};
|
|
154
154
|
Object: {
|
|
155
|
-
<Decorator_3 extends "
|
|
156
|
-
FormItem:
|
|
157
|
-
children?:
|
|
158
|
-
}>, "ref"> &
|
|
159
|
-
Hidden:
|
|
155
|
+
<Decorator_3 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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 "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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_react0.ISchemaTypeFieldProps<{
|
|
156
|
+
FormItem: react14.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
157
|
+
children?: react14.ReactNode | undefined;
|
|
158
|
+
}>, "ref"> & react14.RefAttributes<unknown>>;
|
|
159
|
+
Hidden: react14.ForwardRefExoticComponent<Partial<{
|
|
160
160
|
children?: React.ReactNode;
|
|
161
161
|
value?: string;
|
|
162
|
-
}> &
|
|
163
|
-
Input:
|
|
164
|
-
Textarea:
|
|
165
|
-
NumberInput:
|
|
166
|
-
Checkbox:
|
|
167
|
-
Radio:
|
|
168
|
-
Select:
|
|
169
|
-
Switch:
|
|
170
|
-
DatePicker:
|
|
162
|
+
}> & react14.RefAttributes<unknown>>;
|
|
163
|
+
Input: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
164
|
+
Textarea: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLTextAreaElement> & react14.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
165
|
+
NumberInput: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
166
|
+
Checkbox: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
167
|
+
Radio: react14.FC;
|
|
168
|
+
Select: react14.FC;
|
|
169
|
+
Switch: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
170
|
+
DatePicker: react14.ForwardRefExoticComponent<Partial<{
|
|
171
171
|
value?: Date;
|
|
172
172
|
onChange?: (date: Date | undefined) => void;
|
|
173
173
|
placeholder?: string;
|
|
@@ -177,42 +177,42 @@ declare const SchemaField: {
|
|
|
177
177
|
placeholder?: string;
|
|
178
178
|
} & Omit<react_day_picker0.DayPickerProps & {
|
|
179
179
|
buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
|
|
180
|
-
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> &
|
|
180
|
+
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react14.RefAttributes<unknown>>;
|
|
181
181
|
Row: typeof Row;
|
|
182
182
|
Column: typeof Column;
|
|
183
183
|
FormGrid: typeof FormGrid;
|
|
184
|
-
Combobox:
|
|
184
|
+
Combobox: react14.FC;
|
|
185
185
|
TagsInput: typeof TagsInput;
|
|
186
|
-
Separator:
|
|
187
|
-
Slider:
|
|
186
|
+
Separator: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react14.RefAttributes<HTMLDivElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
187
|
+
Slider: react14.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react14.RefAttributes<unknown>>;
|
|
188
188
|
ArrayCards: ComposedArrayProps;
|
|
189
|
-
ArrayDialog:
|
|
190
|
-
ArrayCollapse:
|
|
189
|
+
ArrayDialog: react14.FC<ArrayComponentProps>;
|
|
190
|
+
ArrayCollapse: react14.FC<ArrayComponentProps & {
|
|
191
191
|
defaultActiveKey?: Array<string | number>;
|
|
192
192
|
mode?: "accordion" | "multiple";
|
|
193
193
|
}>;
|
|
194
|
-
ArrayPopover:
|
|
195
|
-
ObjectContainer:
|
|
194
|
+
ArrayPopover: react14.FC<ArrayComponentProps>;
|
|
195
|
+
ObjectContainer: react14.FC<ObjectContainerProps>;
|
|
196
196
|
}, Component_3, Decorator_3>): JSX.Element;
|
|
197
197
|
displayName: string;
|
|
198
198
|
};
|
|
199
199
|
Array: {
|
|
200
|
-
<Decorator_4 extends "
|
|
201
|
-
FormItem:
|
|
202
|
-
children?:
|
|
203
|
-
}>, "ref"> &
|
|
204
|
-
Hidden:
|
|
200
|
+
<Decorator_4 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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 "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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_react0.ISchemaTypeFieldProps<{
|
|
201
|
+
FormItem: react14.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
202
|
+
children?: react14.ReactNode | undefined;
|
|
203
|
+
}>, "ref"> & react14.RefAttributes<unknown>>;
|
|
204
|
+
Hidden: react14.ForwardRefExoticComponent<Partial<{
|
|
205
205
|
children?: React.ReactNode;
|
|
206
206
|
value?: string;
|
|
207
|
-
}> &
|
|
208
|
-
Input:
|
|
209
|
-
Textarea:
|
|
210
|
-
NumberInput:
|
|
211
|
-
Checkbox:
|
|
212
|
-
Radio:
|
|
213
|
-
Select:
|
|
214
|
-
Switch:
|
|
215
|
-
DatePicker:
|
|
207
|
+
}> & react14.RefAttributes<unknown>>;
|
|
208
|
+
Input: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
209
|
+
Textarea: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLTextAreaElement> & react14.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
210
|
+
NumberInput: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
211
|
+
Checkbox: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
212
|
+
Radio: react14.FC;
|
|
213
|
+
Select: react14.FC;
|
|
214
|
+
Switch: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
215
|
+
DatePicker: react14.ForwardRefExoticComponent<Partial<{
|
|
216
216
|
value?: Date;
|
|
217
217
|
onChange?: (date: Date | undefined) => void;
|
|
218
218
|
placeholder?: string;
|
|
@@ -222,42 +222,42 @@ declare const SchemaField: {
|
|
|
222
222
|
placeholder?: string;
|
|
223
223
|
} & Omit<react_day_picker0.DayPickerProps & {
|
|
224
224
|
buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
|
|
225
|
-
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> &
|
|
225
|
+
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react14.RefAttributes<unknown>>;
|
|
226
226
|
Row: typeof Row;
|
|
227
227
|
Column: typeof Column;
|
|
228
228
|
FormGrid: typeof FormGrid;
|
|
229
|
-
Combobox:
|
|
229
|
+
Combobox: react14.FC;
|
|
230
230
|
TagsInput: typeof TagsInput;
|
|
231
|
-
Separator:
|
|
232
|
-
Slider:
|
|
231
|
+
Separator: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react14.RefAttributes<HTMLDivElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
232
|
+
Slider: react14.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react14.RefAttributes<unknown>>;
|
|
233
233
|
ArrayCards: ComposedArrayProps;
|
|
234
|
-
ArrayDialog:
|
|
235
|
-
ArrayCollapse:
|
|
234
|
+
ArrayDialog: react14.FC<ArrayComponentProps>;
|
|
235
|
+
ArrayCollapse: react14.FC<ArrayComponentProps & {
|
|
236
236
|
defaultActiveKey?: Array<string | number>;
|
|
237
237
|
mode?: "accordion" | "multiple";
|
|
238
238
|
}>;
|
|
239
|
-
ArrayPopover:
|
|
240
|
-
ObjectContainer:
|
|
239
|
+
ArrayPopover: react14.FC<ArrayComponentProps>;
|
|
240
|
+
ObjectContainer: react14.FC<ObjectContainerProps>;
|
|
241
241
|
}, Component_4, Decorator_4>): JSX.Element;
|
|
242
242
|
displayName: string;
|
|
243
243
|
};
|
|
244
244
|
Boolean: {
|
|
245
|
-
<Decorator_5 extends "
|
|
246
|
-
FormItem:
|
|
247
|
-
children?:
|
|
248
|
-
}>, "ref"> &
|
|
249
|
-
Hidden:
|
|
245
|
+
<Decorator_5 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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 "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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_react0.ISchemaTypeFieldProps<{
|
|
246
|
+
FormItem: react14.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
247
|
+
children?: react14.ReactNode | undefined;
|
|
248
|
+
}>, "ref"> & react14.RefAttributes<unknown>>;
|
|
249
|
+
Hidden: react14.ForwardRefExoticComponent<Partial<{
|
|
250
250
|
children?: React.ReactNode;
|
|
251
251
|
value?: string;
|
|
252
|
-
}> &
|
|
253
|
-
Input:
|
|
254
|
-
Textarea:
|
|
255
|
-
NumberInput:
|
|
256
|
-
Checkbox:
|
|
257
|
-
Radio:
|
|
258
|
-
Select:
|
|
259
|
-
Switch:
|
|
260
|
-
DatePicker:
|
|
252
|
+
}> & react14.RefAttributes<unknown>>;
|
|
253
|
+
Input: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
254
|
+
Textarea: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLTextAreaElement> & react14.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
255
|
+
NumberInput: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
256
|
+
Checkbox: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
257
|
+
Radio: react14.FC;
|
|
258
|
+
Select: react14.FC;
|
|
259
|
+
Switch: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
260
|
+
DatePicker: react14.ForwardRefExoticComponent<Partial<{
|
|
261
261
|
value?: Date;
|
|
262
262
|
onChange?: (date: Date | undefined) => void;
|
|
263
263
|
placeholder?: string;
|
|
@@ -267,42 +267,42 @@ declare const SchemaField: {
|
|
|
267
267
|
placeholder?: string;
|
|
268
268
|
} & Omit<react_day_picker0.DayPickerProps & {
|
|
269
269
|
buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
|
|
270
|
-
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> &
|
|
270
|
+
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react14.RefAttributes<unknown>>;
|
|
271
271
|
Row: typeof Row;
|
|
272
272
|
Column: typeof Column;
|
|
273
273
|
FormGrid: typeof FormGrid;
|
|
274
|
-
Combobox:
|
|
274
|
+
Combobox: react14.FC;
|
|
275
275
|
TagsInput: typeof TagsInput;
|
|
276
|
-
Separator:
|
|
277
|
-
Slider:
|
|
276
|
+
Separator: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react14.RefAttributes<HTMLDivElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
277
|
+
Slider: react14.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react14.RefAttributes<unknown>>;
|
|
278
278
|
ArrayCards: ComposedArrayProps;
|
|
279
|
-
ArrayDialog:
|
|
280
|
-
ArrayCollapse:
|
|
279
|
+
ArrayDialog: react14.FC<ArrayComponentProps>;
|
|
280
|
+
ArrayCollapse: react14.FC<ArrayComponentProps & {
|
|
281
281
|
defaultActiveKey?: Array<string | number>;
|
|
282
282
|
mode?: "accordion" | "multiple";
|
|
283
283
|
}>;
|
|
284
|
-
ArrayPopover:
|
|
285
|
-
ObjectContainer:
|
|
284
|
+
ArrayPopover: react14.FC<ArrayComponentProps>;
|
|
285
|
+
ObjectContainer: react14.FC<ObjectContainerProps>;
|
|
286
286
|
}, Component_5, Decorator_5>): JSX.Element;
|
|
287
287
|
displayName: string;
|
|
288
288
|
};
|
|
289
289
|
Date: {
|
|
290
|
-
<Decorator_6 extends "
|
|
291
|
-
FormItem:
|
|
292
|
-
children?:
|
|
293
|
-
}>, "ref"> &
|
|
294
|
-
Hidden:
|
|
290
|
+
<Decorator_6 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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 "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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_react0.ISchemaTypeFieldProps<{
|
|
291
|
+
FormItem: react14.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
292
|
+
children?: react14.ReactNode | undefined;
|
|
293
|
+
}>, "ref"> & react14.RefAttributes<unknown>>;
|
|
294
|
+
Hidden: react14.ForwardRefExoticComponent<Partial<{
|
|
295
295
|
children?: React.ReactNode;
|
|
296
296
|
value?: string;
|
|
297
|
-
}> &
|
|
298
|
-
Input:
|
|
299
|
-
Textarea:
|
|
300
|
-
NumberInput:
|
|
301
|
-
Checkbox:
|
|
302
|
-
Radio:
|
|
303
|
-
Select:
|
|
304
|
-
Switch:
|
|
305
|
-
DatePicker:
|
|
297
|
+
}> & react14.RefAttributes<unknown>>;
|
|
298
|
+
Input: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
299
|
+
Textarea: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLTextAreaElement> & react14.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
300
|
+
NumberInput: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
301
|
+
Checkbox: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
302
|
+
Radio: react14.FC;
|
|
303
|
+
Select: react14.FC;
|
|
304
|
+
Switch: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
305
|
+
DatePicker: react14.ForwardRefExoticComponent<Partial<{
|
|
306
306
|
value?: Date;
|
|
307
307
|
onChange?: (date: Date | undefined) => void;
|
|
308
308
|
placeholder?: string;
|
|
@@ -312,42 +312,42 @@ declare const SchemaField: {
|
|
|
312
312
|
placeholder?: string;
|
|
313
313
|
} & Omit<react_day_picker0.DayPickerProps & {
|
|
314
314
|
buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
|
|
315
|
-
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> &
|
|
315
|
+
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react14.RefAttributes<unknown>>;
|
|
316
316
|
Row: typeof Row;
|
|
317
317
|
Column: typeof Column;
|
|
318
318
|
FormGrid: typeof FormGrid;
|
|
319
|
-
Combobox:
|
|
319
|
+
Combobox: react14.FC;
|
|
320
320
|
TagsInput: typeof TagsInput;
|
|
321
|
-
Separator:
|
|
322
|
-
Slider:
|
|
321
|
+
Separator: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react14.RefAttributes<HTMLDivElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
322
|
+
Slider: react14.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react14.RefAttributes<unknown>>;
|
|
323
323
|
ArrayCards: ComposedArrayProps;
|
|
324
|
-
ArrayDialog:
|
|
325
|
-
ArrayCollapse:
|
|
324
|
+
ArrayDialog: react14.FC<ArrayComponentProps>;
|
|
325
|
+
ArrayCollapse: react14.FC<ArrayComponentProps & {
|
|
326
326
|
defaultActiveKey?: Array<string | number>;
|
|
327
327
|
mode?: "accordion" | "multiple";
|
|
328
328
|
}>;
|
|
329
|
-
ArrayPopover:
|
|
330
|
-
ObjectContainer:
|
|
329
|
+
ArrayPopover: react14.FC<ArrayComponentProps>;
|
|
330
|
+
ObjectContainer: react14.FC<ObjectContainerProps>;
|
|
331
331
|
}, Component_6, Decorator_6>): JSX.Element;
|
|
332
332
|
displayName: string;
|
|
333
333
|
};
|
|
334
334
|
DateTime: {
|
|
335
|
-
<Decorator_7 extends "
|
|
336
|
-
FormItem:
|
|
337
|
-
children?:
|
|
338
|
-
}>, "ref"> &
|
|
339
|
-
Hidden:
|
|
335
|
+
<Decorator_7 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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 "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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_react0.ISchemaTypeFieldProps<{
|
|
336
|
+
FormItem: react14.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
337
|
+
children?: react14.ReactNode | undefined;
|
|
338
|
+
}>, "ref"> & react14.RefAttributes<unknown>>;
|
|
339
|
+
Hidden: react14.ForwardRefExoticComponent<Partial<{
|
|
340
340
|
children?: React.ReactNode;
|
|
341
341
|
value?: string;
|
|
342
|
-
}> &
|
|
343
|
-
Input:
|
|
344
|
-
Textarea:
|
|
345
|
-
NumberInput:
|
|
346
|
-
Checkbox:
|
|
347
|
-
Radio:
|
|
348
|
-
Select:
|
|
349
|
-
Switch:
|
|
350
|
-
DatePicker:
|
|
342
|
+
}> & react14.RefAttributes<unknown>>;
|
|
343
|
+
Input: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
344
|
+
Textarea: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLTextAreaElement> & react14.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
345
|
+
NumberInput: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
346
|
+
Checkbox: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
347
|
+
Radio: react14.FC;
|
|
348
|
+
Select: react14.FC;
|
|
349
|
+
Switch: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
350
|
+
DatePicker: react14.ForwardRefExoticComponent<Partial<{
|
|
351
351
|
value?: Date;
|
|
352
352
|
onChange?: (date: Date | undefined) => void;
|
|
353
353
|
placeholder?: string;
|
|
@@ -357,42 +357,42 @@ declare const SchemaField: {
|
|
|
357
357
|
placeholder?: string;
|
|
358
358
|
} & Omit<react_day_picker0.DayPickerProps & {
|
|
359
359
|
buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
|
|
360
|
-
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> &
|
|
360
|
+
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react14.RefAttributes<unknown>>;
|
|
361
361
|
Row: typeof Row;
|
|
362
362
|
Column: typeof Column;
|
|
363
363
|
FormGrid: typeof FormGrid;
|
|
364
|
-
Combobox:
|
|
364
|
+
Combobox: react14.FC;
|
|
365
365
|
TagsInput: typeof TagsInput;
|
|
366
|
-
Separator:
|
|
367
|
-
Slider:
|
|
366
|
+
Separator: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react14.RefAttributes<HTMLDivElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
367
|
+
Slider: react14.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react14.RefAttributes<unknown>>;
|
|
368
368
|
ArrayCards: ComposedArrayProps;
|
|
369
|
-
ArrayDialog:
|
|
370
|
-
ArrayCollapse:
|
|
369
|
+
ArrayDialog: react14.FC<ArrayComponentProps>;
|
|
370
|
+
ArrayCollapse: react14.FC<ArrayComponentProps & {
|
|
371
371
|
defaultActiveKey?: Array<string | number>;
|
|
372
372
|
mode?: "accordion" | "multiple";
|
|
373
373
|
}>;
|
|
374
|
-
ArrayPopover:
|
|
375
|
-
ObjectContainer:
|
|
374
|
+
ArrayPopover: react14.FC<ArrayComponentProps>;
|
|
375
|
+
ObjectContainer: react14.FC<ObjectContainerProps>;
|
|
376
376
|
}, Component_7, Decorator_7>): JSX.Element;
|
|
377
377
|
displayName: string;
|
|
378
378
|
};
|
|
379
379
|
Void: {
|
|
380
|
-
<Decorator_8 extends "
|
|
381
|
-
FormItem:
|
|
382
|
-
children?:
|
|
383
|
-
}>, "ref"> &
|
|
384
|
-
Hidden:
|
|
380
|
+
<Decorator_8 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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 "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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_react0.ISchemaTypeFieldProps<{
|
|
381
|
+
FormItem: react14.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
382
|
+
children?: react14.ReactNode | undefined;
|
|
383
|
+
}>, "ref"> & react14.RefAttributes<unknown>>;
|
|
384
|
+
Hidden: react14.ForwardRefExoticComponent<Partial<{
|
|
385
385
|
children?: React.ReactNode;
|
|
386
386
|
value?: string;
|
|
387
|
-
}> &
|
|
388
|
-
Input:
|
|
389
|
-
Textarea:
|
|
390
|
-
NumberInput:
|
|
391
|
-
Checkbox:
|
|
392
|
-
Radio:
|
|
393
|
-
Select:
|
|
394
|
-
Switch:
|
|
395
|
-
DatePicker:
|
|
387
|
+
}> & react14.RefAttributes<unknown>>;
|
|
388
|
+
Input: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
389
|
+
Textarea: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLTextAreaElement> & react14.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
390
|
+
NumberInput: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
391
|
+
Checkbox: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
392
|
+
Radio: react14.FC;
|
|
393
|
+
Select: react14.FC;
|
|
394
|
+
Switch: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
395
|
+
DatePicker: react14.ForwardRefExoticComponent<Partial<{
|
|
396
396
|
value?: Date;
|
|
397
397
|
onChange?: (date: Date | undefined) => void;
|
|
398
398
|
placeholder?: string;
|
|
@@ -402,42 +402,42 @@ declare const SchemaField: {
|
|
|
402
402
|
placeholder?: string;
|
|
403
403
|
} & Omit<react_day_picker0.DayPickerProps & {
|
|
404
404
|
buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
|
|
405
|
-
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> &
|
|
405
|
+
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react14.RefAttributes<unknown>>;
|
|
406
406
|
Row: typeof Row;
|
|
407
407
|
Column: typeof Column;
|
|
408
408
|
FormGrid: typeof FormGrid;
|
|
409
|
-
Combobox:
|
|
409
|
+
Combobox: react14.FC;
|
|
410
410
|
TagsInput: typeof TagsInput;
|
|
411
|
-
Separator:
|
|
412
|
-
Slider:
|
|
411
|
+
Separator: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react14.RefAttributes<HTMLDivElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
412
|
+
Slider: react14.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react14.RefAttributes<unknown>>;
|
|
413
413
|
ArrayCards: ComposedArrayProps;
|
|
414
|
-
ArrayDialog:
|
|
415
|
-
ArrayCollapse:
|
|
414
|
+
ArrayDialog: react14.FC<ArrayComponentProps>;
|
|
415
|
+
ArrayCollapse: react14.FC<ArrayComponentProps & {
|
|
416
416
|
defaultActiveKey?: Array<string | number>;
|
|
417
417
|
mode?: "accordion" | "multiple";
|
|
418
418
|
}>;
|
|
419
|
-
ArrayPopover:
|
|
420
|
-
ObjectContainer:
|
|
419
|
+
ArrayPopover: react14.FC<ArrayComponentProps>;
|
|
420
|
+
ObjectContainer: react14.FC<ObjectContainerProps>;
|
|
421
421
|
}, Component_8, Decorator_8>): JSX.Element;
|
|
422
422
|
displayName: string;
|
|
423
423
|
};
|
|
424
424
|
Number: {
|
|
425
|
-
<Decorator_9 extends "
|
|
426
|
-
FormItem:
|
|
427
|
-
children?:
|
|
428
|
-
}>, "ref"> &
|
|
429
|
-
Hidden:
|
|
425
|
+
<Decorator_9 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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 "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$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_react0.ISchemaTypeFieldProps<{
|
|
426
|
+
FormItem: react14.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
427
|
+
children?: react14.ReactNode | undefined;
|
|
428
|
+
}>, "ref"> & react14.RefAttributes<unknown>>;
|
|
429
|
+
Hidden: react14.ForwardRefExoticComponent<Partial<{
|
|
430
430
|
children?: React.ReactNode;
|
|
431
431
|
value?: string;
|
|
432
|
-
}> &
|
|
433
|
-
Input:
|
|
434
|
-
Textarea:
|
|
435
|
-
NumberInput:
|
|
436
|
-
Checkbox:
|
|
437
|
-
Radio:
|
|
438
|
-
Select:
|
|
439
|
-
Switch:
|
|
440
|
-
DatePicker:
|
|
432
|
+
}> & react14.RefAttributes<unknown>>;
|
|
433
|
+
Input: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
434
|
+
Textarea: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLTextAreaElement> & react14.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
435
|
+
NumberInput: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
436
|
+
Checkbox: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
437
|
+
Radio: react14.FC;
|
|
438
|
+
Select: react14.FC;
|
|
439
|
+
Switch: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
440
|
+
DatePicker: react14.ForwardRefExoticComponent<Partial<{
|
|
441
441
|
value?: Date;
|
|
442
442
|
onChange?: (date: Date | undefined) => void;
|
|
443
443
|
placeholder?: string;
|
|
@@ -447,22 +447,22 @@ declare const SchemaField: {
|
|
|
447
447
|
placeholder?: string;
|
|
448
448
|
} & Omit<react_day_picker0.DayPickerProps & {
|
|
449
449
|
buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
|
|
450
|
-
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> &
|
|
450
|
+
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react14.RefAttributes<unknown>>;
|
|
451
451
|
Row: typeof Row;
|
|
452
452
|
Column: typeof Column;
|
|
453
453
|
FormGrid: typeof FormGrid;
|
|
454
|
-
Combobox:
|
|
454
|
+
Combobox: react14.FC;
|
|
455
455
|
TagsInput: typeof TagsInput;
|
|
456
|
-
Separator:
|
|
457
|
-
Slider:
|
|
456
|
+
Separator: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react14.RefAttributes<HTMLDivElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
457
|
+
Slider: react14.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react14.RefAttributes<unknown>>;
|
|
458
458
|
ArrayCards: ComposedArrayProps;
|
|
459
|
-
ArrayDialog:
|
|
460
|
-
ArrayCollapse:
|
|
459
|
+
ArrayDialog: react14.FC<ArrayComponentProps>;
|
|
460
|
+
ArrayCollapse: react14.FC<ArrayComponentProps & {
|
|
461
461
|
defaultActiveKey?: Array<string | number>;
|
|
462
462
|
mode?: "accordion" | "multiple";
|
|
463
463
|
}>;
|
|
464
|
-
ArrayPopover:
|
|
465
|
-
ObjectContainer:
|
|
464
|
+
ArrayPopover: react14.FC<ArrayComponentProps>;
|
|
465
|
+
ObjectContainer: react14.FC<ObjectContainerProps>;
|
|
466
466
|
}, Component_9, Decorator_9>): JSX.Element;
|
|
467
467
|
displayName: string;
|
|
468
468
|
};
|