@pixpilot/formily-shadcn 1.18.1 → 2.0.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/date-picker/DatePicker.d.cts +1 -1
- package/dist/components/date-picker/DatePicker.d.ts +1 -1
- package/dist/components/dialog-item/ConnectedDialogItem.d.cts +4 -4
- package/dist/components/drawer-item/ConnectedDrawerItem.d.cts +4 -4
- package/dist/components/form/Form.d.cts +2 -2
- package/dist/components/form-grid/FormGrid.d.cts +2 -2
- package/dist/components/form-item/ConnectedFormItem.d.cts +4 -4
- package/dist/components/popover-item/ConnectedPopoverItem.d.ts +4 -4
- package/dist/components/radio/Radio.d.ts +2 -2
- package/dist/components/row/Row.d.ts +2 -2
- package/dist/components/schema-field/schema-field-basics.d.cts +20 -20
- package/dist/components/schema-field/schema-field-basics.d.ts +373 -373
- package/dist/components/schema-field/schema-field-extended.d.cts +20 -20
- package/dist/components/schema-field/schema-field-extended.d.ts +516 -516
- package/dist/components/schema-field/schema-field.d.cts +20 -20
- package/dist/components/schema-field/schema-field.d.ts +461 -461
- package/package.json +5 -5
|
@@ -7,6 +7,6 @@ declare const DatePicker: react2.ForwardRefExoticComponent<Partial<{
|
|
|
7
7
|
value?: Date;
|
|
8
8
|
onChange?: (date: Date | undefined) => void;
|
|
9
9
|
placeholder?: string;
|
|
10
|
-
} & Omit<DatePickerProps, "
|
|
10
|
+
} & Omit<DatePickerProps, "selected" | "onSelect" | "mode">> & react2.RefAttributes<unknown>>;
|
|
11
11
|
//#endregion
|
|
12
12
|
export { DatePicker };
|
|
@@ -7,6 +7,6 @@ declare const DatePicker$1: react0.ForwardRefExoticComponent<Partial<{
|
|
|
7
7
|
value?: Date;
|
|
8
8
|
onChange?: (date: Date | undefined) => void;
|
|
9
9
|
placeholder?: string;
|
|
10
|
-
} & Omit<DatePickerProps, "
|
|
10
|
+
} & Omit<DatePickerProps, "selected" | "onSelect" | "mode">> & react0.RefAttributes<unknown>>;
|
|
11
11
|
//#endregion
|
|
12
12
|
export { DatePicker$1 as DatePicker };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DialogItemProps } from "./BaseDialogItem.cjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react4 from "react";
|
|
3
3
|
|
|
4
4
|
//#region src/components/dialog-item/ConnectedDialogItem.d.ts
|
|
5
5
|
|
|
@@ -8,8 +8,8 @@ import * as react0 from "react";
|
|
|
8
8
|
* Maps field label, description, and validation state onto the decorator the
|
|
9
9
|
* same way FormItem does.
|
|
10
10
|
*/
|
|
11
|
-
declare const DialogItem:
|
|
12
|
-
children?:
|
|
13
|
-
}>, "ref"> &
|
|
11
|
+
declare const DialogItem: react4.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
|
|
12
|
+
children?: react4.ReactNode | undefined;
|
|
13
|
+
}>, "ref"> & react4.RefAttributes<unknown>>;
|
|
14
14
|
//#endregion
|
|
15
15
|
export { DialogItem };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DrawerItemProps } from "./BaseDrawerItem.cjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react0 from "react";
|
|
3
3
|
|
|
4
4
|
//#region src/components/drawer-item/ConnectedDrawerItem.d.ts
|
|
5
5
|
|
|
@@ -8,8 +8,8 @@ import * as react4 from "react";
|
|
|
8
8
|
* Maps field label, description, and validation state onto the decorator the
|
|
9
9
|
* same way FormItem does.
|
|
10
10
|
*/
|
|
11
|
-
declare const DrawerItem:
|
|
12
|
-
children?:
|
|
13
|
-
}>, "ref"> &
|
|
11
|
+
declare const DrawerItem: react0.ForwardRefExoticComponent<Omit<Partial<DrawerItemProps & {
|
|
12
|
+
children?: react0.ReactNode | undefined;
|
|
13
|
+
}>, "ref"> & react0.RefAttributes<unknown>>;
|
|
14
14
|
//#endregion
|
|
15
15
|
export { DrawerItem };
|
|
@@ -2,7 +2,7 @@ import { FormContextStates } from "../context/form-context.cjs";
|
|
|
2
2
|
import "../context/index.cjs";
|
|
3
3
|
import React from "react";
|
|
4
4
|
import { Form } from "@formily/core";
|
|
5
|
-
import * as
|
|
5
|
+
import * as react_jsx_runtime1 from "react/jsx-runtime";
|
|
6
6
|
|
|
7
7
|
//#region src/components/form/Form.d.ts
|
|
8
8
|
interface IFormProps extends FormContextStates {
|
|
@@ -27,6 +27,6 @@ declare function Form$1({
|
|
|
27
27
|
onAutoSubmit,
|
|
28
28
|
layout,
|
|
29
29
|
settings
|
|
30
|
-
}: IFormProps):
|
|
30
|
+
}: IFormProps): react_jsx_runtime1.JSX.Element;
|
|
31
31
|
//#endregion
|
|
32
32
|
export { Form$1 as Form, IFormProps };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/form-grid/FormGrid.d.ts
|
|
5
5
|
interface IFormGridProps extends React.HTMLAttributes<HTMLDivElement> {}
|
|
@@ -7,6 +7,6 @@ declare function FormGrid({
|
|
|
7
7
|
className,
|
|
8
8
|
children,
|
|
9
9
|
...rest
|
|
10
|
-
}: IFormGridProps):
|
|
10
|
+
}: IFormGridProps): react_jsx_runtime0.JSX.Element;
|
|
11
11
|
//#endregion
|
|
12
12
|
export { FormGrid, IFormGridProps };
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { FormItemProps } from "./form-item-types.cjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react1585 from "react";
|
|
3
3
|
|
|
4
4
|
//#region src/components/form-item/ConnectedFormItem.d.ts
|
|
5
5
|
/**
|
|
6
6
|
* FormItem component connected to Formily field state.
|
|
7
7
|
* Automatically maps field validation state to component props.
|
|
8
8
|
*/
|
|
9
|
-
declare const FormItem:
|
|
10
|
-
children?:
|
|
11
|
-
}>, "ref"> &
|
|
9
|
+
declare const FormItem: react1585.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
10
|
+
children?: react1585.ReactNode | undefined;
|
|
11
|
+
}>, "ref"> & react1585.RefAttributes<unknown>>;
|
|
12
12
|
//#endregion
|
|
13
13
|
export { FormItem };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PopoverItemProps } from "./BasePopoverItem.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react1580 from "react";
|
|
3
3
|
|
|
4
4
|
//#region src/components/popover-item/ConnectedPopoverItem.d.ts
|
|
5
5
|
|
|
@@ -8,8 +8,8 @@ import * as react7 from "react";
|
|
|
8
8
|
* Maps field label, description, and validation state onto the decorator the
|
|
9
9
|
* same way FormItem does.
|
|
10
10
|
*/
|
|
11
|
-
declare const PopoverItem:
|
|
12
|
-
children?:
|
|
13
|
-
}>, "ref"> &
|
|
11
|
+
declare const PopoverItem: react1580.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
|
|
12
|
+
children?: react1580.ReactNode | undefined;
|
|
13
|
+
}>, "ref"> & react1580.RefAttributes<unknown>>;
|
|
14
14
|
//#endregion
|
|
15
15
|
export { PopoverItem };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ComponentProps, FC } from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime3 from "react/jsx-runtime";
|
|
3
3
|
import { RadioGroup } from "@pixpilot/shadcn";
|
|
4
4
|
|
|
5
5
|
//#region src/components/radio/Radio.d.ts
|
|
@@ -15,7 +15,7 @@ type RadioProps = {
|
|
|
15
15
|
/**
|
|
16
16
|
* Radio component with options rendering
|
|
17
17
|
*/
|
|
18
|
-
declare function Radio(props: RadioProps):
|
|
18
|
+
declare function Radio(props: RadioProps): react_jsx_runtime3.JSX.Element;
|
|
19
19
|
declare namespace Radio {
|
|
20
20
|
var displayName: string;
|
|
21
21
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime2 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/row/Row.d.ts
|
|
5
5
|
interface IRowProps {
|
|
@@ -36,6 +36,6 @@ interface IRowProps {
|
|
|
36
36
|
declare function Row({
|
|
37
37
|
className,
|
|
38
38
|
children
|
|
39
|
-
}: IRowProps):
|
|
39
|
+
}: IRowProps): react_jsx_runtime2.JSX.Element;
|
|
40
40
|
//#endregion
|
|
41
41
|
export { IRowProps, Row };
|
|
@@ -101,7 +101,7 @@ declare const basicComponentRegistry: {
|
|
|
101
101
|
value?: Date;
|
|
102
102
|
onChange?: (date: Date | undefined) => void;
|
|
103
103
|
placeholder?: string;
|
|
104
|
-
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "
|
|
104
|
+
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "selected" | "onSelect" | "mode">> & react1143.RefAttributes<unknown>>;
|
|
105
105
|
decorator: string;
|
|
106
106
|
};
|
|
107
107
|
DialogItem: {
|
|
@@ -202,7 +202,7 @@ declare const basicComponents: {
|
|
|
202
202
|
value?: Date;
|
|
203
203
|
onChange?: (date: Date | undefined) => void;
|
|
204
204
|
placeholder?: string;
|
|
205
|
-
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "
|
|
205
|
+
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "selected" | "onSelect" | "mode">> & react1143.RefAttributes<unknown>>;
|
|
206
206
|
DialogItem: react1143.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
|
|
207
207
|
children?: react1143.ReactNode | undefined;
|
|
208
208
|
}>, "ref"> & react1143.RefAttributes<unknown>>;
|
|
@@ -233,7 +233,7 @@ declare const SchemaFieldBasics: {
|
|
|
233
233
|
<Decorator extends _formily_react69.JSXComponent, Component extends _formily_react69.JSXComponent>(props: _formily_react69.ISchemaFieldProps<Decorator, Component, _formily_core1.ObjectField<Decorator, Component>>): JSX.Element;
|
|
234
234
|
displayName: string;
|
|
235
235
|
Markup: {
|
|
236
|
-
<Decorator_1 extends "
|
|
236
|
+
<Decorator_1 extends "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Radio" | "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" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof", Component_1 extends "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Radio" | "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" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof">(props: _formily_react69.ISchemaMarkupFieldProps<{
|
|
237
237
|
ArrayCards: ComposedArrayProps;
|
|
238
238
|
ArrayCollapse: react1143.FC<ArrayComponentProps & {
|
|
239
239
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -262,7 +262,7 @@ declare const SchemaFieldBasics: {
|
|
|
262
262
|
value?: Date;
|
|
263
263
|
onChange?: (date: Date | undefined) => void;
|
|
264
264
|
placeholder?: string;
|
|
265
|
-
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "
|
|
265
|
+
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "selected" | "onSelect" | "mode">> & react1143.RefAttributes<unknown>>;
|
|
266
266
|
DialogItem: react1143.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
|
|
267
267
|
children?: react1143.ReactNode | undefined;
|
|
268
268
|
}>, "ref"> & react1143.RefAttributes<unknown>>;
|
|
@@ -292,7 +292,7 @@ declare const SchemaFieldBasics: {
|
|
|
292
292
|
displayName: string;
|
|
293
293
|
};
|
|
294
294
|
String: {
|
|
295
|
-
<Decorator_2 extends "
|
|
295
|
+
<Decorator_2 extends "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Radio" | "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" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof", Component_2 extends "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Radio" | "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" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
296
296
|
ArrayCards: ComposedArrayProps;
|
|
297
297
|
ArrayCollapse: react1143.FC<ArrayComponentProps & {
|
|
298
298
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -321,7 +321,7 @@ declare const SchemaFieldBasics: {
|
|
|
321
321
|
value?: Date;
|
|
322
322
|
onChange?: (date: Date | undefined) => void;
|
|
323
323
|
placeholder?: string;
|
|
324
|
-
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "
|
|
324
|
+
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "selected" | "onSelect" | "mode">> & react1143.RefAttributes<unknown>>;
|
|
325
325
|
DialogItem: react1143.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
|
|
326
326
|
children?: react1143.ReactNode | undefined;
|
|
327
327
|
}>, "ref"> & react1143.RefAttributes<unknown>>;
|
|
@@ -351,7 +351,7 @@ declare const SchemaFieldBasics: {
|
|
|
351
351
|
displayName: string;
|
|
352
352
|
};
|
|
353
353
|
Object: {
|
|
354
|
-
<Decorator_3 extends "
|
|
354
|
+
<Decorator_3 extends "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Radio" | "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" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof", Component_3 extends "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Radio" | "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" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
355
355
|
ArrayCards: ComposedArrayProps;
|
|
356
356
|
ArrayCollapse: react1143.FC<ArrayComponentProps & {
|
|
357
357
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -380,7 +380,7 @@ declare const SchemaFieldBasics: {
|
|
|
380
380
|
value?: Date;
|
|
381
381
|
onChange?: (date: Date | undefined) => void;
|
|
382
382
|
placeholder?: string;
|
|
383
|
-
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "
|
|
383
|
+
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "selected" | "onSelect" | "mode">> & react1143.RefAttributes<unknown>>;
|
|
384
384
|
DialogItem: react1143.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
|
|
385
385
|
children?: react1143.ReactNode | undefined;
|
|
386
386
|
}>, "ref"> & react1143.RefAttributes<unknown>>;
|
|
@@ -410,7 +410,7 @@ declare const SchemaFieldBasics: {
|
|
|
410
410
|
displayName: string;
|
|
411
411
|
};
|
|
412
412
|
Array: {
|
|
413
|
-
<Decorator_4 extends "
|
|
413
|
+
<Decorator_4 extends "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Radio" | "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" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof", Component_4 extends "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Radio" | "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" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
414
414
|
ArrayCards: ComposedArrayProps;
|
|
415
415
|
ArrayCollapse: react1143.FC<ArrayComponentProps & {
|
|
416
416
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -439,7 +439,7 @@ declare const SchemaFieldBasics: {
|
|
|
439
439
|
value?: Date;
|
|
440
440
|
onChange?: (date: Date | undefined) => void;
|
|
441
441
|
placeholder?: string;
|
|
442
|
-
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "
|
|
442
|
+
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "selected" | "onSelect" | "mode">> & react1143.RefAttributes<unknown>>;
|
|
443
443
|
DialogItem: react1143.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
|
|
444
444
|
children?: react1143.ReactNode | undefined;
|
|
445
445
|
}>, "ref"> & react1143.RefAttributes<unknown>>;
|
|
@@ -469,7 +469,7 @@ declare const SchemaFieldBasics: {
|
|
|
469
469
|
displayName: string;
|
|
470
470
|
};
|
|
471
471
|
Boolean: {
|
|
472
|
-
<Decorator_5 extends "
|
|
472
|
+
<Decorator_5 extends "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Radio" | "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" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof", Component_5 extends "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Radio" | "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" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
473
473
|
ArrayCards: ComposedArrayProps;
|
|
474
474
|
ArrayCollapse: react1143.FC<ArrayComponentProps & {
|
|
475
475
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -498,7 +498,7 @@ declare const SchemaFieldBasics: {
|
|
|
498
498
|
value?: Date;
|
|
499
499
|
onChange?: (date: Date | undefined) => void;
|
|
500
500
|
placeholder?: string;
|
|
501
|
-
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "
|
|
501
|
+
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "selected" | "onSelect" | "mode">> & react1143.RefAttributes<unknown>>;
|
|
502
502
|
DialogItem: react1143.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
|
|
503
503
|
children?: react1143.ReactNode | undefined;
|
|
504
504
|
}>, "ref"> & react1143.RefAttributes<unknown>>;
|
|
@@ -528,7 +528,7 @@ declare const SchemaFieldBasics: {
|
|
|
528
528
|
displayName: string;
|
|
529
529
|
};
|
|
530
530
|
Date: {
|
|
531
|
-
<Decorator_6 extends "
|
|
531
|
+
<Decorator_6 extends "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Radio" | "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" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof", Component_6 extends "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Radio" | "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" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
532
532
|
ArrayCards: ComposedArrayProps;
|
|
533
533
|
ArrayCollapse: react1143.FC<ArrayComponentProps & {
|
|
534
534
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -557,7 +557,7 @@ declare const SchemaFieldBasics: {
|
|
|
557
557
|
value?: Date;
|
|
558
558
|
onChange?: (date: Date | undefined) => void;
|
|
559
559
|
placeholder?: string;
|
|
560
|
-
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "
|
|
560
|
+
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "selected" | "onSelect" | "mode">> & react1143.RefAttributes<unknown>>;
|
|
561
561
|
DialogItem: react1143.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
|
|
562
562
|
children?: react1143.ReactNode | undefined;
|
|
563
563
|
}>, "ref"> & react1143.RefAttributes<unknown>>;
|
|
@@ -587,7 +587,7 @@ declare const SchemaFieldBasics: {
|
|
|
587
587
|
displayName: string;
|
|
588
588
|
};
|
|
589
589
|
DateTime: {
|
|
590
|
-
<Decorator_7 extends "
|
|
590
|
+
<Decorator_7 extends "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Radio" | "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" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof", Component_7 extends "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Radio" | "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" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
591
591
|
ArrayCards: ComposedArrayProps;
|
|
592
592
|
ArrayCollapse: react1143.FC<ArrayComponentProps & {
|
|
593
593
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -616,7 +616,7 @@ declare const SchemaFieldBasics: {
|
|
|
616
616
|
value?: Date;
|
|
617
617
|
onChange?: (date: Date | undefined) => void;
|
|
618
618
|
placeholder?: string;
|
|
619
|
-
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "
|
|
619
|
+
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "selected" | "onSelect" | "mode">> & react1143.RefAttributes<unknown>>;
|
|
620
620
|
DialogItem: react1143.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
|
|
621
621
|
children?: react1143.ReactNode | undefined;
|
|
622
622
|
}>, "ref"> & react1143.RefAttributes<unknown>>;
|
|
@@ -646,7 +646,7 @@ declare const SchemaFieldBasics: {
|
|
|
646
646
|
displayName: string;
|
|
647
647
|
};
|
|
648
648
|
Void: {
|
|
649
|
-
<Decorator_8 extends "
|
|
649
|
+
<Decorator_8 extends "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Radio" | "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" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof", Component_8 extends "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Radio" | "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" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
650
650
|
ArrayCards: ComposedArrayProps;
|
|
651
651
|
ArrayCollapse: react1143.FC<ArrayComponentProps & {
|
|
652
652
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -675,7 +675,7 @@ declare const SchemaFieldBasics: {
|
|
|
675
675
|
value?: Date;
|
|
676
676
|
onChange?: (date: Date | undefined) => void;
|
|
677
677
|
placeholder?: string;
|
|
678
|
-
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "
|
|
678
|
+
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "selected" | "onSelect" | "mode">> & react1143.RefAttributes<unknown>>;
|
|
679
679
|
DialogItem: react1143.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
|
|
680
680
|
children?: react1143.ReactNode | undefined;
|
|
681
681
|
}>, "ref"> & react1143.RefAttributes<unknown>>;
|
|
@@ -705,7 +705,7 @@ declare const SchemaFieldBasics: {
|
|
|
705
705
|
displayName: string;
|
|
706
706
|
};
|
|
707
707
|
Number: {
|
|
708
|
-
<Decorator_9 extends "
|
|
708
|
+
<Decorator_9 extends "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Radio" | "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" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof", Component_9 extends "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Radio" | "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" | "DialogItem.$$typeof" | "DrawerItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof">(props: _formily_react69.ISchemaTypeFieldProps<{
|
|
709
709
|
ArrayCards: ComposedArrayProps;
|
|
710
710
|
ArrayCollapse: react1143.FC<ArrayComponentProps & {
|
|
711
711
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -734,7 +734,7 @@ declare const SchemaFieldBasics: {
|
|
|
734
734
|
value?: Date;
|
|
735
735
|
onChange?: (date: Date | undefined) => void;
|
|
736
736
|
placeholder?: string;
|
|
737
|
-
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "
|
|
737
|
+
} & Omit<_pixpilot_shadcn_ui329.DatePickerProps, "selected" | "onSelect" | "mode">> & react1143.RefAttributes<unknown>>;
|
|
738
738
|
DialogItem: react1143.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
|
|
739
739
|
children?: react1143.ReactNode | undefined;
|
|
740
740
|
}>, "ref"> & react1143.RefAttributes<unknown>>;
|