@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.js CHANGED
@@ -13579,7 +13579,7 @@ var init_parser13 = __esm({
13579
13579
  "bottom-left"
13580
13580
  ];
13581
13581
  KNOWN_OPTIONS8 = /* @__PURE__ */ new Set([]);
13582
- KNOWN_BOOLEANS5 = /* @__PURE__ */ new Set([]);
13582
+ KNOWN_BOOLEANS5 = /* @__PURE__ */ new Set(["show-blip-legend"]);
13583
13583
  }
13584
13584
  });
13585
13585
 
@@ -31922,7 +31922,8 @@ function renderTechRadar(container, parsed, palette, isDark, onClickItem, export
31922
31922
  );
31923
31923
  return;
31924
31924
  }
31925
- const showListing = exportDims ? true : options?.showListing ?? false;
31925
+ const directiveOn = parsed.options["show-blip-legend"] === "on";
31926
+ const showListing = exportDims ? true : options?.showListing ?? directiveOn;
31926
31927
  const listingHeight = showListing ? estimateListingHeight(parsed) : 0;
31927
31928
  const init2 = initRadarSvg(container, palette, exportDims);
31928
31929
  if (!init2) return;