@pixpilot/formily-shadcn 2.0.0 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/array-tags/ArrayTags.d.cts +2 -2
- package/dist/components/array-tags/ArrayTags.d.ts +2 -2
- package/dist/components/array-toggle-group/ArrayToggleGroup.d.ts +2 -2
- package/dist/components/column/Column.d.ts +2 -2
- package/dist/components/date-picker/DatePicker.d.cts +3 -3
- package/dist/components/date-picker/DatePicker.d.ts +3 -3
- package/dist/components/dialog-item/ConnectedDialogItem.d.cts +4 -4
- package/dist/components/dialog-item/ConnectedDialogItem.d.ts +4 -4
- package/dist/components/drawer-item/ConnectedDrawerItem.d.cts +4 -4
- package/dist/components/drawer-item/ConnectedDrawerItem.d.ts +4 -4
- package/dist/components/form/Form.d.ts +2 -2
- package/dist/components/form-grid/FormGrid.d.ts +2 -2
- 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 +44 -44
- package/dist/components/schema-field/schema-field-basics.d.ts +380 -380
- package/dist/components/schema-field/schema-field-extended.d.cts +44 -44
- package/dist/components/schema-field/schema-field-extended.d.ts +534 -534
- package/dist/components/schema-field/schema-field.d.cts +44 -44
- package/dist/components/schema-field/schema-field.d.ts +467 -467
- package/package.json +5 -5
|
@@ -34,7 +34,7 @@ import { HiddenProps } from "../hidden/Hidden.cjs";
|
|
|
34
34
|
import "../hidden/index.cjs";
|
|
35
35
|
import { SelectProps as SelectProps$1 } from "../select/Select.cjs";
|
|
36
36
|
import "../select/index.cjs";
|
|
37
|
-
import * as
|
|
37
|
+
import * as _formily_react0 from "@formily/react";
|
|
38
38
|
import { ISchema } from "@formily/react";
|
|
39
39
|
import * as react10 from "react";
|
|
40
40
|
import * as _formily_core0 from "@formily/core";
|
|
@@ -139,11 +139,11 @@ declare const extendedComponentRegistry: {
|
|
|
139
139
|
decorator: string;
|
|
140
140
|
};
|
|
141
141
|
ArrayTags: {
|
|
142
|
-
component: react10.MemoExoticComponent<
|
|
142
|
+
component: react10.MemoExoticComponent<_formily_react0.ReactFC<ArrayTagsProps>>;
|
|
143
143
|
decorator: string;
|
|
144
144
|
};
|
|
145
145
|
ArrayToggleGroup: {
|
|
146
|
-
component: react10.MemoExoticComponent<
|
|
146
|
+
component: react10.MemoExoticComponent<_formily_react0.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
147
147
|
decorator: string;
|
|
148
148
|
};
|
|
149
149
|
ToggleGroup: {
|
|
@@ -162,7 +162,7 @@ declare const extendedComponentRegistry: {
|
|
|
162
162
|
value?: Date;
|
|
163
163
|
onChange?: (date: Date | undefined) => void;
|
|
164
164
|
placeholder?: string;
|
|
165
|
-
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "
|
|
165
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react10.RefAttributes<unknown>>;
|
|
166
166
|
decorator: string;
|
|
167
167
|
};
|
|
168
168
|
DialogItem: {
|
|
@@ -272,8 +272,8 @@ declare const extendedComponents: {
|
|
|
272
272
|
ArrayPopover: react10.FC<ArrayComponentProps & {
|
|
273
273
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
274
274
|
}>;
|
|
275
|
-
ArrayTags: react10.MemoExoticComponent<
|
|
276
|
-
ArrayToggleGroup: react10.MemoExoticComponent<
|
|
275
|
+
ArrayTags: react10.MemoExoticComponent<_formily_react0.ReactFC<ArrayTagsProps>>;
|
|
276
|
+
ArrayToggleGroup: react10.MemoExoticComponent<_formily_react0.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
277
277
|
ToggleGroup: react10.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react10.RefAttributes<unknown>>;
|
|
278
278
|
Checkbox: react10.FC<_radix_ui_react_checkbox0.CheckboxProps & react10.RefAttributes<HTMLButtonElement>>;
|
|
279
279
|
Column: typeof Column;
|
|
@@ -281,7 +281,7 @@ declare const extendedComponents: {
|
|
|
281
281
|
value?: Date;
|
|
282
282
|
onChange?: (date: Date | undefined) => void;
|
|
283
283
|
placeholder?: string;
|
|
284
|
-
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "
|
|
284
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react10.RefAttributes<unknown>>;
|
|
285
285
|
DialogItem: react10.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
|
|
286
286
|
children?: react10.ReactNode | undefined;
|
|
287
287
|
}>, "ref"> & react10.RefAttributes<unknown>>;
|
|
@@ -309,10 +309,10 @@ declare const extendedComponents: {
|
|
|
309
309
|
Textarea: react10.FC<react10.ClassAttributes<HTMLTextAreaElement> & react10.TextareaHTMLAttributes<HTMLTextAreaElement>>;
|
|
310
310
|
};
|
|
311
311
|
declare const SchemaFieldExtended: {
|
|
312
|
-
<Decorator extends
|
|
312
|
+
<Decorator extends _formily_react0.JSXComponent, Component extends _formily_react0.JSXComponent>(props: _formily_react0.ISchemaFieldProps<Decorator, Component, _formily_core0.ObjectField<Decorator, Component>>): JSX.Element;
|
|
313
313
|
displayName: string;
|
|
314
314
|
Markup: {
|
|
315
|
-
<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" | "
|
|
315
|
+
<Decorator_1 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "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" | "ColorPicker.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor", Component_1 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "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" | "ColorPicker.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor">(props: _formily_react0.ISchemaMarkupFieldProps<{
|
|
316
316
|
AvatarUpload: react10.FC<_pixpilot_shadcn_ui0.AvatarUploadProps & UploadValueMapper<_pixpilot_shadcn_ui0.FileMetadata | null>>;
|
|
317
317
|
FileUploadInline: react10.FC<FileUploadInlineProps$1>;
|
|
318
318
|
IconPicker: react10.FC<IconPickerProps$1>;
|
|
@@ -346,8 +346,8 @@ declare const SchemaFieldExtended: {
|
|
|
346
346
|
ArrayPopover: react10.FC<ArrayComponentProps & {
|
|
347
347
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
348
348
|
}>;
|
|
349
|
-
ArrayTags: react10.MemoExoticComponent<
|
|
350
|
-
ArrayToggleGroup: react10.MemoExoticComponent<
|
|
349
|
+
ArrayTags: react10.MemoExoticComponent<_formily_react0.ReactFC<ArrayTagsProps>>;
|
|
350
|
+
ArrayToggleGroup: react10.MemoExoticComponent<_formily_react0.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
351
351
|
ToggleGroup: react10.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react10.RefAttributes<unknown>>;
|
|
352
352
|
Checkbox: react10.FC<_radix_ui_react_checkbox0.CheckboxProps & react10.RefAttributes<HTMLButtonElement>>;
|
|
353
353
|
Column: typeof Column;
|
|
@@ -355,7 +355,7 @@ declare const SchemaFieldExtended: {
|
|
|
355
355
|
value?: Date;
|
|
356
356
|
onChange?: (date: Date | undefined) => void;
|
|
357
357
|
placeholder?: string;
|
|
358
|
-
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "
|
|
358
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react10.RefAttributes<unknown>>;
|
|
359
359
|
DialogItem: react10.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
|
|
360
360
|
children?: react10.ReactNode | undefined;
|
|
361
361
|
}>, "ref"> & react10.RefAttributes<unknown>>;
|
|
@@ -385,7 +385,7 @@ declare const SchemaFieldExtended: {
|
|
|
385
385
|
displayName: string;
|
|
386
386
|
};
|
|
387
387
|
String: {
|
|
388
|
-
<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" | "
|
|
388
|
+
<Decorator_2 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "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" | "ColorPicker.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor", Component_2 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "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" | "ColorPicker.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
389
389
|
AvatarUpload: react10.FC<_pixpilot_shadcn_ui0.AvatarUploadProps & UploadValueMapper<_pixpilot_shadcn_ui0.FileMetadata | null>>;
|
|
390
390
|
FileUploadInline: react10.FC<FileUploadInlineProps$1>;
|
|
391
391
|
IconPicker: react10.FC<IconPickerProps$1>;
|
|
@@ -419,8 +419,8 @@ declare const SchemaFieldExtended: {
|
|
|
419
419
|
ArrayPopover: react10.FC<ArrayComponentProps & {
|
|
420
420
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
421
421
|
}>;
|
|
422
|
-
ArrayTags: react10.MemoExoticComponent<
|
|
423
|
-
ArrayToggleGroup: react10.MemoExoticComponent<
|
|
422
|
+
ArrayTags: react10.MemoExoticComponent<_formily_react0.ReactFC<ArrayTagsProps>>;
|
|
423
|
+
ArrayToggleGroup: react10.MemoExoticComponent<_formily_react0.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
424
424
|
ToggleGroup: react10.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react10.RefAttributes<unknown>>;
|
|
425
425
|
Checkbox: react10.FC<_radix_ui_react_checkbox0.CheckboxProps & react10.RefAttributes<HTMLButtonElement>>;
|
|
426
426
|
Column: typeof Column;
|
|
@@ -428,7 +428,7 @@ declare const SchemaFieldExtended: {
|
|
|
428
428
|
value?: Date;
|
|
429
429
|
onChange?: (date: Date | undefined) => void;
|
|
430
430
|
placeholder?: string;
|
|
431
|
-
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "
|
|
431
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react10.RefAttributes<unknown>>;
|
|
432
432
|
DialogItem: react10.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
|
|
433
433
|
children?: react10.ReactNode | undefined;
|
|
434
434
|
}>, "ref"> & react10.RefAttributes<unknown>>;
|
|
@@ -458,7 +458,7 @@ declare const SchemaFieldExtended: {
|
|
|
458
458
|
displayName: string;
|
|
459
459
|
};
|
|
460
460
|
Object: {
|
|
461
|
-
<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" | "
|
|
461
|
+
<Decorator_3 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "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" | "ColorPicker.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor", Component_3 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "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" | "ColorPicker.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
462
462
|
AvatarUpload: react10.FC<_pixpilot_shadcn_ui0.AvatarUploadProps & UploadValueMapper<_pixpilot_shadcn_ui0.FileMetadata | null>>;
|
|
463
463
|
FileUploadInline: react10.FC<FileUploadInlineProps$1>;
|
|
464
464
|
IconPicker: react10.FC<IconPickerProps$1>;
|
|
@@ -492,8 +492,8 @@ declare const SchemaFieldExtended: {
|
|
|
492
492
|
ArrayPopover: react10.FC<ArrayComponentProps & {
|
|
493
493
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
494
494
|
}>;
|
|
495
|
-
ArrayTags: react10.MemoExoticComponent<
|
|
496
|
-
ArrayToggleGroup: react10.MemoExoticComponent<
|
|
495
|
+
ArrayTags: react10.MemoExoticComponent<_formily_react0.ReactFC<ArrayTagsProps>>;
|
|
496
|
+
ArrayToggleGroup: react10.MemoExoticComponent<_formily_react0.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
497
497
|
ToggleGroup: react10.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react10.RefAttributes<unknown>>;
|
|
498
498
|
Checkbox: react10.FC<_radix_ui_react_checkbox0.CheckboxProps & react10.RefAttributes<HTMLButtonElement>>;
|
|
499
499
|
Column: typeof Column;
|
|
@@ -501,7 +501,7 @@ declare const SchemaFieldExtended: {
|
|
|
501
501
|
value?: Date;
|
|
502
502
|
onChange?: (date: Date | undefined) => void;
|
|
503
503
|
placeholder?: string;
|
|
504
|
-
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "
|
|
504
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react10.RefAttributes<unknown>>;
|
|
505
505
|
DialogItem: react10.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
|
|
506
506
|
children?: react10.ReactNode | undefined;
|
|
507
507
|
}>, "ref"> & react10.RefAttributes<unknown>>;
|
|
@@ -531,7 +531,7 @@ declare const SchemaFieldExtended: {
|
|
|
531
531
|
displayName: string;
|
|
532
532
|
};
|
|
533
533
|
Array: {
|
|
534
|
-
<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" | "
|
|
534
|
+
<Decorator_4 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "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" | "ColorPicker.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor", Component_4 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "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" | "ColorPicker.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
535
535
|
AvatarUpload: react10.FC<_pixpilot_shadcn_ui0.AvatarUploadProps & UploadValueMapper<_pixpilot_shadcn_ui0.FileMetadata | null>>;
|
|
536
536
|
FileUploadInline: react10.FC<FileUploadInlineProps$1>;
|
|
537
537
|
IconPicker: react10.FC<IconPickerProps$1>;
|
|
@@ -565,8 +565,8 @@ declare const SchemaFieldExtended: {
|
|
|
565
565
|
ArrayPopover: react10.FC<ArrayComponentProps & {
|
|
566
566
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
567
567
|
}>;
|
|
568
|
-
ArrayTags: react10.MemoExoticComponent<
|
|
569
|
-
ArrayToggleGroup: react10.MemoExoticComponent<
|
|
568
|
+
ArrayTags: react10.MemoExoticComponent<_formily_react0.ReactFC<ArrayTagsProps>>;
|
|
569
|
+
ArrayToggleGroup: react10.MemoExoticComponent<_formily_react0.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
570
570
|
ToggleGroup: react10.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react10.RefAttributes<unknown>>;
|
|
571
571
|
Checkbox: react10.FC<_radix_ui_react_checkbox0.CheckboxProps & react10.RefAttributes<HTMLButtonElement>>;
|
|
572
572
|
Column: typeof Column;
|
|
@@ -574,7 +574,7 @@ declare const SchemaFieldExtended: {
|
|
|
574
574
|
value?: Date;
|
|
575
575
|
onChange?: (date: Date | undefined) => void;
|
|
576
576
|
placeholder?: string;
|
|
577
|
-
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "
|
|
577
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react10.RefAttributes<unknown>>;
|
|
578
578
|
DialogItem: react10.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
|
|
579
579
|
children?: react10.ReactNode | undefined;
|
|
580
580
|
}>, "ref"> & react10.RefAttributes<unknown>>;
|
|
@@ -604,7 +604,7 @@ declare const SchemaFieldExtended: {
|
|
|
604
604
|
displayName: string;
|
|
605
605
|
};
|
|
606
606
|
Boolean: {
|
|
607
|
-
<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" | "
|
|
607
|
+
<Decorator_5 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "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" | "ColorPicker.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor", Component_5 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "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" | "ColorPicker.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
608
608
|
AvatarUpload: react10.FC<_pixpilot_shadcn_ui0.AvatarUploadProps & UploadValueMapper<_pixpilot_shadcn_ui0.FileMetadata | null>>;
|
|
609
609
|
FileUploadInline: react10.FC<FileUploadInlineProps$1>;
|
|
610
610
|
IconPicker: react10.FC<IconPickerProps$1>;
|
|
@@ -638,8 +638,8 @@ declare const SchemaFieldExtended: {
|
|
|
638
638
|
ArrayPopover: react10.FC<ArrayComponentProps & {
|
|
639
639
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
640
640
|
}>;
|
|
641
|
-
ArrayTags: react10.MemoExoticComponent<
|
|
642
|
-
ArrayToggleGroup: react10.MemoExoticComponent<
|
|
641
|
+
ArrayTags: react10.MemoExoticComponent<_formily_react0.ReactFC<ArrayTagsProps>>;
|
|
642
|
+
ArrayToggleGroup: react10.MemoExoticComponent<_formily_react0.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
643
643
|
ToggleGroup: react10.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react10.RefAttributes<unknown>>;
|
|
644
644
|
Checkbox: react10.FC<_radix_ui_react_checkbox0.CheckboxProps & react10.RefAttributes<HTMLButtonElement>>;
|
|
645
645
|
Column: typeof Column;
|
|
@@ -647,7 +647,7 @@ declare const SchemaFieldExtended: {
|
|
|
647
647
|
value?: Date;
|
|
648
648
|
onChange?: (date: Date | undefined) => void;
|
|
649
649
|
placeholder?: string;
|
|
650
|
-
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "
|
|
650
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react10.RefAttributes<unknown>>;
|
|
651
651
|
DialogItem: react10.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
|
|
652
652
|
children?: react10.ReactNode | undefined;
|
|
653
653
|
}>, "ref"> & react10.RefAttributes<unknown>>;
|
|
@@ -677,7 +677,7 @@ declare const SchemaFieldExtended: {
|
|
|
677
677
|
displayName: string;
|
|
678
678
|
};
|
|
679
679
|
Date: {
|
|
680
|
-
<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" | "
|
|
680
|
+
<Decorator_6 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "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" | "ColorPicker.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor", Component_6 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "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" | "ColorPicker.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
681
681
|
AvatarUpload: react10.FC<_pixpilot_shadcn_ui0.AvatarUploadProps & UploadValueMapper<_pixpilot_shadcn_ui0.FileMetadata | null>>;
|
|
682
682
|
FileUploadInline: react10.FC<FileUploadInlineProps$1>;
|
|
683
683
|
IconPicker: react10.FC<IconPickerProps$1>;
|
|
@@ -711,8 +711,8 @@ declare const SchemaFieldExtended: {
|
|
|
711
711
|
ArrayPopover: react10.FC<ArrayComponentProps & {
|
|
712
712
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
713
713
|
}>;
|
|
714
|
-
ArrayTags: react10.MemoExoticComponent<
|
|
715
|
-
ArrayToggleGroup: react10.MemoExoticComponent<
|
|
714
|
+
ArrayTags: react10.MemoExoticComponent<_formily_react0.ReactFC<ArrayTagsProps>>;
|
|
715
|
+
ArrayToggleGroup: react10.MemoExoticComponent<_formily_react0.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
716
716
|
ToggleGroup: react10.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react10.RefAttributes<unknown>>;
|
|
717
717
|
Checkbox: react10.FC<_radix_ui_react_checkbox0.CheckboxProps & react10.RefAttributes<HTMLButtonElement>>;
|
|
718
718
|
Column: typeof Column;
|
|
@@ -720,7 +720,7 @@ declare const SchemaFieldExtended: {
|
|
|
720
720
|
value?: Date;
|
|
721
721
|
onChange?: (date: Date | undefined) => void;
|
|
722
722
|
placeholder?: string;
|
|
723
|
-
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "
|
|
723
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react10.RefAttributes<unknown>>;
|
|
724
724
|
DialogItem: react10.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
|
|
725
725
|
children?: react10.ReactNode | undefined;
|
|
726
726
|
}>, "ref"> & react10.RefAttributes<unknown>>;
|
|
@@ -750,7 +750,7 @@ declare const SchemaFieldExtended: {
|
|
|
750
750
|
displayName: string;
|
|
751
751
|
};
|
|
752
752
|
DateTime: {
|
|
753
|
-
<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" | "
|
|
753
|
+
<Decorator_7 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "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" | "ColorPicker.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor", Component_7 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "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" | "ColorPicker.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
754
754
|
AvatarUpload: react10.FC<_pixpilot_shadcn_ui0.AvatarUploadProps & UploadValueMapper<_pixpilot_shadcn_ui0.FileMetadata | null>>;
|
|
755
755
|
FileUploadInline: react10.FC<FileUploadInlineProps$1>;
|
|
756
756
|
IconPicker: react10.FC<IconPickerProps$1>;
|
|
@@ -784,8 +784,8 @@ declare const SchemaFieldExtended: {
|
|
|
784
784
|
ArrayPopover: react10.FC<ArrayComponentProps & {
|
|
785
785
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
786
786
|
}>;
|
|
787
|
-
ArrayTags: react10.MemoExoticComponent<
|
|
788
|
-
ArrayToggleGroup: react10.MemoExoticComponent<
|
|
787
|
+
ArrayTags: react10.MemoExoticComponent<_formily_react0.ReactFC<ArrayTagsProps>>;
|
|
788
|
+
ArrayToggleGroup: react10.MemoExoticComponent<_formily_react0.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
789
789
|
ToggleGroup: react10.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react10.RefAttributes<unknown>>;
|
|
790
790
|
Checkbox: react10.FC<_radix_ui_react_checkbox0.CheckboxProps & react10.RefAttributes<HTMLButtonElement>>;
|
|
791
791
|
Column: typeof Column;
|
|
@@ -793,7 +793,7 @@ declare const SchemaFieldExtended: {
|
|
|
793
793
|
value?: Date;
|
|
794
794
|
onChange?: (date: Date | undefined) => void;
|
|
795
795
|
placeholder?: string;
|
|
796
|
-
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "
|
|
796
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react10.RefAttributes<unknown>>;
|
|
797
797
|
DialogItem: react10.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
|
|
798
798
|
children?: react10.ReactNode | undefined;
|
|
799
799
|
}>, "ref"> & react10.RefAttributes<unknown>>;
|
|
@@ -823,7 +823,7 @@ declare const SchemaFieldExtended: {
|
|
|
823
823
|
displayName: string;
|
|
824
824
|
};
|
|
825
825
|
Void: {
|
|
826
|
-
<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" | "
|
|
826
|
+
<Decorator_8 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "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" | "ColorPicker.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor", Component_8 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "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" | "ColorPicker.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
827
827
|
AvatarUpload: react10.FC<_pixpilot_shadcn_ui0.AvatarUploadProps & UploadValueMapper<_pixpilot_shadcn_ui0.FileMetadata | null>>;
|
|
828
828
|
FileUploadInline: react10.FC<FileUploadInlineProps$1>;
|
|
829
829
|
IconPicker: react10.FC<IconPickerProps$1>;
|
|
@@ -857,8 +857,8 @@ declare const SchemaFieldExtended: {
|
|
|
857
857
|
ArrayPopover: react10.FC<ArrayComponentProps & {
|
|
858
858
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
859
859
|
}>;
|
|
860
|
-
ArrayTags: react10.MemoExoticComponent<
|
|
861
|
-
ArrayToggleGroup: react10.MemoExoticComponent<
|
|
860
|
+
ArrayTags: react10.MemoExoticComponent<_formily_react0.ReactFC<ArrayTagsProps>>;
|
|
861
|
+
ArrayToggleGroup: react10.MemoExoticComponent<_formily_react0.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
862
862
|
ToggleGroup: react10.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react10.RefAttributes<unknown>>;
|
|
863
863
|
Checkbox: react10.FC<_radix_ui_react_checkbox0.CheckboxProps & react10.RefAttributes<HTMLButtonElement>>;
|
|
864
864
|
Column: typeof Column;
|
|
@@ -866,7 +866,7 @@ declare const SchemaFieldExtended: {
|
|
|
866
866
|
value?: Date;
|
|
867
867
|
onChange?: (date: Date | undefined) => void;
|
|
868
868
|
placeholder?: string;
|
|
869
|
-
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "
|
|
869
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react10.RefAttributes<unknown>>;
|
|
870
870
|
DialogItem: react10.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
|
|
871
871
|
children?: react10.ReactNode | undefined;
|
|
872
872
|
}>, "ref"> & react10.RefAttributes<unknown>>;
|
|
@@ -896,7 +896,7 @@ declare const SchemaFieldExtended: {
|
|
|
896
896
|
displayName: string;
|
|
897
897
|
};
|
|
898
898
|
Number: {
|
|
899
|
-
<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" | "
|
|
899
|
+
<Decorator_9 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "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" | "ColorPicker.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor", Component_9 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayDrawer" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "DrawerItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "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" | "ColorPicker.$$typeof" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
900
900
|
AvatarUpload: react10.FC<_pixpilot_shadcn_ui0.AvatarUploadProps & UploadValueMapper<_pixpilot_shadcn_ui0.FileMetadata | null>>;
|
|
901
901
|
FileUploadInline: react10.FC<FileUploadInlineProps$1>;
|
|
902
902
|
IconPicker: react10.FC<IconPickerProps$1>;
|
|
@@ -930,8 +930,8 @@ declare const SchemaFieldExtended: {
|
|
|
930
930
|
ArrayPopover: react10.FC<ArrayComponentProps & {
|
|
931
931
|
popoverProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
932
932
|
}>;
|
|
933
|
-
ArrayTags: react10.MemoExoticComponent<
|
|
934
|
-
ArrayToggleGroup: react10.MemoExoticComponent<
|
|
933
|
+
ArrayTags: react10.MemoExoticComponent<_formily_react0.ReactFC<ArrayTagsProps>>;
|
|
934
|
+
ArrayToggleGroup: react10.MemoExoticComponent<_formily_react0.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
|
|
935
935
|
ToggleGroup: react10.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react10.RefAttributes<unknown>>;
|
|
936
936
|
Checkbox: react10.FC<_radix_ui_react_checkbox0.CheckboxProps & react10.RefAttributes<HTMLButtonElement>>;
|
|
937
937
|
Column: typeof Column;
|
|
@@ -939,7 +939,7 @@ declare const SchemaFieldExtended: {
|
|
|
939
939
|
value?: Date;
|
|
940
940
|
onChange?: (date: Date | undefined) => void;
|
|
941
941
|
placeholder?: string;
|
|
942
|
-
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "
|
|
942
|
+
} & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react10.RefAttributes<unknown>>;
|
|
943
943
|
DialogItem: react10.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
|
|
944
944
|
children?: react10.ReactNode | undefined;
|
|
945
945
|
}>, "ref"> & react10.RefAttributes<unknown>>;
|