@pixpilot/formily-shadcn 0.21.2 → 0.21.3
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/column.d.cts +2 -2
- package/dist/components/date-picker.d.ts +3 -3
- package/dist/components/file-upload/file-upload-inline.d.ts +8 -8
- package/dist/components/file-upload/file-upload.d.cts +8 -8
- package/dist/components/file-upload/file-upload.d.ts +8 -8
- package/dist/components/form-grid.d.cts +2 -2
- package/dist/components/icon-picker.d.ts +3 -3
- package/dist/components/number/number-input.d.cts +3 -3
- package/dist/components/number/number-input.d.ts +3 -3
- package/dist/components/schema-field/schema-field-basics.d.cts +12 -12
- package/dist/components/schema-field/schema-field-basics.d.ts +248 -248
- package/dist/components/schema-field/schema-field-extended.d.cts +530 -530
- package/dist/components/schema-field/schema-field-extended.d.ts +397 -397
- package/dist/components/schema-field/schema-field.d.cts +67 -67
- package/dist/components/schema-field/schema-field.d.ts +325 -325
- package/dist/components/slider/slider-input.d.cts +2 -2
- package/dist/components/slider/slider-input.d.ts +3 -3
- package/dist/components/slider/slider-select.d.cts +3 -3
- package/dist/components/slider/slider-select.d.ts +3 -3
- package/dist/components/slider/slider.d.cts +2 -2
- package/dist/components/switch.d.ts +2 -2
- package/dist/components/tags-input-inline.d.ts +2 -2
- package/package.json +4 -4
|
@@ -12,7 +12,7 @@ import * as _formily_react11 from "@formily/react";
|
|
|
12
12
|
import { ISchema } from "@formily/react";
|
|
13
13
|
import * as react633 from "react";
|
|
14
14
|
import * as _formily_core0 from "@formily/core";
|
|
15
|
-
import * as
|
|
15
|
+
import * as _pixpilot_shadcn_ui302 from "@pixpilot/shadcn-ui";
|
|
16
16
|
import { TagsInput } from "@pixpilot/shadcn-ui";
|
|
17
17
|
import * as _radix_ui_react_checkbox11 from "@radix-ui/react-checkbox";
|
|
18
18
|
import * as _radix_ui_react_separator11 from "@radix-ui/react-separator";
|
|
@@ -21,7 +21,7 @@ import * as _radix_ui_react_switch11 from "@radix-ui/react-switch";
|
|
|
21
21
|
//#region src/components/schema-field/schema-field.d.ts
|
|
22
22
|
declare const defaultComponentRegistry: {
|
|
23
23
|
ColorPicker: {
|
|
24
|
-
component: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
24
|
+
component: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.ColorPickerProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
25
25
|
decorator: string;
|
|
26
26
|
};
|
|
27
27
|
Combobox: {
|
|
@@ -33,15 +33,15 @@ declare const defaultComponentRegistry: {
|
|
|
33
33
|
decorator: string;
|
|
34
34
|
};
|
|
35
35
|
Slider: {
|
|
36
|
-
component: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
36
|
+
component: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
37
37
|
decorator: string;
|
|
38
38
|
};
|
|
39
39
|
SliderInput: {
|
|
40
|
-
component: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
40
|
+
component: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderInputProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
41
41
|
decorator: string;
|
|
42
42
|
};
|
|
43
43
|
SliderSelect: {
|
|
44
|
-
component: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
44
|
+
component: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderSelectProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
45
45
|
decorator: string;
|
|
46
46
|
};
|
|
47
47
|
TagsInput: {
|
|
@@ -49,7 +49,7 @@ declare const defaultComponentRegistry: {
|
|
|
49
49
|
decorator: string;
|
|
50
50
|
};
|
|
51
51
|
TagsInputInLine: {
|
|
52
|
-
component: react633.ForwardRefExoticComponent<Partial<
|
|
52
|
+
component: react633.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui302.TagsInputProps> & react633.RefAttributes<unknown>>;
|
|
53
53
|
decorator: string;
|
|
54
54
|
};
|
|
55
55
|
ArrayCards: {
|
|
@@ -83,7 +83,7 @@ declare const defaultComponentRegistry: {
|
|
|
83
83
|
value?: Date;
|
|
84
84
|
onChange?: (date: Date | undefined) => void;
|
|
85
85
|
placeholder?: string;
|
|
86
|
-
} & Omit<
|
|
86
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react633.RefAttributes<unknown>>;
|
|
87
87
|
decorator: string;
|
|
88
88
|
};
|
|
89
89
|
FormGrid: {
|
|
@@ -148,14 +148,14 @@ declare const defaultComponentRegistry: {
|
|
|
148
148
|
};
|
|
149
149
|
};
|
|
150
150
|
declare const defaultComponents: {
|
|
151
|
-
ColorPicker: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
151
|
+
ColorPicker: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.ColorPickerProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
152
152
|
Combobox: react633.FC;
|
|
153
153
|
ColorSelect: react633.FC;
|
|
154
|
-
Slider: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
155
|
-
SliderInput: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
156
|
-
SliderSelect: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
154
|
+
Slider: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
155
|
+
SliderInput: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderInputProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
156
|
+
SliderSelect: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderSelectProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
157
157
|
TagsInput: typeof TagsInput;
|
|
158
|
-
TagsInputInLine: react633.ForwardRefExoticComponent<Partial<
|
|
158
|
+
TagsInputInLine: react633.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui302.TagsInputProps> & react633.RefAttributes<unknown>>;
|
|
159
159
|
ArrayCards: ComposedArrayProps;
|
|
160
160
|
ArrayCollapse: react633.FC<ArrayComponentProps & {
|
|
161
161
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -169,7 +169,7 @@ declare const defaultComponents: {
|
|
|
169
169
|
value?: Date;
|
|
170
170
|
onChange?: (date: Date | undefined) => void;
|
|
171
171
|
placeholder?: string;
|
|
172
|
-
} & Omit<
|
|
172
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react633.RefAttributes<unknown>>;
|
|
173
173
|
FormGrid: typeof FormGrid;
|
|
174
174
|
FormItem: react633.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
175
175
|
children?: react633.ReactNode | undefined;
|
|
@@ -205,14 +205,14 @@ declare const SchemaField: {
|
|
|
205
205
|
displayName: string;
|
|
206
206
|
Markup: {
|
|
207
207
|
<Decorator_1 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof", Component_1 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof">(props: _formily_react11.ISchemaMarkupFieldProps<{
|
|
208
|
-
ColorPicker: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
208
|
+
ColorPicker: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.ColorPickerProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
209
209
|
Combobox: react633.FC;
|
|
210
210
|
ColorSelect: react633.FC;
|
|
211
|
-
Slider: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
212
|
-
SliderInput: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
213
|
-
SliderSelect: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
211
|
+
Slider: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
212
|
+
SliderInput: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderInputProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
213
|
+
SliderSelect: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderSelectProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
214
214
|
TagsInput: typeof TagsInput;
|
|
215
|
-
TagsInputInLine: react633.ForwardRefExoticComponent<Partial<
|
|
215
|
+
TagsInputInLine: react633.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui302.TagsInputProps> & react633.RefAttributes<unknown>>;
|
|
216
216
|
ArrayCards: ComposedArrayProps;
|
|
217
217
|
ArrayCollapse: react633.FC<ArrayComponentProps & {
|
|
218
218
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -226,7 +226,7 @@ declare const SchemaField: {
|
|
|
226
226
|
value?: Date;
|
|
227
227
|
onChange?: (date: Date | undefined) => void;
|
|
228
228
|
placeholder?: string;
|
|
229
|
-
} & Omit<
|
|
229
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react633.RefAttributes<unknown>>;
|
|
230
230
|
FormGrid: typeof FormGrid;
|
|
231
231
|
FormItem: react633.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
232
232
|
children?: react633.ReactNode | undefined;
|
|
@@ -261,14 +261,14 @@ declare const SchemaField: {
|
|
|
261
261
|
};
|
|
262
262
|
String: {
|
|
263
263
|
<Decorator_2 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof", Component_2 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
264
|
-
ColorPicker: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
264
|
+
ColorPicker: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.ColorPickerProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
265
265
|
Combobox: react633.FC;
|
|
266
266
|
ColorSelect: react633.FC;
|
|
267
|
-
Slider: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
268
|
-
SliderInput: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
269
|
-
SliderSelect: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
267
|
+
Slider: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
268
|
+
SliderInput: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderInputProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
269
|
+
SliderSelect: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderSelectProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
270
270
|
TagsInput: typeof TagsInput;
|
|
271
|
-
TagsInputInLine: react633.ForwardRefExoticComponent<Partial<
|
|
271
|
+
TagsInputInLine: react633.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui302.TagsInputProps> & react633.RefAttributes<unknown>>;
|
|
272
272
|
ArrayCards: ComposedArrayProps;
|
|
273
273
|
ArrayCollapse: react633.FC<ArrayComponentProps & {
|
|
274
274
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -282,7 +282,7 @@ declare const SchemaField: {
|
|
|
282
282
|
value?: Date;
|
|
283
283
|
onChange?: (date: Date | undefined) => void;
|
|
284
284
|
placeholder?: string;
|
|
285
|
-
} & Omit<
|
|
285
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react633.RefAttributes<unknown>>;
|
|
286
286
|
FormGrid: typeof FormGrid;
|
|
287
287
|
FormItem: react633.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
288
288
|
children?: react633.ReactNode | undefined;
|
|
@@ -317,14 +317,14 @@ declare const SchemaField: {
|
|
|
317
317
|
};
|
|
318
318
|
Object: {
|
|
319
319
|
<Decorator_3 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof", Component_3 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
320
|
-
ColorPicker: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
320
|
+
ColorPicker: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.ColorPickerProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
321
321
|
Combobox: react633.FC;
|
|
322
322
|
ColorSelect: react633.FC;
|
|
323
|
-
Slider: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
324
|
-
SliderInput: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
325
|
-
SliderSelect: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
323
|
+
Slider: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
324
|
+
SliderInput: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderInputProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
325
|
+
SliderSelect: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderSelectProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
326
326
|
TagsInput: typeof TagsInput;
|
|
327
|
-
TagsInputInLine: react633.ForwardRefExoticComponent<Partial<
|
|
327
|
+
TagsInputInLine: react633.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui302.TagsInputProps> & react633.RefAttributes<unknown>>;
|
|
328
328
|
ArrayCards: ComposedArrayProps;
|
|
329
329
|
ArrayCollapse: react633.FC<ArrayComponentProps & {
|
|
330
330
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -338,7 +338,7 @@ declare const SchemaField: {
|
|
|
338
338
|
value?: Date;
|
|
339
339
|
onChange?: (date: Date | undefined) => void;
|
|
340
340
|
placeholder?: string;
|
|
341
|
-
} & Omit<
|
|
341
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react633.RefAttributes<unknown>>;
|
|
342
342
|
FormGrid: typeof FormGrid;
|
|
343
343
|
FormItem: react633.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
344
344
|
children?: react633.ReactNode | undefined;
|
|
@@ -373,14 +373,14 @@ declare const SchemaField: {
|
|
|
373
373
|
};
|
|
374
374
|
Array: {
|
|
375
375
|
<Decorator_4 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof", Component_4 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
376
|
-
ColorPicker: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
376
|
+
ColorPicker: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.ColorPickerProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
377
377
|
Combobox: react633.FC;
|
|
378
378
|
ColorSelect: react633.FC;
|
|
379
|
-
Slider: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
380
|
-
SliderInput: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
381
|
-
SliderSelect: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
379
|
+
Slider: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
380
|
+
SliderInput: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderInputProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
381
|
+
SliderSelect: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderSelectProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
382
382
|
TagsInput: typeof TagsInput;
|
|
383
|
-
TagsInputInLine: react633.ForwardRefExoticComponent<Partial<
|
|
383
|
+
TagsInputInLine: react633.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui302.TagsInputProps> & react633.RefAttributes<unknown>>;
|
|
384
384
|
ArrayCards: ComposedArrayProps;
|
|
385
385
|
ArrayCollapse: react633.FC<ArrayComponentProps & {
|
|
386
386
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -394,7 +394,7 @@ declare const SchemaField: {
|
|
|
394
394
|
value?: Date;
|
|
395
395
|
onChange?: (date: Date | undefined) => void;
|
|
396
396
|
placeholder?: string;
|
|
397
|
-
} & Omit<
|
|
397
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react633.RefAttributes<unknown>>;
|
|
398
398
|
FormGrid: typeof FormGrid;
|
|
399
399
|
FormItem: react633.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
400
400
|
children?: react633.ReactNode | undefined;
|
|
@@ -429,14 +429,14 @@ declare const SchemaField: {
|
|
|
429
429
|
};
|
|
430
430
|
Boolean: {
|
|
431
431
|
<Decorator_5 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof", Component_5 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
432
|
-
ColorPicker: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
432
|
+
ColorPicker: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.ColorPickerProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
433
433
|
Combobox: react633.FC;
|
|
434
434
|
ColorSelect: react633.FC;
|
|
435
|
-
Slider: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
436
|
-
SliderInput: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
437
|
-
SliderSelect: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
435
|
+
Slider: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
436
|
+
SliderInput: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderInputProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
437
|
+
SliderSelect: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderSelectProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
438
438
|
TagsInput: typeof TagsInput;
|
|
439
|
-
TagsInputInLine: react633.ForwardRefExoticComponent<Partial<
|
|
439
|
+
TagsInputInLine: react633.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui302.TagsInputProps> & react633.RefAttributes<unknown>>;
|
|
440
440
|
ArrayCards: ComposedArrayProps;
|
|
441
441
|
ArrayCollapse: react633.FC<ArrayComponentProps & {
|
|
442
442
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -450,7 +450,7 @@ declare const SchemaField: {
|
|
|
450
450
|
value?: Date;
|
|
451
451
|
onChange?: (date: Date | undefined) => void;
|
|
452
452
|
placeholder?: string;
|
|
453
|
-
} & Omit<
|
|
453
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react633.RefAttributes<unknown>>;
|
|
454
454
|
FormGrid: typeof FormGrid;
|
|
455
455
|
FormItem: react633.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
456
456
|
children?: react633.ReactNode | undefined;
|
|
@@ -485,14 +485,14 @@ declare const SchemaField: {
|
|
|
485
485
|
};
|
|
486
486
|
Date: {
|
|
487
487
|
<Decorator_6 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof", Component_6 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
488
|
-
ColorPicker: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
488
|
+
ColorPicker: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.ColorPickerProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
489
489
|
Combobox: react633.FC;
|
|
490
490
|
ColorSelect: react633.FC;
|
|
491
|
-
Slider: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
492
|
-
SliderInput: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
493
|
-
SliderSelect: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
491
|
+
Slider: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
492
|
+
SliderInput: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderInputProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
493
|
+
SliderSelect: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderSelectProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
494
494
|
TagsInput: typeof TagsInput;
|
|
495
|
-
TagsInputInLine: react633.ForwardRefExoticComponent<Partial<
|
|
495
|
+
TagsInputInLine: react633.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui302.TagsInputProps> & react633.RefAttributes<unknown>>;
|
|
496
496
|
ArrayCards: ComposedArrayProps;
|
|
497
497
|
ArrayCollapse: react633.FC<ArrayComponentProps & {
|
|
498
498
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -506,7 +506,7 @@ declare const SchemaField: {
|
|
|
506
506
|
value?: Date;
|
|
507
507
|
onChange?: (date: Date | undefined) => void;
|
|
508
508
|
placeholder?: string;
|
|
509
|
-
} & Omit<
|
|
509
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react633.RefAttributes<unknown>>;
|
|
510
510
|
FormGrid: typeof FormGrid;
|
|
511
511
|
FormItem: react633.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
512
512
|
children?: react633.ReactNode | undefined;
|
|
@@ -541,14 +541,14 @@ declare const SchemaField: {
|
|
|
541
541
|
};
|
|
542
542
|
DateTime: {
|
|
543
543
|
<Decorator_7 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof", Component_7 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
544
|
-
ColorPicker: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
544
|
+
ColorPicker: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.ColorPickerProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
545
545
|
Combobox: react633.FC;
|
|
546
546
|
ColorSelect: react633.FC;
|
|
547
|
-
Slider: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
548
|
-
SliderInput: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
549
|
-
SliderSelect: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
547
|
+
Slider: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
548
|
+
SliderInput: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderInputProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
549
|
+
SliderSelect: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderSelectProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
550
550
|
TagsInput: typeof TagsInput;
|
|
551
|
-
TagsInputInLine: react633.ForwardRefExoticComponent<Partial<
|
|
551
|
+
TagsInputInLine: react633.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui302.TagsInputProps> & react633.RefAttributes<unknown>>;
|
|
552
552
|
ArrayCards: ComposedArrayProps;
|
|
553
553
|
ArrayCollapse: react633.FC<ArrayComponentProps & {
|
|
554
554
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -562,7 +562,7 @@ declare const SchemaField: {
|
|
|
562
562
|
value?: Date;
|
|
563
563
|
onChange?: (date: Date | undefined) => void;
|
|
564
564
|
placeholder?: string;
|
|
565
|
-
} & Omit<
|
|
565
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react633.RefAttributes<unknown>>;
|
|
566
566
|
FormGrid: typeof FormGrid;
|
|
567
567
|
FormItem: react633.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
568
568
|
children?: react633.ReactNode | undefined;
|
|
@@ -597,14 +597,14 @@ declare const SchemaField: {
|
|
|
597
597
|
};
|
|
598
598
|
Void: {
|
|
599
599
|
<Decorator_8 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof", Component_8 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
600
|
-
ColorPicker: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
600
|
+
ColorPicker: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.ColorPickerProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
601
601
|
Combobox: react633.FC;
|
|
602
602
|
ColorSelect: react633.FC;
|
|
603
|
-
Slider: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
604
|
-
SliderInput: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
605
|
-
SliderSelect: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
603
|
+
Slider: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
604
|
+
SliderInput: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderInputProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
605
|
+
SliderSelect: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderSelectProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
606
606
|
TagsInput: typeof TagsInput;
|
|
607
|
-
TagsInputInLine: react633.ForwardRefExoticComponent<Partial<
|
|
607
|
+
TagsInputInLine: react633.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui302.TagsInputProps> & react633.RefAttributes<unknown>>;
|
|
608
608
|
ArrayCards: ComposedArrayProps;
|
|
609
609
|
ArrayCollapse: react633.FC<ArrayComponentProps & {
|
|
610
610
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -618,7 +618,7 @@ declare const SchemaField: {
|
|
|
618
618
|
value?: Date;
|
|
619
619
|
onChange?: (date: Date | undefined) => void;
|
|
620
620
|
placeholder?: string;
|
|
621
|
-
} & Omit<
|
|
621
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react633.RefAttributes<unknown>>;
|
|
622
622
|
FormGrid: typeof FormGrid;
|
|
623
623
|
FormItem: react633.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
624
624
|
children?: react633.ReactNode | undefined;
|
|
@@ -653,14 +653,14 @@ declare const SchemaField: {
|
|
|
653
653
|
};
|
|
654
654
|
Number: {
|
|
655
655
|
<Decorator_9 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof", Component_9 extends "Radio" | "ArrayCards" | "FormItem" | "ArrayCollapse" | "ArrayDialog" | "ArrayPopover" | "Checkbox" | "Column" | "DatePicker" | "FormGrid" | "Hidden" | "Input" | "NumberInput" | "ObjectContainer" | "Row" | "Select" | "Separator" | "Switch" | "Textarea" | "ColorPicker" | "Combobox" | "ColorSelect" | "Slider" | "SliderInput" | "SliderSelect" | "TagsInput" | "TagsInputInLine" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "FormItem.$$typeof" | "Checkbox.$$typeof" | "DatePicker.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "NumberInput.$$typeof" | "Separator.$$typeof" | "Switch.$$typeof" | "Textarea.$$typeof" | "ColorPicker.$$typeof" | "Slider.$$typeof" | "SliderInput.$$typeof" | "SliderSelect.$$typeof" | "TagsInputInLine.$$typeof">(props: _formily_react11.ISchemaTypeFieldProps<{
|
|
656
|
-
ColorPicker: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
656
|
+
ColorPicker: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.ColorPickerProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
657
657
|
Combobox: react633.FC;
|
|
658
658
|
ColorSelect: react633.FC;
|
|
659
|
-
Slider: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
660
|
-
SliderInput: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
661
|
-
SliderSelect: react633.ForwardRefExoticComponent<Omit<Partial<
|
|
659
|
+
Slider: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
660
|
+
SliderInput: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderInputProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
661
|
+
SliderSelect: react633.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui302.SliderSelectProps>, "ref"> & react633.RefAttributes<unknown>>;
|
|
662
662
|
TagsInput: typeof TagsInput;
|
|
663
|
-
TagsInputInLine: react633.ForwardRefExoticComponent<Partial<
|
|
663
|
+
TagsInputInLine: react633.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui302.TagsInputProps> & react633.RefAttributes<unknown>>;
|
|
664
664
|
ArrayCards: ComposedArrayProps;
|
|
665
665
|
ArrayCollapse: react633.FC<ArrayComponentProps & {
|
|
666
666
|
defaultActiveKey?: Array<string | number>;
|
|
@@ -674,7 +674,7 @@ declare const SchemaField: {
|
|
|
674
674
|
value?: Date;
|
|
675
675
|
onChange?: (date: Date | undefined) => void;
|
|
676
676
|
placeholder?: string;
|
|
677
|
-
} & Omit<
|
|
677
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react633.RefAttributes<unknown>>;
|
|
678
678
|
FormGrid: typeof FormGrid;
|
|
679
679
|
FormItem: react633.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
680
680
|
children?: react633.ReactNode | undefined;
|