@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/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 showListing = exportDims ? true : options?.showListing ?? false;
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;