@trackunit/react-components 1.10.53 → 1.10.55
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/index.cjs.js +1 -1
- package/index.esm.js +1 -1
- package/package.json +5 -5
- package/src/index.d.ts +1 -0
package/index.cjs.js
CHANGED
|
@@ -4403,7 +4403,7 @@ const cvaMenuList = cssClassVarianceUtilities.cvaMerge([
|
|
|
4403
4403
|
"max-h-[max(40dvh,var(--spacing-64))]",
|
|
4404
4404
|
"overflow-y-auto",
|
|
4405
4405
|
]);
|
|
4406
|
-
const cvaMenuListDivider = cssClassVarianceUtilities.cvaMerge(["mx-[-4px]", "my-
|
|
4406
|
+
const cvaMenuListDivider = cssClassVarianceUtilities.cvaMerge(["mx-[-4px]", "my-0.5", "min-h-px", "bg-neutral-300"]);
|
|
4407
4407
|
const cvaMenuListMultiSelect = cssClassVarianceUtilities.cvaMerge("hover:!bg-blue-200");
|
|
4408
4408
|
const cvaMenuListItem = cssClassVarianceUtilities.cvaMerge("max-w-full");
|
|
4409
4409
|
|
package/index.esm.js
CHANGED
|
@@ -4401,7 +4401,7 @@ const cvaMenuList = cvaMerge([
|
|
|
4401
4401
|
"max-h-[max(40dvh,var(--spacing-64))]",
|
|
4402
4402
|
"overflow-y-auto",
|
|
4403
4403
|
]);
|
|
4404
|
-
const cvaMenuListDivider = cvaMerge(["mx-[-4px]", "my-
|
|
4404
|
+
const cvaMenuListDivider = cvaMerge(["mx-[-4px]", "my-0.5", "min-h-px", "bg-neutral-300"]);
|
|
4405
4405
|
const cvaMenuListMultiSelect = cvaMerge("hover:!bg-blue-200");
|
|
4406
4406
|
const cvaMenuListItem = cvaMerge("max-w-full");
|
|
4407
4407
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/react-components",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.55",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"engines": {
|
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
"@floating-ui/react": "^0.26.25",
|
|
16
16
|
"string-ts": "^2.0.0",
|
|
17
17
|
"tailwind-merge": "^2.0.0",
|
|
18
|
-
"@trackunit/ui-design-tokens": "1.7.
|
|
19
|
-
"@trackunit/css-class-variance-utilities": "1.7.
|
|
20
|
-
"@trackunit/shared-utils": "1.9.
|
|
21
|
-
"@trackunit/ui-icons": "1.7.
|
|
18
|
+
"@trackunit/ui-design-tokens": "1.7.80",
|
|
19
|
+
"@trackunit/css-class-variance-utilities": "1.7.80",
|
|
20
|
+
"@trackunit/shared-utils": "1.9.80",
|
|
21
|
+
"@trackunit/ui-icons": "1.7.81",
|
|
22
22
|
"@tanstack/react-router": "1.114.29",
|
|
23
23
|
"es-toolkit": "^1.39.10",
|
|
24
24
|
"@tanstack/react-virtual": "3.13.12"
|
package/src/index.d.ts
CHANGED
|
@@ -6,4 +6,5 @@ export * from "./components/Clickable/Clickable.variants";
|
|
|
6
6
|
export * from "./components/Indicator/Indicator.variants";
|
|
7
7
|
export * from "./components/InteractableItem/InteractableItem.variants";
|
|
8
8
|
export * from "./components/Menu/MenuItem/MenuItem.variants";
|
|
9
|
+
export * from "./components/Menu/MenuList/MenuList.variants";
|
|
9
10
|
export * from "./hooks";
|