@pixpilot/formily-shadcn 0.8.3 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -42
- package/dist/components/array-base/components/array-item-label.cjs +4 -7
- package/dist/components/array-base/components/array-item-label.js +4 -6
- package/dist/components/array-base/components/empty.cjs +2 -2
- package/dist/components/array-base/components/empty.d.cts +9 -0
- package/dist/components/array-base/components/empty.d.ts +9 -0
- package/dist/components/array-base/components/empty.js +2 -2
- package/dist/components/array-base/components/get-array-components.cjs +1 -1
- package/dist/components/array-base/components/get-array-components.js +1 -1
- package/dist/components/array-base/components/types.d.cts +2 -1
- package/dist/components/array-base/components/types.d.ts +2 -1
- package/dist/components/array-base/components/use-array-components-registry.cjs +5 -8
- package/dist/components/array-base/components/use-array-components-registry.d.cts +1 -0
- package/dist/components/array-base/components/use-array-components-registry.d.ts +1 -0
- package/dist/components/array-base/components/use-array-components-registry.js +5 -8
- package/dist/components/array-cards/array-cards.cjs +1 -4
- package/dist/components/array-cards/array-cards.js +1 -4
- package/dist/components/array-cards/item.cjs +5 -12
- package/dist/components/array-cards/item.js +5 -12
- package/dist/components/array-collapse/array-collapse.cjs +1 -4
- package/dist/components/array-collapse/array-collapse.js +1 -4
- package/dist/components/array-collapse/item.cjs +1 -4
- package/dist/components/array-collapse/item.js +1 -4
- package/dist/components/array-common/list-item.cjs +0 -4
- package/dist/components/array-common/list-item.js +1 -5
- package/dist/components/array-dialog/array-dialog.cjs +2 -5
- package/dist/components/array-dialog/array-dialog.js +2 -5
- package/dist/components/checkbox.d.ts +2 -2
- package/dist/components/date-picker.d.ts +3 -3
- package/dist/components/file-upload/file-upload-inline.d.cts +8 -8
- package/dist/components/file-upload/file-upload-inline.d.ts +8 -8
- package/dist/components/file-upload/file-upload.d.cts +8 -8
- package/dist/components/file-upload/file-upload.d.ts +8 -8
- package/dist/components/icon-picker.d.ts +3 -3
- package/dist/components/input.d.ts +2 -2
- package/dist/components/json-schema-form-renderer.cjs +2 -1
- package/dist/components/json-schema-form-renderer.js +2 -1
- package/dist/components/number-input.d.ts +2 -2
- package/dist/components/schema-field/index.cjs +3 -0
- package/dist/components/schema-field/index.d.cts +3 -0
- package/dist/components/schema-field/index.d.ts +3 -0
- package/dist/components/schema-field/index.js +3 -0
- package/dist/components/schema-field/schema-field-basics.cjs +54 -0
- package/dist/components/schema-field/schema-field-basics.d.cts +439 -0
- package/dist/components/schema-field/schema-field-basics.d.ts +439 -0
- package/dist/components/schema-field/schema-field-basics.js +51 -0
- package/dist/components/schema-field/schema-field-extended.cjs +28 -0
- package/dist/components/schema-field/schema-field-extended.d.cts +704 -0
- package/dist/components/schema-field/schema-field-extended.d.ts +704 -0
- package/dist/components/schema-field/schema-field-extended.js +25 -0
- package/dist/components/schema-field/schema-field.cjs +23 -0
- package/dist/components/schema-field/schema-field.d.cts +481 -0
- package/dist/components/schema-field/schema-field.d.ts +481 -0
- package/dist/components/schema-field/schema-field.js +19 -0
- package/dist/components/separator.d.cts +3 -3
- package/dist/components/separator.d.ts +3 -3
- package/dist/components/slider.d.cts +2 -2
- package/dist/components/slider.d.ts +2 -2
- package/dist/components/switch.d.cts +3 -3
- package/dist/components/switch.d.ts +3 -3
- package/dist/components/tags-input-inline.d.cts +3 -3
- package/dist/components/tags-input-inline.d.ts +3 -3
- package/dist/components/textarea.d.cts +2 -2
- package/dist/index.cjs +12 -7
- package/dist/index.d.cts +5 -3
- package/dist/index.d.ts +5 -3
- package/dist/index.js +8 -6
- package/dist/utils/transform-schema.cjs +1 -1
- package/dist/utils/transform-schema.js +1 -1
- package/package.json +8 -8
- package/dist/components/array-base/components/title.cjs +0 -17
- package/dist/components/array-base/components/title.js +0 -14
- package/dist/components/schema-field-extended.cjs +0 -25
- package/dist/components/schema-field-extended.d.cts +0 -630
- package/dist/components/schema-field-extended.d.ts +0 -630
- package/dist/components/schema-field-extended.js +0 -23
- package/dist/components/schema-field.cjs +0 -61
- package/dist/components/schema-field.d.cts +0 -471
- package/dist/components/schema-field.d.ts +0 -471
- package/dist/components/schema-field.js +0 -57
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { FileUpload } from "./file-upload/file-upload.js";
|
|
2
|
-
import { FileUploadInline } from "./file-upload/file-upload-inline.js";
|
|
3
|
-
import "./file-upload/index.js";
|
|
4
|
-
import { IconPicker } from "./icon-picker.js";
|
|
5
|
-
import { basicComponents } from "./schema-field.js";
|
|
6
|
-
import { RichTextEditor } from "./rich-text-editor.js";
|
|
7
|
-
import { createSchemaField } from "@formily/react";
|
|
8
|
-
|
|
9
|
-
//#region src/components/schema-field-extended.tsx
|
|
10
|
-
/**
|
|
11
|
-
* SchemaField with all Shadcn Formily components pre-registered
|
|
12
|
-
* Use this to render forms from JSON Schema
|
|
13
|
-
*/
|
|
14
|
-
const SchemaFieldExtended = createSchemaField({ components: {
|
|
15
|
-
FileUploadInline,
|
|
16
|
-
IconPicker,
|
|
17
|
-
FileUpload,
|
|
18
|
-
RichTextEditor,
|
|
19
|
-
...basicComponents
|
|
20
|
-
} });
|
|
21
|
-
|
|
22
|
-
//#endregion
|
|
23
|
-
export { SchemaFieldExtended };
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
const require_rolldown_runtime = require('../_virtual/rolldown_runtime.cjs');
|
|
2
|
-
const require_array_cards = require('./array-cards/array-cards.cjs');
|
|
3
|
-
require('./array-cards/index.cjs');
|
|
4
|
-
const require_array_collapse = require('./array-collapse/array-collapse.cjs');
|
|
5
|
-
require('./array-collapse/index.cjs');
|
|
6
|
-
const require_checkbox = require('./checkbox.cjs');
|
|
7
|
-
const require_column = require('./column.cjs');
|
|
8
|
-
const require_combobox = require('./combobox.cjs');
|
|
9
|
-
const require_date_picker = require('./date-picker.cjs');
|
|
10
|
-
const require_form_grid = require('./form-grid.cjs');
|
|
11
|
-
const require_form_item = require('./form-item.cjs');
|
|
12
|
-
const require_input = require('./input.cjs');
|
|
13
|
-
const require_array_dialog = require('./array-dialog/array-dialog.cjs');
|
|
14
|
-
require('./array-dialog/index.cjs');
|
|
15
|
-
const require_array_popover = require('./array-popover/array-popover.cjs');
|
|
16
|
-
require('./array-popover/index.cjs');
|
|
17
|
-
const require_hidden = require('./hidden.cjs');
|
|
18
|
-
const require_number_input = require('./number-input.cjs');
|
|
19
|
-
const require_object_container = require('./object-container.cjs');
|
|
20
|
-
const require_radio = require('./radio.cjs');
|
|
21
|
-
const require_row = require('./row.cjs');
|
|
22
|
-
const require_select = require('./select.cjs');
|
|
23
|
-
const require_separator = require('./separator.cjs');
|
|
24
|
-
const require_slider = require('./slider.cjs');
|
|
25
|
-
const require_switch = require('./switch.cjs');
|
|
26
|
-
const require_textarea = require('./textarea.cjs');
|
|
27
|
-
let __formily_react = require("@formily/react");
|
|
28
|
-
__formily_react = require_rolldown_runtime.__toESM(__formily_react);
|
|
29
|
-
let __pixpilot_shadcn_ui = require("@pixpilot/shadcn-ui");
|
|
30
|
-
__pixpilot_shadcn_ui = require_rolldown_runtime.__toESM(__pixpilot_shadcn_ui);
|
|
31
|
-
|
|
32
|
-
//#region src/components/schema-field.tsx
|
|
33
|
-
const basicComponents = {
|
|
34
|
-
FormItem: require_form_item.FormItem,
|
|
35
|
-
Hidden: require_hidden.Hidden,
|
|
36
|
-
Input: require_input.Input,
|
|
37
|
-
Textarea: require_textarea.Textarea,
|
|
38
|
-
NumberInput: require_number_input.NumberInput,
|
|
39
|
-
Checkbox: require_checkbox.Checkbox,
|
|
40
|
-
Radio: require_radio.ConnectedRadio,
|
|
41
|
-
Select: require_select.Select,
|
|
42
|
-
Switch: require_switch.Switch,
|
|
43
|
-
DatePicker: require_date_picker.DatePicker,
|
|
44
|
-
Row: require_row.Row,
|
|
45
|
-
Column: require_column.Column,
|
|
46
|
-
FormGrid: require_form_grid.FormGrid,
|
|
47
|
-
Combobox: require_combobox.Combobox,
|
|
48
|
-
TagsInput: __pixpilot_shadcn_ui.TagsInput,
|
|
49
|
-
Separator: require_separator.Separator,
|
|
50
|
-
Slider: require_slider.Slider,
|
|
51
|
-
ArrayCards: require_array_cards.ArrayCards,
|
|
52
|
-
ArrayDialog: require_array_dialog.ArrayDialog,
|
|
53
|
-
ArrayCollapse: require_array_collapse.ArrayCollapse,
|
|
54
|
-
ArrayPopover: require_array_popover.ArrayPopover,
|
|
55
|
-
ObjectContainer: require_object_container.ObjectContainer
|
|
56
|
-
};
|
|
57
|
-
const SchemaField = (0, __formily_react.createSchemaField)({ components: basicComponents });
|
|
58
|
-
|
|
59
|
-
//#endregion
|
|
60
|
-
exports.SchemaField = SchemaField;
|
|
61
|
-
exports.basicComponents = basicComponents;
|
|
@@ -1,471 +0,0 @@
|
|
|
1
|
-
import { ArrayComponentProps, ComposedArrayProps } from "./array-base/types.cjs";
|
|
2
|
-
import "./array-base/index.cjs";
|
|
3
|
-
import { Column } from "./column.cjs";
|
|
4
|
-
import { FormGrid } from "./form-grid.cjs";
|
|
5
|
-
import { FormItemProps } from "./form-item.cjs";
|
|
6
|
-
import { Row } from "./row.cjs";
|
|
7
|
-
import { ObjectContainerProps } from "./object-container.cjs";
|
|
8
|
-
import * as _formily_react0 from "@formily/react";
|
|
9
|
-
import * as react14 from "react";
|
|
10
|
-
import * as _formily_core0 from "@formily/core";
|
|
11
|
-
import * as _pixpilot_shadcn_ui0 from "@pixpilot/shadcn-ui";
|
|
12
|
-
import { TagsInput } from "@pixpilot/shadcn-ui";
|
|
13
|
-
import * as _radix_ui_react_checkbox0 from "@radix-ui/react-checkbox";
|
|
14
|
-
import * as react_day_picker0 from "react-day-picker";
|
|
15
|
-
import * as _radix_ui_react_switch0 from "@radix-ui/react-switch";
|
|
16
|
-
import * as _radix_ui_react_separator0 from "@radix-ui/react-separator";
|
|
17
|
-
|
|
18
|
-
//#region src/components/schema-field.d.ts
|
|
19
|
-
declare const basicComponents: {
|
|
20
|
-
FormItem: react14.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
21
|
-
children?: react14.ReactNode | undefined;
|
|
22
|
-
}>, "ref"> & react14.RefAttributes<unknown>>;
|
|
23
|
-
Hidden: react14.ForwardRefExoticComponent<Partial<{
|
|
24
|
-
children?: React.ReactNode;
|
|
25
|
-
value?: string;
|
|
26
|
-
}> & react14.RefAttributes<unknown>>;
|
|
27
|
-
Input: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
28
|
-
Textarea: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLTextAreaElement> & react14.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
29
|
-
NumberInput: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
30
|
-
Checkbox: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
31
|
-
Radio: react14.FC;
|
|
32
|
-
Select: react14.FC;
|
|
33
|
-
Switch: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
34
|
-
DatePicker: react14.ForwardRefExoticComponent<Partial<{
|
|
35
|
-
value?: Date;
|
|
36
|
-
onChange?: (date: Date | undefined) => void;
|
|
37
|
-
placeholder?: string;
|
|
38
|
-
} & Omit<{
|
|
39
|
-
value?: Date;
|
|
40
|
-
onChange?: (date: Date | undefined) => void;
|
|
41
|
-
placeholder?: string;
|
|
42
|
-
} & Omit<react_day_picker0.DayPickerProps & {
|
|
43
|
-
buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
|
|
44
|
-
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react14.RefAttributes<unknown>>;
|
|
45
|
-
Row: typeof Row;
|
|
46
|
-
Column: typeof Column;
|
|
47
|
-
FormGrid: typeof FormGrid;
|
|
48
|
-
Combobox: react14.FC;
|
|
49
|
-
TagsInput: typeof TagsInput;
|
|
50
|
-
Separator: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react14.RefAttributes<HTMLDivElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
51
|
-
Slider: react14.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react14.RefAttributes<unknown>>;
|
|
52
|
-
ArrayCards: ComposedArrayProps;
|
|
53
|
-
ArrayDialog: react14.FC<ArrayComponentProps>;
|
|
54
|
-
ArrayCollapse: react14.FC<ArrayComponentProps & {
|
|
55
|
-
defaultActiveKey?: Array<string | number>;
|
|
56
|
-
mode?: "accordion" | "multiple";
|
|
57
|
-
}>;
|
|
58
|
-
ArrayPopover: react14.FC<ArrayComponentProps>;
|
|
59
|
-
ObjectContainer: react14.FC<ObjectContainerProps>;
|
|
60
|
-
};
|
|
61
|
-
declare const SchemaField: {
|
|
62
|
-
<Decorator extends _formily_react0.JSXComponent, Component extends _formily_react0.JSXComponent>(props: _formily_react0.ISchemaFieldProps<Decorator, Component, _formily_core0.ObjectField<Decorator, Component>>): JSX.Element;
|
|
63
|
-
displayName: string;
|
|
64
|
-
Markup: {
|
|
65
|
-
<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", 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">(props: _formily_react0.ISchemaMarkupFieldProps<{
|
|
66
|
-
FormItem: react14.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
67
|
-
children?: react14.ReactNode | undefined;
|
|
68
|
-
}>, "ref"> & react14.RefAttributes<unknown>>;
|
|
69
|
-
Hidden: react14.ForwardRefExoticComponent<Partial<{
|
|
70
|
-
children?: React.ReactNode;
|
|
71
|
-
value?: string;
|
|
72
|
-
}> & react14.RefAttributes<unknown>>;
|
|
73
|
-
Input: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
74
|
-
Textarea: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLTextAreaElement> & react14.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
75
|
-
NumberInput: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
76
|
-
Checkbox: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
77
|
-
Radio: react14.FC;
|
|
78
|
-
Select: react14.FC;
|
|
79
|
-
Switch: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
80
|
-
DatePicker: react14.ForwardRefExoticComponent<Partial<{
|
|
81
|
-
value?: Date;
|
|
82
|
-
onChange?: (date: Date | undefined) => void;
|
|
83
|
-
placeholder?: string;
|
|
84
|
-
} & Omit<{
|
|
85
|
-
value?: Date;
|
|
86
|
-
onChange?: (date: Date | undefined) => void;
|
|
87
|
-
placeholder?: string;
|
|
88
|
-
} & Omit<react_day_picker0.DayPickerProps & {
|
|
89
|
-
buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
|
|
90
|
-
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react14.RefAttributes<unknown>>;
|
|
91
|
-
Row: typeof Row;
|
|
92
|
-
Column: typeof Column;
|
|
93
|
-
FormGrid: typeof FormGrid;
|
|
94
|
-
Combobox: react14.FC;
|
|
95
|
-
TagsInput: typeof TagsInput;
|
|
96
|
-
Separator: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react14.RefAttributes<HTMLDivElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
97
|
-
Slider: react14.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react14.RefAttributes<unknown>>;
|
|
98
|
-
ArrayCards: ComposedArrayProps;
|
|
99
|
-
ArrayDialog: react14.FC<ArrayComponentProps>;
|
|
100
|
-
ArrayCollapse: react14.FC<ArrayComponentProps & {
|
|
101
|
-
defaultActiveKey?: Array<string | number>;
|
|
102
|
-
mode?: "accordion" | "multiple";
|
|
103
|
-
}>;
|
|
104
|
-
ArrayPopover: react14.FC<ArrayComponentProps>;
|
|
105
|
-
ObjectContainer: react14.FC<ObjectContainerProps>;
|
|
106
|
-
}, Component_1, Decorator_1>): JSX.Element;
|
|
107
|
-
displayName: string;
|
|
108
|
-
};
|
|
109
|
-
String: {
|
|
110
|
-
<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", 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">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
111
|
-
FormItem: react14.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
112
|
-
children?: react14.ReactNode | undefined;
|
|
113
|
-
}>, "ref"> & react14.RefAttributes<unknown>>;
|
|
114
|
-
Hidden: react14.ForwardRefExoticComponent<Partial<{
|
|
115
|
-
children?: React.ReactNode;
|
|
116
|
-
value?: string;
|
|
117
|
-
}> & react14.RefAttributes<unknown>>;
|
|
118
|
-
Input: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
119
|
-
Textarea: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLTextAreaElement> & react14.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
120
|
-
NumberInput: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
121
|
-
Checkbox: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
122
|
-
Radio: react14.FC;
|
|
123
|
-
Select: react14.FC;
|
|
124
|
-
Switch: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
125
|
-
DatePicker: react14.ForwardRefExoticComponent<Partial<{
|
|
126
|
-
value?: Date;
|
|
127
|
-
onChange?: (date: Date | undefined) => void;
|
|
128
|
-
placeholder?: string;
|
|
129
|
-
} & Omit<{
|
|
130
|
-
value?: Date;
|
|
131
|
-
onChange?: (date: Date | undefined) => void;
|
|
132
|
-
placeholder?: string;
|
|
133
|
-
} & Omit<react_day_picker0.DayPickerProps & {
|
|
134
|
-
buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
|
|
135
|
-
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react14.RefAttributes<unknown>>;
|
|
136
|
-
Row: typeof Row;
|
|
137
|
-
Column: typeof Column;
|
|
138
|
-
FormGrid: typeof FormGrid;
|
|
139
|
-
Combobox: react14.FC;
|
|
140
|
-
TagsInput: typeof TagsInput;
|
|
141
|
-
Separator: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react14.RefAttributes<HTMLDivElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
142
|
-
Slider: react14.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react14.RefAttributes<unknown>>;
|
|
143
|
-
ArrayCards: ComposedArrayProps;
|
|
144
|
-
ArrayDialog: react14.FC<ArrayComponentProps>;
|
|
145
|
-
ArrayCollapse: react14.FC<ArrayComponentProps & {
|
|
146
|
-
defaultActiveKey?: Array<string | number>;
|
|
147
|
-
mode?: "accordion" | "multiple";
|
|
148
|
-
}>;
|
|
149
|
-
ArrayPopover: react14.FC<ArrayComponentProps>;
|
|
150
|
-
ObjectContainer: react14.FC<ObjectContainerProps>;
|
|
151
|
-
}, Component_2, Decorator_2>): JSX.Element;
|
|
152
|
-
displayName: string;
|
|
153
|
-
};
|
|
154
|
-
Object: {
|
|
155
|
-
<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", 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">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
156
|
-
FormItem: react14.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
157
|
-
children?: react14.ReactNode | undefined;
|
|
158
|
-
}>, "ref"> & react14.RefAttributes<unknown>>;
|
|
159
|
-
Hidden: react14.ForwardRefExoticComponent<Partial<{
|
|
160
|
-
children?: React.ReactNode;
|
|
161
|
-
value?: string;
|
|
162
|
-
}> & react14.RefAttributes<unknown>>;
|
|
163
|
-
Input: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
164
|
-
Textarea: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLTextAreaElement> & react14.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
165
|
-
NumberInput: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
166
|
-
Checkbox: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
167
|
-
Radio: react14.FC;
|
|
168
|
-
Select: react14.FC;
|
|
169
|
-
Switch: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
170
|
-
DatePicker: react14.ForwardRefExoticComponent<Partial<{
|
|
171
|
-
value?: Date;
|
|
172
|
-
onChange?: (date: Date | undefined) => void;
|
|
173
|
-
placeholder?: string;
|
|
174
|
-
} & Omit<{
|
|
175
|
-
value?: Date;
|
|
176
|
-
onChange?: (date: Date | undefined) => void;
|
|
177
|
-
placeholder?: string;
|
|
178
|
-
} & Omit<react_day_picker0.DayPickerProps & {
|
|
179
|
-
buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
|
|
180
|
-
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react14.RefAttributes<unknown>>;
|
|
181
|
-
Row: typeof Row;
|
|
182
|
-
Column: typeof Column;
|
|
183
|
-
FormGrid: typeof FormGrid;
|
|
184
|
-
Combobox: react14.FC;
|
|
185
|
-
TagsInput: typeof TagsInput;
|
|
186
|
-
Separator: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react14.RefAttributes<HTMLDivElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
187
|
-
Slider: react14.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react14.RefAttributes<unknown>>;
|
|
188
|
-
ArrayCards: ComposedArrayProps;
|
|
189
|
-
ArrayDialog: react14.FC<ArrayComponentProps>;
|
|
190
|
-
ArrayCollapse: react14.FC<ArrayComponentProps & {
|
|
191
|
-
defaultActiveKey?: Array<string | number>;
|
|
192
|
-
mode?: "accordion" | "multiple";
|
|
193
|
-
}>;
|
|
194
|
-
ArrayPopover: react14.FC<ArrayComponentProps>;
|
|
195
|
-
ObjectContainer: react14.FC<ObjectContainerProps>;
|
|
196
|
-
}, Component_3, Decorator_3>): JSX.Element;
|
|
197
|
-
displayName: string;
|
|
198
|
-
};
|
|
199
|
-
Array: {
|
|
200
|
-
<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", 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">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
201
|
-
FormItem: react14.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
202
|
-
children?: react14.ReactNode | undefined;
|
|
203
|
-
}>, "ref"> & react14.RefAttributes<unknown>>;
|
|
204
|
-
Hidden: react14.ForwardRefExoticComponent<Partial<{
|
|
205
|
-
children?: React.ReactNode;
|
|
206
|
-
value?: string;
|
|
207
|
-
}> & react14.RefAttributes<unknown>>;
|
|
208
|
-
Input: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
209
|
-
Textarea: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLTextAreaElement> & react14.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
210
|
-
NumberInput: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
211
|
-
Checkbox: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
212
|
-
Radio: react14.FC;
|
|
213
|
-
Select: react14.FC;
|
|
214
|
-
Switch: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
215
|
-
DatePicker: react14.ForwardRefExoticComponent<Partial<{
|
|
216
|
-
value?: Date;
|
|
217
|
-
onChange?: (date: Date | undefined) => void;
|
|
218
|
-
placeholder?: string;
|
|
219
|
-
} & Omit<{
|
|
220
|
-
value?: Date;
|
|
221
|
-
onChange?: (date: Date | undefined) => void;
|
|
222
|
-
placeholder?: string;
|
|
223
|
-
} & Omit<react_day_picker0.DayPickerProps & {
|
|
224
|
-
buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
|
|
225
|
-
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react14.RefAttributes<unknown>>;
|
|
226
|
-
Row: typeof Row;
|
|
227
|
-
Column: typeof Column;
|
|
228
|
-
FormGrid: typeof FormGrid;
|
|
229
|
-
Combobox: react14.FC;
|
|
230
|
-
TagsInput: typeof TagsInput;
|
|
231
|
-
Separator: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react14.RefAttributes<HTMLDivElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
232
|
-
Slider: react14.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react14.RefAttributes<unknown>>;
|
|
233
|
-
ArrayCards: ComposedArrayProps;
|
|
234
|
-
ArrayDialog: react14.FC<ArrayComponentProps>;
|
|
235
|
-
ArrayCollapse: react14.FC<ArrayComponentProps & {
|
|
236
|
-
defaultActiveKey?: Array<string | number>;
|
|
237
|
-
mode?: "accordion" | "multiple";
|
|
238
|
-
}>;
|
|
239
|
-
ArrayPopover: react14.FC<ArrayComponentProps>;
|
|
240
|
-
ObjectContainer: react14.FC<ObjectContainerProps>;
|
|
241
|
-
}, Component_4, Decorator_4>): JSX.Element;
|
|
242
|
-
displayName: string;
|
|
243
|
-
};
|
|
244
|
-
Boolean: {
|
|
245
|
-
<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", 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">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
246
|
-
FormItem: react14.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
247
|
-
children?: react14.ReactNode | undefined;
|
|
248
|
-
}>, "ref"> & react14.RefAttributes<unknown>>;
|
|
249
|
-
Hidden: react14.ForwardRefExoticComponent<Partial<{
|
|
250
|
-
children?: React.ReactNode;
|
|
251
|
-
value?: string;
|
|
252
|
-
}> & react14.RefAttributes<unknown>>;
|
|
253
|
-
Input: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
254
|
-
Textarea: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLTextAreaElement> & react14.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
255
|
-
NumberInput: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
256
|
-
Checkbox: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
257
|
-
Radio: react14.FC;
|
|
258
|
-
Select: react14.FC;
|
|
259
|
-
Switch: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
260
|
-
DatePicker: react14.ForwardRefExoticComponent<Partial<{
|
|
261
|
-
value?: Date;
|
|
262
|
-
onChange?: (date: Date | undefined) => void;
|
|
263
|
-
placeholder?: string;
|
|
264
|
-
} & Omit<{
|
|
265
|
-
value?: Date;
|
|
266
|
-
onChange?: (date: Date | undefined) => void;
|
|
267
|
-
placeholder?: string;
|
|
268
|
-
} & Omit<react_day_picker0.DayPickerProps & {
|
|
269
|
-
buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
|
|
270
|
-
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react14.RefAttributes<unknown>>;
|
|
271
|
-
Row: typeof Row;
|
|
272
|
-
Column: typeof Column;
|
|
273
|
-
FormGrid: typeof FormGrid;
|
|
274
|
-
Combobox: react14.FC;
|
|
275
|
-
TagsInput: typeof TagsInput;
|
|
276
|
-
Separator: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react14.RefAttributes<HTMLDivElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
277
|
-
Slider: react14.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react14.RefAttributes<unknown>>;
|
|
278
|
-
ArrayCards: ComposedArrayProps;
|
|
279
|
-
ArrayDialog: react14.FC<ArrayComponentProps>;
|
|
280
|
-
ArrayCollapse: react14.FC<ArrayComponentProps & {
|
|
281
|
-
defaultActiveKey?: Array<string | number>;
|
|
282
|
-
mode?: "accordion" | "multiple";
|
|
283
|
-
}>;
|
|
284
|
-
ArrayPopover: react14.FC<ArrayComponentProps>;
|
|
285
|
-
ObjectContainer: react14.FC<ObjectContainerProps>;
|
|
286
|
-
}, Component_5, Decorator_5>): JSX.Element;
|
|
287
|
-
displayName: string;
|
|
288
|
-
};
|
|
289
|
-
Date: {
|
|
290
|
-
<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", 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">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
291
|
-
FormItem: react14.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
292
|
-
children?: react14.ReactNode | undefined;
|
|
293
|
-
}>, "ref"> & react14.RefAttributes<unknown>>;
|
|
294
|
-
Hidden: react14.ForwardRefExoticComponent<Partial<{
|
|
295
|
-
children?: React.ReactNode;
|
|
296
|
-
value?: string;
|
|
297
|
-
}> & react14.RefAttributes<unknown>>;
|
|
298
|
-
Input: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
299
|
-
Textarea: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLTextAreaElement> & react14.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
300
|
-
NumberInput: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
301
|
-
Checkbox: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
302
|
-
Radio: react14.FC;
|
|
303
|
-
Select: react14.FC;
|
|
304
|
-
Switch: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
305
|
-
DatePicker: react14.ForwardRefExoticComponent<Partial<{
|
|
306
|
-
value?: Date;
|
|
307
|
-
onChange?: (date: Date | undefined) => void;
|
|
308
|
-
placeholder?: string;
|
|
309
|
-
} & Omit<{
|
|
310
|
-
value?: Date;
|
|
311
|
-
onChange?: (date: Date | undefined) => void;
|
|
312
|
-
placeholder?: string;
|
|
313
|
-
} & Omit<react_day_picker0.DayPickerProps & {
|
|
314
|
-
buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
|
|
315
|
-
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react14.RefAttributes<unknown>>;
|
|
316
|
-
Row: typeof Row;
|
|
317
|
-
Column: typeof Column;
|
|
318
|
-
FormGrid: typeof FormGrid;
|
|
319
|
-
Combobox: react14.FC;
|
|
320
|
-
TagsInput: typeof TagsInput;
|
|
321
|
-
Separator: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react14.RefAttributes<HTMLDivElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
322
|
-
Slider: react14.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react14.RefAttributes<unknown>>;
|
|
323
|
-
ArrayCards: ComposedArrayProps;
|
|
324
|
-
ArrayDialog: react14.FC<ArrayComponentProps>;
|
|
325
|
-
ArrayCollapse: react14.FC<ArrayComponentProps & {
|
|
326
|
-
defaultActiveKey?: Array<string | number>;
|
|
327
|
-
mode?: "accordion" | "multiple";
|
|
328
|
-
}>;
|
|
329
|
-
ArrayPopover: react14.FC<ArrayComponentProps>;
|
|
330
|
-
ObjectContainer: react14.FC<ObjectContainerProps>;
|
|
331
|
-
}, Component_6, Decorator_6>): JSX.Element;
|
|
332
|
-
displayName: string;
|
|
333
|
-
};
|
|
334
|
-
DateTime: {
|
|
335
|
-
<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", 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">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
336
|
-
FormItem: react14.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
337
|
-
children?: react14.ReactNode | undefined;
|
|
338
|
-
}>, "ref"> & react14.RefAttributes<unknown>>;
|
|
339
|
-
Hidden: react14.ForwardRefExoticComponent<Partial<{
|
|
340
|
-
children?: React.ReactNode;
|
|
341
|
-
value?: string;
|
|
342
|
-
}> & react14.RefAttributes<unknown>>;
|
|
343
|
-
Input: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
344
|
-
Textarea: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLTextAreaElement> & react14.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
345
|
-
NumberInput: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
346
|
-
Checkbox: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
347
|
-
Radio: react14.FC;
|
|
348
|
-
Select: react14.FC;
|
|
349
|
-
Switch: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
350
|
-
DatePicker: react14.ForwardRefExoticComponent<Partial<{
|
|
351
|
-
value?: Date;
|
|
352
|
-
onChange?: (date: Date | undefined) => void;
|
|
353
|
-
placeholder?: string;
|
|
354
|
-
} & Omit<{
|
|
355
|
-
value?: Date;
|
|
356
|
-
onChange?: (date: Date | undefined) => void;
|
|
357
|
-
placeholder?: string;
|
|
358
|
-
} & Omit<react_day_picker0.DayPickerProps & {
|
|
359
|
-
buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
|
|
360
|
-
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react14.RefAttributes<unknown>>;
|
|
361
|
-
Row: typeof Row;
|
|
362
|
-
Column: typeof Column;
|
|
363
|
-
FormGrid: typeof FormGrid;
|
|
364
|
-
Combobox: react14.FC;
|
|
365
|
-
TagsInput: typeof TagsInput;
|
|
366
|
-
Separator: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react14.RefAttributes<HTMLDivElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
367
|
-
Slider: react14.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react14.RefAttributes<unknown>>;
|
|
368
|
-
ArrayCards: ComposedArrayProps;
|
|
369
|
-
ArrayDialog: react14.FC<ArrayComponentProps>;
|
|
370
|
-
ArrayCollapse: react14.FC<ArrayComponentProps & {
|
|
371
|
-
defaultActiveKey?: Array<string | number>;
|
|
372
|
-
mode?: "accordion" | "multiple";
|
|
373
|
-
}>;
|
|
374
|
-
ArrayPopover: react14.FC<ArrayComponentProps>;
|
|
375
|
-
ObjectContainer: react14.FC<ObjectContainerProps>;
|
|
376
|
-
}, Component_7, Decorator_7>): JSX.Element;
|
|
377
|
-
displayName: string;
|
|
378
|
-
};
|
|
379
|
-
Void: {
|
|
380
|
-
<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", 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">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
381
|
-
FormItem: react14.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
382
|
-
children?: react14.ReactNode | undefined;
|
|
383
|
-
}>, "ref"> & react14.RefAttributes<unknown>>;
|
|
384
|
-
Hidden: react14.ForwardRefExoticComponent<Partial<{
|
|
385
|
-
children?: React.ReactNode;
|
|
386
|
-
value?: string;
|
|
387
|
-
}> & react14.RefAttributes<unknown>>;
|
|
388
|
-
Input: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
389
|
-
Textarea: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLTextAreaElement> & react14.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
390
|
-
NumberInput: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
391
|
-
Checkbox: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
392
|
-
Radio: react14.FC;
|
|
393
|
-
Select: react14.FC;
|
|
394
|
-
Switch: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
395
|
-
DatePicker: react14.ForwardRefExoticComponent<Partial<{
|
|
396
|
-
value?: Date;
|
|
397
|
-
onChange?: (date: Date | undefined) => void;
|
|
398
|
-
placeholder?: string;
|
|
399
|
-
} & Omit<{
|
|
400
|
-
value?: Date;
|
|
401
|
-
onChange?: (date: Date | undefined) => void;
|
|
402
|
-
placeholder?: string;
|
|
403
|
-
} & Omit<react_day_picker0.DayPickerProps & {
|
|
404
|
-
buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
|
|
405
|
-
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react14.RefAttributes<unknown>>;
|
|
406
|
-
Row: typeof Row;
|
|
407
|
-
Column: typeof Column;
|
|
408
|
-
FormGrid: typeof FormGrid;
|
|
409
|
-
Combobox: react14.FC;
|
|
410
|
-
TagsInput: typeof TagsInput;
|
|
411
|
-
Separator: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react14.RefAttributes<HTMLDivElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
412
|
-
Slider: react14.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react14.RefAttributes<unknown>>;
|
|
413
|
-
ArrayCards: ComposedArrayProps;
|
|
414
|
-
ArrayDialog: react14.FC<ArrayComponentProps>;
|
|
415
|
-
ArrayCollapse: react14.FC<ArrayComponentProps & {
|
|
416
|
-
defaultActiveKey?: Array<string | number>;
|
|
417
|
-
mode?: "accordion" | "multiple";
|
|
418
|
-
}>;
|
|
419
|
-
ArrayPopover: react14.FC<ArrayComponentProps>;
|
|
420
|
-
ObjectContainer: react14.FC<ObjectContainerProps>;
|
|
421
|
-
}, Component_8, Decorator_8>): JSX.Element;
|
|
422
|
-
displayName: string;
|
|
423
|
-
};
|
|
424
|
-
Number: {
|
|
425
|
-
<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", 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">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
426
|
-
FormItem: react14.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
427
|
-
children?: react14.ReactNode | undefined;
|
|
428
|
-
}>, "ref"> & react14.RefAttributes<unknown>>;
|
|
429
|
-
Hidden: react14.ForwardRefExoticComponent<Partial<{
|
|
430
|
-
children?: React.ReactNode;
|
|
431
|
-
value?: string;
|
|
432
|
-
}> & react14.RefAttributes<unknown>>;
|
|
433
|
-
Input: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
434
|
-
Textarea: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLTextAreaElement> & react14.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
435
|
-
NumberInput: react14.ForwardRefExoticComponent<Omit<Partial<react14.ClassAttributes<HTMLInputElement> & react14.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
436
|
-
Checkbox: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
437
|
-
Radio: react14.FC;
|
|
438
|
-
Select: react14.FC;
|
|
439
|
-
Switch: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react14.RefAttributes<HTMLButtonElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
440
|
-
DatePicker: react14.ForwardRefExoticComponent<Partial<{
|
|
441
|
-
value?: Date;
|
|
442
|
-
onChange?: (date: Date | undefined) => void;
|
|
443
|
-
placeholder?: string;
|
|
444
|
-
} & Omit<{
|
|
445
|
-
value?: Date;
|
|
446
|
-
onChange?: (date: Date | undefined) => void;
|
|
447
|
-
placeholder?: string;
|
|
448
|
-
} & Omit<react_day_picker0.DayPickerProps & {
|
|
449
|
-
buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
|
|
450
|
-
}, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react14.RefAttributes<unknown>>;
|
|
451
|
-
Row: typeof Row;
|
|
452
|
-
Column: typeof Column;
|
|
453
|
-
FormGrid: typeof FormGrid;
|
|
454
|
-
Combobox: react14.FC;
|
|
455
|
-
TagsInput: typeof TagsInput;
|
|
456
|
-
Separator: react14.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react14.RefAttributes<HTMLDivElement>>, "ref"> & react14.RefAttributes<unknown>>;
|
|
457
|
-
Slider: react14.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.SliderProps>, "ref"> & react14.RefAttributes<unknown>>;
|
|
458
|
-
ArrayCards: ComposedArrayProps;
|
|
459
|
-
ArrayDialog: react14.FC<ArrayComponentProps>;
|
|
460
|
-
ArrayCollapse: react14.FC<ArrayComponentProps & {
|
|
461
|
-
defaultActiveKey?: Array<string | number>;
|
|
462
|
-
mode?: "accordion" | "multiple";
|
|
463
|
-
}>;
|
|
464
|
-
ArrayPopover: react14.FC<ArrayComponentProps>;
|
|
465
|
-
ObjectContainer: react14.FC<ObjectContainerProps>;
|
|
466
|
-
}, Component_9, Decorator_9>): JSX.Element;
|
|
467
|
-
displayName: string;
|
|
468
|
-
};
|
|
469
|
-
};
|
|
470
|
-
//#endregion
|
|
471
|
-
export { SchemaField, basicComponents };
|