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