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