@pixpilot/formily-shadcn 0.9.1 → 0.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (83) hide show
  1. package/README.md +75 -0
  2. package/dist/components/array-base/components/array-item-label.cjs +1 -1
  3. package/dist/components/array-base/components/array-item-label.js +1 -1
  4. package/dist/components/checkbox.d.cts +2 -2
  5. package/dist/components/checkbox.d.ts +2 -2
  6. package/dist/components/column.d.ts +2 -2
  7. package/dist/components/context/form-context.d.cts +20 -16
  8. package/dist/components/context/form-context.d.ts +20 -16
  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.ts +8 -8
  14. package/dist/components/file-upload/file-upload.d.ts +8 -8
  15. package/dist/components/file-upload/use-file-upload-feedback.cjs +2 -2
  16. package/dist/components/file-upload/use-file-upload-feedback.js +2 -2
  17. package/dist/components/form-grid.d.ts +2 -2
  18. package/dist/components/form-items-container.cjs +2 -5
  19. package/dist/components/form-items-container.js +2 -5
  20. package/dist/components/form.cjs +3 -5
  21. package/dist/components/form.d.cts +1 -2
  22. package/dist/components/form.d.ts +1 -2
  23. package/dist/components/form.js +3 -5
  24. package/dist/components/icon-picker.cjs +2 -2
  25. package/dist/components/icon-picker.d.ts +3 -3
  26. package/dist/components/icon-picker.js +2 -2
  27. package/dist/components/input.d.cts +2 -2
  28. package/dist/components/json-schema-form-renderer.cjs +34 -7
  29. package/dist/components/json-schema-form-renderer.d.cts +8 -3
  30. package/dist/components/json-schema-form-renderer.d.ts +8 -3
  31. package/dist/components/json-schema-form-renderer.js +32 -7
  32. package/dist/components/number-input.d.cts +2 -2
  33. package/dist/components/number-input.d.ts +2 -2
  34. package/dist/components/object-container.cjs +33 -7
  35. package/dist/components/object-container.js +34 -8
  36. package/dist/components/radio.d.ts +2 -2
  37. package/dist/components/rich-text-editor.cjs +1 -1
  38. package/dist/components/rich-text-editor.js +1 -1
  39. package/dist/components/row.d.ts +2 -2
  40. package/dist/components/schema-field/index.d.cts +1 -1
  41. package/dist/components/schema-field/index.d.ts +1 -1
  42. package/dist/components/schema-field/index.js +1 -1
  43. package/dist/components/schema-field/schema-field-basics.cjs +4 -4
  44. package/dist/components/schema-field/schema-field-basics.d.cts +194 -194
  45. package/dist/components/schema-field/schema-field-basics.d.ts +209 -209
  46. package/dist/components/schema-field/schema-field-basics.js +3 -3
  47. package/dist/components/schema-field/schema-field-extended.d.cts +427 -427
  48. package/dist/components/schema-field/schema-field-extended.d.ts +427 -427
  49. package/dist/components/schema-field/schema-field.cjs +1 -1
  50. package/dist/components/schema-field/schema-field.d.cts +237 -237
  51. package/dist/components/schema-field/schema-field.d.ts +236 -236
  52. package/dist/components/schema-field/schema-field.js +2 -2
  53. package/dist/components/separator.d.cts +2 -2
  54. package/dist/components/separator.d.ts +2 -2
  55. package/dist/components/slider.d.cts +2 -2
  56. package/dist/components/slider.d.ts +2 -2
  57. package/dist/components/switch.d.cts +2 -2
  58. package/dist/components/switch.d.ts +2 -2
  59. package/dist/components/tags-input-inline.d.cts +2 -2
  60. package/dist/components/textarea.d.cts +2 -2
  61. package/dist/components/textarea.d.ts +2 -2
  62. package/dist/hooks/index.js +1 -1
  63. package/dist/hooks/use-form-context.cjs +5 -0
  64. package/dist/hooks/use-form-context.js +5 -1
  65. package/dist/hooks/use-label.cjs +9 -2
  66. package/dist/hooks/use-label.js +9 -2
  67. package/dist/index.cjs +1 -1
  68. package/dist/index.d.cts +2 -2
  69. package/dist/index.d.ts +2 -2
  70. package/dist/index.js +2 -2
  71. package/dist/types/form.d.cts +0 -6
  72. package/dist/types/form.d.ts +0 -6
  73. package/dist/utils/extract-fields-decorators.cjs +37 -0
  74. package/dist/utils/extract-fields-decorators.js +36 -0
  75. package/dist/utils/index.cjs +2 -0
  76. package/dist/utils/index.js +3 -1
  77. package/dist/utils/resolve-responsive-space.cjs +45 -89
  78. package/dist/utils/resolve-responsive-space.js +42 -83
  79. package/dist/utils/transform-schema.cjs +9 -2
  80. package/dist/utils/transform-schema.js +9 -2
  81. package/dist/utils/validate-schema-components.cjs +45 -0
  82. package/dist/utils/validate-schema-components.js +43 -0
  83. package/package.json +4 -3
@@ -6,374 +6,374 @@ import { FormItemProps } from "../form-item.cjs";
6
6
  import { Row } from "../row.cjs";
7
7
  import { ObjectContainerProps } from "../object-container.cjs";
8
8
  import * as _formily_react11 from "@formily/react";
9
- import * as react488 from "react";
9
+ import * as react418 from "react";
10
10
  import * as _formily_core0 from "@formily/core";
11
- import * as _pixpilot_shadcn_ui236 from "@pixpilot/shadcn-ui";
11
+ import * as _pixpilot_shadcn_ui46 from "@pixpilot/shadcn-ui";
12
12
  import * as _radix_ui_react_checkbox10 from "@radix-ui/react-checkbox";
13
13
  import * as _radix_ui_react_switch10 from "@radix-ui/react-switch";
14
14
  import * as _radix_ui_react_separator10 from "@radix-ui/react-separator";
15
15
 
16
16
  //#region src/components/schema-field/schema-field-basics.d.ts
17
- declare const SchemaFieldBasicComponents: {
18
- FormItem: react488.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
19
- children?: react488.ReactNode | undefined;
20
- }>, "ref"> & react488.RefAttributes<unknown>>;
21
- Hidden: react488.ForwardRefExoticComponent<Partial<{
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<{
22
22
  children?: React.ReactNode;
23
23
  value?: string;
24
- }> & react488.RefAttributes<unknown>>;
25
- Input: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
26
- Textarea: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLTextAreaElement> & react488.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react488.RefAttributes<unknown>>;
27
- NumberInput: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
28
- Checkbox: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
29
- Radio: react488.FC;
30
- Select: react488.FC;
31
- Switch: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch10.SwitchProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
32
- DatePicker: react488.ForwardRefExoticComponent<Partial<{
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<{
33
33
  value?: Date;
34
34
  onChange?: (date: Date | undefined) => void;
35
35
  placeholder?: string;
36
- } & Omit<_pixpilot_shadcn_ui236.DatePickerProps, "onSelect" | "selected" | "mode">> & react488.RefAttributes<unknown>>;
36
+ } & Omit<_pixpilot_shadcn_ui46.DatePickerProps, "onSelect" | "selected" | "mode">> & react418.RefAttributes<unknown>>;
37
37
  Row: typeof Row;
38
38
  Column: typeof Column;
39
39
  FormGrid: typeof FormGrid;
40
- Separator: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react488.RefAttributes<HTMLDivElement>>, "ref"> & react488.RefAttributes<unknown>>;
40
+ Separator: react418.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react418.RefAttributes<HTMLDivElement>>, "ref"> & react418.RefAttributes<unknown>>;
41
41
  ArrayCards: ComposedArrayProps;
42
- ArrayDialog: react488.FC<ArrayComponentProps>;
43
- ArrayCollapse: react488.FC<ArrayComponentProps & {
42
+ ArrayDialog: react418.FC<ArrayComponentProps>;
43
+ ArrayCollapse: react418.FC<ArrayComponentProps & {
44
44
  defaultActiveKey?: Array<string | number>;
45
45
  mode?: "accordion" | "multiple";
46
46
  }>;
47
- ArrayPopover: react488.FC<ArrayComponentProps>;
48
- ObjectContainer: react488.FC<ObjectContainerProps>;
47
+ ArrayPopover: react418.FC<ArrayComponentProps>;
48
+ ObjectContainer: react418.FC<ObjectContainerProps>;
49
49
  };
50
50
  declare const SchemaFieldBasics: {
51
51
  <Decorator extends _formily_react11.JSXComponent, Component extends _formily_react11.JSXComponent>(props: _formily_react11.ISchemaFieldProps<Decorator, Component, _formily_core0.ObjectField<Decorator, Component>>): JSX.Element;
52
52
  displayName: string;
53
53
  Markup: {
54
54
  <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: react488.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
56
- children?: react488.ReactNode | undefined;
57
- }>, "ref"> & react488.RefAttributes<unknown>>;
58
- Hidden: react488.ForwardRefExoticComponent<Partial<{
55
+ FormItem: react418.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
56
+ children?: react418.ReactNode | undefined;
57
+ }>, "ref"> & react418.RefAttributes<unknown>>;
58
+ Hidden: react418.ForwardRefExoticComponent<Partial<{
59
59
  children?: React.ReactNode;
60
60
  value?: string;
61
- }> & react488.RefAttributes<unknown>>;
62
- Input: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
63
- Textarea: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLTextAreaElement> & react488.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react488.RefAttributes<unknown>>;
64
- NumberInput: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
65
- Checkbox: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
66
- Radio: react488.FC;
67
- Select: react488.FC;
68
- Switch: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch10.SwitchProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
69
- DatePicker: react488.ForwardRefExoticComponent<Partial<{
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<{
70
70
  value?: Date;
71
71
  onChange?: (date: Date | undefined) => void;
72
72
  placeholder?: string;
73
- } & Omit<_pixpilot_shadcn_ui236.DatePickerProps, "onSelect" | "selected" | "mode">> & react488.RefAttributes<unknown>>;
73
+ } & Omit<_pixpilot_shadcn_ui46.DatePickerProps, "onSelect" | "selected" | "mode">> & react418.RefAttributes<unknown>>;
74
74
  Row: typeof Row;
75
75
  Column: typeof Column;
76
76
  FormGrid: typeof FormGrid;
77
- Separator: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react488.RefAttributes<HTMLDivElement>>, "ref"> & react488.RefAttributes<unknown>>;
77
+ Separator: react418.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react418.RefAttributes<HTMLDivElement>>, "ref"> & react418.RefAttributes<unknown>>;
78
78
  ArrayCards: ComposedArrayProps;
79
- ArrayDialog: react488.FC<ArrayComponentProps>;
80
- ArrayCollapse: react488.FC<ArrayComponentProps & {
79
+ ArrayDialog: react418.FC<ArrayComponentProps>;
80
+ ArrayCollapse: react418.FC<ArrayComponentProps & {
81
81
  defaultActiveKey?: Array<string | number>;
82
82
  mode?: "accordion" | "multiple";
83
83
  }>;
84
- ArrayPopover: react488.FC<ArrayComponentProps>;
85
- ObjectContainer: react488.FC<ObjectContainerProps>;
84
+ ArrayPopover: react418.FC<ArrayComponentProps>;
85
+ ObjectContainer: react418.FC<ObjectContainerProps>;
86
86
  }, Component_1, Decorator_1>): JSX.Element;
87
87
  displayName: string;
88
88
  };
89
89
  String: {
90
90
  <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: react488.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
92
- children?: react488.ReactNode | undefined;
93
- }>, "ref"> & react488.RefAttributes<unknown>>;
94
- Hidden: react488.ForwardRefExoticComponent<Partial<{
91
+ FormItem: react418.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
92
+ children?: react418.ReactNode | undefined;
93
+ }>, "ref"> & react418.RefAttributes<unknown>>;
94
+ Hidden: react418.ForwardRefExoticComponent<Partial<{
95
95
  children?: React.ReactNode;
96
96
  value?: string;
97
- }> & react488.RefAttributes<unknown>>;
98
- Input: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
99
- Textarea: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLTextAreaElement> & react488.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react488.RefAttributes<unknown>>;
100
- NumberInput: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
101
- Checkbox: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
102
- Radio: react488.FC;
103
- Select: react488.FC;
104
- Switch: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch10.SwitchProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
105
- DatePicker: react488.ForwardRefExoticComponent<Partial<{
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<{
106
106
  value?: Date;
107
107
  onChange?: (date: Date | undefined) => void;
108
108
  placeholder?: string;
109
- } & Omit<_pixpilot_shadcn_ui236.DatePickerProps, "onSelect" | "selected" | "mode">> & react488.RefAttributes<unknown>>;
109
+ } & Omit<_pixpilot_shadcn_ui46.DatePickerProps, "onSelect" | "selected" | "mode">> & react418.RefAttributes<unknown>>;
110
110
  Row: typeof Row;
111
111
  Column: typeof Column;
112
112
  FormGrid: typeof FormGrid;
113
- Separator: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react488.RefAttributes<HTMLDivElement>>, "ref"> & react488.RefAttributes<unknown>>;
113
+ Separator: react418.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react418.RefAttributes<HTMLDivElement>>, "ref"> & react418.RefAttributes<unknown>>;
114
114
  ArrayCards: ComposedArrayProps;
115
- ArrayDialog: react488.FC<ArrayComponentProps>;
116
- ArrayCollapse: react488.FC<ArrayComponentProps & {
115
+ ArrayDialog: react418.FC<ArrayComponentProps>;
116
+ ArrayCollapse: react418.FC<ArrayComponentProps & {
117
117
  defaultActiveKey?: Array<string | number>;
118
118
  mode?: "accordion" | "multiple";
119
119
  }>;
120
- ArrayPopover: react488.FC<ArrayComponentProps>;
121
- ObjectContainer: react488.FC<ObjectContainerProps>;
120
+ ArrayPopover: react418.FC<ArrayComponentProps>;
121
+ ObjectContainer: react418.FC<ObjectContainerProps>;
122
122
  }, Component_2, Decorator_2>): JSX.Element;
123
123
  displayName: string;
124
124
  };
125
125
  Object: {
126
126
  <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: react488.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
128
- children?: react488.ReactNode | undefined;
129
- }>, "ref"> & react488.RefAttributes<unknown>>;
130
- Hidden: react488.ForwardRefExoticComponent<Partial<{
127
+ FormItem: react418.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
128
+ children?: react418.ReactNode | undefined;
129
+ }>, "ref"> & react418.RefAttributes<unknown>>;
130
+ Hidden: react418.ForwardRefExoticComponent<Partial<{
131
131
  children?: React.ReactNode;
132
132
  value?: string;
133
- }> & react488.RefAttributes<unknown>>;
134
- Input: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
135
- Textarea: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLTextAreaElement> & react488.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react488.RefAttributes<unknown>>;
136
- NumberInput: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
137
- Checkbox: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
138
- Radio: react488.FC;
139
- Select: react488.FC;
140
- Switch: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch10.SwitchProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
141
- DatePicker: react488.ForwardRefExoticComponent<Partial<{
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<{
142
142
  value?: Date;
143
143
  onChange?: (date: Date | undefined) => void;
144
144
  placeholder?: string;
145
- } & Omit<_pixpilot_shadcn_ui236.DatePickerProps, "onSelect" | "selected" | "mode">> & react488.RefAttributes<unknown>>;
145
+ } & Omit<_pixpilot_shadcn_ui46.DatePickerProps, "onSelect" | "selected" | "mode">> & react418.RefAttributes<unknown>>;
146
146
  Row: typeof Row;
147
147
  Column: typeof Column;
148
148
  FormGrid: typeof FormGrid;
149
- Separator: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react488.RefAttributes<HTMLDivElement>>, "ref"> & react488.RefAttributes<unknown>>;
149
+ Separator: react418.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react418.RefAttributes<HTMLDivElement>>, "ref"> & react418.RefAttributes<unknown>>;
150
150
  ArrayCards: ComposedArrayProps;
151
- ArrayDialog: react488.FC<ArrayComponentProps>;
152
- ArrayCollapse: react488.FC<ArrayComponentProps & {
151
+ ArrayDialog: react418.FC<ArrayComponentProps>;
152
+ ArrayCollapse: react418.FC<ArrayComponentProps & {
153
153
  defaultActiveKey?: Array<string | number>;
154
154
  mode?: "accordion" | "multiple";
155
155
  }>;
156
- ArrayPopover: react488.FC<ArrayComponentProps>;
157
- ObjectContainer: react488.FC<ObjectContainerProps>;
156
+ ArrayPopover: react418.FC<ArrayComponentProps>;
157
+ ObjectContainer: react418.FC<ObjectContainerProps>;
158
158
  }, Component_3, Decorator_3>): JSX.Element;
159
159
  displayName: string;
160
160
  };
161
161
  Array: {
162
162
  <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: react488.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
164
- children?: react488.ReactNode | undefined;
165
- }>, "ref"> & react488.RefAttributes<unknown>>;
166
- Hidden: react488.ForwardRefExoticComponent<Partial<{
163
+ FormItem: react418.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
164
+ children?: react418.ReactNode | undefined;
165
+ }>, "ref"> & react418.RefAttributes<unknown>>;
166
+ Hidden: react418.ForwardRefExoticComponent<Partial<{
167
167
  children?: React.ReactNode;
168
168
  value?: string;
169
- }> & react488.RefAttributes<unknown>>;
170
- Input: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
171
- Textarea: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLTextAreaElement> & react488.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react488.RefAttributes<unknown>>;
172
- NumberInput: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
173
- Checkbox: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
174
- Radio: react488.FC;
175
- Select: react488.FC;
176
- Switch: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch10.SwitchProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
177
- DatePicker: react488.ForwardRefExoticComponent<Partial<{
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<{
178
178
  value?: Date;
179
179
  onChange?: (date: Date | undefined) => void;
180
180
  placeholder?: string;
181
- } & Omit<_pixpilot_shadcn_ui236.DatePickerProps, "onSelect" | "selected" | "mode">> & react488.RefAttributes<unknown>>;
181
+ } & Omit<_pixpilot_shadcn_ui46.DatePickerProps, "onSelect" | "selected" | "mode">> & react418.RefAttributes<unknown>>;
182
182
  Row: typeof Row;
183
183
  Column: typeof Column;
184
184
  FormGrid: typeof FormGrid;
185
- Separator: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react488.RefAttributes<HTMLDivElement>>, "ref"> & react488.RefAttributes<unknown>>;
185
+ Separator: react418.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react418.RefAttributes<HTMLDivElement>>, "ref"> & react418.RefAttributes<unknown>>;
186
186
  ArrayCards: ComposedArrayProps;
187
- ArrayDialog: react488.FC<ArrayComponentProps>;
188
- ArrayCollapse: react488.FC<ArrayComponentProps & {
187
+ ArrayDialog: react418.FC<ArrayComponentProps>;
188
+ ArrayCollapse: react418.FC<ArrayComponentProps & {
189
189
  defaultActiveKey?: Array<string | number>;
190
190
  mode?: "accordion" | "multiple";
191
191
  }>;
192
- ArrayPopover: react488.FC<ArrayComponentProps>;
193
- ObjectContainer: react488.FC<ObjectContainerProps>;
192
+ ArrayPopover: react418.FC<ArrayComponentProps>;
193
+ ObjectContainer: react418.FC<ObjectContainerProps>;
194
194
  }, Component_4, Decorator_4>): JSX.Element;
195
195
  displayName: string;
196
196
  };
197
197
  Boolean: {
198
198
  <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: react488.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
200
- children?: react488.ReactNode | undefined;
201
- }>, "ref"> & react488.RefAttributes<unknown>>;
202
- Hidden: react488.ForwardRefExoticComponent<Partial<{
199
+ FormItem: react418.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
200
+ children?: react418.ReactNode | undefined;
201
+ }>, "ref"> & react418.RefAttributes<unknown>>;
202
+ Hidden: react418.ForwardRefExoticComponent<Partial<{
203
203
  children?: React.ReactNode;
204
204
  value?: string;
205
- }> & react488.RefAttributes<unknown>>;
206
- Input: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
207
- Textarea: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLTextAreaElement> & react488.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react488.RefAttributes<unknown>>;
208
- NumberInput: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
209
- Checkbox: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
210
- Radio: react488.FC;
211
- Select: react488.FC;
212
- Switch: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch10.SwitchProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
213
- DatePicker: react488.ForwardRefExoticComponent<Partial<{
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<{
214
214
  value?: Date;
215
215
  onChange?: (date: Date | undefined) => void;
216
216
  placeholder?: string;
217
- } & Omit<_pixpilot_shadcn_ui236.DatePickerProps, "onSelect" | "selected" | "mode">> & react488.RefAttributes<unknown>>;
217
+ } & Omit<_pixpilot_shadcn_ui46.DatePickerProps, "onSelect" | "selected" | "mode">> & react418.RefAttributes<unknown>>;
218
218
  Row: typeof Row;
219
219
  Column: typeof Column;
220
220
  FormGrid: typeof FormGrid;
221
- Separator: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react488.RefAttributes<HTMLDivElement>>, "ref"> & react488.RefAttributes<unknown>>;
221
+ Separator: react418.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react418.RefAttributes<HTMLDivElement>>, "ref"> & react418.RefAttributes<unknown>>;
222
222
  ArrayCards: ComposedArrayProps;
223
- ArrayDialog: react488.FC<ArrayComponentProps>;
224
- ArrayCollapse: react488.FC<ArrayComponentProps & {
223
+ ArrayDialog: react418.FC<ArrayComponentProps>;
224
+ ArrayCollapse: react418.FC<ArrayComponentProps & {
225
225
  defaultActiveKey?: Array<string | number>;
226
226
  mode?: "accordion" | "multiple";
227
227
  }>;
228
- ArrayPopover: react488.FC<ArrayComponentProps>;
229
- ObjectContainer: react488.FC<ObjectContainerProps>;
228
+ ArrayPopover: react418.FC<ArrayComponentProps>;
229
+ ObjectContainer: react418.FC<ObjectContainerProps>;
230
230
  }, Component_5, Decorator_5>): JSX.Element;
231
231
  displayName: string;
232
232
  };
233
233
  Date: {
234
234
  <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: react488.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
236
- children?: react488.ReactNode | undefined;
237
- }>, "ref"> & react488.RefAttributes<unknown>>;
238
- Hidden: react488.ForwardRefExoticComponent<Partial<{
235
+ FormItem: react418.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
236
+ children?: react418.ReactNode | undefined;
237
+ }>, "ref"> & react418.RefAttributes<unknown>>;
238
+ Hidden: react418.ForwardRefExoticComponent<Partial<{
239
239
  children?: React.ReactNode;
240
240
  value?: string;
241
- }> & react488.RefAttributes<unknown>>;
242
- Input: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
243
- Textarea: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLTextAreaElement> & react488.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react488.RefAttributes<unknown>>;
244
- NumberInput: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
245
- Checkbox: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
246
- Radio: react488.FC;
247
- Select: react488.FC;
248
- Switch: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch10.SwitchProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
249
- DatePicker: react488.ForwardRefExoticComponent<Partial<{
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<{
250
250
  value?: Date;
251
251
  onChange?: (date: Date | undefined) => void;
252
252
  placeholder?: string;
253
- } & Omit<_pixpilot_shadcn_ui236.DatePickerProps, "onSelect" | "selected" | "mode">> & react488.RefAttributes<unknown>>;
253
+ } & Omit<_pixpilot_shadcn_ui46.DatePickerProps, "onSelect" | "selected" | "mode">> & react418.RefAttributes<unknown>>;
254
254
  Row: typeof Row;
255
255
  Column: typeof Column;
256
256
  FormGrid: typeof FormGrid;
257
- Separator: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react488.RefAttributes<HTMLDivElement>>, "ref"> & react488.RefAttributes<unknown>>;
257
+ Separator: react418.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react418.RefAttributes<HTMLDivElement>>, "ref"> & react418.RefAttributes<unknown>>;
258
258
  ArrayCards: ComposedArrayProps;
259
- ArrayDialog: react488.FC<ArrayComponentProps>;
260
- ArrayCollapse: react488.FC<ArrayComponentProps & {
259
+ ArrayDialog: react418.FC<ArrayComponentProps>;
260
+ ArrayCollapse: react418.FC<ArrayComponentProps & {
261
261
  defaultActiveKey?: Array<string | number>;
262
262
  mode?: "accordion" | "multiple";
263
263
  }>;
264
- ArrayPopover: react488.FC<ArrayComponentProps>;
265
- ObjectContainer: react488.FC<ObjectContainerProps>;
264
+ ArrayPopover: react418.FC<ArrayComponentProps>;
265
+ ObjectContainer: react418.FC<ObjectContainerProps>;
266
266
  }, Component_6, Decorator_6>): JSX.Element;
267
267
  displayName: string;
268
268
  };
269
269
  DateTime: {
270
270
  <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: react488.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
272
- children?: react488.ReactNode | undefined;
273
- }>, "ref"> & react488.RefAttributes<unknown>>;
274
- Hidden: react488.ForwardRefExoticComponent<Partial<{
271
+ FormItem: react418.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
272
+ children?: react418.ReactNode | undefined;
273
+ }>, "ref"> & react418.RefAttributes<unknown>>;
274
+ Hidden: react418.ForwardRefExoticComponent<Partial<{
275
275
  children?: React.ReactNode;
276
276
  value?: string;
277
- }> & react488.RefAttributes<unknown>>;
278
- Input: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
279
- Textarea: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLTextAreaElement> & react488.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react488.RefAttributes<unknown>>;
280
- NumberInput: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
281
- Checkbox: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
282
- Radio: react488.FC;
283
- Select: react488.FC;
284
- Switch: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch10.SwitchProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
285
- DatePicker: react488.ForwardRefExoticComponent<Partial<{
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<{
286
286
  value?: Date;
287
287
  onChange?: (date: Date | undefined) => void;
288
288
  placeholder?: string;
289
- } & Omit<_pixpilot_shadcn_ui236.DatePickerProps, "onSelect" | "selected" | "mode">> & react488.RefAttributes<unknown>>;
289
+ } & Omit<_pixpilot_shadcn_ui46.DatePickerProps, "onSelect" | "selected" | "mode">> & react418.RefAttributes<unknown>>;
290
290
  Row: typeof Row;
291
291
  Column: typeof Column;
292
292
  FormGrid: typeof FormGrid;
293
- Separator: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react488.RefAttributes<HTMLDivElement>>, "ref"> & react488.RefAttributes<unknown>>;
293
+ Separator: react418.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react418.RefAttributes<HTMLDivElement>>, "ref"> & react418.RefAttributes<unknown>>;
294
294
  ArrayCards: ComposedArrayProps;
295
- ArrayDialog: react488.FC<ArrayComponentProps>;
296
- ArrayCollapse: react488.FC<ArrayComponentProps & {
295
+ ArrayDialog: react418.FC<ArrayComponentProps>;
296
+ ArrayCollapse: react418.FC<ArrayComponentProps & {
297
297
  defaultActiveKey?: Array<string | number>;
298
298
  mode?: "accordion" | "multiple";
299
299
  }>;
300
- ArrayPopover: react488.FC<ArrayComponentProps>;
301
- ObjectContainer: react488.FC<ObjectContainerProps>;
300
+ ArrayPopover: react418.FC<ArrayComponentProps>;
301
+ ObjectContainer: react418.FC<ObjectContainerProps>;
302
302
  }, Component_7, Decorator_7>): JSX.Element;
303
303
  displayName: string;
304
304
  };
305
305
  Void: {
306
306
  <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: react488.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
308
- children?: react488.ReactNode | undefined;
309
- }>, "ref"> & react488.RefAttributes<unknown>>;
310
- Hidden: react488.ForwardRefExoticComponent<Partial<{
307
+ FormItem: react418.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
308
+ children?: react418.ReactNode | undefined;
309
+ }>, "ref"> & react418.RefAttributes<unknown>>;
310
+ Hidden: react418.ForwardRefExoticComponent<Partial<{
311
311
  children?: React.ReactNode;
312
312
  value?: string;
313
- }> & react488.RefAttributes<unknown>>;
314
- Input: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
315
- Textarea: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLTextAreaElement> & react488.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react488.RefAttributes<unknown>>;
316
- NumberInput: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
317
- Checkbox: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
318
- Radio: react488.FC;
319
- Select: react488.FC;
320
- Switch: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch10.SwitchProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
321
- DatePicker: react488.ForwardRefExoticComponent<Partial<{
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<{
322
322
  value?: Date;
323
323
  onChange?: (date: Date | undefined) => void;
324
324
  placeholder?: string;
325
- } & Omit<_pixpilot_shadcn_ui236.DatePickerProps, "onSelect" | "selected" | "mode">> & react488.RefAttributes<unknown>>;
325
+ } & Omit<_pixpilot_shadcn_ui46.DatePickerProps, "onSelect" | "selected" | "mode">> & react418.RefAttributes<unknown>>;
326
326
  Row: typeof Row;
327
327
  Column: typeof Column;
328
328
  FormGrid: typeof FormGrid;
329
- Separator: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react488.RefAttributes<HTMLDivElement>>, "ref"> & react488.RefAttributes<unknown>>;
329
+ Separator: react418.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react418.RefAttributes<HTMLDivElement>>, "ref"> & react418.RefAttributes<unknown>>;
330
330
  ArrayCards: ComposedArrayProps;
331
- ArrayDialog: react488.FC<ArrayComponentProps>;
332
- ArrayCollapse: react488.FC<ArrayComponentProps & {
331
+ ArrayDialog: react418.FC<ArrayComponentProps>;
332
+ ArrayCollapse: react418.FC<ArrayComponentProps & {
333
333
  defaultActiveKey?: Array<string | number>;
334
334
  mode?: "accordion" | "multiple";
335
335
  }>;
336
- ArrayPopover: react488.FC<ArrayComponentProps>;
337
- ObjectContainer: react488.FC<ObjectContainerProps>;
336
+ ArrayPopover: react418.FC<ArrayComponentProps>;
337
+ ObjectContainer: react418.FC<ObjectContainerProps>;
338
338
  }, Component_8, Decorator_8>): JSX.Element;
339
339
  displayName: string;
340
340
  };
341
341
  Number: {
342
342
  <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: react488.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
344
- children?: react488.ReactNode | undefined;
345
- }>, "ref"> & react488.RefAttributes<unknown>>;
346
- Hidden: react488.ForwardRefExoticComponent<Partial<{
343
+ FormItem: react418.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
344
+ children?: react418.ReactNode | undefined;
345
+ }>, "ref"> & react418.RefAttributes<unknown>>;
346
+ Hidden: react418.ForwardRefExoticComponent<Partial<{
347
347
  children?: React.ReactNode;
348
348
  value?: string;
349
- }> & react488.RefAttributes<unknown>>;
350
- Input: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
351
- Textarea: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLTextAreaElement> & react488.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react488.RefAttributes<unknown>>;
352
- NumberInput: react488.ForwardRefExoticComponent<Omit<Partial<react488.ClassAttributes<HTMLInputElement> & react488.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react488.RefAttributes<unknown>>;
353
- Checkbox: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox10.CheckboxProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
354
- Radio: react488.FC;
355
- Select: react488.FC;
356
- Switch: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch10.SwitchProps & react488.RefAttributes<HTMLButtonElement>>, "ref"> & react488.RefAttributes<unknown>>;
357
- DatePicker: react488.ForwardRefExoticComponent<Partial<{
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<{
358
358
  value?: Date;
359
359
  onChange?: (date: Date | undefined) => void;
360
360
  placeholder?: string;
361
- } & Omit<_pixpilot_shadcn_ui236.DatePickerProps, "onSelect" | "selected" | "mode">> & react488.RefAttributes<unknown>>;
361
+ } & Omit<_pixpilot_shadcn_ui46.DatePickerProps, "onSelect" | "selected" | "mode">> & react418.RefAttributes<unknown>>;
362
362
  Row: typeof Row;
363
363
  Column: typeof Column;
364
364
  FormGrid: typeof FormGrid;
365
- Separator: react488.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react488.RefAttributes<HTMLDivElement>>, "ref"> & react488.RefAttributes<unknown>>;
365
+ Separator: react418.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator10.SeparatorProps & react418.RefAttributes<HTMLDivElement>>, "ref"> & react418.RefAttributes<unknown>>;
366
366
  ArrayCards: ComposedArrayProps;
367
- ArrayDialog: react488.FC<ArrayComponentProps>;
368
- ArrayCollapse: react488.FC<ArrayComponentProps & {
367
+ ArrayDialog: react418.FC<ArrayComponentProps>;
368
+ ArrayCollapse: react418.FC<ArrayComponentProps & {
369
369
  defaultActiveKey?: Array<string | number>;
370
370
  mode?: "accordion" | "multiple";
371
371
  }>;
372
- ArrayPopover: react488.FC<ArrayComponentProps>;
373
- ObjectContainer: react488.FC<ObjectContainerProps>;
372
+ ArrayPopover: react418.FC<ArrayComponentProps>;
373
+ ObjectContainer: react418.FC<ObjectContainerProps>;
374
374
  }, Component_9, Decorator_9>): JSX.Element;
375
375
  displayName: string;
376
376
  };
377
377
  };
378
378
  //#endregion
379
- export { SchemaFieldBasicComponents, SchemaFieldBasics };
379
+ export { SchemaFieldBasics, schemaFieldBasicComponents };