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