globe.gl 2.34.1 → 2.34.3
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.d.ts +2 -2
- package/dist/globe.gl.js +1 -1
- package/dist/globe.gl.min.js +1 -1
- package/example/airline-routes/highlight-links.html +5 -6
- package/example/airline-routes/us-international-outbound.html +5 -6
- package/example/choropleth-countries/index.html +5 -4
- package/example/clouds/index.html +1 -1
- package/example/custom-globe-styling/index.html +1 -1
- package/example/custom-layer/index.html +1 -1
- package/example/earthquakes/index.html +4 -4
- package/example/hollow-globe/index.html +3 -4
- package/example/moon-landing-sites/index.html +4 -5
- package/example/population-heatmap/index.html +4 -4
- package/example/satellites/index.html +2 -3
- package/example/solar-terminator/index.html +3 -4
- package/example/tiles/index.html +1 -1
- package/example/volcanoes/index.html +6 -5
- package/example/world-population/index.html +7 -6
- package/package.json +1 -1
package/dist/globe.gl.d.ts
CHANGED
|
@@ -127,8 +127,8 @@ interface GlobeGenericInstance<ChainableInstance>
|
|
|
127
127
|
|
|
128
128
|
type GlobeInstance = GlobeGenericInstance<GlobeInstance>;
|
|
129
129
|
|
|
130
|
-
|
|
130
|
+
declare const Globe: {
|
|
131
131
|
new(element: HTMLElement, configOptions?: ConfigOptions): GlobeInstance;
|
|
132
132
|
}
|
|
133
133
|
|
|
134
|
-
export type
|
|
134
|
+
export { type ConfigOptions, type GlobeInstance, Globe as default };
|
package/dist/globe.gl.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Version 2.34.
|
|
1
|
+
// Version 2.34.3 globe.gl - https://github.com/vasturiano/globe.gl
|
|
2
2
|
(function (global, factory) {
|
|
3
3
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
|
4
4
|
typeof define === 'function' && define.amd ? define(factory) :
|