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