@pixpilot/formily-shadcn 0.13.4 → 0.14.1

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