@trackunit/react-form-components 1.24.17 → 1.25.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/react-form-components",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.25.0",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"engines": {
|
|
@@ -9,17 +9,17 @@
|
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"react-calendar": "^6.0.0",
|
|
11
11
|
"react-select": "^5.10.2",
|
|
12
|
-
"@trackunit/date-and-time-utils": "1.
|
|
12
|
+
"@trackunit/date-and-time-utils": "1.13.0",
|
|
13
13
|
"usehooks-ts": "^3.1.0",
|
|
14
14
|
"libphonenumber-js": "^1.12.22",
|
|
15
15
|
"zod": "^3.25.76",
|
|
16
16
|
"tailwind-merge": "^2.0.0",
|
|
17
|
-
"@trackunit/css-class-variance-utilities": "1.
|
|
18
|
-
"@trackunit/react-components": "1.
|
|
19
|
-
"@trackunit/ui-icons": "1.
|
|
20
|
-
"@trackunit/shared-utils": "1.
|
|
21
|
-
"@trackunit/ui-design-tokens": "1.
|
|
22
|
-
"@trackunit/i18n-library-translation": "1.
|
|
17
|
+
"@trackunit/css-class-variance-utilities": "1.13.0",
|
|
18
|
+
"@trackunit/react-components": "1.24.0",
|
|
19
|
+
"@trackunit/ui-icons": "1.13.0",
|
|
20
|
+
"@trackunit/shared-utils": "1.15.0",
|
|
21
|
+
"@trackunit/ui-design-tokens": "1.13.0",
|
|
22
|
+
"@trackunit/i18n-library-translation": "1.21.0",
|
|
23
23
|
"string-ts": "^2.0.0",
|
|
24
24
|
"es-toolkit": "^1.39.10"
|
|
25
25
|
},
|
|
@@ -19,7 +19,7 @@ export declare const cvaInput: (props?: ({
|
|
|
19
19
|
*! Relies on the specific grid layout of cvaInput ☝️
|
|
20
20
|
*/
|
|
21
21
|
export declare const cvaInputItemPlacementManager: (props?: ({
|
|
22
|
-
position?: "
|
|
22
|
+
position?: "span" | "before" | "after" | null | undefined;
|
|
23
23
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
24
24
|
export declare const cvaAccessoriesContainer: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
|
|
25
25
|
/**
|
|
@@ -8,7 +8,7 @@ export declare const cvaSelectContainer: (props?: ({
|
|
|
8
8
|
invalid?: boolean | null | undefined;
|
|
9
9
|
focused?: boolean | null | undefined;
|
|
10
10
|
readOnly?: boolean | null | undefined;
|
|
11
|
-
defaultVariants?: "
|
|
11
|
+
defaultVariants?: "disabled" | "readOnly" | "invalid" | "fieldSize" | "focused" | null | undefined;
|
|
12
12
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
13
13
|
export declare const cvaSelectControl: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
|
|
14
14
|
export declare const cvaSelectLoadingMessage: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
|
|
@@ -22,7 +22,7 @@ export declare const cvaSelectDropdownIndicator: (props?: ({
|
|
|
22
22
|
export declare const cvaSelectValueContainer: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
|
|
23
23
|
export declare const cvaSelectSingleValue: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
|
|
24
24
|
export declare const cvaSelectMenu: (props?: ({
|
|
25
|
-
placement?: "
|
|
25
|
+
placement?: "top" | "bottom" | null | undefined;
|
|
26
26
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
27
27
|
export declare const cvaSelectMenuList: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
|
|
28
28
|
export declare const cvaSelectPlaceholder: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
export declare const cvaCheckbox: (props?: ({
|
|
6
6
|
invalid?: boolean | null | undefined;
|
|
7
|
-
state?: "
|
|
7
|
+
state?: "indeterminate" | "selected" | "deselected" | null | undefined;
|
|
8
8
|
disabled?: boolean | null | undefined;
|
|
9
9
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
10
10
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const cvaTextAreaBaseInput: (props?: ({
|
|
2
2
|
disabled?: boolean | null | undefined;
|
|
3
3
|
invalid?: boolean | null | undefined;
|
|
4
|
-
resize?: "
|
|
4
|
+
resize?: "none" | "both" | "horizontal" | "vertical" | null | undefined;
|
|
5
5
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|