globe.gl 2.26.2 → 2.26.5
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/dist/globe.gl.common.js +1 -4
- package/dist/globe.gl.d.ts +1 -1
- package/dist/globe.gl.js +929 -1433
- package/dist/globe.gl.js.map +1 -1
- package/dist/globe.gl.min.js +4 -4
- package/dist/globe.gl.module.js +1 -4
- package/package.json +13 -10
package/dist/globe.gl.module.js
CHANGED
|
@@ -530,10 +530,7 @@ var globe = Kapsule({
|
|
|
530
530
|
var controls = state.renderObjs.controls();
|
|
531
531
|
controls.minDistance = globeR * 1.01; // just above the surface
|
|
532
532
|
|
|
533
|
-
|
|
534
|
-
return controls.maxDistance = globeR * 100;
|
|
535
|
-
}); // apply async after renderObjs sets maxDistance
|
|
536
|
-
|
|
533
|
+
controls.maxDistance = globeR * 100;
|
|
537
534
|
controls.enablePan = false;
|
|
538
535
|
controls.enableDamping = true;
|
|
539
536
|
controls.dampingFactor = 0.1;
|
package/package.json
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "globe.gl",
|
|
3
|
-
"version": "2.26.
|
|
3
|
+
"version": "2.26.5",
|
|
4
4
|
"description": "UI component for Globe Data Visualization using ThreeJS/WebGL",
|
|
5
5
|
"unpkg": "dist/globe.gl.min.js",
|
|
6
6
|
"jsdelivr": "dist/globe.gl.min.js",
|
|
7
7
|
"main": "dist/globe.gl.common.js",
|
|
8
8
|
"module": "dist/globe.gl.module.js",
|
|
9
9
|
"types": "dist/globe.gl.d.ts",
|
|
10
|
+
"sideEffects": [
|
|
11
|
+
"./src/*.css"
|
|
12
|
+
],
|
|
10
13
|
"repository": {
|
|
11
14
|
"type": "git",
|
|
12
15
|
"url": "git+https://github.com/vasturiano/globe.gl.git"
|
|
@@ -44,22 +47,22 @@
|
|
|
44
47
|
"kapsule": "^1.13",
|
|
45
48
|
"three": ">=0.118 <1",
|
|
46
49
|
"three-globe": "^2.24",
|
|
47
|
-
"three-render-objects": "^1.
|
|
50
|
+
"three-render-objects": "^1.27"
|
|
48
51
|
},
|
|
49
52
|
"devDependencies": {
|
|
50
|
-
"@babel/core": "^7.18.
|
|
51
|
-
"@babel/plugin-proposal-class-properties": "^7.
|
|
52
|
-
"@babel/plugin-proposal-object-rest-spread": "^7.18.
|
|
53
|
-
"@babel/preset-env": "^7.18.
|
|
53
|
+
"@babel/core": "^7.18.13",
|
|
54
|
+
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
55
|
+
"@babel/plugin-proposal-object-rest-spread": "^7.18.9",
|
|
56
|
+
"@babel/preset-env": "^7.18.10",
|
|
54
57
|
"@rollup/plugin-babel": "^5.3.1",
|
|
55
|
-
"@rollup/plugin-commonjs": "^22.0.
|
|
58
|
+
"@rollup/plugin-commonjs": "^22.0.2",
|
|
56
59
|
"@rollup/plugin-node-resolve": "^13.3.0",
|
|
57
|
-
"postcss": "^8.4.
|
|
60
|
+
"postcss": "^8.4.16",
|
|
58
61
|
"rimraf": "^3.0.2",
|
|
59
|
-
"rollup": "^2.
|
|
62
|
+
"rollup": "^2.78.1",
|
|
60
63
|
"rollup-plugin-dts": "^4.2.2",
|
|
61
64
|
"rollup-plugin-postcss": "^4.0.2",
|
|
62
65
|
"rollup-plugin-terser": "^7.0.2",
|
|
63
|
-
"typescript": "^4.7.
|
|
66
|
+
"typescript": "^4.7.4"
|
|
64
67
|
}
|
|
65
68
|
}
|