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