@pixpilot/formily-shadcn 1.14.2 → 1.15.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/dist/components/array-base/mcp.js +53 -0
- package/dist/components/array-cards/Item.cjs +2 -3
- package/dist/components/array-cards/Item.js +2 -3
- package/dist/components/array-cards/mcp.js +54 -0
- package/dist/components/array-collapse/Item.cjs +2 -3
- package/dist/components/array-collapse/Item.js +2 -3
- package/dist/components/array-collapse/mcp.js +55 -0
- package/dist/components/array-common/ArrayItemDraftFields.cjs +1 -15
- package/dist/components/array-common/ArrayItemDraftFields.js +1 -15
- package/dist/components/array-common/ListItem.cjs +20 -30
- package/dist/components/array-common/ListItem.js +20 -30
- package/dist/components/array-common/array-mcp-props.js +26 -0
- package/dist/components/array-common/index.cjs +1 -0
- package/dist/components/array-common/index.js +1 -0
- package/dist/components/array-common/use-array-item-wrapper-props.cjs +35 -0
- package/dist/components/array-common/use-array-item-wrapper-props.js +32 -0
- package/dist/components/array-dialog/mcp.js +58 -0
- package/dist/components/array-inline/Item.cjs +2 -3
- package/dist/components/array-inline/Item.js +2 -3
- package/dist/components/array-inline/mcp.js +46 -0
- package/dist/components/array-popover/mcp.js +52 -0
- package/dist/components/array-sortable/mcp.js +44 -0
- package/dist/components/array-tags/mcp.js +70 -0
- package/dist/components/array-toggle-group/mcp.js +53 -0
- package/dist/components/{Checkbox.cjs → checkbox/Checkbox.cjs} +3 -3
- package/dist/components/checkbox/Checkbox.d.cts +12 -0
- package/dist/components/checkbox/Checkbox.d.ts +12 -0
- package/dist/components/{Checkbox.js → checkbox/Checkbox.js} +2 -2
- package/dist/components/checkbox/index.cjs +1 -0
- package/dist/components/checkbox/index.d.cts +1 -0
- package/dist/components/checkbox/index.d.ts +1 -0
- package/dist/components/checkbox/index.js +1 -0
- package/dist/components/checkbox/mcp.js +41 -0
- package/dist/components/color-picker/mcp.js +59 -0
- package/dist/components/{ColorSelect.cjs → color-select/ColorSelect.cjs} +2 -2
- package/dist/components/color-select/ColorSelect.d.cts +7 -0
- package/dist/components/color-select/ColorSelect.d.ts +7 -0
- package/dist/components/{ColorSelect.js → color-select/ColorSelect.js} +1 -1
- package/dist/components/color-select/index.cjs +1 -0
- package/dist/components/color-select/index.d.cts +1 -0
- package/dist/components/color-select/index.d.ts +1 -0
- package/dist/components/color-select/index.js +1 -0
- package/dist/components/color-select/mcp.js +46 -0
- package/dist/components/{Column.cjs → column/Column.cjs} +2 -2
- package/dist/components/{Column.d.cts → column/Column.d.cts} +2 -2
- package/dist/components/{Column.d.ts → column/Column.d.ts} +2 -2
- package/dist/components/{Column.js → column/Column.js} +1 -1
- package/dist/components/column/index.cjs +1 -0
- package/dist/components/column/index.d.cts +1 -0
- package/dist/components/column/index.d.ts +1 -0
- package/dist/components/column/index.js +1 -0
- package/dist/components/column/mcp.js +36 -0
- package/dist/components/{Combobox.cjs → combobox/Combobox.cjs} +2 -2
- package/dist/components/combobox/Combobox.d.cts +7 -0
- package/dist/components/combobox/Combobox.d.ts +7 -0
- package/dist/components/{Combobox.js → combobox/Combobox.js} +1 -1
- package/dist/components/combobox/index.cjs +1 -0
- package/dist/components/combobox/index.d.cts +1 -0
- package/dist/components/combobox/index.d.ts +1 -0
- package/dist/components/combobox/index.js +1 -0
- package/dist/components/combobox/mcp.js +48 -0
- package/dist/components/{DatePicker.cjs → date-picker/DatePicker.cjs} +2 -2
- package/dist/components/{DatePicker.d.cts → date-picker/DatePicker.d.cts} +5 -4
- package/dist/components/{DatePicker.d.ts → date-picker/DatePicker.d.ts} +5 -4
- package/dist/components/{DatePicker.js → date-picker/DatePicker.js} +1 -1
- package/dist/components/date-picker/index.cjs +1 -0
- package/dist/components/date-picker/index.d.cts +1 -0
- package/dist/components/date-picker/index.d.ts +1 -0
- package/dist/components/date-picker/index.js +1 -0
- package/dist/components/date-picker/mcp.js +104 -0
- package/dist/components/file-upload/mcp.js +62 -0
- package/dist/components/{Form.cjs → form/Form.cjs} +6 -5
- package/dist/components/{Form.d.cts → form/Form.d.cts} +4 -4
- package/dist/components/{Form.d.ts → form/Form.d.ts} +4 -4
- package/dist/components/{Form.js → form/Form.js} +5 -4
- package/dist/components/form/index.cjs +1 -0
- package/dist/components/form/index.d.cts +1 -0
- package/dist/components/form/index.d.ts +1 -0
- package/dist/components/form/index.js +1 -0
- package/dist/components/form/mcp.js +31 -0
- package/dist/components/{FormGrid.cjs → form-grid/FormGrid.cjs} +2 -2
- package/dist/components/{FormGrid.d.cts → form-grid/FormGrid.d.cts} +2 -2
- package/dist/components/{FormGrid.d.ts → form-grid/FormGrid.d.ts} +2 -2
- package/dist/components/{FormGrid.js → form-grid/FormGrid.js} +1 -1
- package/dist/components/form-grid/index.cjs +1 -0
- package/dist/components/form-grid/index.d.cts +1 -0
- package/dist/components/form-grid/index.d.ts +1 -0
- package/dist/components/form-grid/index.js +1 -0
- package/dist/components/form-grid/mcp.js +35 -0
- package/dist/components/form-item/ConnectedFormItem.d.cts +4 -4
- package/dist/components/form-item/ConnectedFormItem.d.ts +4 -4
- package/dist/components/form-item/mcp.js +46 -0
- package/dist/components/{FormItemContainer.cjs → form-item-container/FormItemContainer.cjs} +5 -5
- package/dist/components/{FormItemContainer.js → form-item-container/FormItemContainer.js} +4 -4
- package/dist/components/form-item-container/index.cjs +1 -0
- package/dist/components/form-item-container/index.js +1 -0
- package/dist/components/form-item-container/mcp.js +36 -0
- package/dist/components/{Hidden.cjs → hidden/Hidden.cjs} +2 -2
- package/dist/components/hidden/Hidden.d.cts +9 -0
- package/dist/components/hidden/Hidden.d.ts +9 -0
- package/dist/components/{Hidden.js → hidden/Hidden.js} +1 -1
- package/dist/components/hidden/index.cjs +1 -0
- package/dist/components/hidden/index.d.cts +1 -0
- package/dist/components/hidden/index.d.ts +1 -0
- package/dist/components/hidden/index.js +1 -0
- package/dist/components/hidden/mcp.js +36 -0
- package/dist/components/{IconPicker.cjs → icon-picker/IconPicker.cjs} +4 -4
- package/dist/components/{IconPicker.d.cts → icon-picker/IconPicker.d.cts} +7 -7
- package/dist/components/icon-picker/IconPicker.d.ts +15 -0
- package/dist/components/{IconPicker.js → icon-picker/IconPicker.js} +3 -3
- package/dist/components/icon-picker/index.cjs +1 -0
- package/dist/components/icon-picker/index.d.cts +1 -0
- package/dist/components/icon-picker/index.d.ts +1 -0
- package/dist/components/icon-picker/index.js +1 -0
- package/dist/components/icon-picker/mcp.js +48 -0
- package/dist/components/{IconToggle.cjs → icon-toggle/IconToggle.cjs} +3 -3
- package/dist/components/icon-toggle/IconToggle.d.cts +12 -0
- package/dist/components/icon-toggle/IconToggle.d.ts +12 -0
- package/dist/components/{IconToggle.js → icon-toggle/IconToggle.js} +2 -2
- package/dist/components/icon-toggle/index.cjs +1 -0
- package/dist/components/icon-toggle/index.d.cts +1 -0
- package/dist/components/icon-toggle/index.d.ts +1 -0
- package/dist/components/icon-toggle/index.js +1 -0
- package/dist/components/icon-toggle/mcp.js +45 -0
- package/dist/components/{Input.cjs → input/Input.cjs} +2 -2
- package/dist/components/input/Input.d.cts +12 -0
- package/dist/components/input/Input.d.ts +12 -0
- package/dist/components/{Input.js → input/Input.js} +1 -1
- package/dist/components/input/index.cjs +1 -0
- package/dist/components/input/index.d.cts +1 -0
- package/dist/components/input/index.d.ts +1 -0
- package/dist/components/input/index.js +1 -0
- package/dist/components/input/mcp.js +41 -0
- package/dist/components/json-schema-form-renderer/JsonSchemaFormRenderer.cjs +2 -1
- package/dist/components/json-schema-form-renderer/JsonSchemaFormRenderer.js +2 -1
- package/dist/components/json-schema-form-renderer/mcp.js +43 -0
- package/dist/components/json-schema-form-renderer/types.d.cts +2 -1
- package/dist/components/json-schema-form-renderer/types.d.ts +2 -1
- package/dist/components/number/NumberInput.d.cts +5 -9
- package/dist/components/number/NumberInput.d.ts +5 -9
- package/dist/components/number/index.d.cts +1 -1
- package/dist/components/number/index.d.ts +1 -1
- package/dist/components/number/mcp.js +40 -0
- package/dist/components/{ObjectContainer.cjs → object-container/ObjectContainer.cjs} +9 -8
- package/dist/components/{ObjectContainer.d.cts → object-container/ObjectContainer.d.cts} +2 -2
- package/dist/components/{ObjectContainer.d.ts → object-container/ObjectContainer.d.ts} +2 -2
- package/dist/components/{ObjectContainer.js → object-container/ObjectContainer.js} +8 -7
- package/dist/components/object-container/index.cjs +1 -0
- package/dist/components/object-container/index.js +1 -0
- package/dist/components/object-container/mcp.js +41 -0
- package/dist/components/{Radio.cjs → radio/Radio.cjs} +2 -2
- package/dist/components/{Radio.d.cts → radio/Radio.d.cts} +5 -5
- package/dist/components/{Radio.d.ts → radio/Radio.d.ts} +5 -5
- package/dist/components/{Radio.js → radio/Radio.js} +1 -1
- package/dist/components/radio/index.cjs +1 -0
- package/dist/components/radio/index.d.cts +1 -0
- package/dist/components/radio/index.d.ts +1 -0
- package/dist/components/radio/index.js +1 -0
- package/dist/components/radio/mcp.js +45 -0
- package/dist/components/{Rating.cjs → rating/Rating.cjs} +2 -2
- package/dist/components/rating/Rating.d.cts +12 -0
- package/dist/components/rating/Rating.d.ts +12 -0
- package/dist/components/{Rating.js → rating/Rating.js} +1 -1
- package/dist/components/rating/index.cjs +1 -0
- package/dist/components/rating/index.d.cts +1 -0
- package/dist/components/rating/index.d.ts +1 -0
- package/dist/components/rating/index.js +1 -0
- package/dist/components/rating/mcp.js +47 -0
- package/dist/components/{RichTextEditor.cjs → rich-text-editor/RichTextEditor.cjs} +4 -4
- package/dist/components/rich-text-editor/RichTextEditor.d.cts +7 -0
- package/dist/components/rich-text-editor/RichTextEditor.d.ts +7 -0
- package/dist/components/{RichTextEditor.js → rich-text-editor/RichTextEditor.js} +3 -3
- package/dist/components/rich-text-editor/index.cjs +1 -0
- package/dist/components/rich-text-editor/index.d.cts +1 -0
- package/dist/components/rich-text-editor/index.d.ts +1 -0
- package/dist/components/rich-text-editor/index.js +1 -0
- package/dist/components/rich-text-editor/mcp.js +49 -0
- package/dist/components/{Row.cjs → row/Row.cjs} +2 -2
- package/dist/components/{Row.d.cts → row/Row.d.cts} +2 -2
- package/dist/components/{Row.d.ts → row/Row.d.ts} +2 -2
- package/dist/components/{Row.js → row/Row.js} +1 -1
- package/dist/components/row/index.cjs +1 -0
- package/dist/components/row/index.d.cts +1 -0
- package/dist/components/row/index.d.ts +1 -0
- package/dist/components/row/index.js +1 -0
- package/dist/components/row/mcp.js +36 -0
- package/dist/components/schema-field/index.d.cts +1 -1
- package/dist/components/schema-field/index.d.ts +1 -1
- package/dist/components/schema-field/mcp.js +61 -0
- package/dist/components/schema-field/schema-field-basics.cjs +32 -16
- package/dist/components/schema-field/schema-field-basics.d.cts +282 -437
- package/dist/components/schema-field/schema-field-basics.d.ts +285 -440
- package/dist/components/schema-field/schema-field-basics.js +32 -16
- package/dist/components/schema-field/schema-field-extended.cjs +4 -2
- package/dist/components/schema-field/schema-field-extended.d.cts +435 -632
- package/dist/components/schema-field/schema-field-extended.d.ts +435 -632
- package/dist/components/schema-field/schema-field-extended.js +4 -2
- package/dist/components/schema-field/schema-field.cjs +8 -4
- package/dist/components/schema-field/schema-field.d.cts +371 -548
- package/dist/components/schema-field/schema-field.d.ts +374 -551
- package/dist/components/schema-field/schema-field.js +8 -4
- package/dist/components/{Select.cjs → select/Select.cjs} +3 -3
- package/dist/components/select/Select.d.cts +20 -0
- package/dist/components/select/Select.d.ts +20 -0
- package/dist/components/{Select.js → select/Select.js} +2 -2
- package/dist/components/select/index.cjs +1 -0
- package/dist/components/select/index.d.cts +1 -0
- package/dist/components/select/index.d.ts +1 -0
- package/dist/components/select/index.js +1 -0
- package/dist/components/select/mcp.js +49 -0
- package/dist/components/{Separator.cjs → separator/Separator.cjs} +2 -2
- package/dist/components/separator/Separator.d.cts +12 -0
- package/dist/components/separator/Separator.d.ts +12 -0
- package/dist/components/{Separator.js → separator/Separator.js} +1 -1
- package/dist/components/separator/index.cjs +1 -0
- package/dist/components/separator/index.d.cts +1 -0
- package/dist/components/separator/index.d.ts +1 -0
- package/dist/components/separator/index.js +1 -0
- package/dist/components/separator/mcp.js +40 -0
- package/dist/components/slider/Slider.d.cts +5 -4
- package/dist/components/slider/Slider.d.ts +5 -4
- package/dist/components/slider/SliderInput.d.cts +3 -3
- package/dist/components/slider/SliderInput.d.ts +3 -3
- package/dist/components/slider/SliderSelect.d.cts +4 -3
- package/dist/components/slider/SliderSelect.d.ts +4 -3
- package/dist/components/slider/index.d.cts +1 -1
- package/dist/components/slider/index.d.ts +1 -1
- package/dist/components/slider/mcp.js +50 -0
- package/dist/components/{Switch.cjs → switch/Switch.cjs} +3 -3
- package/dist/components/switch/Switch.d.cts +12 -0
- package/dist/components/switch/Switch.d.ts +12 -0
- package/dist/components/{Switch.js → switch/Switch.js} +2 -2
- package/dist/components/switch/index.cjs +1 -0
- package/dist/components/switch/index.d.cts +1 -0
- package/dist/components/switch/index.d.ts +1 -0
- package/dist/components/switch/index.js +1 -0
- package/dist/components/switch/mcp.js +41 -0
- package/dist/components/{TagsInputInline.cjs → tags-input-inline/TagsInputInline.cjs} +2 -2
- package/dist/components/tags-input-inline/TagsInputInline.d.cts +15 -0
- package/dist/components/tags-input-inline/TagsInputInline.d.ts +15 -0
- package/dist/components/{TagsInputInline.js → tags-input-inline/TagsInputInline.js} +1 -1
- package/dist/components/tags-input-inline/index.cjs +1 -0
- package/dist/components/tags-input-inline/index.d.cts +1 -0
- package/dist/components/tags-input-inline/index.d.ts +1 -0
- package/dist/components/tags-input-inline/index.js +1 -0
- package/dist/components/tags-input-inline/mcp.js +54 -0
- package/dist/components/{Textarea.cjs → textarea/Textarea.cjs} +2 -2
- package/dist/components/textarea/Textarea.d.cts +11 -0
- package/dist/components/textarea/Textarea.d.ts +11 -0
- package/dist/components/{Textarea.js → textarea/Textarea.js} +1 -1
- package/dist/components/textarea/index.cjs +1 -0
- package/dist/components/textarea/index.d.cts +1 -0
- package/dist/components/textarea/index.d.ts +1 -0
- package/dist/components/textarea/index.js +1 -0
- package/dist/components/textarea/mcp.js +36 -0
- package/dist/components/{ToggleButton.cjs → toggle-button/ToggleButton.cjs} +3 -3
- package/dist/components/toggle-button/ToggleButton.d.cts +12 -0
- package/dist/components/toggle-button/ToggleButton.d.ts +12 -0
- package/dist/components/{ToggleButton.js → toggle-button/ToggleButton.js} +2 -2
- package/dist/components/toggle-button/index.cjs +1 -0
- package/dist/components/toggle-button/index.d.cts +1 -0
- package/dist/components/toggle-button/index.d.ts +1 -0
- package/dist/components/toggle-button/index.js +1 -0
- package/dist/components/toggle-button/mcp.js +45 -0
- package/dist/components/{ToggleGroup.cjs → toggle-group/ToggleGroup.cjs} +5 -4
- package/dist/components/{ToggleGroup.d.cts → toggle-group/ToggleGroup.d.cts} +2 -2
- package/dist/components/{ToggleGroup.d.ts → toggle-group/ToggleGroup.d.ts} +2 -2
- package/dist/components/{ToggleGroup.js → toggle-group/ToggleGroup.js} +3 -3
- package/dist/components/toggle-group/index.cjs +1 -0
- package/dist/components/toggle-group/index.d.cts +1 -0
- package/dist/components/toggle-group/index.d.ts +1 -0
- package/dist/components/toggle-group/index.js +1 -0
- package/dist/components/toggle-group/mcp.js +52 -0
- package/dist/generated/mcp-registry.js +95 -0
- package/dist/index.cjs +44 -22
- package/dist/index.d.cts +46 -25
- package/dist/index.d.ts +46 -25
- package/dist/index.js +44 -22
- package/dist/mcp/src/search.js +81 -0
- package/dist/mcp/src/server.js +72 -0
- package/dist/mcp/src/utils.js +8 -0
- package/dist/mcp-server.js +18 -0
- package/package.json +11 -3
- package/dist/components/Checkbox.d.cts +0 -11
- package/dist/components/Checkbox.d.ts +0 -11
- package/dist/components/ColorSelect.d.cts +0 -6
- package/dist/components/ColorSelect.d.ts +0 -6
- package/dist/components/Combobox.d.cts +0 -6
- package/dist/components/Combobox.d.ts +0 -6
- package/dist/components/IconPicker.d.ts +0 -15
- package/dist/components/IconToggle.d.cts +0 -11
- package/dist/components/IconToggle.d.ts +0 -11
- package/dist/components/Input.d.cts +0 -17
- package/dist/components/Input.d.ts +0 -17
- package/dist/components/Rating.d.cts +0 -13
- package/dist/components/Rating.d.ts +0 -13
- package/dist/components/RichTextEditor.d.cts +0 -6
- package/dist/components/RichTextEditor.d.ts +0 -6
- package/dist/components/Select.d.cts +0 -6
- package/dist/components/Select.d.ts +0 -6
- package/dist/components/Separator.d.cts +0 -11
- package/dist/components/Separator.d.ts +0 -11
- package/dist/components/Switch.d.cts +0 -11
- package/dist/components/Switch.d.ts +0 -11
- package/dist/components/TagsInputInline.d.cts +0 -15
- package/dist/components/TagsInputInline.d.ts +0 -15
- package/dist/components/Textarea.d.cts +0 -9
- package/dist/components/Textarea.d.ts +0 -9
- package/dist/components/ToggleButton.d.cts +0 -11
- package/dist/components/ToggleButton.d.ts +0 -11
|
@@ -4,23 +4,33 @@ import { ArrayTagsProps } from "../array-tags/ArrayTags.cjs";
|
|
|
4
4
|
import "../array-tags/index.cjs";
|
|
5
5
|
import { ArrayToggleGroupProps } from "../array-toggle-group/ArrayToggleGroup.cjs";
|
|
6
6
|
import "../array-toggle-group/index.cjs";
|
|
7
|
-
import { Column } from "../Column.cjs";
|
|
7
|
+
import { Column } from "../column/Column.cjs";
|
|
8
|
+
import "../column/index.cjs";
|
|
8
9
|
import { FormItemProps } from "../form-item/form-item-types.cjs";
|
|
9
10
|
import "../form-item/index.cjs";
|
|
10
|
-
import { FormGrid } from "../FormGrid.cjs";
|
|
11
|
+
import { FormGrid } from "../form-grid/FormGrid.cjs";
|
|
12
|
+
import "../form-grid/index.cjs";
|
|
11
13
|
import { JsonSchemaFormComponents } from "../json-schema-form-renderer/types.cjs";
|
|
12
14
|
import "../json-schema-form-renderer/index.cjs";
|
|
13
|
-
import { ObjectContainerProps } from "../ObjectContainer.cjs";
|
|
14
|
-
import {
|
|
15
|
-
import
|
|
15
|
+
import { ObjectContainerProps } from "../object-container/ObjectContainer.cjs";
|
|
16
|
+
import { RadioProps } from "../radio/Radio.cjs";
|
|
17
|
+
import "../radio/index.cjs";
|
|
18
|
+
import { Row } from "../row/Row.cjs";
|
|
19
|
+
import "../row/index.cjs";
|
|
20
|
+
import { ToggleGroupBaseProps } from "../toggle-group/ToggleGroup.cjs";
|
|
21
|
+
import "../toggle-group/index.cjs";
|
|
22
|
+
import { HiddenProps } from "../hidden/Hidden.cjs";
|
|
23
|
+
import "../hidden/index.cjs";
|
|
24
|
+
import { SelectProps as SelectProps$1 } from "../select/Select.cjs";
|
|
25
|
+
import "../select/index.cjs";
|
|
16
26
|
import * as _formily_react69 from "@formily/react";
|
|
17
27
|
import { ISchema } from "@formily/react";
|
|
18
|
-
import * as
|
|
28
|
+
import * as react914 from "react";
|
|
19
29
|
import * as _formily_core1 from "@formily/core";
|
|
20
|
-
import * as
|
|
21
|
-
import * as
|
|
22
|
-
import * as
|
|
23
|
-
import * as
|
|
30
|
+
import * as _pixpilot_shadcn_ui329 from "@pixpilot/shadcn-ui";
|
|
31
|
+
import * as _radix_ui_react_checkbox21 from "@radix-ui/react-checkbox";
|
|
32
|
+
import * as _radix_ui_react_separator21 from "@radix-ui/react-separator";
|
|
33
|
+
import * as _radix_ui_react_switch21 from "@radix-ui/react-switch";
|
|
24
34
|
|
|
25
35
|
//#region src/components/schema-field/schema-field-basics.d.ts
|
|
26
36
|
declare const basicComponentRegistry: {
|
|
@@ -29,7 +39,7 @@ declare const basicComponentRegistry: {
|
|
|
29
39
|
decorator: string;
|
|
30
40
|
};
|
|
31
41
|
ArrayCollapse: {
|
|
32
|
-
component:
|
|
42
|
+
component: react914.FC<ArrayComponentProps & {
|
|
33
43
|
defaultActiveKey?: Array<string | number>;
|
|
34
44
|
mode?: "accordion" | "multiple";
|
|
35
45
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
@@ -37,7 +47,7 @@ declare const basicComponentRegistry: {
|
|
|
37
47
|
decorator: string;
|
|
38
48
|
};
|
|
39
49
|
ArrayDialog: {
|
|
40
|
-
component:
|
|
50
|
+
component: react914.FC<ArrayComponentProps & {
|
|
41
51
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
42
52
|
}>;
|
|
43
53
|
decorator: string;
|
|
@@ -47,694 +57,529 @@ declare const basicComponentRegistry: {
|
|
|
47
57
|
decorator: string;
|
|
48
58
|
};
|
|
49
59
|
ArrayPopover: {
|
|
50
|
-
component:
|
|
60
|
+
component: react914.FC<ArrayComponentProps & {
|
|
51
61
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
52
62
|
}>;
|
|
53
63
|
decorator: string;
|
|
54
64
|
};
|
|
55
65
|
ArrayTags: {
|
|
56
|
-
component:
|
|
66
|
+
component: react914.MemoExoticComponent<_formily_react69.ReactFC<ArrayTagsProps>>;
|
|
57
67
|
decorator: string;
|
|
58
68
|
};
|
|
59
69
|
ArrayToggleGroup: {
|
|
60
|
-
component:
|
|
70
|
+
component: react914.MemoExoticComponent<_formily_react69.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
61
71
|
decorator: string;
|
|
62
72
|
};
|
|
63
73
|
ToggleGroup: {
|
|
64
|
-
component:
|
|
74
|
+
component: react914.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react914.RefAttributes<unknown>>;
|
|
65
75
|
decorator: string;
|
|
66
76
|
};
|
|
67
77
|
Checkbox: {
|
|
68
|
-
component:
|
|
78
|
+
component: react914.FC<_radix_ui_react_checkbox21.CheckboxProps & react914.RefAttributes<HTMLButtonElement>>;
|
|
69
79
|
decorator: string;
|
|
70
80
|
};
|
|
71
81
|
Column: {
|
|
72
82
|
component: typeof Column;
|
|
73
83
|
};
|
|
74
84
|
DatePicker: {
|
|
75
|
-
component:
|
|
85
|
+
component: react914.ForwardRefExoticComponent<Partial<{
|
|
76
86
|
value?: Date;
|
|
77
87
|
onChange?: (date: Date | undefined) => void;
|
|
78
88
|
placeholder?: string;
|
|
79
|
-
} & Omit<
|
|
89
|
+
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "onSelect" | "selected" | "mode">> & react914.RefAttributes<unknown>>;
|
|
80
90
|
decorator: string;
|
|
81
91
|
};
|
|
82
92
|
FormGrid: {
|
|
83
93
|
component: typeof FormGrid;
|
|
84
94
|
};
|
|
85
95
|
FormItem: {
|
|
86
|
-
component:
|
|
87
|
-
children?:
|
|
88
|
-
}>, "ref"> &
|
|
96
|
+
component: react914.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
97
|
+
children?: react914.ReactNode | undefined;
|
|
98
|
+
}>, "ref"> & react914.RefAttributes<unknown>>;
|
|
89
99
|
};
|
|
90
100
|
Hidden: {
|
|
91
|
-
component:
|
|
92
|
-
children?: React.ReactNode;
|
|
93
|
-
value?: string;
|
|
94
|
-
}> & react1399.RefAttributes<unknown>>;
|
|
101
|
+
component: react914.ForwardRefExoticComponent<Partial<HiddenProps> & react914.RefAttributes<unknown>>;
|
|
95
102
|
};
|
|
96
103
|
IconToggle: {
|
|
97
|
-
component:
|
|
104
|
+
component: react914.FC<_pixpilot_shadcn_ui329.IconToggleProps>;
|
|
98
105
|
decorator: string;
|
|
99
106
|
};
|
|
100
107
|
ToggleButton: {
|
|
101
|
-
component:
|
|
108
|
+
component: react914.FC<_pixpilot_shadcn_ui329.ToggleButtonProps>;
|
|
102
109
|
decorator: string;
|
|
103
110
|
};
|
|
104
111
|
Input: {
|
|
105
|
-
component:
|
|
106
|
-
prefix?: React.ReactNode;
|
|
107
|
-
suffix?: React.ReactNode;
|
|
108
|
-
groupClassName?: string;
|
|
109
|
-
prefixClassName?: string;
|
|
110
|
-
suffixClassName?: string;
|
|
111
|
-
}>, "ref"> & react1399.RefAttributes<unknown>>;
|
|
112
|
+
component: react914.FC<_pixpilot_shadcn_ui329.InputProps>;
|
|
112
113
|
decorator: string;
|
|
113
114
|
};
|
|
114
115
|
NumberInput: {
|
|
115
|
-
component:
|
|
116
|
-
prefix?: React.ReactNode;
|
|
117
|
-
suffix?: React.ReactNode;
|
|
118
|
-
groupClassName?: string;
|
|
119
|
-
prefixClassName?: string;
|
|
120
|
-
suffixClassName?: string;
|
|
121
|
-
}>, "ref"> & react1399.RefAttributes<unknown>>;
|
|
116
|
+
component: react914.FC<_pixpilot_shadcn_ui329.InputProps>;
|
|
122
117
|
decorator: string;
|
|
123
118
|
};
|
|
124
119
|
ObjectContainer: {
|
|
125
|
-
component:
|
|
120
|
+
component: react914.FC<ObjectContainerProps>;
|
|
126
121
|
decorator: string;
|
|
127
122
|
};
|
|
128
123
|
Radio: {
|
|
129
|
-
component:
|
|
124
|
+
component: react914.FC<RadioProps>;
|
|
130
125
|
decorator: string;
|
|
131
126
|
};
|
|
132
127
|
Row: {
|
|
133
128
|
component: typeof Row;
|
|
134
129
|
};
|
|
135
130
|
Select: {
|
|
136
|
-
component:
|
|
131
|
+
component: react914.FC<SelectProps$1>;
|
|
137
132
|
decorator: string;
|
|
138
133
|
};
|
|
139
134
|
Separator: {
|
|
140
|
-
component:
|
|
135
|
+
component: react914.FC<_radix_ui_react_separator21.SeparatorProps & react914.RefAttributes<HTMLDivElement>>;
|
|
141
136
|
};
|
|
142
137
|
Switch: {
|
|
143
|
-
component:
|
|
138
|
+
component: react914.FC<_radix_ui_react_switch21.SwitchProps & react914.RefAttributes<HTMLButtonElement>>;
|
|
144
139
|
decorator: string;
|
|
145
140
|
};
|
|
146
141
|
Textarea: {
|
|
147
|
-
component:
|
|
142
|
+
component: react914.FC<react914.ClassAttributes<HTMLTextAreaElement> & react914.TextareaHTMLAttributes<HTMLTextAreaElement>>;
|
|
148
143
|
decorator: string;
|
|
149
144
|
};
|
|
150
145
|
};
|
|
151
146
|
declare const basicComponents: {
|
|
152
147
|
ArrayCards: ComposedArrayProps;
|
|
153
|
-
ArrayCollapse:
|
|
148
|
+
ArrayCollapse: react914.FC<ArrayComponentProps & {
|
|
154
149
|
defaultActiveKey?: Array<string | number>;
|
|
155
150
|
mode?: "accordion" | "multiple";
|
|
156
151
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
157
152
|
}>;
|
|
158
|
-
ArrayDialog:
|
|
153
|
+
ArrayDialog: react914.FC<ArrayComponentProps & {
|
|
159
154
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
160
155
|
}>;
|
|
161
156
|
ArrayInline: ComposedArrayProps;
|
|
162
|
-
ArrayPopover:
|
|
157
|
+
ArrayPopover: react914.FC<ArrayComponentProps & {
|
|
163
158
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
164
159
|
}>;
|
|
165
|
-
ArrayTags:
|
|
166
|
-
ArrayToggleGroup:
|
|
167
|
-
ToggleGroup:
|
|
168
|
-
Checkbox:
|
|
160
|
+
ArrayTags: react914.MemoExoticComponent<_formily_react69.ReactFC<ArrayTagsProps>>;
|
|
161
|
+
ArrayToggleGroup: react914.MemoExoticComponent<_formily_react69.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
162
|
+
ToggleGroup: react914.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react914.RefAttributes<unknown>>;
|
|
163
|
+
Checkbox: react914.FC<_radix_ui_react_checkbox21.CheckboxProps & react914.RefAttributes<HTMLButtonElement>>;
|
|
169
164
|
Column: typeof Column;
|
|
170
|
-
DatePicker:
|
|
165
|
+
DatePicker: react914.ForwardRefExoticComponent<Partial<{
|
|
171
166
|
value?: Date;
|
|
172
167
|
onChange?: (date: Date | undefined) => void;
|
|
173
168
|
placeholder?: string;
|
|
174
|
-
} & Omit<
|
|
169
|
+
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "onSelect" | "selected" | "mode">> & react914.RefAttributes<unknown>>;
|
|
175
170
|
FormGrid: typeof FormGrid;
|
|
176
|
-
FormItem:
|
|
177
|
-
children?:
|
|
178
|
-
}>, "ref"> &
|
|
179
|
-
Hidden:
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
prefix?: React.ReactNode;
|
|
187
|
-
suffix?: React.ReactNode;
|
|
188
|
-
groupClassName?: string;
|
|
189
|
-
prefixClassName?: string;
|
|
190
|
-
suffixClassName?: string;
|
|
191
|
-
}>, "ref"> & react1399.RefAttributes<unknown>>;
|
|
192
|
-
NumberInput: react1399.ForwardRefExoticComponent<Omit<Partial<react1399.ClassAttributes<HTMLInputElement> & react1399.InputHTMLAttributes<HTMLInputElement> & {
|
|
193
|
-
prefix?: React.ReactNode;
|
|
194
|
-
suffix?: React.ReactNode;
|
|
195
|
-
groupClassName?: string;
|
|
196
|
-
prefixClassName?: string;
|
|
197
|
-
suffixClassName?: string;
|
|
198
|
-
}>, "ref"> & react1399.RefAttributes<unknown>>;
|
|
199
|
-
ObjectContainer: react1399.FC<ObjectContainerProps>;
|
|
200
|
-
Radio: react1399.FC;
|
|
171
|
+
FormItem: react914.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
172
|
+
children?: react914.ReactNode | undefined;
|
|
173
|
+
}>, "ref"> & react914.RefAttributes<unknown>>;
|
|
174
|
+
Hidden: react914.ForwardRefExoticComponent<Partial<HiddenProps> & react914.RefAttributes<unknown>>;
|
|
175
|
+
IconToggle: react914.FC<_pixpilot_shadcn_ui329.IconToggleProps>;
|
|
176
|
+
ToggleButton: react914.FC<_pixpilot_shadcn_ui329.ToggleButtonProps>;
|
|
177
|
+
Input: react914.FC<_pixpilot_shadcn_ui329.InputProps>;
|
|
178
|
+
NumberInput: react914.FC<_pixpilot_shadcn_ui329.InputProps>;
|
|
179
|
+
ObjectContainer: react914.FC<ObjectContainerProps>;
|
|
180
|
+
Radio: react914.FC<RadioProps>;
|
|
201
181
|
Row: typeof Row;
|
|
202
|
-
Select:
|
|
203
|
-
Separator:
|
|
204
|
-
Switch:
|
|
205
|
-
Textarea:
|
|
182
|
+
Select: react914.FC<SelectProps$1>;
|
|
183
|
+
Separator: react914.FC<_radix_ui_react_separator21.SeparatorProps & react914.RefAttributes<HTMLDivElement>>;
|
|
184
|
+
Switch: react914.FC<_radix_ui_react_switch21.SwitchProps & react914.RefAttributes<HTMLButtonElement>>;
|
|
185
|
+
Textarea: react914.FC<react914.ClassAttributes<HTMLTextAreaElement> & react914.TextareaHTMLAttributes<HTMLTextAreaElement>>;
|
|
206
186
|
};
|
|
207
187
|
declare const SchemaFieldBasics: {
|
|
208
188
|
<Decorator extends _formily_react69.JSXComponent, Component extends _formily_react69.JSXComponent>(props: _formily_react69.ISchemaFieldProps<Decorator, Component, _formily_core1.ObjectField<Decorator, Component>>): JSX.Element;
|
|
209
189
|
displayName: string;
|
|
210
190
|
Markup: {
|
|
211
|
-
<Decorator_1 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "
|
|
191
|
+
<Decorator_1 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof", Component_1 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof">(props: _formily_react69.ISchemaMarkupFieldProps<{
|
|
212
192
|
ArrayCards: ComposedArrayProps;
|
|
213
|
-
ArrayCollapse:
|
|
193
|
+
ArrayCollapse: react914.FC<ArrayComponentProps & {
|
|
214
194
|
defaultActiveKey?: Array<string | number>;
|
|
215
195
|
mode?: "accordion" | "multiple";
|
|
216
196
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
217
197
|
}>;
|
|
218
|
-
ArrayDialog:
|
|
198
|
+
ArrayDialog: react914.FC<ArrayComponentProps & {
|
|
219
199
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
220
200
|
}>;
|
|
221
201
|
ArrayInline: ComposedArrayProps;
|
|
222
|
-
ArrayPopover:
|
|
202
|
+
ArrayPopover: react914.FC<ArrayComponentProps & {
|
|
223
203
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
224
204
|
}>;
|
|
225
|
-
ArrayTags:
|
|
226
|
-
ArrayToggleGroup:
|
|
227
|
-
ToggleGroup:
|
|
228
|
-
Checkbox:
|
|
205
|
+
ArrayTags: react914.MemoExoticComponent<_formily_react69.ReactFC<ArrayTagsProps>>;
|
|
206
|
+
ArrayToggleGroup: react914.MemoExoticComponent<_formily_react69.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
207
|
+
ToggleGroup: react914.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react914.RefAttributes<unknown>>;
|
|
208
|
+
Checkbox: react914.FC<_radix_ui_react_checkbox21.CheckboxProps & react914.RefAttributes<HTMLButtonElement>>;
|
|
229
209
|
Column: typeof Column;
|
|
230
|
-
DatePicker:
|
|
210
|
+
DatePicker: react914.ForwardRefExoticComponent<Partial<{
|
|
231
211
|
value?: Date;
|
|
232
212
|
onChange?: (date: Date | undefined) => void;
|
|
233
213
|
placeholder?: string;
|
|
234
|
-
} & Omit<
|
|
214
|
+
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "onSelect" | "selected" | "mode">> & react914.RefAttributes<unknown>>;
|
|
235
215
|
FormGrid: typeof FormGrid;
|
|
236
|
-
FormItem:
|
|
237
|
-
children?:
|
|
238
|
-
}>, "ref"> &
|
|
239
|
-
Hidden:
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
prefix?: React.ReactNode;
|
|
247
|
-
suffix?: React.ReactNode;
|
|
248
|
-
groupClassName?: string;
|
|
249
|
-
prefixClassName?: string;
|
|
250
|
-
suffixClassName?: string;
|
|
251
|
-
}>, "ref"> & react1399.RefAttributes<unknown>>;
|
|
252
|
-
NumberInput: react1399.ForwardRefExoticComponent<Omit<Partial<react1399.ClassAttributes<HTMLInputElement> & react1399.InputHTMLAttributes<HTMLInputElement> & {
|
|
253
|
-
prefix?: React.ReactNode;
|
|
254
|
-
suffix?: React.ReactNode;
|
|
255
|
-
groupClassName?: string;
|
|
256
|
-
prefixClassName?: string;
|
|
257
|
-
suffixClassName?: string;
|
|
258
|
-
}>, "ref"> & react1399.RefAttributes<unknown>>;
|
|
259
|
-
ObjectContainer: react1399.FC<ObjectContainerProps>;
|
|
260
|
-
Radio: react1399.FC;
|
|
216
|
+
FormItem: react914.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
217
|
+
children?: react914.ReactNode | undefined;
|
|
218
|
+
}>, "ref"> & react914.RefAttributes<unknown>>;
|
|
219
|
+
Hidden: react914.ForwardRefExoticComponent<Partial<HiddenProps> & react914.RefAttributes<unknown>>;
|
|
220
|
+
IconToggle: react914.FC<_pixpilot_shadcn_ui329.IconToggleProps>;
|
|
221
|
+
ToggleButton: react914.FC<_pixpilot_shadcn_ui329.ToggleButtonProps>;
|
|
222
|
+
Input: react914.FC<_pixpilot_shadcn_ui329.InputProps>;
|
|
223
|
+
NumberInput: react914.FC<_pixpilot_shadcn_ui329.InputProps>;
|
|
224
|
+
ObjectContainer: react914.FC<ObjectContainerProps>;
|
|
225
|
+
Radio: react914.FC<RadioProps>;
|
|
261
226
|
Row: typeof Row;
|
|
262
|
-
Select:
|
|
263
|
-
Separator:
|
|
264
|
-
Switch:
|
|
265
|
-
Textarea:
|
|
227
|
+
Select: react914.FC<SelectProps$1>;
|
|
228
|
+
Separator: react914.FC<_radix_ui_react_separator21.SeparatorProps & react914.RefAttributes<HTMLDivElement>>;
|
|
229
|
+
Switch: react914.FC<_radix_ui_react_switch21.SwitchProps & react914.RefAttributes<HTMLButtonElement>>;
|
|
230
|
+
Textarea: react914.FC<react914.ClassAttributes<HTMLTextAreaElement> & react914.TextareaHTMLAttributes<HTMLTextAreaElement>>;
|
|
266
231
|
}, Component_1, Decorator_1>): JSX.Element;
|
|
267
232
|
displayName: string;
|
|
268
233
|
};
|
|
269
234
|
String: {
|
|
270
|
-
<Decorator_2 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "
|
|
235
|
+
<Decorator_2 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof", Component_2 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
271
236
|
ArrayCards: ComposedArrayProps;
|
|
272
|
-
ArrayCollapse:
|
|
237
|
+
ArrayCollapse: react914.FC<ArrayComponentProps & {
|
|
273
238
|
defaultActiveKey?: Array<string | number>;
|
|
274
239
|
mode?: "accordion" | "multiple";
|
|
275
240
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
276
241
|
}>;
|
|
277
|
-
ArrayDialog:
|
|
242
|
+
ArrayDialog: react914.FC<ArrayComponentProps & {
|
|
278
243
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
279
244
|
}>;
|
|
280
245
|
ArrayInline: ComposedArrayProps;
|
|
281
|
-
ArrayPopover:
|
|
246
|
+
ArrayPopover: react914.FC<ArrayComponentProps & {
|
|
282
247
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
283
248
|
}>;
|
|
284
|
-
ArrayTags:
|
|
285
|
-
ArrayToggleGroup:
|
|
286
|
-
ToggleGroup:
|
|
287
|
-
Checkbox:
|
|
249
|
+
ArrayTags: react914.MemoExoticComponent<_formily_react69.ReactFC<ArrayTagsProps>>;
|
|
250
|
+
ArrayToggleGroup: react914.MemoExoticComponent<_formily_react69.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
251
|
+
ToggleGroup: react914.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react914.RefAttributes<unknown>>;
|
|
252
|
+
Checkbox: react914.FC<_radix_ui_react_checkbox21.CheckboxProps & react914.RefAttributes<HTMLButtonElement>>;
|
|
288
253
|
Column: typeof Column;
|
|
289
|
-
DatePicker:
|
|
254
|
+
DatePicker: react914.ForwardRefExoticComponent<Partial<{
|
|
290
255
|
value?: Date;
|
|
291
256
|
onChange?: (date: Date | undefined) => void;
|
|
292
257
|
placeholder?: string;
|
|
293
|
-
} & Omit<
|
|
258
|
+
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "onSelect" | "selected" | "mode">> & react914.RefAttributes<unknown>>;
|
|
294
259
|
FormGrid: typeof FormGrid;
|
|
295
|
-
FormItem:
|
|
296
|
-
children?:
|
|
297
|
-
}>, "ref"> &
|
|
298
|
-
Hidden:
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
prefix?: React.ReactNode;
|
|
306
|
-
suffix?: React.ReactNode;
|
|
307
|
-
groupClassName?: string;
|
|
308
|
-
prefixClassName?: string;
|
|
309
|
-
suffixClassName?: string;
|
|
310
|
-
}>, "ref"> & react1399.RefAttributes<unknown>>;
|
|
311
|
-
NumberInput: react1399.ForwardRefExoticComponent<Omit<Partial<react1399.ClassAttributes<HTMLInputElement> & react1399.InputHTMLAttributes<HTMLInputElement> & {
|
|
312
|
-
prefix?: React.ReactNode;
|
|
313
|
-
suffix?: React.ReactNode;
|
|
314
|
-
groupClassName?: string;
|
|
315
|
-
prefixClassName?: string;
|
|
316
|
-
suffixClassName?: string;
|
|
317
|
-
}>, "ref"> & react1399.RefAttributes<unknown>>;
|
|
318
|
-
ObjectContainer: react1399.FC<ObjectContainerProps>;
|
|
319
|
-
Radio: react1399.FC;
|
|
260
|
+
FormItem: react914.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
261
|
+
children?: react914.ReactNode | undefined;
|
|
262
|
+
}>, "ref"> & react914.RefAttributes<unknown>>;
|
|
263
|
+
Hidden: react914.ForwardRefExoticComponent<Partial<HiddenProps> & react914.RefAttributes<unknown>>;
|
|
264
|
+
IconToggle: react914.FC<_pixpilot_shadcn_ui329.IconToggleProps>;
|
|
265
|
+
ToggleButton: react914.FC<_pixpilot_shadcn_ui329.ToggleButtonProps>;
|
|
266
|
+
Input: react914.FC<_pixpilot_shadcn_ui329.InputProps>;
|
|
267
|
+
NumberInput: react914.FC<_pixpilot_shadcn_ui329.InputProps>;
|
|
268
|
+
ObjectContainer: react914.FC<ObjectContainerProps>;
|
|
269
|
+
Radio: react914.FC<RadioProps>;
|
|
320
270
|
Row: typeof Row;
|
|
321
|
-
Select:
|
|
322
|
-
Separator:
|
|
323
|
-
Switch:
|
|
324
|
-
Textarea:
|
|
271
|
+
Select: react914.FC<SelectProps$1>;
|
|
272
|
+
Separator: react914.FC<_radix_ui_react_separator21.SeparatorProps & react914.RefAttributes<HTMLDivElement>>;
|
|
273
|
+
Switch: react914.FC<_radix_ui_react_switch21.SwitchProps & react914.RefAttributes<HTMLButtonElement>>;
|
|
274
|
+
Textarea: react914.FC<react914.ClassAttributes<HTMLTextAreaElement> & react914.TextareaHTMLAttributes<HTMLTextAreaElement>>;
|
|
325
275
|
}, Component_2, Decorator_2>): JSX.Element;
|
|
326
276
|
displayName: string;
|
|
327
277
|
};
|
|
328
278
|
Object: {
|
|
329
|
-
<Decorator_3 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "
|
|
279
|
+
<Decorator_3 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof", Component_3 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
330
280
|
ArrayCards: ComposedArrayProps;
|
|
331
|
-
ArrayCollapse:
|
|
281
|
+
ArrayCollapse: react914.FC<ArrayComponentProps & {
|
|
332
282
|
defaultActiveKey?: Array<string | number>;
|
|
333
283
|
mode?: "accordion" | "multiple";
|
|
334
284
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
335
285
|
}>;
|
|
336
|
-
ArrayDialog:
|
|
286
|
+
ArrayDialog: react914.FC<ArrayComponentProps & {
|
|
337
287
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
338
288
|
}>;
|
|
339
289
|
ArrayInline: ComposedArrayProps;
|
|
340
|
-
ArrayPopover:
|
|
290
|
+
ArrayPopover: react914.FC<ArrayComponentProps & {
|
|
341
291
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
342
292
|
}>;
|
|
343
|
-
ArrayTags:
|
|
344
|
-
ArrayToggleGroup:
|
|
345
|
-
ToggleGroup:
|
|
346
|
-
Checkbox:
|
|
293
|
+
ArrayTags: react914.MemoExoticComponent<_formily_react69.ReactFC<ArrayTagsProps>>;
|
|
294
|
+
ArrayToggleGroup: react914.MemoExoticComponent<_formily_react69.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
295
|
+
ToggleGroup: react914.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react914.RefAttributes<unknown>>;
|
|
296
|
+
Checkbox: react914.FC<_radix_ui_react_checkbox21.CheckboxProps & react914.RefAttributes<HTMLButtonElement>>;
|
|
347
297
|
Column: typeof Column;
|
|
348
|
-
DatePicker:
|
|
298
|
+
DatePicker: react914.ForwardRefExoticComponent<Partial<{
|
|
349
299
|
value?: Date;
|
|
350
300
|
onChange?: (date: Date | undefined) => void;
|
|
351
301
|
placeholder?: string;
|
|
352
|
-
} & Omit<
|
|
302
|
+
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "onSelect" | "selected" | "mode">> & react914.RefAttributes<unknown>>;
|
|
353
303
|
FormGrid: typeof FormGrid;
|
|
354
|
-
FormItem:
|
|
355
|
-
children?:
|
|
356
|
-
}>, "ref"> &
|
|
357
|
-
Hidden:
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
prefix?: React.ReactNode;
|
|
365
|
-
suffix?: React.ReactNode;
|
|
366
|
-
groupClassName?: string;
|
|
367
|
-
prefixClassName?: string;
|
|
368
|
-
suffixClassName?: string;
|
|
369
|
-
}>, "ref"> & react1399.RefAttributes<unknown>>;
|
|
370
|
-
NumberInput: react1399.ForwardRefExoticComponent<Omit<Partial<react1399.ClassAttributes<HTMLInputElement> & react1399.InputHTMLAttributes<HTMLInputElement> & {
|
|
371
|
-
prefix?: React.ReactNode;
|
|
372
|
-
suffix?: React.ReactNode;
|
|
373
|
-
groupClassName?: string;
|
|
374
|
-
prefixClassName?: string;
|
|
375
|
-
suffixClassName?: string;
|
|
376
|
-
}>, "ref"> & react1399.RefAttributes<unknown>>;
|
|
377
|
-
ObjectContainer: react1399.FC<ObjectContainerProps>;
|
|
378
|
-
Radio: react1399.FC;
|
|
304
|
+
FormItem: react914.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
305
|
+
children?: react914.ReactNode | undefined;
|
|
306
|
+
}>, "ref"> & react914.RefAttributes<unknown>>;
|
|
307
|
+
Hidden: react914.ForwardRefExoticComponent<Partial<HiddenProps> & react914.RefAttributes<unknown>>;
|
|
308
|
+
IconToggle: react914.FC<_pixpilot_shadcn_ui329.IconToggleProps>;
|
|
309
|
+
ToggleButton: react914.FC<_pixpilot_shadcn_ui329.ToggleButtonProps>;
|
|
310
|
+
Input: react914.FC<_pixpilot_shadcn_ui329.InputProps>;
|
|
311
|
+
NumberInput: react914.FC<_pixpilot_shadcn_ui329.InputProps>;
|
|
312
|
+
ObjectContainer: react914.FC<ObjectContainerProps>;
|
|
313
|
+
Radio: react914.FC<RadioProps>;
|
|
379
314
|
Row: typeof Row;
|
|
380
|
-
Select:
|
|
381
|
-
Separator:
|
|
382
|
-
Switch:
|
|
383
|
-
Textarea:
|
|
315
|
+
Select: react914.FC<SelectProps$1>;
|
|
316
|
+
Separator: react914.FC<_radix_ui_react_separator21.SeparatorProps & react914.RefAttributes<HTMLDivElement>>;
|
|
317
|
+
Switch: react914.FC<_radix_ui_react_switch21.SwitchProps & react914.RefAttributes<HTMLButtonElement>>;
|
|
318
|
+
Textarea: react914.FC<react914.ClassAttributes<HTMLTextAreaElement> & react914.TextareaHTMLAttributes<HTMLTextAreaElement>>;
|
|
384
319
|
}, Component_3, Decorator_3>): JSX.Element;
|
|
385
320
|
displayName: string;
|
|
386
321
|
};
|
|
387
322
|
Array: {
|
|
388
|
-
<Decorator_4 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "
|
|
323
|
+
<Decorator_4 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof", Component_4 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
389
324
|
ArrayCards: ComposedArrayProps;
|
|
390
|
-
ArrayCollapse:
|
|
325
|
+
ArrayCollapse: react914.FC<ArrayComponentProps & {
|
|
391
326
|
defaultActiveKey?: Array<string | number>;
|
|
392
327
|
mode?: "accordion" | "multiple";
|
|
393
328
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
394
329
|
}>;
|
|
395
|
-
ArrayDialog:
|
|
330
|
+
ArrayDialog: react914.FC<ArrayComponentProps & {
|
|
396
331
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
397
332
|
}>;
|
|
398
333
|
ArrayInline: ComposedArrayProps;
|
|
399
|
-
ArrayPopover:
|
|
334
|
+
ArrayPopover: react914.FC<ArrayComponentProps & {
|
|
400
335
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
401
336
|
}>;
|
|
402
|
-
ArrayTags:
|
|
403
|
-
ArrayToggleGroup:
|
|
404
|
-
ToggleGroup:
|
|
405
|
-
Checkbox:
|
|
337
|
+
ArrayTags: react914.MemoExoticComponent<_formily_react69.ReactFC<ArrayTagsProps>>;
|
|
338
|
+
ArrayToggleGroup: react914.MemoExoticComponent<_formily_react69.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
339
|
+
ToggleGroup: react914.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react914.RefAttributes<unknown>>;
|
|
340
|
+
Checkbox: react914.FC<_radix_ui_react_checkbox21.CheckboxProps & react914.RefAttributes<HTMLButtonElement>>;
|
|
406
341
|
Column: typeof Column;
|
|
407
|
-
DatePicker:
|
|
342
|
+
DatePicker: react914.ForwardRefExoticComponent<Partial<{
|
|
408
343
|
value?: Date;
|
|
409
344
|
onChange?: (date: Date | undefined) => void;
|
|
410
345
|
placeholder?: string;
|
|
411
|
-
} & Omit<
|
|
346
|
+
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "onSelect" | "selected" | "mode">> & react914.RefAttributes<unknown>>;
|
|
412
347
|
FormGrid: typeof FormGrid;
|
|
413
|
-
FormItem:
|
|
414
|
-
children?:
|
|
415
|
-
}>, "ref"> &
|
|
416
|
-
Hidden:
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
prefix?: React.ReactNode;
|
|
424
|
-
suffix?: React.ReactNode;
|
|
425
|
-
groupClassName?: string;
|
|
426
|
-
prefixClassName?: string;
|
|
427
|
-
suffixClassName?: string;
|
|
428
|
-
}>, "ref"> & react1399.RefAttributes<unknown>>;
|
|
429
|
-
NumberInput: react1399.ForwardRefExoticComponent<Omit<Partial<react1399.ClassAttributes<HTMLInputElement> & react1399.InputHTMLAttributes<HTMLInputElement> & {
|
|
430
|
-
prefix?: React.ReactNode;
|
|
431
|
-
suffix?: React.ReactNode;
|
|
432
|
-
groupClassName?: string;
|
|
433
|
-
prefixClassName?: string;
|
|
434
|
-
suffixClassName?: string;
|
|
435
|
-
}>, "ref"> & react1399.RefAttributes<unknown>>;
|
|
436
|
-
ObjectContainer: react1399.FC<ObjectContainerProps>;
|
|
437
|
-
Radio: react1399.FC;
|
|
348
|
+
FormItem: react914.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
349
|
+
children?: react914.ReactNode | undefined;
|
|
350
|
+
}>, "ref"> & react914.RefAttributes<unknown>>;
|
|
351
|
+
Hidden: react914.ForwardRefExoticComponent<Partial<HiddenProps> & react914.RefAttributes<unknown>>;
|
|
352
|
+
IconToggle: react914.FC<_pixpilot_shadcn_ui329.IconToggleProps>;
|
|
353
|
+
ToggleButton: react914.FC<_pixpilot_shadcn_ui329.ToggleButtonProps>;
|
|
354
|
+
Input: react914.FC<_pixpilot_shadcn_ui329.InputProps>;
|
|
355
|
+
NumberInput: react914.FC<_pixpilot_shadcn_ui329.InputProps>;
|
|
356
|
+
ObjectContainer: react914.FC<ObjectContainerProps>;
|
|
357
|
+
Radio: react914.FC<RadioProps>;
|
|
438
358
|
Row: typeof Row;
|
|
439
|
-
Select:
|
|
440
|
-
Separator:
|
|
441
|
-
Switch:
|
|
442
|
-
Textarea:
|
|
359
|
+
Select: react914.FC<SelectProps$1>;
|
|
360
|
+
Separator: react914.FC<_radix_ui_react_separator21.SeparatorProps & react914.RefAttributes<HTMLDivElement>>;
|
|
361
|
+
Switch: react914.FC<_radix_ui_react_switch21.SwitchProps & react914.RefAttributes<HTMLButtonElement>>;
|
|
362
|
+
Textarea: react914.FC<react914.ClassAttributes<HTMLTextAreaElement> & react914.TextareaHTMLAttributes<HTMLTextAreaElement>>;
|
|
443
363
|
}, Component_4, Decorator_4>): JSX.Element;
|
|
444
364
|
displayName: string;
|
|
445
365
|
};
|
|
446
366
|
Boolean: {
|
|
447
|
-
<Decorator_5 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "
|
|
367
|
+
<Decorator_5 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof", Component_5 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
448
368
|
ArrayCards: ComposedArrayProps;
|
|
449
|
-
ArrayCollapse:
|
|
369
|
+
ArrayCollapse: react914.FC<ArrayComponentProps & {
|
|
450
370
|
defaultActiveKey?: Array<string | number>;
|
|
451
371
|
mode?: "accordion" | "multiple";
|
|
452
372
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
453
373
|
}>;
|
|
454
|
-
ArrayDialog:
|
|
374
|
+
ArrayDialog: react914.FC<ArrayComponentProps & {
|
|
455
375
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
456
376
|
}>;
|
|
457
377
|
ArrayInline: ComposedArrayProps;
|
|
458
|
-
ArrayPopover:
|
|
378
|
+
ArrayPopover: react914.FC<ArrayComponentProps & {
|
|
459
379
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
460
380
|
}>;
|
|
461
|
-
ArrayTags:
|
|
462
|
-
ArrayToggleGroup:
|
|
463
|
-
ToggleGroup:
|
|
464
|
-
Checkbox:
|
|
381
|
+
ArrayTags: react914.MemoExoticComponent<_formily_react69.ReactFC<ArrayTagsProps>>;
|
|
382
|
+
ArrayToggleGroup: react914.MemoExoticComponent<_formily_react69.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
383
|
+
ToggleGroup: react914.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react914.RefAttributes<unknown>>;
|
|
384
|
+
Checkbox: react914.FC<_radix_ui_react_checkbox21.CheckboxProps & react914.RefAttributes<HTMLButtonElement>>;
|
|
465
385
|
Column: typeof Column;
|
|
466
|
-
DatePicker:
|
|
386
|
+
DatePicker: react914.ForwardRefExoticComponent<Partial<{
|
|
467
387
|
value?: Date;
|
|
468
388
|
onChange?: (date: Date | undefined) => void;
|
|
469
389
|
placeholder?: string;
|
|
470
|
-
} & Omit<
|
|
390
|
+
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "onSelect" | "selected" | "mode">> & react914.RefAttributes<unknown>>;
|
|
471
391
|
FormGrid: typeof FormGrid;
|
|
472
|
-
FormItem:
|
|
473
|
-
children?:
|
|
474
|
-
}>, "ref"> &
|
|
475
|
-
Hidden:
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
prefix?: React.ReactNode;
|
|
483
|
-
suffix?: React.ReactNode;
|
|
484
|
-
groupClassName?: string;
|
|
485
|
-
prefixClassName?: string;
|
|
486
|
-
suffixClassName?: string;
|
|
487
|
-
}>, "ref"> & react1399.RefAttributes<unknown>>;
|
|
488
|
-
NumberInput: react1399.ForwardRefExoticComponent<Omit<Partial<react1399.ClassAttributes<HTMLInputElement> & react1399.InputHTMLAttributes<HTMLInputElement> & {
|
|
489
|
-
prefix?: React.ReactNode;
|
|
490
|
-
suffix?: React.ReactNode;
|
|
491
|
-
groupClassName?: string;
|
|
492
|
-
prefixClassName?: string;
|
|
493
|
-
suffixClassName?: string;
|
|
494
|
-
}>, "ref"> & react1399.RefAttributes<unknown>>;
|
|
495
|
-
ObjectContainer: react1399.FC<ObjectContainerProps>;
|
|
496
|
-
Radio: react1399.FC;
|
|
392
|
+
FormItem: react914.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
393
|
+
children?: react914.ReactNode | undefined;
|
|
394
|
+
}>, "ref"> & react914.RefAttributes<unknown>>;
|
|
395
|
+
Hidden: react914.ForwardRefExoticComponent<Partial<HiddenProps> & react914.RefAttributes<unknown>>;
|
|
396
|
+
IconToggle: react914.FC<_pixpilot_shadcn_ui329.IconToggleProps>;
|
|
397
|
+
ToggleButton: react914.FC<_pixpilot_shadcn_ui329.ToggleButtonProps>;
|
|
398
|
+
Input: react914.FC<_pixpilot_shadcn_ui329.InputProps>;
|
|
399
|
+
NumberInput: react914.FC<_pixpilot_shadcn_ui329.InputProps>;
|
|
400
|
+
ObjectContainer: react914.FC<ObjectContainerProps>;
|
|
401
|
+
Radio: react914.FC<RadioProps>;
|
|
497
402
|
Row: typeof Row;
|
|
498
|
-
Select:
|
|
499
|
-
Separator:
|
|
500
|
-
Switch:
|
|
501
|
-
Textarea:
|
|
403
|
+
Select: react914.FC<SelectProps$1>;
|
|
404
|
+
Separator: react914.FC<_radix_ui_react_separator21.SeparatorProps & react914.RefAttributes<HTMLDivElement>>;
|
|
405
|
+
Switch: react914.FC<_radix_ui_react_switch21.SwitchProps & react914.RefAttributes<HTMLButtonElement>>;
|
|
406
|
+
Textarea: react914.FC<react914.ClassAttributes<HTMLTextAreaElement> & react914.TextareaHTMLAttributes<HTMLTextAreaElement>>;
|
|
502
407
|
}, Component_5, Decorator_5>): JSX.Element;
|
|
503
408
|
displayName: string;
|
|
504
409
|
};
|
|
505
410
|
Date: {
|
|
506
|
-
<Decorator_6 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "
|
|
411
|
+
<Decorator_6 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof", Component_6 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
507
412
|
ArrayCards: ComposedArrayProps;
|
|
508
|
-
ArrayCollapse:
|
|
413
|
+
ArrayCollapse: react914.FC<ArrayComponentProps & {
|
|
509
414
|
defaultActiveKey?: Array<string | number>;
|
|
510
415
|
mode?: "accordion" | "multiple";
|
|
511
416
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
512
417
|
}>;
|
|
513
|
-
ArrayDialog:
|
|
418
|
+
ArrayDialog: react914.FC<ArrayComponentProps & {
|
|
514
419
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
515
420
|
}>;
|
|
516
421
|
ArrayInline: ComposedArrayProps;
|
|
517
|
-
ArrayPopover:
|
|
422
|
+
ArrayPopover: react914.FC<ArrayComponentProps & {
|
|
518
423
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
519
424
|
}>;
|
|
520
|
-
ArrayTags:
|
|
521
|
-
ArrayToggleGroup:
|
|
522
|
-
ToggleGroup:
|
|
523
|
-
Checkbox:
|
|
425
|
+
ArrayTags: react914.MemoExoticComponent<_formily_react69.ReactFC<ArrayTagsProps>>;
|
|
426
|
+
ArrayToggleGroup: react914.MemoExoticComponent<_formily_react69.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
427
|
+
ToggleGroup: react914.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react914.RefAttributes<unknown>>;
|
|
428
|
+
Checkbox: react914.FC<_radix_ui_react_checkbox21.CheckboxProps & react914.RefAttributes<HTMLButtonElement>>;
|
|
524
429
|
Column: typeof Column;
|
|
525
|
-
DatePicker:
|
|
430
|
+
DatePicker: react914.ForwardRefExoticComponent<Partial<{
|
|
526
431
|
value?: Date;
|
|
527
432
|
onChange?: (date: Date | undefined) => void;
|
|
528
433
|
placeholder?: string;
|
|
529
|
-
} & Omit<
|
|
434
|
+
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "onSelect" | "selected" | "mode">> & react914.RefAttributes<unknown>>;
|
|
530
435
|
FormGrid: typeof FormGrid;
|
|
531
|
-
FormItem:
|
|
532
|
-
children?:
|
|
533
|
-
}>, "ref"> &
|
|
534
|
-
Hidden:
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
prefix?: React.ReactNode;
|
|
542
|
-
suffix?: React.ReactNode;
|
|
543
|
-
groupClassName?: string;
|
|
544
|
-
prefixClassName?: string;
|
|
545
|
-
suffixClassName?: string;
|
|
546
|
-
}>, "ref"> & react1399.RefAttributes<unknown>>;
|
|
547
|
-
NumberInput: react1399.ForwardRefExoticComponent<Omit<Partial<react1399.ClassAttributes<HTMLInputElement> & react1399.InputHTMLAttributes<HTMLInputElement> & {
|
|
548
|
-
prefix?: React.ReactNode;
|
|
549
|
-
suffix?: React.ReactNode;
|
|
550
|
-
groupClassName?: string;
|
|
551
|
-
prefixClassName?: string;
|
|
552
|
-
suffixClassName?: string;
|
|
553
|
-
}>, "ref"> & react1399.RefAttributes<unknown>>;
|
|
554
|
-
ObjectContainer: react1399.FC<ObjectContainerProps>;
|
|
555
|
-
Radio: react1399.FC;
|
|
436
|
+
FormItem: react914.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
437
|
+
children?: react914.ReactNode | undefined;
|
|
438
|
+
}>, "ref"> & react914.RefAttributes<unknown>>;
|
|
439
|
+
Hidden: react914.ForwardRefExoticComponent<Partial<HiddenProps> & react914.RefAttributes<unknown>>;
|
|
440
|
+
IconToggle: react914.FC<_pixpilot_shadcn_ui329.IconToggleProps>;
|
|
441
|
+
ToggleButton: react914.FC<_pixpilot_shadcn_ui329.ToggleButtonProps>;
|
|
442
|
+
Input: react914.FC<_pixpilot_shadcn_ui329.InputProps>;
|
|
443
|
+
NumberInput: react914.FC<_pixpilot_shadcn_ui329.InputProps>;
|
|
444
|
+
ObjectContainer: react914.FC<ObjectContainerProps>;
|
|
445
|
+
Radio: react914.FC<RadioProps>;
|
|
556
446
|
Row: typeof Row;
|
|
557
|
-
Select:
|
|
558
|
-
Separator:
|
|
559
|
-
Switch:
|
|
560
|
-
Textarea:
|
|
447
|
+
Select: react914.FC<SelectProps$1>;
|
|
448
|
+
Separator: react914.FC<_radix_ui_react_separator21.SeparatorProps & react914.RefAttributes<HTMLDivElement>>;
|
|
449
|
+
Switch: react914.FC<_radix_ui_react_switch21.SwitchProps & react914.RefAttributes<HTMLButtonElement>>;
|
|
450
|
+
Textarea: react914.FC<react914.ClassAttributes<HTMLTextAreaElement> & react914.TextareaHTMLAttributes<HTMLTextAreaElement>>;
|
|
561
451
|
}, Component_6, Decorator_6>): JSX.Element;
|
|
562
452
|
displayName: string;
|
|
563
453
|
};
|
|
564
454
|
DateTime: {
|
|
565
|
-
<Decorator_7 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "
|
|
455
|
+
<Decorator_7 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof", Component_7 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
566
456
|
ArrayCards: ComposedArrayProps;
|
|
567
|
-
ArrayCollapse:
|
|
457
|
+
ArrayCollapse: react914.FC<ArrayComponentProps & {
|
|
568
458
|
defaultActiveKey?: Array<string | number>;
|
|
569
459
|
mode?: "accordion" | "multiple";
|
|
570
460
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
571
461
|
}>;
|
|
572
|
-
ArrayDialog:
|
|
462
|
+
ArrayDialog: react914.FC<ArrayComponentProps & {
|
|
573
463
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
574
464
|
}>;
|
|
575
465
|
ArrayInline: ComposedArrayProps;
|
|
576
|
-
ArrayPopover:
|
|
466
|
+
ArrayPopover: react914.FC<ArrayComponentProps & {
|
|
577
467
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
578
468
|
}>;
|
|
579
|
-
ArrayTags:
|
|
580
|
-
ArrayToggleGroup:
|
|
581
|
-
ToggleGroup:
|
|
582
|
-
Checkbox:
|
|
469
|
+
ArrayTags: react914.MemoExoticComponent<_formily_react69.ReactFC<ArrayTagsProps>>;
|
|
470
|
+
ArrayToggleGroup: react914.MemoExoticComponent<_formily_react69.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
471
|
+
ToggleGroup: react914.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react914.RefAttributes<unknown>>;
|
|
472
|
+
Checkbox: react914.FC<_radix_ui_react_checkbox21.CheckboxProps & react914.RefAttributes<HTMLButtonElement>>;
|
|
583
473
|
Column: typeof Column;
|
|
584
|
-
DatePicker:
|
|
474
|
+
DatePicker: react914.ForwardRefExoticComponent<Partial<{
|
|
585
475
|
value?: Date;
|
|
586
476
|
onChange?: (date: Date | undefined) => void;
|
|
587
477
|
placeholder?: string;
|
|
588
|
-
} & Omit<
|
|
478
|
+
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "onSelect" | "selected" | "mode">> & react914.RefAttributes<unknown>>;
|
|
589
479
|
FormGrid: typeof FormGrid;
|
|
590
|
-
FormItem:
|
|
591
|
-
children?:
|
|
592
|
-
}>, "ref"> &
|
|
593
|
-
Hidden:
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
prefix?: React.ReactNode;
|
|
601
|
-
suffix?: React.ReactNode;
|
|
602
|
-
groupClassName?: string;
|
|
603
|
-
prefixClassName?: string;
|
|
604
|
-
suffixClassName?: string;
|
|
605
|
-
}>, "ref"> & react1399.RefAttributes<unknown>>;
|
|
606
|
-
NumberInput: react1399.ForwardRefExoticComponent<Omit<Partial<react1399.ClassAttributes<HTMLInputElement> & react1399.InputHTMLAttributes<HTMLInputElement> & {
|
|
607
|
-
prefix?: React.ReactNode;
|
|
608
|
-
suffix?: React.ReactNode;
|
|
609
|
-
groupClassName?: string;
|
|
610
|
-
prefixClassName?: string;
|
|
611
|
-
suffixClassName?: string;
|
|
612
|
-
}>, "ref"> & react1399.RefAttributes<unknown>>;
|
|
613
|
-
ObjectContainer: react1399.FC<ObjectContainerProps>;
|
|
614
|
-
Radio: react1399.FC;
|
|
480
|
+
FormItem: react914.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
481
|
+
children?: react914.ReactNode | undefined;
|
|
482
|
+
}>, "ref"> & react914.RefAttributes<unknown>>;
|
|
483
|
+
Hidden: react914.ForwardRefExoticComponent<Partial<HiddenProps> & react914.RefAttributes<unknown>>;
|
|
484
|
+
IconToggle: react914.FC<_pixpilot_shadcn_ui329.IconToggleProps>;
|
|
485
|
+
ToggleButton: react914.FC<_pixpilot_shadcn_ui329.ToggleButtonProps>;
|
|
486
|
+
Input: react914.FC<_pixpilot_shadcn_ui329.InputProps>;
|
|
487
|
+
NumberInput: react914.FC<_pixpilot_shadcn_ui329.InputProps>;
|
|
488
|
+
ObjectContainer: react914.FC<ObjectContainerProps>;
|
|
489
|
+
Radio: react914.FC<RadioProps>;
|
|
615
490
|
Row: typeof Row;
|
|
616
|
-
Select:
|
|
617
|
-
Separator:
|
|
618
|
-
Switch:
|
|
619
|
-
Textarea:
|
|
491
|
+
Select: react914.FC<SelectProps$1>;
|
|
492
|
+
Separator: react914.FC<_radix_ui_react_separator21.SeparatorProps & react914.RefAttributes<HTMLDivElement>>;
|
|
493
|
+
Switch: react914.FC<_radix_ui_react_switch21.SwitchProps & react914.RefAttributes<HTMLButtonElement>>;
|
|
494
|
+
Textarea: react914.FC<react914.ClassAttributes<HTMLTextAreaElement> & react914.TextareaHTMLAttributes<HTMLTextAreaElement>>;
|
|
620
495
|
}, Component_7, Decorator_7>): JSX.Element;
|
|
621
496
|
displayName: string;
|
|
622
497
|
};
|
|
623
498
|
Void: {
|
|
624
|
-
<Decorator_8 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "
|
|
499
|
+
<Decorator_8 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof", Component_8 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
625
500
|
ArrayCards: ComposedArrayProps;
|
|
626
|
-
ArrayCollapse:
|
|
501
|
+
ArrayCollapse: react914.FC<ArrayComponentProps & {
|
|
627
502
|
defaultActiveKey?: Array<string | number>;
|
|
628
503
|
mode?: "accordion" | "multiple";
|
|
629
504
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
630
505
|
}>;
|
|
631
|
-
ArrayDialog:
|
|
506
|
+
ArrayDialog: react914.FC<ArrayComponentProps & {
|
|
632
507
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
633
508
|
}>;
|
|
634
509
|
ArrayInline: ComposedArrayProps;
|
|
635
|
-
ArrayPopover:
|
|
510
|
+
ArrayPopover: react914.FC<ArrayComponentProps & {
|
|
636
511
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
637
512
|
}>;
|
|
638
|
-
ArrayTags:
|
|
639
|
-
ArrayToggleGroup:
|
|
640
|
-
ToggleGroup:
|
|
641
|
-
Checkbox:
|
|
513
|
+
ArrayTags: react914.MemoExoticComponent<_formily_react69.ReactFC<ArrayTagsProps>>;
|
|
514
|
+
ArrayToggleGroup: react914.MemoExoticComponent<_formily_react69.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
515
|
+
ToggleGroup: react914.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react914.RefAttributes<unknown>>;
|
|
516
|
+
Checkbox: react914.FC<_radix_ui_react_checkbox21.CheckboxProps & react914.RefAttributes<HTMLButtonElement>>;
|
|
642
517
|
Column: typeof Column;
|
|
643
|
-
DatePicker:
|
|
518
|
+
DatePicker: react914.ForwardRefExoticComponent<Partial<{
|
|
644
519
|
value?: Date;
|
|
645
520
|
onChange?: (date: Date | undefined) => void;
|
|
646
521
|
placeholder?: string;
|
|
647
|
-
} & Omit<
|
|
522
|
+
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "onSelect" | "selected" | "mode">> & react914.RefAttributes<unknown>>;
|
|
648
523
|
FormGrid: typeof FormGrid;
|
|
649
|
-
FormItem:
|
|
650
|
-
children?:
|
|
651
|
-
}>, "ref"> &
|
|
652
|
-
Hidden:
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
prefix?: React.ReactNode;
|
|
660
|
-
suffix?: React.ReactNode;
|
|
661
|
-
groupClassName?: string;
|
|
662
|
-
prefixClassName?: string;
|
|
663
|
-
suffixClassName?: string;
|
|
664
|
-
}>, "ref"> & react1399.RefAttributes<unknown>>;
|
|
665
|
-
NumberInput: react1399.ForwardRefExoticComponent<Omit<Partial<react1399.ClassAttributes<HTMLInputElement> & react1399.InputHTMLAttributes<HTMLInputElement> & {
|
|
666
|
-
prefix?: React.ReactNode;
|
|
667
|
-
suffix?: React.ReactNode;
|
|
668
|
-
groupClassName?: string;
|
|
669
|
-
prefixClassName?: string;
|
|
670
|
-
suffixClassName?: string;
|
|
671
|
-
}>, "ref"> & react1399.RefAttributes<unknown>>;
|
|
672
|
-
ObjectContainer: react1399.FC<ObjectContainerProps>;
|
|
673
|
-
Radio: react1399.FC;
|
|
524
|
+
FormItem: react914.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
525
|
+
children?: react914.ReactNode | undefined;
|
|
526
|
+
}>, "ref"> & react914.RefAttributes<unknown>>;
|
|
527
|
+
Hidden: react914.ForwardRefExoticComponent<Partial<HiddenProps> & react914.RefAttributes<unknown>>;
|
|
528
|
+
IconToggle: react914.FC<_pixpilot_shadcn_ui329.IconToggleProps>;
|
|
529
|
+
ToggleButton: react914.FC<_pixpilot_shadcn_ui329.ToggleButtonProps>;
|
|
530
|
+
Input: react914.FC<_pixpilot_shadcn_ui329.InputProps>;
|
|
531
|
+
NumberInput: react914.FC<_pixpilot_shadcn_ui329.InputProps>;
|
|
532
|
+
ObjectContainer: react914.FC<ObjectContainerProps>;
|
|
533
|
+
Radio: react914.FC<RadioProps>;
|
|
674
534
|
Row: typeof Row;
|
|
675
|
-
Select:
|
|
676
|
-
Separator:
|
|
677
|
-
Switch:
|
|
678
|
-
Textarea:
|
|
535
|
+
Select: react914.FC<SelectProps$1>;
|
|
536
|
+
Separator: react914.FC<_radix_ui_react_separator21.SeparatorProps & react914.RefAttributes<HTMLDivElement>>;
|
|
537
|
+
Switch: react914.FC<_radix_ui_react_switch21.SwitchProps & react914.RefAttributes<HTMLButtonElement>>;
|
|
538
|
+
Textarea: react914.FC<react914.ClassAttributes<HTMLTextAreaElement> & react914.TextareaHTMLAttributes<HTMLTextAreaElement>>;
|
|
679
539
|
}, Component_8, Decorator_8>): JSX.Element;
|
|
680
540
|
displayName: string;
|
|
681
541
|
};
|
|
682
542
|
Number: {
|
|
683
|
-
<Decorator_9 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "
|
|
543
|
+
<Decorator_9 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof", Component_9 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
684
544
|
ArrayCards: ComposedArrayProps;
|
|
685
|
-
ArrayCollapse:
|
|
545
|
+
ArrayCollapse: react914.FC<ArrayComponentProps & {
|
|
686
546
|
defaultActiveKey?: Array<string | number>;
|
|
687
547
|
mode?: "accordion" | "multiple";
|
|
688
548
|
collapseProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
689
549
|
}>;
|
|
690
|
-
ArrayDialog:
|
|
550
|
+
ArrayDialog: react914.FC<ArrayComponentProps & {
|
|
691
551
|
dialogProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
692
552
|
}>;
|
|
693
553
|
ArrayInline: ComposedArrayProps;
|
|
694
|
-
ArrayPopover:
|
|
554
|
+
ArrayPopover: react914.FC<ArrayComponentProps & {
|
|
695
555
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
696
556
|
}>;
|
|
697
|
-
ArrayTags:
|
|
698
|
-
ArrayToggleGroup:
|
|
699
|
-
ToggleGroup:
|
|
700
|
-
Checkbox:
|
|
557
|
+
ArrayTags: react914.MemoExoticComponent<_formily_react69.ReactFC<ArrayTagsProps>>;
|
|
558
|
+
ArrayToggleGroup: react914.MemoExoticComponent<_formily_react69.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
559
|
+
ToggleGroup: react914.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react914.RefAttributes<unknown>>;
|
|
560
|
+
Checkbox: react914.FC<_radix_ui_react_checkbox21.CheckboxProps & react914.RefAttributes<HTMLButtonElement>>;
|
|
701
561
|
Column: typeof Column;
|
|
702
|
-
DatePicker:
|
|
562
|
+
DatePicker: react914.ForwardRefExoticComponent<Partial<{
|
|
703
563
|
value?: Date;
|
|
704
564
|
onChange?: (date: Date | undefined) => void;
|
|
705
565
|
placeholder?: string;
|
|
706
|
-
} & Omit<
|
|
566
|
+
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "onSelect" | "selected" | "mode">> & react914.RefAttributes<unknown>>;
|
|
707
567
|
FormGrid: typeof FormGrid;
|
|
708
|
-
FormItem:
|
|
709
|
-
children?:
|
|
710
|
-
}>, "ref"> &
|
|
711
|
-
Hidden:
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
prefix?: React.ReactNode;
|
|
719
|
-
suffix?: React.ReactNode;
|
|
720
|
-
groupClassName?: string;
|
|
721
|
-
prefixClassName?: string;
|
|
722
|
-
suffixClassName?: string;
|
|
723
|
-
}>, "ref"> & react1399.RefAttributes<unknown>>;
|
|
724
|
-
NumberInput: react1399.ForwardRefExoticComponent<Omit<Partial<react1399.ClassAttributes<HTMLInputElement> & react1399.InputHTMLAttributes<HTMLInputElement> & {
|
|
725
|
-
prefix?: React.ReactNode;
|
|
726
|
-
suffix?: React.ReactNode;
|
|
727
|
-
groupClassName?: string;
|
|
728
|
-
prefixClassName?: string;
|
|
729
|
-
suffixClassName?: string;
|
|
730
|
-
}>, "ref"> & react1399.RefAttributes<unknown>>;
|
|
731
|
-
ObjectContainer: react1399.FC<ObjectContainerProps>;
|
|
732
|
-
Radio: react1399.FC;
|
|
568
|
+
FormItem: react914.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
569
|
+
children?: react914.ReactNode | undefined;
|
|
570
|
+
}>, "ref"> & react914.RefAttributes<unknown>>;
|
|
571
|
+
Hidden: react914.ForwardRefExoticComponent<Partial<HiddenProps> & react914.RefAttributes<unknown>>;
|
|
572
|
+
IconToggle: react914.FC<_pixpilot_shadcn_ui329.IconToggleProps>;
|
|
573
|
+
ToggleButton: react914.FC<_pixpilot_shadcn_ui329.ToggleButtonProps>;
|
|
574
|
+
Input: react914.FC<_pixpilot_shadcn_ui329.InputProps>;
|
|
575
|
+
NumberInput: react914.FC<_pixpilot_shadcn_ui329.InputProps>;
|
|
576
|
+
ObjectContainer: react914.FC<ObjectContainerProps>;
|
|
577
|
+
Radio: react914.FC<RadioProps>;
|
|
733
578
|
Row: typeof Row;
|
|
734
|
-
Select:
|
|
735
|
-
Separator:
|
|
736
|
-
Switch:
|
|
737
|
-
Textarea:
|
|
579
|
+
Select: react914.FC<SelectProps$1>;
|
|
580
|
+
Separator: react914.FC<_radix_ui_react_separator21.SeparatorProps & react914.RefAttributes<HTMLDivElement>>;
|
|
581
|
+
Switch: react914.FC<_radix_ui_react_switch21.SwitchProps & react914.RefAttributes<HTMLButtonElement>>;
|
|
582
|
+
Textarea: react914.FC<react914.ClassAttributes<HTMLTextAreaElement> & react914.TextareaHTMLAttributes<HTMLTextAreaElement>>;
|
|
738
583
|
}, Component_9, Decorator_9>): JSX.Element;
|
|
739
584
|
displayName: string;
|
|
740
585
|
};
|