@trackunit/react-components 1.22.0 → 1.22.2
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 +15 -4
- package/index.esm.js +15 -4
- package/package.json +5 -5
package/index.cjs.js
CHANGED
|
@@ -4602,12 +4602,21 @@ const cvaHorizontalOverflowScroller = cssClassVarianceUtilities.cvaMerge([
|
|
|
4602
4602
|
]);
|
|
4603
4603
|
const cvaHorizontalOverflowScrollerAndIndicatorsContainer = cssClassVarianceUtilities.cvaMerge(["group", "w-full", "overflow-clip"]);
|
|
4604
4604
|
|
|
4605
|
-
const cvaOverflowIndicatorContainer = cssClassVarianceUtilities.cvaMerge(["pointer-events-none", "h-full", "w-full", "isolate"]);
|
|
4606
|
-
const cvaOverflowIndicatorGradient = cssClassVarianceUtilities.cvaMerge([
|
|
4605
|
+
const cvaOverflowIndicatorContainer = cssClassVarianceUtilities.cvaMerge(["pointer-events-none", "h-full", "w-full", "isolate", "pb-px"]);
|
|
4606
|
+
const cvaOverflowIndicatorGradient = cssClassVarianceUtilities.cvaMerge([
|
|
4607
|
+
"pointer-events-none",
|
|
4608
|
+
"self-stretch",
|
|
4609
|
+
"w-16",
|
|
4610
|
+
"opacity-0",
|
|
4611
|
+
"transition-opacity",
|
|
4612
|
+
"duration-200",
|
|
4613
|
+
"group-hover:opacity-100",
|
|
4614
|
+
"group-focus-within:opacity-100",
|
|
4615
|
+
], {
|
|
4607
4616
|
variants: {
|
|
4608
4617
|
direction: {
|
|
4609
|
-
left: ["bg-gradient-to-r", "from-white", "to-transparent"],
|
|
4610
|
-
right: ["bg-gradient-to-l", "from-white", "to-transparent"],
|
|
4618
|
+
left: ["bg-gradient-to-r", "from-white", "from-30%", "to-transparent"],
|
|
4619
|
+
right: ["bg-gradient-to-l", "from-white", "from-30%", "to-transparent"],
|
|
4611
4620
|
},
|
|
4612
4621
|
},
|
|
4613
4622
|
});
|
|
@@ -4627,7 +4636,9 @@ const cvaOverflowIndicatorButton = cssClassVarianceUtilities.cvaMerge([
|
|
|
4627
4636
|
"pointer-events-auto",
|
|
4628
4637
|
"starting:opacity-0",
|
|
4629
4638
|
"group-hover:opacity-100",
|
|
4639
|
+
"group-focus-within:opacity-100",
|
|
4630
4640
|
"rounded-full",
|
|
4641
|
+
"mx-1",
|
|
4631
4642
|
]);
|
|
4632
4643
|
|
|
4633
4644
|
/**
|
package/index.esm.js
CHANGED
|
@@ -4600,12 +4600,21 @@ const cvaHorizontalOverflowScroller = cvaMerge([
|
|
|
4600
4600
|
]);
|
|
4601
4601
|
const cvaHorizontalOverflowScrollerAndIndicatorsContainer = cvaMerge(["group", "w-full", "overflow-clip"]);
|
|
4602
4602
|
|
|
4603
|
-
const cvaOverflowIndicatorContainer = cvaMerge(["pointer-events-none", "h-full", "w-full", "isolate"]);
|
|
4604
|
-
const cvaOverflowIndicatorGradient = cvaMerge([
|
|
4603
|
+
const cvaOverflowIndicatorContainer = cvaMerge(["pointer-events-none", "h-full", "w-full", "isolate", "pb-px"]);
|
|
4604
|
+
const cvaOverflowIndicatorGradient = cvaMerge([
|
|
4605
|
+
"pointer-events-none",
|
|
4606
|
+
"self-stretch",
|
|
4607
|
+
"w-16",
|
|
4608
|
+
"opacity-0",
|
|
4609
|
+
"transition-opacity",
|
|
4610
|
+
"duration-200",
|
|
4611
|
+
"group-hover:opacity-100",
|
|
4612
|
+
"group-focus-within:opacity-100",
|
|
4613
|
+
], {
|
|
4605
4614
|
variants: {
|
|
4606
4615
|
direction: {
|
|
4607
|
-
left: ["bg-gradient-to-r", "from-white", "to-transparent"],
|
|
4608
|
-
right: ["bg-gradient-to-l", "from-white", "to-transparent"],
|
|
4616
|
+
left: ["bg-gradient-to-r", "from-white", "from-30%", "to-transparent"],
|
|
4617
|
+
right: ["bg-gradient-to-l", "from-white", "from-30%", "to-transparent"],
|
|
4609
4618
|
},
|
|
4610
4619
|
},
|
|
4611
4620
|
});
|
|
@@ -4625,7 +4634,9 @@ const cvaOverflowIndicatorButton = cvaMerge([
|
|
|
4625
4634
|
"pointer-events-auto",
|
|
4626
4635
|
"starting:opacity-0",
|
|
4627
4636
|
"group-hover:opacity-100",
|
|
4637
|
+
"group-focus-within:opacity-100",
|
|
4628
4638
|
"rounded-full",
|
|
4639
|
+
"mx-1",
|
|
4629
4640
|
]);
|
|
4630
4641
|
|
|
4631
4642
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/react-components",
|
|
3
|
-
"version": "1.22.
|
|
3
|
+
"version": "1.22.2",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"engines": {
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"@floating-ui/react": "^0.26.25",
|
|
14
14
|
"string-ts": "^2.0.0",
|
|
15
15
|
"tailwind-merge": "^2.0.0",
|
|
16
|
-
"@trackunit/ui-design-tokens": "1.11.
|
|
17
|
-
"@trackunit/css-class-variance-utilities": "1.11.
|
|
18
|
-
"@trackunit/shared-utils": "1.13.
|
|
19
|
-
"@trackunit/ui-icons": "1.11.
|
|
16
|
+
"@trackunit/ui-design-tokens": "1.11.96",
|
|
17
|
+
"@trackunit/css-class-variance-utilities": "1.11.99",
|
|
18
|
+
"@trackunit/shared-utils": "1.13.99",
|
|
19
|
+
"@trackunit/ui-icons": "1.11.95",
|
|
20
20
|
"es-toolkit": "^1.39.10",
|
|
21
21
|
"@tanstack/react-virtual": "3.13.12",
|
|
22
22
|
"dequal": "^2.0.3",
|