@diagrammo/dgmo 0.8.26 → 0.8.27
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/cli.cjs +34 -34
- package/dist/index.cjs +3 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/tech-radar/parser.ts +1 -1
- package/src/tech-radar/renderer.ts +4 -2
package/dist/index.cjs
CHANGED
|
@@ -13563,7 +13563,7 @@ var init_parser13 = __esm({
|
|
|
13563
13563
|
"bottom-left"
|
|
13564
13564
|
];
|
|
13565
13565
|
KNOWN_OPTIONS8 = /* @__PURE__ */ new Set([]);
|
|
13566
|
-
KNOWN_BOOLEANS5 = /* @__PURE__ */ new Set([]);
|
|
13566
|
+
KNOWN_BOOLEANS5 = /* @__PURE__ */ new Set(["show-blip-legend"]);
|
|
13567
13567
|
}
|
|
13568
13568
|
});
|
|
13569
13569
|
|
|
@@ -31905,7 +31905,8 @@ function renderTechRadar(container, parsed, palette, isDark, onClickItem, export
|
|
|
31905
31905
|
);
|
|
31906
31906
|
return;
|
|
31907
31907
|
}
|
|
31908
|
-
const
|
|
31908
|
+
const directiveOn = parsed.options["show-blip-legend"] === "on";
|
|
31909
|
+
const showListing = exportDims ? true : options?.showListing ?? directiveOn;
|
|
31909
31910
|
const listingHeight = showListing ? estimateListingHeight(parsed) : 0;
|
|
31910
31911
|
const init2 = initRadarSvg(container, palette, exportDims);
|
|
31911
31912
|
if (!init2) return;
|