@pixpilot/formily-shadcn 0.8.1 → 0.8.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/checkbox.d.ts +2 -2
- package/dist/components/date-picker.d.ts +3 -3
- package/dist/components/icon-picker.d.ts +3 -3
- package/dist/components/input.d.ts +2 -2
- package/dist/components/number-input.d.ts +2 -2
- package/dist/components/schema-field-extended.d.cts +9 -9
- package/dist/components/schema-field-extended.d.ts +263 -263
- package/dist/components/schema-field.d.cts +9 -9
- package/dist/components/schema-field.d.ts +220 -220
- package/dist/components/separator.d.ts +3 -3
- package/dist/components/slider.d.ts +2 -2
- package/dist/components/switch.d.ts +2 -2
- package/package.json +5 -5
|
@@ -6,13 +6,13 @@ import { FormItemProps } from "./form-item.js";
|
|
|
6
6
|
import { Row } from "./row.js";
|
|
7
7
|
import { ObjectContainerProps } from "./object-container.js";
|
|
8
8
|
import * as _formily_react11 from "@formily/react";
|
|
9
|
-
import * as
|
|
9
|
+
import * as react391 from "react";
|
|
10
10
|
import * as _pixpilot_shadcn_ui9 from "@pixpilot/shadcn-ui";
|
|
11
11
|
import * as _formily_core0 from "@formily/core";
|
|
12
12
|
import * as _radix_ui_react_checkbox10 from "@radix-ui/react-checkbox";
|
|
13
13
|
import * as react_day_picker10 from "react-day-picker";
|
|
14
14
|
import * as _radix_ui_react_switch9 from "@radix-ui/react-switch";
|
|
15
|
-
import * as
|
|
15
|
+
import * as _radix_ui_react_separator10 from "@radix-ui/react-separator";
|
|
16
16
|
|
|
17
17
|
//#region src/components/schema-field-extended.d.ts
|
|
18
18
|
/**
|
|
@@ -23,22 +23,22 @@ declare const SchemaFieldExtended: {
|
|
|
23
23
|
<Decorator extends _formily_react11.JSXComponent, Component extends _formily_react11.JSXComponent>(props: _formily_react11.ISchemaFieldProps<Decorator, Component, _formily_core0.ObjectField<Decorator, Component>>): JSX.Element;
|
|
24
24
|
displayName: string;
|
|
25
25
|
Markup: {
|
|
26
|
-
<Decorator_1 extends "
|
|
27
|
-
FormItem:
|
|
28
|
-
children?:
|
|
29
|
-
}>, "ref"> &
|
|
30
|
-
Hidden:
|
|
26
|
+
<Decorator_1 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_1 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react11.ISchemaMarkupFieldProps<{
|
|
27
|
+
FormItem: react391.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
28
|
+
children?: react391.ReactNode | undefined;
|
|
29
|
+
}>, "ref"> & react391.RefAttributes<unknown>>;
|
|
30
|
+
Hidden: react391.ForwardRefExoticComponent<Partial<{
|
|
31
31
|
children?: React.ReactNode;
|
|
32
32
|
value?: string;
|
|
33
|
-
}> &
|
|
34
|
-
Input:
|
|
35
|
-
Textarea:
|
|
36
|
-
NumberInput:
|
|
37
|
-
Checkbox:
|
|
38
|
-
Radio:
|
|
39
|
-
Select:
|
|
40
|
-
Switch:
|
|
41
|
-
DatePicker:
|
|
33
|
+
}> & react391.RefAttributes<unknown>>;
|
|
34
|
+
Input: react391.ForwardRefExoticComponent<Omit<Partial<react391.ClassAttributes<HTMLInputElement> & react391.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
35
|
+
Textarea: react391.ForwardRefExoticComponent<Omit<Partial<react391.ClassAttributes<HTMLTextAreaElement> & react391.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
36
|
+
NumberInput: react391.ForwardRefExoticComponent<Omit<Partial<react391.ClassAttributes<HTMLInputElement> & react391.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
37
|
+
Checkbox: react391.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react391.RefAttributes<HTMLButtonElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
38
|
+
Radio: react391.FC;
|
|
39
|
+
Select: react391.FC;
|
|
40
|
+
Switch: react391.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch9.SwitchProps & react391.RefAttributes<HTMLButtonElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
41
|
+
DatePicker: react391.ForwardRefExoticComponent<Partial<{
|
|
42
42
|
value?: Date;
|
|
43
43
|
onChange?: (date: Date | undefined) => void;
|
|
44
44
|
placeholder?: string;
|
|
@@ -48,23 +48,23 @@ declare const SchemaFieldExtended: {
|
|
|
48
48
|
placeholder?: string;
|
|
49
49
|
} & Omit<react_day_picker10.DayPickerProps & {
|
|
50
50
|
buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
|
|
51
|
-
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> &
|
|
51
|
+
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react391.RefAttributes<unknown>>;
|
|
52
52
|
Row: typeof Row;
|
|
53
53
|
Column: typeof Column;
|
|
54
54
|
FormGrid: typeof FormGrid;
|
|
55
|
-
Combobox:
|
|
55
|
+
Combobox: react391.FC;
|
|
56
56
|
TagsInput: typeof _pixpilot_shadcn_ui9.TagsInput;
|
|
57
|
-
Separator:
|
|
58
|
-
Slider:
|
|
57
|
+
Separator: react391.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react391.RefAttributes<HTMLDivElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
58
|
+
Slider: react391.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui9.SliderProps>, "ref"> & react391.RefAttributes<unknown>>;
|
|
59
59
|
ArrayCards: ComposedArrayProps;
|
|
60
|
-
ArrayDialog:
|
|
61
|
-
ArrayCollapse:
|
|
60
|
+
ArrayDialog: react391.FC<ArrayComponentProps>;
|
|
61
|
+
ArrayCollapse: react391.FC<ArrayComponentProps & {
|
|
62
62
|
defaultActiveKey?: Array<string | number>;
|
|
63
63
|
mode?: "accordion" | "multiple";
|
|
64
64
|
}>;
|
|
65
|
-
ArrayPopover:
|
|
66
|
-
ObjectContainer:
|
|
67
|
-
FileUploadInline:
|
|
65
|
+
ArrayPopover: react391.FC<ArrayComponentProps>;
|
|
66
|
+
ObjectContainer: react391.FC<ObjectContainerProps>;
|
|
67
|
+
FileUploadInline: react391.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
|
|
68
68
|
multiple: true;
|
|
69
69
|
value?: _pixpilot_shadcn_ui9.FileMetadata[];
|
|
70
70
|
onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
|
|
@@ -72,11 +72,11 @@ declare const SchemaFieldExtended: {
|
|
|
72
72
|
multiple?: false;
|
|
73
73
|
value?: _pixpilot_shadcn_ui9.FileMetadata | null;
|
|
74
74
|
onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
|
|
75
|
-
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) &
|
|
76
|
-
IconPicker:
|
|
75
|
+
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react391.RefAttributes<unknown>>;
|
|
76
|
+
IconPicker: react391.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui9.IconPickerProps, "providers"> & {
|
|
77
77
|
providers?: _pixpilot_shadcn_ui9.IconProviderProps[];
|
|
78
|
-
}> &
|
|
79
|
-
FileUpload:
|
|
78
|
+
}> & react391.RefAttributes<unknown>>;
|
|
79
|
+
FileUpload: react391.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
|
|
80
80
|
multiple: true;
|
|
81
81
|
value?: _pixpilot_shadcn_ui9.FileMetadata[];
|
|
82
82
|
onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
|
|
@@ -84,28 +84,28 @@ declare const SchemaFieldExtended: {
|
|
|
84
84
|
multiple?: false;
|
|
85
85
|
value?: _pixpilot_shadcn_ui9.FileMetadata | null;
|
|
86
86
|
onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
|
|
87
|
-
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) &
|
|
88
|
-
RichTextEditor:
|
|
87
|
+
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react391.RefAttributes<unknown>>;
|
|
88
|
+
RichTextEditor: react391.FC;
|
|
89
89
|
}, Component_1, Decorator_1>): JSX.Element;
|
|
90
90
|
displayName: string;
|
|
91
91
|
};
|
|
92
92
|
String: {
|
|
93
|
-
<Decorator_2 extends "
|
|
94
|
-
FormItem:
|
|
95
|
-
children?:
|
|
96
|
-
}>, "ref"> &
|
|
97
|
-
Hidden:
|
|
93
|
+
<Decorator_2 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_2 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
94
|
+
FormItem: react391.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
95
|
+
children?: react391.ReactNode | undefined;
|
|
96
|
+
}>, "ref"> & react391.RefAttributes<unknown>>;
|
|
97
|
+
Hidden: react391.ForwardRefExoticComponent<Partial<{
|
|
98
98
|
children?: React.ReactNode;
|
|
99
99
|
value?: string;
|
|
100
|
-
}> &
|
|
101
|
-
Input:
|
|
102
|
-
Textarea:
|
|
103
|
-
NumberInput:
|
|
104
|
-
Checkbox:
|
|
105
|
-
Radio:
|
|
106
|
-
Select:
|
|
107
|
-
Switch:
|
|
108
|
-
DatePicker:
|
|
100
|
+
}> & react391.RefAttributes<unknown>>;
|
|
101
|
+
Input: react391.ForwardRefExoticComponent<Omit<Partial<react391.ClassAttributes<HTMLInputElement> & react391.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
102
|
+
Textarea: react391.ForwardRefExoticComponent<Omit<Partial<react391.ClassAttributes<HTMLTextAreaElement> & react391.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
103
|
+
NumberInput: react391.ForwardRefExoticComponent<Omit<Partial<react391.ClassAttributes<HTMLInputElement> & react391.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
104
|
+
Checkbox: react391.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react391.RefAttributes<HTMLButtonElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
105
|
+
Radio: react391.FC;
|
|
106
|
+
Select: react391.FC;
|
|
107
|
+
Switch: react391.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch9.SwitchProps & react391.RefAttributes<HTMLButtonElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
108
|
+
DatePicker: react391.ForwardRefExoticComponent<Partial<{
|
|
109
109
|
value?: Date;
|
|
110
110
|
onChange?: (date: Date | undefined) => void;
|
|
111
111
|
placeholder?: string;
|
|
@@ -115,23 +115,23 @@ declare const SchemaFieldExtended: {
|
|
|
115
115
|
placeholder?: string;
|
|
116
116
|
} & Omit<react_day_picker10.DayPickerProps & {
|
|
117
117
|
buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
|
|
118
|
-
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> &
|
|
118
|
+
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react391.RefAttributes<unknown>>;
|
|
119
119
|
Row: typeof Row;
|
|
120
120
|
Column: typeof Column;
|
|
121
121
|
FormGrid: typeof FormGrid;
|
|
122
|
-
Combobox:
|
|
122
|
+
Combobox: react391.FC;
|
|
123
123
|
TagsInput: typeof _pixpilot_shadcn_ui9.TagsInput;
|
|
124
|
-
Separator:
|
|
125
|
-
Slider:
|
|
124
|
+
Separator: react391.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react391.RefAttributes<HTMLDivElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
125
|
+
Slider: react391.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui9.SliderProps>, "ref"> & react391.RefAttributes<unknown>>;
|
|
126
126
|
ArrayCards: ComposedArrayProps;
|
|
127
|
-
ArrayDialog:
|
|
128
|
-
ArrayCollapse:
|
|
127
|
+
ArrayDialog: react391.FC<ArrayComponentProps>;
|
|
128
|
+
ArrayCollapse: react391.FC<ArrayComponentProps & {
|
|
129
129
|
defaultActiveKey?: Array<string | number>;
|
|
130
130
|
mode?: "accordion" | "multiple";
|
|
131
131
|
}>;
|
|
132
|
-
ArrayPopover:
|
|
133
|
-
ObjectContainer:
|
|
134
|
-
FileUploadInline:
|
|
132
|
+
ArrayPopover: react391.FC<ArrayComponentProps>;
|
|
133
|
+
ObjectContainer: react391.FC<ObjectContainerProps>;
|
|
134
|
+
FileUploadInline: react391.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
|
|
135
135
|
multiple: true;
|
|
136
136
|
value?: _pixpilot_shadcn_ui9.FileMetadata[];
|
|
137
137
|
onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
|
|
@@ -139,11 +139,11 @@ declare const SchemaFieldExtended: {
|
|
|
139
139
|
multiple?: false;
|
|
140
140
|
value?: _pixpilot_shadcn_ui9.FileMetadata | null;
|
|
141
141
|
onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
|
|
142
|
-
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) &
|
|
143
|
-
IconPicker:
|
|
142
|
+
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react391.RefAttributes<unknown>>;
|
|
143
|
+
IconPicker: react391.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui9.IconPickerProps, "providers"> & {
|
|
144
144
|
providers?: _pixpilot_shadcn_ui9.IconProviderProps[];
|
|
145
|
-
}> &
|
|
146
|
-
FileUpload:
|
|
145
|
+
}> & react391.RefAttributes<unknown>>;
|
|
146
|
+
FileUpload: react391.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
|
|
147
147
|
multiple: true;
|
|
148
148
|
value?: _pixpilot_shadcn_ui9.FileMetadata[];
|
|
149
149
|
onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
|
|
@@ -151,28 +151,28 @@ declare const SchemaFieldExtended: {
|
|
|
151
151
|
multiple?: false;
|
|
152
152
|
value?: _pixpilot_shadcn_ui9.FileMetadata | null;
|
|
153
153
|
onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
|
|
154
|
-
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) &
|
|
155
|
-
RichTextEditor:
|
|
154
|
+
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react391.RefAttributes<unknown>>;
|
|
155
|
+
RichTextEditor: react391.FC;
|
|
156
156
|
}, Component_2, Decorator_2>): JSX.Element;
|
|
157
157
|
displayName: string;
|
|
158
158
|
};
|
|
159
159
|
Object: {
|
|
160
|
-
<Decorator_3 extends "
|
|
161
|
-
FormItem:
|
|
162
|
-
children?:
|
|
163
|
-
}>, "ref"> &
|
|
164
|
-
Hidden:
|
|
160
|
+
<Decorator_3 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_3 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
161
|
+
FormItem: react391.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
162
|
+
children?: react391.ReactNode | undefined;
|
|
163
|
+
}>, "ref"> & react391.RefAttributes<unknown>>;
|
|
164
|
+
Hidden: react391.ForwardRefExoticComponent<Partial<{
|
|
165
165
|
children?: React.ReactNode;
|
|
166
166
|
value?: string;
|
|
167
|
-
}> &
|
|
168
|
-
Input:
|
|
169
|
-
Textarea:
|
|
170
|
-
NumberInput:
|
|
171
|
-
Checkbox:
|
|
172
|
-
Radio:
|
|
173
|
-
Select:
|
|
174
|
-
Switch:
|
|
175
|
-
DatePicker:
|
|
167
|
+
}> & react391.RefAttributes<unknown>>;
|
|
168
|
+
Input: react391.ForwardRefExoticComponent<Omit<Partial<react391.ClassAttributes<HTMLInputElement> & react391.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
169
|
+
Textarea: react391.ForwardRefExoticComponent<Omit<Partial<react391.ClassAttributes<HTMLTextAreaElement> & react391.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
170
|
+
NumberInput: react391.ForwardRefExoticComponent<Omit<Partial<react391.ClassAttributes<HTMLInputElement> & react391.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
171
|
+
Checkbox: react391.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react391.RefAttributes<HTMLButtonElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
172
|
+
Radio: react391.FC;
|
|
173
|
+
Select: react391.FC;
|
|
174
|
+
Switch: react391.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch9.SwitchProps & react391.RefAttributes<HTMLButtonElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
175
|
+
DatePicker: react391.ForwardRefExoticComponent<Partial<{
|
|
176
176
|
value?: Date;
|
|
177
177
|
onChange?: (date: Date | undefined) => void;
|
|
178
178
|
placeholder?: string;
|
|
@@ -182,23 +182,23 @@ declare const SchemaFieldExtended: {
|
|
|
182
182
|
placeholder?: string;
|
|
183
183
|
} & Omit<react_day_picker10.DayPickerProps & {
|
|
184
184
|
buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
|
|
185
|
-
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> &
|
|
185
|
+
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react391.RefAttributes<unknown>>;
|
|
186
186
|
Row: typeof Row;
|
|
187
187
|
Column: typeof Column;
|
|
188
188
|
FormGrid: typeof FormGrid;
|
|
189
|
-
Combobox:
|
|
189
|
+
Combobox: react391.FC;
|
|
190
190
|
TagsInput: typeof _pixpilot_shadcn_ui9.TagsInput;
|
|
191
|
-
Separator:
|
|
192
|
-
Slider:
|
|
191
|
+
Separator: react391.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react391.RefAttributes<HTMLDivElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
192
|
+
Slider: react391.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui9.SliderProps>, "ref"> & react391.RefAttributes<unknown>>;
|
|
193
193
|
ArrayCards: ComposedArrayProps;
|
|
194
|
-
ArrayDialog:
|
|
195
|
-
ArrayCollapse:
|
|
194
|
+
ArrayDialog: react391.FC<ArrayComponentProps>;
|
|
195
|
+
ArrayCollapse: react391.FC<ArrayComponentProps & {
|
|
196
196
|
defaultActiveKey?: Array<string | number>;
|
|
197
197
|
mode?: "accordion" | "multiple";
|
|
198
198
|
}>;
|
|
199
|
-
ArrayPopover:
|
|
200
|
-
ObjectContainer:
|
|
201
|
-
FileUploadInline:
|
|
199
|
+
ArrayPopover: react391.FC<ArrayComponentProps>;
|
|
200
|
+
ObjectContainer: react391.FC<ObjectContainerProps>;
|
|
201
|
+
FileUploadInline: react391.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
|
|
202
202
|
multiple: true;
|
|
203
203
|
value?: _pixpilot_shadcn_ui9.FileMetadata[];
|
|
204
204
|
onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
|
|
@@ -206,11 +206,11 @@ declare const SchemaFieldExtended: {
|
|
|
206
206
|
multiple?: false;
|
|
207
207
|
value?: _pixpilot_shadcn_ui9.FileMetadata | null;
|
|
208
208
|
onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
|
|
209
|
-
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) &
|
|
210
|
-
IconPicker:
|
|
209
|
+
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react391.RefAttributes<unknown>>;
|
|
210
|
+
IconPicker: react391.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui9.IconPickerProps, "providers"> & {
|
|
211
211
|
providers?: _pixpilot_shadcn_ui9.IconProviderProps[];
|
|
212
|
-
}> &
|
|
213
|
-
FileUpload:
|
|
212
|
+
}> & react391.RefAttributes<unknown>>;
|
|
213
|
+
FileUpload: react391.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
|
|
214
214
|
multiple: true;
|
|
215
215
|
value?: _pixpilot_shadcn_ui9.FileMetadata[];
|
|
216
216
|
onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
|
|
@@ -218,28 +218,28 @@ declare const SchemaFieldExtended: {
|
|
|
218
218
|
multiple?: false;
|
|
219
219
|
value?: _pixpilot_shadcn_ui9.FileMetadata | null;
|
|
220
220
|
onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
|
|
221
|
-
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) &
|
|
222
|
-
RichTextEditor:
|
|
221
|
+
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react391.RefAttributes<unknown>>;
|
|
222
|
+
RichTextEditor: react391.FC;
|
|
223
223
|
}, Component_3, Decorator_3>): JSX.Element;
|
|
224
224
|
displayName: string;
|
|
225
225
|
};
|
|
226
226
|
Array: {
|
|
227
|
-
<Decorator_4 extends "
|
|
228
|
-
FormItem:
|
|
229
|
-
children?:
|
|
230
|
-
}>, "ref"> &
|
|
231
|
-
Hidden:
|
|
227
|
+
<Decorator_4 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_4 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
228
|
+
FormItem: react391.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
229
|
+
children?: react391.ReactNode | undefined;
|
|
230
|
+
}>, "ref"> & react391.RefAttributes<unknown>>;
|
|
231
|
+
Hidden: react391.ForwardRefExoticComponent<Partial<{
|
|
232
232
|
children?: React.ReactNode;
|
|
233
233
|
value?: string;
|
|
234
|
-
}> &
|
|
235
|
-
Input:
|
|
236
|
-
Textarea:
|
|
237
|
-
NumberInput:
|
|
238
|
-
Checkbox:
|
|
239
|
-
Radio:
|
|
240
|
-
Select:
|
|
241
|
-
Switch:
|
|
242
|
-
DatePicker:
|
|
234
|
+
}> & react391.RefAttributes<unknown>>;
|
|
235
|
+
Input: react391.ForwardRefExoticComponent<Omit<Partial<react391.ClassAttributes<HTMLInputElement> & react391.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
236
|
+
Textarea: react391.ForwardRefExoticComponent<Omit<Partial<react391.ClassAttributes<HTMLTextAreaElement> & react391.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
237
|
+
NumberInput: react391.ForwardRefExoticComponent<Omit<Partial<react391.ClassAttributes<HTMLInputElement> & react391.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
238
|
+
Checkbox: react391.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react391.RefAttributes<HTMLButtonElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
239
|
+
Radio: react391.FC;
|
|
240
|
+
Select: react391.FC;
|
|
241
|
+
Switch: react391.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch9.SwitchProps & react391.RefAttributes<HTMLButtonElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
242
|
+
DatePicker: react391.ForwardRefExoticComponent<Partial<{
|
|
243
243
|
value?: Date;
|
|
244
244
|
onChange?: (date: Date | undefined) => void;
|
|
245
245
|
placeholder?: string;
|
|
@@ -249,23 +249,23 @@ declare const SchemaFieldExtended: {
|
|
|
249
249
|
placeholder?: string;
|
|
250
250
|
} & Omit<react_day_picker10.DayPickerProps & {
|
|
251
251
|
buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
|
|
252
|
-
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> &
|
|
252
|
+
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react391.RefAttributes<unknown>>;
|
|
253
253
|
Row: typeof Row;
|
|
254
254
|
Column: typeof Column;
|
|
255
255
|
FormGrid: typeof FormGrid;
|
|
256
|
-
Combobox:
|
|
256
|
+
Combobox: react391.FC;
|
|
257
257
|
TagsInput: typeof _pixpilot_shadcn_ui9.TagsInput;
|
|
258
|
-
Separator:
|
|
259
|
-
Slider:
|
|
258
|
+
Separator: react391.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react391.RefAttributes<HTMLDivElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
259
|
+
Slider: react391.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui9.SliderProps>, "ref"> & react391.RefAttributes<unknown>>;
|
|
260
260
|
ArrayCards: ComposedArrayProps;
|
|
261
|
-
ArrayDialog:
|
|
262
|
-
ArrayCollapse:
|
|
261
|
+
ArrayDialog: react391.FC<ArrayComponentProps>;
|
|
262
|
+
ArrayCollapse: react391.FC<ArrayComponentProps & {
|
|
263
263
|
defaultActiveKey?: Array<string | number>;
|
|
264
264
|
mode?: "accordion" | "multiple";
|
|
265
265
|
}>;
|
|
266
|
-
ArrayPopover:
|
|
267
|
-
ObjectContainer:
|
|
268
|
-
FileUploadInline:
|
|
266
|
+
ArrayPopover: react391.FC<ArrayComponentProps>;
|
|
267
|
+
ObjectContainer: react391.FC<ObjectContainerProps>;
|
|
268
|
+
FileUploadInline: react391.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
|
|
269
269
|
multiple: true;
|
|
270
270
|
value?: _pixpilot_shadcn_ui9.FileMetadata[];
|
|
271
271
|
onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
|
|
@@ -273,11 +273,11 @@ declare const SchemaFieldExtended: {
|
|
|
273
273
|
multiple?: false;
|
|
274
274
|
value?: _pixpilot_shadcn_ui9.FileMetadata | null;
|
|
275
275
|
onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
|
|
276
|
-
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) &
|
|
277
|
-
IconPicker:
|
|
276
|
+
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react391.RefAttributes<unknown>>;
|
|
277
|
+
IconPicker: react391.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui9.IconPickerProps, "providers"> & {
|
|
278
278
|
providers?: _pixpilot_shadcn_ui9.IconProviderProps[];
|
|
279
|
-
}> &
|
|
280
|
-
FileUpload:
|
|
279
|
+
}> & react391.RefAttributes<unknown>>;
|
|
280
|
+
FileUpload: react391.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
|
|
281
281
|
multiple: true;
|
|
282
282
|
value?: _pixpilot_shadcn_ui9.FileMetadata[];
|
|
283
283
|
onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
|
|
@@ -285,28 +285,28 @@ declare const SchemaFieldExtended: {
|
|
|
285
285
|
multiple?: false;
|
|
286
286
|
value?: _pixpilot_shadcn_ui9.FileMetadata | null;
|
|
287
287
|
onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
|
|
288
|
-
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) &
|
|
289
|
-
RichTextEditor:
|
|
288
|
+
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react391.RefAttributes<unknown>>;
|
|
289
|
+
RichTextEditor: react391.FC;
|
|
290
290
|
}, Component_4, Decorator_4>): JSX.Element;
|
|
291
291
|
displayName: string;
|
|
292
292
|
};
|
|
293
293
|
Boolean: {
|
|
294
|
-
<Decorator_5 extends "
|
|
295
|
-
FormItem:
|
|
296
|
-
children?:
|
|
297
|
-
}>, "ref"> &
|
|
298
|
-
Hidden:
|
|
294
|
+
<Decorator_5 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_5 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
295
|
+
FormItem: react391.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
296
|
+
children?: react391.ReactNode | undefined;
|
|
297
|
+
}>, "ref"> & react391.RefAttributes<unknown>>;
|
|
298
|
+
Hidden: react391.ForwardRefExoticComponent<Partial<{
|
|
299
299
|
children?: React.ReactNode;
|
|
300
300
|
value?: string;
|
|
301
|
-
}> &
|
|
302
|
-
Input:
|
|
303
|
-
Textarea:
|
|
304
|
-
NumberInput:
|
|
305
|
-
Checkbox:
|
|
306
|
-
Radio:
|
|
307
|
-
Select:
|
|
308
|
-
Switch:
|
|
309
|
-
DatePicker:
|
|
301
|
+
}> & react391.RefAttributes<unknown>>;
|
|
302
|
+
Input: react391.ForwardRefExoticComponent<Omit<Partial<react391.ClassAttributes<HTMLInputElement> & react391.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
303
|
+
Textarea: react391.ForwardRefExoticComponent<Omit<Partial<react391.ClassAttributes<HTMLTextAreaElement> & react391.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
304
|
+
NumberInput: react391.ForwardRefExoticComponent<Omit<Partial<react391.ClassAttributes<HTMLInputElement> & react391.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
305
|
+
Checkbox: react391.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react391.RefAttributes<HTMLButtonElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
306
|
+
Radio: react391.FC;
|
|
307
|
+
Select: react391.FC;
|
|
308
|
+
Switch: react391.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch9.SwitchProps & react391.RefAttributes<HTMLButtonElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
309
|
+
DatePicker: react391.ForwardRefExoticComponent<Partial<{
|
|
310
310
|
value?: Date;
|
|
311
311
|
onChange?: (date: Date | undefined) => void;
|
|
312
312
|
placeholder?: string;
|
|
@@ -316,23 +316,23 @@ declare const SchemaFieldExtended: {
|
|
|
316
316
|
placeholder?: string;
|
|
317
317
|
} & Omit<react_day_picker10.DayPickerProps & {
|
|
318
318
|
buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
|
|
319
|
-
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> &
|
|
319
|
+
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react391.RefAttributes<unknown>>;
|
|
320
320
|
Row: typeof Row;
|
|
321
321
|
Column: typeof Column;
|
|
322
322
|
FormGrid: typeof FormGrid;
|
|
323
|
-
Combobox:
|
|
323
|
+
Combobox: react391.FC;
|
|
324
324
|
TagsInput: typeof _pixpilot_shadcn_ui9.TagsInput;
|
|
325
|
-
Separator:
|
|
326
|
-
Slider:
|
|
325
|
+
Separator: react391.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react391.RefAttributes<HTMLDivElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
326
|
+
Slider: react391.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui9.SliderProps>, "ref"> & react391.RefAttributes<unknown>>;
|
|
327
327
|
ArrayCards: ComposedArrayProps;
|
|
328
|
-
ArrayDialog:
|
|
329
|
-
ArrayCollapse:
|
|
328
|
+
ArrayDialog: react391.FC<ArrayComponentProps>;
|
|
329
|
+
ArrayCollapse: react391.FC<ArrayComponentProps & {
|
|
330
330
|
defaultActiveKey?: Array<string | number>;
|
|
331
331
|
mode?: "accordion" | "multiple";
|
|
332
332
|
}>;
|
|
333
|
-
ArrayPopover:
|
|
334
|
-
ObjectContainer:
|
|
335
|
-
FileUploadInline:
|
|
333
|
+
ArrayPopover: react391.FC<ArrayComponentProps>;
|
|
334
|
+
ObjectContainer: react391.FC<ObjectContainerProps>;
|
|
335
|
+
FileUploadInline: react391.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
|
|
336
336
|
multiple: true;
|
|
337
337
|
value?: _pixpilot_shadcn_ui9.FileMetadata[];
|
|
338
338
|
onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
|
|
@@ -340,11 +340,11 @@ declare const SchemaFieldExtended: {
|
|
|
340
340
|
multiple?: false;
|
|
341
341
|
value?: _pixpilot_shadcn_ui9.FileMetadata | null;
|
|
342
342
|
onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
|
|
343
|
-
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) &
|
|
344
|
-
IconPicker:
|
|
343
|
+
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react391.RefAttributes<unknown>>;
|
|
344
|
+
IconPicker: react391.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui9.IconPickerProps, "providers"> & {
|
|
345
345
|
providers?: _pixpilot_shadcn_ui9.IconProviderProps[];
|
|
346
|
-
}> &
|
|
347
|
-
FileUpload:
|
|
346
|
+
}> & react391.RefAttributes<unknown>>;
|
|
347
|
+
FileUpload: react391.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
|
|
348
348
|
multiple: true;
|
|
349
349
|
value?: _pixpilot_shadcn_ui9.FileMetadata[];
|
|
350
350
|
onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
|
|
@@ -352,28 +352,28 @@ declare const SchemaFieldExtended: {
|
|
|
352
352
|
multiple?: false;
|
|
353
353
|
value?: _pixpilot_shadcn_ui9.FileMetadata | null;
|
|
354
354
|
onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
|
|
355
|
-
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) &
|
|
356
|
-
RichTextEditor:
|
|
355
|
+
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react391.RefAttributes<unknown>>;
|
|
356
|
+
RichTextEditor: react391.FC;
|
|
357
357
|
}, Component_5, Decorator_5>): JSX.Element;
|
|
358
358
|
displayName: string;
|
|
359
359
|
};
|
|
360
360
|
Date: {
|
|
361
|
-
<Decorator_6 extends "
|
|
362
|
-
FormItem:
|
|
363
|
-
children?:
|
|
364
|
-
}>, "ref"> &
|
|
365
|
-
Hidden:
|
|
361
|
+
<Decorator_6 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_6 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
362
|
+
FormItem: react391.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
363
|
+
children?: react391.ReactNode | undefined;
|
|
364
|
+
}>, "ref"> & react391.RefAttributes<unknown>>;
|
|
365
|
+
Hidden: react391.ForwardRefExoticComponent<Partial<{
|
|
366
366
|
children?: React.ReactNode;
|
|
367
367
|
value?: string;
|
|
368
|
-
}> &
|
|
369
|
-
Input:
|
|
370
|
-
Textarea:
|
|
371
|
-
NumberInput:
|
|
372
|
-
Checkbox:
|
|
373
|
-
Radio:
|
|
374
|
-
Select:
|
|
375
|
-
Switch:
|
|
376
|
-
DatePicker:
|
|
368
|
+
}> & react391.RefAttributes<unknown>>;
|
|
369
|
+
Input: react391.ForwardRefExoticComponent<Omit<Partial<react391.ClassAttributes<HTMLInputElement> & react391.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
370
|
+
Textarea: react391.ForwardRefExoticComponent<Omit<Partial<react391.ClassAttributes<HTMLTextAreaElement> & react391.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
371
|
+
NumberInput: react391.ForwardRefExoticComponent<Omit<Partial<react391.ClassAttributes<HTMLInputElement> & react391.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
372
|
+
Checkbox: react391.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react391.RefAttributes<HTMLButtonElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
373
|
+
Radio: react391.FC;
|
|
374
|
+
Select: react391.FC;
|
|
375
|
+
Switch: react391.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch9.SwitchProps & react391.RefAttributes<HTMLButtonElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
376
|
+
DatePicker: react391.ForwardRefExoticComponent<Partial<{
|
|
377
377
|
value?: Date;
|
|
378
378
|
onChange?: (date: Date | undefined) => void;
|
|
379
379
|
placeholder?: string;
|
|
@@ -383,23 +383,23 @@ declare const SchemaFieldExtended: {
|
|
|
383
383
|
placeholder?: string;
|
|
384
384
|
} & Omit<react_day_picker10.DayPickerProps & {
|
|
385
385
|
buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
|
|
386
|
-
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> &
|
|
386
|
+
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react391.RefAttributes<unknown>>;
|
|
387
387
|
Row: typeof Row;
|
|
388
388
|
Column: typeof Column;
|
|
389
389
|
FormGrid: typeof FormGrid;
|
|
390
|
-
Combobox:
|
|
390
|
+
Combobox: react391.FC;
|
|
391
391
|
TagsInput: typeof _pixpilot_shadcn_ui9.TagsInput;
|
|
392
|
-
Separator:
|
|
393
|
-
Slider:
|
|
392
|
+
Separator: react391.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react391.RefAttributes<HTMLDivElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
393
|
+
Slider: react391.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui9.SliderProps>, "ref"> & react391.RefAttributes<unknown>>;
|
|
394
394
|
ArrayCards: ComposedArrayProps;
|
|
395
|
-
ArrayDialog:
|
|
396
|
-
ArrayCollapse:
|
|
395
|
+
ArrayDialog: react391.FC<ArrayComponentProps>;
|
|
396
|
+
ArrayCollapse: react391.FC<ArrayComponentProps & {
|
|
397
397
|
defaultActiveKey?: Array<string | number>;
|
|
398
398
|
mode?: "accordion" | "multiple";
|
|
399
399
|
}>;
|
|
400
|
-
ArrayPopover:
|
|
401
|
-
ObjectContainer:
|
|
402
|
-
FileUploadInline:
|
|
400
|
+
ArrayPopover: react391.FC<ArrayComponentProps>;
|
|
401
|
+
ObjectContainer: react391.FC<ObjectContainerProps>;
|
|
402
|
+
FileUploadInline: react391.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
|
|
403
403
|
multiple: true;
|
|
404
404
|
value?: _pixpilot_shadcn_ui9.FileMetadata[];
|
|
405
405
|
onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
|
|
@@ -407,11 +407,11 @@ declare const SchemaFieldExtended: {
|
|
|
407
407
|
multiple?: false;
|
|
408
408
|
value?: _pixpilot_shadcn_ui9.FileMetadata | null;
|
|
409
409
|
onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
|
|
410
|
-
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) &
|
|
411
|
-
IconPicker:
|
|
410
|
+
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react391.RefAttributes<unknown>>;
|
|
411
|
+
IconPicker: react391.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui9.IconPickerProps, "providers"> & {
|
|
412
412
|
providers?: _pixpilot_shadcn_ui9.IconProviderProps[];
|
|
413
|
-
}> &
|
|
414
|
-
FileUpload:
|
|
413
|
+
}> & react391.RefAttributes<unknown>>;
|
|
414
|
+
FileUpload: react391.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
|
|
415
415
|
multiple: true;
|
|
416
416
|
value?: _pixpilot_shadcn_ui9.FileMetadata[];
|
|
417
417
|
onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
|
|
@@ -419,28 +419,28 @@ declare const SchemaFieldExtended: {
|
|
|
419
419
|
multiple?: false;
|
|
420
420
|
value?: _pixpilot_shadcn_ui9.FileMetadata | null;
|
|
421
421
|
onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
|
|
422
|
-
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) &
|
|
423
|
-
RichTextEditor:
|
|
422
|
+
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react391.RefAttributes<unknown>>;
|
|
423
|
+
RichTextEditor: react391.FC;
|
|
424
424
|
}, Component_6, Decorator_6>): JSX.Element;
|
|
425
425
|
displayName: string;
|
|
426
426
|
};
|
|
427
427
|
DateTime: {
|
|
428
|
-
<Decorator_7 extends "
|
|
429
|
-
FormItem:
|
|
430
|
-
children?:
|
|
431
|
-
}>, "ref"> &
|
|
432
|
-
Hidden:
|
|
428
|
+
<Decorator_7 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_7 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
429
|
+
FormItem: react391.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
430
|
+
children?: react391.ReactNode | undefined;
|
|
431
|
+
}>, "ref"> & react391.RefAttributes<unknown>>;
|
|
432
|
+
Hidden: react391.ForwardRefExoticComponent<Partial<{
|
|
433
433
|
children?: React.ReactNode;
|
|
434
434
|
value?: string;
|
|
435
|
-
}> &
|
|
436
|
-
Input:
|
|
437
|
-
Textarea:
|
|
438
|
-
NumberInput:
|
|
439
|
-
Checkbox:
|
|
440
|
-
Radio:
|
|
441
|
-
Select:
|
|
442
|
-
Switch:
|
|
443
|
-
DatePicker:
|
|
435
|
+
}> & react391.RefAttributes<unknown>>;
|
|
436
|
+
Input: react391.ForwardRefExoticComponent<Omit<Partial<react391.ClassAttributes<HTMLInputElement> & react391.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
437
|
+
Textarea: react391.ForwardRefExoticComponent<Omit<Partial<react391.ClassAttributes<HTMLTextAreaElement> & react391.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
438
|
+
NumberInput: react391.ForwardRefExoticComponent<Omit<Partial<react391.ClassAttributes<HTMLInputElement> & react391.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
439
|
+
Checkbox: react391.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react391.RefAttributes<HTMLButtonElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
440
|
+
Radio: react391.FC;
|
|
441
|
+
Select: react391.FC;
|
|
442
|
+
Switch: react391.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch9.SwitchProps & react391.RefAttributes<HTMLButtonElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
443
|
+
DatePicker: react391.ForwardRefExoticComponent<Partial<{
|
|
444
444
|
value?: Date;
|
|
445
445
|
onChange?: (date: Date | undefined) => void;
|
|
446
446
|
placeholder?: string;
|
|
@@ -450,23 +450,23 @@ declare const SchemaFieldExtended: {
|
|
|
450
450
|
placeholder?: string;
|
|
451
451
|
} & Omit<react_day_picker10.DayPickerProps & {
|
|
452
452
|
buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
|
|
453
|
-
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> &
|
|
453
|
+
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react391.RefAttributes<unknown>>;
|
|
454
454
|
Row: typeof Row;
|
|
455
455
|
Column: typeof Column;
|
|
456
456
|
FormGrid: typeof FormGrid;
|
|
457
|
-
Combobox:
|
|
457
|
+
Combobox: react391.FC;
|
|
458
458
|
TagsInput: typeof _pixpilot_shadcn_ui9.TagsInput;
|
|
459
|
-
Separator:
|
|
460
|
-
Slider:
|
|
459
|
+
Separator: react391.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react391.RefAttributes<HTMLDivElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
460
|
+
Slider: react391.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui9.SliderProps>, "ref"> & react391.RefAttributes<unknown>>;
|
|
461
461
|
ArrayCards: ComposedArrayProps;
|
|
462
|
-
ArrayDialog:
|
|
463
|
-
ArrayCollapse:
|
|
462
|
+
ArrayDialog: react391.FC<ArrayComponentProps>;
|
|
463
|
+
ArrayCollapse: react391.FC<ArrayComponentProps & {
|
|
464
464
|
defaultActiveKey?: Array<string | number>;
|
|
465
465
|
mode?: "accordion" | "multiple";
|
|
466
466
|
}>;
|
|
467
|
-
ArrayPopover:
|
|
468
|
-
ObjectContainer:
|
|
469
|
-
FileUploadInline:
|
|
467
|
+
ArrayPopover: react391.FC<ArrayComponentProps>;
|
|
468
|
+
ObjectContainer: react391.FC<ObjectContainerProps>;
|
|
469
|
+
FileUploadInline: react391.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
|
|
470
470
|
multiple: true;
|
|
471
471
|
value?: _pixpilot_shadcn_ui9.FileMetadata[];
|
|
472
472
|
onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
|
|
@@ -474,11 +474,11 @@ declare const SchemaFieldExtended: {
|
|
|
474
474
|
multiple?: false;
|
|
475
475
|
value?: _pixpilot_shadcn_ui9.FileMetadata | null;
|
|
476
476
|
onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
|
|
477
|
-
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) &
|
|
478
|
-
IconPicker:
|
|
477
|
+
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react391.RefAttributes<unknown>>;
|
|
478
|
+
IconPicker: react391.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui9.IconPickerProps, "providers"> & {
|
|
479
479
|
providers?: _pixpilot_shadcn_ui9.IconProviderProps[];
|
|
480
|
-
}> &
|
|
481
|
-
FileUpload:
|
|
480
|
+
}> & react391.RefAttributes<unknown>>;
|
|
481
|
+
FileUpload: react391.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
|
|
482
482
|
multiple: true;
|
|
483
483
|
value?: _pixpilot_shadcn_ui9.FileMetadata[];
|
|
484
484
|
onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
|
|
@@ -486,28 +486,28 @@ declare const SchemaFieldExtended: {
|
|
|
486
486
|
multiple?: false;
|
|
487
487
|
value?: _pixpilot_shadcn_ui9.FileMetadata | null;
|
|
488
488
|
onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
|
|
489
|
-
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) &
|
|
490
|
-
RichTextEditor:
|
|
489
|
+
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react391.RefAttributes<unknown>>;
|
|
490
|
+
RichTextEditor: react391.FC;
|
|
491
491
|
}, Component_7, Decorator_7>): JSX.Element;
|
|
492
492
|
displayName: string;
|
|
493
493
|
};
|
|
494
494
|
Void: {
|
|
495
|
-
<Decorator_8 extends "
|
|
496
|
-
FormItem:
|
|
497
|
-
children?:
|
|
498
|
-
}>, "ref"> &
|
|
499
|
-
Hidden:
|
|
495
|
+
<Decorator_8 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_8 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
496
|
+
FormItem: react391.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
497
|
+
children?: react391.ReactNode | undefined;
|
|
498
|
+
}>, "ref"> & react391.RefAttributes<unknown>>;
|
|
499
|
+
Hidden: react391.ForwardRefExoticComponent<Partial<{
|
|
500
500
|
children?: React.ReactNode;
|
|
501
501
|
value?: string;
|
|
502
|
-
}> &
|
|
503
|
-
Input:
|
|
504
|
-
Textarea:
|
|
505
|
-
NumberInput:
|
|
506
|
-
Checkbox:
|
|
507
|
-
Radio:
|
|
508
|
-
Select:
|
|
509
|
-
Switch:
|
|
510
|
-
DatePicker:
|
|
502
|
+
}> & react391.RefAttributes<unknown>>;
|
|
503
|
+
Input: react391.ForwardRefExoticComponent<Omit<Partial<react391.ClassAttributes<HTMLInputElement> & react391.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
504
|
+
Textarea: react391.ForwardRefExoticComponent<Omit<Partial<react391.ClassAttributes<HTMLTextAreaElement> & react391.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
505
|
+
NumberInput: react391.ForwardRefExoticComponent<Omit<Partial<react391.ClassAttributes<HTMLInputElement> & react391.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
506
|
+
Checkbox: react391.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react391.RefAttributes<HTMLButtonElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
507
|
+
Radio: react391.FC;
|
|
508
|
+
Select: react391.FC;
|
|
509
|
+
Switch: react391.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch9.SwitchProps & react391.RefAttributes<HTMLButtonElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
510
|
+
DatePicker: react391.ForwardRefExoticComponent<Partial<{
|
|
511
511
|
value?: Date;
|
|
512
512
|
onChange?: (date: Date | undefined) => void;
|
|
513
513
|
placeholder?: string;
|
|
@@ -517,23 +517,23 @@ declare const SchemaFieldExtended: {
|
|
|
517
517
|
placeholder?: string;
|
|
518
518
|
} & Omit<react_day_picker10.DayPickerProps & {
|
|
519
519
|
buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
|
|
520
|
-
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> &
|
|
520
|
+
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react391.RefAttributes<unknown>>;
|
|
521
521
|
Row: typeof Row;
|
|
522
522
|
Column: typeof Column;
|
|
523
523
|
FormGrid: typeof FormGrid;
|
|
524
|
-
Combobox:
|
|
524
|
+
Combobox: react391.FC;
|
|
525
525
|
TagsInput: typeof _pixpilot_shadcn_ui9.TagsInput;
|
|
526
|
-
Separator:
|
|
527
|
-
Slider:
|
|
526
|
+
Separator: react391.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react391.RefAttributes<HTMLDivElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
527
|
+
Slider: react391.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui9.SliderProps>, "ref"> & react391.RefAttributes<unknown>>;
|
|
528
528
|
ArrayCards: ComposedArrayProps;
|
|
529
|
-
ArrayDialog:
|
|
530
|
-
ArrayCollapse:
|
|
529
|
+
ArrayDialog: react391.FC<ArrayComponentProps>;
|
|
530
|
+
ArrayCollapse: react391.FC<ArrayComponentProps & {
|
|
531
531
|
defaultActiveKey?: Array<string | number>;
|
|
532
532
|
mode?: "accordion" | "multiple";
|
|
533
533
|
}>;
|
|
534
|
-
ArrayPopover:
|
|
535
|
-
ObjectContainer:
|
|
536
|
-
FileUploadInline:
|
|
534
|
+
ArrayPopover: react391.FC<ArrayComponentProps>;
|
|
535
|
+
ObjectContainer: react391.FC<ObjectContainerProps>;
|
|
536
|
+
FileUploadInline: react391.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
|
|
537
537
|
multiple: true;
|
|
538
538
|
value?: _pixpilot_shadcn_ui9.FileMetadata[];
|
|
539
539
|
onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
|
|
@@ -541,11 +541,11 @@ declare const SchemaFieldExtended: {
|
|
|
541
541
|
multiple?: false;
|
|
542
542
|
value?: _pixpilot_shadcn_ui9.FileMetadata | null;
|
|
543
543
|
onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
|
|
544
|
-
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) &
|
|
545
|
-
IconPicker:
|
|
544
|
+
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react391.RefAttributes<unknown>>;
|
|
545
|
+
IconPicker: react391.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui9.IconPickerProps, "providers"> & {
|
|
546
546
|
providers?: _pixpilot_shadcn_ui9.IconProviderProps[];
|
|
547
|
-
}> &
|
|
548
|
-
FileUpload:
|
|
547
|
+
}> & react391.RefAttributes<unknown>>;
|
|
548
|
+
FileUpload: react391.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
|
|
549
549
|
multiple: true;
|
|
550
550
|
value?: _pixpilot_shadcn_ui9.FileMetadata[];
|
|
551
551
|
onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
|
|
@@ -553,28 +553,28 @@ declare const SchemaFieldExtended: {
|
|
|
553
553
|
multiple?: false;
|
|
554
554
|
value?: _pixpilot_shadcn_ui9.FileMetadata | null;
|
|
555
555
|
onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
|
|
556
|
-
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) &
|
|
557
|
-
RichTextEditor:
|
|
556
|
+
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react391.RefAttributes<unknown>>;
|
|
557
|
+
RichTextEditor: react391.FC;
|
|
558
558
|
}, Component_8, Decorator_8>): JSX.Element;
|
|
559
559
|
displayName: string;
|
|
560
560
|
};
|
|
561
561
|
Number: {
|
|
562
|
-
<Decorator_9 extends "
|
|
563
|
-
FormItem:
|
|
564
|
-
children?:
|
|
565
|
-
}>, "ref"> &
|
|
566
|
-
Hidden:
|
|
562
|
+
<Decorator_9 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_9 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Radio" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Combobox" | "TagsInput" | "Separator" | "Slider" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
563
|
+
FormItem: react391.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
564
|
+
children?: react391.ReactNode | undefined;
|
|
565
|
+
}>, "ref"> & react391.RefAttributes<unknown>>;
|
|
566
|
+
Hidden: react391.ForwardRefExoticComponent<Partial<{
|
|
567
567
|
children?: React.ReactNode;
|
|
568
568
|
value?: string;
|
|
569
|
-
}> &
|
|
570
|
-
Input:
|
|
571
|
-
Textarea:
|
|
572
|
-
NumberInput:
|
|
573
|
-
Checkbox:
|
|
574
|
-
Radio:
|
|
575
|
-
Select:
|
|
576
|
-
Switch:
|
|
577
|
-
DatePicker:
|
|
569
|
+
}> & react391.RefAttributes<unknown>>;
|
|
570
|
+
Input: react391.ForwardRefExoticComponent<Omit<Partial<react391.ClassAttributes<HTMLInputElement> & react391.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
571
|
+
Textarea: react391.ForwardRefExoticComponent<Omit<Partial<react391.ClassAttributes<HTMLTextAreaElement> & react391.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
572
|
+
NumberInput: react391.ForwardRefExoticComponent<Omit<Partial<react391.ClassAttributes<HTMLInputElement> & react391.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
573
|
+
Checkbox: react391.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react391.RefAttributes<HTMLButtonElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
574
|
+
Radio: react391.FC;
|
|
575
|
+
Select: react391.FC;
|
|
576
|
+
Switch: react391.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch9.SwitchProps & react391.RefAttributes<HTMLButtonElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
577
|
+
DatePicker: react391.ForwardRefExoticComponent<Partial<{
|
|
578
578
|
value?: Date;
|
|
579
579
|
onChange?: (date: Date | undefined) => void;
|
|
580
580
|
placeholder?: string;
|
|
@@ -584,23 +584,23 @@ declare const SchemaFieldExtended: {
|
|
|
584
584
|
placeholder?: string;
|
|
585
585
|
} & Omit<react_day_picker10.DayPickerProps & {
|
|
586
586
|
buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
|
|
587
|
-
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> &
|
|
587
|
+
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react391.RefAttributes<unknown>>;
|
|
588
588
|
Row: typeof Row;
|
|
589
589
|
Column: typeof Column;
|
|
590
590
|
FormGrid: typeof FormGrid;
|
|
591
|
-
Combobox:
|
|
591
|
+
Combobox: react391.FC;
|
|
592
592
|
TagsInput: typeof _pixpilot_shadcn_ui9.TagsInput;
|
|
593
|
-
Separator:
|
|
594
|
-
Slider:
|
|
593
|
+
Separator: react391.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react391.RefAttributes<HTMLDivElement>>, "ref"> & react391.RefAttributes<unknown>>;
|
|
594
|
+
Slider: react391.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui9.SliderProps>, "ref"> & react391.RefAttributes<unknown>>;
|
|
595
595
|
ArrayCards: ComposedArrayProps;
|
|
596
|
-
ArrayDialog:
|
|
597
|
-
ArrayCollapse:
|
|
596
|
+
ArrayDialog: react391.FC<ArrayComponentProps>;
|
|
597
|
+
ArrayCollapse: react391.FC<ArrayComponentProps & {
|
|
598
598
|
defaultActiveKey?: Array<string | number>;
|
|
599
599
|
mode?: "accordion" | "multiple";
|
|
600
600
|
}>;
|
|
601
|
-
ArrayPopover:
|
|
602
|
-
ObjectContainer:
|
|
603
|
-
FileUploadInline:
|
|
601
|
+
ArrayPopover: react391.FC<ArrayComponentProps>;
|
|
602
|
+
ObjectContainer: react391.FC<ObjectContainerProps>;
|
|
603
|
+
FileUploadInline: react391.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
|
|
604
604
|
multiple: true;
|
|
605
605
|
value?: _pixpilot_shadcn_ui9.FileMetadata[];
|
|
606
606
|
onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
|
|
@@ -608,11 +608,11 @@ declare const SchemaFieldExtended: {
|
|
|
608
608
|
multiple?: false;
|
|
609
609
|
value?: _pixpilot_shadcn_ui9.FileMetadata | null;
|
|
610
610
|
onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
|
|
611
|
-
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) &
|
|
612
|
-
IconPicker:
|
|
611
|
+
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react391.RefAttributes<unknown>>;
|
|
612
|
+
IconPicker: react391.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui9.IconPickerProps, "providers"> & {
|
|
613
613
|
providers?: _pixpilot_shadcn_ui9.IconProviderProps[];
|
|
614
|
-
}> &
|
|
615
|
-
FileUpload:
|
|
614
|
+
}> & react391.RefAttributes<unknown>>;
|
|
615
|
+
FileUpload: react391.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui9.FileUploadInlineBaseProps & {
|
|
616
616
|
multiple: true;
|
|
617
617
|
value?: _pixpilot_shadcn_ui9.FileMetadata[];
|
|
618
618
|
onChange?: _pixpilot_shadcn_ui9.OnChangeMultipleFiles;
|
|
@@ -620,8 +620,8 @@ declare const SchemaFieldExtended: {
|
|
|
620
620
|
multiple?: false;
|
|
621
621
|
value?: _pixpilot_shadcn_ui9.FileMetadata | null;
|
|
622
622
|
onChange?: _pixpilot_shadcn_ui9.OnChangeSingleFile;
|
|
623
|
-
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) &
|
|
624
|
-
RichTextEditor:
|
|
623
|
+
} & _pixpilot_shadcn_ui9.FileUploadBaseProps>, "ref">) & react391.RefAttributes<unknown>>;
|
|
624
|
+
RichTextEditor: react391.FC;
|
|
625
625
|
}, Component_9, Decorator_9>): JSX.Element;
|
|
626
626
|
displayName: string;
|
|
627
627
|
};
|