dotted-map 2.2.2 → 3.0.0
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/README.md +6 -5
- package/dist/chunk-C0xms8kb.cjs +34 -0
- package/dist/index.cjs +12897 -0
- package/dist/index.d.cts +13 -0
- package/dist/index.d.mts +13 -0
- package/dist/index.mjs +12891 -0
- package/dist/types-ByIhMtjO.d.cts +70 -0
- package/dist/types-UL1f7mia.d.mts +70 -0
- package/dist/without-countries.cjs +85 -0
- package/dist/without-countries.d.cts +43 -0
- package/dist/without-countries.d.mts +43 -0
- package/dist/without-countries.mjs +83 -0
- package/package.json +47 -11
- package/index.d.ts +0 -62
- package/index.js +0 -1
- package/src/countries.geo.json +0 -182
- package/src/with-countries.js +0 -180
- package/src/without-countries.js +0 -108
- package/webpack.config.js +0 -37
- package/without-countries.d.ts +0 -70
- package/without-countries.js +0 -1
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { a as MapSettings, c as Region, s as Point, t as DottedMapSettings } from "./types-ByIhMtjO.cjs";
|
|
2
|
+
import DottedMapWithoutCountries from "./without-countries.cjs";
|
|
3
|
+
|
|
4
|
+
//#region src/with-countries.d.ts
|
|
5
|
+
declare const getMapJSON: (props: MapSettings) => string;
|
|
6
|
+
declare class DottedMap extends DottedMapWithoutCountries {
|
|
7
|
+
constructor({
|
|
8
|
+
avoidOuterPins,
|
|
9
|
+
...args
|
|
10
|
+
}: DottedMapSettings);
|
|
11
|
+
}
|
|
12
|
+
//#endregion
|
|
13
|
+
export { type DottedMapSettings, DottedMapWithoutCountries, type MapSettings, type Point, type Region, DottedMap as default, getMapJSON };
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { a as MapSettings, c as Region, s as Point, t as DottedMapSettings } from "./types-UL1f7mia.mjs";
|
|
2
|
+
import DottedMapWithoutCountries from "./without-countries.mjs";
|
|
3
|
+
|
|
4
|
+
//#region src/with-countries.d.ts
|
|
5
|
+
declare const getMapJSON: (props: MapSettings) => string;
|
|
6
|
+
declare class DottedMap extends DottedMapWithoutCountries {
|
|
7
|
+
constructor({
|
|
8
|
+
avoidOuterPins,
|
|
9
|
+
...args
|
|
10
|
+
}: DottedMapSettings);
|
|
11
|
+
}
|
|
12
|
+
//#endregion
|
|
13
|
+
export { type DottedMapSettings, DottedMapWithoutCountries, type MapSettings, type Point, type Region, DottedMap as default, getMapJSON };
|