@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/advanced.cjs
CHANGED
|
@@ -46851,6 +46851,8 @@ function layoutMap(resolved, data, size, opts) {
|
|
|
46851
46851
|
if (layerKind === "us-state" && usContext && INSET_STATES.has(iso))
|
|
46852
46852
|
continue;
|
|
46853
46853
|
if (layerKind === "country" && usContext && iso === "US") continue;
|
|
46854
|
+
if (layerKind === "country" && iso === "AQ" && !regionById.has("AQ"))
|
|
46855
|
+
continue;
|
|
46854
46856
|
const r = regionById.get(iso);
|
|
46855
46857
|
const viewF = shouldCull ? cullFeatureToView(f) : dropFrameFillers(f);
|
|
46856
46858
|
if (!viewF) continue;
|
package/dist/advanced.js
CHANGED
|
@@ -46876,6 +46876,8 @@ function layoutMap(resolved, data, size, opts) {
|
|
|
46876
46876
|
if (layerKind === "us-state" && usContext && INSET_STATES.has(iso))
|
|
46877
46877
|
continue;
|
|
46878
46878
|
if (layerKind === "country" && usContext && iso === "US") continue;
|
|
46879
|
+
if (layerKind === "country" && iso === "AQ" && !regionById.has("AQ"))
|
|
46880
|
+
continue;
|
|
46879
46881
|
const r = regionById.get(iso);
|
|
46880
46882
|
const viewF = shouldCull ? cullFeatureToView(f) : dropFrameFillers(f);
|
|
46881
46883
|
if (!viewF) continue;
|
package/dist/auto.cjs
CHANGED
|
@@ -46482,6 +46482,8 @@ function layoutMap(resolved, data, size, opts) {
|
|
|
46482
46482
|
if (layerKind === "us-state" && usContext && INSET_STATES.has(iso))
|
|
46483
46483
|
continue;
|
|
46484
46484
|
if (layerKind === "country" && usContext && iso === "US") continue;
|
|
46485
|
+
if (layerKind === "country" && iso === "AQ" && !regionById.has("AQ"))
|
|
46486
|
+
continue;
|
|
46485
46487
|
const r = regionById.get(iso);
|
|
46486
46488
|
const viewF = shouldCull ? cullFeatureToView(f) : dropFrameFillers(f);
|
|
46487
46489
|
if (!viewF) continue;
|
|
@@ -57068,7 +57070,7 @@ pre.dgmo, code.language-dgmo, pre > code.language-dgmo,
|
|
|
57068
57070
|
|
|
57069
57071
|
// src/auto/index.ts
|
|
57070
57072
|
init_safe_href();
|
|
57071
|
-
var VERSION = "0.20.
|
|
57073
|
+
var VERSION = "0.20.3";
|
|
57072
57074
|
var DEFAULTS = {
|
|
57073
57075
|
theme: "auto",
|
|
57074
57076
|
palette: "nord",
|