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