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