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