@pixpilot/formily-shadcn 1.7.3 → 1.7.5
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/FormGrid.d.cts +2 -2
- package/dist/components/IconPicker.d.cts +3 -3
- package/dist/components/IconToggle.d.cts +2 -2
- package/dist/components/Radio.d.cts +2 -2
- package/dist/components/Switch.d.cts +2 -2
- package/dist/components/TagsInputInline.d.cts +3 -3
- package/dist/components/Textarea.d.cts +2 -2
- package/dist/components/ToggleButton.d.cts +3 -3
- package/dist/components/file-upload/FileUpload.d.cts +8 -8
- package/dist/components/file-upload/FileUpload.d.ts +8 -8
- package/dist/components/file-upload/FileUploadInline.d.cts +8 -8
- package/dist/components/file-upload/FileUploadInline.d.ts +8 -8
- package/dist/components/number/NumberInput.d.cts +3 -3
- package/dist/components/schema-field/schema-field-basics.d.cts +34 -34
- package/dist/components/schema-field/schema-field-basics.d.ts +303 -303
- package/dist/components/schema-field/schema-field-extended.d.cts +627 -627
- package/dist/components/schema-field/schema-field-extended.d.ts +633 -633
- package/dist/components/schema-field/schema-field.d.cts +398 -398
- package/dist/components/schema-field/schema-field.d.ts +412 -412
- package/dist/components/slider/Slider.d.cts +3 -3
- package/dist/components/slider/Slider.d.ts +2 -2
- package/dist/components/slider/SliderInput.d.cts +3 -3
- package/dist/components/slider/SliderInput.d.ts +2 -2
- package/dist/components/slider/SliderSelect.d.cts +3 -3
- package/dist/components/slider/SliderSelect.d.ts +2 -2
- package/package.json +5 -5
|
@@ -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/FormGrid.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,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react7 from "react";
|
|
2
2
|
import { IconPickerProps, IconProviderProps } from "@pixpilot/shadcn-ui";
|
|
3
3
|
|
|
4
4
|
//#region src/components/IconPicker.d.ts
|
|
@@ -8,8 +8,8 @@ import { IconPickerProps, IconProviderProps } from "@pixpilot/shadcn-ui";
|
|
|
8
8
|
* Automatically connects to Formily field state
|
|
9
9
|
* Supports both static and async icon providers
|
|
10
10
|
*/
|
|
11
|
-
declare const IconPicker:
|
|
11
|
+
declare const IconPicker: react7.ForwardRefExoticComponent<Partial<Omit<IconPickerProps, "providers"> & {
|
|
12
12
|
providers?: IconProviderProps[];
|
|
13
|
-
}> &
|
|
13
|
+
}> & react7.RefAttributes<unknown>>;
|
|
14
14
|
//#endregion
|
|
15
15
|
export { IconPicker };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react4 from "react";
|
|
2
2
|
import * as _pixpilot_shadcn_ui0 from "@pixpilot/shadcn-ui";
|
|
3
3
|
|
|
4
4
|
//#region src/components/IconToggle.d.ts
|
|
@@ -6,6 +6,6 @@ import * as _pixpilot_shadcn_ui0 from "@pixpilot/shadcn-ui";
|
|
|
6
6
|
* Formily-connected IconToggle component
|
|
7
7
|
* Toggle button with customizable icons for boolean values
|
|
8
8
|
*/
|
|
9
|
-
declare const IconToggle:
|
|
9
|
+
declare const IconToggle: react4.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui0.IconToggleProps, "ref"> & react4.RefAttributes<HTMLButtonElement>>, "ref"> & react4.RefAttributes<unknown>>;
|
|
10
10
|
//#endregion
|
|
11
11
|
export { IconToggle };
|
|
@@ -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
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react26 from "react";
|
|
2
2
|
import * as _radix_ui_react_switch0 from "@radix-ui/react-switch";
|
|
3
3
|
|
|
4
4
|
//#region src/components/Switch.d.ts
|
|
@@ -6,6 +6,6 @@ import * as _radix_ui_react_switch0 from "@radix-ui/react-switch";
|
|
|
6
6
|
* Formily-connected Switch component
|
|
7
7
|
* Toggle switch for boolean values
|
|
8
8
|
*/
|
|
9
|
-
declare const Switch:
|
|
9
|
+
declare const Switch: react26.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch0.SwitchProps & react26.RefAttributes<HTMLButtonElement>>, "ref"> & react26.RefAttributes<unknown>>;
|
|
10
10
|
//#endregion
|
|
11
11
|
export { Switch };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as react29 from "react";
|
|
2
|
+
import * as _pixpilot_shadcn_ui2 from "@pixpilot/shadcn-ui";
|
|
3
3
|
|
|
4
4
|
//#region src/components/TagsInputInline.d.ts
|
|
5
5
|
|
|
@@ -10,6 +10,6 @@ import * as _pixpilot_shadcn_ui1 from "@pixpilot/shadcn-ui";
|
|
|
10
10
|
* Based on DiceUI's tags-input for inline tag editing with keyboard navigation
|
|
11
11
|
* and validation support.
|
|
12
12
|
*/
|
|
13
|
-
declare const TagsInputInLine:
|
|
13
|
+
declare const TagsInputInLine: react29.ForwardRefExoticComponent<Partial<_pixpilot_shadcn_ui2.TagsInputProps> & react29.RefAttributes<unknown>>;
|
|
14
14
|
//#endregion
|
|
15
15
|
export { TagsInputInLine };
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react19 from "react";
|
|
2
2
|
|
|
3
3
|
//#region src/components/Textarea.d.ts
|
|
4
4
|
/**
|
|
5
5
|
* Formily-connected Textarea component
|
|
6
6
|
*/
|
|
7
|
-
declare const Textarea:
|
|
7
|
+
declare const Textarea: react19.ForwardRefExoticComponent<Omit<Partial<react19.ClassAttributes<HTMLTextAreaElement> & react19.TextareaHTMLAttributes<HTMLTextAreaElement>>, "ref"> & react19.RefAttributes<unknown>>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { Textarea };
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as react23 from "react";
|
|
2
|
+
import * as _pixpilot_shadcn_ui1 from "@pixpilot/shadcn-ui";
|
|
3
3
|
|
|
4
4
|
//#region src/components/ToggleButton.d.ts
|
|
5
5
|
/**
|
|
6
6
|
* Formily-connected IconToggle component
|
|
7
7
|
* Toggle button with customizable icons for boolean values
|
|
8
8
|
*/
|
|
9
|
-
declare const ToggleButton:
|
|
9
|
+
declare const ToggleButton: react23.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui1.ToggleButtonProps, "ref"> & react23.RefAttributes<HTMLButtonElement>>, "ref"> & react23.RefAttributes<unknown>>;
|
|
10
10
|
//#endregion
|
|
11
11
|
export { ToggleButton };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as _pixpilot_shadcn_ui3 from "@pixpilot/shadcn-ui";
|
|
3
3
|
|
|
4
4
|
//#region src/components/file-upload/FileUpload.d.ts
|
|
5
5
|
|
|
@@ -7,14 +7,14 @@ import * as _pixpilot_shadcn_ui13 from "@pixpilot/shadcn-ui";
|
|
|
7
7
|
* Formily-connected FileUploadInline component
|
|
8
8
|
* Automatically connects shadcn FileUploadInline to Formily field state
|
|
9
9
|
*/
|
|
10
|
-
declare const FileUpload: React.ForwardRefExoticComponent<(Omit<Partial<
|
|
10
|
+
declare const FileUpload: React.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui3.FileUploadInlineBaseProps & _pixpilot_shadcn_ui3.FileUploadRootPropsBaseProps & {
|
|
11
11
|
multiple: true;
|
|
12
|
-
value?:
|
|
13
|
-
onChange?:
|
|
14
|
-
} &
|
|
12
|
+
value?: _pixpilot_shadcn_ui3.FileMetadata[];
|
|
13
|
+
onChange?: _pixpilot_shadcn_ui3.OnChangeMultipleFiles;
|
|
14
|
+
} & _pixpilot_shadcn_ui3.FileUploadBaseProps & _pixpilot_shadcn_ui3.MultiFileCallbacks>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui3.FileUploadInlineBaseProps & _pixpilot_shadcn_ui3.FileUploadRootPropsBaseProps & {
|
|
15
15
|
multiple?: false;
|
|
16
|
-
value?:
|
|
17
|
-
onChange?:
|
|
18
|
-
} &
|
|
16
|
+
value?: _pixpilot_shadcn_ui3.FileMetadata | null;
|
|
17
|
+
onChange?: _pixpilot_shadcn_ui3.OnChangeSingleFile;
|
|
18
|
+
} & _pixpilot_shadcn_ui3.FileUploadBaseProps & _pixpilot_shadcn_ui3.UseFileCallbacks>, "ref">) & React.RefAttributes<unknown>>;
|
|
19
19
|
//#endregion
|
|
20
20
|
export { FileUpload };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as _pixpilot_shadcn_ui3 from "@pixpilot/shadcn-ui";
|
|
3
3
|
|
|
4
4
|
//#region src/components/file-upload/FileUpload.d.ts
|
|
5
5
|
|
|
@@ -7,14 +7,14 @@ import * as _pixpilot_shadcn_ui13 from "@pixpilot/shadcn-ui";
|
|
|
7
7
|
* Formily-connected FileUploadInline component
|
|
8
8
|
* Automatically connects shadcn FileUploadInline to Formily field state
|
|
9
9
|
*/
|
|
10
|
-
declare const FileUpload$1: React.ForwardRefExoticComponent<(Omit<Partial<
|
|
10
|
+
declare const FileUpload$1: React.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui3.FileUploadInlineBaseProps & _pixpilot_shadcn_ui3.FileUploadRootPropsBaseProps & {
|
|
11
11
|
multiple: true;
|
|
12
|
-
value?:
|
|
13
|
-
onChange?:
|
|
14
|
-
} &
|
|
12
|
+
value?: _pixpilot_shadcn_ui3.FileMetadata[];
|
|
13
|
+
onChange?: _pixpilot_shadcn_ui3.OnChangeMultipleFiles;
|
|
14
|
+
} & _pixpilot_shadcn_ui3.FileUploadBaseProps & _pixpilot_shadcn_ui3.MultiFileCallbacks>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui3.FileUploadInlineBaseProps & _pixpilot_shadcn_ui3.FileUploadRootPropsBaseProps & {
|
|
15
15
|
multiple?: false;
|
|
16
|
-
value?:
|
|
17
|
-
onChange?:
|
|
18
|
-
} &
|
|
16
|
+
value?: _pixpilot_shadcn_ui3.FileMetadata | null;
|
|
17
|
+
onChange?: _pixpilot_shadcn_ui3.OnChangeSingleFile;
|
|
18
|
+
} & _pixpilot_shadcn_ui3.FileUploadBaseProps & _pixpilot_shadcn_ui3.UseFileCallbacks>, "ref">) & React.RefAttributes<unknown>>;
|
|
19
19
|
//#endregion
|
|
20
20
|
export { FileUpload$1 as FileUpload };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as _pixpilot_shadcn_ui15 from "@pixpilot/shadcn-ui";
|
|
3
3
|
|
|
4
4
|
//#region src/components/file-upload/FileUploadInline.d.ts
|
|
5
5
|
|
|
@@ -7,14 +7,14 @@ import * as _pixpilot_shadcn_ui3 from "@pixpilot/shadcn-ui";
|
|
|
7
7
|
* Formily-connected FileUploadInline component
|
|
8
8
|
* Automatically connects shadcn FileUploadInline to Formily field state
|
|
9
9
|
*/
|
|
10
|
-
declare const FileUploadInline: React.ForwardRefExoticComponent<(Omit<Partial<
|
|
10
|
+
declare const FileUploadInline: React.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui15.FileUploadInlineBaseProps & _pixpilot_shadcn_ui15.FileUploadRootPropsBaseProps & {
|
|
11
11
|
multiple: true;
|
|
12
|
-
value?:
|
|
13
|
-
onChange?:
|
|
14
|
-
} &
|
|
12
|
+
value?: _pixpilot_shadcn_ui15.FileMetadata[];
|
|
13
|
+
onChange?: _pixpilot_shadcn_ui15.OnChangeMultipleFiles;
|
|
14
|
+
} & _pixpilot_shadcn_ui15.FileUploadBaseProps & _pixpilot_shadcn_ui15.MultiFileCallbacks>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui15.FileUploadInlineBaseProps & _pixpilot_shadcn_ui15.FileUploadRootPropsBaseProps & {
|
|
15
15
|
multiple?: false;
|
|
16
|
-
value?:
|
|
17
|
-
onChange?:
|
|
18
|
-
} &
|
|
16
|
+
value?: _pixpilot_shadcn_ui15.FileMetadata | null;
|
|
17
|
+
onChange?: _pixpilot_shadcn_ui15.OnChangeSingleFile;
|
|
18
|
+
} & _pixpilot_shadcn_ui15.FileUploadBaseProps & _pixpilot_shadcn_ui15.UseFileCallbacks>, "ref">) & React.RefAttributes<unknown>>;
|
|
19
19
|
//#endregion
|
|
20
20
|
export { FileUploadInline };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as _pixpilot_shadcn_ui15 from "@pixpilot/shadcn-ui";
|
|
3
3
|
|
|
4
4
|
//#region src/components/file-upload/FileUploadInline.d.ts
|
|
5
5
|
|
|
@@ -7,14 +7,14 @@ import * as _pixpilot_shadcn_ui3 from "@pixpilot/shadcn-ui";
|
|
|
7
7
|
* Formily-connected FileUploadInline component
|
|
8
8
|
* Automatically connects shadcn FileUploadInline to Formily field state
|
|
9
9
|
*/
|
|
10
|
-
declare const FileUploadInline$1: React.ForwardRefExoticComponent<(Omit<Partial<
|
|
10
|
+
declare const FileUploadInline$1: React.ForwardRefExoticComponent<(Omit<Partial<_pixpilot_shadcn_ui15.FileUploadInlineBaseProps & _pixpilot_shadcn_ui15.FileUploadRootPropsBaseProps & {
|
|
11
11
|
multiple: true;
|
|
12
|
-
value?:
|
|
13
|
-
onChange?:
|
|
14
|
-
} &
|
|
12
|
+
value?: _pixpilot_shadcn_ui15.FileMetadata[];
|
|
13
|
+
onChange?: _pixpilot_shadcn_ui15.OnChangeMultipleFiles;
|
|
14
|
+
} & _pixpilot_shadcn_ui15.FileUploadBaseProps & _pixpilot_shadcn_ui15.MultiFileCallbacks>, "ref"> | Omit<Partial<_pixpilot_shadcn_ui15.FileUploadInlineBaseProps & _pixpilot_shadcn_ui15.FileUploadRootPropsBaseProps & {
|
|
15
15
|
multiple?: false;
|
|
16
|
-
value?:
|
|
17
|
-
onChange?:
|
|
18
|
-
} &
|
|
16
|
+
value?: _pixpilot_shadcn_ui15.FileMetadata | null;
|
|
17
|
+
onChange?: _pixpilot_shadcn_ui15.OnChangeSingleFile;
|
|
18
|
+
} & _pixpilot_shadcn_ui15.FileUploadBaseProps & _pixpilot_shadcn_ui15.UseFileCallbacks>, "ref">) & React.RefAttributes<unknown>>;
|
|
19
19
|
//#endregion
|
|
20
20
|
export { FileUploadInline$1 as FileUploadInline };
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react783 from "react";
|
|
2
2
|
|
|
3
3
|
//#region src/components/number/NumberInput.d.ts
|
|
4
4
|
/**
|
|
5
5
|
* Formily-connected Number Input component
|
|
6
6
|
*/
|
|
7
|
-
declare const NumberInput:
|
|
7
|
+
declare const NumberInput: react783.ForwardRefExoticComponent<Omit<Partial<react783.ClassAttributes<HTMLInputElement> & react783.InputHTMLAttributes<HTMLInputElement> & {
|
|
8
8
|
prefix?: React.ReactNode;
|
|
9
9
|
suffix?: React.ReactNode;
|
|
10
10
|
groupClassName?: string;
|
|
11
11
|
prefixClassName?: string;
|
|
12
12
|
suffixClassName?: string;
|
|
13
|
-
}>, "ref"> &
|
|
13
|
+
}>, "ref"> & react783.RefAttributes<unknown>>;
|
|
14
14
|
//#endregion
|
|
15
15
|
export { NumberInput };
|
|
@@ -17,7 +17,7 @@ import * as _formily_react69 from "@formily/react";
|
|
|
17
17
|
import { ISchema } from "@formily/react";
|
|
18
18
|
import * as react1438 from "react";
|
|
19
19
|
import * as _formily_core1 from "@formily/core";
|
|
20
|
-
import * as
|
|
20
|
+
import * as _pixpilot_shadcn_ui536 from "@pixpilot/shadcn-ui";
|
|
21
21
|
import * as _radix_ui_react_checkbox22 from "@radix-ui/react-checkbox";
|
|
22
22
|
import * as _radix_ui_react_separator22 from "@radix-ui/react-separator";
|
|
23
23
|
import * as _radix_ui_react_switch22 from "@radix-ui/react-switch";
|
|
@@ -76,7 +76,7 @@ declare const basicComponentRegistry: {
|
|
|
76
76
|
value?: Date;
|
|
77
77
|
onChange?: (date: Date | undefined) => void;
|
|
78
78
|
placeholder?: string;
|
|
79
|
-
} & Omit<
|
|
79
|
+
} & Omit<_pixpilot_shadcn_ui536.DatePickerProps, "onSelect" | "selected" | "mode">> & react1438.RefAttributes<unknown>>;
|
|
80
80
|
decorator: string;
|
|
81
81
|
};
|
|
82
82
|
FormGrid: {
|
|
@@ -94,11 +94,11 @@ declare const basicComponentRegistry: {
|
|
|
94
94
|
}> & react1438.RefAttributes<unknown>>;
|
|
95
95
|
};
|
|
96
96
|
IconToggle: {
|
|
97
|
-
component: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
97
|
+
component: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui536.IconToggleProps, "ref"> & react1438.RefAttributes<HTMLButtonElement>>, "ref"> & react1438.RefAttributes<unknown>>;
|
|
98
98
|
decorator: string;
|
|
99
99
|
};
|
|
100
100
|
ToggleButton: {
|
|
101
|
-
component: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
101
|
+
component: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui536.ToggleButtonProps, "ref"> & react1438.RefAttributes<HTMLButtonElement>>, "ref"> & react1438.RefAttributes<unknown>>;
|
|
102
102
|
decorator: string;
|
|
103
103
|
};
|
|
104
104
|
Input: {
|
|
@@ -171,7 +171,7 @@ declare const basicComponents: {
|
|
|
171
171
|
value?: Date;
|
|
172
172
|
onChange?: (date: Date | undefined) => void;
|
|
173
173
|
placeholder?: string;
|
|
174
|
-
} & Omit<
|
|
174
|
+
} & Omit<_pixpilot_shadcn_ui536.DatePickerProps, "onSelect" | "selected" | "mode">> & react1438.RefAttributes<unknown>>;
|
|
175
175
|
FormGrid: typeof FormGrid;
|
|
176
176
|
FormItem: react1438.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
177
177
|
children?: react1438.ReactNode | undefined;
|
|
@@ -180,8 +180,8 @@ declare const basicComponents: {
|
|
|
180
180
|
children?: React.ReactNode;
|
|
181
181
|
value?: string;
|
|
182
182
|
}> & react1438.RefAttributes<unknown>>;
|
|
183
|
-
IconToggle: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
184
|
-
ToggleButton: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
183
|
+
IconToggle: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui536.IconToggleProps, "ref"> & react1438.RefAttributes<HTMLButtonElement>>, "ref"> & react1438.RefAttributes<unknown>>;
|
|
184
|
+
ToggleButton: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui536.ToggleButtonProps, "ref"> & react1438.RefAttributes<HTMLButtonElement>>, "ref"> & react1438.RefAttributes<unknown>>;
|
|
185
185
|
Input: react1438.ForwardRefExoticComponent<Omit<Partial<react1438.ClassAttributes<HTMLInputElement> & react1438.InputHTMLAttributes<HTMLInputElement> & {
|
|
186
186
|
prefix?: React.ReactNode;
|
|
187
187
|
suffix?: React.ReactNode;
|
|
@@ -231,7 +231,7 @@ declare const SchemaFieldBasics: {
|
|
|
231
231
|
value?: Date;
|
|
232
232
|
onChange?: (date: Date | undefined) => void;
|
|
233
233
|
placeholder?: string;
|
|
234
|
-
} & Omit<
|
|
234
|
+
} & Omit<_pixpilot_shadcn_ui536.DatePickerProps, "onSelect" | "selected" | "mode">> & react1438.RefAttributes<unknown>>;
|
|
235
235
|
FormGrid: typeof FormGrid;
|
|
236
236
|
FormItem: react1438.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
237
237
|
children?: react1438.ReactNode | undefined;
|
|
@@ -240,8 +240,8 @@ declare const SchemaFieldBasics: {
|
|
|
240
240
|
children?: React.ReactNode;
|
|
241
241
|
value?: string;
|
|
242
242
|
}> & react1438.RefAttributes<unknown>>;
|
|
243
|
-
IconToggle: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
244
|
-
ToggleButton: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
243
|
+
IconToggle: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui536.IconToggleProps, "ref"> & react1438.RefAttributes<HTMLButtonElement>>, "ref"> & react1438.RefAttributes<unknown>>;
|
|
244
|
+
ToggleButton: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui536.ToggleButtonProps, "ref"> & react1438.RefAttributes<HTMLButtonElement>>, "ref"> & react1438.RefAttributes<unknown>>;
|
|
245
245
|
Input: react1438.ForwardRefExoticComponent<Omit<Partial<react1438.ClassAttributes<HTMLInputElement> & react1438.InputHTMLAttributes<HTMLInputElement> & {
|
|
246
246
|
prefix?: React.ReactNode;
|
|
247
247
|
suffix?: React.ReactNode;
|
|
@@ -290,7 +290,7 @@ declare const SchemaFieldBasics: {
|
|
|
290
290
|
value?: Date;
|
|
291
291
|
onChange?: (date: Date | undefined) => void;
|
|
292
292
|
placeholder?: string;
|
|
293
|
-
} & Omit<
|
|
293
|
+
} & Omit<_pixpilot_shadcn_ui536.DatePickerProps, "onSelect" | "selected" | "mode">> & react1438.RefAttributes<unknown>>;
|
|
294
294
|
FormGrid: typeof FormGrid;
|
|
295
295
|
FormItem: react1438.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
296
296
|
children?: react1438.ReactNode | undefined;
|
|
@@ -299,8 +299,8 @@ declare const SchemaFieldBasics: {
|
|
|
299
299
|
children?: React.ReactNode;
|
|
300
300
|
value?: string;
|
|
301
301
|
}> & react1438.RefAttributes<unknown>>;
|
|
302
|
-
IconToggle: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
303
|
-
ToggleButton: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
302
|
+
IconToggle: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui536.IconToggleProps, "ref"> & react1438.RefAttributes<HTMLButtonElement>>, "ref"> & react1438.RefAttributes<unknown>>;
|
|
303
|
+
ToggleButton: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui536.ToggleButtonProps, "ref"> & react1438.RefAttributes<HTMLButtonElement>>, "ref"> & react1438.RefAttributes<unknown>>;
|
|
304
304
|
Input: react1438.ForwardRefExoticComponent<Omit<Partial<react1438.ClassAttributes<HTMLInputElement> & react1438.InputHTMLAttributes<HTMLInputElement> & {
|
|
305
305
|
prefix?: React.ReactNode;
|
|
306
306
|
suffix?: React.ReactNode;
|
|
@@ -349,7 +349,7 @@ declare const SchemaFieldBasics: {
|
|
|
349
349
|
value?: Date;
|
|
350
350
|
onChange?: (date: Date | undefined) => void;
|
|
351
351
|
placeholder?: string;
|
|
352
|
-
} & Omit<
|
|
352
|
+
} & Omit<_pixpilot_shadcn_ui536.DatePickerProps, "onSelect" | "selected" | "mode">> & react1438.RefAttributes<unknown>>;
|
|
353
353
|
FormGrid: typeof FormGrid;
|
|
354
354
|
FormItem: react1438.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
355
355
|
children?: react1438.ReactNode | undefined;
|
|
@@ -358,8 +358,8 @@ declare const SchemaFieldBasics: {
|
|
|
358
358
|
children?: React.ReactNode;
|
|
359
359
|
value?: string;
|
|
360
360
|
}> & react1438.RefAttributes<unknown>>;
|
|
361
|
-
IconToggle: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
362
|
-
ToggleButton: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
361
|
+
IconToggle: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui536.IconToggleProps, "ref"> & react1438.RefAttributes<HTMLButtonElement>>, "ref"> & react1438.RefAttributes<unknown>>;
|
|
362
|
+
ToggleButton: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui536.ToggleButtonProps, "ref"> & react1438.RefAttributes<HTMLButtonElement>>, "ref"> & react1438.RefAttributes<unknown>>;
|
|
363
363
|
Input: react1438.ForwardRefExoticComponent<Omit<Partial<react1438.ClassAttributes<HTMLInputElement> & react1438.InputHTMLAttributes<HTMLInputElement> & {
|
|
364
364
|
prefix?: React.ReactNode;
|
|
365
365
|
suffix?: React.ReactNode;
|
|
@@ -408,7 +408,7 @@ declare const SchemaFieldBasics: {
|
|
|
408
408
|
value?: Date;
|
|
409
409
|
onChange?: (date: Date | undefined) => void;
|
|
410
410
|
placeholder?: string;
|
|
411
|
-
} & Omit<
|
|
411
|
+
} & Omit<_pixpilot_shadcn_ui536.DatePickerProps, "onSelect" | "selected" | "mode">> & react1438.RefAttributes<unknown>>;
|
|
412
412
|
FormGrid: typeof FormGrid;
|
|
413
413
|
FormItem: react1438.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
414
414
|
children?: react1438.ReactNode | undefined;
|
|
@@ -417,8 +417,8 @@ declare const SchemaFieldBasics: {
|
|
|
417
417
|
children?: React.ReactNode;
|
|
418
418
|
value?: string;
|
|
419
419
|
}> & react1438.RefAttributes<unknown>>;
|
|
420
|
-
IconToggle: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
421
|
-
ToggleButton: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
420
|
+
IconToggle: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui536.IconToggleProps, "ref"> & react1438.RefAttributes<HTMLButtonElement>>, "ref"> & react1438.RefAttributes<unknown>>;
|
|
421
|
+
ToggleButton: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui536.ToggleButtonProps, "ref"> & react1438.RefAttributes<HTMLButtonElement>>, "ref"> & react1438.RefAttributes<unknown>>;
|
|
422
422
|
Input: react1438.ForwardRefExoticComponent<Omit<Partial<react1438.ClassAttributes<HTMLInputElement> & react1438.InputHTMLAttributes<HTMLInputElement> & {
|
|
423
423
|
prefix?: React.ReactNode;
|
|
424
424
|
suffix?: React.ReactNode;
|
|
@@ -467,7 +467,7 @@ declare const SchemaFieldBasics: {
|
|
|
467
467
|
value?: Date;
|
|
468
468
|
onChange?: (date: Date | undefined) => void;
|
|
469
469
|
placeholder?: string;
|
|
470
|
-
} & Omit<
|
|
470
|
+
} & Omit<_pixpilot_shadcn_ui536.DatePickerProps, "onSelect" | "selected" | "mode">> & react1438.RefAttributes<unknown>>;
|
|
471
471
|
FormGrid: typeof FormGrid;
|
|
472
472
|
FormItem: react1438.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
473
473
|
children?: react1438.ReactNode | undefined;
|
|
@@ -476,8 +476,8 @@ declare const SchemaFieldBasics: {
|
|
|
476
476
|
children?: React.ReactNode;
|
|
477
477
|
value?: string;
|
|
478
478
|
}> & react1438.RefAttributes<unknown>>;
|
|
479
|
-
IconToggle: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
480
|
-
ToggleButton: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
479
|
+
IconToggle: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui536.IconToggleProps, "ref"> & react1438.RefAttributes<HTMLButtonElement>>, "ref"> & react1438.RefAttributes<unknown>>;
|
|
480
|
+
ToggleButton: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui536.ToggleButtonProps, "ref"> & react1438.RefAttributes<HTMLButtonElement>>, "ref"> & react1438.RefAttributes<unknown>>;
|
|
481
481
|
Input: react1438.ForwardRefExoticComponent<Omit<Partial<react1438.ClassAttributes<HTMLInputElement> & react1438.InputHTMLAttributes<HTMLInputElement> & {
|
|
482
482
|
prefix?: React.ReactNode;
|
|
483
483
|
suffix?: React.ReactNode;
|
|
@@ -526,7 +526,7 @@ declare const SchemaFieldBasics: {
|
|
|
526
526
|
value?: Date;
|
|
527
527
|
onChange?: (date: Date | undefined) => void;
|
|
528
528
|
placeholder?: string;
|
|
529
|
-
} & Omit<
|
|
529
|
+
} & Omit<_pixpilot_shadcn_ui536.DatePickerProps, "onSelect" | "selected" | "mode">> & react1438.RefAttributes<unknown>>;
|
|
530
530
|
FormGrid: typeof FormGrid;
|
|
531
531
|
FormItem: react1438.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
532
532
|
children?: react1438.ReactNode | undefined;
|
|
@@ -535,8 +535,8 @@ declare const SchemaFieldBasics: {
|
|
|
535
535
|
children?: React.ReactNode;
|
|
536
536
|
value?: string;
|
|
537
537
|
}> & react1438.RefAttributes<unknown>>;
|
|
538
|
-
IconToggle: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
539
|
-
ToggleButton: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
538
|
+
IconToggle: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui536.IconToggleProps, "ref"> & react1438.RefAttributes<HTMLButtonElement>>, "ref"> & react1438.RefAttributes<unknown>>;
|
|
539
|
+
ToggleButton: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui536.ToggleButtonProps, "ref"> & react1438.RefAttributes<HTMLButtonElement>>, "ref"> & react1438.RefAttributes<unknown>>;
|
|
540
540
|
Input: react1438.ForwardRefExoticComponent<Omit<Partial<react1438.ClassAttributes<HTMLInputElement> & react1438.InputHTMLAttributes<HTMLInputElement> & {
|
|
541
541
|
prefix?: React.ReactNode;
|
|
542
542
|
suffix?: React.ReactNode;
|
|
@@ -585,7 +585,7 @@ declare const SchemaFieldBasics: {
|
|
|
585
585
|
value?: Date;
|
|
586
586
|
onChange?: (date: Date | undefined) => void;
|
|
587
587
|
placeholder?: string;
|
|
588
|
-
} & Omit<
|
|
588
|
+
} & Omit<_pixpilot_shadcn_ui536.DatePickerProps, "onSelect" | "selected" | "mode">> & react1438.RefAttributes<unknown>>;
|
|
589
589
|
FormGrid: typeof FormGrid;
|
|
590
590
|
FormItem: react1438.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
591
591
|
children?: react1438.ReactNode | undefined;
|
|
@@ -594,8 +594,8 @@ declare const SchemaFieldBasics: {
|
|
|
594
594
|
children?: React.ReactNode;
|
|
595
595
|
value?: string;
|
|
596
596
|
}> & react1438.RefAttributes<unknown>>;
|
|
597
|
-
IconToggle: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
598
|
-
ToggleButton: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
597
|
+
IconToggle: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui536.IconToggleProps, "ref"> & react1438.RefAttributes<HTMLButtonElement>>, "ref"> & react1438.RefAttributes<unknown>>;
|
|
598
|
+
ToggleButton: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui536.ToggleButtonProps, "ref"> & react1438.RefAttributes<HTMLButtonElement>>, "ref"> & react1438.RefAttributes<unknown>>;
|
|
599
599
|
Input: react1438.ForwardRefExoticComponent<Omit<Partial<react1438.ClassAttributes<HTMLInputElement> & react1438.InputHTMLAttributes<HTMLInputElement> & {
|
|
600
600
|
prefix?: React.ReactNode;
|
|
601
601
|
suffix?: React.ReactNode;
|
|
@@ -644,7 +644,7 @@ declare const SchemaFieldBasics: {
|
|
|
644
644
|
value?: Date;
|
|
645
645
|
onChange?: (date: Date | undefined) => void;
|
|
646
646
|
placeholder?: string;
|
|
647
|
-
} & Omit<
|
|
647
|
+
} & Omit<_pixpilot_shadcn_ui536.DatePickerProps, "onSelect" | "selected" | "mode">> & react1438.RefAttributes<unknown>>;
|
|
648
648
|
FormGrid: typeof FormGrid;
|
|
649
649
|
FormItem: react1438.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
650
650
|
children?: react1438.ReactNode | undefined;
|
|
@@ -653,8 +653,8 @@ declare const SchemaFieldBasics: {
|
|
|
653
653
|
children?: React.ReactNode;
|
|
654
654
|
value?: string;
|
|
655
655
|
}> & react1438.RefAttributes<unknown>>;
|
|
656
|
-
IconToggle: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
657
|
-
ToggleButton: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
656
|
+
IconToggle: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui536.IconToggleProps, "ref"> & react1438.RefAttributes<HTMLButtonElement>>, "ref"> & react1438.RefAttributes<unknown>>;
|
|
657
|
+
ToggleButton: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui536.ToggleButtonProps, "ref"> & react1438.RefAttributes<HTMLButtonElement>>, "ref"> & react1438.RefAttributes<unknown>>;
|
|
658
658
|
Input: react1438.ForwardRefExoticComponent<Omit<Partial<react1438.ClassAttributes<HTMLInputElement> & react1438.InputHTMLAttributes<HTMLInputElement> & {
|
|
659
659
|
prefix?: React.ReactNode;
|
|
660
660
|
suffix?: React.ReactNode;
|
|
@@ -703,7 +703,7 @@ declare const SchemaFieldBasics: {
|
|
|
703
703
|
value?: Date;
|
|
704
704
|
onChange?: (date: Date | undefined) => void;
|
|
705
705
|
placeholder?: string;
|
|
706
|
-
} & Omit<
|
|
706
|
+
} & Omit<_pixpilot_shadcn_ui536.DatePickerProps, "onSelect" | "selected" | "mode">> & react1438.RefAttributes<unknown>>;
|
|
707
707
|
FormGrid: typeof FormGrid;
|
|
708
708
|
FormItem: react1438.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
|
|
709
709
|
children?: react1438.ReactNode | undefined;
|
|
@@ -712,8 +712,8 @@ declare const SchemaFieldBasics: {
|
|
|
712
712
|
children?: React.ReactNode;
|
|
713
713
|
value?: string;
|
|
714
714
|
}> & react1438.RefAttributes<unknown>>;
|
|
715
|
-
IconToggle: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
716
|
-
ToggleButton: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<
|
|
715
|
+
IconToggle: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui536.IconToggleProps, "ref"> & react1438.RefAttributes<HTMLButtonElement>>, "ref"> & react1438.RefAttributes<unknown>>;
|
|
716
|
+
ToggleButton: react1438.ForwardRefExoticComponent<Omit<Partial<Omit<_pixpilot_shadcn_ui536.ToggleButtonProps, "ref"> & react1438.RefAttributes<HTMLButtonElement>>, "ref"> & react1438.RefAttributes<unknown>>;
|
|
717
717
|
Input: react1438.ForwardRefExoticComponent<Omit<Partial<react1438.ClassAttributes<HTMLInputElement> & react1438.InputHTMLAttributes<HTMLInputElement> & {
|
|
718
718
|
prefix?: React.ReactNode;
|
|
719
719
|
suffix?: React.ReactNode;
|