vis-core 0.20.5 → 0.20.7
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/featureStatus.d.ts +2 -0
- package/dist/index.js +187 -187
- package/dist/index.module.js +3985 -3984
- package/dist/version.d.ts +1 -1
- package/dist/vis/map/config.d.ts +4 -0
- package/package.json +1 -1
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "0.20.
|
|
1
|
+
declare const _default: "0.20.7";
|
|
2
2
|
export default _default;
|
package/dist/vis/map/config.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import type { FeatureCollection, Polygon, MultiPolygon } from 'geojson';
|
|
2
|
+
type GeoJSON = FeatureCollection<Polygon | MultiPolygon>;
|
|
1
3
|
export declare const IS_DEV: boolean;
|
|
2
4
|
export declare const bbox100000: number[];
|
|
3
5
|
export declare const bboxworld: number[];
|
|
@@ -265,9 +267,11 @@ export declare const countriesJsonExclATA: {
|
|
|
265
267
|
})[];
|
|
266
268
|
type: string;
|
|
267
269
|
};
|
|
270
|
+
export declare const getCountriesJsonExclATA: () => GeoJSON;
|
|
268
271
|
export declare const PENCIL_CONFIG: {
|
|
269
272
|
camera: {
|
|
270
273
|
near: number;
|
|
271
274
|
far: number;
|
|
272
275
|
};
|
|
273
276
|
};
|
|
277
|
+
export {};
|