react-globe.gl 2.35.0 → 2.37.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/README.md +5 -0
- package/dist/react-globe.gl.d.ts +4 -0
- package/dist/react-globe.gl.js +10986 -4421
- package/dist/react-globe.gl.js.map +1 -1
- package/dist/react-globe.gl.min.js +4 -4
- package/dist/react-globe.gl.mjs +2 -1
- package/package.json +14 -14
package/dist/react-globe.gl.mjs
CHANGED
|
@@ -214,13 +214,14 @@ var GlobePropTypes = {
|
|
|
214
214
|
enablePointerInteraction: PropTypes.bool,
|
|
215
215
|
pointerEventsFilter: PropTypes.func,
|
|
216
216
|
lineHoverPrecision: PropTypes.number,
|
|
217
|
+
showPointerCursor: PropTypes.oneOfType([PropTypes.bool, PropTypes.func]),
|
|
217
218
|
onZoom: PropTypes.func
|
|
218
219
|
};
|
|
219
220
|
|
|
220
221
|
var Globe = fromKapsule(GlobeKapsule, {
|
|
221
222
|
methodNames: [
|
|
222
223
|
// bind methods
|
|
223
|
-
'pauseAnimation', 'resumeAnimation', 'pointOfView', 'lights', 'scene', 'camera', 'renderer', 'postProcessingComposer', 'controls', 'getGlobeRadius', 'getCoords', 'getScreenCoords', 'toGeoCoords', 'toGlobeCoords'],
|
|
224
|
+
'pauseAnimation', 'resumeAnimation', 'pointOfView', 'lights', 'scene', 'camera', 'renderer', 'postProcessingComposer', 'controls', 'getGlobeRadius', 'getCoords', 'getScreenCoords', 'toGeoCoords', 'toGlobeCoords', 'globeTileEngineClearCache'],
|
|
224
225
|
initPropNames: ['animateIn', 'waitForGlobeReady', 'rendererConfig']
|
|
225
226
|
});
|
|
226
227
|
Globe.displayName = 'Globe';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-globe.gl",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.37.0",
|
|
4
4
|
"description": "React component for Globe Data Visualization using ThreeJS/WebGL",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"dist/**/*"
|
|
47
47
|
],
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"globe.gl": "^2.
|
|
49
|
+
"globe.gl": "^2.45",
|
|
50
50
|
"prop-types": "15",
|
|
51
51
|
"react-kapsule": "^2.5"
|
|
52
52
|
},
|
|
@@ -54,19 +54,19 @@
|
|
|
54
54
|
"react": "*"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@babel/core": "^7.28.
|
|
58
|
-
"@babel/preset-env": "^7.28.
|
|
59
|
-
"@babel/preset-react": "^7.
|
|
60
|
-
"@rollup/plugin-babel": "^6.0
|
|
61
|
-
"@rollup/plugin-commonjs": "^
|
|
62
|
-
"@rollup/plugin-node-resolve": "^16.0.
|
|
63
|
-
"@rollup/plugin-replace": "^6.0.
|
|
57
|
+
"@babel/core": "^7.28.5",
|
|
58
|
+
"@babel/preset-env": "^7.28.5",
|
|
59
|
+
"@babel/preset-react": "^7.28.5",
|
|
60
|
+
"@rollup/plugin-babel": "^6.1.0",
|
|
61
|
+
"@rollup/plugin-commonjs": "^29.0.0",
|
|
62
|
+
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
63
|
+
"@rollup/plugin-replace": "^6.0.3",
|
|
64
64
|
"@rollup/plugin-terser": "^0.4.4",
|
|
65
|
-
"@types/react": "^19.
|
|
66
|
-
"rimraf": "^6.0
|
|
67
|
-
"rollup": "^4.
|
|
68
|
-
"rollup-plugin-dts": "^6.2.
|
|
69
|
-
"typescript": "^5.
|
|
65
|
+
"@types/react": "^19.2.2",
|
|
66
|
+
"rimraf": "^6.1.0",
|
|
67
|
+
"rollup": "^4.52.5",
|
|
68
|
+
"rollup-plugin-dts": "^6.2.3",
|
|
69
|
+
"typescript": "^5.9.3"
|
|
70
70
|
},
|
|
71
71
|
"engines": {
|
|
72
72
|
"node": ">=12"
|