@pixpilot/formily-shadcn 0.10.0 → 0.11.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 (112) hide show
  1. package/README.md +27 -1
  2. package/dist/components/checkbox.d.cts +2 -2
  3. package/dist/components/context/context.d.cts +1 -1
  4. package/dist/components/context/context.d.ts +1 -1
  5. package/dist/components/context/form-context.d.cts +34 -5
  6. package/dist/components/context/form-context.d.ts +34 -5
  7. package/dist/components/context/index.d.cts +1 -1
  8. package/dist/components/context/index.d.ts +1 -1
  9. package/dist/components/date-picker.d.cts +3 -3
  10. package/dist/components/file-upload/file-upload-inline.d.cts +8 -8
  11. package/dist/components/file-upload/file-upload.d.cts +8 -8
  12. package/dist/components/form-grid.d.cts +2 -2
  13. package/dist/components/form-item/base-form-item.cjs +85 -0
  14. package/dist/components/form-item/base-form-item.d.cts +2 -0
  15. package/dist/components/form-item/base-form-item.d.ts +2 -0
  16. package/dist/components/form-item/base-form-item.js +80 -0
  17. package/dist/components/form-item/connected-form-item.cjs +47 -0
  18. package/dist/components/form-item/connected-form-item.d.cts +13 -0
  19. package/dist/components/form-item/connected-form-item.d.ts +13 -0
  20. package/dist/components/form-item/connected-form-item.js +44 -0
  21. package/dist/components/form-item/form-item-description-popover.cjs +42 -0
  22. package/dist/components/form-item/form-item-description-popover.js +37 -0
  23. package/dist/components/form-item/form-item-label.cjs +29 -0
  24. package/dist/components/form-item/form-item-label.js +25 -0
  25. package/dist/components/form-item/form-item-types.d.cts +23 -0
  26. package/dist/components/form-item/form-item-types.d.ts +23 -0
  27. package/dist/components/form-item/form-item.cjs +2 -0
  28. package/dist/components/form-item/form-item.d.cts +4 -0
  29. package/dist/components/form-item/form-item.d.ts +4 -0
  30. package/dist/components/form-item/form-item.js +2 -0
  31. package/dist/components/form-item/index.cjs +3 -0
  32. package/dist/components/form-item/index.d.cts +4 -0
  33. package/dist/components/form-item/index.d.ts +4 -0
  34. package/dist/components/form-item/index.js +3 -0
  35. package/dist/components/form-item/spacing-config.cjs +24 -0
  36. package/dist/components/form-item/spacing-config.js +23 -0
  37. package/dist/components/form-items-container.cjs +2 -1
  38. package/dist/components/form-items-container.js +2 -1
  39. package/dist/components/form.cjs +4 -11
  40. package/dist/components/form.d.cts +3 -5
  41. package/dist/components/form.d.ts +1 -3
  42. package/dist/components/form.js +4 -11
  43. package/dist/components/icon-picker.d.cts +3 -3
  44. package/dist/components/icon-picker.d.ts +3 -3
  45. package/dist/components/input.d.ts +2 -2
  46. package/dist/components/json-schema-form-renderer/index.cjs +4 -0
  47. package/dist/components/json-schema-form-renderer/index.d.cts +5 -0
  48. package/dist/components/json-schema-form-renderer/index.d.ts +5 -0
  49. package/dist/components/json-schema-form-renderer/index.js +4 -0
  50. package/dist/components/json-schema-form-renderer/json-schema-form-basic.cjs +35 -0
  51. package/dist/components/json-schema-form-renderer/json-schema-form-basic.d.cts +14 -0
  52. package/dist/components/json-schema-form-renderer/json-schema-form-basic.d.ts +14 -0
  53. package/dist/components/json-schema-form-renderer/json-schema-form-basic.js +32 -0
  54. package/dist/components/json-schema-form-renderer/json-schema-form-extended.cjs +35 -0
  55. package/dist/components/json-schema-form-renderer/json-schema-form-extended.d.cts +14 -0
  56. package/dist/components/json-schema-form-renderer/json-schema-form-extended.d.ts +14 -0
  57. package/dist/components/json-schema-form-renderer/json-schema-form-extended.js +32 -0
  58. package/dist/components/{json-schema-form-renderer.cjs → json-schema-form-renderer/json-schema-form-renderer.cjs} +14 -15
  59. package/dist/components/json-schema-form-renderer/json-schema-form-renderer.d.cts +7 -0
  60. package/dist/components/json-schema-form-renderer/json-schema-form-renderer.d.ts +7 -0
  61. package/dist/components/{json-schema-form-renderer.js → json-schema-form-renderer/json-schema-form-renderer.js} +13 -14
  62. package/dist/components/json-schema-form-renderer/json-schema-form.cjs +36 -0
  63. package/dist/components/json-schema-form-renderer/json-schema-form.d.cts +14 -0
  64. package/dist/components/json-schema-form-renderer/json-schema-form.d.ts +14 -0
  65. package/dist/components/json-schema-form-renderer/json-schema-form.js +33 -0
  66. package/dist/components/json-schema-form-renderer/types.d.cts +23 -0
  67. package/dist/components/json-schema-form-renderer/types.d.ts +23 -0
  68. package/dist/components/number-input.d.ts +2 -2
  69. package/dist/components/object-container.cjs +13 -6
  70. package/dist/components/object-container.js +13 -6
  71. package/dist/components/radio.d.cts +2 -2
  72. package/dist/components/row.d.cts +2 -2
  73. package/dist/components/schema-field/index.d.cts +3 -3
  74. package/dist/components/schema-field/index.d.ts +3 -3
  75. package/dist/components/schema-field/index.js +3 -3
  76. package/dist/components/schema-field/schema-field-basics.cjs +66 -23
  77. package/dist/components/schema-field/schema-field-basics.d.cts +283 -198
  78. package/dist/components/schema-field/schema-field-basics.d.ts +295 -210
  79. package/dist/components/schema-field/schema-field-basics.js +65 -23
  80. package/dist/components/schema-field/schema-field-extended.cjs +23 -8
  81. package/dist/components/schema-field/schema-field-extended.d.cts +569 -434
  82. package/dist/components/schema-field/schema-field-extended.d.ts +569 -434
  83. package/dist/components/schema-field/schema-field-extended.js +23 -9
  84. package/dist/components/schema-field/schema-field.cjs +23 -8
  85. package/dist/components/schema-field/schema-field.d.cts +341 -240
  86. package/dist/components/schema-field/schema-field.d.ts +340 -239
  87. package/dist/components/schema-field/schema-field.js +23 -9
  88. package/dist/components/separator.d.cts +2 -2
  89. package/dist/components/separator.d.ts +2 -2
  90. package/dist/components/slider.d.cts +2 -2
  91. package/dist/components/slider.d.ts +2 -2
  92. package/dist/components/switch.d.cts +2 -2
  93. package/dist/components/switch.d.ts +2 -2
  94. package/dist/components/tags-input-inline.d.cts +2 -2
  95. package/dist/components/tags-input-inline.d.ts +2 -2
  96. package/dist/components/textarea.d.cts +2 -2
  97. package/dist/components/textarea.d.ts +2 -2
  98. package/dist/index.cjs +17 -6
  99. package/dist/index.d.cts +14 -6
  100. package/dist/index.d.ts +14 -6
  101. package/dist/index.js +11 -6
  102. package/dist/types/form-item.d.cts +5 -0
  103. package/dist/types/form-item.d.ts +5 -0
  104. package/dist/utils/extract-components.cjs +11 -0
  105. package/dist/utils/extract-components.js +10 -0
  106. package/package.json +5 -5
  107. package/dist/components/form-item.cjs +0 -118
  108. package/dist/components/form-item.d.cts +0 -22
  109. package/dist/components/form-item.d.ts +0 -22
  110. package/dist/components/form-item.js +0 -112
  111. package/dist/components/json-schema-form-renderer.d.cts +0 -20
  112. package/dist/components/json-schema-form-renderer.d.ts +0 -20
@@ -2,419 +2,520 @@ import { ArrayComponentProps, ComposedArrayProps } from "../array-base/types.js"
2
2
  import "../array-base/index.js";
3
3
  import { Column } from "../column.js";
4
4
  import { FormGrid } from "../form-grid.js";
5
- import { FormItemProps } from "../form-item.js";
5
+ import { FormItemProps } from "../form-item/form-item-types.js";
6
+ import "../form-item/index.js";
6
7
  import { Row } from "../row.js";
7
8
  import { ObjectContainerProps } from "../object-container.js";
8
- import * as _formily_react0 from "@formily/react";
9
- import * as react28 from "react";
10
- import * as _pixpilot_shadcn_ui16 from "@pixpilot/shadcn-ui";
9
+ import * as _formily_react11 from "@formily/react";
10
+ import * as react536 from "react";
11
+ import * as _pixpilot_shadcn_ui258 from "@pixpilot/shadcn-ui";
11
12
  import { TagsInput } from "@pixpilot/shadcn-ui";
12
13
  import * as _formily_core0 from "@formily/core";
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";
14
+ import * as _radix_ui_react_checkbox11 from "@radix-ui/react-checkbox";
15
+ import * as _radix_ui_react_switch11 from "@radix-ui/react-switch";
16
+ import * as _radix_ui_react_separator11 from "@radix-ui/react-separator";
16
17
 
17
18
  //#region src/components/schema-field/schema-field.d.ts
18
- declare const schemaFieldComponents: {
19
- Combobox: react28.FC;
19
+ declare const defaultComponentRegistry: {
20
+ Combobox: {
21
+ component: react536.FC;
22
+ decorator: string;
23
+ };
24
+ TagsInput: {
25
+ component: typeof TagsInput;
26
+ decorator: string;
27
+ };
28
+ TagsInputInLine: {
29
+ component: react536.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui258.TagsInputProps> & react536.RefAttributes<unknown>>;
30
+ decorator: string;
31
+ };
32
+ Slider: {
33
+ component: react536.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui258.SliderProps>, "ref"> & react536.RefAttributes<unknown>>;
34
+ decorator: string;
35
+ };
36
+ FormItem: {
37
+ component: react536.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
38
+ children?: react536.ReactNode | undefined;
39
+ }>, "ref"> & react536.RefAttributes<unknown>>;
40
+ };
41
+ Hidden: {
42
+ component: react536.ForwardRefExoticComponent<Partial<{
43
+ children?: React.ReactNode;
44
+ value?: string;
45
+ }> & react536.RefAttributes<unknown>>;
46
+ };
47
+ Input: {
48
+ component: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLInputElement> & react536.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react536.RefAttributes<unknown>>;
49
+ decorator: string;
50
+ };
51
+ Textarea: {
52
+ component: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLTextAreaElement> & react536.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react536.RefAttributes<unknown>>;
53
+ decorator: string;
54
+ };
55
+ NumberInput: {
56
+ component: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLInputElement> & react536.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react536.RefAttributes<unknown>>;
57
+ decorator: string;
58
+ };
59
+ Checkbox: {
60
+ component: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox11.CheckboxProps & react536.RefAttributes<HTMLButtonElement>>, "ref"> & react536.RefAttributes<unknown>>;
61
+ decorator: string;
62
+ };
63
+ Radio: {
64
+ component: react536.FC;
65
+ decorator: string;
66
+ };
67
+ Select: {
68
+ component: react536.FC;
69
+ decorator: string;
70
+ };
71
+ Switch: {
72
+ component: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch11.SwitchProps & react536.RefAttributes<HTMLButtonElement>>, "ref"> & react536.RefAttributes<unknown>>;
73
+ decorator: string;
74
+ };
75
+ DatePicker: {
76
+ component: react536.ForwardRefExoticComponent<Partial<{
77
+ value?: Date;
78
+ onChange?: (date: Date | undefined) => void;
79
+ placeholder?: string;
80
+ } & Omit<_pixpilot_shadcn_ui258.DatePickerProps, "onSelect" | "selected" | "mode">> & react536.RefAttributes<unknown>>;
81
+ decorator: string;
82
+ };
83
+ Row: {
84
+ component: typeof Row;
85
+ };
86
+ Column: {
87
+ component: typeof Column;
88
+ };
89
+ FormGrid: {
90
+ component: typeof FormGrid;
91
+ };
92
+ Separator: {
93
+ component: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator11.SeparatorProps & react536.RefAttributes<HTMLDivElement>>, "ref"> & react536.RefAttributes<unknown>>;
94
+ };
95
+ ArrayCards: {
96
+ component: ComposedArrayProps;
97
+ decorator: string;
98
+ };
99
+ ArrayDialog: {
100
+ component: react536.FC<ArrayComponentProps>;
101
+ decorator: string;
102
+ };
103
+ ArrayCollapse: {
104
+ component: react536.FC<ArrayComponentProps & {
105
+ defaultActiveKey?: Array<string | number>;
106
+ mode?: "accordion" | "multiple";
107
+ }>;
108
+ decorator: string;
109
+ };
110
+ ArrayPopover: {
111
+ component: react536.FC<ArrayComponentProps>;
112
+ decorator: string;
113
+ };
114
+ ObjectContainer: {
115
+ component: react536.FC<ObjectContainerProps>;
116
+ decorator: string;
117
+ };
118
+ };
119
+ declare const defaultComponents: {
120
+ Combobox: react536.FC;
20
121
  TagsInput: typeof TagsInput;
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<{
122
+ TagsInputInLine: react536.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui258.TagsInputProps> & react536.RefAttributes<unknown>>;
123
+ Slider: react536.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui258.SliderProps>, "ref"> & react536.RefAttributes<unknown>>;
124
+ FormItem: react536.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
125
+ children?: react536.ReactNode | undefined;
126
+ }>, "ref"> & react536.RefAttributes<unknown>>;
127
+ Hidden: react536.ForwardRefExoticComponent<Partial<{
27
128
  children?: React.ReactNode;
28
129
  value?: string;
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<{
130
+ }> & react536.RefAttributes<unknown>>;
131
+ Input: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLInputElement> & react536.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react536.RefAttributes<unknown>>;
132
+ Textarea: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLTextAreaElement> & react536.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react536.RefAttributes<unknown>>;
133
+ NumberInput: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLInputElement> & react536.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react536.RefAttributes<unknown>>;
134
+ Checkbox: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox11.CheckboxProps & react536.RefAttributes<HTMLButtonElement>>, "ref"> & react536.RefAttributes<unknown>>;
135
+ Radio: react536.FC;
136
+ Select: react536.FC;
137
+ Switch: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch11.SwitchProps & react536.RefAttributes<HTMLButtonElement>>, "ref"> & react536.RefAttributes<unknown>>;
138
+ DatePicker: react536.ForwardRefExoticComponent<Partial<{
38
139
  value?: Date;
39
140
  onChange?: (date: Date | undefined) => void;
40
141
  placeholder?: string;
41
- } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
142
+ } & Omit<_pixpilot_shadcn_ui258.DatePickerProps, "onSelect" | "selected" | "mode">> & react536.RefAttributes<unknown>>;
42
143
  Row: typeof Row;
43
144
  Column: typeof Column;
44
145
  FormGrid: typeof FormGrid;
45
- Separator: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react28.RefAttributes<HTMLDivElement>>, "ref"> & react28.RefAttributes<unknown>>;
146
+ Separator: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator11.SeparatorProps & react536.RefAttributes<HTMLDivElement>>, "ref"> & react536.RefAttributes<unknown>>;
46
147
  ArrayCards: ComposedArrayProps;
47
- ArrayDialog: react28.FC<ArrayComponentProps>;
48
- ArrayCollapse: react28.FC<ArrayComponentProps & {
148
+ ArrayDialog: react536.FC<ArrayComponentProps>;
149
+ ArrayCollapse: react536.FC<ArrayComponentProps & {
49
150
  defaultActiveKey?: Array<string | number>;
50
151
  mode?: "accordion" | "multiple";
51
152
  }>;
52
- ArrayPopover: react28.FC<ArrayComponentProps>;
53
- ObjectContainer: react28.FC<ObjectContainerProps>;
153
+ ArrayPopover: react536.FC<ArrayComponentProps>;
154
+ ObjectContainer: react536.FC<ObjectContainerProps>;
54
155
  };
55
156
  declare const SchemaField: {
56
- <Decorator extends _formily_react0.JSXComponent, Component extends _formily_react0.JSXComponent>(props: _formily_react0.ISchemaFieldProps<Decorator, Component, _formily_core0.ObjectField<Decorator, Component>>): JSX.Element;
157
+ <Decorator extends _formily_react11.JSXComponent, Component extends _formily_react11.JSXComponent>(props: _formily_react11.ISchemaFieldProps<Decorator, Component, _formily_core0.ObjectField<Decorator, Component>>): JSX.Element;
57
158
  displayName: string;
58
159
  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_react0.ISchemaMarkupFieldProps<{
60
- Combobox: react28.FC;
160
+ <Decorator_1 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "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" | "TagsInputInLine.$$typeof" | "Slider.$$typeof", Component_1 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "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" | "TagsInputInLine.$$typeof" | "Slider.$$typeof">(props: _formily_react11.ISchemaMarkupFieldProps<{
161
+ Combobox: react536.FC;
61
162
  TagsInput: typeof TagsInput;
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<{
163
+ TagsInputInLine: react536.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui258.TagsInputProps> & react536.RefAttributes<unknown>>;
164
+ Slider: react536.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui258.SliderProps>, "ref"> & react536.RefAttributes<unknown>>;
165
+ FormItem: react536.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
166
+ children?: react536.ReactNode | undefined;
167
+ }>, "ref"> & react536.RefAttributes<unknown>>;
168
+ Hidden: react536.ForwardRefExoticComponent<Partial<{
68
169
  children?: React.ReactNode;
69
170
  value?: string;
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<{
171
+ }> & react536.RefAttributes<unknown>>;
172
+ Input: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLInputElement> & react536.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react536.RefAttributes<unknown>>;
173
+ Textarea: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLTextAreaElement> & react536.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react536.RefAttributes<unknown>>;
174
+ NumberInput: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLInputElement> & react536.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react536.RefAttributes<unknown>>;
175
+ Checkbox: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox11.CheckboxProps & react536.RefAttributes<HTMLButtonElement>>, "ref"> & react536.RefAttributes<unknown>>;
176
+ Radio: react536.FC;
177
+ Select: react536.FC;
178
+ Switch: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch11.SwitchProps & react536.RefAttributes<HTMLButtonElement>>, "ref"> & react536.RefAttributes<unknown>>;
179
+ DatePicker: react536.ForwardRefExoticComponent<Partial<{
79
180
  value?: Date;
80
181
  onChange?: (date: Date | undefined) => void;
81
182
  placeholder?: string;
82
- } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
183
+ } & Omit<_pixpilot_shadcn_ui258.DatePickerProps, "onSelect" | "selected" | "mode">> & react536.RefAttributes<unknown>>;
83
184
  Row: typeof Row;
84
185
  Column: typeof Column;
85
186
  FormGrid: typeof FormGrid;
86
- Separator: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react28.RefAttributes<HTMLDivElement>>, "ref"> & react28.RefAttributes<unknown>>;
187
+ Separator: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator11.SeparatorProps & react536.RefAttributes<HTMLDivElement>>, "ref"> & react536.RefAttributes<unknown>>;
87
188
  ArrayCards: ComposedArrayProps;
88
- ArrayDialog: react28.FC<ArrayComponentProps>;
89
- ArrayCollapse: react28.FC<ArrayComponentProps & {
189
+ ArrayDialog: react536.FC<ArrayComponentProps>;
190
+ ArrayCollapse: react536.FC<ArrayComponentProps & {
90
191
  defaultActiveKey?: Array<string | number>;
91
192
  mode?: "accordion" | "multiple";
92
193
  }>;
93
- ArrayPopover: react28.FC<ArrayComponentProps>;
94
- ObjectContainer: react28.FC<ObjectContainerProps>;
194
+ ArrayPopover: react536.FC<ArrayComponentProps>;
195
+ ObjectContainer: react536.FC<ObjectContainerProps>;
95
196
  }, Component_1, Decorator_1>): JSX.Element;
96
197
  displayName: string;
97
198
  };
98
199
  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_react0.ISchemaTypeFieldProps<{
100
- Combobox: react28.FC;
200
+ <Decorator_2 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "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" | "TagsInputInLine.$$typeof" | "Slider.$$typeof", Component_2 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "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" | "TagsInputInLine.$$typeof" | "Slider.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
201
+ Combobox: react536.FC;
101
202
  TagsInput: typeof TagsInput;
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<{
203
+ TagsInputInLine: react536.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui258.TagsInputProps> & react536.RefAttributes<unknown>>;
204
+ Slider: react536.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui258.SliderProps>, "ref"> & react536.RefAttributes<unknown>>;
205
+ FormItem: react536.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
206
+ children?: react536.ReactNode | undefined;
207
+ }>, "ref"> & react536.RefAttributes<unknown>>;
208
+ Hidden: react536.ForwardRefExoticComponent<Partial<{
108
209
  children?: React.ReactNode;
109
210
  value?: string;
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<{
211
+ }> & react536.RefAttributes<unknown>>;
212
+ Input: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLInputElement> & react536.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react536.RefAttributes<unknown>>;
213
+ Textarea: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLTextAreaElement> & react536.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react536.RefAttributes<unknown>>;
214
+ NumberInput: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLInputElement> & react536.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react536.RefAttributes<unknown>>;
215
+ Checkbox: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox11.CheckboxProps & react536.RefAttributes<HTMLButtonElement>>, "ref"> & react536.RefAttributes<unknown>>;
216
+ Radio: react536.FC;
217
+ Select: react536.FC;
218
+ Switch: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch11.SwitchProps & react536.RefAttributes<HTMLButtonElement>>, "ref"> & react536.RefAttributes<unknown>>;
219
+ DatePicker: react536.ForwardRefExoticComponent<Partial<{
119
220
  value?: Date;
120
221
  onChange?: (date: Date | undefined) => void;
121
222
  placeholder?: string;
122
- } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
223
+ } & Omit<_pixpilot_shadcn_ui258.DatePickerProps, "onSelect" | "selected" | "mode">> & react536.RefAttributes<unknown>>;
123
224
  Row: typeof Row;
124
225
  Column: typeof Column;
125
226
  FormGrid: typeof FormGrid;
126
- Separator: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react28.RefAttributes<HTMLDivElement>>, "ref"> & react28.RefAttributes<unknown>>;
227
+ Separator: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator11.SeparatorProps & react536.RefAttributes<HTMLDivElement>>, "ref"> & react536.RefAttributes<unknown>>;
127
228
  ArrayCards: ComposedArrayProps;
128
- ArrayDialog: react28.FC<ArrayComponentProps>;
129
- ArrayCollapse: react28.FC<ArrayComponentProps & {
229
+ ArrayDialog: react536.FC<ArrayComponentProps>;
230
+ ArrayCollapse: react536.FC<ArrayComponentProps & {
130
231
  defaultActiveKey?: Array<string | number>;
131
232
  mode?: "accordion" | "multiple";
132
233
  }>;
133
- ArrayPopover: react28.FC<ArrayComponentProps>;
134
- ObjectContainer: react28.FC<ObjectContainerProps>;
234
+ ArrayPopover: react536.FC<ArrayComponentProps>;
235
+ ObjectContainer: react536.FC<ObjectContainerProps>;
135
236
  }, Component_2, Decorator_2>): JSX.Element;
136
237
  displayName: string;
137
238
  };
138
239
  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_react0.ISchemaTypeFieldProps<{
140
- Combobox: react28.FC;
240
+ <Decorator_3 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "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" | "TagsInputInLine.$$typeof" | "Slider.$$typeof", Component_3 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "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" | "TagsInputInLine.$$typeof" | "Slider.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
241
+ Combobox: react536.FC;
141
242
  TagsInput: typeof TagsInput;
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<{
243
+ TagsInputInLine: react536.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui258.TagsInputProps> & react536.RefAttributes<unknown>>;
244
+ Slider: react536.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui258.SliderProps>, "ref"> & react536.RefAttributes<unknown>>;
245
+ FormItem: react536.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
246
+ children?: react536.ReactNode | undefined;
247
+ }>, "ref"> & react536.RefAttributes<unknown>>;
248
+ Hidden: react536.ForwardRefExoticComponent<Partial<{
148
249
  children?: React.ReactNode;
149
250
  value?: string;
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<{
251
+ }> & react536.RefAttributes<unknown>>;
252
+ Input: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLInputElement> & react536.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react536.RefAttributes<unknown>>;
253
+ Textarea: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLTextAreaElement> & react536.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react536.RefAttributes<unknown>>;
254
+ NumberInput: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLInputElement> & react536.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react536.RefAttributes<unknown>>;
255
+ Checkbox: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox11.CheckboxProps & react536.RefAttributes<HTMLButtonElement>>, "ref"> & react536.RefAttributes<unknown>>;
256
+ Radio: react536.FC;
257
+ Select: react536.FC;
258
+ Switch: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch11.SwitchProps & react536.RefAttributes<HTMLButtonElement>>, "ref"> & react536.RefAttributes<unknown>>;
259
+ DatePicker: react536.ForwardRefExoticComponent<Partial<{
159
260
  value?: Date;
160
261
  onChange?: (date: Date | undefined) => void;
161
262
  placeholder?: string;
162
- } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
263
+ } & Omit<_pixpilot_shadcn_ui258.DatePickerProps, "onSelect" | "selected" | "mode">> & react536.RefAttributes<unknown>>;
163
264
  Row: typeof Row;
164
265
  Column: typeof Column;
165
266
  FormGrid: typeof FormGrid;
166
- Separator: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react28.RefAttributes<HTMLDivElement>>, "ref"> & react28.RefAttributes<unknown>>;
267
+ Separator: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator11.SeparatorProps & react536.RefAttributes<HTMLDivElement>>, "ref"> & react536.RefAttributes<unknown>>;
167
268
  ArrayCards: ComposedArrayProps;
168
- ArrayDialog: react28.FC<ArrayComponentProps>;
169
- ArrayCollapse: react28.FC<ArrayComponentProps & {
269
+ ArrayDialog: react536.FC<ArrayComponentProps>;
270
+ ArrayCollapse: react536.FC<ArrayComponentProps & {
170
271
  defaultActiveKey?: Array<string | number>;
171
272
  mode?: "accordion" | "multiple";
172
273
  }>;
173
- ArrayPopover: react28.FC<ArrayComponentProps>;
174
- ObjectContainer: react28.FC<ObjectContainerProps>;
274
+ ArrayPopover: react536.FC<ArrayComponentProps>;
275
+ ObjectContainer: react536.FC<ObjectContainerProps>;
175
276
  }, Component_3, Decorator_3>): JSX.Element;
176
277
  displayName: string;
177
278
  };
178
279
  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_react0.ISchemaTypeFieldProps<{
180
- Combobox: react28.FC;
280
+ <Decorator_4 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "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" | "TagsInputInLine.$$typeof" | "Slider.$$typeof", Component_4 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "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" | "TagsInputInLine.$$typeof" | "Slider.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
281
+ Combobox: react536.FC;
181
282
  TagsInput: typeof TagsInput;
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<{
283
+ TagsInputInLine: react536.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui258.TagsInputProps> & react536.RefAttributes<unknown>>;
284
+ Slider: react536.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui258.SliderProps>, "ref"> & react536.RefAttributes<unknown>>;
285
+ FormItem: react536.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
286
+ children?: react536.ReactNode | undefined;
287
+ }>, "ref"> & react536.RefAttributes<unknown>>;
288
+ Hidden: react536.ForwardRefExoticComponent<Partial<{
188
289
  children?: React.ReactNode;
189
290
  value?: string;
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<{
291
+ }> & react536.RefAttributes<unknown>>;
292
+ Input: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLInputElement> & react536.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react536.RefAttributes<unknown>>;
293
+ Textarea: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLTextAreaElement> & react536.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react536.RefAttributes<unknown>>;
294
+ NumberInput: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLInputElement> & react536.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react536.RefAttributes<unknown>>;
295
+ Checkbox: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox11.CheckboxProps & react536.RefAttributes<HTMLButtonElement>>, "ref"> & react536.RefAttributes<unknown>>;
296
+ Radio: react536.FC;
297
+ Select: react536.FC;
298
+ Switch: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch11.SwitchProps & react536.RefAttributes<HTMLButtonElement>>, "ref"> & react536.RefAttributes<unknown>>;
299
+ DatePicker: react536.ForwardRefExoticComponent<Partial<{
199
300
  value?: Date;
200
301
  onChange?: (date: Date | undefined) => void;
201
302
  placeholder?: string;
202
- } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
303
+ } & Omit<_pixpilot_shadcn_ui258.DatePickerProps, "onSelect" | "selected" | "mode">> & react536.RefAttributes<unknown>>;
203
304
  Row: typeof Row;
204
305
  Column: typeof Column;
205
306
  FormGrid: typeof FormGrid;
206
- Separator: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react28.RefAttributes<HTMLDivElement>>, "ref"> & react28.RefAttributes<unknown>>;
307
+ Separator: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator11.SeparatorProps & react536.RefAttributes<HTMLDivElement>>, "ref"> & react536.RefAttributes<unknown>>;
207
308
  ArrayCards: ComposedArrayProps;
208
- ArrayDialog: react28.FC<ArrayComponentProps>;
209
- ArrayCollapse: react28.FC<ArrayComponentProps & {
309
+ ArrayDialog: react536.FC<ArrayComponentProps>;
310
+ ArrayCollapse: react536.FC<ArrayComponentProps & {
210
311
  defaultActiveKey?: Array<string | number>;
211
312
  mode?: "accordion" | "multiple";
212
313
  }>;
213
- ArrayPopover: react28.FC<ArrayComponentProps>;
214
- ObjectContainer: react28.FC<ObjectContainerProps>;
314
+ ArrayPopover: react536.FC<ArrayComponentProps>;
315
+ ObjectContainer: react536.FC<ObjectContainerProps>;
215
316
  }, Component_4, Decorator_4>): JSX.Element;
216
317
  displayName: string;
217
318
  };
218
319
  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_react0.ISchemaTypeFieldProps<{
220
- Combobox: react28.FC;
320
+ <Decorator_5 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "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" | "TagsInputInLine.$$typeof" | "Slider.$$typeof", Component_5 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "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" | "TagsInputInLine.$$typeof" | "Slider.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
321
+ Combobox: react536.FC;
221
322
  TagsInput: typeof TagsInput;
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<{
323
+ TagsInputInLine: react536.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui258.TagsInputProps> & react536.RefAttributes<unknown>>;
324
+ Slider: react536.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui258.SliderProps>, "ref"> & react536.RefAttributes<unknown>>;
325
+ FormItem: react536.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
326
+ children?: react536.ReactNode | undefined;
327
+ }>, "ref"> & react536.RefAttributes<unknown>>;
328
+ Hidden: react536.ForwardRefExoticComponent<Partial<{
228
329
  children?: React.ReactNode;
229
330
  value?: string;
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<{
331
+ }> & react536.RefAttributes<unknown>>;
332
+ Input: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLInputElement> & react536.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react536.RefAttributes<unknown>>;
333
+ Textarea: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLTextAreaElement> & react536.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react536.RefAttributes<unknown>>;
334
+ NumberInput: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLInputElement> & react536.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react536.RefAttributes<unknown>>;
335
+ Checkbox: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox11.CheckboxProps & react536.RefAttributes<HTMLButtonElement>>, "ref"> & react536.RefAttributes<unknown>>;
336
+ Radio: react536.FC;
337
+ Select: react536.FC;
338
+ Switch: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch11.SwitchProps & react536.RefAttributes<HTMLButtonElement>>, "ref"> & react536.RefAttributes<unknown>>;
339
+ DatePicker: react536.ForwardRefExoticComponent<Partial<{
239
340
  value?: Date;
240
341
  onChange?: (date: Date | undefined) => void;
241
342
  placeholder?: string;
242
- } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
343
+ } & Omit<_pixpilot_shadcn_ui258.DatePickerProps, "onSelect" | "selected" | "mode">> & react536.RefAttributes<unknown>>;
243
344
  Row: typeof Row;
244
345
  Column: typeof Column;
245
346
  FormGrid: typeof FormGrid;
246
- Separator: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react28.RefAttributes<HTMLDivElement>>, "ref"> & react28.RefAttributes<unknown>>;
347
+ Separator: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator11.SeparatorProps & react536.RefAttributes<HTMLDivElement>>, "ref"> & react536.RefAttributes<unknown>>;
247
348
  ArrayCards: ComposedArrayProps;
248
- ArrayDialog: react28.FC<ArrayComponentProps>;
249
- ArrayCollapse: react28.FC<ArrayComponentProps & {
349
+ ArrayDialog: react536.FC<ArrayComponentProps>;
350
+ ArrayCollapse: react536.FC<ArrayComponentProps & {
250
351
  defaultActiveKey?: Array<string | number>;
251
352
  mode?: "accordion" | "multiple";
252
353
  }>;
253
- ArrayPopover: react28.FC<ArrayComponentProps>;
254
- ObjectContainer: react28.FC<ObjectContainerProps>;
354
+ ArrayPopover: react536.FC<ArrayComponentProps>;
355
+ ObjectContainer: react536.FC<ObjectContainerProps>;
255
356
  }, Component_5, Decorator_5>): JSX.Element;
256
357
  displayName: string;
257
358
  };
258
359
  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_react0.ISchemaTypeFieldProps<{
260
- Combobox: react28.FC;
360
+ <Decorator_6 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "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" | "TagsInputInLine.$$typeof" | "Slider.$$typeof", Component_6 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "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" | "TagsInputInLine.$$typeof" | "Slider.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
361
+ Combobox: react536.FC;
261
362
  TagsInput: typeof TagsInput;
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<{
363
+ TagsInputInLine: react536.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui258.TagsInputProps> & react536.RefAttributes<unknown>>;
364
+ Slider: react536.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui258.SliderProps>, "ref"> & react536.RefAttributes<unknown>>;
365
+ FormItem: react536.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
366
+ children?: react536.ReactNode | undefined;
367
+ }>, "ref"> & react536.RefAttributes<unknown>>;
368
+ Hidden: react536.ForwardRefExoticComponent<Partial<{
268
369
  children?: React.ReactNode;
269
370
  value?: string;
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<{
371
+ }> & react536.RefAttributes<unknown>>;
372
+ Input: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLInputElement> & react536.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react536.RefAttributes<unknown>>;
373
+ Textarea: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLTextAreaElement> & react536.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react536.RefAttributes<unknown>>;
374
+ NumberInput: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLInputElement> & react536.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react536.RefAttributes<unknown>>;
375
+ Checkbox: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox11.CheckboxProps & react536.RefAttributes<HTMLButtonElement>>, "ref"> & react536.RefAttributes<unknown>>;
376
+ Radio: react536.FC;
377
+ Select: react536.FC;
378
+ Switch: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch11.SwitchProps & react536.RefAttributes<HTMLButtonElement>>, "ref"> & react536.RefAttributes<unknown>>;
379
+ DatePicker: react536.ForwardRefExoticComponent<Partial<{
279
380
  value?: Date;
280
381
  onChange?: (date: Date | undefined) => void;
281
382
  placeholder?: string;
282
- } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
383
+ } & Omit<_pixpilot_shadcn_ui258.DatePickerProps, "onSelect" | "selected" | "mode">> & react536.RefAttributes<unknown>>;
283
384
  Row: typeof Row;
284
385
  Column: typeof Column;
285
386
  FormGrid: typeof FormGrid;
286
- Separator: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react28.RefAttributes<HTMLDivElement>>, "ref"> & react28.RefAttributes<unknown>>;
387
+ Separator: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator11.SeparatorProps & react536.RefAttributes<HTMLDivElement>>, "ref"> & react536.RefAttributes<unknown>>;
287
388
  ArrayCards: ComposedArrayProps;
288
- ArrayDialog: react28.FC<ArrayComponentProps>;
289
- ArrayCollapse: react28.FC<ArrayComponentProps & {
389
+ ArrayDialog: react536.FC<ArrayComponentProps>;
390
+ ArrayCollapse: react536.FC<ArrayComponentProps & {
290
391
  defaultActiveKey?: Array<string | number>;
291
392
  mode?: "accordion" | "multiple";
292
393
  }>;
293
- ArrayPopover: react28.FC<ArrayComponentProps>;
294
- ObjectContainer: react28.FC<ObjectContainerProps>;
394
+ ArrayPopover: react536.FC<ArrayComponentProps>;
395
+ ObjectContainer: react536.FC<ObjectContainerProps>;
295
396
  }, Component_6, Decorator_6>): JSX.Element;
296
397
  displayName: string;
297
398
  };
298
399
  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_react0.ISchemaTypeFieldProps<{
300
- Combobox: react28.FC;
400
+ <Decorator_7 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "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" | "TagsInputInLine.$$typeof" | "Slider.$$typeof", Component_7 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "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" | "TagsInputInLine.$$typeof" | "Slider.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
401
+ Combobox: react536.FC;
301
402
  TagsInput: typeof TagsInput;
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<{
403
+ TagsInputInLine: react536.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui258.TagsInputProps> & react536.RefAttributes<unknown>>;
404
+ Slider: react536.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui258.SliderProps>, "ref"> & react536.RefAttributes<unknown>>;
405
+ FormItem: react536.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
406
+ children?: react536.ReactNode | undefined;
407
+ }>, "ref"> & react536.RefAttributes<unknown>>;
408
+ Hidden: react536.ForwardRefExoticComponent<Partial<{
308
409
  children?: React.ReactNode;
309
410
  value?: string;
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<{
411
+ }> & react536.RefAttributes<unknown>>;
412
+ Input: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLInputElement> & react536.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react536.RefAttributes<unknown>>;
413
+ Textarea: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLTextAreaElement> & react536.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react536.RefAttributes<unknown>>;
414
+ NumberInput: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLInputElement> & react536.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react536.RefAttributes<unknown>>;
415
+ Checkbox: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox11.CheckboxProps & react536.RefAttributes<HTMLButtonElement>>, "ref"> & react536.RefAttributes<unknown>>;
416
+ Radio: react536.FC;
417
+ Select: react536.FC;
418
+ Switch: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch11.SwitchProps & react536.RefAttributes<HTMLButtonElement>>, "ref"> & react536.RefAttributes<unknown>>;
419
+ DatePicker: react536.ForwardRefExoticComponent<Partial<{
319
420
  value?: Date;
320
421
  onChange?: (date: Date | undefined) => void;
321
422
  placeholder?: string;
322
- } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
423
+ } & Omit<_pixpilot_shadcn_ui258.DatePickerProps, "onSelect" | "selected" | "mode">> & react536.RefAttributes<unknown>>;
323
424
  Row: typeof Row;
324
425
  Column: typeof Column;
325
426
  FormGrid: typeof FormGrid;
326
- Separator: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react28.RefAttributes<HTMLDivElement>>, "ref"> & react28.RefAttributes<unknown>>;
427
+ Separator: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator11.SeparatorProps & react536.RefAttributes<HTMLDivElement>>, "ref"> & react536.RefAttributes<unknown>>;
327
428
  ArrayCards: ComposedArrayProps;
328
- ArrayDialog: react28.FC<ArrayComponentProps>;
329
- ArrayCollapse: react28.FC<ArrayComponentProps & {
429
+ ArrayDialog: react536.FC<ArrayComponentProps>;
430
+ ArrayCollapse: react536.FC<ArrayComponentProps & {
330
431
  defaultActiveKey?: Array<string | number>;
331
432
  mode?: "accordion" | "multiple";
332
433
  }>;
333
- ArrayPopover: react28.FC<ArrayComponentProps>;
334
- ObjectContainer: react28.FC<ObjectContainerProps>;
434
+ ArrayPopover: react536.FC<ArrayComponentProps>;
435
+ ObjectContainer: react536.FC<ObjectContainerProps>;
335
436
  }, Component_7, Decorator_7>): JSX.Element;
336
437
  displayName: string;
337
438
  };
338
439
  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_react0.ISchemaTypeFieldProps<{
340
- Combobox: react28.FC;
440
+ <Decorator_8 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "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" | "TagsInputInLine.$$typeof" | "Slider.$$typeof", Component_8 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "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" | "TagsInputInLine.$$typeof" | "Slider.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
441
+ Combobox: react536.FC;
341
442
  TagsInput: typeof TagsInput;
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<{
443
+ TagsInputInLine: react536.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui258.TagsInputProps> & react536.RefAttributes<unknown>>;
444
+ Slider: react536.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui258.SliderProps>, "ref"> & react536.RefAttributes<unknown>>;
445
+ FormItem: react536.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
446
+ children?: react536.ReactNode | undefined;
447
+ }>, "ref"> & react536.RefAttributes<unknown>>;
448
+ Hidden: react536.ForwardRefExoticComponent<Partial<{
348
449
  children?: React.ReactNode;
349
450
  value?: string;
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<{
451
+ }> & react536.RefAttributes<unknown>>;
452
+ Input: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLInputElement> & react536.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react536.RefAttributes<unknown>>;
453
+ Textarea: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLTextAreaElement> & react536.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react536.RefAttributes<unknown>>;
454
+ NumberInput: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLInputElement> & react536.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react536.RefAttributes<unknown>>;
455
+ Checkbox: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox11.CheckboxProps & react536.RefAttributes<HTMLButtonElement>>, "ref"> & react536.RefAttributes<unknown>>;
456
+ Radio: react536.FC;
457
+ Select: react536.FC;
458
+ Switch: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch11.SwitchProps & react536.RefAttributes<HTMLButtonElement>>, "ref"> & react536.RefAttributes<unknown>>;
459
+ DatePicker: react536.ForwardRefExoticComponent<Partial<{
359
460
  value?: Date;
360
461
  onChange?: (date: Date | undefined) => void;
361
462
  placeholder?: string;
362
- } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
463
+ } & Omit<_pixpilot_shadcn_ui258.DatePickerProps, "onSelect" | "selected" | "mode">> & react536.RefAttributes<unknown>>;
363
464
  Row: typeof Row;
364
465
  Column: typeof Column;
365
466
  FormGrid: typeof FormGrid;
366
- Separator: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react28.RefAttributes<HTMLDivElement>>, "ref"> & react28.RefAttributes<unknown>>;
467
+ Separator: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator11.SeparatorProps & react536.RefAttributes<HTMLDivElement>>, "ref"> & react536.RefAttributes<unknown>>;
367
468
  ArrayCards: ComposedArrayProps;
368
- ArrayDialog: react28.FC<ArrayComponentProps>;
369
- ArrayCollapse: react28.FC<ArrayComponentProps & {
469
+ ArrayDialog: react536.FC<ArrayComponentProps>;
470
+ ArrayCollapse: react536.FC<ArrayComponentProps & {
370
471
  defaultActiveKey?: Array<string | number>;
371
472
  mode?: "accordion" | "multiple";
372
473
  }>;
373
- ArrayPopover: react28.FC<ArrayComponentProps>;
374
- ObjectContainer: react28.FC<ObjectContainerProps>;
474
+ ArrayPopover: react536.FC<ArrayComponentProps>;
475
+ ObjectContainer: react536.FC<ObjectContainerProps>;
375
476
  }, Component_8, Decorator_8>): JSX.Element;
376
477
  displayName: string;
377
478
  };
378
479
  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_react0.ISchemaTypeFieldProps<{
380
- Combobox: react28.FC;
480
+ <Decorator_9 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "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" | "TagsInputInLine.$$typeof" | "Slider.$$typeof", Component_9 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "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" | "TagsInputInLine.$$typeof" | "Slider.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
481
+ Combobox: react536.FC;
381
482
  TagsInput: typeof TagsInput;
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<{
483
+ TagsInputInLine: react536.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui258.TagsInputProps> & react536.RefAttributes<unknown>>;
484
+ Slider: react536.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui258.SliderProps>, "ref"> & react536.RefAttributes<unknown>>;
485
+ FormItem: react536.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
486
+ children?: react536.ReactNode | undefined;
487
+ }>, "ref"> & react536.RefAttributes<unknown>>;
488
+ Hidden: react536.ForwardRefExoticComponent<Partial<{
388
489
  children?: React.ReactNode;
389
490
  value?: string;
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<{
491
+ }> & react536.RefAttributes<unknown>>;
492
+ Input: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLInputElement> & react536.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react536.RefAttributes<unknown>>;
493
+ Textarea: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLTextAreaElement> & react536.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react536.RefAttributes<unknown>>;
494
+ NumberInput: react536.ForwardRefExoticComponent<Omit<Partial<react536.ClassAttributes<HTMLInputElement> & react536.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react536.RefAttributes<unknown>>;
495
+ Checkbox: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox11.CheckboxProps & react536.RefAttributes<HTMLButtonElement>>, "ref"> & react536.RefAttributes<unknown>>;
496
+ Radio: react536.FC;
497
+ Select: react536.FC;
498
+ Switch: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch11.SwitchProps & react536.RefAttributes<HTMLButtonElement>>, "ref"> & react536.RefAttributes<unknown>>;
499
+ DatePicker: react536.ForwardRefExoticComponent<Partial<{
399
500
  value?: Date;
400
501
  onChange?: (date: Date | undefined) => void;
401
502
  placeholder?: string;
402
- } & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react28.RefAttributes<unknown>>;
503
+ } & Omit<_pixpilot_shadcn_ui258.DatePickerProps, "onSelect" | "selected" | "mode">> & react536.RefAttributes<unknown>>;
403
504
  Row: typeof Row;
404
505
  Column: typeof Column;
405
506
  FormGrid: typeof FormGrid;
406
- Separator: react28.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator0.SeparatorProps & react28.RefAttributes<HTMLDivElement>>, "ref"> & react28.RefAttributes<unknown>>;
507
+ Separator: react536.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator11.SeparatorProps & react536.RefAttributes<HTMLDivElement>>, "ref"> & react536.RefAttributes<unknown>>;
407
508
  ArrayCards: ComposedArrayProps;
408
- ArrayDialog: react28.FC<ArrayComponentProps>;
409
- ArrayCollapse: react28.FC<ArrayComponentProps & {
509
+ ArrayDialog: react536.FC<ArrayComponentProps>;
510
+ ArrayCollapse: react536.FC<ArrayComponentProps & {
410
511
  defaultActiveKey?: Array<string | number>;
411
512
  mode?: "accordion" | "multiple";
412
513
  }>;
413
- ArrayPopover: react28.FC<ArrayComponentProps>;
414
- ObjectContainer: react28.FC<ObjectContainerProps>;
514
+ ArrayPopover: react536.FC<ArrayComponentProps>;
515
+ ObjectContainer: react536.FC<ObjectContainerProps>;
415
516
  }, Component_9, Decorator_9>): JSX.Element;
416
517
  displayName: string;
417
518
  };
418
519
  };
419
520
  //#endregion
420
- export { SchemaField, schemaFieldComponents };
521
+ export { SchemaField, defaultComponentRegistry, defaultComponents };