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