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