gralobe 1.0.2 → 1.0.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/dist/index.d.ts CHANGED
@@ -45,6 +45,8 @@ declare interface CountryStatistics {
45
45
  * Visual effects configuration
46
46
  */
47
47
  declare interface EffectsConfig {
48
+ /** Show atmosphere glow around globe */
49
+ atmosphere?: boolean;
48
50
  /** Show cloud layer */
49
51
  clouds?: boolean;
50
52
  /** Cloud animation speed (0.1-3) */
@@ -148,6 +150,7 @@ export declare class GlobeViz implements GlobeVizAPI {
148
150
  private createStars;
149
151
  private createGUI;
150
152
  private handleResize;
153
+ private handleKeydown;
151
154
  private animate;
152
155
  toGlobe(): void;
153
156
  toFlat(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gralobe",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
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",