@pixpilot/formily-shadcn 0.8.0 → 0.8.2
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/_virtual/rolldown_runtime.cjs +25 -1
- package/dist/_virtual/rolldown_runtime.js +24 -1
- package/dist/components/array-base/array-base.cjs +59 -1
- package/dist/components/array-base/array-base.js +55 -1
- package/dist/components/array-base/array-context.cjs +28 -1
- package/dist/components/array-base/array-context.js +22 -1
- package/dist/components/array-base/component-context.cjs +28 -1
- package/dist/components/array-base/component-context.js +22 -1
- package/dist/components/array-base/components/addition.cjs +51 -1
- package/dist/components/array-base/components/addition.js +45 -1
- package/dist/components/array-base/components/array-copy.cjs +49 -1
- package/dist/components/array-base/components/array-copy.js +42 -1
- package/dist/components/array-base/components/array-index.cjs +15 -1
- package/dist/components/array-base/components/array-index.js +13 -1
- package/dist/components/array-base/components/array-item-label.cjs +22 -1
- package/dist/components/array-base/components/array-item-label.js +19 -1
- package/dist/components/array-base/components/components.cjs +30 -1
- package/dist/components/array-base/components/components.js +29 -1
- package/dist/components/array-base/components/edit.cjs +42 -1
- package/dist/components/array-base/components/edit.js +36 -1
- package/dist/components/array-base/components/empty.cjs +19 -1
- package/dist/components/array-base/components/empty.js +16 -1
- package/dist/components/array-base/components/get-array-components.cjs +88 -1
- package/dist/components/array-base/components/get-array-components.js +84 -1
- package/dist/components/array-base/components/move-down.cjs +47 -1
- package/dist/components/array-base/components/move-down.js +41 -1
- package/dist/components/array-base/components/move-up.cjs +47 -1
- package/dist/components/array-base/components/move-up.js +41 -1
- package/dist/components/array-base/components/remove.cjs +46 -1
- package/dist/components/array-base/components/remove.js +40 -1
- package/dist/components/array-base/components/title.cjs +17 -1
- package/dist/components/array-base/components/title.js +14 -1
- package/dist/components/array-base/components/use-array-components-registry.cjs +56 -1
- package/dist/components/array-base/components/use-array-components-registry.js +52 -1
- package/dist/components/array-base/constants/index.cjs +17 -1
- package/dist/components/array-base/constants/index.js +15 -1
- package/dist/components/array-base/index.cjs +2 -1
- package/dist/components/array-base/index.js +2 -1
- package/dist/components/array-base/utils/filter-and-sort-components.cjs +34 -1
- package/dist/components/array-base/utils/filter-and-sort-components.js +34 -1
- package/dist/components/array-base/utils/is-array-component.cjs +65 -1
- package/dist/components/array-base/utils/is-array-component.js +56 -1
- package/dist/components/array-cards/array-cards.cjs +64 -1
- package/dist/components/array-cards/array-cards.js +60 -1
- package/dist/components/array-cards/index.cjs +1 -1
- package/dist/components/array-cards/index.js +1 -1
- package/dist/components/array-cards/item.cjs +64 -1
- package/dist/components/array-cards/item.js +60 -1
- package/dist/components/array-collapse/array-collapse.cjs +96 -1
- package/dist/components/array-collapse/array-collapse.js +92 -1
- package/dist/components/array-collapse/index.cjs +1 -1
- package/dist/components/array-collapse/index.js +1 -1
- package/dist/components/array-collapse/item.cjs +84 -1
- package/dist/components/array-collapse/item.js +78 -1
- package/dist/components/array-common/array-items-list.cjs +43 -1
- package/dist/components/array-common/array-items-list.js +39 -1
- package/dist/components/array-common/create-active-item-manager.cjs +29 -1
- package/dist/components/array-common/create-active-item-manager.js +27 -1
- package/dist/components/array-common/index.cjs +5 -1
- package/dist/components/array-common/index.js +5 -1
- package/dist/components/array-common/item-wrapper.cjs +26 -1
- package/dist/components/array-common/item-wrapper.js +21 -1
- package/dist/components/array-common/list-item.cjs +53 -1
- package/dist/components/array-common/list-item.js +48 -1
- package/dist/components/array-common/use-array-editor.cjs +47 -1
- package/dist/components/array-common/use-array-editor.js +44 -1
- package/dist/components/array-dialog/array-dialog.cjs +66 -1
- package/dist/components/array-dialog/array-dialog.js +62 -1
- package/dist/components/array-dialog/edit-dialog.cjs +61 -1
- package/dist/components/array-dialog/edit-dialog.js +57 -1
- package/dist/components/array-dialog/index.cjs +1 -1
- package/dist/components/array-dialog/index.js +1 -1
- package/dist/components/array-popover/array-popover.cjs +58 -1
- package/dist/components/array-popover/array-popover.js +53 -1
- package/dist/components/array-popover/index.cjs +1 -1
- package/dist/components/array-popover/index.js +1 -1
- package/dist/components/array-popover/popover.cjs +75 -1
- package/dist/components/array-popover/popover.js +71 -1
- package/dist/components/checkbox.cjs +26 -1
- package/dist/components/checkbox.js +23 -1
- package/dist/components/column.cjs +39 -1
- package/dist/components/column.js +35 -1
- package/dist/components/combobox.cjs +14 -1
- package/dist/components/combobox.js +11 -1
- package/dist/components/context/context.cjs +7 -1
- package/dist/components/context/context.js +7 -1
- package/dist/components/context/form-context.cjs +9 -1
- package/dist/components/context/form-context.js +7 -1
- package/dist/components/context/index.cjs +2 -1
- package/dist/components/context/index.js +2 -1
- package/dist/components/date-picker.cjs +23 -1
- package/dist/components/date-picker.js +19 -1
- package/dist/components/file-upload/file-upload-inline.cjs +35 -1
- package/dist/components/file-upload/file-upload-inline.d.cts +8 -8
- package/dist/components/file-upload/file-upload-inline.js +30 -1
- package/dist/components/file-upload/file-upload.cjs +35 -1
- package/dist/components/file-upload/file-upload.d.cts +8 -8
- package/dist/components/file-upload/file-upload.js +30 -1
- package/dist/components/file-upload/index.cjs +2 -1
- package/dist/components/file-upload/index.js +2 -1
- package/dist/components/file-upload/use-file-upload-feedback.cjs +59 -3
- package/dist/components/file-upload/use-file-upload-feedback.js +53 -3
- package/dist/components/form-grid.cjs +19 -1
- package/dist/components/form-grid.js +15 -1
- package/dist/components/form-item.cjs +118 -3
- package/dist/components/form-item.js +112 -3
- package/dist/components/form-items-container.cjs +28 -1
- package/dist/components/form-items-container.js +24 -1
- package/dist/components/form.cjs +56 -1
- package/dist/components/form.js +51 -1
- package/dist/components/hidden.cjs +26 -1
- package/dist/components/hidden.js +23 -1
- package/dist/components/icon-picker.cjs +37 -1
- package/dist/components/icon-picker.js +33 -1
- package/dist/components/input.cjs +20 -1
- package/dist/components/input.js +17 -1
- package/dist/components/json-schema-form-renderer.cjs +30 -1
- package/dist/components/json-schema-form-renderer.js +26 -1
- package/dist/components/number-input.cjs +19 -1
- package/dist/components/number-input.d.ts +2 -2
- package/dist/components/number-input.js +16 -1
- package/dist/components/object-container.cjs +35 -1
- package/dist/components/object-container.js +32 -1
- package/dist/components/radio.cjs +40 -1
- package/dist/components/radio.js +35 -1
- package/dist/components/rich-text-editor.cjs +27 -1
- package/dist/components/rich-text-editor.js +23 -1
- package/dist/components/row.cjs +39 -1
- package/dist/components/row.js +35 -1
- package/dist/components/schema-field-extended.cjs +25 -1
- package/dist/components/schema-field-extended.d.cts +9 -9
- package/dist/components/schema-field-extended.d.ts +262 -262
- package/dist/components/schema-field-extended.js +23 -1
- package/dist/components/schema-field.cjs +61 -1
- package/dist/components/schema-field.d.cts +9 -9
- package/dist/components/schema-field.d.ts +220 -220
- package/dist/components/schema-field.js +57 -1
- package/dist/components/select.cjs +11 -1
- package/dist/components/select.js +8 -1
- package/dist/components/separator.cjs +15 -1
- package/dist/components/separator.d.ts +2 -2
- package/dist/components/separator.js +12 -1
- package/dist/components/slider.cjs +33 -1
- package/dist/components/slider.d.ts +2 -2
- package/dist/components/slider.js +29 -1
- package/dist/components/switch.cjs +21 -1
- package/dist/components/switch.js +18 -1
- package/dist/components/tags-input-inline.cjs +26 -1
- package/dist/components/tags-input-inline.js +23 -1
- package/dist/components/textarea.cjs +19 -1
- package/dist/components/textarea.js +16 -1
- package/dist/hooks/index.cjs +3 -1
- package/dist/hooks/index.js +3 -1
- package/dist/hooks/use-description.cjs +14 -1
- package/dist/hooks/use-description.js +12 -1
- package/dist/hooks/use-form-context.cjs +13 -1
- package/dist/hooks/use-form-context.js +11 -1
- package/dist/hooks/use-label.cjs +19 -1
- package/dist/hooks/use-label.js +16 -1
- package/dist/index.cjs +102 -1
- package/dist/index.js +35 -1
- package/dist/utils/create-panel-state-manager.cjs +40 -1
- package/dist/utils/create-panel-state-manager.js +38 -1
- package/dist/utils/for-each-schema.cjs +27 -1
- package/dist/utils/for-each-schema.js +26 -1
- package/dist/utils/get-array-item-info.cjs +20 -1
- package/dist/utils/get-array-item-info.js +19 -1
- package/dist/utils/get-default-value.cjs +22 -1
- package/dist/utils/get-default-value.js +20 -1
- package/dist/utils/has-array-item-errors.cjs +15 -1
- package/dist/utils/has-array-item-errors.js +14 -1
- package/dist/utils/has-error.cjs +12 -1
- package/dist/utils/has-error.js +10 -1
- package/dist/utils/index.cjs +10 -1
- package/dist/utils/index.js +10 -1
- package/dist/utils/resolve-responsive-space.cjs +131 -1
- package/dist/utils/resolve-responsive-space.js +123 -1
- package/dist/utils/transform-schema.cjs +45 -1
- package/dist/utils/transform-schema.js +43 -1
- package/dist/utils/use-array-item-editor.cjs +3 -1
- package/dist/utils/use-array-item-editor.js +1 -1
- package/dist/utils/validate-array-item-fields.cjs +22 -1
- package/dist/utils/validate-array-item-fields.js +22 -1
- package/package.json +3 -3
|
@@ -6,7 +6,7 @@ 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 react388 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";
|
|
@@ -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 "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "
|
|
27
|
-
FormItem:
|
|
28
|
-
children?:
|
|
29
|
-
}>, "ref"> &
|
|
30
|
-
Hidden:
|
|
26
|
+
<Decorator_1 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "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 "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "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: react388.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
28
|
+
children?: react388.ReactNode | undefined;
|
|
29
|
+
}>, "ref"> & react388.RefAttributes<unknown>>;
|
|
30
|
+
Hidden: react388.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
|
+
}> & react388.RefAttributes<unknown>>;
|
|
34
|
+
Input: react388.ForwardRefExoticComponent<Omit<Partial<react388.ClassAttributes<HTMLInputElement> & react388.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
35
|
+
Textarea: react388.ForwardRefExoticComponent<Omit<Partial<react388.ClassAttributes<HTMLTextAreaElement> & react388.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
36
|
+
NumberInput: react388.ForwardRefExoticComponent<Omit<Partial<react388.ClassAttributes<HTMLInputElement> & react388.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
37
|
+
Checkbox: react388.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react388.RefAttributes<HTMLButtonElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
38
|
+
Radio: react388.FC;
|
|
39
|
+
Select: react388.FC;
|
|
40
|
+
Switch: react388.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch9.SwitchProps & react388.RefAttributes<HTMLButtonElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
41
|
+
DatePicker: react388.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">> & react388.RefAttributes<unknown>>;
|
|
52
52
|
Row: typeof Row;
|
|
53
53
|
Column: typeof Column;
|
|
54
54
|
FormGrid: typeof FormGrid;
|
|
55
|
-
Combobox:
|
|
55
|
+
Combobox: react388.FC;
|
|
56
56
|
TagsInput: typeof _pixpilot_shadcn_ui9.TagsInput;
|
|
57
|
-
Separator:
|
|
58
|
-
Slider:
|
|
57
|
+
Separator: react388.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator9.SeparatorProps & react388.RefAttributes<HTMLDivElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
58
|
+
Slider: react388.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui9.SliderProps>, "ref"> & react388.RefAttributes<unknown>>;
|
|
59
59
|
ArrayCards: ComposedArrayProps;
|
|
60
|
-
ArrayDialog:
|
|
61
|
-
ArrayCollapse:
|
|
60
|
+
ArrayDialog: react388.FC<ArrayComponentProps>;
|
|
61
|
+
ArrayCollapse: react388.FC<ArrayComponentProps & {
|
|
62
62
|
defaultActiveKey?: Array<string | number>;
|
|
63
63
|
mode?: "accordion" | "multiple";
|
|
64
64
|
}>;
|
|
65
|
-
ArrayPopover:
|
|
66
|
-
ObjectContainer:
|
|
67
|
-
FileUploadInline:
|
|
65
|
+
ArrayPopover: react388.FC<ArrayComponentProps>;
|
|
66
|
+
ObjectContainer: react388.FC<ObjectContainerProps>;
|
|
67
|
+
FileUploadInline: react388.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">) & react388.RefAttributes<unknown>>;
|
|
76
|
+
IconPicker: react388.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui9.IconPickerProps, "providers"> & {
|
|
77
77
|
providers?: _pixpilot_shadcn_ui9.IconProviderProps[];
|
|
78
|
-
}> &
|
|
79
|
-
FileUpload:
|
|
78
|
+
}> & react388.RefAttributes<unknown>>;
|
|
79
|
+
FileUpload: react388.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">) & react388.RefAttributes<unknown>>;
|
|
88
|
+
RichTextEditor: react388.FC;
|
|
89
89
|
}, Component_1, Decorator_1>): JSX.Element;
|
|
90
90
|
displayName: string;
|
|
91
91
|
};
|
|
92
92
|
String: {
|
|
93
|
-
<Decorator_2 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "
|
|
94
|
-
FormItem:
|
|
95
|
-
children?:
|
|
96
|
-
}>, "ref"> &
|
|
97
|
-
Hidden:
|
|
93
|
+
<Decorator_2 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "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 "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "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: react388.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
95
|
+
children?: react388.ReactNode | undefined;
|
|
96
|
+
}>, "ref"> & react388.RefAttributes<unknown>>;
|
|
97
|
+
Hidden: react388.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
|
+
}> & react388.RefAttributes<unknown>>;
|
|
101
|
+
Input: react388.ForwardRefExoticComponent<Omit<Partial<react388.ClassAttributes<HTMLInputElement> & react388.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
102
|
+
Textarea: react388.ForwardRefExoticComponent<Omit<Partial<react388.ClassAttributes<HTMLTextAreaElement> & react388.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
103
|
+
NumberInput: react388.ForwardRefExoticComponent<Omit<Partial<react388.ClassAttributes<HTMLInputElement> & react388.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
104
|
+
Checkbox: react388.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react388.RefAttributes<HTMLButtonElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
105
|
+
Radio: react388.FC;
|
|
106
|
+
Select: react388.FC;
|
|
107
|
+
Switch: react388.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch9.SwitchProps & react388.RefAttributes<HTMLButtonElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
108
|
+
DatePicker: react388.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">> & react388.RefAttributes<unknown>>;
|
|
119
119
|
Row: typeof Row;
|
|
120
120
|
Column: typeof Column;
|
|
121
121
|
FormGrid: typeof FormGrid;
|
|
122
|
-
Combobox:
|
|
122
|
+
Combobox: react388.FC;
|
|
123
123
|
TagsInput: typeof _pixpilot_shadcn_ui9.TagsInput;
|
|
124
|
-
Separator:
|
|
125
|
-
Slider:
|
|
124
|
+
Separator: react388.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator9.SeparatorProps & react388.RefAttributes<HTMLDivElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
125
|
+
Slider: react388.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui9.SliderProps>, "ref"> & react388.RefAttributes<unknown>>;
|
|
126
126
|
ArrayCards: ComposedArrayProps;
|
|
127
|
-
ArrayDialog:
|
|
128
|
-
ArrayCollapse:
|
|
127
|
+
ArrayDialog: react388.FC<ArrayComponentProps>;
|
|
128
|
+
ArrayCollapse: react388.FC<ArrayComponentProps & {
|
|
129
129
|
defaultActiveKey?: Array<string | number>;
|
|
130
130
|
mode?: "accordion" | "multiple";
|
|
131
131
|
}>;
|
|
132
|
-
ArrayPopover:
|
|
133
|
-
ObjectContainer:
|
|
134
|
-
FileUploadInline:
|
|
132
|
+
ArrayPopover: react388.FC<ArrayComponentProps>;
|
|
133
|
+
ObjectContainer: react388.FC<ObjectContainerProps>;
|
|
134
|
+
FileUploadInline: react388.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">) & react388.RefAttributes<unknown>>;
|
|
143
|
+
IconPicker: react388.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui9.IconPickerProps, "providers"> & {
|
|
144
144
|
providers?: _pixpilot_shadcn_ui9.IconProviderProps[];
|
|
145
|
-
}> &
|
|
146
|
-
FileUpload:
|
|
145
|
+
}> & react388.RefAttributes<unknown>>;
|
|
146
|
+
FileUpload: react388.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">) & react388.RefAttributes<unknown>>;
|
|
155
|
+
RichTextEditor: react388.FC;
|
|
156
156
|
}, Component_2, Decorator_2>): JSX.Element;
|
|
157
157
|
displayName: string;
|
|
158
158
|
};
|
|
159
159
|
Object: {
|
|
160
|
-
<Decorator_3 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "
|
|
161
|
-
FormItem:
|
|
162
|
-
children?:
|
|
163
|
-
}>, "ref"> &
|
|
164
|
-
Hidden:
|
|
160
|
+
<Decorator_3 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "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 "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "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: react388.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
162
|
+
children?: react388.ReactNode | undefined;
|
|
163
|
+
}>, "ref"> & react388.RefAttributes<unknown>>;
|
|
164
|
+
Hidden: react388.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
|
+
}> & react388.RefAttributes<unknown>>;
|
|
168
|
+
Input: react388.ForwardRefExoticComponent<Omit<Partial<react388.ClassAttributes<HTMLInputElement> & react388.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
169
|
+
Textarea: react388.ForwardRefExoticComponent<Omit<Partial<react388.ClassAttributes<HTMLTextAreaElement> & react388.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
170
|
+
NumberInput: react388.ForwardRefExoticComponent<Omit<Partial<react388.ClassAttributes<HTMLInputElement> & react388.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
171
|
+
Checkbox: react388.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react388.RefAttributes<HTMLButtonElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
172
|
+
Radio: react388.FC;
|
|
173
|
+
Select: react388.FC;
|
|
174
|
+
Switch: react388.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch9.SwitchProps & react388.RefAttributes<HTMLButtonElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
175
|
+
DatePicker: react388.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">> & react388.RefAttributes<unknown>>;
|
|
186
186
|
Row: typeof Row;
|
|
187
187
|
Column: typeof Column;
|
|
188
188
|
FormGrid: typeof FormGrid;
|
|
189
|
-
Combobox:
|
|
189
|
+
Combobox: react388.FC;
|
|
190
190
|
TagsInput: typeof _pixpilot_shadcn_ui9.TagsInput;
|
|
191
|
-
Separator:
|
|
192
|
-
Slider:
|
|
191
|
+
Separator: react388.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator9.SeparatorProps & react388.RefAttributes<HTMLDivElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
192
|
+
Slider: react388.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui9.SliderProps>, "ref"> & react388.RefAttributes<unknown>>;
|
|
193
193
|
ArrayCards: ComposedArrayProps;
|
|
194
|
-
ArrayDialog:
|
|
195
|
-
ArrayCollapse:
|
|
194
|
+
ArrayDialog: react388.FC<ArrayComponentProps>;
|
|
195
|
+
ArrayCollapse: react388.FC<ArrayComponentProps & {
|
|
196
196
|
defaultActiveKey?: Array<string | number>;
|
|
197
197
|
mode?: "accordion" | "multiple";
|
|
198
198
|
}>;
|
|
199
|
-
ArrayPopover:
|
|
200
|
-
ObjectContainer:
|
|
201
|
-
FileUploadInline:
|
|
199
|
+
ArrayPopover: react388.FC<ArrayComponentProps>;
|
|
200
|
+
ObjectContainer: react388.FC<ObjectContainerProps>;
|
|
201
|
+
FileUploadInline: react388.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">) & react388.RefAttributes<unknown>>;
|
|
210
|
+
IconPicker: react388.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui9.IconPickerProps, "providers"> & {
|
|
211
211
|
providers?: _pixpilot_shadcn_ui9.IconProviderProps[];
|
|
212
|
-
}> &
|
|
213
|
-
FileUpload:
|
|
212
|
+
}> & react388.RefAttributes<unknown>>;
|
|
213
|
+
FileUpload: react388.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">) & react388.RefAttributes<unknown>>;
|
|
222
|
+
RichTextEditor: react388.FC;
|
|
223
223
|
}, Component_3, Decorator_3>): JSX.Element;
|
|
224
224
|
displayName: string;
|
|
225
225
|
};
|
|
226
226
|
Array: {
|
|
227
|
-
<Decorator_4 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "
|
|
228
|
-
FormItem:
|
|
229
|
-
children?:
|
|
230
|
-
}>, "ref"> &
|
|
231
|
-
Hidden:
|
|
227
|
+
<Decorator_4 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "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 "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "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: react388.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
229
|
+
children?: react388.ReactNode | undefined;
|
|
230
|
+
}>, "ref"> & react388.RefAttributes<unknown>>;
|
|
231
|
+
Hidden: react388.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
|
+
}> & react388.RefAttributes<unknown>>;
|
|
235
|
+
Input: react388.ForwardRefExoticComponent<Omit<Partial<react388.ClassAttributes<HTMLInputElement> & react388.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
236
|
+
Textarea: react388.ForwardRefExoticComponent<Omit<Partial<react388.ClassAttributes<HTMLTextAreaElement> & react388.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
237
|
+
NumberInput: react388.ForwardRefExoticComponent<Omit<Partial<react388.ClassAttributes<HTMLInputElement> & react388.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
238
|
+
Checkbox: react388.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react388.RefAttributes<HTMLButtonElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
239
|
+
Radio: react388.FC;
|
|
240
|
+
Select: react388.FC;
|
|
241
|
+
Switch: react388.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch9.SwitchProps & react388.RefAttributes<HTMLButtonElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
242
|
+
DatePicker: react388.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">> & react388.RefAttributes<unknown>>;
|
|
253
253
|
Row: typeof Row;
|
|
254
254
|
Column: typeof Column;
|
|
255
255
|
FormGrid: typeof FormGrid;
|
|
256
|
-
Combobox:
|
|
256
|
+
Combobox: react388.FC;
|
|
257
257
|
TagsInput: typeof _pixpilot_shadcn_ui9.TagsInput;
|
|
258
|
-
Separator:
|
|
259
|
-
Slider:
|
|
258
|
+
Separator: react388.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator9.SeparatorProps & react388.RefAttributes<HTMLDivElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
259
|
+
Slider: react388.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui9.SliderProps>, "ref"> & react388.RefAttributes<unknown>>;
|
|
260
260
|
ArrayCards: ComposedArrayProps;
|
|
261
|
-
ArrayDialog:
|
|
262
|
-
ArrayCollapse:
|
|
261
|
+
ArrayDialog: react388.FC<ArrayComponentProps>;
|
|
262
|
+
ArrayCollapse: react388.FC<ArrayComponentProps & {
|
|
263
263
|
defaultActiveKey?: Array<string | number>;
|
|
264
264
|
mode?: "accordion" | "multiple";
|
|
265
265
|
}>;
|
|
266
|
-
ArrayPopover:
|
|
267
|
-
ObjectContainer:
|
|
268
|
-
FileUploadInline:
|
|
266
|
+
ArrayPopover: react388.FC<ArrayComponentProps>;
|
|
267
|
+
ObjectContainer: react388.FC<ObjectContainerProps>;
|
|
268
|
+
FileUploadInline: react388.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">) & react388.RefAttributes<unknown>>;
|
|
277
|
+
IconPicker: react388.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui9.IconPickerProps, "providers"> & {
|
|
278
278
|
providers?: _pixpilot_shadcn_ui9.IconProviderProps[];
|
|
279
|
-
}> &
|
|
280
|
-
FileUpload:
|
|
279
|
+
}> & react388.RefAttributes<unknown>>;
|
|
280
|
+
FileUpload: react388.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">) & react388.RefAttributes<unknown>>;
|
|
289
|
+
RichTextEditor: react388.FC;
|
|
290
290
|
}, Component_4, Decorator_4>): JSX.Element;
|
|
291
291
|
displayName: string;
|
|
292
292
|
};
|
|
293
293
|
Boolean: {
|
|
294
|
-
<Decorator_5 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "
|
|
295
|
-
FormItem:
|
|
296
|
-
children?:
|
|
297
|
-
}>, "ref"> &
|
|
298
|
-
Hidden:
|
|
294
|
+
<Decorator_5 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "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 "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "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: react388.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
296
|
+
children?: react388.ReactNode | undefined;
|
|
297
|
+
}>, "ref"> & react388.RefAttributes<unknown>>;
|
|
298
|
+
Hidden: react388.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
|
+
}> & react388.RefAttributes<unknown>>;
|
|
302
|
+
Input: react388.ForwardRefExoticComponent<Omit<Partial<react388.ClassAttributes<HTMLInputElement> & react388.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
303
|
+
Textarea: react388.ForwardRefExoticComponent<Omit<Partial<react388.ClassAttributes<HTMLTextAreaElement> & react388.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
304
|
+
NumberInput: react388.ForwardRefExoticComponent<Omit<Partial<react388.ClassAttributes<HTMLInputElement> & react388.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
305
|
+
Checkbox: react388.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react388.RefAttributes<HTMLButtonElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
306
|
+
Radio: react388.FC;
|
|
307
|
+
Select: react388.FC;
|
|
308
|
+
Switch: react388.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch9.SwitchProps & react388.RefAttributes<HTMLButtonElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
309
|
+
DatePicker: react388.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">> & react388.RefAttributes<unknown>>;
|
|
320
320
|
Row: typeof Row;
|
|
321
321
|
Column: typeof Column;
|
|
322
322
|
FormGrid: typeof FormGrid;
|
|
323
|
-
Combobox:
|
|
323
|
+
Combobox: react388.FC;
|
|
324
324
|
TagsInput: typeof _pixpilot_shadcn_ui9.TagsInput;
|
|
325
|
-
Separator:
|
|
326
|
-
Slider:
|
|
325
|
+
Separator: react388.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator9.SeparatorProps & react388.RefAttributes<HTMLDivElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
326
|
+
Slider: react388.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui9.SliderProps>, "ref"> & react388.RefAttributes<unknown>>;
|
|
327
327
|
ArrayCards: ComposedArrayProps;
|
|
328
|
-
ArrayDialog:
|
|
329
|
-
ArrayCollapse:
|
|
328
|
+
ArrayDialog: react388.FC<ArrayComponentProps>;
|
|
329
|
+
ArrayCollapse: react388.FC<ArrayComponentProps & {
|
|
330
330
|
defaultActiveKey?: Array<string | number>;
|
|
331
331
|
mode?: "accordion" | "multiple";
|
|
332
332
|
}>;
|
|
333
|
-
ArrayPopover:
|
|
334
|
-
ObjectContainer:
|
|
335
|
-
FileUploadInline:
|
|
333
|
+
ArrayPopover: react388.FC<ArrayComponentProps>;
|
|
334
|
+
ObjectContainer: react388.FC<ObjectContainerProps>;
|
|
335
|
+
FileUploadInline: react388.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">) & react388.RefAttributes<unknown>>;
|
|
344
|
+
IconPicker: react388.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui9.IconPickerProps, "providers"> & {
|
|
345
345
|
providers?: _pixpilot_shadcn_ui9.IconProviderProps[];
|
|
346
|
-
}> &
|
|
347
|
-
FileUpload:
|
|
346
|
+
}> & react388.RefAttributes<unknown>>;
|
|
347
|
+
FileUpload: react388.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">) & react388.RefAttributes<unknown>>;
|
|
356
|
+
RichTextEditor: react388.FC;
|
|
357
357
|
}, Component_5, Decorator_5>): JSX.Element;
|
|
358
358
|
displayName: string;
|
|
359
359
|
};
|
|
360
360
|
Date: {
|
|
361
|
-
<Decorator_6 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "
|
|
362
|
-
FormItem:
|
|
363
|
-
children?:
|
|
364
|
-
}>, "ref"> &
|
|
365
|
-
Hidden:
|
|
361
|
+
<Decorator_6 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "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 "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "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: react388.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
363
|
+
children?: react388.ReactNode | undefined;
|
|
364
|
+
}>, "ref"> & react388.RefAttributes<unknown>>;
|
|
365
|
+
Hidden: react388.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
|
+
}> & react388.RefAttributes<unknown>>;
|
|
369
|
+
Input: react388.ForwardRefExoticComponent<Omit<Partial<react388.ClassAttributes<HTMLInputElement> & react388.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
370
|
+
Textarea: react388.ForwardRefExoticComponent<Omit<Partial<react388.ClassAttributes<HTMLTextAreaElement> & react388.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
371
|
+
NumberInput: react388.ForwardRefExoticComponent<Omit<Partial<react388.ClassAttributes<HTMLInputElement> & react388.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
372
|
+
Checkbox: react388.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react388.RefAttributes<HTMLButtonElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
373
|
+
Radio: react388.FC;
|
|
374
|
+
Select: react388.FC;
|
|
375
|
+
Switch: react388.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch9.SwitchProps & react388.RefAttributes<HTMLButtonElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
376
|
+
DatePicker: react388.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">> & react388.RefAttributes<unknown>>;
|
|
387
387
|
Row: typeof Row;
|
|
388
388
|
Column: typeof Column;
|
|
389
389
|
FormGrid: typeof FormGrid;
|
|
390
|
-
Combobox:
|
|
390
|
+
Combobox: react388.FC;
|
|
391
391
|
TagsInput: typeof _pixpilot_shadcn_ui9.TagsInput;
|
|
392
|
-
Separator:
|
|
393
|
-
Slider:
|
|
392
|
+
Separator: react388.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator9.SeparatorProps & react388.RefAttributes<HTMLDivElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
393
|
+
Slider: react388.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui9.SliderProps>, "ref"> & react388.RefAttributes<unknown>>;
|
|
394
394
|
ArrayCards: ComposedArrayProps;
|
|
395
|
-
ArrayDialog:
|
|
396
|
-
ArrayCollapse:
|
|
395
|
+
ArrayDialog: react388.FC<ArrayComponentProps>;
|
|
396
|
+
ArrayCollapse: react388.FC<ArrayComponentProps & {
|
|
397
397
|
defaultActiveKey?: Array<string | number>;
|
|
398
398
|
mode?: "accordion" | "multiple";
|
|
399
399
|
}>;
|
|
400
|
-
ArrayPopover:
|
|
401
|
-
ObjectContainer:
|
|
402
|
-
FileUploadInline:
|
|
400
|
+
ArrayPopover: react388.FC<ArrayComponentProps>;
|
|
401
|
+
ObjectContainer: react388.FC<ObjectContainerProps>;
|
|
402
|
+
FileUploadInline: react388.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">) & react388.RefAttributes<unknown>>;
|
|
411
|
+
IconPicker: react388.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui9.IconPickerProps, "providers"> & {
|
|
412
412
|
providers?: _pixpilot_shadcn_ui9.IconProviderProps[];
|
|
413
|
-
}> &
|
|
414
|
-
FileUpload:
|
|
413
|
+
}> & react388.RefAttributes<unknown>>;
|
|
414
|
+
FileUpload: react388.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">) & react388.RefAttributes<unknown>>;
|
|
423
|
+
RichTextEditor: react388.FC;
|
|
424
424
|
}, Component_6, Decorator_6>): JSX.Element;
|
|
425
425
|
displayName: string;
|
|
426
426
|
};
|
|
427
427
|
DateTime: {
|
|
428
|
-
<Decorator_7 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "
|
|
429
|
-
FormItem:
|
|
430
|
-
children?:
|
|
431
|
-
}>, "ref"> &
|
|
432
|
-
Hidden:
|
|
428
|
+
<Decorator_7 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "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 "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "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: react388.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
430
|
+
children?: react388.ReactNode | undefined;
|
|
431
|
+
}>, "ref"> & react388.RefAttributes<unknown>>;
|
|
432
|
+
Hidden: react388.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
|
+
}> & react388.RefAttributes<unknown>>;
|
|
436
|
+
Input: react388.ForwardRefExoticComponent<Omit<Partial<react388.ClassAttributes<HTMLInputElement> & react388.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
437
|
+
Textarea: react388.ForwardRefExoticComponent<Omit<Partial<react388.ClassAttributes<HTMLTextAreaElement> & react388.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
438
|
+
NumberInput: react388.ForwardRefExoticComponent<Omit<Partial<react388.ClassAttributes<HTMLInputElement> & react388.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
439
|
+
Checkbox: react388.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react388.RefAttributes<HTMLButtonElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
440
|
+
Radio: react388.FC;
|
|
441
|
+
Select: react388.FC;
|
|
442
|
+
Switch: react388.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch9.SwitchProps & react388.RefAttributes<HTMLButtonElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
443
|
+
DatePicker: react388.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">> & react388.RefAttributes<unknown>>;
|
|
454
454
|
Row: typeof Row;
|
|
455
455
|
Column: typeof Column;
|
|
456
456
|
FormGrid: typeof FormGrid;
|
|
457
|
-
Combobox:
|
|
457
|
+
Combobox: react388.FC;
|
|
458
458
|
TagsInput: typeof _pixpilot_shadcn_ui9.TagsInput;
|
|
459
|
-
Separator:
|
|
460
|
-
Slider:
|
|
459
|
+
Separator: react388.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator9.SeparatorProps & react388.RefAttributes<HTMLDivElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
460
|
+
Slider: react388.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui9.SliderProps>, "ref"> & react388.RefAttributes<unknown>>;
|
|
461
461
|
ArrayCards: ComposedArrayProps;
|
|
462
|
-
ArrayDialog:
|
|
463
|
-
ArrayCollapse:
|
|
462
|
+
ArrayDialog: react388.FC<ArrayComponentProps>;
|
|
463
|
+
ArrayCollapse: react388.FC<ArrayComponentProps & {
|
|
464
464
|
defaultActiveKey?: Array<string | number>;
|
|
465
465
|
mode?: "accordion" | "multiple";
|
|
466
466
|
}>;
|
|
467
|
-
ArrayPopover:
|
|
468
|
-
ObjectContainer:
|
|
469
|
-
FileUploadInline:
|
|
467
|
+
ArrayPopover: react388.FC<ArrayComponentProps>;
|
|
468
|
+
ObjectContainer: react388.FC<ObjectContainerProps>;
|
|
469
|
+
FileUploadInline: react388.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">) & react388.RefAttributes<unknown>>;
|
|
478
|
+
IconPicker: react388.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui9.IconPickerProps, "providers"> & {
|
|
479
479
|
providers?: _pixpilot_shadcn_ui9.IconProviderProps[];
|
|
480
|
-
}> &
|
|
481
|
-
FileUpload:
|
|
480
|
+
}> & react388.RefAttributes<unknown>>;
|
|
481
|
+
FileUpload: react388.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">) & react388.RefAttributes<unknown>>;
|
|
490
|
+
RichTextEditor: react388.FC;
|
|
491
491
|
}, Component_7, Decorator_7>): JSX.Element;
|
|
492
492
|
displayName: string;
|
|
493
493
|
};
|
|
494
494
|
Void: {
|
|
495
|
-
<Decorator_8 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "
|
|
496
|
-
FormItem:
|
|
497
|
-
children?:
|
|
498
|
-
}>, "ref"> &
|
|
499
|
-
Hidden:
|
|
495
|
+
<Decorator_8 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "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 "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "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: react388.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
497
|
+
children?: react388.ReactNode | undefined;
|
|
498
|
+
}>, "ref"> & react388.RefAttributes<unknown>>;
|
|
499
|
+
Hidden: react388.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
|
+
}> & react388.RefAttributes<unknown>>;
|
|
503
|
+
Input: react388.ForwardRefExoticComponent<Omit<Partial<react388.ClassAttributes<HTMLInputElement> & react388.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
504
|
+
Textarea: react388.ForwardRefExoticComponent<Omit<Partial<react388.ClassAttributes<HTMLTextAreaElement> & react388.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
505
|
+
NumberInput: react388.ForwardRefExoticComponent<Omit<Partial<react388.ClassAttributes<HTMLInputElement> & react388.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
506
|
+
Checkbox: react388.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react388.RefAttributes<HTMLButtonElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
507
|
+
Radio: react388.FC;
|
|
508
|
+
Select: react388.FC;
|
|
509
|
+
Switch: react388.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch9.SwitchProps & react388.RefAttributes<HTMLButtonElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
510
|
+
DatePicker: react388.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">> & react388.RefAttributes<unknown>>;
|
|
521
521
|
Row: typeof Row;
|
|
522
522
|
Column: typeof Column;
|
|
523
523
|
FormGrid: typeof FormGrid;
|
|
524
|
-
Combobox:
|
|
524
|
+
Combobox: react388.FC;
|
|
525
525
|
TagsInput: typeof _pixpilot_shadcn_ui9.TagsInput;
|
|
526
|
-
Separator:
|
|
527
|
-
Slider:
|
|
526
|
+
Separator: react388.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator9.SeparatorProps & react388.RefAttributes<HTMLDivElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
527
|
+
Slider: react388.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui9.SliderProps>, "ref"> & react388.RefAttributes<unknown>>;
|
|
528
528
|
ArrayCards: ComposedArrayProps;
|
|
529
|
-
ArrayDialog:
|
|
530
|
-
ArrayCollapse:
|
|
529
|
+
ArrayDialog: react388.FC<ArrayComponentProps>;
|
|
530
|
+
ArrayCollapse: react388.FC<ArrayComponentProps & {
|
|
531
531
|
defaultActiveKey?: Array<string | number>;
|
|
532
532
|
mode?: "accordion" | "multiple";
|
|
533
533
|
}>;
|
|
534
|
-
ArrayPopover:
|
|
535
|
-
ObjectContainer:
|
|
536
|
-
FileUploadInline:
|
|
534
|
+
ArrayPopover: react388.FC<ArrayComponentProps>;
|
|
535
|
+
ObjectContainer: react388.FC<ObjectContainerProps>;
|
|
536
|
+
FileUploadInline: react388.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">) & react388.RefAttributes<unknown>>;
|
|
545
|
+
IconPicker: react388.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui9.IconPickerProps, "providers"> & {
|
|
546
546
|
providers?: _pixpilot_shadcn_ui9.IconProviderProps[];
|
|
547
|
-
}> &
|
|
548
|
-
FileUpload:
|
|
547
|
+
}> & react388.RefAttributes<unknown>>;
|
|
548
|
+
FileUpload: react388.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">) & react388.RefAttributes<unknown>>;
|
|
557
|
+
RichTextEditor: react388.FC;
|
|
558
558
|
}, Component_8, Decorator_8>): JSX.Element;
|
|
559
559
|
displayName: string;
|
|
560
560
|
};
|
|
561
561
|
Number: {
|
|
562
|
-
<Decorator_9 extends "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "
|
|
563
|
-
FormItem:
|
|
564
|
-
children?:
|
|
565
|
-
}>, "ref"> &
|
|
566
|
-
Hidden:
|
|
562
|
+
<Decorator_9 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "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 "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "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: react388.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
564
|
+
children?: react388.ReactNode | undefined;
|
|
565
|
+
}>, "ref"> & react388.RefAttributes<unknown>>;
|
|
566
|
+
Hidden: react388.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
|
+
}> & react388.RefAttributes<unknown>>;
|
|
570
|
+
Input: react388.ForwardRefExoticComponent<Omit<Partial<react388.ClassAttributes<HTMLInputElement> & react388.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
571
|
+
Textarea: react388.ForwardRefExoticComponent<Omit<Partial<react388.ClassAttributes<HTMLTextAreaElement> & react388.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
572
|
+
NumberInput: react388.ForwardRefExoticComponent<Omit<Partial<react388.ClassAttributes<HTMLInputElement> & react388.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
573
|
+
Checkbox: react388.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react388.RefAttributes<HTMLButtonElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
574
|
+
Radio: react388.FC;
|
|
575
|
+
Select: react388.FC;
|
|
576
|
+
Switch: react388.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch9.SwitchProps & react388.RefAttributes<HTMLButtonElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
577
|
+
DatePicker: react388.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">> & react388.RefAttributes<unknown>>;
|
|
588
588
|
Row: typeof Row;
|
|
589
589
|
Column: typeof Column;
|
|
590
590
|
FormGrid: typeof FormGrid;
|
|
591
|
-
Combobox:
|
|
591
|
+
Combobox: react388.FC;
|
|
592
592
|
TagsInput: typeof _pixpilot_shadcn_ui9.TagsInput;
|
|
593
|
-
Separator:
|
|
594
|
-
Slider:
|
|
593
|
+
Separator: react388.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator9.SeparatorProps & react388.RefAttributes<HTMLDivElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
594
|
+
Slider: react388.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui9.SliderProps>, "ref"> & react388.RefAttributes<unknown>>;
|
|
595
595
|
ArrayCards: ComposedArrayProps;
|
|
596
|
-
ArrayDialog:
|
|
597
|
-
ArrayCollapse:
|
|
596
|
+
ArrayDialog: react388.FC<ArrayComponentProps>;
|
|
597
|
+
ArrayCollapse: react388.FC<ArrayComponentProps & {
|
|
598
598
|
defaultActiveKey?: Array<string | number>;
|
|
599
599
|
mode?: "accordion" | "multiple";
|
|
600
600
|
}>;
|
|
601
|
-
ArrayPopover:
|
|
602
|
-
ObjectContainer:
|
|
603
|
-
FileUploadInline:
|
|
601
|
+
ArrayPopover: react388.FC<ArrayComponentProps>;
|
|
602
|
+
ObjectContainer: react388.FC<ObjectContainerProps>;
|
|
603
|
+
FileUploadInline: react388.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">) & react388.RefAttributes<unknown>>;
|
|
612
|
+
IconPicker: react388.ForwardRefExoticComponent<Partial<Omit<_pixpilot_shadcn_ui9.IconPickerProps, "providers"> & {
|
|
613
613
|
providers?: _pixpilot_shadcn_ui9.IconProviderProps[];
|
|
614
|
-
}> &
|
|
615
|
-
FileUpload:
|
|
614
|
+
}> & react388.RefAttributes<unknown>>;
|
|
615
|
+
FileUpload: react388.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">) & react388.RefAttributes<unknown>>;
|
|
624
|
+
RichTextEditor: react388.FC;
|
|
625
625
|
}, Component_9, Decorator_9>): JSX.Element;
|
|
626
626
|
displayName: string;
|
|
627
627
|
};
|