@pixpilot/formily-shadcn 1.7.4 → 1.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.
- package/dist/components/Checkbox.d.ts +2 -2
- package/dist/components/DatePicker.d.ts +3 -3
- package/dist/components/IconPicker.d.cts +3 -3
- package/dist/components/IconPicker.d.ts +3 -3
- package/dist/components/IconToggle.d.cts +2 -2
- package/dist/components/Radio.d.ts +2 -2
- package/dist/components/Row.d.ts +2 -2
- package/dist/components/Separator.d.ts +2 -2
- package/dist/components/Switch.d.ts +2 -2
- package/dist/components/TagsInputInline.d.ts +2 -2
- package/dist/components/Textarea.d.ts +2 -2
- package/dist/components/file-upload/AvatarUpload.cjs +2 -6
- package/dist/components/file-upload/AvatarUpload.js +2 -6
- package/dist/components/file-upload/FileUpload.cjs +4 -8
- package/dist/components/file-upload/FileUpload.d.cts +10 -10
- package/dist/components/file-upload/FileUpload.d.ts +10 -10
- package/dist/components/file-upload/FileUpload.js +4 -8
- package/dist/components/file-upload/FileUploadInline.cjs +2 -6
- package/dist/components/file-upload/FileUploadInline.d.cts +8 -8
- package/dist/components/file-upload/FileUploadInline.d.ts +8 -8
- package/dist/components/file-upload/FileUploadInline.js +2 -6
- package/dist/components/file-upload/map-upload-props.cjs +46 -0
- package/dist/components/file-upload/map-upload-props.js +45 -0
- package/dist/components/schema-field/schema-field-basics.d.cts +303 -303
- package/dist/components/schema-field/schema-field-basics.d.ts +34 -34
- package/dist/components/schema-field/schema-field-extended.d.cts +298 -298
- package/dist/components/schema-field/schema-field-extended.d.ts +298 -298
- package/dist/components/schema-field/schema-field.d.cts +413 -413
- package/dist/components/schema-field/schema-field.d.ts +100 -100
- package/dist/components/slider/Slider.d.cts +3 -3
- package/dist/components/slider/Slider.d.ts +3 -3
- package/dist/components/slider/SliderInput.d.cts +2 -2
- package/dist/components/slider/SliderInput.d.ts +3 -3
- package/dist/components/slider/SliderSelect.d.cts +3 -3
- package/dist/components/slider/SliderSelect.d.ts +3 -3
- package/package.json +4 -4
|
@@ -16,7 +16,7 @@ import { ToggleGroupBaseProps } from "../ToggleGroup.js";
|
|
|
16
16
|
import * as _formily_react1 from "@formily/react";
|
|
17
17
|
import { ISchema } from "@formily/react";
|
|
18
18
|
import * as react35 from "react";
|
|
19
|
-
import * as
|
|
19
|
+
import * as _pixpilot_shadcn_ui27 from "@pixpilot/shadcn-ui";
|
|
20
20
|
import { TagsInput } from "@pixpilot/shadcn-ui";
|
|
21
21
|
import * as _formily_core0 from "@formily/core";
|
|
22
22
|
import * as _radix_ui_react_checkbox0 from "@radix-ui/react-checkbox";
|
|
@@ -26,7 +26,7 @@ import * as _radix_ui_react_switch0 from "@radix-ui/react-switch";
|
|
|
26
26
|
//#region src/components/schema-field/schema-field.d.ts
|
|
27
27
|
declare const defaultComponentRegistry: {
|
|
28
28
|
ColorPicker: {
|
|
29
|
-
component: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
29
|
+
component: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.ColorPickerProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
30
30
|
decorator: string;
|
|
31
31
|
};
|
|
32
32
|
Combobox: {
|
|
@@ -38,21 +38,21 @@ declare const defaultComponentRegistry: {
|
|
|
38
38
|
decorator: string;
|
|
39
39
|
};
|
|
40
40
|
Rating: {
|
|
41
|
-
component: react35.ForwardRefExoticComponent<Partial<
|
|
41
|
+
component: react35.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui27.RatingProps & {
|
|
42
42
|
children?: react35.ReactNode | undefined;
|
|
43
43
|
}> & react35.RefAttributes<unknown>>;
|
|
44
44
|
decorator: string;
|
|
45
45
|
};
|
|
46
46
|
Slider: {
|
|
47
|
-
component: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
47
|
+
component: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
48
48
|
decorator: string;
|
|
49
49
|
};
|
|
50
50
|
SliderInput: {
|
|
51
|
-
component: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
51
|
+
component: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderInputProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
52
52
|
decorator: string;
|
|
53
53
|
};
|
|
54
54
|
SliderSelect: {
|
|
55
|
-
component: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
55
|
+
component: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderSelectProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
56
56
|
decorator: string;
|
|
57
57
|
};
|
|
58
58
|
TagsInput: {
|
|
@@ -60,7 +60,7 @@ declare const defaultComponentRegistry: {
|
|
|
60
60
|
decorator: string;
|
|
61
61
|
};
|
|
62
62
|
TagsInputInLine: {
|
|
63
|
-
component: react35.ForwardRefExoticComponent<Partial<
|
|
63
|
+
component: react35.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui27.TagsInputProps> & react35.RefAttributes<unknown>>;
|
|
64
64
|
decorator: string;
|
|
65
65
|
};
|
|
66
66
|
ArrayCards: {
|
|
@@ -115,7 +115,7 @@ declare const defaultComponentRegistry: {
|
|
|
115
115
|
value?: Date;
|
|
116
116
|
onChange?: (date: Date | undefined) => void;
|
|
117
117
|
placeholder?: string;
|
|
118
|
-
} & Omit<
|
|
118
|
+
} & Omit<_pixpilot_shadcn_ui27.DatePickerProps, "onSelect" | "selected" | "mode">> & react35.RefAttributes<unknown>>;
|
|
119
119
|
decorator: string;
|
|
120
120
|
};
|
|
121
121
|
FormGrid: {
|
|
@@ -133,11 +133,11 @@ declare const defaultComponentRegistry: {
|
|
|
133
133
|
}> & react35.RefAttributes<unknown>>;
|
|
134
134
|
};
|
|
135
135
|
IconToggle: {
|
|
136
|
-
component: react35.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
136
|
+
component: react35.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui27.IconToggleProps, "ref"> & react35.RefAttributes<HTMLButtonElement>>, "ref"> & react35.RefAttributes<unknown>>;
|
|
137
137
|
decorator: string;
|
|
138
138
|
};
|
|
139
139
|
ToggleButton: {
|
|
140
|
-
component: react35.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
140
|
+
component: react35.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui27.ToggleButtonProps, "ref"> & react35.RefAttributes<HTMLButtonElement>>, "ref"> & react35.RefAttributes<unknown>>;
|
|
141
141
|
decorator: string;
|
|
142
142
|
};
|
|
143
143
|
Input: {
|
|
@@ -188,17 +188,17 @@ declare const defaultComponentRegistry: {
|
|
|
188
188
|
};
|
|
189
189
|
};
|
|
190
190
|
declare const defaultComponents: {
|
|
191
|
-
ColorPicker: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
191
|
+
ColorPicker: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.ColorPickerProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
192
192
|
Combobox: react35.FC;
|
|
193
193
|
ColorSelect: react35.FC;
|
|
194
|
-
Rating: react35.ForwardRefExoticComponent<Partial<
|
|
194
|
+
Rating: react35.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui27.RatingProps & {
|
|
195
195
|
children?: react35.ReactNode | undefined;
|
|
196
196
|
}> & react35.RefAttributes<unknown>>;
|
|
197
|
-
Slider: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
198
|
-
SliderInput: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
199
|
-
SliderSelect: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
197
|
+
Slider: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
198
|
+
SliderInput: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderInputProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
199
|
+
SliderSelect: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderSelectProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
200
200
|
TagsInput: typeof TagsInput;
|
|
201
|
-
TagsInputInLine: react35.ForwardRefExoticComponent<Partial<
|
|
201
|
+
TagsInputInLine: react35.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui27.TagsInputProps> & react35.RefAttributes<unknown>>;
|
|
202
202
|
ArrayCards: ComposedArrayProps;
|
|
203
203
|
ArrayCollapse: react35.FC<ArrayComponentProps & {
|
|
204
204
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -221,7 +221,7 @@ declare const defaultComponents: {
|
|
|
221
221
|
value?: Date;
|
|
222
222
|
onChange?: (date: Date | undefined) => void;
|
|
223
223
|
placeholder?: string;
|
|
224
|
-
} & Omit<
|
|
224
|
+
} & Omit<_pixpilot_shadcn_ui27.DatePickerProps, "onSelect" | "selected" | "mode">> & react35.RefAttributes<unknown>>;
|
|
225
225
|
FormGrid: typeof FormGrid;
|
|
226
226
|
FormItem: react35.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
227
227
|
children?: react35.ReactNode | undefined;
|
|
@@ -230,8 +230,8 @@ declare const defaultComponents: {
|
|
|
230
230
|
children?: React.ReactNode;
|
|
231
231
|
value?: string;
|
|
232
232
|
}> & react35.RefAttributes<unknown>>;
|
|
233
|
-
IconToggle: react35.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
234
|
-
ToggleButton: react35.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
233
|
+
IconToggle: react35.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui27.IconToggleProps, "ref"> & react35.RefAttributes<HTMLButtonElement>>, "ref"> & react35.RefAttributes<unknown>>;
|
|
234
|
+
ToggleButton: react35.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui27.ToggleButtonProps, "ref"> & react35.RefAttributes<HTMLButtonElement>>, "ref"> & react35.RefAttributes<unknown>>;
|
|
235
235
|
Input: react35.ForwardRefExoticComponent<Omit<Partial<react35.ClassAttributes<HTMLInputElement> & react35.InputHTMLAttributes<HTMLInputElement> & {
|
|
236
236
|
prefix?: React.ReactNode;
|
|
237
237
|
suffix?: React.ReactNode;
|
|
@@ -259,17 +259,17 @@ declare const SchemaField: {
|
|
|
259
259
|
displayName: string;
|
|
260
260
|
Markup: {
|
|
261
261
|
<Decorator_1 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof", Component_1 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof">(props: _formily_react1.ISchemaMarkupFieldProps<{
|
|
262
|
-
ColorPicker: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
262
|
+
ColorPicker: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.ColorPickerProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
263
263
|
Combobox: react35.FC;
|
|
264
264
|
ColorSelect: react35.FC;
|
|
265
|
-
Rating: react35.ForwardRefExoticComponent<Partial<
|
|
265
|
+
Rating: react35.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui27.RatingProps & {
|
|
266
266
|
children?: react35.ReactNode | undefined;
|
|
267
267
|
}> & react35.RefAttributes<unknown>>;
|
|
268
|
-
Slider: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
269
|
-
SliderInput: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
270
|
-
SliderSelect: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
268
|
+
Slider: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
269
|
+
SliderInput: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderInputProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
270
|
+
SliderSelect: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderSelectProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
271
271
|
TagsInput: typeof TagsInput;
|
|
272
|
-
TagsInputInLine: react35.ForwardRefExoticComponent<Partial<
|
|
272
|
+
TagsInputInLine: react35.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui27.TagsInputProps> & react35.RefAttributes<unknown>>;
|
|
273
273
|
ArrayCards: ComposedArrayProps;
|
|
274
274
|
ArrayCollapse: react35.FC<ArrayComponentProps & {
|
|
275
275
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -292,7 +292,7 @@ declare const SchemaField: {
|
|
|
292
292
|
value?: Date;
|
|
293
293
|
onChange?: (date: Date | undefined) => void;
|
|
294
294
|
placeholder?: string;
|
|
295
|
-
} & Omit<
|
|
295
|
+
} & Omit<_pixpilot_shadcn_ui27.DatePickerProps, "onSelect" | "selected" | "mode">> & react35.RefAttributes<unknown>>;
|
|
296
296
|
FormGrid: typeof FormGrid;
|
|
297
297
|
FormItem: react35.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
298
298
|
children?: react35.ReactNode | undefined;
|
|
@@ -301,8 +301,8 @@ declare const SchemaField: {
|
|
|
301
301
|
children?: React.ReactNode;
|
|
302
302
|
value?: string;
|
|
303
303
|
}> & react35.RefAttributes<unknown>>;
|
|
304
|
-
IconToggle: react35.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
305
|
-
ToggleButton: react35.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
304
|
+
IconToggle: react35.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui27.IconToggleProps, "ref"> & react35.RefAttributes<HTMLButtonElement>>, "ref"> & react35.RefAttributes<unknown>>;
|
|
305
|
+
ToggleButton: react35.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui27.ToggleButtonProps, "ref"> & react35.RefAttributes<HTMLButtonElement>>, "ref"> & react35.RefAttributes<unknown>>;
|
|
306
306
|
Input: react35.ForwardRefExoticComponent<Omit<Partial<react35.ClassAttributes<HTMLInputElement> & react35.InputHTMLAttributes<HTMLInputElement> & {
|
|
307
307
|
prefix?: React.ReactNode;
|
|
308
308
|
suffix?: React.ReactNode;
|
|
@@ -329,17 +329,17 @@ declare const SchemaField: {
|
|
|
329
329
|
};
|
|
330
330
|
String: {
|
|
331
331
|
<Decorator_2 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof", Component_2 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
|
|
332
|
-
ColorPicker: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
332
|
+
ColorPicker: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.ColorPickerProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
333
333
|
Combobox: react35.FC;
|
|
334
334
|
ColorSelect: react35.FC;
|
|
335
|
-
Rating: react35.ForwardRefExoticComponent<Partial<
|
|
335
|
+
Rating: react35.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui27.RatingProps & {
|
|
336
336
|
children?: react35.ReactNode | undefined;
|
|
337
337
|
}> & react35.RefAttributes<unknown>>;
|
|
338
|
-
Slider: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
339
|
-
SliderInput: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
340
|
-
SliderSelect: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
338
|
+
Slider: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
339
|
+
SliderInput: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderInputProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
340
|
+
SliderSelect: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderSelectProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
341
341
|
TagsInput: typeof TagsInput;
|
|
342
|
-
TagsInputInLine: react35.ForwardRefExoticComponent<Partial<
|
|
342
|
+
TagsInputInLine: react35.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui27.TagsInputProps> & react35.RefAttributes<unknown>>;
|
|
343
343
|
ArrayCards: ComposedArrayProps;
|
|
344
344
|
ArrayCollapse: react35.FC<ArrayComponentProps & {
|
|
345
345
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -362,7 +362,7 @@ declare const SchemaField: {
|
|
|
362
362
|
value?: Date;
|
|
363
363
|
onChange?: (date: Date | undefined) => void;
|
|
364
364
|
placeholder?: string;
|
|
365
|
-
} & Omit<
|
|
365
|
+
} & Omit<_pixpilot_shadcn_ui27.DatePickerProps, "onSelect" | "selected" | "mode">> & react35.RefAttributes<unknown>>;
|
|
366
366
|
FormGrid: typeof FormGrid;
|
|
367
367
|
FormItem: react35.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
368
368
|
children?: react35.ReactNode | undefined;
|
|
@@ -371,8 +371,8 @@ declare const SchemaField: {
|
|
|
371
371
|
children?: React.ReactNode;
|
|
372
372
|
value?: string;
|
|
373
373
|
}> & react35.RefAttributes<unknown>>;
|
|
374
|
-
IconToggle: react35.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
375
|
-
ToggleButton: react35.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
374
|
+
IconToggle: react35.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui27.IconToggleProps, "ref"> & react35.RefAttributes<HTMLButtonElement>>, "ref"> & react35.RefAttributes<unknown>>;
|
|
375
|
+
ToggleButton: react35.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui27.ToggleButtonProps, "ref"> & react35.RefAttributes<HTMLButtonElement>>, "ref"> & react35.RefAttributes<unknown>>;
|
|
376
376
|
Input: react35.ForwardRefExoticComponent<Omit<Partial<react35.ClassAttributes<HTMLInputElement> & react35.InputHTMLAttributes<HTMLInputElement> & {
|
|
377
377
|
prefix?: React.ReactNode;
|
|
378
378
|
suffix?: React.ReactNode;
|
|
@@ -399,17 +399,17 @@ declare const SchemaField: {
|
|
|
399
399
|
};
|
|
400
400
|
Object: {
|
|
401
401
|
<Decorator_3 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof", Component_3 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
|
|
402
|
-
ColorPicker: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
402
|
+
ColorPicker: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.ColorPickerProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
403
403
|
Combobox: react35.FC;
|
|
404
404
|
ColorSelect: react35.FC;
|
|
405
|
-
Rating: react35.ForwardRefExoticComponent<Partial<
|
|
405
|
+
Rating: react35.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui27.RatingProps & {
|
|
406
406
|
children?: react35.ReactNode | undefined;
|
|
407
407
|
}> & react35.RefAttributes<unknown>>;
|
|
408
|
-
Slider: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
409
|
-
SliderInput: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
410
|
-
SliderSelect: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
408
|
+
Slider: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
409
|
+
SliderInput: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderInputProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
410
|
+
SliderSelect: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderSelectProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
411
411
|
TagsInput: typeof TagsInput;
|
|
412
|
-
TagsInputInLine: react35.ForwardRefExoticComponent<Partial<
|
|
412
|
+
TagsInputInLine: react35.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui27.TagsInputProps> & react35.RefAttributes<unknown>>;
|
|
413
413
|
ArrayCards: ComposedArrayProps;
|
|
414
414
|
ArrayCollapse: react35.FC<ArrayComponentProps & {
|
|
415
415
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -432,7 +432,7 @@ declare const SchemaField: {
|
|
|
432
432
|
value?: Date;
|
|
433
433
|
onChange?: (date: Date | undefined) => void;
|
|
434
434
|
placeholder?: string;
|
|
435
|
-
} & Omit<
|
|
435
|
+
} & Omit<_pixpilot_shadcn_ui27.DatePickerProps, "onSelect" | "selected" | "mode">> & react35.RefAttributes<unknown>>;
|
|
436
436
|
FormGrid: typeof FormGrid;
|
|
437
437
|
FormItem: react35.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
438
438
|
children?: react35.ReactNode | undefined;
|
|
@@ -441,8 +441,8 @@ declare const SchemaField: {
|
|
|
441
441
|
children?: React.ReactNode;
|
|
442
442
|
value?: string;
|
|
443
443
|
}> & react35.RefAttributes<unknown>>;
|
|
444
|
-
IconToggle: react35.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
445
|
-
ToggleButton: react35.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
444
|
+
IconToggle: react35.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui27.IconToggleProps, "ref"> & react35.RefAttributes<HTMLButtonElement>>, "ref"> & react35.RefAttributes<unknown>>;
|
|
445
|
+
ToggleButton: react35.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui27.ToggleButtonProps, "ref"> & react35.RefAttributes<HTMLButtonElement>>, "ref"> & react35.RefAttributes<unknown>>;
|
|
446
446
|
Input: react35.ForwardRefExoticComponent<Omit<Partial<react35.ClassAttributes<HTMLInputElement> & react35.InputHTMLAttributes<HTMLInputElement> & {
|
|
447
447
|
prefix?: React.ReactNode;
|
|
448
448
|
suffix?: React.ReactNode;
|
|
@@ -469,17 +469,17 @@ declare const SchemaField: {
|
|
|
469
469
|
};
|
|
470
470
|
Array: {
|
|
471
471
|
<Decorator_4 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof", Component_4 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
|
|
472
|
-
ColorPicker: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
472
|
+
ColorPicker: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.ColorPickerProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
473
473
|
Combobox: react35.FC;
|
|
474
474
|
ColorSelect: react35.FC;
|
|
475
|
-
Rating: react35.ForwardRefExoticComponent<Partial<
|
|
475
|
+
Rating: react35.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui27.RatingProps & {
|
|
476
476
|
children?: react35.ReactNode | undefined;
|
|
477
477
|
}> & react35.RefAttributes<unknown>>;
|
|
478
|
-
Slider: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
479
|
-
SliderInput: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
480
|
-
SliderSelect: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
478
|
+
Slider: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
479
|
+
SliderInput: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderInputProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
480
|
+
SliderSelect: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderSelectProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
481
481
|
TagsInput: typeof TagsInput;
|
|
482
|
-
TagsInputInLine: react35.ForwardRefExoticComponent<Partial<
|
|
482
|
+
TagsInputInLine: react35.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui27.TagsInputProps> & react35.RefAttributes<unknown>>;
|
|
483
483
|
ArrayCards: ComposedArrayProps;
|
|
484
484
|
ArrayCollapse: react35.FC<ArrayComponentProps & {
|
|
485
485
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -502,7 +502,7 @@ declare const SchemaField: {
|
|
|
502
502
|
value?: Date;
|
|
503
503
|
onChange?: (date: Date | undefined) => void;
|
|
504
504
|
placeholder?: string;
|
|
505
|
-
} & Omit<
|
|
505
|
+
} & Omit<_pixpilot_shadcn_ui27.DatePickerProps, "onSelect" | "selected" | "mode">> & react35.RefAttributes<unknown>>;
|
|
506
506
|
FormGrid: typeof FormGrid;
|
|
507
507
|
FormItem: react35.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
508
508
|
children?: react35.ReactNode | undefined;
|
|
@@ -511,8 +511,8 @@ declare const SchemaField: {
|
|
|
511
511
|
children?: React.ReactNode;
|
|
512
512
|
value?: string;
|
|
513
513
|
}> & react35.RefAttributes<unknown>>;
|
|
514
|
-
IconToggle: react35.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
515
|
-
ToggleButton: react35.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
514
|
+
IconToggle: react35.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui27.IconToggleProps, "ref"> & react35.RefAttributes<HTMLButtonElement>>, "ref"> & react35.RefAttributes<unknown>>;
|
|
515
|
+
ToggleButton: react35.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui27.ToggleButtonProps, "ref"> & react35.RefAttributes<HTMLButtonElement>>, "ref"> & react35.RefAttributes<unknown>>;
|
|
516
516
|
Input: react35.ForwardRefExoticComponent<Omit<Partial<react35.ClassAttributes<HTMLInputElement> & react35.InputHTMLAttributes<HTMLInputElement> & {
|
|
517
517
|
prefix?: React.ReactNode;
|
|
518
518
|
suffix?: React.ReactNode;
|
|
@@ -539,17 +539,17 @@ declare const SchemaField: {
|
|
|
539
539
|
};
|
|
540
540
|
Boolean: {
|
|
541
541
|
<Decorator_5 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof", Component_5 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
|
|
542
|
-
ColorPicker: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
542
|
+
ColorPicker: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.ColorPickerProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
543
543
|
Combobox: react35.FC;
|
|
544
544
|
ColorSelect: react35.FC;
|
|
545
|
-
Rating: react35.ForwardRefExoticComponent<Partial<
|
|
545
|
+
Rating: react35.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui27.RatingProps & {
|
|
546
546
|
children?: react35.ReactNode | undefined;
|
|
547
547
|
}> & react35.RefAttributes<unknown>>;
|
|
548
|
-
Slider: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
549
|
-
SliderInput: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
550
|
-
SliderSelect: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
548
|
+
Slider: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
549
|
+
SliderInput: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderInputProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
550
|
+
SliderSelect: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderSelectProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
551
551
|
TagsInput: typeof TagsInput;
|
|
552
|
-
TagsInputInLine: react35.ForwardRefExoticComponent<Partial<
|
|
552
|
+
TagsInputInLine: react35.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui27.TagsInputProps> & react35.RefAttributes<unknown>>;
|
|
553
553
|
ArrayCards: ComposedArrayProps;
|
|
554
554
|
ArrayCollapse: react35.FC<ArrayComponentProps & {
|
|
555
555
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -572,7 +572,7 @@ declare const SchemaField: {
|
|
|
572
572
|
value?: Date;
|
|
573
573
|
onChange?: (date: Date | undefined) => void;
|
|
574
574
|
placeholder?: string;
|
|
575
|
-
} & Omit<
|
|
575
|
+
} & Omit<_pixpilot_shadcn_ui27.DatePickerProps, "onSelect" | "selected" | "mode">> & react35.RefAttributes<unknown>>;
|
|
576
576
|
FormGrid: typeof FormGrid;
|
|
577
577
|
FormItem: react35.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
578
578
|
children?: react35.ReactNode | undefined;
|
|
@@ -581,8 +581,8 @@ declare const SchemaField: {
|
|
|
581
581
|
children?: React.ReactNode;
|
|
582
582
|
value?: string;
|
|
583
583
|
}> & react35.RefAttributes<unknown>>;
|
|
584
|
-
IconToggle: react35.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
585
|
-
ToggleButton: react35.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
584
|
+
IconToggle: react35.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui27.IconToggleProps, "ref"> & react35.RefAttributes<HTMLButtonElement>>, "ref"> & react35.RefAttributes<unknown>>;
|
|
585
|
+
ToggleButton: react35.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui27.ToggleButtonProps, "ref"> & react35.RefAttributes<HTMLButtonElement>>, "ref"> & react35.RefAttributes<unknown>>;
|
|
586
586
|
Input: react35.ForwardRefExoticComponent<Omit<Partial<react35.ClassAttributes<HTMLInputElement> & react35.InputHTMLAttributes<HTMLInputElement> & {
|
|
587
587
|
prefix?: React.ReactNode;
|
|
588
588
|
suffix?: React.ReactNode;
|
|
@@ -609,17 +609,17 @@ declare const SchemaField: {
|
|
|
609
609
|
};
|
|
610
610
|
Date: {
|
|
611
611
|
<Decorator_6 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof", Component_6 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
|
|
612
|
-
ColorPicker: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
612
|
+
ColorPicker: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.ColorPickerProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
613
613
|
Combobox: react35.FC;
|
|
614
614
|
ColorSelect: react35.FC;
|
|
615
|
-
Rating: react35.ForwardRefExoticComponent<Partial<
|
|
615
|
+
Rating: react35.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui27.RatingProps & {
|
|
616
616
|
children?: react35.ReactNode | undefined;
|
|
617
617
|
}> & react35.RefAttributes<unknown>>;
|
|
618
|
-
Slider: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
619
|
-
SliderInput: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
620
|
-
SliderSelect: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
618
|
+
Slider: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
619
|
+
SliderInput: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderInputProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
620
|
+
SliderSelect: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderSelectProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
621
621
|
TagsInput: typeof TagsInput;
|
|
622
|
-
TagsInputInLine: react35.ForwardRefExoticComponent<Partial<
|
|
622
|
+
TagsInputInLine: react35.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui27.TagsInputProps> & react35.RefAttributes<unknown>>;
|
|
623
623
|
ArrayCards: ComposedArrayProps;
|
|
624
624
|
ArrayCollapse: react35.FC<ArrayComponentProps & {
|
|
625
625
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -642,7 +642,7 @@ declare const SchemaField: {
|
|
|
642
642
|
value?: Date;
|
|
643
643
|
onChange?: (date: Date | undefined) => void;
|
|
644
644
|
placeholder?: string;
|
|
645
|
-
} & Omit<
|
|
645
|
+
} & Omit<_pixpilot_shadcn_ui27.DatePickerProps, "onSelect" | "selected" | "mode">> & react35.RefAttributes<unknown>>;
|
|
646
646
|
FormGrid: typeof FormGrid;
|
|
647
647
|
FormItem: react35.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
648
648
|
children?: react35.ReactNode | undefined;
|
|
@@ -651,8 +651,8 @@ declare const SchemaField: {
|
|
|
651
651
|
children?: React.ReactNode;
|
|
652
652
|
value?: string;
|
|
653
653
|
}> & react35.RefAttributes<unknown>>;
|
|
654
|
-
IconToggle: react35.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
655
|
-
ToggleButton: react35.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
654
|
+
IconToggle: react35.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui27.IconToggleProps, "ref"> & react35.RefAttributes<HTMLButtonElement>>, "ref"> & react35.RefAttributes<unknown>>;
|
|
655
|
+
ToggleButton: react35.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui27.ToggleButtonProps, "ref"> & react35.RefAttributes<HTMLButtonElement>>, "ref"> & react35.RefAttributes<unknown>>;
|
|
656
656
|
Input: react35.ForwardRefExoticComponent<Omit<Partial<react35.ClassAttributes<HTMLInputElement> & react35.InputHTMLAttributes<HTMLInputElement> & {
|
|
657
657
|
prefix?: React.ReactNode;
|
|
658
658
|
suffix?: React.ReactNode;
|
|
@@ -679,17 +679,17 @@ declare const SchemaField: {
|
|
|
679
679
|
};
|
|
680
680
|
DateTime: {
|
|
681
681
|
<Decorator_7 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof", Component_7 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
|
|
682
|
-
ColorPicker: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
682
|
+
ColorPicker: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.ColorPickerProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
683
683
|
Combobox: react35.FC;
|
|
684
684
|
ColorSelect: react35.FC;
|
|
685
|
-
Rating: react35.ForwardRefExoticComponent<Partial<
|
|
685
|
+
Rating: react35.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui27.RatingProps & {
|
|
686
686
|
children?: react35.ReactNode | undefined;
|
|
687
687
|
}> & react35.RefAttributes<unknown>>;
|
|
688
|
-
Slider: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
689
|
-
SliderInput: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
690
|
-
SliderSelect: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
688
|
+
Slider: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
689
|
+
SliderInput: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderInputProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
690
|
+
SliderSelect: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderSelectProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
691
691
|
TagsInput: typeof TagsInput;
|
|
692
|
-
TagsInputInLine: react35.ForwardRefExoticComponent<Partial<
|
|
692
|
+
TagsInputInLine: react35.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui27.TagsInputProps> & react35.RefAttributes<unknown>>;
|
|
693
693
|
ArrayCards: ComposedArrayProps;
|
|
694
694
|
ArrayCollapse: react35.FC<ArrayComponentProps & {
|
|
695
695
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -712,7 +712,7 @@ declare const SchemaField: {
|
|
|
712
712
|
value?: Date;
|
|
713
713
|
onChange?: (date: Date | undefined) => void;
|
|
714
714
|
placeholder?: string;
|
|
715
|
-
} & Omit<
|
|
715
|
+
} & Omit<_pixpilot_shadcn_ui27.DatePickerProps, "onSelect" | "selected" | "mode">> & react35.RefAttributes<unknown>>;
|
|
716
716
|
FormGrid: typeof FormGrid;
|
|
717
717
|
FormItem: react35.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
718
718
|
children?: react35.ReactNode | undefined;
|
|
@@ -721,8 +721,8 @@ declare const SchemaField: {
|
|
|
721
721
|
children?: React.ReactNode;
|
|
722
722
|
value?: string;
|
|
723
723
|
}> & react35.RefAttributes<unknown>>;
|
|
724
|
-
IconToggle: react35.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
725
|
-
ToggleButton: react35.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
724
|
+
IconToggle: react35.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui27.IconToggleProps, "ref"> & react35.RefAttributes<HTMLButtonElement>>, "ref"> & react35.RefAttributes<unknown>>;
|
|
725
|
+
ToggleButton: react35.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui27.ToggleButtonProps, "ref"> & react35.RefAttributes<HTMLButtonElement>>, "ref"> & react35.RefAttributes<unknown>>;
|
|
726
726
|
Input: react35.ForwardRefExoticComponent<Omit<Partial<react35.ClassAttributes<HTMLInputElement> & react35.InputHTMLAttributes<HTMLInputElement> & {
|
|
727
727
|
prefix?: React.ReactNode;
|
|
728
728
|
suffix?: React.ReactNode;
|
|
@@ -749,17 +749,17 @@ declare const SchemaField: {
|
|
|
749
749
|
};
|
|
750
750
|
Void: {
|
|
751
751
|
<Decorator_8 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof", Component_8 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
|
|
752
|
-
ColorPicker: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
752
|
+
ColorPicker: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.ColorPickerProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
753
753
|
Combobox: react35.FC;
|
|
754
754
|
ColorSelect: react35.FC;
|
|
755
|
-
Rating: react35.ForwardRefExoticComponent<Partial<
|
|
755
|
+
Rating: react35.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui27.RatingProps & {
|
|
756
756
|
children?: react35.ReactNode | undefined;
|
|
757
757
|
}> & react35.RefAttributes<unknown>>;
|
|
758
|
-
Slider: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
759
|
-
SliderInput: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
760
|
-
SliderSelect: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
758
|
+
Slider: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
759
|
+
SliderInput: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderInputProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
760
|
+
SliderSelect: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderSelectProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
761
761
|
TagsInput: typeof TagsInput;
|
|
762
|
-
TagsInputInLine: react35.ForwardRefExoticComponent<Partial<
|
|
762
|
+
TagsInputInLine: react35.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui27.TagsInputProps> & react35.RefAttributes<unknown>>;
|
|
763
763
|
ArrayCards: ComposedArrayProps;
|
|
764
764
|
ArrayCollapse: react35.FC<ArrayComponentProps & {
|
|
765
765
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -782,7 +782,7 @@ declare const SchemaField: {
|
|
|
782
782
|
value?: Date;
|
|
783
783
|
onChange?: (date: Date | undefined) => void;
|
|
784
784
|
placeholder?: string;
|
|
785
|
-
} & Omit<
|
|
785
|
+
} & Omit<_pixpilot_shadcn_ui27.DatePickerProps, "onSelect" | "selected" | "mode">> & react35.RefAttributes<unknown>>;
|
|
786
786
|
FormGrid: typeof FormGrid;
|
|
787
787
|
FormItem: react35.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
788
788
|
children?: react35.ReactNode | undefined;
|
|
@@ -791,8 +791,8 @@ declare const SchemaField: {
|
|
|
791
791
|
children?: React.ReactNode;
|
|
792
792
|
value?: string;
|
|
793
793
|
}> & react35.RefAttributes<unknown>>;
|
|
794
|
-
IconToggle: react35.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
795
|
-
ToggleButton: react35.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
794
|
+
IconToggle: react35.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui27.IconToggleProps, "ref"> & react35.RefAttributes<HTMLButtonElement>>, "ref"> & react35.RefAttributes<unknown>>;
|
|
795
|
+
ToggleButton: react35.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui27.ToggleButtonProps, "ref"> & react35.RefAttributes<HTMLButtonElement>>, "ref"> & react35.RefAttributes<unknown>>;
|
|
796
796
|
Input: react35.ForwardRefExoticComponent<Omit<Partial<react35.ClassAttributes<HTMLInputElement> & react35.InputHTMLAttributes<HTMLInputElement> & {
|
|
797
797
|
prefix?: React.ReactNode;
|
|
798
798
|
suffix?: React.ReactNode;
|
|
@@ -819,17 +819,17 @@ declare const SchemaField: {
|
|
|
819
819
|
};
|
|
820
820
|
Number: {
|
|
821
821
|
<Decorator_9 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof", Component_9 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayInline" | "ArrayPopover" | "ArrayTags" | "ArrayToggleGroup" | "ToggleGroup" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "IconToggle" | "ToggleButton" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Rating" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "FormItem.$$typeof" | "ArrayInline.useArray" | "ArrayInline.useIndex" | "ArrayInline.useRecord" | "ArrayInline.Addition" | "ArrayInline.Remove" | "ArrayInline.MoveUp" | "ArrayInline.MoveDown" | "ArrayInline.Edit" | "ArrayInline.Index" | "ArrayInline.Empty" | "ArrayInline.Copy" | "ArrayInline.Label" | "ArrayTags.type" | "ArrayTags.$$typeof" | "ArrayToggleGroup.type" | "ArrayToggleGroup.$$typeof" | "ToggleGroup.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "IconToggle.$$typeof" | "ToggleButton.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Rating.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof">(props: _formily_react1.ISchemaTypeFieldProps<{
|
|
822
|
-
ColorPicker: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
822
|
+
ColorPicker: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.ColorPickerProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
823
823
|
Combobox: react35.FC;
|
|
824
824
|
ColorSelect: react35.FC;
|
|
825
|
-
Rating: react35.ForwardRefExoticComponent<Partial<
|
|
825
|
+
Rating: react35.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui27.RatingProps & {
|
|
826
826
|
children?: react35.ReactNode | undefined;
|
|
827
827
|
}> & react35.RefAttributes<unknown>>;
|
|
828
|
-
Slider: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
829
|
-
SliderInput: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
830
|
-
SliderSelect: react35.ForwardRefExoticComponent<Omit<Partial<
|
|
828
|
+
Slider: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
829
|
+
SliderInput: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderInputProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
830
|
+
SliderSelect: react35.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui27.SliderSelectProps>, "ref"> & react35.RefAttributes<unknown>>;
|
|
831
831
|
TagsInput: typeof TagsInput;
|
|
832
|
-
TagsInputInLine: react35.ForwardRefExoticComponent<Partial<
|
|
832
|
+
TagsInputInLine: react35.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui27.TagsInputProps> & react35.RefAttributes<unknown>>;
|
|
833
833
|
ArrayCards: ComposedArrayProps;
|
|
834
834
|
ArrayCollapse: react35.FC<ArrayComponentProps & {
|
|
835
835
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -852,7 +852,7 @@ declare const SchemaField: {
|
|
|
852
852
|
value?: Date;
|
|
853
853
|
onChange?: (date: Date | undefined) => void;
|
|
854
854
|
placeholder?: string;
|
|
855
|
-
} & Omit<
|
|
855
|
+
} & Omit<_pixpilot_shadcn_ui27.DatePickerProps, "onSelect" | "selected" | "mode">> & react35.RefAttributes<unknown>>;
|
|
856
856
|
FormGrid: typeof FormGrid;
|
|
857
857
|
FormItem: react35.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
858
858
|
children?: react35.ReactNode | undefined;
|
|
@@ -861,8 +861,8 @@ declare const SchemaField: {
|
|
|
861
861
|
children?: React.ReactNode;
|
|
862
862
|
value?: string;
|
|
863
863
|
}> & react35.RefAttributes<unknown>>;
|
|
864
|
-
IconToggle: react35.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
865
|
-
ToggleButton: react35.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
864
|
+
IconToggle: react35.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui27.IconToggleProps, "ref"> & react35.RefAttributes<HTMLButtonElement>>, "ref"> & react35.RefAttributes<unknown>>;
|
|
865
|
+
ToggleButton: react35.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui27.ToggleButtonProps, "ref"> & react35.RefAttributes<HTMLButtonElement>>, "ref"> & react35.RefAttributes<unknown>>;
|
|
866
866
|
Input: react35.ForwardRefExoticComponent<Omit<Partial<react35.ClassAttributes<HTMLInputElement> & react35.InputHTMLAttributes<HTMLInputElement> & {
|
|
867
867
|
prefix?: React.ReactNode;
|
|
868
868
|
suffix?: React.ReactNode;
|