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