@pixpilot/formily-shadcn 0.14.3 → 0.14.4
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/date-picker.d.cts +1 -1
- package/dist/components/date-picker.d.ts +3 -3
- package/dist/components/form-grid.d.ts +2 -2
- package/dist/components/form.d.ts +2 -2
- package/dist/components/number-input.d.ts +2 -2
- package/dist/components/radio.d.ts +2 -2
- package/dist/components/schema-field/schema-field-basics.d.cts +11 -11
- package/dist/components/schema-field/schema-field-basics.d.ts +11 -11
- package/dist/components/schema-field/schema-field-extended.d.cts +20 -20
- package/dist/components/schema-field/schema-field-extended.d.ts +478 -478
- package/dist/components/schema-field/schema-field.d.cts +11 -11
- package/dist/components/schema-field/schema-field.d.ts +258 -258
- package/dist/components/separator.d.ts +2 -2
- package/package.json +5 -5
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react0 from "react";
|
|
2
2
|
import * as _radix_ui_react_checkbox0 from "@radix-ui/react-checkbox";
|
|
3
3
|
|
|
4
4
|
//#region src/components/checkbox.d.ts
|
|
@@ -6,6 +6,6 @@ import * as _radix_ui_react_checkbox0 from "@radix-ui/react-checkbox";
|
|
|
6
6
|
* Formily-connected Checkbox component
|
|
7
7
|
* Maps Formily field checked state to shadcn Checkbox
|
|
8
8
|
*/
|
|
9
|
-
declare const Checkbox:
|
|
9
|
+
declare const Checkbox: react0.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react0.RefAttributes<HTMLButtonElement>>, "ref"> & react0.RefAttributes<unknown>>;
|
|
10
10
|
//#endregion
|
|
11
11
|
export { Checkbox };
|
|
@@ -6,6 +6,6 @@ declare const DatePicker: react2.ForwardRefExoticComponent<Partial<{
|
|
|
6
6
|
value?: Date;
|
|
7
7
|
onChange?: (date: Date | undefined) => void;
|
|
8
8
|
placeholder?: string;
|
|
9
|
-
} & Omit<DatePickerProps, "
|
|
9
|
+
} & Omit<DatePickerProps, "onSelect" | "selected" | "mode">> & react2.RefAttributes<unknown>>;
|
|
10
10
|
//#endregion
|
|
11
11
|
export { DatePicker };
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react2 from "react";
|
|
2
2
|
import { DatePickerProps } from "@pixpilot/shadcn-ui";
|
|
3
3
|
|
|
4
4
|
//#region src/components/date-picker.d.ts
|
|
5
|
-
declare const DatePicker$1:
|
|
5
|
+
declare const DatePicker$1: react2.ForwardRefExoticComponent<Partial<{
|
|
6
6
|
value?: Date;
|
|
7
7
|
onChange?: (date: Date | undefined) => void;
|
|
8
8
|
placeholder?: string;
|
|
9
|
-
} & Omit<DatePickerProps, "
|
|
9
|
+
} & Omit<DatePickerProps, "onSelect" | "selected" | "mode">> & react2.RefAttributes<unknown>>;
|
|
10
10
|
//#endregion
|
|
11
11
|
export { DatePicker$1 as DatePicker };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime1 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/form-grid.d.ts
|
|
5
5
|
interface IFormGridProps extends React.HTMLAttributes<HTMLDivElement> {}
|
|
@@ -7,6 +7,6 @@ declare function FormGrid({
|
|
|
7
7
|
className,
|
|
8
8
|
children,
|
|
9
9
|
...rest
|
|
10
|
-
}: IFormGridProps):
|
|
10
|
+
}: IFormGridProps): react_jsx_runtime1.JSX.Element;
|
|
11
11
|
//#endregion
|
|
12
12
|
export { FormGrid };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { FormContextStates } from "./context/form-context.js";
|
|
2
2
|
import "./context/index.js";
|
|
3
3
|
import React from "react";
|
|
4
|
-
import * as
|
|
4
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
5
5
|
import { Form } from "@formily/core";
|
|
6
6
|
|
|
7
7
|
//#region src/components/form.d.ts
|
|
@@ -25,6 +25,6 @@ declare function Form$1({
|
|
|
25
25
|
onAutoSubmit,
|
|
26
26
|
layout,
|
|
27
27
|
settings
|
|
28
|
-
}: IFormProps):
|
|
28
|
+
}: IFormProps): react_jsx_runtime0.JSX.Element;
|
|
29
29
|
//#endregion
|
|
30
30
|
export { Form$1 as Form };
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react10 from "react";
|
|
2
2
|
|
|
3
3
|
//#region src/components/number-input.d.ts
|
|
4
4
|
/**
|
|
5
5
|
* Formily-connected Number Input component
|
|
6
6
|
*/
|
|
7
|
-
declare const NumberInput:
|
|
7
|
+
declare const NumberInput: react10.ForwardRefExoticComponent<Omit<Partial<react10.ClassAttributes<HTMLInputElement> & react10.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react10.RefAttributes<unknown>>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { NumberInput };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FC } from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime2 from "react/jsx-runtime";
|
|
3
3
|
import { RadioGroup } from "@pixpilot/shadcn";
|
|
4
4
|
|
|
5
5
|
//#region src/components/radio.d.ts
|
|
@@ -15,7 +15,7 @@ type RadioProps = {
|
|
|
15
15
|
/**
|
|
16
16
|
* Radio component with options rendering
|
|
17
17
|
*/
|
|
18
|
-
declare function Radio(props: RadioProps):
|
|
18
|
+
declare function Radio(props: RadioProps): react_jsx_runtime2.JSX.Element;
|
|
19
19
|
declare namespace Radio {
|
|
20
20
|
var displayName: string;
|
|
21
21
|
}
|
|
@@ -63,7 +63,7 @@ declare const basicComponentRegistry: {
|
|
|
63
63
|
value?: Date;
|
|
64
64
|
onChange?: (date: Date | undefined) => void;
|
|
65
65
|
placeholder?: string;
|
|
66
|
-
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "
|
|
66
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react987.RefAttributes<unknown>>;
|
|
67
67
|
decorator: string;
|
|
68
68
|
};
|
|
69
69
|
Row: {
|
|
@@ -121,7 +121,7 @@ declare const basicComponents: {
|
|
|
121
121
|
value?: Date;
|
|
122
122
|
onChange?: (date: Date | undefined) => void;
|
|
123
123
|
placeholder?: string;
|
|
124
|
-
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "
|
|
124
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react987.RefAttributes<unknown>>;
|
|
125
125
|
Row: typeof Row;
|
|
126
126
|
Column: typeof Column;
|
|
127
127
|
FormGrid: typeof FormGrid;
|
|
@@ -158,7 +158,7 @@ declare const SchemaFieldBasics: {
|
|
|
158
158
|
value?: Date;
|
|
159
159
|
onChange?: (date: Date | undefined) => void;
|
|
160
160
|
placeholder?: string;
|
|
161
|
-
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "
|
|
161
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react987.RefAttributes<unknown>>;
|
|
162
162
|
Row: typeof Row;
|
|
163
163
|
Column: typeof Column;
|
|
164
164
|
FormGrid: typeof FormGrid;
|
|
@@ -194,7 +194,7 @@ declare const SchemaFieldBasics: {
|
|
|
194
194
|
value?: Date;
|
|
195
195
|
onChange?: (date: Date | undefined) => void;
|
|
196
196
|
placeholder?: string;
|
|
197
|
-
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "
|
|
197
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react987.RefAttributes<unknown>>;
|
|
198
198
|
Row: typeof Row;
|
|
199
199
|
Column: typeof Column;
|
|
200
200
|
FormGrid: typeof FormGrid;
|
|
@@ -230,7 +230,7 @@ declare const SchemaFieldBasics: {
|
|
|
230
230
|
value?: Date;
|
|
231
231
|
onChange?: (date: Date | undefined) => void;
|
|
232
232
|
placeholder?: string;
|
|
233
|
-
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "
|
|
233
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react987.RefAttributes<unknown>>;
|
|
234
234
|
Row: typeof Row;
|
|
235
235
|
Column: typeof Column;
|
|
236
236
|
FormGrid: typeof FormGrid;
|
|
@@ -266,7 +266,7 @@ declare const SchemaFieldBasics: {
|
|
|
266
266
|
value?: Date;
|
|
267
267
|
onChange?: (date: Date | undefined) => void;
|
|
268
268
|
placeholder?: string;
|
|
269
|
-
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "
|
|
269
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react987.RefAttributes<unknown>>;
|
|
270
270
|
Row: typeof Row;
|
|
271
271
|
Column: typeof Column;
|
|
272
272
|
FormGrid: typeof FormGrid;
|
|
@@ -302,7 +302,7 @@ declare const SchemaFieldBasics: {
|
|
|
302
302
|
value?: Date;
|
|
303
303
|
onChange?: (date: Date | undefined) => void;
|
|
304
304
|
placeholder?: string;
|
|
305
|
-
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "
|
|
305
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react987.RefAttributes<unknown>>;
|
|
306
306
|
Row: typeof Row;
|
|
307
307
|
Column: typeof Column;
|
|
308
308
|
FormGrid: typeof FormGrid;
|
|
@@ -338,7 +338,7 @@ declare const SchemaFieldBasics: {
|
|
|
338
338
|
value?: Date;
|
|
339
339
|
onChange?: (date: Date | undefined) => void;
|
|
340
340
|
placeholder?: string;
|
|
341
|
-
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "
|
|
341
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react987.RefAttributes<unknown>>;
|
|
342
342
|
Row: typeof Row;
|
|
343
343
|
Column: typeof Column;
|
|
344
344
|
FormGrid: typeof FormGrid;
|
|
@@ -374,7 +374,7 @@ declare const SchemaFieldBasics: {
|
|
|
374
374
|
value?: Date;
|
|
375
375
|
onChange?: (date: Date | undefined) => void;
|
|
376
376
|
placeholder?: string;
|
|
377
|
-
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "
|
|
377
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react987.RefAttributes<unknown>>;
|
|
378
378
|
Row: typeof Row;
|
|
379
379
|
Column: typeof Column;
|
|
380
380
|
FormGrid: typeof FormGrid;
|
|
@@ -410,7 +410,7 @@ declare const SchemaFieldBasics: {
|
|
|
410
410
|
value?: Date;
|
|
411
411
|
onChange?: (date: Date | undefined) => void;
|
|
412
412
|
placeholder?: string;
|
|
413
|
-
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "
|
|
413
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react987.RefAttributes<unknown>>;
|
|
414
414
|
Row: typeof Row;
|
|
415
415
|
Column: typeof Column;
|
|
416
416
|
FormGrid: typeof FormGrid;
|
|
@@ -446,7 +446,7 @@ declare const SchemaFieldBasics: {
|
|
|
446
446
|
value?: Date;
|
|
447
447
|
onChange?: (date: Date | undefined) => void;
|
|
448
448
|
placeholder?: string;
|
|
449
|
-
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "
|
|
449
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react987.RefAttributes<unknown>>;
|
|
450
450
|
Row: typeof Row;
|
|
451
451
|
Column: typeof Column;
|
|
452
452
|
FormGrid: typeof FormGrid;
|
|
@@ -63,7 +63,7 @@ declare const basicComponentRegistry: {
|
|
|
63
63
|
value?: Date;
|
|
64
64
|
onChange?: (date: Date | undefined) => void;
|
|
65
65
|
placeholder?: string;
|
|
66
|
-
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "
|
|
66
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react987.RefAttributes<unknown>>;
|
|
67
67
|
decorator: string;
|
|
68
68
|
};
|
|
69
69
|
Row: {
|
|
@@ -121,7 +121,7 @@ declare const basicComponents: {
|
|
|
121
121
|
value?: Date;
|
|
122
122
|
onChange?: (date: Date | undefined) => void;
|
|
123
123
|
placeholder?: string;
|
|
124
|
-
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "
|
|
124
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react987.RefAttributes<unknown>>;
|
|
125
125
|
Row: typeof Row;
|
|
126
126
|
Column: typeof Column;
|
|
127
127
|
FormGrid: typeof FormGrid;
|
|
@@ -158,7 +158,7 @@ declare const SchemaFieldBasics: {
|
|
|
158
158
|
value?: Date;
|
|
159
159
|
onChange?: (date: Date | undefined) => void;
|
|
160
160
|
placeholder?: string;
|
|
161
|
-
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "
|
|
161
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react987.RefAttributes<unknown>>;
|
|
162
162
|
Row: typeof Row;
|
|
163
163
|
Column: typeof Column;
|
|
164
164
|
FormGrid: typeof FormGrid;
|
|
@@ -194,7 +194,7 @@ declare const SchemaFieldBasics: {
|
|
|
194
194
|
value?: Date;
|
|
195
195
|
onChange?: (date: Date | undefined) => void;
|
|
196
196
|
placeholder?: string;
|
|
197
|
-
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "
|
|
197
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react987.RefAttributes<unknown>>;
|
|
198
198
|
Row: typeof Row;
|
|
199
199
|
Column: typeof Column;
|
|
200
200
|
FormGrid: typeof FormGrid;
|
|
@@ -230,7 +230,7 @@ declare const SchemaFieldBasics: {
|
|
|
230
230
|
value?: Date;
|
|
231
231
|
onChange?: (date: Date | undefined) => void;
|
|
232
232
|
placeholder?: string;
|
|
233
|
-
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "
|
|
233
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react987.RefAttributes<unknown>>;
|
|
234
234
|
Row: typeof Row;
|
|
235
235
|
Column: typeof Column;
|
|
236
236
|
FormGrid: typeof FormGrid;
|
|
@@ -266,7 +266,7 @@ declare const SchemaFieldBasics: {
|
|
|
266
266
|
value?: Date;
|
|
267
267
|
onChange?: (date: Date | undefined) => void;
|
|
268
268
|
placeholder?: string;
|
|
269
|
-
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "
|
|
269
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react987.RefAttributes<unknown>>;
|
|
270
270
|
Row: typeof Row;
|
|
271
271
|
Column: typeof Column;
|
|
272
272
|
FormGrid: typeof FormGrid;
|
|
@@ -302,7 +302,7 @@ declare const SchemaFieldBasics: {
|
|
|
302
302
|
value?: Date;
|
|
303
303
|
onChange?: (date: Date | undefined) => void;
|
|
304
304
|
placeholder?: string;
|
|
305
|
-
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "
|
|
305
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react987.RefAttributes<unknown>>;
|
|
306
306
|
Row: typeof Row;
|
|
307
307
|
Column: typeof Column;
|
|
308
308
|
FormGrid: typeof FormGrid;
|
|
@@ -338,7 +338,7 @@ declare const SchemaFieldBasics: {
|
|
|
338
338
|
value?: Date;
|
|
339
339
|
onChange?: (date: Date | undefined) => void;
|
|
340
340
|
placeholder?: string;
|
|
341
|
-
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "
|
|
341
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react987.RefAttributes<unknown>>;
|
|
342
342
|
Row: typeof Row;
|
|
343
343
|
Column: typeof Column;
|
|
344
344
|
FormGrid: typeof FormGrid;
|
|
@@ -374,7 +374,7 @@ declare const SchemaFieldBasics: {
|
|
|
374
374
|
value?: Date;
|
|
375
375
|
onChange?: (date: Date | undefined) => void;
|
|
376
376
|
placeholder?: string;
|
|
377
|
-
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "
|
|
377
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react987.RefAttributes<unknown>>;
|
|
378
378
|
Row: typeof Row;
|
|
379
379
|
Column: typeof Column;
|
|
380
380
|
FormGrid: typeof FormGrid;
|
|
@@ -410,7 +410,7 @@ declare const SchemaFieldBasics: {
|
|
|
410
410
|
value?: Date;
|
|
411
411
|
onChange?: (date: Date | undefined) => void;
|
|
412
412
|
placeholder?: string;
|
|
413
|
-
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "
|
|
413
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react987.RefAttributes<unknown>>;
|
|
414
414
|
Row: typeof Row;
|
|
415
415
|
Column: typeof Column;
|
|
416
416
|
FormGrid: typeof FormGrid;
|
|
@@ -446,7 +446,7 @@ declare const SchemaFieldBasics: {
|
|
|
446
446
|
value?: Date;
|
|
447
447
|
onChange?: (date: Date | undefined) => void;
|
|
448
448
|
placeholder?: string;
|
|
449
|
-
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "
|
|
449
|
+
} & Omit<_pixpilot_shadcn_ui302.DatePickerProps, "onSelect" | "selected" | "mode">> & react987.RefAttributes<unknown>>;
|
|
450
450
|
Row: typeof Row;
|
|
451
451
|
Column: typeof Column;
|
|
452
452
|
FormGrid: typeof FormGrid;
|
|
@@ -116,7 +116,7 @@ declare const extendedComponentRegistry: {
|
|
|
116
116
|
value?: Date;
|
|
117
117
|
onChange?: (date: Date | undefined) => void;
|
|
118
118
|
placeholder?: string;
|
|
119
|
-
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "
|
|
119
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
120
120
|
decorator: string;
|
|
121
121
|
};
|
|
122
122
|
Row: {
|
|
@@ -205,7 +205,7 @@ declare const extendedComponents: {
|
|
|
205
205
|
value?: Date;
|
|
206
206
|
onChange?: (date: Date | undefined) => void;
|
|
207
207
|
placeholder?: string;
|
|
208
|
-
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "
|
|
208
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
209
209
|
Row: typeof Row;
|
|
210
210
|
Column: typeof Column;
|
|
211
211
|
FormGrid: typeof FormGrid;
|
|
@@ -223,7 +223,7 @@ declare const SchemaFieldExtended: {
|
|
|
223
223
|
<Decorator extends _formily_react0.JSXComponent, Component extends _formily_react0.JSXComponent>(props: _formily_react0.ISchemaFieldProps<Decorator, Component, _formily_core0.ObjectField<Decorator, Component>>): JSX.Element;
|
|
224
224
|
displayName: string;
|
|
225
225
|
Markup: {
|
|
226
|
-
<Decorator_1 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload
|
|
226
|
+
<Decorator_1 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_1 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaMarkupFieldProps<{
|
|
227
227
|
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
228
228
|
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
229
229
|
multiple: true;
|
|
@@ -269,7 +269,7 @@ declare const SchemaFieldExtended: {
|
|
|
269
269
|
value?: Date;
|
|
270
270
|
onChange?: (date: Date | undefined) => void;
|
|
271
271
|
placeholder?: string;
|
|
272
|
-
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "
|
|
272
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
273
273
|
Row: typeof Row;
|
|
274
274
|
Column: typeof Column;
|
|
275
275
|
FormGrid: typeof FormGrid;
|
|
@@ -286,7 +286,7 @@ declare const SchemaFieldExtended: {
|
|
|
286
286
|
displayName: string;
|
|
287
287
|
};
|
|
288
288
|
String: {
|
|
289
|
-
<Decorator_2 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload
|
|
289
|
+
<Decorator_2 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_2 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
290
290
|
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
291
291
|
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
292
292
|
multiple: true;
|
|
@@ -332,7 +332,7 @@ declare const SchemaFieldExtended: {
|
|
|
332
332
|
value?: Date;
|
|
333
333
|
onChange?: (date: Date | undefined) => void;
|
|
334
334
|
placeholder?: string;
|
|
335
|
-
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "
|
|
335
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
336
336
|
Row: typeof Row;
|
|
337
337
|
Column: typeof Column;
|
|
338
338
|
FormGrid: typeof FormGrid;
|
|
@@ -349,7 +349,7 @@ declare const SchemaFieldExtended: {
|
|
|
349
349
|
displayName: string;
|
|
350
350
|
};
|
|
351
351
|
Object: {
|
|
352
|
-
<Decorator_3 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload
|
|
352
|
+
<Decorator_3 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_3 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
353
353
|
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
354
354
|
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
355
355
|
multiple: true;
|
|
@@ -395,7 +395,7 @@ declare const SchemaFieldExtended: {
|
|
|
395
395
|
value?: Date;
|
|
396
396
|
onChange?: (date: Date | undefined) => void;
|
|
397
397
|
placeholder?: string;
|
|
398
|
-
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "
|
|
398
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
399
399
|
Row: typeof Row;
|
|
400
400
|
Column: typeof Column;
|
|
401
401
|
FormGrid: typeof FormGrid;
|
|
@@ -412,7 +412,7 @@ declare const SchemaFieldExtended: {
|
|
|
412
412
|
displayName: string;
|
|
413
413
|
};
|
|
414
414
|
Array: {
|
|
415
|
-
<Decorator_4 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload
|
|
415
|
+
<Decorator_4 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_4 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
416
416
|
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
417
417
|
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
418
418
|
multiple: true;
|
|
@@ -458,7 +458,7 @@ declare const SchemaFieldExtended: {
|
|
|
458
458
|
value?: Date;
|
|
459
459
|
onChange?: (date: Date | undefined) => void;
|
|
460
460
|
placeholder?: string;
|
|
461
|
-
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "
|
|
461
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
462
462
|
Row: typeof Row;
|
|
463
463
|
Column: typeof Column;
|
|
464
464
|
FormGrid: typeof FormGrid;
|
|
@@ -475,7 +475,7 @@ declare const SchemaFieldExtended: {
|
|
|
475
475
|
displayName: string;
|
|
476
476
|
};
|
|
477
477
|
Boolean: {
|
|
478
|
-
<Decorator_5 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload
|
|
478
|
+
<Decorator_5 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_5 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
479
479
|
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
480
480
|
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
481
481
|
multiple: true;
|
|
@@ -521,7 +521,7 @@ declare const SchemaFieldExtended: {
|
|
|
521
521
|
value?: Date;
|
|
522
522
|
onChange?: (date: Date | undefined) => void;
|
|
523
523
|
placeholder?: string;
|
|
524
|
-
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "
|
|
524
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
525
525
|
Row: typeof Row;
|
|
526
526
|
Column: typeof Column;
|
|
527
527
|
FormGrid: typeof FormGrid;
|
|
@@ -538,7 +538,7 @@ declare const SchemaFieldExtended: {
|
|
|
538
538
|
displayName: string;
|
|
539
539
|
};
|
|
540
540
|
Date: {
|
|
541
|
-
<Decorator_6 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload
|
|
541
|
+
<Decorator_6 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_6 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
542
542
|
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
543
543
|
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
544
544
|
multiple: true;
|
|
@@ -584,7 +584,7 @@ declare const SchemaFieldExtended: {
|
|
|
584
584
|
value?: Date;
|
|
585
585
|
onChange?: (date: Date | undefined) => void;
|
|
586
586
|
placeholder?: string;
|
|
587
|
-
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "
|
|
587
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
588
588
|
Row: typeof Row;
|
|
589
589
|
Column: typeof Column;
|
|
590
590
|
FormGrid: typeof FormGrid;
|
|
@@ -601,7 +601,7 @@ declare const SchemaFieldExtended: {
|
|
|
601
601
|
displayName: string;
|
|
602
602
|
};
|
|
603
603
|
DateTime: {
|
|
604
|
-
<Decorator_7 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload
|
|
604
|
+
<Decorator_7 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_7 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
605
605
|
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
606
606
|
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
607
607
|
multiple: true;
|
|
@@ -647,7 +647,7 @@ declare const SchemaFieldExtended: {
|
|
|
647
647
|
value?: Date;
|
|
648
648
|
onChange?: (date: Date | undefined) => void;
|
|
649
649
|
placeholder?: string;
|
|
650
|
-
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "
|
|
650
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
651
651
|
Row: typeof Row;
|
|
652
652
|
Column: typeof Column;
|
|
653
653
|
FormGrid: typeof FormGrid;
|
|
@@ -664,7 +664,7 @@ declare const SchemaFieldExtended: {
|
|
|
664
664
|
displayName: string;
|
|
665
665
|
};
|
|
666
666
|
Void: {
|
|
667
|
-
<Decorator_8 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload
|
|
667
|
+
<Decorator_8 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_8 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
668
668
|
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
669
669
|
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
670
670
|
multiple: true;
|
|
@@ -710,7 +710,7 @@ declare const SchemaFieldExtended: {
|
|
|
710
710
|
value?: Date;
|
|
711
711
|
onChange?: (date: Date | undefined) => void;
|
|
712
712
|
placeholder?: string;
|
|
713
|
-
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "
|
|
713
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
714
714
|
Row: typeof Row;
|
|
715
715
|
Column: typeof Column;
|
|
716
716
|
FormGrid: typeof FormGrid;
|
|
@@ -727,7 +727,7 @@ declare const SchemaFieldExtended: {
|
|
|
727
727
|
displayName: string;
|
|
728
728
|
};
|
|
729
729
|
Number: {
|
|
730
|
-
<Decorator_9 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload
|
|
730
|
+
<Decorator_9 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof", Component_9 extends "Radio" | "FormItem" | "Hidden" | "Input" | "Textarea" | "NumberInput" | "Checkbox" | "Select" | "Switch" | "DatePicker" | "Row" | "Column" | "FormGrid" | "Separator" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "Combobox" | "TagsInput" | "TagsInputInLine" | "Slider" | "AvatarUpload" | "FileUploadInline" | "IconPicker" | "FileUpload" | "RichTextEditor" | "FormItem.$$typeof" | "Hidden.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "NumberInput.$$typeof" | "Checkbox.$$typeof" | "Switch.$$typeof" | "DatePicker.$$typeof" | "Separator.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord" | "TagsInputInLine.$$typeof" | "Slider.$$typeof" | "AvatarUpload.$$typeof" | "FileUploadInline.$$typeof" | "IconPicker.$$typeof" | "FileUpload.$$typeof">(props: _formily_react0.ISchemaTypeFieldProps<{
|
|
731
731
|
AvatarUpload: react30.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui16.AvatarUploadProps>, "ref"> & react30.RefAttributes<unknown>>;
|
|
732
732
|
FileUploadInline: react30.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui16.FileUploadInlineBaseProps & {
|
|
733
733
|
multiple: true;
|
|
@@ -773,7 +773,7 @@ declare const SchemaFieldExtended: {
|
|
|
773
773
|
value?: Date;
|
|
774
774
|
onChange?: (date: Date | undefined) => void;
|
|
775
775
|
placeholder?: string;
|
|
776
|
-
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "
|
|
776
|
+
} & Omit<_pixpilot_shadcn_ui16.DatePickerProps, "onSelect" | "selected" | "mode">> & react30.RefAttributes<unknown>>;
|
|
777
777
|
Row: typeof Row;
|
|
778
778
|
Column: typeof Column;
|
|
779
779
|
FormGrid: typeof FormGrid;
|