@pixpilot/formily-shadcn 1.15.2 → 1.17.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 (78) hide show
  1. package/dist/components/date-picker/DatePicker.d.cts +3 -3
  2. package/dist/components/date-picker/DatePicker.d.ts +3 -3
  3. package/dist/components/dialog-item/BaseDialogItem.cjs +114 -0
  4. package/dist/components/dialog-item/BaseDialogItem.d.cts +56 -0
  5. package/dist/components/dialog-item/BaseDialogItem.d.ts +56 -0
  6. package/dist/components/dialog-item/BaseDialogItem.js +109 -0
  7. package/dist/components/dialog-item/ConnectedDialogItem.cjs +16 -0
  8. package/dist/components/dialog-item/ConnectedDialogItem.d.cts +15 -0
  9. package/dist/components/dialog-item/ConnectedDialogItem.d.ts +15 -0
  10. package/dist/components/dialog-item/ConnectedDialogItem.js +14 -0
  11. package/dist/components/dialog-item/index.cjs +2 -0
  12. package/dist/components/dialog-item/index.d.cts +2 -0
  13. package/dist/components/dialog-item/index.d.ts +2 -0
  14. package/dist/components/dialog-item/index.js +2 -0
  15. package/dist/components/dialog-item/mcp.js +127 -0
  16. package/dist/components/form/Form.d.cts +2 -2
  17. package/dist/components/form/Form.d.ts +2 -2
  18. package/dist/components/form-grid/FormGrid.d.cts +2 -2
  19. package/dist/components/form-grid/FormGrid.d.ts +2 -2
  20. package/dist/components/form-item/ConnectedFormItem.cjs +2 -34
  21. package/dist/components/form-item/ConnectedFormItem.d.cts +4 -4
  22. package/dist/components/form-item/ConnectedFormItem.d.ts +4 -4
  23. package/dist/components/form-item/ConnectedFormItem.js +3 -34
  24. package/dist/components/form-item/map-form-item-props.cjs +50 -0
  25. package/dist/components/form-item/map-form-item-props.js +47 -0
  26. package/dist/components/object-container/ObjectContainer.cjs +1 -1
  27. package/dist/components/object-container/ObjectContainer.js +1 -1
  28. package/dist/components/overlay-common/OverlayFields.cjs +26 -0
  29. package/dist/components/overlay-common/OverlayFields.d.cts +1 -0
  30. package/dist/components/overlay-common/OverlayFields.d.ts +1 -0
  31. package/dist/components/overlay-common/OverlayFields.js +24 -0
  32. package/dist/components/overlay-common/OverlayTrigger.cjs +27 -0
  33. package/dist/components/overlay-common/OverlayTrigger.d.cts +15 -0
  34. package/dist/components/overlay-common/OverlayTrigger.d.ts +15 -0
  35. package/dist/components/overlay-common/OverlayTrigger.js +23 -0
  36. package/dist/components/overlay-common/constants.cjs +10 -0
  37. package/dist/components/overlay-common/constants.js +9 -0
  38. package/dist/components/overlay-common/index.cjs +5 -0
  39. package/dist/components/overlay-common/index.d.cts +4 -0
  40. package/dist/components/overlay-common/index.d.ts +4 -0
  41. package/dist/components/overlay-common/index.js +5 -0
  42. package/dist/components/overlay-common/is-empty-field-value.cjs +23 -0
  43. package/dist/components/overlay-common/is-empty-field-value.js +22 -0
  44. package/dist/components/overlay-common/overlay-types.d.cts +27 -0
  45. package/dist/components/overlay-common/overlay-types.d.ts +27 -0
  46. package/dist/components/overlay-common/use-overlay.cjs +110 -0
  47. package/dist/components/overlay-common/use-overlay.d.cts +1 -0
  48. package/dist/components/overlay-common/use-overlay.d.ts +1 -0
  49. package/dist/components/overlay-common/use-overlay.js +107 -0
  50. package/dist/components/popover-item/BasePopoverItem.cjs +108 -0
  51. package/dist/components/popover-item/BasePopoverItem.d.cts +57 -0
  52. package/dist/components/popover-item/BasePopoverItem.d.ts +57 -0
  53. package/dist/components/popover-item/BasePopoverItem.js +104 -0
  54. package/dist/components/popover-item/ConnectedPopoverItem.cjs +16 -0
  55. package/dist/components/popover-item/ConnectedPopoverItem.d.cts +15 -0
  56. package/dist/components/popover-item/ConnectedPopoverItem.d.ts +15 -0
  57. package/dist/components/popover-item/ConnectedPopoverItem.js +14 -0
  58. package/dist/components/popover-item/index.cjs +2 -0
  59. package/dist/components/popover-item/index.d.cts +2 -0
  60. package/dist/components/popover-item/index.d.ts +2 -0
  61. package/dist/components/popover-item/index.js +2 -0
  62. package/dist/components/popover-item/mcp.js +127 -0
  63. package/dist/components/radio/Radio.d.ts +2 -2
  64. package/dist/components/row/Row.d.ts +2 -2
  65. package/dist/components/schema-field/schema-field-basics.cjs +8 -2
  66. package/dist/components/schema-field/schema-field-basics.d.cts +337 -263
  67. package/dist/components/schema-field/schema-field-basics.d.ts +344 -270
  68. package/dist/components/schema-field/schema-field-basics.js +8 -2
  69. package/dist/components/schema-field/schema-field-extended.d.cts +497 -423
  70. package/dist/components/schema-field/schema-field-extended.d.ts +498 -424
  71. package/dist/components/schema-field/schema-field.d.cts +431 -357
  72. package/dist/components/schema-field/schema-field.d.ts +431 -357
  73. package/dist/generated/mcp-registry.js +56 -52
  74. package/dist/index.cjs +12 -2
  75. package/dist/index.d.cts +7 -1
  76. package/dist/index.d.ts +7 -1
  77. package/dist/index.js +9 -3
  78. package/package.json +5 -5
@@ -8,11 +8,15 @@ import { Column } from "../column/Column.cjs";
8
8
  import "../column/index.cjs";
9
9
  import { FormItemProps } from "../form-item/form-item-types.cjs";
10
10
  import "../form-item/index.cjs";
11
+ import { DialogItemProps } from "../dialog-item/BaseDialogItem.cjs";
12
+ import "../dialog-item/index.cjs";
11
13
  import { FormGrid } from "../form-grid/FormGrid.cjs";
12
14
  import "../form-grid/index.cjs";
13
15
  import { JsonSchemaFormComponents } from "../json-schema-form-renderer/types.cjs";
14
16
  import "../json-schema-form-renderer/index.cjs";
15
17
  import { ObjectContainerProps } from "../object-container/ObjectContainer.cjs";
18
+ import { PopoverItemProps } from "../popover-item/BasePopoverItem.cjs";
19
+ import "../popover-item/index.cjs";
16
20
  import { RadioProps } from "../radio/Radio.cjs";
17
21
  import "../radio/index.cjs";
18
22
  import { Row } from "../row/Row.cjs";
@@ -23,44 +27,44 @@ import { HiddenProps } from "../hidden/Hidden.cjs";
23
27
  import "../hidden/index.cjs";
24
28
  import { SelectProps as SelectProps$1 } from "../select/Select.cjs";
25
29
  import "../select/index.cjs";
26
- import * as _formily_react35 from "@formily/react";
30
+ import * as _formily_react1 from "@formily/react";
27
31
  import { ISchema } from "@formily/react";
28
- import * as react485 from "react";
32
+ import * as react7 from "react";
29
33
  import * as _formily_core0 from "@formily/core";
30
- import * as _pixpilot_shadcn_ui186 from "@pixpilot/shadcn-ui";
34
+ import * as _pixpilot_shadcn_ui0 from "@pixpilot/shadcn-ui";
31
35
  import { TagsInput } from "@pixpilot/shadcn-ui";
32
- import * as _radix_ui_react_checkbox10 from "@radix-ui/react-checkbox";
33
- import * as _radix_ui_react_separator10 from "@radix-ui/react-separator";
34
- import * as _radix_ui_react_switch10 from "@radix-ui/react-switch";
36
+ import * as _radix_ui_react_checkbox0 from "@radix-ui/react-checkbox";
37
+ import * as _radix_ui_react_separator0 from "@radix-ui/react-separator";
38
+ import * as _radix_ui_react_switch0 from "@radix-ui/react-switch";
35
39
 
36
40
  //#region src/components/schema-field/schema-field.d.ts
37
41
  declare const defaultComponentRegistry: {
38
42
  ColorPicker: {
39
- component: react485.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui186.ColorPickerProps>, "ref"> & react485.RefAttributes<unknown>>;
43
+ component: react7.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react7.RefAttributes<unknown>>;
40
44
  decorator: string;
41
45
  };
42
46
  Combobox: {
43
- component: react485.FC<_pixpilot_shadcn_ui186.ComboboxProps>;
47
+ component: react7.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
44
48
  decorator: string;
45
49
  };
46
50
  ColorSelect: {
47
- component: react485.FC<_pixpilot_shadcn_ui186.ColorSelectProps>;
51
+ component: react7.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
48
52
  decorator: string;
49
53
  };
50
54
  Rating: {
51
- component: react485.FC<_pixpilot_shadcn_ui186.RatingProps>;
55
+ component: react7.FC<_pixpilot_shadcn_ui0.RatingProps>;
52
56
  decorator: string;
53
57
  };
54
58
  Slider: {
55
- component: react485.FC<_pixpilot_shadcn_ui186.SliderProps>;
59
+ component: react7.FC<_pixpilot_shadcn_ui0.SliderProps>;
56
60
  decorator: string;
57
61
  };
58
62
  SliderInput: {
59
- component: react485.FC<_pixpilot_shadcn_ui186.SliderInputProps>;
63
+ component: react7.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
60
64
  decorator: string;
61
65
  };
62
66
  SliderSelect: {
63
- component: react485.FC<_pixpilot_shadcn_ui186.SliderSelectProps>;
67
+ component: react7.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
64
68
  decorator: string;
65
69
  };
66
70
  TagsInput: {
@@ -68,7 +72,7 @@ declare const defaultComponentRegistry: {
68
72
  decorator: string;
69
73
  };
70
74
  TagsInputInLine: {
71
- component: react485.FC<_pixpilot_shadcn_ui186.TagsInputProps>;
75
+ component: react7.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
72
76
  decorator: string;
73
77
  };
74
78
  ArrayCards: {
@@ -76,7 +80,7 @@ declare const defaultComponentRegistry: {
76
80
  decorator: string;
77
81
  };
78
82
  ArrayCollapse: {
79
- component: react485.FC<ArrayComponentProps & {
83
+ component: react7.FC<ArrayComponentProps & {
80
84
  defaultActiveKey?: Array<string | number>;
81
85
  mode?: "accordion" | "multiple";
82
86
  collapseProps?: React.HTMLAttributes<HTMLDivElement>;
@@ -84,7 +88,7 @@ declare const defaultComponentRegistry: {
84
88
  decorator: string;
85
89
  };
86
90
  ArrayDialog: {
87
- component: react485.FC<ArrayComponentProps & {
91
+ component: react7.FC<ArrayComponentProps & {
88
92
  dialogProps?: React.HTMLAttributes<HTMLDivElement>;
89
93
  }>;
90
94
  decorator: string;
@@ -94,619 +98,689 @@ declare const defaultComponentRegistry: {
94
98
  decorator: string;
95
99
  };
96
100
  ArrayPopover: {
97
- component: react485.FC<ArrayComponentProps & {
101
+ component: react7.FC<ArrayComponentProps & {
98
102
  popoverProps?: React.HTMLAttributes<HTMLDivElement>;
99
103
  }>;
100
104
  decorator: string;
101
105
  };
102
106
  ArrayTags: {
103
- component: react485.MemoExoticComponent<_formily_react35.ReactFC<ArrayTagsProps>>;
107
+ component: react7.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
104
108
  decorator: string;
105
109
  };
106
110
  ArrayToggleGroup: {
107
- component: react485.MemoExoticComponent<_formily_react35.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
111
+ component: react7.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
108
112
  decorator: string;
109
113
  };
110
114
  ToggleGroup: {
111
- component: react485.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react485.RefAttributes<unknown>>;
115
+ component: react7.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react7.RefAttributes<unknown>>;
112
116
  decorator: string;
113
117
  };
114
118
  Checkbox: {
115
- component: react485.FC<_radix_ui_react_checkbox10.CheckboxProps & react485.RefAttributes<HTMLButtonElement>>;
119
+ component: react7.FC<_radix_ui_react_checkbox0.CheckboxProps & react7.RefAttributes<HTMLButtonElement>>;
116
120
  decorator: string;
117
121
  };
118
122
  Column: {
119
123
  component: typeof Column;
120
124
  };
121
125
  DatePicker: {
122
- component: react485.ForwardRefExoticComponent<Partial<{
126
+ component: react7.ForwardRefExoticComponent<Partial<{
123
127
  value?: Date;
124
128
  onChange?: (date: Date | undefined) => void;
125
129
  placeholder?: string;
126
- } & Omit<_pixpilot_shadcn_ui186.DatePickerProps, "onSelect" | "selected" | "mode">> & react485.RefAttributes<unknown>>;
130
+ } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react7.RefAttributes<unknown>>;
127
131
  decorator: string;
128
132
  };
133
+ DialogItem: {
134
+ component: react7.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
135
+ children?: react7.ReactNode | undefined;
136
+ }>, "ref"> & react7.RefAttributes<unknown>>;
137
+ };
138
+ PopoverItem: {
139
+ component: react7.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
140
+ children?: react7.ReactNode | undefined;
141
+ }>, "ref"> & react7.RefAttributes<unknown>>;
142
+ };
129
143
  FormGrid: {
130
144
  component: typeof FormGrid;
131
145
  };
132
146
  FormItem: {
133
- component: react485.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
134
- children?: react485.ReactNode | undefined;
135
- }>, "ref"> & react485.RefAttributes<unknown>>;
147
+ component: react7.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
148
+ children?: react7.ReactNode | undefined;
149
+ }>, "ref"> & react7.RefAttributes<unknown>>;
136
150
  };
137
151
  Hidden: {
138
- component: react485.ForwardRefExoticComponent<Partial<HiddenProps> & react485.RefAttributes<unknown>>;
152
+ component: react7.ForwardRefExoticComponent<Partial<HiddenProps> & react7.RefAttributes<unknown>>;
139
153
  };
140
154
  IconToggle: {
141
- component: react485.FC<_pixpilot_shadcn_ui186.IconToggleProps>;
155
+ component: react7.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
142
156
  decorator: string;
143
157
  };
144
158
  ToggleButton: {
145
- component: react485.FC<_pixpilot_shadcn_ui186.ToggleButtonProps>;
159
+ component: react7.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
146
160
  decorator: string;
147
161
  };
148
162
  Input: {
149
- component: react485.FC<_pixpilot_shadcn_ui186.InputProps>;
163
+ component: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
150
164
  decorator: string;
151
165
  };
152
166
  NumberInput: {
153
- component: react485.FC<_pixpilot_shadcn_ui186.InputProps>;
167
+ component: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
154
168
  decorator: string;
155
169
  };
156
170
  ObjectContainer: {
157
- component: react485.FC<ObjectContainerProps>;
171
+ component: react7.FC<ObjectContainerProps>;
158
172
  decorator: string;
159
173
  };
160
174
  Radio: {
161
- component: react485.FC<RadioProps>;
175
+ component: react7.FC<RadioProps>;
162
176
  decorator: string;
163
177
  };
164
178
  Row: {
165
179
  component: typeof Row;
166
180
  };
167
181
  Select: {
168
- component: react485.FC<SelectProps$1>;
182
+ component: react7.FC<SelectProps$1>;
169
183
  decorator: string;
170
184
  };
171
185
  Separator: {
172
- component: react485.FC<_radix_ui_react_separator10.SeparatorProps & react485.RefAttributes<HTMLDivElement>>;
186
+ component: react7.FC<_radix_ui_react_separator0.SeparatorProps & react7.RefAttributes<HTMLDivElement>>;
173
187
  };
174
188
  Switch: {
175
- component: react485.FC<_radix_ui_react_switch10.SwitchProps & react485.RefAttributes<HTMLButtonElement>>;
189
+ component: react7.FC<_radix_ui_react_switch0.SwitchProps & react7.RefAttributes<HTMLButtonElement>>;
176
190
  decorator: string;
177
191
  };
178
192
  Textarea: {
179
- component: react485.FC<react485.ClassAttributes<HTMLTextAreaElement> & react485.TextareaHTMLAttributes<HTMLTextAreaElement>>;
193
+ component: react7.FC<react7.ClassAttributes<HTMLTextAreaElement> & react7.TextareaHTMLAttributes<HTMLTextAreaElement>>;
180
194
  decorator: string;
181
195
  };
182
196
  };
183
197
  declare const defaultComponents: {
184
- ColorPicker: react485.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui186.ColorPickerProps>, "ref"> & react485.RefAttributes<unknown>>;
185
- Combobox: react485.FC<_pixpilot_shadcn_ui186.ComboboxProps>;
186
- ColorSelect: react485.FC<_pixpilot_shadcn_ui186.ColorSelectProps>;
187
- Rating: react485.FC<_pixpilot_shadcn_ui186.RatingProps>;
188
- Slider: react485.FC<_pixpilot_shadcn_ui186.SliderProps>;
189
- SliderInput: react485.FC<_pixpilot_shadcn_ui186.SliderInputProps>;
190
- SliderSelect: react485.FC<_pixpilot_shadcn_ui186.SliderSelectProps>;
198
+ ColorPicker: react7.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react7.RefAttributes<unknown>>;
199
+ Combobox: react7.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
200
+ ColorSelect: react7.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
201
+ Rating: react7.FC<_pixpilot_shadcn_ui0.RatingProps>;
202
+ Slider: react7.FC<_pixpilot_shadcn_ui0.SliderProps>;
203
+ SliderInput: react7.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
204
+ SliderSelect: react7.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
191
205
  TagsInput: typeof TagsInput;
192
- TagsInputInLine: react485.FC<_pixpilot_shadcn_ui186.TagsInputProps>;
206
+ TagsInputInLine: react7.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
193
207
  ArrayCards: ComposedArrayProps;
194
- ArrayCollapse: react485.FC<ArrayComponentProps & {
208
+ ArrayCollapse: react7.FC<ArrayComponentProps & {
195
209
  defaultActiveKey?: Array<string | number>;
196
210
  mode?: "accordion" | "multiple";
197
211
  collapseProps?: React.HTMLAttributes<HTMLDivElement>;
198
212
  }>;
199
- ArrayDialog: react485.FC<ArrayComponentProps & {
213
+ ArrayDialog: react7.FC<ArrayComponentProps & {
200
214
  dialogProps?: React.HTMLAttributes<HTMLDivElement>;
201
215
  }>;
202
216
  ArrayInline: ComposedArrayProps;
203
- ArrayPopover: react485.FC<ArrayComponentProps & {
217
+ ArrayPopover: react7.FC<ArrayComponentProps & {
204
218
  popoverProps?: React.HTMLAttributes<HTMLDivElement>;
205
219
  }>;
206
- ArrayTags: react485.MemoExoticComponent<_formily_react35.ReactFC<ArrayTagsProps>>;
207
- ArrayToggleGroup: react485.MemoExoticComponent<_formily_react35.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
208
- ToggleGroup: react485.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react485.RefAttributes<unknown>>;
209
- Checkbox: react485.FC<_radix_ui_react_checkbox10.CheckboxProps & react485.RefAttributes<HTMLButtonElement>>;
220
+ ArrayTags: react7.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
221
+ ArrayToggleGroup: react7.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
222
+ ToggleGroup: react7.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react7.RefAttributes<unknown>>;
223
+ Checkbox: react7.FC<_radix_ui_react_checkbox0.CheckboxProps & react7.RefAttributes<HTMLButtonElement>>;
210
224
  Column: typeof Column;
211
- DatePicker: react485.ForwardRefExoticComponent<Partial<{
225
+ DatePicker: react7.ForwardRefExoticComponent<Partial<{
212
226
  value?: Date;
213
227
  onChange?: (date: Date | undefined) => void;
214
228
  placeholder?: string;
215
- } & Omit<_pixpilot_shadcn_ui186.DatePickerProps, "onSelect" | "selected" | "mode">> & react485.RefAttributes<unknown>>;
229
+ } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react7.RefAttributes<unknown>>;
230
+ DialogItem: react7.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
231
+ children?: react7.ReactNode | undefined;
232
+ }>, "ref"> & react7.RefAttributes<unknown>>;
233
+ PopoverItem: react7.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
234
+ children?: react7.ReactNode | undefined;
235
+ }>, "ref"> & react7.RefAttributes<unknown>>;
216
236
  FormGrid: typeof FormGrid;
217
- FormItem: react485.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
218
- children?: react485.ReactNode | undefined;
219
- }>, "ref"> & react485.RefAttributes<unknown>>;
220
- Hidden: react485.ForwardRefExoticComponent<Partial<HiddenProps> & react485.RefAttributes<unknown>>;
221
- IconToggle: react485.FC<_pixpilot_shadcn_ui186.IconToggleProps>;
222
- ToggleButton: react485.FC<_pixpilot_shadcn_ui186.ToggleButtonProps>;
223
- Input: react485.FC<_pixpilot_shadcn_ui186.InputProps>;
224
- NumberInput: react485.FC<_pixpilot_shadcn_ui186.InputProps>;
225
- ObjectContainer: react485.FC<ObjectContainerProps>;
226
- Radio: react485.FC<RadioProps>;
237
+ FormItem: react7.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
238
+ children?: react7.ReactNode | undefined;
239
+ }>, "ref"> & react7.RefAttributes<unknown>>;
240
+ Hidden: react7.ForwardRefExoticComponent<Partial<HiddenProps> & react7.RefAttributes<unknown>>;
241
+ IconToggle: react7.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
242
+ ToggleButton: react7.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
243
+ Input: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
244
+ NumberInput: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
245
+ ObjectContainer: react7.FC<ObjectContainerProps>;
246
+ Radio: react7.FC<RadioProps>;
227
247
  Row: typeof Row;
228
- Select: react485.FC<SelectProps$1>;
229
- Separator: react485.FC<_radix_ui_react_separator10.SeparatorProps & react485.RefAttributes<HTMLDivElement>>;
230
- Switch: react485.FC<_radix_ui_react_switch10.SwitchProps & react485.RefAttributes<HTMLButtonElement>>;
231
- Textarea: react485.FC<react485.ClassAttributes<HTMLTextAreaElement> & react485.TextareaHTMLAttributes<HTMLTextAreaElement>>;
248
+ Select: react7.FC<SelectProps$1>;
249
+ Separator: react7.FC<_radix_ui_react_separator0.SeparatorProps & react7.RefAttributes<HTMLDivElement>>;
250
+ Switch: react7.FC<_radix_ui_react_switch0.SwitchProps & react7.RefAttributes<HTMLButtonElement>>;
251
+ Textarea: react7.FC<react7.ClassAttributes<HTMLTextAreaElement> & react7.TextareaHTMLAttributes<HTMLTextAreaElement>>;
232
252
  };
233
253
  declare const SchemaField: {
234
- <Decorator extends _formily_react35.JSXComponent, Component extends _formily_react35.JSXComponent>(props: _formily_react35.ISchemaFieldProps<Decorator, Component, _formily_core0.ObjectField<Decorator, Component>>): JSX.Element;
254
+ <Decorator extends _formily_react1.JSXComponent, Component extends _formily_react1.JSXComponent>(props: _formily_react1.ISchemaFieldProps<Decorator, Component, _formily_core0.ObjectField<Decorator, Component>>): JSX.Element;
235
255
  displayName: string;
236
256
  Markup: {
237
- <Decorator_1 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_1 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react35.ISchemaMarkupFieldProps<{
238
- ColorPicker: react485.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui186.ColorPickerProps>, "ref"> & react485.RefAttributes<unknown>>;
239
- Combobox: react485.FC<_pixpilot_shadcn_ui186.ComboboxProps>;
240
- ColorSelect: react485.FC<_pixpilot_shadcn_ui186.ColorSelectProps>;
241
- Rating: react485.FC<_pixpilot_shadcn_ui186.RatingProps>;
242
- Slider: react485.FC<_pixpilot_shadcn_ui186.SliderProps>;
243
- SliderInput: react485.FC<_pixpilot_shadcn_ui186.SliderInputProps>;
244
- SliderSelect: react485.FC<_pixpilot_shadcn_ui186.SliderSelectProps>;
257
+ <Decorator_1 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_1 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react1.ISchemaMarkupFieldProps<{
258
+ ColorPicker: react7.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react7.RefAttributes<unknown>>;
259
+ Combobox: react7.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
260
+ ColorSelect: react7.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
261
+ Rating: react7.FC<_pixpilot_shadcn_ui0.RatingProps>;
262
+ Slider: react7.FC<_pixpilot_shadcn_ui0.SliderProps>;
263
+ SliderInput: react7.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
264
+ SliderSelect: react7.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
245
265
  TagsInput: typeof TagsInput;
246
- TagsInputInLine: react485.FC<_pixpilot_shadcn_ui186.TagsInputProps>;
266
+ TagsInputInLine: react7.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
247
267
  ArrayCards: ComposedArrayProps;
248
- ArrayCollapse: react485.FC<ArrayComponentProps & {
268
+ ArrayCollapse: react7.FC<ArrayComponentProps & {
249
269
  defaultActiveKey?: Array<string | number>;
250
270
  mode?: "accordion" | "multiple";
251
271
  collapseProps?: React.HTMLAttributes<HTMLDivElement>;
252
272
  }>;
253
- ArrayDialog: react485.FC<ArrayComponentProps & {
273
+ ArrayDialog: react7.FC<ArrayComponentProps & {
254
274
  dialogProps?: React.HTMLAttributes<HTMLDivElement>;
255
275
  }>;
256
276
  ArrayInline: ComposedArrayProps;
257
- ArrayPopover: react485.FC<ArrayComponentProps & {
277
+ ArrayPopover: react7.FC<ArrayComponentProps & {
258
278
  popoverProps?: React.HTMLAttributes<HTMLDivElement>;
259
279
  }>;
260
- ArrayTags: react485.MemoExoticComponent<_formily_react35.ReactFC<ArrayTagsProps>>;
261
- ArrayToggleGroup: react485.MemoExoticComponent<_formily_react35.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
262
- ToggleGroup: react485.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react485.RefAttributes<unknown>>;
263
- Checkbox: react485.FC<_radix_ui_react_checkbox10.CheckboxProps & react485.RefAttributes<HTMLButtonElement>>;
280
+ ArrayTags: react7.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
281
+ ArrayToggleGroup: react7.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
282
+ ToggleGroup: react7.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react7.RefAttributes<unknown>>;
283
+ Checkbox: react7.FC<_radix_ui_react_checkbox0.CheckboxProps & react7.RefAttributes<HTMLButtonElement>>;
264
284
  Column: typeof Column;
265
- DatePicker: react485.ForwardRefExoticComponent<Partial<{
285
+ DatePicker: react7.ForwardRefExoticComponent<Partial<{
266
286
  value?: Date;
267
287
  onChange?: (date: Date | undefined) => void;
268
288
  placeholder?: string;
269
- } & Omit<_pixpilot_shadcn_ui186.DatePickerProps, "onSelect" | "selected" | "mode">> & react485.RefAttributes<unknown>>;
289
+ } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react7.RefAttributes<unknown>>;
290
+ DialogItem: react7.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
291
+ children?: react7.ReactNode | undefined;
292
+ }>, "ref"> & react7.RefAttributes<unknown>>;
293
+ PopoverItem: react7.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
294
+ children?: react7.ReactNode | undefined;
295
+ }>, "ref"> & react7.RefAttributes<unknown>>;
270
296
  FormGrid: typeof FormGrid;
271
- FormItem: react485.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
272
- children?: react485.ReactNode | undefined;
273
- }>, "ref"> & react485.RefAttributes<unknown>>;
274
- Hidden: react485.ForwardRefExoticComponent<Partial<HiddenProps> & react485.RefAttributes<unknown>>;
275
- IconToggle: react485.FC<_pixpilot_shadcn_ui186.IconToggleProps>;
276
- ToggleButton: react485.FC<_pixpilot_shadcn_ui186.ToggleButtonProps>;
277
- Input: react485.FC<_pixpilot_shadcn_ui186.InputProps>;
278
- NumberInput: react485.FC<_pixpilot_shadcn_ui186.InputProps>;
279
- ObjectContainer: react485.FC<ObjectContainerProps>;
280
- Radio: react485.FC<RadioProps>;
297
+ FormItem: react7.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
298
+ children?: react7.ReactNode | undefined;
299
+ }>, "ref"> & react7.RefAttributes<unknown>>;
300
+ Hidden: react7.ForwardRefExoticComponent<Partial<HiddenProps> & react7.RefAttributes<unknown>>;
301
+ IconToggle: react7.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
302
+ ToggleButton: react7.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
303
+ Input: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
304
+ NumberInput: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
305
+ ObjectContainer: react7.FC<ObjectContainerProps>;
306
+ Radio: react7.FC<RadioProps>;
281
307
  Row: typeof Row;
282
- Select: react485.FC<SelectProps$1>;
283
- Separator: react485.FC<_radix_ui_react_separator10.SeparatorProps & react485.RefAttributes<HTMLDivElement>>;
284
- Switch: react485.FC<_radix_ui_react_switch10.SwitchProps & react485.RefAttributes<HTMLButtonElement>>;
285
- Textarea: react485.FC<react485.ClassAttributes<HTMLTextAreaElement> & react485.TextareaHTMLAttributes<HTMLTextAreaElement>>;
308
+ Select: react7.FC<SelectProps$1>;
309
+ Separator: react7.FC<_radix_ui_react_separator0.SeparatorProps & react7.RefAttributes<HTMLDivElement>>;
310
+ Switch: react7.FC<_radix_ui_react_switch0.SwitchProps & react7.RefAttributes<HTMLButtonElement>>;
311
+ Textarea: react7.FC<react7.ClassAttributes<HTMLTextAreaElement> & react7.TextareaHTMLAttributes<HTMLTextAreaElement>>;
286
312
  }, Component_1, Decorator_1>): JSX.Element;
287
313
  displayName: string;
288
314
  };
289
315
  String: {
290
- <Decorator_2 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_2 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react35.ISchemaTypeFieldProps<{
291
- ColorPicker: react485.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui186.ColorPickerProps>, "ref"> & react485.RefAttributes<unknown>>;
292
- Combobox: react485.FC<_pixpilot_shadcn_ui186.ComboboxProps>;
293
- ColorSelect: react485.FC<_pixpilot_shadcn_ui186.ColorSelectProps>;
294
- Rating: react485.FC<_pixpilot_shadcn_ui186.RatingProps>;
295
- Slider: react485.FC<_pixpilot_shadcn_ui186.SliderProps>;
296
- SliderInput: react485.FC<_pixpilot_shadcn_ui186.SliderInputProps>;
297
- SliderSelect: react485.FC<_pixpilot_shadcn_ui186.SliderSelectProps>;
316
+ <Decorator_2 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_2 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
317
+ ColorPicker: react7.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react7.RefAttributes<unknown>>;
318
+ Combobox: react7.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
319
+ ColorSelect: react7.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
320
+ Rating: react7.FC<_pixpilot_shadcn_ui0.RatingProps>;
321
+ Slider: react7.FC<_pixpilot_shadcn_ui0.SliderProps>;
322
+ SliderInput: react7.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
323
+ SliderSelect: react7.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
298
324
  TagsInput: typeof TagsInput;
299
- TagsInputInLine: react485.FC<_pixpilot_shadcn_ui186.TagsInputProps>;
325
+ TagsInputInLine: react7.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
300
326
  ArrayCards: ComposedArrayProps;
301
- ArrayCollapse: react485.FC<ArrayComponentProps & {
327
+ ArrayCollapse: react7.FC<ArrayComponentProps & {
302
328
  defaultActiveKey?: Array<string | number>;
303
329
  mode?: "accordion" | "multiple";
304
330
  collapseProps?: React.HTMLAttributes<HTMLDivElement>;
305
331
  }>;
306
- ArrayDialog: react485.FC<ArrayComponentProps & {
332
+ ArrayDialog: react7.FC<ArrayComponentProps & {
307
333
  dialogProps?: React.HTMLAttributes<HTMLDivElement>;
308
334
  }>;
309
335
  ArrayInline: ComposedArrayProps;
310
- ArrayPopover: react485.FC<ArrayComponentProps & {
336
+ ArrayPopover: react7.FC<ArrayComponentProps & {
311
337
  popoverProps?: React.HTMLAttributes<HTMLDivElement>;
312
338
  }>;
313
- ArrayTags: react485.MemoExoticComponent<_formily_react35.ReactFC<ArrayTagsProps>>;
314
- ArrayToggleGroup: react485.MemoExoticComponent<_formily_react35.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
315
- ToggleGroup: react485.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react485.RefAttributes<unknown>>;
316
- Checkbox: react485.FC<_radix_ui_react_checkbox10.CheckboxProps & react485.RefAttributes<HTMLButtonElement>>;
339
+ ArrayTags: react7.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
340
+ ArrayToggleGroup: react7.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
341
+ ToggleGroup: react7.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react7.RefAttributes<unknown>>;
342
+ Checkbox: react7.FC<_radix_ui_react_checkbox0.CheckboxProps & react7.RefAttributes<HTMLButtonElement>>;
317
343
  Column: typeof Column;
318
- DatePicker: react485.ForwardRefExoticComponent<Partial<{
344
+ DatePicker: react7.ForwardRefExoticComponent<Partial<{
319
345
  value?: Date;
320
346
  onChange?: (date: Date | undefined) => void;
321
347
  placeholder?: string;
322
- } & Omit<_pixpilot_shadcn_ui186.DatePickerProps, "onSelect" | "selected" | "mode">> & react485.RefAttributes<unknown>>;
348
+ } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react7.RefAttributes<unknown>>;
349
+ DialogItem: react7.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
350
+ children?: react7.ReactNode | undefined;
351
+ }>, "ref"> & react7.RefAttributes<unknown>>;
352
+ PopoverItem: react7.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
353
+ children?: react7.ReactNode | undefined;
354
+ }>, "ref"> & react7.RefAttributes<unknown>>;
323
355
  FormGrid: typeof FormGrid;
324
- FormItem: react485.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
325
- children?: react485.ReactNode | undefined;
326
- }>, "ref"> & react485.RefAttributes<unknown>>;
327
- Hidden: react485.ForwardRefExoticComponent<Partial<HiddenProps> & react485.RefAttributes<unknown>>;
328
- IconToggle: react485.FC<_pixpilot_shadcn_ui186.IconToggleProps>;
329
- ToggleButton: react485.FC<_pixpilot_shadcn_ui186.ToggleButtonProps>;
330
- Input: react485.FC<_pixpilot_shadcn_ui186.InputProps>;
331
- NumberInput: react485.FC<_pixpilot_shadcn_ui186.InputProps>;
332
- ObjectContainer: react485.FC<ObjectContainerProps>;
333
- Radio: react485.FC<RadioProps>;
356
+ FormItem: react7.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
357
+ children?: react7.ReactNode | undefined;
358
+ }>, "ref"> & react7.RefAttributes<unknown>>;
359
+ Hidden: react7.ForwardRefExoticComponent<Partial<HiddenProps> & react7.RefAttributes<unknown>>;
360
+ IconToggle: react7.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
361
+ ToggleButton: react7.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
362
+ Input: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
363
+ NumberInput: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
364
+ ObjectContainer: react7.FC<ObjectContainerProps>;
365
+ Radio: react7.FC<RadioProps>;
334
366
  Row: typeof Row;
335
- Select: react485.FC<SelectProps$1>;
336
- Separator: react485.FC<_radix_ui_react_separator10.SeparatorProps & react485.RefAttributes<HTMLDivElement>>;
337
- Switch: react485.FC<_radix_ui_react_switch10.SwitchProps & react485.RefAttributes<HTMLButtonElement>>;
338
- Textarea: react485.FC<react485.ClassAttributes<HTMLTextAreaElement> & react485.TextareaHTMLAttributes<HTMLTextAreaElement>>;
367
+ Select: react7.FC<SelectProps$1>;
368
+ Separator: react7.FC<_radix_ui_react_separator0.SeparatorProps & react7.RefAttributes<HTMLDivElement>>;
369
+ Switch: react7.FC<_radix_ui_react_switch0.SwitchProps & react7.RefAttributes<HTMLButtonElement>>;
370
+ Textarea: react7.FC<react7.ClassAttributes<HTMLTextAreaElement> & react7.TextareaHTMLAttributes<HTMLTextAreaElement>>;
339
371
  }, Component_2, Decorator_2>): JSX.Element;
340
372
  displayName: string;
341
373
  };
342
374
  Object: {
343
- <Decorator_3 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_3 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react35.ISchemaTypeFieldProps<{
344
- ColorPicker: react485.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui186.ColorPickerProps>, "ref"> & react485.RefAttributes<unknown>>;
345
- Combobox: react485.FC<_pixpilot_shadcn_ui186.ComboboxProps>;
346
- ColorSelect: react485.FC<_pixpilot_shadcn_ui186.ColorSelectProps>;
347
- Rating: react485.FC<_pixpilot_shadcn_ui186.RatingProps>;
348
- Slider: react485.FC<_pixpilot_shadcn_ui186.SliderProps>;
349
- SliderInput: react485.FC<_pixpilot_shadcn_ui186.SliderInputProps>;
350
- SliderSelect: react485.FC<_pixpilot_shadcn_ui186.SliderSelectProps>;
375
+ <Decorator_3 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_3 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
376
+ ColorPicker: react7.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react7.RefAttributes<unknown>>;
377
+ Combobox: react7.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
378
+ ColorSelect: react7.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
379
+ Rating: react7.FC<_pixpilot_shadcn_ui0.RatingProps>;
380
+ Slider: react7.FC<_pixpilot_shadcn_ui0.SliderProps>;
381
+ SliderInput: react7.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
382
+ SliderSelect: react7.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
351
383
  TagsInput: typeof TagsInput;
352
- TagsInputInLine: react485.FC<_pixpilot_shadcn_ui186.TagsInputProps>;
384
+ TagsInputInLine: react7.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
353
385
  ArrayCards: ComposedArrayProps;
354
- ArrayCollapse: react485.FC<ArrayComponentProps & {
386
+ ArrayCollapse: react7.FC<ArrayComponentProps & {
355
387
  defaultActiveKey?: Array<string | number>;
356
388
  mode?: "accordion" | "multiple";
357
389
  collapseProps?: React.HTMLAttributes<HTMLDivElement>;
358
390
  }>;
359
- ArrayDialog: react485.FC<ArrayComponentProps & {
391
+ ArrayDialog: react7.FC<ArrayComponentProps & {
360
392
  dialogProps?: React.HTMLAttributes<HTMLDivElement>;
361
393
  }>;
362
394
  ArrayInline: ComposedArrayProps;
363
- ArrayPopover: react485.FC<ArrayComponentProps & {
395
+ ArrayPopover: react7.FC<ArrayComponentProps & {
364
396
  popoverProps?: React.HTMLAttributes<HTMLDivElement>;
365
397
  }>;
366
- ArrayTags: react485.MemoExoticComponent<_formily_react35.ReactFC<ArrayTagsProps>>;
367
- ArrayToggleGroup: react485.MemoExoticComponent<_formily_react35.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
368
- ToggleGroup: react485.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react485.RefAttributes<unknown>>;
369
- Checkbox: react485.FC<_radix_ui_react_checkbox10.CheckboxProps & react485.RefAttributes<HTMLButtonElement>>;
398
+ ArrayTags: react7.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
399
+ ArrayToggleGroup: react7.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
400
+ ToggleGroup: react7.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react7.RefAttributes<unknown>>;
401
+ Checkbox: react7.FC<_radix_ui_react_checkbox0.CheckboxProps & react7.RefAttributes<HTMLButtonElement>>;
370
402
  Column: typeof Column;
371
- DatePicker: react485.ForwardRefExoticComponent<Partial<{
403
+ DatePicker: react7.ForwardRefExoticComponent<Partial<{
372
404
  value?: Date;
373
405
  onChange?: (date: Date | undefined) => void;
374
406
  placeholder?: string;
375
- } & Omit<_pixpilot_shadcn_ui186.DatePickerProps, "onSelect" | "selected" | "mode">> & react485.RefAttributes<unknown>>;
407
+ } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react7.RefAttributes<unknown>>;
408
+ DialogItem: react7.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
409
+ children?: react7.ReactNode | undefined;
410
+ }>, "ref"> & react7.RefAttributes<unknown>>;
411
+ PopoverItem: react7.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
412
+ children?: react7.ReactNode | undefined;
413
+ }>, "ref"> & react7.RefAttributes<unknown>>;
376
414
  FormGrid: typeof FormGrid;
377
- FormItem: react485.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
378
- children?: react485.ReactNode | undefined;
379
- }>, "ref"> & react485.RefAttributes<unknown>>;
380
- Hidden: react485.ForwardRefExoticComponent<Partial<HiddenProps> & react485.RefAttributes<unknown>>;
381
- IconToggle: react485.FC<_pixpilot_shadcn_ui186.IconToggleProps>;
382
- ToggleButton: react485.FC<_pixpilot_shadcn_ui186.ToggleButtonProps>;
383
- Input: react485.FC<_pixpilot_shadcn_ui186.InputProps>;
384
- NumberInput: react485.FC<_pixpilot_shadcn_ui186.InputProps>;
385
- ObjectContainer: react485.FC<ObjectContainerProps>;
386
- Radio: react485.FC<RadioProps>;
415
+ FormItem: react7.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
416
+ children?: react7.ReactNode | undefined;
417
+ }>, "ref"> & react7.RefAttributes<unknown>>;
418
+ Hidden: react7.ForwardRefExoticComponent<Partial<HiddenProps> & react7.RefAttributes<unknown>>;
419
+ IconToggle: react7.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
420
+ ToggleButton: react7.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
421
+ Input: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
422
+ NumberInput: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
423
+ ObjectContainer: react7.FC<ObjectContainerProps>;
424
+ Radio: react7.FC<RadioProps>;
387
425
  Row: typeof Row;
388
- Select: react485.FC<SelectProps$1>;
389
- Separator: react485.FC<_radix_ui_react_separator10.SeparatorProps & react485.RefAttributes<HTMLDivElement>>;
390
- Switch: react485.FC<_radix_ui_react_switch10.SwitchProps & react485.RefAttributes<HTMLButtonElement>>;
391
- Textarea: react485.FC<react485.ClassAttributes<HTMLTextAreaElement> & react485.TextareaHTMLAttributes<HTMLTextAreaElement>>;
426
+ Select: react7.FC<SelectProps$1>;
427
+ Separator: react7.FC<_radix_ui_react_separator0.SeparatorProps & react7.RefAttributes<HTMLDivElement>>;
428
+ Switch: react7.FC<_radix_ui_react_switch0.SwitchProps & react7.RefAttributes<HTMLButtonElement>>;
429
+ Textarea: react7.FC<react7.ClassAttributes<HTMLTextAreaElement> & react7.TextareaHTMLAttributes<HTMLTextAreaElement>>;
392
430
  }, Component_3, Decorator_3>): JSX.Element;
393
431
  displayName: string;
394
432
  };
395
433
  Array: {
396
- <Decorator_4 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_4 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react35.ISchemaTypeFieldProps<{
397
- ColorPicker: react485.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui186.ColorPickerProps>, "ref"> & react485.RefAttributes<unknown>>;
398
- Combobox: react485.FC<_pixpilot_shadcn_ui186.ComboboxProps>;
399
- ColorSelect: react485.FC<_pixpilot_shadcn_ui186.ColorSelectProps>;
400
- Rating: react485.FC<_pixpilot_shadcn_ui186.RatingProps>;
401
- Slider: react485.FC<_pixpilot_shadcn_ui186.SliderProps>;
402
- SliderInput: react485.FC<_pixpilot_shadcn_ui186.SliderInputProps>;
403
- SliderSelect: react485.FC<_pixpilot_shadcn_ui186.SliderSelectProps>;
434
+ <Decorator_4 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_4 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
435
+ ColorPicker: react7.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react7.RefAttributes<unknown>>;
436
+ Combobox: react7.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
437
+ ColorSelect: react7.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
438
+ Rating: react7.FC<_pixpilot_shadcn_ui0.RatingProps>;
439
+ Slider: react7.FC<_pixpilot_shadcn_ui0.SliderProps>;
440
+ SliderInput: react7.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
441
+ SliderSelect: react7.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
404
442
  TagsInput: typeof TagsInput;
405
- TagsInputInLine: react485.FC<_pixpilot_shadcn_ui186.TagsInputProps>;
443
+ TagsInputInLine: react7.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
406
444
  ArrayCards: ComposedArrayProps;
407
- ArrayCollapse: react485.FC<ArrayComponentProps & {
445
+ ArrayCollapse: react7.FC<ArrayComponentProps & {
408
446
  defaultActiveKey?: Array<string | number>;
409
447
  mode?: "accordion" | "multiple";
410
448
  collapseProps?: React.HTMLAttributes<HTMLDivElement>;
411
449
  }>;
412
- ArrayDialog: react485.FC<ArrayComponentProps & {
450
+ ArrayDialog: react7.FC<ArrayComponentProps & {
413
451
  dialogProps?: React.HTMLAttributes<HTMLDivElement>;
414
452
  }>;
415
453
  ArrayInline: ComposedArrayProps;
416
- ArrayPopover: react485.FC<ArrayComponentProps & {
454
+ ArrayPopover: react7.FC<ArrayComponentProps & {
417
455
  popoverProps?: React.HTMLAttributes<HTMLDivElement>;
418
456
  }>;
419
- ArrayTags: react485.MemoExoticComponent<_formily_react35.ReactFC<ArrayTagsProps>>;
420
- ArrayToggleGroup: react485.MemoExoticComponent<_formily_react35.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
421
- ToggleGroup: react485.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react485.RefAttributes<unknown>>;
422
- Checkbox: react485.FC<_radix_ui_react_checkbox10.CheckboxProps & react485.RefAttributes<HTMLButtonElement>>;
457
+ ArrayTags: react7.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
458
+ ArrayToggleGroup: react7.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
459
+ ToggleGroup: react7.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react7.RefAttributes<unknown>>;
460
+ Checkbox: react7.FC<_radix_ui_react_checkbox0.CheckboxProps & react7.RefAttributes<HTMLButtonElement>>;
423
461
  Column: typeof Column;
424
- DatePicker: react485.ForwardRefExoticComponent<Partial<{
462
+ DatePicker: react7.ForwardRefExoticComponent<Partial<{
425
463
  value?: Date;
426
464
  onChange?: (date: Date | undefined) => void;
427
465
  placeholder?: string;
428
- } & Omit<_pixpilot_shadcn_ui186.DatePickerProps, "onSelect" | "selected" | "mode">> & react485.RefAttributes<unknown>>;
466
+ } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react7.RefAttributes<unknown>>;
467
+ DialogItem: react7.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
468
+ children?: react7.ReactNode | undefined;
469
+ }>, "ref"> & react7.RefAttributes<unknown>>;
470
+ PopoverItem: react7.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
471
+ children?: react7.ReactNode | undefined;
472
+ }>, "ref"> & react7.RefAttributes<unknown>>;
429
473
  FormGrid: typeof FormGrid;
430
- FormItem: react485.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
431
- children?: react485.ReactNode | undefined;
432
- }>, "ref"> & react485.RefAttributes<unknown>>;
433
- Hidden: react485.ForwardRefExoticComponent<Partial<HiddenProps> & react485.RefAttributes<unknown>>;
434
- IconToggle: react485.FC<_pixpilot_shadcn_ui186.IconToggleProps>;
435
- ToggleButton: react485.FC<_pixpilot_shadcn_ui186.ToggleButtonProps>;
436
- Input: react485.FC<_pixpilot_shadcn_ui186.InputProps>;
437
- NumberInput: react485.FC<_pixpilot_shadcn_ui186.InputProps>;
438
- ObjectContainer: react485.FC<ObjectContainerProps>;
439
- Radio: react485.FC<RadioProps>;
474
+ FormItem: react7.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
475
+ children?: react7.ReactNode | undefined;
476
+ }>, "ref"> & react7.RefAttributes<unknown>>;
477
+ Hidden: react7.ForwardRefExoticComponent<Partial<HiddenProps> & react7.RefAttributes<unknown>>;
478
+ IconToggle: react7.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
479
+ ToggleButton: react7.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
480
+ Input: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
481
+ NumberInput: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
482
+ ObjectContainer: react7.FC<ObjectContainerProps>;
483
+ Radio: react7.FC<RadioProps>;
440
484
  Row: typeof Row;
441
- Select: react485.FC<SelectProps$1>;
442
- Separator: react485.FC<_radix_ui_react_separator10.SeparatorProps & react485.RefAttributes<HTMLDivElement>>;
443
- Switch: react485.FC<_radix_ui_react_switch10.SwitchProps & react485.RefAttributes<HTMLButtonElement>>;
444
- Textarea: react485.FC<react485.ClassAttributes<HTMLTextAreaElement> & react485.TextareaHTMLAttributes<HTMLTextAreaElement>>;
485
+ Select: react7.FC<SelectProps$1>;
486
+ Separator: react7.FC<_radix_ui_react_separator0.SeparatorProps & react7.RefAttributes<HTMLDivElement>>;
487
+ Switch: react7.FC<_radix_ui_react_switch0.SwitchProps & react7.RefAttributes<HTMLButtonElement>>;
488
+ Textarea: react7.FC<react7.ClassAttributes<HTMLTextAreaElement> & react7.TextareaHTMLAttributes<HTMLTextAreaElement>>;
445
489
  }, Component_4, Decorator_4>): JSX.Element;
446
490
  displayName: string;
447
491
  };
448
492
  Boolean: {
449
- <Decorator_5 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_5 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react35.ISchemaTypeFieldProps<{
450
- ColorPicker: react485.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui186.ColorPickerProps>, "ref"> & react485.RefAttributes<unknown>>;
451
- Combobox: react485.FC<_pixpilot_shadcn_ui186.ComboboxProps>;
452
- ColorSelect: react485.FC<_pixpilot_shadcn_ui186.ColorSelectProps>;
453
- Rating: react485.FC<_pixpilot_shadcn_ui186.RatingProps>;
454
- Slider: react485.FC<_pixpilot_shadcn_ui186.SliderProps>;
455
- SliderInput: react485.FC<_pixpilot_shadcn_ui186.SliderInputProps>;
456
- SliderSelect: react485.FC<_pixpilot_shadcn_ui186.SliderSelectProps>;
493
+ <Decorator_5 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_5 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
494
+ ColorPicker: react7.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react7.RefAttributes<unknown>>;
495
+ Combobox: react7.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
496
+ ColorSelect: react7.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
497
+ Rating: react7.FC<_pixpilot_shadcn_ui0.RatingProps>;
498
+ Slider: react7.FC<_pixpilot_shadcn_ui0.SliderProps>;
499
+ SliderInput: react7.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
500
+ SliderSelect: react7.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
457
501
  TagsInput: typeof TagsInput;
458
- TagsInputInLine: react485.FC<_pixpilot_shadcn_ui186.TagsInputProps>;
502
+ TagsInputInLine: react7.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
459
503
  ArrayCards: ComposedArrayProps;
460
- ArrayCollapse: react485.FC<ArrayComponentProps & {
504
+ ArrayCollapse: react7.FC<ArrayComponentProps & {
461
505
  defaultActiveKey?: Array<string | number>;
462
506
  mode?: "accordion" | "multiple";
463
507
  collapseProps?: React.HTMLAttributes<HTMLDivElement>;
464
508
  }>;
465
- ArrayDialog: react485.FC<ArrayComponentProps & {
509
+ ArrayDialog: react7.FC<ArrayComponentProps & {
466
510
  dialogProps?: React.HTMLAttributes<HTMLDivElement>;
467
511
  }>;
468
512
  ArrayInline: ComposedArrayProps;
469
- ArrayPopover: react485.FC<ArrayComponentProps & {
513
+ ArrayPopover: react7.FC<ArrayComponentProps & {
470
514
  popoverProps?: React.HTMLAttributes<HTMLDivElement>;
471
515
  }>;
472
- ArrayTags: react485.MemoExoticComponent<_formily_react35.ReactFC<ArrayTagsProps>>;
473
- ArrayToggleGroup: react485.MemoExoticComponent<_formily_react35.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
474
- ToggleGroup: react485.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react485.RefAttributes<unknown>>;
475
- Checkbox: react485.FC<_radix_ui_react_checkbox10.CheckboxProps & react485.RefAttributes<HTMLButtonElement>>;
516
+ ArrayTags: react7.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
517
+ ArrayToggleGroup: react7.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
518
+ ToggleGroup: react7.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react7.RefAttributes<unknown>>;
519
+ Checkbox: react7.FC<_radix_ui_react_checkbox0.CheckboxProps & react7.RefAttributes<HTMLButtonElement>>;
476
520
  Column: typeof Column;
477
- DatePicker: react485.ForwardRefExoticComponent<Partial<{
521
+ DatePicker: react7.ForwardRefExoticComponent<Partial<{
478
522
  value?: Date;
479
523
  onChange?: (date: Date | undefined) => void;
480
524
  placeholder?: string;
481
- } & Omit<_pixpilot_shadcn_ui186.DatePickerProps, "onSelect" | "selected" | "mode">> & react485.RefAttributes<unknown>>;
525
+ } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react7.RefAttributes<unknown>>;
526
+ DialogItem: react7.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
527
+ children?: react7.ReactNode | undefined;
528
+ }>, "ref"> & react7.RefAttributes<unknown>>;
529
+ PopoverItem: react7.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
530
+ children?: react7.ReactNode | undefined;
531
+ }>, "ref"> & react7.RefAttributes<unknown>>;
482
532
  FormGrid: typeof FormGrid;
483
- FormItem: react485.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
484
- children?: react485.ReactNode | undefined;
485
- }>, "ref"> & react485.RefAttributes<unknown>>;
486
- Hidden: react485.ForwardRefExoticComponent<Partial<HiddenProps> & react485.RefAttributes<unknown>>;
487
- IconToggle: react485.FC<_pixpilot_shadcn_ui186.IconToggleProps>;
488
- ToggleButton: react485.FC<_pixpilot_shadcn_ui186.ToggleButtonProps>;
489
- Input: react485.FC<_pixpilot_shadcn_ui186.InputProps>;
490
- NumberInput: react485.FC<_pixpilot_shadcn_ui186.InputProps>;
491
- ObjectContainer: react485.FC<ObjectContainerProps>;
492
- Radio: react485.FC<RadioProps>;
533
+ FormItem: react7.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
534
+ children?: react7.ReactNode | undefined;
535
+ }>, "ref"> & react7.RefAttributes<unknown>>;
536
+ Hidden: react7.ForwardRefExoticComponent<Partial<HiddenProps> & react7.RefAttributes<unknown>>;
537
+ IconToggle: react7.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
538
+ ToggleButton: react7.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
539
+ Input: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
540
+ NumberInput: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
541
+ ObjectContainer: react7.FC<ObjectContainerProps>;
542
+ Radio: react7.FC<RadioProps>;
493
543
  Row: typeof Row;
494
- Select: react485.FC<SelectProps$1>;
495
- Separator: react485.FC<_radix_ui_react_separator10.SeparatorProps & react485.RefAttributes<HTMLDivElement>>;
496
- Switch: react485.FC<_radix_ui_react_switch10.SwitchProps & react485.RefAttributes<HTMLButtonElement>>;
497
- Textarea: react485.FC<react485.ClassAttributes<HTMLTextAreaElement> & react485.TextareaHTMLAttributes<HTMLTextAreaElement>>;
544
+ Select: react7.FC<SelectProps$1>;
545
+ Separator: react7.FC<_radix_ui_react_separator0.SeparatorProps & react7.RefAttributes<HTMLDivElement>>;
546
+ Switch: react7.FC<_radix_ui_react_switch0.SwitchProps & react7.RefAttributes<HTMLButtonElement>>;
547
+ Textarea: react7.FC<react7.ClassAttributes<HTMLTextAreaElement> & react7.TextareaHTMLAttributes<HTMLTextAreaElement>>;
498
548
  }, Component_5, Decorator_5>): JSX.Element;
499
549
  displayName: string;
500
550
  };
501
551
  Date: {
502
- <Decorator_6 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_6 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react35.ISchemaTypeFieldProps<{
503
- ColorPicker: react485.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui186.ColorPickerProps>, "ref"> & react485.RefAttributes<unknown>>;
504
- Combobox: react485.FC<_pixpilot_shadcn_ui186.ComboboxProps>;
505
- ColorSelect: react485.FC<_pixpilot_shadcn_ui186.ColorSelectProps>;
506
- Rating: react485.FC<_pixpilot_shadcn_ui186.RatingProps>;
507
- Slider: react485.FC<_pixpilot_shadcn_ui186.SliderProps>;
508
- SliderInput: react485.FC<_pixpilot_shadcn_ui186.SliderInputProps>;
509
- SliderSelect: react485.FC<_pixpilot_shadcn_ui186.SliderSelectProps>;
552
+ <Decorator_6 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_6 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
553
+ ColorPicker: react7.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react7.RefAttributes<unknown>>;
554
+ Combobox: react7.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
555
+ ColorSelect: react7.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
556
+ Rating: react7.FC<_pixpilot_shadcn_ui0.RatingProps>;
557
+ Slider: react7.FC<_pixpilot_shadcn_ui0.SliderProps>;
558
+ SliderInput: react7.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
559
+ SliderSelect: react7.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
510
560
  TagsInput: typeof TagsInput;
511
- TagsInputInLine: react485.FC<_pixpilot_shadcn_ui186.TagsInputProps>;
561
+ TagsInputInLine: react7.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
512
562
  ArrayCards: ComposedArrayProps;
513
- ArrayCollapse: react485.FC<ArrayComponentProps & {
563
+ ArrayCollapse: react7.FC<ArrayComponentProps & {
514
564
  defaultActiveKey?: Array<string | number>;
515
565
  mode?: "accordion" | "multiple";
516
566
  collapseProps?: React.HTMLAttributes<HTMLDivElement>;
517
567
  }>;
518
- ArrayDialog: react485.FC<ArrayComponentProps & {
568
+ ArrayDialog: react7.FC<ArrayComponentProps & {
519
569
  dialogProps?: React.HTMLAttributes<HTMLDivElement>;
520
570
  }>;
521
571
  ArrayInline: ComposedArrayProps;
522
- ArrayPopover: react485.FC<ArrayComponentProps & {
572
+ ArrayPopover: react7.FC<ArrayComponentProps & {
523
573
  popoverProps?: React.HTMLAttributes<HTMLDivElement>;
524
574
  }>;
525
- ArrayTags: react485.MemoExoticComponent<_formily_react35.ReactFC<ArrayTagsProps>>;
526
- ArrayToggleGroup: react485.MemoExoticComponent<_formily_react35.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
527
- ToggleGroup: react485.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react485.RefAttributes<unknown>>;
528
- Checkbox: react485.FC<_radix_ui_react_checkbox10.CheckboxProps & react485.RefAttributes<HTMLButtonElement>>;
575
+ ArrayTags: react7.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
576
+ ArrayToggleGroup: react7.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
577
+ ToggleGroup: react7.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react7.RefAttributes<unknown>>;
578
+ Checkbox: react7.FC<_radix_ui_react_checkbox0.CheckboxProps & react7.RefAttributes<HTMLButtonElement>>;
529
579
  Column: typeof Column;
530
- DatePicker: react485.ForwardRefExoticComponent<Partial<{
580
+ DatePicker: react7.ForwardRefExoticComponent<Partial<{
531
581
  value?: Date;
532
582
  onChange?: (date: Date | undefined) => void;
533
583
  placeholder?: string;
534
- } & Omit<_pixpilot_shadcn_ui186.DatePickerProps, "onSelect" | "selected" | "mode">> & react485.RefAttributes<unknown>>;
584
+ } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react7.RefAttributes<unknown>>;
585
+ DialogItem: react7.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
586
+ children?: react7.ReactNode | undefined;
587
+ }>, "ref"> & react7.RefAttributes<unknown>>;
588
+ PopoverItem: react7.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
589
+ children?: react7.ReactNode | undefined;
590
+ }>, "ref"> & react7.RefAttributes<unknown>>;
535
591
  FormGrid: typeof FormGrid;
536
- FormItem: react485.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
537
- children?: react485.ReactNode | undefined;
538
- }>, "ref"> & react485.RefAttributes<unknown>>;
539
- Hidden: react485.ForwardRefExoticComponent<Partial<HiddenProps> & react485.RefAttributes<unknown>>;
540
- IconToggle: react485.FC<_pixpilot_shadcn_ui186.IconToggleProps>;
541
- ToggleButton: react485.FC<_pixpilot_shadcn_ui186.ToggleButtonProps>;
542
- Input: react485.FC<_pixpilot_shadcn_ui186.InputProps>;
543
- NumberInput: react485.FC<_pixpilot_shadcn_ui186.InputProps>;
544
- ObjectContainer: react485.FC<ObjectContainerProps>;
545
- Radio: react485.FC<RadioProps>;
592
+ FormItem: react7.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
593
+ children?: react7.ReactNode | undefined;
594
+ }>, "ref"> & react7.RefAttributes<unknown>>;
595
+ Hidden: react7.ForwardRefExoticComponent<Partial<HiddenProps> & react7.RefAttributes<unknown>>;
596
+ IconToggle: react7.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
597
+ ToggleButton: react7.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
598
+ Input: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
599
+ NumberInput: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
600
+ ObjectContainer: react7.FC<ObjectContainerProps>;
601
+ Radio: react7.FC<RadioProps>;
546
602
  Row: typeof Row;
547
- Select: react485.FC<SelectProps$1>;
548
- Separator: react485.FC<_radix_ui_react_separator10.SeparatorProps & react485.RefAttributes<HTMLDivElement>>;
549
- Switch: react485.FC<_radix_ui_react_switch10.SwitchProps & react485.RefAttributes<HTMLButtonElement>>;
550
- Textarea: react485.FC<react485.ClassAttributes<HTMLTextAreaElement> & react485.TextareaHTMLAttributes<HTMLTextAreaElement>>;
603
+ Select: react7.FC<SelectProps$1>;
604
+ Separator: react7.FC<_radix_ui_react_separator0.SeparatorProps & react7.RefAttributes<HTMLDivElement>>;
605
+ Switch: react7.FC<_radix_ui_react_switch0.SwitchProps & react7.RefAttributes<HTMLButtonElement>>;
606
+ Textarea: react7.FC<react7.ClassAttributes<HTMLTextAreaElement> & react7.TextareaHTMLAttributes<HTMLTextAreaElement>>;
551
607
  }, Component_6, Decorator_6>): JSX.Element;
552
608
  displayName: string;
553
609
  };
554
610
  DateTime: {
555
- <Decorator_7 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_7 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react35.ISchemaTypeFieldProps<{
556
- ColorPicker: react485.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui186.ColorPickerProps>, "ref"> & react485.RefAttributes<unknown>>;
557
- Combobox: react485.FC<_pixpilot_shadcn_ui186.ComboboxProps>;
558
- ColorSelect: react485.FC<_pixpilot_shadcn_ui186.ColorSelectProps>;
559
- Rating: react485.FC<_pixpilot_shadcn_ui186.RatingProps>;
560
- Slider: react485.FC<_pixpilot_shadcn_ui186.SliderProps>;
561
- SliderInput: react485.FC<_pixpilot_shadcn_ui186.SliderInputProps>;
562
- SliderSelect: react485.FC<_pixpilot_shadcn_ui186.SliderSelectProps>;
611
+ <Decorator_7 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_7 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
612
+ ColorPicker: react7.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react7.RefAttributes<unknown>>;
613
+ Combobox: react7.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
614
+ ColorSelect: react7.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
615
+ Rating: react7.FC<_pixpilot_shadcn_ui0.RatingProps>;
616
+ Slider: react7.FC<_pixpilot_shadcn_ui0.SliderProps>;
617
+ SliderInput: react7.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
618
+ SliderSelect: react7.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
563
619
  TagsInput: typeof TagsInput;
564
- TagsInputInLine: react485.FC<_pixpilot_shadcn_ui186.TagsInputProps>;
620
+ TagsInputInLine: react7.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
565
621
  ArrayCards: ComposedArrayProps;
566
- ArrayCollapse: react485.FC<ArrayComponentProps & {
622
+ ArrayCollapse: react7.FC<ArrayComponentProps & {
567
623
  defaultActiveKey?: Array<string | number>;
568
624
  mode?: "accordion" | "multiple";
569
625
  collapseProps?: React.HTMLAttributes<HTMLDivElement>;
570
626
  }>;
571
- ArrayDialog: react485.FC<ArrayComponentProps & {
627
+ ArrayDialog: react7.FC<ArrayComponentProps & {
572
628
  dialogProps?: React.HTMLAttributes<HTMLDivElement>;
573
629
  }>;
574
630
  ArrayInline: ComposedArrayProps;
575
- ArrayPopover: react485.FC<ArrayComponentProps & {
631
+ ArrayPopover: react7.FC<ArrayComponentProps & {
576
632
  popoverProps?: React.HTMLAttributes<HTMLDivElement>;
577
633
  }>;
578
- ArrayTags: react485.MemoExoticComponent<_formily_react35.ReactFC<ArrayTagsProps>>;
579
- ArrayToggleGroup: react485.MemoExoticComponent<_formily_react35.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
580
- ToggleGroup: react485.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react485.RefAttributes<unknown>>;
581
- Checkbox: react485.FC<_radix_ui_react_checkbox10.CheckboxProps & react485.RefAttributes<HTMLButtonElement>>;
634
+ ArrayTags: react7.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
635
+ ArrayToggleGroup: react7.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
636
+ ToggleGroup: react7.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react7.RefAttributes<unknown>>;
637
+ Checkbox: react7.FC<_radix_ui_react_checkbox0.CheckboxProps & react7.RefAttributes<HTMLButtonElement>>;
582
638
  Column: typeof Column;
583
- DatePicker: react485.ForwardRefExoticComponent<Partial<{
639
+ DatePicker: react7.ForwardRefExoticComponent<Partial<{
584
640
  value?: Date;
585
641
  onChange?: (date: Date | undefined) => void;
586
642
  placeholder?: string;
587
- } & Omit<_pixpilot_shadcn_ui186.DatePickerProps, "onSelect" | "selected" | "mode">> & react485.RefAttributes<unknown>>;
643
+ } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react7.RefAttributes<unknown>>;
644
+ DialogItem: react7.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
645
+ children?: react7.ReactNode | undefined;
646
+ }>, "ref"> & react7.RefAttributes<unknown>>;
647
+ PopoverItem: react7.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
648
+ children?: react7.ReactNode | undefined;
649
+ }>, "ref"> & react7.RefAttributes<unknown>>;
588
650
  FormGrid: typeof FormGrid;
589
- FormItem: react485.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
590
- children?: react485.ReactNode | undefined;
591
- }>, "ref"> & react485.RefAttributes<unknown>>;
592
- Hidden: react485.ForwardRefExoticComponent<Partial<HiddenProps> & react485.RefAttributes<unknown>>;
593
- IconToggle: react485.FC<_pixpilot_shadcn_ui186.IconToggleProps>;
594
- ToggleButton: react485.FC<_pixpilot_shadcn_ui186.ToggleButtonProps>;
595
- Input: react485.FC<_pixpilot_shadcn_ui186.InputProps>;
596
- NumberInput: react485.FC<_pixpilot_shadcn_ui186.InputProps>;
597
- ObjectContainer: react485.FC<ObjectContainerProps>;
598
- Radio: react485.FC<RadioProps>;
651
+ FormItem: react7.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
652
+ children?: react7.ReactNode | undefined;
653
+ }>, "ref"> & react7.RefAttributes<unknown>>;
654
+ Hidden: react7.ForwardRefExoticComponent<Partial<HiddenProps> & react7.RefAttributes<unknown>>;
655
+ IconToggle: react7.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
656
+ ToggleButton: react7.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
657
+ Input: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
658
+ NumberInput: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
659
+ ObjectContainer: react7.FC<ObjectContainerProps>;
660
+ Radio: react7.FC<RadioProps>;
599
661
  Row: typeof Row;
600
- Select: react485.FC<SelectProps$1>;
601
- Separator: react485.FC<_radix_ui_react_separator10.SeparatorProps & react485.RefAttributes<HTMLDivElement>>;
602
- Switch: react485.FC<_radix_ui_react_switch10.SwitchProps & react485.RefAttributes<HTMLButtonElement>>;
603
- Textarea: react485.FC<react485.ClassAttributes<HTMLTextAreaElement> & react485.TextareaHTMLAttributes<HTMLTextAreaElement>>;
662
+ Select: react7.FC<SelectProps$1>;
663
+ Separator: react7.FC<_radix_ui_react_separator0.SeparatorProps & react7.RefAttributes<HTMLDivElement>>;
664
+ Switch: react7.FC<_radix_ui_react_switch0.SwitchProps & react7.RefAttributes<HTMLButtonElement>>;
665
+ Textarea: react7.FC<react7.ClassAttributes<HTMLTextAreaElement> & react7.TextareaHTMLAttributes<HTMLTextAreaElement>>;
604
666
  }, Component_7, Decorator_7>): JSX.Element;
605
667
  displayName: string;
606
668
  };
607
669
  Void: {
608
- <Decorator_8 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_8 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react35.ISchemaTypeFieldProps<{
609
- ColorPicker: react485.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui186.ColorPickerProps>, "ref"> & react485.RefAttributes<unknown>>;
610
- Combobox: react485.FC<_pixpilot_shadcn_ui186.ComboboxProps>;
611
- ColorSelect: react485.FC<_pixpilot_shadcn_ui186.ColorSelectProps>;
612
- Rating: react485.FC<_pixpilot_shadcn_ui186.RatingProps>;
613
- Slider: react485.FC<_pixpilot_shadcn_ui186.SliderProps>;
614
- SliderInput: react485.FC<_pixpilot_shadcn_ui186.SliderInputProps>;
615
- SliderSelect: react485.FC<_pixpilot_shadcn_ui186.SliderSelectProps>;
670
+ <Decorator_8 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_8 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
671
+ ColorPicker: react7.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react7.RefAttributes<unknown>>;
672
+ Combobox: react7.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
673
+ ColorSelect: react7.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
674
+ Rating: react7.FC<_pixpilot_shadcn_ui0.RatingProps>;
675
+ Slider: react7.FC<_pixpilot_shadcn_ui0.SliderProps>;
676
+ SliderInput: react7.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
677
+ SliderSelect: react7.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
616
678
  TagsInput: typeof TagsInput;
617
- TagsInputInLine: react485.FC<_pixpilot_shadcn_ui186.TagsInputProps>;
679
+ TagsInputInLine: react7.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
618
680
  ArrayCards: ComposedArrayProps;
619
- ArrayCollapse: react485.FC<ArrayComponentProps & {
681
+ ArrayCollapse: react7.FC<ArrayComponentProps & {
620
682
  defaultActiveKey?: Array<string | number>;
621
683
  mode?: "accordion" | "multiple";
622
684
  collapseProps?: React.HTMLAttributes<HTMLDivElement>;
623
685
  }>;
624
- ArrayDialog: react485.FC<ArrayComponentProps & {
686
+ ArrayDialog: react7.FC<ArrayComponentProps & {
625
687
  dialogProps?: React.HTMLAttributes<HTMLDivElement>;
626
688
  }>;
627
689
  ArrayInline: ComposedArrayProps;
628
- ArrayPopover: react485.FC<ArrayComponentProps & {
690
+ ArrayPopover: react7.FC<ArrayComponentProps & {
629
691
  popoverProps?: React.HTMLAttributes<HTMLDivElement>;
630
692
  }>;
631
- ArrayTags: react485.MemoExoticComponent<_formily_react35.ReactFC<ArrayTagsProps>>;
632
- ArrayToggleGroup: react485.MemoExoticComponent<_formily_react35.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
633
- ToggleGroup: react485.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react485.RefAttributes<unknown>>;
634
- Checkbox: react485.FC<_radix_ui_react_checkbox10.CheckboxProps & react485.RefAttributes<HTMLButtonElement>>;
693
+ ArrayTags: react7.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
694
+ ArrayToggleGroup: react7.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
695
+ ToggleGroup: react7.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react7.RefAttributes<unknown>>;
696
+ Checkbox: react7.FC<_radix_ui_react_checkbox0.CheckboxProps & react7.RefAttributes<HTMLButtonElement>>;
635
697
  Column: typeof Column;
636
- DatePicker: react485.ForwardRefExoticComponent<Partial<{
698
+ DatePicker: react7.ForwardRefExoticComponent<Partial<{
637
699
  value?: Date;
638
700
  onChange?: (date: Date | undefined) => void;
639
701
  placeholder?: string;
640
- } & Omit<_pixpilot_shadcn_ui186.DatePickerProps, "onSelect" | "selected" | "mode">> & react485.RefAttributes<unknown>>;
702
+ } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react7.RefAttributes<unknown>>;
703
+ DialogItem: react7.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
704
+ children?: react7.ReactNode | undefined;
705
+ }>, "ref"> & react7.RefAttributes<unknown>>;
706
+ PopoverItem: react7.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
707
+ children?: react7.ReactNode | undefined;
708
+ }>, "ref"> & react7.RefAttributes<unknown>>;
641
709
  FormGrid: typeof FormGrid;
642
- FormItem: react485.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
643
- children?: react485.ReactNode | undefined;
644
- }>, "ref"> & react485.RefAttributes<unknown>>;
645
- Hidden: react485.ForwardRefExoticComponent<Partial<HiddenProps> & react485.RefAttributes<unknown>>;
646
- IconToggle: react485.FC<_pixpilot_shadcn_ui186.IconToggleProps>;
647
- ToggleButton: react485.FC<_pixpilot_shadcn_ui186.ToggleButtonProps>;
648
- Input: react485.FC<_pixpilot_shadcn_ui186.InputProps>;
649
- NumberInput: react485.FC<_pixpilot_shadcn_ui186.InputProps>;
650
- ObjectContainer: react485.FC<ObjectContainerProps>;
651
- Radio: react485.FC<RadioProps>;
710
+ FormItem: react7.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
711
+ children?: react7.ReactNode | undefined;
712
+ }>, "ref"> & react7.RefAttributes<unknown>>;
713
+ Hidden: react7.ForwardRefExoticComponent<Partial<HiddenProps> & react7.RefAttributes<unknown>>;
714
+ IconToggle: react7.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
715
+ ToggleButton: react7.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
716
+ Input: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
717
+ NumberInput: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
718
+ ObjectContainer: react7.FC<ObjectContainerProps>;
719
+ Radio: react7.FC<RadioProps>;
652
720
  Row: typeof Row;
653
- Select: react485.FC<SelectProps$1>;
654
- Separator: react485.FC<_radix_ui_react_separator10.SeparatorProps & react485.RefAttributes<HTMLDivElement>>;
655
- Switch: react485.FC<_radix_ui_react_switch10.SwitchProps & react485.RefAttributes<HTMLButtonElement>>;
656
- Textarea: react485.FC<react485.ClassAttributes<HTMLTextAreaElement> & react485.TextareaHTMLAttributes<HTMLTextAreaElement>>;
721
+ Select: react7.FC<SelectProps$1>;
722
+ Separator: react7.FC<_radix_ui_react_separator0.SeparatorProps & react7.RefAttributes<HTMLDivElement>>;
723
+ Switch: react7.FC<_radix_ui_react_switch0.SwitchProps & react7.RefAttributes<HTMLButtonElement>>;
724
+ Textarea: react7.FC<react7.ClassAttributes<HTMLTextAreaElement> & react7.TextareaHTMLAttributes<HTMLTextAreaElement>>;
657
725
  }, Component_8, Decorator_8>): JSX.Element;
658
726
  displayName: string;
659
727
  };
660
728
  Number: {
661
- <Decorator_9 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_9 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react35.ISchemaTypeFieldProps<{
662
- ColorPicker: react485.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui186.ColorPickerProps>, "ref"> & react485.RefAttributes<unknown>>;
663
- Combobox: react485.FC<_pixpilot_shadcn_ui186.ComboboxProps>;
664
- ColorSelect: react485.FC<_pixpilot_shadcn_ui186.ColorSelectProps>;
665
- Rating: react485.FC<_pixpilot_shadcn_ui186.RatingProps>;
666
- Slider: react485.FC<_pixpilot_shadcn_ui186.SliderProps>;
667
- SliderInput: react485.FC<_pixpilot_shadcn_ui186.SliderInputProps>;
668
- SliderSelect: react485.FC<_pixpilot_shadcn_ui186.SliderSelectProps>;
729
+ <Decorator_9 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof", Component_9 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "DialogItem" | "PopoverItem" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "DatePicker.$$typeof" | "DialogItem.$$typeof" | "PopoverItem.$$typeof" | "Hidden.$$typeof" | "ColorPicker.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
730
+ ColorPicker: react7.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.ColorPickerProps>, "ref"> & react7.RefAttributes<unknown>>;
731
+ Combobox: react7.FC<_pixpilot_shadcn_ui0.ComboboxProps>;
732
+ ColorSelect: react7.FC<_pixpilot_shadcn_ui0.ColorSelectProps>;
733
+ Rating: react7.FC<_pixpilot_shadcn_ui0.RatingProps>;
734
+ Slider: react7.FC<_pixpilot_shadcn_ui0.SliderProps>;
735
+ SliderInput: react7.FC<_pixpilot_shadcn_ui0.SliderInputProps>;
736
+ SliderSelect: react7.FC<_pixpilot_shadcn_ui0.SliderSelectProps>;
669
737
  TagsInput: typeof TagsInput;
670
- TagsInputInLine: react485.FC<_pixpilot_shadcn_ui186.TagsInputProps>;
738
+ TagsInputInLine: react7.FC<_pixpilot_shadcn_ui0.TagsInputProps>;
671
739
  ArrayCards: ComposedArrayProps;
672
- ArrayCollapse: react485.FC<ArrayComponentProps & {
740
+ ArrayCollapse: react7.FC<ArrayComponentProps & {
673
741
  defaultActiveKey?: Array<string | number>;
674
742
  mode?: "accordion" | "multiple";
675
743
  collapseProps?: React.HTMLAttributes<HTMLDivElement>;
676
744
  }>;
677
- ArrayDialog: react485.FC<ArrayComponentProps & {
745
+ ArrayDialog: react7.FC<ArrayComponentProps & {
678
746
  dialogProps?: React.HTMLAttributes<HTMLDivElement>;
679
747
  }>;
680
748
  ArrayInline: ComposedArrayProps;
681
- ArrayPopover: react485.FC<ArrayComponentProps & {
749
+ ArrayPopover: react7.FC<ArrayComponentProps & {
682
750
  popoverProps?: React.HTMLAttributes<HTMLDivElement>;
683
751
  }>;
684
- ArrayTags: react485.MemoExoticComponent<_formily_react35.ReactFC<ArrayTagsProps>>;
685
- ArrayToggleGroup: react485.MemoExoticComponent<_formily_react35.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
686
- ToggleGroup: react485.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react485.RefAttributes<unknown>>;
687
- Checkbox: react485.FC<_radix_ui_react_checkbox10.CheckboxProps & react485.RefAttributes<HTMLButtonElement>>;
752
+ ArrayTags: react7.MemoExoticComponent<_formily_react1.ReactFC<ArrayTagsProps>>;
753
+ ArrayToggleGroup: react7.MemoExoticComponent<_formily_react1.ReactFC<Omit<ArrayToggleGroupProps, "ref">>>;
754
+ ToggleGroup: react7.ForwardRefExoticComponent<Omit<Partial<ToggleGroupBaseProps>, "ref"> & react7.RefAttributes<unknown>>;
755
+ Checkbox: react7.FC<_radix_ui_react_checkbox0.CheckboxProps & react7.RefAttributes<HTMLButtonElement>>;
688
756
  Column: typeof Column;
689
- DatePicker: react485.ForwardRefExoticComponent<Partial<{
757
+ DatePicker: react7.ForwardRefExoticComponent<Partial<{
690
758
  value?: Date;
691
759
  onChange?: (date: Date | undefined) => void;
692
760
  placeholder?: string;
693
- } & Omit<_pixpilot_shadcn_ui186.DatePickerProps, "onSelect" | "selected" | "mode">> & react485.RefAttributes<unknown>>;
761
+ } & Omit<_pixpilot_shadcn_ui0.DatePickerProps, "onSelect" | "selected" | "mode">> & react7.RefAttributes<unknown>>;
762
+ DialogItem: react7.ForwardRefExoticComponent<Omit<Partial<DialogItemProps & {
763
+ children?: react7.ReactNode | undefined;
764
+ }>, "ref"> & react7.RefAttributes<unknown>>;
765
+ PopoverItem: react7.ForwardRefExoticComponent<Omit<Partial<PopoverItemProps & {
766
+ children?: react7.ReactNode | undefined;
767
+ }>, "ref"> & react7.RefAttributes<unknown>>;
694
768
  FormGrid: typeof FormGrid;
695
- FormItem: react485.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
696
- children?: react485.ReactNode | undefined;
697
- }>, "ref"> & react485.RefAttributes<unknown>>;
698
- Hidden: react485.ForwardRefExoticComponent<Partial<HiddenProps> & react485.RefAttributes<unknown>>;
699
- IconToggle: react485.FC<_pixpilot_shadcn_ui186.IconToggleProps>;
700
- ToggleButton: react485.FC<_pixpilot_shadcn_ui186.ToggleButtonProps>;
701
- Input: react485.FC<_pixpilot_shadcn_ui186.InputProps>;
702
- NumberInput: react485.FC<_pixpilot_shadcn_ui186.InputProps>;
703
- ObjectContainer: react485.FC<ObjectContainerProps>;
704
- Radio: react485.FC<RadioProps>;
769
+ FormItem: react7.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
770
+ children?: react7.ReactNode | undefined;
771
+ }>, "ref"> & react7.RefAttributes<unknown>>;
772
+ Hidden: react7.ForwardRefExoticComponent<Partial<HiddenProps> & react7.RefAttributes<unknown>>;
773
+ IconToggle: react7.FC<_pixpilot_shadcn_ui0.IconToggleProps>;
774
+ ToggleButton: react7.FC<_pixpilot_shadcn_ui0.ToggleButtonProps>;
775
+ Input: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
776
+ NumberInput: react7.FC<_pixpilot_shadcn_ui0.InputProps>;
777
+ ObjectContainer: react7.FC<ObjectContainerProps>;
778
+ Radio: react7.FC<RadioProps>;
705
779
  Row: typeof Row;
706
- Select: react485.FC<SelectProps$1>;
707
- Separator: react485.FC<_radix_ui_react_separator10.SeparatorProps & react485.RefAttributes<HTMLDivElement>>;
708
- Switch: react485.FC<_radix_ui_react_switch10.SwitchProps & react485.RefAttributes<HTMLButtonElement>>;
709
- Textarea: react485.FC<react485.ClassAttributes<HTMLTextAreaElement> & react485.TextareaHTMLAttributes<HTMLTextAreaElement>>;
780
+ Select: react7.FC<SelectProps$1>;
781
+ Separator: react7.FC<_radix_ui_react_separator0.SeparatorProps & react7.RefAttributes<HTMLDivElement>>;
782
+ Switch: react7.FC<_radix_ui_react_switch0.SwitchProps & react7.RefAttributes<HTMLButtonElement>>;
783
+ Textarea: react7.FC<react7.ClassAttributes<HTMLTextAreaElement> & react7.TextareaHTMLAttributes<HTMLTextAreaElement>>;
710
784
  }, Component_9, Decorator_9>): JSX.Element;
711
785
  displayName: string;
712
786
  };