@pixpilot/formily-shadcn 0.9.0 → 0.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (87) hide show
  1. package/README.md +75 -0
  2. package/dist/components/array-base/components/addition.cjs +2 -2
  3. package/dist/components/array-base/components/addition.d.cts +3 -2
  4. package/dist/components/array-base/components/addition.d.ts +3 -2
  5. package/dist/components/array-base/components/addition.js +2 -2
  6. package/dist/components/array-base/components/array-item-label.cjs +1 -1
  7. package/dist/components/array-base/components/array-item-label.js +1 -1
  8. package/dist/components/array-base/types.d.cts +2 -2
  9. package/dist/components/array-base/types.d.ts +2 -2
  10. package/dist/components/checkbox.d.cts +2 -2
  11. package/dist/components/checkbox.d.ts +2 -2
  12. package/dist/components/context/form-context.d.cts +20 -16
  13. package/dist/components/context/form-context.d.ts +20 -16
  14. package/dist/components/context/index.d.cts +1 -1
  15. package/dist/components/context/index.d.ts +1 -1
  16. package/dist/components/date-picker.d.cts +4 -10
  17. package/dist/components/date-picker.d.ts +5 -11
  18. package/dist/components/file-upload/file-upload-inline.d.cts +8 -8
  19. package/dist/components/file-upload/file-upload.d.cts +8 -8
  20. package/dist/components/file-upload/use-file-upload-feedback.cjs +2 -2
  21. package/dist/components/file-upload/use-file-upload-feedback.js +2 -2
  22. package/dist/components/form-items-container.cjs +2 -5
  23. package/dist/components/form-items-container.js +2 -5
  24. package/dist/components/form.cjs +3 -5
  25. package/dist/components/form.d.cts +1 -2
  26. package/dist/components/form.d.ts +1 -2
  27. package/dist/components/form.js +3 -5
  28. package/dist/components/icon-picker.cjs +2 -2
  29. package/dist/components/icon-picker.d.ts +3 -3
  30. package/dist/components/icon-picker.js +2 -2
  31. package/dist/components/input.d.cts +2 -2
  32. package/dist/components/json-schema-form-renderer.cjs +34 -7
  33. package/dist/components/json-schema-form-renderer.d.cts +8 -3
  34. package/dist/components/json-schema-form-renderer.d.ts +8 -3
  35. package/dist/components/json-schema-form-renderer.js +32 -7
  36. package/dist/components/number-input.d.cts +2 -2
  37. package/dist/components/number-input.d.ts +2 -2
  38. package/dist/components/object-container.cjs +33 -7
  39. package/dist/components/object-container.js +34 -8
  40. package/dist/components/radio.d.cts +2 -2
  41. package/dist/components/radio.d.ts +2 -2
  42. package/dist/components/rich-text-editor.cjs +1 -1
  43. package/dist/components/rich-text-editor.js +1 -1
  44. package/dist/components/schema-field/index.d.cts +1 -1
  45. package/dist/components/schema-field/index.d.ts +1 -1
  46. package/dist/components/schema-field/index.js +1 -1
  47. package/dist/components/schema-field/schema-field-basics.cjs +4 -4
  48. package/dist/components/schema-field/schema-field-basics.d.cts +209 -269
  49. package/dist/components/schema-field/schema-field-basics.d.ts +209 -269
  50. package/dist/components/schema-field/schema-field-basics.js +3 -3
  51. package/dist/components/schema-field/schema-field-extended.d.cts +427 -488
  52. package/dist/components/schema-field/schema-field-extended.d.ts +427 -488
  53. package/dist/components/schema-field/schema-field.cjs +1 -1
  54. package/dist/components/schema-field/schema-field.d.cts +236 -297
  55. package/dist/components/schema-field/schema-field.d.ts +236 -297
  56. package/dist/components/schema-field/schema-field.js +2 -2
  57. package/dist/components/separator.d.cts +2 -2
  58. package/dist/components/separator.d.ts +2 -2
  59. package/dist/components/slider.d.cts +2 -2
  60. package/dist/components/slider.d.ts +2 -2
  61. package/dist/components/switch.d.cts +2 -2
  62. package/dist/components/tags-input-inline.d.cts +2 -2
  63. package/dist/components/textarea.d.cts +2 -2
  64. package/dist/components/textarea.d.ts +2 -2
  65. package/dist/hooks/index.js +1 -1
  66. package/dist/hooks/use-form-context.cjs +5 -0
  67. package/dist/hooks/use-form-context.js +5 -1
  68. package/dist/hooks/use-label.cjs +9 -2
  69. package/dist/hooks/use-label.js +9 -2
  70. package/dist/index.cjs +1 -1
  71. package/dist/index.d.cts +2 -2
  72. package/dist/index.d.ts +2 -2
  73. package/dist/index.js +2 -2
  74. package/dist/types/form.d.cts +0 -6
  75. package/dist/types/form.d.ts +0 -6
  76. package/dist/utils/extract-fields-decorators.cjs +37 -0
  77. package/dist/utils/extract-fields-decorators.js +36 -0
  78. package/dist/utils/index.cjs +2 -0
  79. package/dist/utils/index.js +3 -1
  80. package/dist/utils/resolve-responsive-space.cjs +45 -89
  81. package/dist/utils/resolve-responsive-space.js +42 -83
  82. package/dist/utils/transform-schema.cjs +9 -2
  83. package/dist/utils/transform-schema.js +9 -2
  84. package/dist/utils/validate-schema-components.cjs +45 -0
  85. package/dist/utils/validate-schema-components.js +43 -0
  86. package/package.json +4 -3
  87. package/dist/_virtual/rolldown_runtime.js +0 -24
@@ -5,474 +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_ui226 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 react_day_picker10 from "react-day-picker";
15
- import * as _radix_ui_react_switch10 from "@radix-ui/react-switch";
16
- 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";
17
16
 
18
17
  //#region src/components/schema-field/schema-field.d.ts
19
18
  declare const schemaFieldComponents: {
20
- Combobox: react488.FC;
19
+ Combobox: react28.FC;
21
20
  TagsInput: typeof TagsInput;
22
- TagsInputInLine: react488.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui226.TagsInputProps> & react488.RefAttributes<unknown>>;
23
- Slider: react488.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui226.SliderProps>, "ref"> & react488.RefAttributes<unknown>>;
24
- FormItem: react488.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
25
- children?: react488.ReactNode | undefined;
26
- }>, "ref"> & react488.RefAttributes<unknown>>;
27
- 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<{
28
27
  children?: React.ReactNode;
29
28
  value?: string;
30
- }> & react488.RefAttributes<unknown>>;
31
- Input: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
32
- Textarea: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLTextAreaElement> & react488.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react488.RefAttributes<unknown>>;
33
- NumberInput: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
34
- Checkbox: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
35
- Radio: react488.FC;
36
- Select: react488.FC;
37
- Switch: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch10.SwitchProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
38
- 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<{
39
38
  value?: Date;
40
39
  onChange?: (date: Date | undefined) => void;
41
40
  placeholder?: string;
42
- } & Omit<{
43
- value?: Date;
44
- onChange?: (date: Date | undefined) => void;
45
- placeholder?: string;
46
- } & Omit<react_day_picker10.DayPickerProps & {
47
- buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
48
- }, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react488.RefAttributes<unknown>>;
41
+ } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
49
42
  Row: typeof Row;
50
43
  Column: typeof Column;
51
44
  FormGrid: typeof FormGrid;
52
- 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>>;
53
46
  ArrayCards: ComposedArrayProps;
54
- ArrayDialog: react488.FC<ArrayComponentProps>;
55
- ArrayCollapse: react488.FC<ArrayComponentProps & {
47
+ ArrayDialog: react28.FC<ArrayComponentProps>;
48
+ ArrayCollapse: react28.FC<ArrayComponentProps & {
56
49
  defaultActiveKey?: Array<string | number>;
57
50
  mode?: "accordion" | "multiple";
58
51
  }>;
59
- ArrayPopover: react488.FC<ArrayComponentProps>;
60
- ObjectContainer: react488.FC<ObjectContainerProps>;
52
+ ArrayPopover: react28.FC<ArrayComponentProps>;
53
+ ObjectContainer: react28.FC<ObjectContainerProps>;
61
54
  };
62
55
  declare const SchemaField: {
63
- <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;
64
57
  displayName: string;
65
58
  Markup: {
66
- <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<{
67
- 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;
68
61
  TagsInput: typeof TagsInput;
69
- TagsInputInLine: react488.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui226.TagsInputProps> & react488.RefAttributes<unknown>>;
70
- Slider: react488.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui226.SliderProps>, "ref"> & react488.RefAttributes<unknown>>;
71
- FormItem: react488.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
72
- children?: react488.ReactNode | undefined;
73
- }>, "ref"> & react488.RefAttributes<unknown>>;
74
- 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<{
75
68
  children?: React.ReactNode;
76
69
  value?: string;
77
- }> & react488.RefAttributes<unknown>>;
78
- Input: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
79
- Textarea: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLTextAreaElement> & react488.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react488.RefAttributes<unknown>>;
80
- NumberInput: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
81
- Checkbox: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
82
- Radio: react488.FC;
83
- Select: react488.FC;
84
- Switch: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch10.SwitchProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
85
- DatePicker: react488.ForwardRefExoticComponent<Partial<{
86
- value?: Date;
87
- onChange?: (date: Date | undefined) => void;
88
- placeholder?: string;
89
- } & Omit<{
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<{
90
79
  value?: Date;
91
80
  onChange?: (date: Date | undefined) => void;
92
81
  placeholder?: string;
93
- } & Omit<react_day_picker10.DayPickerProps & {
94
- buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
95
- }, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react488.RefAttributes<unknown>>;
82
+ } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
96
83
  Row: typeof Row;
97
84
  Column: typeof Column;
98
85
  FormGrid: typeof FormGrid;
99
- 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>>;
100
87
  ArrayCards: ComposedArrayProps;
101
- ArrayDialog: react488.FC<ArrayComponentProps>;
102
- ArrayCollapse: react488.FC<ArrayComponentProps & {
88
+ ArrayDialog: react28.FC<ArrayComponentProps>;
89
+ ArrayCollapse: react28.FC<ArrayComponentProps & {
103
90
  defaultActiveKey?: Array<string | number>;
104
91
  mode?: "accordion" | "multiple";
105
92
  }>;
106
- ArrayPopover: react488.FC<ArrayComponentProps>;
107
- ObjectContainer: react488.FC<ObjectContainerProps>;
93
+ ArrayPopover: react28.FC<ArrayComponentProps>;
94
+ ObjectContainer: react28.FC<ObjectContainerProps>;
108
95
  }, Component_1, Decorator_1>): JSX.Element;
109
96
  displayName: string;
110
97
  };
111
98
  String: {
112
- <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<{
113
- 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;
114
101
  TagsInput: typeof TagsInput;
115
- TagsInputInLine: react488.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui226.TagsInputProps> & react488.RefAttributes<unknown>>;
116
- Slider: react488.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui226.SliderProps>, "ref"> & react488.RefAttributes<unknown>>;
117
- FormItem: react488.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
118
- children?: react488.ReactNode | undefined;
119
- }>, "ref"> & react488.RefAttributes<unknown>>;
120
- 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<{
121
108
  children?: React.ReactNode;
122
109
  value?: string;
123
- }> & react488.RefAttributes<unknown>>;
124
- Input: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
125
- Textarea: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLTextAreaElement> & react488.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react488.RefAttributes<unknown>>;
126
- NumberInput: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
127
- Checkbox: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
128
- Radio: react488.FC;
129
- Select: react488.FC;
130
- Switch: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch10.SwitchProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
131
- 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<{
132
119
  value?: Date;
133
120
  onChange?: (date: Date | undefined) => void;
134
121
  placeholder?: string;
135
- } & Omit<{
136
- value?: Date;
137
- onChange?: (date: Date | undefined) => void;
138
- placeholder?: string;
139
- } & Omit<react_day_picker10.DayPickerProps & {
140
- buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
141
- }, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react488.RefAttributes<unknown>>;
122
+ } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
142
123
  Row: typeof Row;
143
124
  Column: typeof Column;
144
125
  FormGrid: typeof FormGrid;
145
- 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>>;
146
127
  ArrayCards: ComposedArrayProps;
147
- ArrayDialog: react488.FC<ArrayComponentProps>;
148
- ArrayCollapse: react488.FC<ArrayComponentProps & {
128
+ ArrayDialog: react28.FC<ArrayComponentProps>;
129
+ ArrayCollapse: react28.FC<ArrayComponentProps & {
149
130
  defaultActiveKey?: Array<string | number>;
150
131
  mode?: "accordion" | "multiple";
151
132
  }>;
152
- ArrayPopover: react488.FC<ArrayComponentProps>;
153
- ObjectContainer: react488.FC<ObjectContainerProps>;
133
+ ArrayPopover: react28.FC<ArrayComponentProps>;
134
+ ObjectContainer: react28.FC<ObjectContainerProps>;
154
135
  }, Component_2, Decorator_2>): JSX.Element;
155
136
  displayName: string;
156
137
  };
157
138
  Object: {
158
- <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<{
159
- 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;
160
141
  TagsInput: typeof TagsInput;
161
- TagsInputInLine: react488.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui226.TagsInputProps> & react488.RefAttributes<unknown>>;
162
- Slider: react488.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui226.SliderProps>, "ref"> & react488.RefAttributes<unknown>>;
163
- FormItem: react488.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
164
- children?: react488.ReactNode | undefined;
165
- }>, "ref"> & react488.RefAttributes<unknown>>;
166
- 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<{
167
148
  children?: React.ReactNode;
168
149
  value?: string;
169
- }> & react488.RefAttributes<unknown>>;
170
- Input: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
171
- Textarea: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLTextAreaElement> & react488.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react488.RefAttributes<unknown>>;
172
- NumberInput: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
173
- Checkbox: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
174
- Radio: react488.FC;
175
- Select: react488.FC;
176
- Switch: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch10.SwitchProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
177
- DatePicker: react488.ForwardRefExoticComponent<Partial<{
178
- value?: Date;
179
- onChange?: (date: Date | undefined) => void;
180
- placeholder?: string;
181
- } & Omit<{
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<{
182
159
  value?: Date;
183
160
  onChange?: (date: Date | undefined) => void;
184
161
  placeholder?: string;
185
- } & Omit<react_day_picker10.DayPickerProps & {
186
- buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
187
- }, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react488.RefAttributes<unknown>>;
162
+ } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
188
163
  Row: typeof Row;
189
164
  Column: typeof Column;
190
165
  FormGrid: typeof FormGrid;
191
- 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>>;
192
167
  ArrayCards: ComposedArrayProps;
193
- ArrayDialog: react488.FC<ArrayComponentProps>;
194
- ArrayCollapse: react488.FC<ArrayComponentProps & {
168
+ ArrayDialog: react28.FC<ArrayComponentProps>;
169
+ ArrayCollapse: react28.FC<ArrayComponentProps & {
195
170
  defaultActiveKey?: Array<string | number>;
196
171
  mode?: "accordion" | "multiple";
197
172
  }>;
198
- ArrayPopover: react488.FC<ArrayComponentProps>;
199
- ObjectContainer: react488.FC<ObjectContainerProps>;
173
+ ArrayPopover: react28.FC<ArrayComponentProps>;
174
+ ObjectContainer: react28.FC<ObjectContainerProps>;
200
175
  }, Component_3, Decorator_3>): JSX.Element;
201
176
  displayName: string;
202
177
  };
203
178
  Array: {
204
- <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<{
205
- 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;
206
181
  TagsInput: typeof TagsInput;
207
- TagsInputInLine: react488.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui226.TagsInputProps> & react488.RefAttributes<unknown>>;
208
- Slider: react488.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui226.SliderProps>, "ref"> & react488.RefAttributes<unknown>>;
209
- FormItem: react488.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
210
- children?: react488.ReactNode | undefined;
211
- }>, "ref"> & react488.RefAttributes<unknown>>;
212
- 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<{
213
188
  children?: React.ReactNode;
214
189
  value?: string;
215
- }> & react488.RefAttributes<unknown>>;
216
- Input: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
217
- Textarea: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLTextAreaElement> & react488.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react488.RefAttributes<unknown>>;
218
- NumberInput: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
219
- Checkbox: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
220
- Radio: react488.FC;
221
- Select: react488.FC;
222
- Switch: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch10.SwitchProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
223
- DatePicker: react488.ForwardRefExoticComponent<Partial<{
224
- value?: Date;
225
- onChange?: (date: Date | undefined) => void;
226
- placeholder?: string;
227
- } & Omit<{
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<{
228
199
  value?: Date;
229
200
  onChange?: (date: Date | undefined) => void;
230
201
  placeholder?: string;
231
- } & Omit<react_day_picker10.DayPickerProps & {
232
- buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
233
- }, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react488.RefAttributes<unknown>>;
202
+ } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
234
203
  Row: typeof Row;
235
204
  Column: typeof Column;
236
205
  FormGrid: typeof FormGrid;
237
- 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>>;
238
207
  ArrayCards: ComposedArrayProps;
239
- ArrayDialog: react488.FC<ArrayComponentProps>;
240
- ArrayCollapse: react488.FC<ArrayComponentProps & {
208
+ ArrayDialog: react28.FC<ArrayComponentProps>;
209
+ ArrayCollapse: react28.FC<ArrayComponentProps & {
241
210
  defaultActiveKey?: Array<string | number>;
242
211
  mode?: "accordion" | "multiple";
243
212
  }>;
244
- ArrayPopover: react488.FC<ArrayComponentProps>;
245
- ObjectContainer: react488.FC<ObjectContainerProps>;
213
+ ArrayPopover: react28.FC<ArrayComponentProps>;
214
+ ObjectContainer: react28.FC<ObjectContainerProps>;
246
215
  }, Component_4, Decorator_4>): JSX.Element;
247
216
  displayName: string;
248
217
  };
249
218
  Boolean: {
250
- <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<{
251
- 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;
252
221
  TagsInput: typeof TagsInput;
253
- TagsInputInLine: react488.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui226.TagsInputProps> & react488.RefAttributes<unknown>>;
254
- Slider: react488.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui226.SliderProps>, "ref"> & react488.RefAttributes<unknown>>;
255
- FormItem: react488.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
256
- children?: react488.ReactNode | undefined;
257
- }>, "ref"> & react488.RefAttributes<unknown>>;
258
- 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<{
259
228
  children?: React.ReactNode;
260
229
  value?: string;
261
- }> & react488.RefAttributes<unknown>>;
262
- Input: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
263
- Textarea: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLTextAreaElement> & react488.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react488.RefAttributes<unknown>>;
264
- NumberInput: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
265
- Checkbox: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
266
- Radio: react488.FC;
267
- Select: react488.FC;
268
- Switch: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch10.SwitchProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
269
- 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<{
270
239
  value?: Date;
271
240
  onChange?: (date: Date | undefined) => void;
272
241
  placeholder?: string;
273
- } & Omit<{
274
- value?: Date;
275
- onChange?: (date: Date | undefined) => void;
276
- placeholder?: string;
277
- } & Omit<react_day_picker10.DayPickerProps & {
278
- buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
279
- }, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react488.RefAttributes<unknown>>;
242
+ } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
280
243
  Row: typeof Row;
281
244
  Column: typeof Column;
282
245
  FormGrid: typeof FormGrid;
283
- 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>>;
284
247
  ArrayCards: ComposedArrayProps;
285
- ArrayDialog: react488.FC<ArrayComponentProps>;
286
- ArrayCollapse: react488.FC<ArrayComponentProps & {
248
+ ArrayDialog: react28.FC<ArrayComponentProps>;
249
+ ArrayCollapse: react28.FC<ArrayComponentProps & {
287
250
  defaultActiveKey?: Array<string | number>;
288
251
  mode?: "accordion" | "multiple";
289
252
  }>;
290
- ArrayPopover: react488.FC<ArrayComponentProps>;
291
- ObjectContainer: react488.FC<ObjectContainerProps>;
253
+ ArrayPopover: react28.FC<ArrayComponentProps>;
254
+ ObjectContainer: react28.FC<ObjectContainerProps>;
292
255
  }, Component_5, Decorator_5>): JSX.Element;
293
256
  displayName: string;
294
257
  };
295
258
  Date: {
296
- <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<{
297
- 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;
298
261
  TagsInput: typeof TagsInput;
299
- TagsInputInLine: react488.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui226.TagsInputProps> & react488.RefAttributes<unknown>>;
300
- Slider: react488.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui226.SliderProps>, "ref"> & react488.RefAttributes<unknown>>;
301
- FormItem: react488.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
302
- children?: react488.ReactNode | undefined;
303
- }>, "ref"> & react488.RefAttributes<unknown>>;
304
- 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<{
305
268
  children?: React.ReactNode;
306
269
  value?: string;
307
- }> & react488.RefAttributes<unknown>>;
308
- Input: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
309
- Textarea: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLTextAreaElement> & react488.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react488.RefAttributes<unknown>>;
310
- NumberInput: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
311
- Checkbox: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
312
- Radio: react488.FC;
313
- Select: react488.FC;
314
- Switch: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch10.SwitchProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
315
- DatePicker: react488.ForwardRefExoticComponent<Partial<{
316
- value?: Date;
317
- onChange?: (date: Date | undefined) => void;
318
- placeholder?: string;
319
- } & Omit<{
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<{
320
279
  value?: Date;
321
280
  onChange?: (date: Date | undefined) => void;
322
281
  placeholder?: string;
323
- } & Omit<react_day_picker10.DayPickerProps & {
324
- buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
325
- }, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react488.RefAttributes<unknown>>;
282
+ } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
326
283
  Row: typeof Row;
327
284
  Column: typeof Column;
328
285
  FormGrid: typeof FormGrid;
329
- 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>>;
330
287
  ArrayCards: ComposedArrayProps;
331
- ArrayDialog: react488.FC<ArrayComponentProps>;
332
- ArrayCollapse: react488.FC<ArrayComponentProps & {
288
+ ArrayDialog: react28.FC<ArrayComponentProps>;
289
+ ArrayCollapse: react28.FC<ArrayComponentProps & {
333
290
  defaultActiveKey?: Array<string | number>;
334
291
  mode?: "accordion" | "multiple";
335
292
  }>;
336
- ArrayPopover: react488.FC<ArrayComponentProps>;
337
- ObjectContainer: react488.FC<ObjectContainerProps>;
293
+ ArrayPopover: react28.FC<ArrayComponentProps>;
294
+ ObjectContainer: react28.FC<ObjectContainerProps>;
338
295
  }, Component_6, Decorator_6>): JSX.Element;
339
296
  displayName: string;
340
297
  };
341
298
  DateTime: {
342
- <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<{
343
- 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;
344
301
  TagsInput: typeof TagsInput;
345
- TagsInputInLine: react488.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui226.TagsInputProps> & react488.RefAttributes<unknown>>;
346
- Slider: react488.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui226.SliderProps>, "ref"> & react488.RefAttributes<unknown>>;
347
- FormItem: react488.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
348
- children?: react488.ReactNode | undefined;
349
- }>, "ref"> & react488.RefAttributes<unknown>>;
350
- 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<{
351
308
  children?: React.ReactNode;
352
309
  value?: string;
353
- }> & react488.RefAttributes<unknown>>;
354
- Input: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
355
- Textarea: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLTextAreaElement> & react488.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react488.RefAttributes<unknown>>;
356
- NumberInput: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
357
- Checkbox: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
358
- Radio: react488.FC;
359
- Select: react488.FC;
360
- Switch: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch10.SwitchProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
361
- 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<{
362
319
  value?: Date;
363
320
  onChange?: (date: Date | undefined) => void;
364
321
  placeholder?: string;
365
- } & Omit<{
366
- value?: Date;
367
- onChange?: (date: Date | undefined) => void;
368
- placeholder?: string;
369
- } & Omit<react_day_picker10.DayPickerProps & {
370
- buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
371
- }, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react488.RefAttributes<unknown>>;
322
+ } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
372
323
  Row: typeof Row;
373
324
  Column: typeof Column;
374
325
  FormGrid: typeof FormGrid;
375
- 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>>;
376
327
  ArrayCards: ComposedArrayProps;
377
- ArrayDialog: react488.FC<ArrayComponentProps>;
378
- ArrayCollapse: react488.FC<ArrayComponentProps & {
328
+ ArrayDialog: react28.FC<ArrayComponentProps>;
329
+ ArrayCollapse: react28.FC<ArrayComponentProps & {
379
330
  defaultActiveKey?: Array<string | number>;
380
331
  mode?: "accordion" | "multiple";
381
332
  }>;
382
- ArrayPopover: react488.FC<ArrayComponentProps>;
383
- ObjectContainer: react488.FC<ObjectContainerProps>;
333
+ ArrayPopover: react28.FC<ArrayComponentProps>;
334
+ ObjectContainer: react28.FC<ObjectContainerProps>;
384
335
  }, Component_7, Decorator_7>): JSX.Element;
385
336
  displayName: string;
386
337
  };
387
338
  Void: {
388
- <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<{
389
- 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;
390
341
  TagsInput: typeof TagsInput;
391
- TagsInputInLine: react488.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui226.TagsInputProps> & react488.RefAttributes<unknown>>;
392
- Slider: react488.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui226.SliderProps>, "ref"> & react488.RefAttributes<unknown>>;
393
- FormItem: react488.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
394
- children?: react488.ReactNode | undefined;
395
- }>, "ref"> & react488.RefAttributes<unknown>>;
396
- 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<{
397
348
  children?: React.ReactNode;
398
349
  value?: string;
399
- }> & react488.RefAttributes<unknown>>;
400
- Input: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
401
- Textarea: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLTextAreaElement> & react488.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react488.RefAttributes<unknown>>;
402
- NumberInput: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
403
- Checkbox: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
404
- Radio: react488.FC;
405
- Select: react488.FC;
406
- Switch: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch10.SwitchProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
407
- DatePicker: react488.ForwardRefExoticComponent<Partial<{
408
- value?: Date;
409
- onChange?: (date: Date | undefined) => void;
410
- placeholder?: string;
411
- } & Omit<{
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<{
412
359
  value?: Date;
413
360
  onChange?: (date: Date | undefined) => void;
414
361
  placeholder?: string;
415
- } & Omit<react_day_picker10.DayPickerProps & {
416
- buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
417
- }, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react488.RefAttributes<unknown>>;
362
+ } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
418
363
  Row: typeof Row;
419
364
  Column: typeof Column;
420
365
  FormGrid: typeof FormGrid;
421
- 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>>;
422
367
  ArrayCards: ComposedArrayProps;
423
- ArrayDialog: react488.FC<ArrayComponentProps>;
424
- ArrayCollapse: react488.FC<ArrayComponentProps & {
368
+ ArrayDialog: react28.FC<ArrayComponentProps>;
369
+ ArrayCollapse: react28.FC<ArrayComponentProps & {
425
370
  defaultActiveKey?: Array<string | number>;
426
371
  mode?: "accordion" | "multiple";
427
372
  }>;
428
- ArrayPopover: react488.FC<ArrayComponentProps>;
429
- ObjectContainer: react488.FC<ObjectContainerProps>;
373
+ ArrayPopover: react28.FC<ArrayComponentProps>;
374
+ ObjectContainer: react28.FC<ObjectContainerProps>;
430
375
  }, Component_8, Decorator_8>): JSX.Element;
431
376
  displayName: string;
432
377
  };
433
378
  Number: {
434
- <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<{
435
- 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;
436
381
  TagsInput: typeof TagsInput;
437
- TagsInputInLine: react488.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui226.TagsInputProps> & react488.RefAttributes<unknown>>;
438
- Slider: react488.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui226.SliderProps>, "ref"> & react488.RefAttributes<unknown>>;
439
- FormItem: react488.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
440
- children?: react488.ReactNode | undefined;
441
- }>, "ref"> & react488.RefAttributes<unknown>>;
442
- 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<{
443
388
  children?: React.ReactNode;
444
389
  value?: string;
445
- }> & react488.RefAttributes<unknown>>;
446
- Input: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
447
- Textarea: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLTextAreaElement> & react488.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react488.RefAttributes<unknown>>;
448
- NumberInput: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
449
- Checkbox: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
450
- Radio: react488.FC;
451
- Select: react488.FC;
452
- Switch: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch10.SwitchProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
453
- DatePicker: react488.ForwardRefExoticComponent<Partial<{
454
- value?: Date;
455
- onChange?: (date: Date | undefined) => void;
456
- placeholder?: string;
457
- } & Omit<{
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<{
458
399
  value?: Date;
459
400
  onChange?: (date: Date | undefined) => void;
460
401
  placeholder?: string;
461
- } & Omit<react_day_picker10.DayPickerProps & {
462
- buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
463
- }, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react488.RefAttributes<unknown>>;
402
+ } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
464
403
  Row: typeof Row;
465
404
  Column: typeof Column;
466
405
  FormGrid: typeof FormGrid;
467
- 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>>;
468
407
  ArrayCards: ComposedArrayProps;
469
- ArrayDialog: react488.FC<ArrayComponentProps>;
470
- ArrayCollapse: react488.FC<ArrayComponentProps & {
408
+ ArrayDialog: react28.FC<ArrayComponentProps>;
409
+ ArrayCollapse: react28.FC<ArrayComponentProps & {
471
410
  defaultActiveKey?: Array<string | number>;
472
411
  mode?: "accordion" | "multiple";
473
412
  }>;
474
- ArrayPopover: react488.FC<ArrayComponentProps>;
475
- ObjectContainer: react488.FC<ObjectContainerProps>;
413
+ ArrayPopover: react28.FC<ArrayComponentProps>;
414
+ ObjectContainer: react28.FC<ObjectContainerProps>;
476
415
  }, Component_9, Decorator_9>): JSX.Element;
477
416
  displayName: string;
478
417
  };