globe.gl 2.41.2 → 2.41.4
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/README.md +1 -1
- package/dist/globe.gl.d.ts +2 -1
- package/dist/globe.gl.js +151 -65
- package/dist/globe.gl.js.map +1 -1
- package/dist/globe.gl.min.js +2 -2
- package/dist/globe.gl.mjs +1 -1
- package/package.json +6 -6
package/dist/globe.gl.mjs
CHANGED
|
@@ -442,7 +442,7 @@ var globe = Kapsule({
|
|
|
442
442
|
},
|
|
443
443
|
toGlobeCoords: function toGlobeCoords(state, x, y) {
|
|
444
444
|
var globeIntersects = state.renderObjs.intersectingObjects(x, y).find(function (d) {
|
|
445
|
-
return d.object.__globeObjType === 'globe';
|
|
445
|
+
return (d.object.__globeObjType || d.object.parent.__globeObjType) === 'globe';
|
|
446
446
|
});
|
|
447
447
|
if (!globeIntersects) return null; // coords outside globe
|
|
448
448
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "globe.gl",
|
|
3
|
-
"version": "2.41.
|
|
3
|
+
"version": "2.41.4",
|
|
4
4
|
"description": "UI component for Globe Data Visualization using ThreeJS/WebGL",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"unpkg": "dist/globe.gl.min.js",
|
|
@@ -56,16 +56,16 @@
|
|
|
56
56
|
"three-render-objects": "^1.39"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@babel/core": "^7.26.
|
|
59
|
+
"@babel/core": "^7.26.10",
|
|
60
60
|
"@babel/preset-env": "^7.26.9",
|
|
61
61
|
"@rollup/plugin-babel": "^6.0.4",
|
|
62
|
-
"@rollup/plugin-commonjs": "^28.0.
|
|
63
|
-
"@rollup/plugin-node-resolve": "^16.0.
|
|
62
|
+
"@rollup/plugin-commonjs": "^28.0.3",
|
|
63
|
+
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
64
64
|
"@rollup/plugin-terser": "^0.4.4",
|
|
65
65
|
"postcss": "^8.5.3",
|
|
66
66
|
"rimraf": "^6.0.1",
|
|
67
|
-
"rollup": "^4.
|
|
68
|
-
"rollup-plugin-dts": "^6.
|
|
67
|
+
"rollup": "^4.37.0",
|
|
68
|
+
"rollup-plugin-dts": "^6.2.1",
|
|
69
69
|
"rollup-plugin-postcss": "^4.0.2",
|
|
70
70
|
"typescript": "^5.8.2"
|
|
71
71
|
},
|