@diagrammo/dgmo 0.20.2 → 0.20.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/advanced.cjs +2 -0
- package/dist/advanced.js +2 -0
- package/dist/auto.cjs +3 -1
- package/dist/auto.js +12 -12
- package/dist/auto.mjs +3 -1
- package/dist/cli.cjs +20 -20
- package/dist/index.cjs +2 -0
- package/dist/index.js +2 -0
- package/dist/internal.cjs +2 -0
- package/dist/internal.js +2 -0
- package/package.json +1 -1
- package/src/map/layout.ts +7 -0
package/dist/auto.mjs
CHANGED
|
@@ -46507,6 +46507,8 @@ function layoutMap(resolved, data, size, opts) {
|
|
|
46507
46507
|
if (layerKind === "us-state" && usContext && INSET_STATES.has(iso))
|
|
46508
46508
|
continue;
|
|
46509
46509
|
if (layerKind === "country" && usContext && iso === "US") continue;
|
|
46510
|
+
if (layerKind === "country" && iso === "AQ" && !regionById.has("AQ"))
|
|
46511
|
+
continue;
|
|
46510
46512
|
const r = regionById.get(iso);
|
|
46511
46513
|
const viewF = shouldCull ? cullFeatureToView(f) : dropFrameFillers(f);
|
|
46512
46514
|
if (!viewF) continue;
|
|
@@ -57077,7 +57079,7 @@ pre.dgmo, code.language-dgmo, pre > code.language-dgmo,
|
|
|
57077
57079
|
|
|
57078
57080
|
// src/auto/index.ts
|
|
57079
57081
|
init_safe_href();
|
|
57080
|
-
var VERSION = "0.20.
|
|
57082
|
+
var VERSION = "0.20.3";
|
|
57081
57083
|
var DEFAULTS = {
|
|
57082
57084
|
theme: "auto",
|
|
57083
57085
|
palette: "nord",
|