@trackunit/react-components 1.8.24 → 1.8.29
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 +7 -7
package/index.cjs.js
CHANGED
|
@@ -3924,7 +3924,7 @@ const useOverflowItems = ({ threshold = 1, childUniqueIdentifierAttribute = "id"
|
|
|
3924
3924
|
entries.forEach(entry => {
|
|
3925
3925
|
// @ts-expect-error - suppressImplicitAnyIndexErrors
|
|
3926
3926
|
const targetElementId = entry.target[childUniqueIdentifierAttribute];
|
|
3927
|
-
if (targetElementId !== null && targetElementId !== undefined) {
|
|
3927
|
+
if (targetElementId !== null && targetElementId !== undefined && targetElementId !== "") {
|
|
3928
3928
|
updatedEntries[targetElementId] = entry.isIntersecting ? false : true;
|
|
3929
3929
|
}
|
|
3930
3930
|
});
|
package/index.esm.js
CHANGED
|
@@ -3922,7 +3922,7 @@ const useOverflowItems = ({ threshold = 1, childUniqueIdentifierAttribute = "id"
|
|
|
3922
3922
|
entries.forEach(entry => {
|
|
3923
3923
|
// @ts-expect-error - suppressImplicitAnyIndexErrors
|
|
3924
3924
|
const targetElementId = entry.target[childUniqueIdentifierAttribute];
|
|
3925
|
-
if (targetElementId !== null && targetElementId !== undefined) {
|
|
3925
|
+
if (targetElementId !== null && targetElementId !== undefined && targetElementId !== "") {
|
|
3926
3926
|
updatedEntries[targetElementId] = entry.isIntersecting ? false : true;
|
|
3927
3927
|
}
|
|
3928
3928
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/react-components",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.29",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"engines": {
|
|
@@ -17,12 +17,12 @@
|
|
|
17
17
|
"@floating-ui/react": "^0.26.25",
|
|
18
18
|
"string-ts": "^2.0.0",
|
|
19
19
|
"tailwind-merge": "^2.0.0",
|
|
20
|
-
"@trackunit/ui-design-tokens": "1.6.
|
|
21
|
-
"@trackunit/css-class-variance-utilities": "1.6.
|
|
22
|
-
"@trackunit/shared-utils": "1.8.
|
|
23
|
-
"@trackunit/ui-icons": "1.6.
|
|
24
|
-
"@trackunit/react-table-pagination": "1.6.
|
|
25
|
-
"@trackunit/react-test-setup": "1.3.
|
|
20
|
+
"@trackunit/ui-design-tokens": "1.6.55",
|
|
21
|
+
"@trackunit/css-class-variance-utilities": "1.6.53",
|
|
22
|
+
"@trackunit/shared-utils": "1.8.54",
|
|
23
|
+
"@trackunit/ui-icons": "1.6.52",
|
|
24
|
+
"@trackunit/react-table-pagination": "1.6.52",
|
|
25
|
+
"@trackunit/react-test-setup": "1.3.53",
|
|
26
26
|
"@tanstack/react-router": "1.114.29"
|
|
27
27
|
},
|
|
28
28
|
"module": "./index.esm.js",
|