@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,413 +5,413 @@ 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_react11 from "@formily/react";
9
- import * as react488 from "react";
10
- import * as _pixpilot_shadcn_ui236 from "@pixpilot/shadcn-ui";
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
11
  import { TagsInput } from "@pixpilot/shadcn-ui";
12
12
  import * as _formily_core0 from "@formily/core";
13
- import * as _radix_ui_react_checkbox10 from "@radix-ui/react-checkbox";
14
- import * as _radix_ui_react_switch10 from "@radix-ui/react-switch";
15
- import * as _radix_ui_react_separator10 from "@radix-ui/react-separator";
13
+ import * as _radix_ui_react_checkbox0 from "@radix-ui/react-checkbox";
14
+ import * as _radix_ui_react_switch0 from "@radix-ui/react-switch";
15
+ import * as _radix_ui_react_separator0 from "@radix-ui/react-separator";
16
16
 
17
17
  //#region src/components/schema-field/schema-field.d.ts
18
18
  declare const schemaFieldComponents: {
19
- Combobox: react488.FC;
19
+ Combobox: react28.FC;
20
20
  TagsInput: typeof TagsInput;
21
- TagsInputInLine: react488.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui236.TagsInputProps> & react488.RefAttributes<unknown>>;
22
- Slider: react488.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui236.SliderProps>, "ref"> & react488.RefAttributes<unknown>>;
23
- FormItem: react488.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
24
- children?: react488.ReactNode | undefined;
25
- }>, "ref"> & react488.RefAttributes<unknown>>;
26
- Hidden: react488.ForwardRefExoticComponent<Partial<{
21
+ TagsInputInLine: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react28.RefAttributes<unknown>>;
22
+ Slider: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
23
+ FormItem: react28.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
24
+ children?: react28.ReactNode | undefined;
25
+ }>, "ref"> & react28.RefAttributes<unknown>>;
26
+ Hidden: react28.ForwardRefExoticComponent<Partial<{
27
27
  children?: React.ReactNode;
28
28
  value?: string;
29
- }> & react488.RefAttributes<unknown>>;
30
- Input: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
31
- Textarea: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLTextAreaElement> & react488.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react488.RefAttributes<unknown>>;
32
- NumberInput: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
33
- Checkbox: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
34
- Radio: react488.FC;
35
- Select: react488.FC;
36
- Switch: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch10.SwitchProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
37
- DatePicker: react488.ForwardRefExoticComponent<Partial<{
29
+ }> & react28.RefAttributes<unknown>>;
30
+ Input: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react28.RefAttributes<unknown>>;
31
+ Textarea: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLTextAreaElement> & react28.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react28.RefAttributes<unknown>>;
32
+ NumberInput: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react28.RefAttributes<unknown>>;
33
+ Checkbox: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
34
+ Radio: react28.FC;
35
+ Select: react28.FC;
36
+ Switch: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
37
+ DatePicker: react28.ForwardRefExoticComponent<Partial<{
38
38
  value?: Date;
39
39
  onChange?: (date: Date | undefined) => void;
40
40
  placeholder?: string;
41
- } & Omit<_pixpilot_shadcn_ui236.DatePickerProps, "onSelect" | "selected" | "mode">> & react488.RefAttributes<unknown>>;
41
+ } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
42
42
  Row: typeof Row;
43
43
  Column: typeof Column;
44
44
  FormGrid: typeof FormGrid;
45
- Separator: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react488.RefAttributes<HTMLDivElement>>, "ref"> & react488.RefAttributes<unknown>>;
45
+ Separator: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react28.RefAttributes<HTMLDivElement>>, "ref"> & react28.RefAttributes<unknown>>;
46
46
  ArrayCards: ComposedArrayProps;
47
- ArrayDialog: react488.FC<ArrayComponentProps>;
48
- ArrayCollapse: react488.FC<ArrayComponentProps & {
47
+ ArrayDialog: react28.FC<ArrayComponentProps>;
48
+ ArrayCollapse: react28.FC<ArrayComponentProps & {
49
49
  defaultActiveKey?: Array<string | number>;
50
50
  mode?: "accordion" | "multiple";
51
51
  }>;
52
- ArrayPopover: react488.FC<ArrayComponentProps>;
53
- ObjectContainer: react488.FC<ObjectContainerProps>;
52
+ ArrayPopover: react28.FC<ArrayComponentProps>;
53
+ ObjectContainer: react28.FC<ObjectContainerProps>;
54
54
  };
55
55
  declare const SchemaField: {
56
- <Decorator extends _formily_react11.JSXComponent, Component extends _formily_react11.JSXComponent>(props: _formily_react11.ISchemaFieldProps<Decorator, Component, _formily_core0.ObjectField<Decorator, Component>>): JSX.Element;
56
+ <Decorator extends _formily_react0.JSXComponent, Component extends _formily_react0.JSXComponent>(props: _formily_react0.ISchemaFieldProps<Decorator, Component, _formily_core0.ObjectField<Decorator, Component>>): JSX.Element;
57
57
  displayName: string;
58
58
  Markup: {
59
- <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", 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">(props: _formily_react11.ISchemaMarkupFieldProps<{
60
- Combobox: react488.FC;
59
+ <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", 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">(props: _formily_react0.ISchemaMarkupFieldProps<{
60
+ Combobox: react28.FC;
61
61
  TagsInput: typeof TagsInput;
62
- TagsInputInLine: react488.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui236.TagsInputProps> & react488.RefAttributes<unknown>>;
63
- Slider: react488.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui236.SliderProps>, "ref"> & react488.RefAttributes<unknown>>;
64
- FormItem: react488.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
65
- children?: react488.ReactNode | undefined;
66
- }>, "ref"> & react488.RefAttributes<unknown>>;
67
- Hidden: react488.ForwardRefExoticComponent<Partial<{
62
+ TagsInputInLine: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react28.RefAttributes<unknown>>;
63
+ Slider: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
64
+ FormItem: react28.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
65
+ children?: react28.ReactNode | undefined;
66
+ }>, "ref"> & react28.RefAttributes<unknown>>;
67
+ Hidden: react28.ForwardRefExoticComponent<Partial<{
68
68
  children?: React.ReactNode;
69
69
  value?: string;
70
- }> & react488.RefAttributes<unknown>>;
71
- Input: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
72
- Textarea: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLTextAreaElement> & react488.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react488.RefAttributes<unknown>>;
73
- NumberInput: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
74
- Checkbox: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
75
- Radio: react488.FC;
76
- Select: react488.FC;
77
- Switch: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch10.SwitchProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
78
- DatePicker: react488.ForwardRefExoticComponent<Partial<{
70
+ }> & react28.RefAttributes<unknown>>;
71
+ Input: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react28.RefAttributes<unknown>>;
72
+ Textarea: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLTextAreaElement> & react28.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react28.RefAttributes<unknown>>;
73
+ NumberInput: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react28.RefAttributes<unknown>>;
74
+ Checkbox: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
75
+ Radio: react28.FC;
76
+ Select: react28.FC;
77
+ Switch: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
78
+ DatePicker: react28.ForwardRefExoticComponent<Partial<{
79
79
  value?: Date;
80
80
  onChange?: (date: Date | undefined) => void;
81
81
  placeholder?: string;
82
- } & Omit<_pixpilot_shadcn_ui236.DatePickerProps, "onSelect" | "selected" | "mode">> & react488.RefAttributes<unknown>>;
82
+ } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
83
83
  Row: typeof Row;
84
84
  Column: typeof Column;
85
85
  FormGrid: typeof FormGrid;
86
- Separator: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react488.RefAttributes<HTMLDivElement>>, "ref"> & react488.RefAttributes<unknown>>;
86
+ Separator: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react28.RefAttributes<HTMLDivElement>>, "ref"> & react28.RefAttributes<unknown>>;
87
87
  ArrayCards: ComposedArrayProps;
88
- ArrayDialog: react488.FC<ArrayComponentProps>;
89
- ArrayCollapse: react488.FC<ArrayComponentProps & {
88
+ ArrayDialog: react28.FC<ArrayComponentProps>;
89
+ ArrayCollapse: react28.FC<ArrayComponentProps & {
90
90
  defaultActiveKey?: Array<string | number>;
91
91
  mode?: "accordion" | "multiple";
92
92
  }>;
93
- ArrayPopover: react488.FC<ArrayComponentProps>;
94
- ObjectContainer: react488.FC<ObjectContainerProps>;
93
+ ArrayPopover: react28.FC<ArrayComponentProps>;
94
+ ObjectContainer: react28.FC<ObjectContainerProps>;
95
95
  }, Component_1, Decorator_1>): JSX.Element;
96
96
  displayName: string;
97
97
  };
98
98
  String: {
99
- <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", 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">(props: _formily_react11.ISchemaTypeFieldProps<{
100
- Combobox: react488.FC;
99
+ <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", 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">(props: _formily_react0.ISchemaTypeFieldProps<{
100
+ Combobox: react28.FC;
101
101
  TagsInput: typeof TagsInput;
102
- TagsInputInLine: react488.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui236.TagsInputProps> & react488.RefAttributes<unknown>>;
103
- Slider: react488.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui236.SliderProps>, "ref"> & react488.RefAttributes<unknown>>;
104
- FormItem: react488.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
105
- children?: react488.ReactNode | undefined;
106
- }>, "ref"> & react488.RefAttributes<unknown>>;
107
- Hidden: react488.ForwardRefExoticComponent<Partial<{
102
+ TagsInputInLine: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react28.RefAttributes<unknown>>;
103
+ Slider: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
104
+ FormItem: react28.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
105
+ children?: react28.ReactNode | undefined;
106
+ }>, "ref"> & react28.RefAttributes<unknown>>;
107
+ Hidden: react28.ForwardRefExoticComponent<Partial<{
108
108
  children?: React.ReactNode;
109
109
  value?: string;
110
- }> & react488.RefAttributes<unknown>>;
111
- Input: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
112
- Textarea: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLTextAreaElement> & react488.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react488.RefAttributes<unknown>>;
113
- NumberInput: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
114
- Checkbox: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
115
- Radio: react488.FC;
116
- Select: react488.FC;
117
- Switch: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch10.SwitchProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
118
- DatePicker: react488.ForwardRefExoticComponent<Partial<{
110
+ }> & react28.RefAttributes<unknown>>;
111
+ Input: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react28.RefAttributes<unknown>>;
112
+ Textarea: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLTextAreaElement> & react28.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react28.RefAttributes<unknown>>;
113
+ NumberInput: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react28.RefAttributes<unknown>>;
114
+ Checkbox: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
115
+ Radio: react28.FC;
116
+ Select: react28.FC;
117
+ Switch: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
118
+ DatePicker: react28.ForwardRefExoticComponent<Partial<{
119
119
  value?: Date;
120
120
  onChange?: (date: Date | undefined) => void;
121
121
  placeholder?: string;
122
- } & Omit<_pixpilot_shadcn_ui236.DatePickerProps, "onSelect" | "selected" | "mode">> & react488.RefAttributes<unknown>>;
122
+ } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
123
123
  Row: typeof Row;
124
124
  Column: typeof Column;
125
125
  FormGrid: typeof FormGrid;
126
- Separator: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react488.RefAttributes<HTMLDivElement>>, "ref"> & react488.RefAttributes<unknown>>;
126
+ Separator: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react28.RefAttributes<HTMLDivElement>>, "ref"> & react28.RefAttributes<unknown>>;
127
127
  ArrayCards: ComposedArrayProps;
128
- ArrayDialog: react488.FC<ArrayComponentProps>;
129
- ArrayCollapse: react488.FC<ArrayComponentProps & {
128
+ ArrayDialog: react28.FC<ArrayComponentProps>;
129
+ ArrayCollapse: react28.FC<ArrayComponentProps & {
130
130
  defaultActiveKey?: Array<string | number>;
131
131
  mode?: "accordion" | "multiple";
132
132
  }>;
133
- ArrayPopover: react488.FC<ArrayComponentProps>;
134
- ObjectContainer: react488.FC<ObjectContainerProps>;
133
+ ArrayPopover: react28.FC<ArrayComponentProps>;
134
+ ObjectContainer: react28.FC<ObjectContainerProps>;
135
135
  }, Component_2, Decorator_2>): JSX.Element;
136
136
  displayName: string;
137
137
  };
138
138
  Object: {
139
- <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", 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">(props: _formily_react11.ISchemaTypeFieldProps<{
140
- Combobox: react488.FC;
139
+ <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", 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">(props: _formily_react0.ISchemaTypeFieldProps<{
140
+ Combobox: react28.FC;
141
141
  TagsInput: typeof TagsInput;
142
- TagsInputInLine: react488.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui236.TagsInputProps> & react488.RefAttributes<unknown>>;
143
- Slider: react488.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui236.SliderProps>, "ref"> & react488.RefAttributes<unknown>>;
144
- FormItem: react488.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
145
- children?: react488.ReactNode | undefined;
146
- }>, "ref"> & react488.RefAttributes<unknown>>;
147
- Hidden: react488.ForwardRefExoticComponent<Partial<{
142
+ TagsInputInLine: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react28.RefAttributes<unknown>>;
143
+ Slider: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
144
+ FormItem: react28.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
145
+ children?: react28.ReactNode | undefined;
146
+ }>, "ref"> & react28.RefAttributes<unknown>>;
147
+ Hidden: react28.ForwardRefExoticComponent<Partial<{
148
148
  children?: React.ReactNode;
149
149
  value?: string;
150
- }> & react488.RefAttributes<unknown>>;
151
- Input: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
152
- Textarea: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLTextAreaElement> & react488.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react488.RefAttributes<unknown>>;
153
- NumberInput: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
154
- Checkbox: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
155
- Radio: react488.FC;
156
- Select: react488.FC;
157
- Switch: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch10.SwitchProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
158
- DatePicker: react488.ForwardRefExoticComponent<Partial<{
150
+ }> & react28.RefAttributes<unknown>>;
151
+ Input: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react28.RefAttributes<unknown>>;
152
+ Textarea: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLTextAreaElement> & react28.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react28.RefAttributes<unknown>>;
153
+ NumberInput: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react28.RefAttributes<unknown>>;
154
+ Checkbox: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
155
+ Radio: react28.FC;
156
+ Select: react28.FC;
157
+ Switch: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
158
+ DatePicker: react28.ForwardRefExoticComponent<Partial<{
159
159
  value?: Date;
160
160
  onChange?: (date: Date | undefined) => void;
161
161
  placeholder?: string;
162
- } & Omit<_pixpilot_shadcn_ui236.DatePickerProps, "onSelect" | "selected" | "mode">> & react488.RefAttributes<unknown>>;
162
+ } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
163
163
  Row: typeof Row;
164
164
  Column: typeof Column;
165
165
  FormGrid: typeof FormGrid;
166
- Separator: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react488.RefAttributes<HTMLDivElement>>, "ref"> & react488.RefAttributes<unknown>>;
166
+ Separator: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react28.RefAttributes<HTMLDivElement>>, "ref"> & react28.RefAttributes<unknown>>;
167
167
  ArrayCards: ComposedArrayProps;
168
- ArrayDialog: react488.FC<ArrayComponentProps>;
169
- ArrayCollapse: react488.FC<ArrayComponentProps & {
168
+ ArrayDialog: react28.FC<ArrayComponentProps>;
169
+ ArrayCollapse: react28.FC<ArrayComponentProps & {
170
170
  defaultActiveKey?: Array<string | number>;
171
171
  mode?: "accordion" | "multiple";
172
172
  }>;
173
- ArrayPopover: react488.FC<ArrayComponentProps>;
174
- ObjectContainer: react488.FC<ObjectContainerProps>;
173
+ ArrayPopover: react28.FC<ArrayComponentProps>;
174
+ ObjectContainer: react28.FC<ObjectContainerProps>;
175
175
  }, Component_3, Decorator_3>): JSX.Element;
176
176
  displayName: string;
177
177
  };
178
178
  Array: {
179
- <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", 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">(props: _formily_react11.ISchemaTypeFieldProps<{
180
- Combobox: react488.FC;
179
+ <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", 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">(props: _formily_react0.ISchemaTypeFieldProps<{
180
+ Combobox: react28.FC;
181
181
  TagsInput: typeof TagsInput;
182
- TagsInputInLine: react488.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui236.TagsInputProps> & react488.RefAttributes<unknown>>;
183
- Slider: react488.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui236.SliderProps>, "ref"> & react488.RefAttributes<unknown>>;
184
- FormItem: react488.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
185
- children?: react488.ReactNode | undefined;
186
- }>, "ref"> & react488.RefAttributes<unknown>>;
187
- Hidden: react488.ForwardRefExoticComponent<Partial<{
182
+ TagsInputInLine: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react28.RefAttributes<unknown>>;
183
+ Slider: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
184
+ FormItem: react28.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
185
+ children?: react28.ReactNode | undefined;
186
+ }>, "ref"> & react28.RefAttributes<unknown>>;
187
+ Hidden: react28.ForwardRefExoticComponent<Partial<{
188
188
  children?: React.ReactNode;
189
189
  value?: string;
190
- }> & react488.RefAttributes<unknown>>;
191
- Input: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
192
- Textarea: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLTextAreaElement> & react488.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react488.RefAttributes<unknown>>;
193
- NumberInput: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
194
- Checkbox: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
195
- Radio: react488.FC;
196
- Select: react488.FC;
197
- Switch: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch10.SwitchProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
198
- DatePicker: react488.ForwardRefExoticComponent<Partial<{
190
+ }> & react28.RefAttributes<unknown>>;
191
+ Input: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react28.RefAttributes<unknown>>;
192
+ Textarea: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLTextAreaElement> & react28.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react28.RefAttributes<unknown>>;
193
+ NumberInput: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react28.RefAttributes<unknown>>;
194
+ Checkbox: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
195
+ Radio: react28.FC;
196
+ Select: react28.FC;
197
+ Switch: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
198
+ DatePicker: react28.ForwardRefExoticComponent<Partial<{
199
199
  value?: Date;
200
200
  onChange?: (date: Date | undefined) => void;
201
201
  placeholder?: string;
202
- } & Omit<_pixpilot_shadcn_ui236.DatePickerProps, "onSelect" | "selected" | "mode">> & react488.RefAttributes<unknown>>;
202
+ } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
203
203
  Row: typeof Row;
204
204
  Column: typeof Column;
205
205
  FormGrid: typeof FormGrid;
206
- Separator: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react488.RefAttributes<HTMLDivElement>>, "ref"> & react488.RefAttributes<unknown>>;
206
+ Separator: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react28.RefAttributes<HTMLDivElement>>, "ref"> & react28.RefAttributes<unknown>>;
207
207
  ArrayCards: ComposedArrayProps;
208
- ArrayDialog: react488.FC<ArrayComponentProps>;
209
- ArrayCollapse: react488.FC<ArrayComponentProps & {
208
+ ArrayDialog: react28.FC<ArrayComponentProps>;
209
+ ArrayCollapse: react28.FC<ArrayComponentProps & {
210
210
  defaultActiveKey?: Array<string | number>;
211
211
  mode?: "accordion" | "multiple";
212
212
  }>;
213
- ArrayPopover: react488.FC<ArrayComponentProps>;
214
- ObjectContainer: react488.FC<ObjectContainerProps>;
213
+ ArrayPopover: react28.FC<ArrayComponentProps>;
214
+ ObjectContainer: react28.FC<ObjectContainerProps>;
215
215
  }, Component_4, Decorator_4>): JSX.Element;
216
216
  displayName: string;
217
217
  };
218
218
  Boolean: {
219
- <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", 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">(props: _formily_react11.ISchemaTypeFieldProps<{
220
- Combobox: react488.FC;
219
+ <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", 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">(props: _formily_react0.ISchemaTypeFieldProps<{
220
+ Combobox: react28.FC;
221
221
  TagsInput: typeof TagsInput;
222
- TagsInputInLine: react488.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui236.TagsInputProps> & react488.RefAttributes<unknown>>;
223
- Slider: react488.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui236.SliderProps>, "ref"> & react488.RefAttributes<unknown>>;
224
- FormItem: react488.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
225
- children?: react488.ReactNode | undefined;
226
- }>, "ref"> & react488.RefAttributes<unknown>>;
227
- Hidden: react488.ForwardRefExoticComponent<Partial<{
222
+ TagsInputInLine: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react28.RefAttributes<unknown>>;
223
+ Slider: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
224
+ FormItem: react28.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
225
+ children?: react28.ReactNode | undefined;
226
+ }>, "ref"> & react28.RefAttributes<unknown>>;
227
+ Hidden: react28.ForwardRefExoticComponent<Partial<{
228
228
  children?: React.ReactNode;
229
229
  value?: string;
230
- }> & react488.RefAttributes<unknown>>;
231
- Input: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
232
- Textarea: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLTextAreaElement> & react488.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react488.RefAttributes<unknown>>;
233
- NumberInput: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
234
- Checkbox: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
235
- Radio: react488.FC;
236
- Select: react488.FC;
237
- Switch: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch10.SwitchProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
238
- DatePicker: react488.ForwardRefExoticComponent<Partial<{
230
+ }> & react28.RefAttributes<unknown>>;
231
+ Input: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react28.RefAttributes<unknown>>;
232
+ Textarea: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLTextAreaElement> & react28.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react28.RefAttributes<unknown>>;
233
+ NumberInput: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react28.RefAttributes<unknown>>;
234
+ Checkbox: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
235
+ Radio: react28.FC;
236
+ Select: react28.FC;
237
+ Switch: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
238
+ DatePicker: react28.ForwardRefExoticComponent<Partial<{
239
239
  value?: Date;
240
240
  onChange?: (date: Date | undefined) => void;
241
241
  placeholder?: string;
242
- } & Omit<_pixpilot_shadcn_ui236.DatePickerProps, "onSelect" | "selected" | "mode">> & react488.RefAttributes<unknown>>;
242
+ } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
243
243
  Row: typeof Row;
244
244
  Column: typeof Column;
245
245
  FormGrid: typeof FormGrid;
246
- Separator: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react488.RefAttributes<HTMLDivElement>>, "ref"> & react488.RefAttributes<unknown>>;
246
+ Separator: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react28.RefAttributes<HTMLDivElement>>, "ref"> & react28.RefAttributes<unknown>>;
247
247
  ArrayCards: ComposedArrayProps;
248
- ArrayDialog: react488.FC<ArrayComponentProps>;
249
- ArrayCollapse: react488.FC<ArrayComponentProps & {
248
+ ArrayDialog: react28.FC<ArrayComponentProps>;
249
+ ArrayCollapse: react28.FC<ArrayComponentProps & {
250
250
  defaultActiveKey?: Array<string | number>;
251
251
  mode?: "accordion" | "multiple";
252
252
  }>;
253
- ArrayPopover: react488.FC<ArrayComponentProps>;
254
- ObjectContainer: react488.FC<ObjectContainerProps>;
253
+ ArrayPopover: react28.FC<ArrayComponentProps>;
254
+ ObjectContainer: react28.FC<ObjectContainerProps>;
255
255
  }, Component_5, Decorator_5>): JSX.Element;
256
256
  displayName: string;
257
257
  };
258
258
  Date: {
259
- <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", 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">(props: _formily_react11.ISchemaTypeFieldProps<{
260
- Combobox: react488.FC;
259
+ <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", 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">(props: _formily_react0.ISchemaTypeFieldProps<{
260
+ Combobox: react28.FC;
261
261
  TagsInput: typeof TagsInput;
262
- TagsInputInLine: react488.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui236.TagsInputProps> & react488.RefAttributes<unknown>>;
263
- Slider: react488.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui236.SliderProps>, "ref"> & react488.RefAttributes<unknown>>;
264
- FormItem: react488.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
265
- children?: react488.ReactNode | undefined;
266
- }>, "ref"> & react488.RefAttributes<unknown>>;
267
- Hidden: react488.ForwardRefExoticComponent<Partial<{
262
+ TagsInputInLine: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react28.RefAttributes<unknown>>;
263
+ Slider: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
264
+ FormItem: react28.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
265
+ children?: react28.ReactNode | undefined;
266
+ }>, "ref"> & react28.RefAttributes<unknown>>;
267
+ Hidden: react28.ForwardRefExoticComponent<Partial<{
268
268
  children?: React.ReactNode;
269
269
  value?: string;
270
- }> & react488.RefAttributes<unknown>>;
271
- Input: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
272
- Textarea: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLTextAreaElement> & react488.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react488.RefAttributes<unknown>>;
273
- NumberInput: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
274
- Checkbox: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
275
- Radio: react488.FC;
276
- Select: react488.FC;
277
- Switch: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch10.SwitchProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
278
- DatePicker: react488.ForwardRefExoticComponent<Partial<{
270
+ }> & react28.RefAttributes<unknown>>;
271
+ Input: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react28.RefAttributes<unknown>>;
272
+ Textarea: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLTextAreaElement> & react28.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react28.RefAttributes<unknown>>;
273
+ NumberInput: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react28.RefAttributes<unknown>>;
274
+ Checkbox: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
275
+ Radio: react28.FC;
276
+ Select: react28.FC;
277
+ Switch: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
278
+ DatePicker: react28.ForwardRefExoticComponent<Partial<{
279
279
  value?: Date;
280
280
  onChange?: (date: Date | undefined) => void;
281
281
  placeholder?: string;
282
- } & Omit<_pixpilot_shadcn_ui236.DatePickerProps, "onSelect" | "selected" | "mode">> & react488.RefAttributes<unknown>>;
282
+ } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
283
283
  Row: typeof Row;
284
284
  Column: typeof Column;
285
285
  FormGrid: typeof FormGrid;
286
- Separator: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react488.RefAttributes<HTMLDivElement>>, "ref"> & react488.RefAttributes<unknown>>;
286
+ Separator: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react28.RefAttributes<HTMLDivElement>>, "ref"> & react28.RefAttributes<unknown>>;
287
287
  ArrayCards: ComposedArrayProps;
288
- ArrayDialog: react488.FC<ArrayComponentProps>;
289
- ArrayCollapse: react488.FC<ArrayComponentProps & {
288
+ ArrayDialog: react28.FC<ArrayComponentProps>;
289
+ ArrayCollapse: react28.FC<ArrayComponentProps & {
290
290
  defaultActiveKey?: Array<string | number>;
291
291
  mode?: "accordion" | "multiple";
292
292
  }>;
293
- ArrayPopover: react488.FC<ArrayComponentProps>;
294
- ObjectContainer: react488.FC<ObjectContainerProps>;
293
+ ArrayPopover: react28.FC<ArrayComponentProps>;
294
+ ObjectContainer: react28.FC<ObjectContainerProps>;
295
295
  }, Component_6, Decorator_6>): JSX.Element;
296
296
  displayName: string;
297
297
  };
298
298
  DateTime: {
299
- <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", 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">(props: _formily_react11.ISchemaTypeFieldProps<{
300
- Combobox: react488.FC;
299
+ <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", 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">(props: _formily_react0.ISchemaTypeFieldProps<{
300
+ Combobox: react28.FC;
301
301
  TagsInput: typeof TagsInput;
302
- TagsInputInLine: react488.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui236.TagsInputProps> & react488.RefAttributes<unknown>>;
303
- Slider: react488.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui236.SliderProps>, "ref"> & react488.RefAttributes<unknown>>;
304
- FormItem: react488.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
305
- children?: react488.ReactNode | undefined;
306
- }>, "ref"> & react488.RefAttributes<unknown>>;
307
- Hidden: react488.ForwardRefExoticComponent<Partial<{
302
+ TagsInputInLine: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react28.RefAttributes<unknown>>;
303
+ Slider: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
304
+ FormItem: react28.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
305
+ children?: react28.ReactNode | undefined;
306
+ }>, "ref"> & react28.RefAttributes<unknown>>;
307
+ Hidden: react28.ForwardRefExoticComponent<Partial<{
308
308
  children?: React.ReactNode;
309
309
  value?: string;
310
- }> & react488.RefAttributes<unknown>>;
311
- Input: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
312
- Textarea: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLTextAreaElement> & react488.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react488.RefAttributes<unknown>>;
313
- NumberInput: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
314
- Checkbox: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
315
- Radio: react488.FC;
316
- Select: react488.FC;
317
- Switch: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch10.SwitchProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
318
- DatePicker: react488.ForwardRefExoticComponent<Partial<{
310
+ }> & react28.RefAttributes<unknown>>;
311
+ Input: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react28.RefAttributes<unknown>>;
312
+ Textarea: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLTextAreaElement> & react28.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react28.RefAttributes<unknown>>;
313
+ NumberInput: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react28.RefAttributes<unknown>>;
314
+ Checkbox: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
315
+ Radio: react28.FC;
316
+ Select: react28.FC;
317
+ Switch: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
318
+ DatePicker: react28.ForwardRefExoticComponent<Partial<{
319
319
  value?: Date;
320
320
  onChange?: (date: Date | undefined) => void;
321
321
  placeholder?: string;
322
- } & Omit<_pixpilot_shadcn_ui236.DatePickerProps, "onSelect" | "selected" | "mode">> & react488.RefAttributes<unknown>>;
322
+ } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
323
323
  Row: typeof Row;
324
324
  Column: typeof Column;
325
325
  FormGrid: typeof FormGrid;
326
- Separator: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react488.RefAttributes<HTMLDivElement>>, "ref"> & react488.RefAttributes<unknown>>;
326
+ Separator: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react28.RefAttributes<HTMLDivElement>>, "ref"> & react28.RefAttributes<unknown>>;
327
327
  ArrayCards: ComposedArrayProps;
328
- ArrayDialog: react488.FC<ArrayComponentProps>;
329
- ArrayCollapse: react488.FC<ArrayComponentProps & {
328
+ ArrayDialog: react28.FC<ArrayComponentProps>;
329
+ ArrayCollapse: react28.FC<ArrayComponentProps & {
330
330
  defaultActiveKey?: Array<string | number>;
331
331
  mode?: "accordion" | "multiple";
332
332
  }>;
333
- ArrayPopover: react488.FC<ArrayComponentProps>;
334
- ObjectContainer: react488.FC<ObjectContainerProps>;
333
+ ArrayPopover: react28.FC<ArrayComponentProps>;
334
+ ObjectContainer: react28.FC<ObjectContainerProps>;
335
335
  }, Component_7, Decorator_7>): JSX.Element;
336
336
  displayName: string;
337
337
  };
338
338
  Void: {
339
- <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", 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">(props: _formily_react11.ISchemaTypeFieldProps<{
340
- Combobox: react488.FC;
339
+ <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", 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">(props: _formily_react0.ISchemaTypeFieldProps<{
340
+ Combobox: react28.FC;
341
341
  TagsInput: typeof TagsInput;
342
- TagsInputInLine: react488.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui236.TagsInputProps> & react488.RefAttributes<unknown>>;
343
- Slider: react488.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui236.SliderProps>, "ref"> & react488.RefAttributes<unknown>>;
344
- FormItem: react488.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
345
- children?: react488.ReactNode | undefined;
346
- }>, "ref"> & react488.RefAttributes<unknown>>;
347
- Hidden: react488.ForwardRefExoticComponent<Partial<{
342
+ TagsInputInLine: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react28.RefAttributes<unknown>>;
343
+ Slider: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
344
+ FormItem: react28.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
345
+ children?: react28.ReactNode | undefined;
346
+ }>, "ref"> & react28.RefAttributes<unknown>>;
347
+ Hidden: react28.ForwardRefExoticComponent<Partial<{
348
348
  children?: React.ReactNode;
349
349
  value?: string;
350
- }> & react488.RefAttributes<unknown>>;
351
- Input: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
352
- Textarea: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLTextAreaElement> & react488.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react488.RefAttributes<unknown>>;
353
- NumberInput: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
354
- Checkbox: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
355
- Radio: react488.FC;
356
- Select: react488.FC;
357
- Switch: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch10.SwitchProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
358
- DatePicker: react488.ForwardRefExoticComponent<Partial<{
350
+ }> & react28.RefAttributes<unknown>>;
351
+ Input: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react28.RefAttributes<unknown>>;
352
+ Textarea: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLTextAreaElement> & react28.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react28.RefAttributes<unknown>>;
353
+ NumberInput: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react28.RefAttributes<unknown>>;
354
+ Checkbox: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
355
+ Radio: react28.FC;
356
+ Select: react28.FC;
357
+ Switch: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
358
+ DatePicker: react28.ForwardRefExoticComponent<Partial<{
359
359
  value?: Date;
360
360
  onChange?: (date: Date | undefined) => void;
361
361
  placeholder?: string;
362
- } & Omit<_pixpilot_shadcn_ui236.DatePickerProps, "onSelect" | "selected" | "mode">> & react488.RefAttributes<unknown>>;
362
+ } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
363
363
  Row: typeof Row;
364
364
  Column: typeof Column;
365
365
  FormGrid: typeof FormGrid;
366
- Separator: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react488.RefAttributes<HTMLDivElement>>, "ref"> & react488.RefAttributes<unknown>>;
366
+ Separator: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react28.RefAttributes<HTMLDivElement>>, "ref"> & react28.RefAttributes<unknown>>;
367
367
  ArrayCards: ComposedArrayProps;
368
- ArrayDialog: react488.FC<ArrayComponentProps>;
369
- ArrayCollapse: react488.FC<ArrayComponentProps & {
368
+ ArrayDialog: react28.FC<ArrayComponentProps>;
369
+ ArrayCollapse: react28.FC<ArrayComponentProps & {
370
370
  defaultActiveKey?: Array<string | number>;
371
371
  mode?: "accordion" | "multiple";
372
372
  }>;
373
- ArrayPopover: react488.FC<ArrayComponentProps>;
374
- ObjectContainer: react488.FC<ObjectContainerProps>;
373
+ ArrayPopover: react28.FC<ArrayComponentProps>;
374
+ ObjectContainer: react28.FC<ObjectContainerProps>;
375
375
  }, Component_8, Decorator_8>): JSX.Element;
376
376
  displayName: string;
377
377
  };
378
378
  Number: {
379
- <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", 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">(props: _formily_react11.ISchemaTypeFieldProps<{
380
- Combobox: react488.FC;
379
+ <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", 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">(props: _formily_react0.ISchemaTypeFieldProps<{
380
+ Combobox: react28.FC;
381
381
  TagsInput: typeof TagsInput;
382
- TagsInputInLine: react488.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui236.TagsInputProps> & react488.RefAttributes<unknown>>;
383
- Slider: react488.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui236.SliderProps>, "ref"> & react488.RefAttributes<unknown>>;
384
- FormItem: react488.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
385
- children?: react488.ReactNode | undefined;
386
- }>, "ref"> & react488.RefAttributes<unknown>>;
387
- Hidden: react488.ForwardRefExoticComponent<Partial<{
382
+ TagsInputInLine: react28.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui16.TagsInputProps> & react28.RefAttributes<unknown>>;
383
+ Slider: react28.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.SliderProps>, "ref"> & react28.RefAttributes<unknown>>;
384
+ FormItem: react28.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
385
+ children?: react28.ReactNode | undefined;
386
+ }>, "ref"> & react28.RefAttributes<unknown>>;
387
+ Hidden: react28.ForwardRefExoticComponent<Partial<{
388
388
  children?: React.ReactNode;
389
389
  value?: string;
390
- }> & react488.RefAttributes<unknown>>;
391
- Input: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
392
- Textarea: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLTextAreaElement> & react488.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react488.RefAttributes<unknown>>;
393
- NumberInput: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
394
- Checkbox: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
395
- Radio: react488.FC;
396
- Select: react488.FC;
397
- Switch: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch10.SwitchProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
398
- DatePicker: react488.ForwardRefExoticComponent<Partial<{
390
+ }> & react28.RefAttributes<unknown>>;
391
+ Input: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react28.RefAttributes<unknown>>;
392
+ Textarea: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLTextAreaElement> & react28.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react28.RefAttributes<unknown>>;
393
+ NumberInput: react28.ForwardRefExoticComponent<Omit<Partial<react28.ClassAttributes<HTMLInputElement> & react28.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react28.RefAttributes<unknown>>;
394
+ Checkbox: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
395
+ Radio: react28.FC;
396
+ Select: react28.FC;
397
+ Switch: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react28.RefAttributes<HTMLButtonElement>>, "ref"> & react28.RefAttributes<unknown>>;
398
+ DatePicker: react28.ForwardRefExoticComponent<Partial<{
399
399
  value?: Date;
400
400
  onChange?: (date: Date | undefined) => void;
401
401
  placeholder?: string;
402
- } & Omit<_pixpilot_shadcn_ui236.DatePickerProps, "onSelect" | "selected" | "mode">> & react488.RefAttributes<unknown>>;
402
+ } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
403
403
  Row: typeof Row;
404
404
  Column: typeof Column;
405
405
  FormGrid: typeof FormGrid;
406
- Separator: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react488.RefAttributes<HTMLDivElement>>, "ref"> & react488.RefAttributes<unknown>>;
406
+ Separator: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react28.RefAttributes<HTMLDivElement>>, "ref"> & react28.RefAttributes<unknown>>;
407
407
  ArrayCards: ComposedArrayProps;
408
- ArrayDialog: react488.FC<ArrayComponentProps>;
409
- ArrayCollapse: react488.FC<ArrayComponentProps & {
408
+ ArrayDialog: react28.FC<ArrayComponentProps>;
409
+ ArrayCollapse: react28.FC<ArrayComponentProps & {
410
410
  defaultActiveKey?: Array<string | number>;
411
411
  mode?: "accordion" | "multiple";
412
412
  }>;
413
- ArrayPopover: react488.FC<ArrayComponentProps>;
414
- ObjectContainer: react488.FC<ObjectContainerProps>;
413
+ ArrayPopover: react28.FC<ArrayComponentProps>;
414
+ ObjectContainer: react28.FC<ObjectContainerProps>;
415
415
  }, Component_9, Decorator_9>): JSX.Element;
416
416
  displayName: string;
417
417
  };