gralobe 1.0.66 → 1.0.67
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/gralobe.js +15 -6
- package/dist/gralobe.js.map +1 -1
- package/dist/gralobe.umd.cjs +3 -3
- package/dist/gralobe.umd.cjs.map +1 -1
- package/dist/index.d.ts +3 -0
- package/package.json +15 -16
package/dist/index.d.ts
CHANGED
|
@@ -174,6 +174,9 @@ export declare class GlobeViz implements GlobeVizAPI {
|
|
|
174
174
|
private animationId;
|
|
175
175
|
private isDestroyed;
|
|
176
176
|
private urbanPoints;
|
|
177
|
+
private resizeObserver;
|
|
178
|
+
private lastContainerWidth;
|
|
179
|
+
private lastContainerHeight;
|
|
177
180
|
/** Promise that resolves when fully initialized */
|
|
178
181
|
ready: Promise<void>;
|
|
179
182
|
private resolveReady;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gralobe",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.67",
|
|
4
4
|
"description": "Interactive 3D globe visualization with statistics, smooth flat map ↔ globe transitions, and country labels",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/gralobe.umd.cjs",
|
|
@@ -35,22 +35,9 @@
|
|
|
35
35
|
"license": "MIT",
|
|
36
36
|
"repository": {
|
|
37
37
|
"type": "git",
|
|
38
|
-
"url": "https://github.com/batikanor/gralobe"
|
|
38
|
+
"url": "git+https://github.com/batikanor/gralobe.git"
|
|
39
39
|
},
|
|
40
40
|
"homepage": "https://github.com/batikanor/gralobe#readme",
|
|
41
|
-
"scripts": {
|
|
42
|
-
"dev": "vite",
|
|
43
|
-
"build": "tsc && vite build",
|
|
44
|
-
"build:lib": "tsc && vite build --mode lib",
|
|
45
|
-
"preview": "vite preview",
|
|
46
|
-
"test": "vitest run",
|
|
47
|
-
"test:watch": "vitest",
|
|
48
|
-
"test:e2e": "playwright test",
|
|
49
|
-
"test:ui": "playwright test --ui",
|
|
50
|
-
"lint": "biome check .",
|
|
51
|
-
"format": "biome check --write .",
|
|
52
|
-
"prepublishOnly": "npm run build:lib"
|
|
53
|
-
},
|
|
54
41
|
"peerDependencies": {
|
|
55
42
|
"three": ">=0.150.0"
|
|
56
43
|
},
|
|
@@ -74,5 +61,17 @@
|
|
|
74
61
|
"three": ">=0.150.0",
|
|
75
62
|
"topojson-client": "^3.1.0",
|
|
76
63
|
"world-atlas": "^2.0.2"
|
|
64
|
+
},
|
|
65
|
+
"scripts": {
|
|
66
|
+
"dev": "vite",
|
|
67
|
+
"build": "tsc && vite build",
|
|
68
|
+
"build:lib": "tsc && vite build --mode lib",
|
|
69
|
+
"preview": "vite preview",
|
|
70
|
+
"test": "vitest run",
|
|
71
|
+
"test:watch": "vitest",
|
|
72
|
+
"test:e2e": "playwright test",
|
|
73
|
+
"test:ui": "playwright test --ui",
|
|
74
|
+
"lint": "biome check .",
|
|
75
|
+
"format": "biome check --write ."
|
|
77
76
|
}
|
|
78
|
-
}
|
|
77
|
+
}
|