@forsakringskassan/docs-generator 3.4.1 → 3.6.0

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.
@@ -1516,7 +1516,7 @@ function isRegex(value2) {
1516
1516
  function createDOMPurify() {
1517
1517
  let window3 = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : getGlobal();
1518
1518
  const DOMPurify = (root4) => createDOMPurify(root4);
1519
- DOMPurify.version = "3.4.12";
1519
+ DOMPurify.version = "3.4.13";
1520
1520
  DOMPurify.removed = [];
1521
1521
  if (!window3 || !window3.document || window3.document.nodeType !== NODE_TYPE.document || !window3.Element) {
1522
1522
  DOMPurify.isSupported = false;
@@ -1540,6 +1540,7 @@ function createDOMPurify() {
1540
1540
  const getAttributes = lookupGetter(ElementPrototype, "attributes");
1541
1541
  const getNodeType = Node2 && Node2.prototype ? lookupGetter(Node2.prototype, "nodeType") : null;
1542
1542
  const getNodeName = Node2 && Node2.prototype ? lookupGetter(Node2.prototype, "nodeName") : null;
1543
+ const getOwnerDocument = Node2 && Node2.prototype ? lookupGetter(Node2.prototype, "ownerDocument") : null;
1543
1544
  if (typeof HTMLTemplateElement === "function") {
1544
1545
  const template = document2.createElement("template");
1545
1546
  if (template.content && template.content.ownerDocument) {
@@ -2117,8 +2118,9 @@ function createDOMPurify() {
2117
2118
  return WHOLE_DOCUMENT ? doc.documentElement : body;
2118
2119
  };
2119
2120
  const _createNodeIterator = function _createNodeIterator2(root4) {
2121
+ const doc = getOwnerDocument ? getOwnerDocument(root4) : root4.ownerDocument;
2120
2122
  return createNodeIterator.call(
2121
- root4.ownerDocument || root4,
2123
+ doc || root4,
2122
2124
  root4,
2123
2125
  // eslint-disable-next-line no-bitwise
2124
2126
  NodeFilter.SHOW_ELEMENT | NodeFilter.SHOW_COMMENT | NodeFilter.SHOW_TEXT | NodeFilter.SHOW_PROCESSING_INSTRUCTION | NodeFilter.SHOW_CDATA_SECTION,
@@ -2134,8 +2136,9 @@ function createDOMPurify() {
2134
2136
  const _scrubTemplateExpressions2 = function _scrubTemplateExpressions(node2) {
2135
2137
  var _node$querySelectorAl;
2136
2138
  node2.normalize();
2139
+ const doc = getOwnerDocument ? getOwnerDocument(node2) : node2.ownerDocument;
2137
2140
  const walker = createNodeIterator.call(
2138
- node2.ownerDocument || node2,
2141
+ doc || node2,
2139
2142
  node2,
2140
2143
  // eslint-disable-next-line no-bitwise
2141
2144
  NodeFilter.SHOW_TEXT | NodeFilter.SHOW_COMMENT | NodeFilter.SHOW_CDATA_SECTION | NodeFilter.SHOW_PROCESSING_INSTRUCTION,
@@ -2231,7 +2234,7 @@ function createDOMPurify() {
2231
2234
  }
2232
2235
  return false;
2233
2236
  };
2234
- const _sanitizeDisallowedNode = function _sanitizeDisallowedNode2(currentNode, tagName) {
2237
+ const _sanitizeDisallowedNode = function _sanitizeDisallowedNode2(currentNode, tagName, root4) {
2235
2238
  if (!FORBID_TAGS[tagName] && _isBasicCustomElement(tagName)) {
2236
2239
  if (CUSTOM_ELEMENT_HANDLING.tagNameCheck instanceof RegExp && regExpTest(CUSTOM_ELEMENT_HANDLING.tagNameCheck, tagName)) {
2237
2240
  return false;
@@ -2246,7 +2249,7 @@ function createDOMPurify() {
2246
2249
  if (childNodes && parentNode) {
2247
2250
  const childCount = childNodes.length;
2248
2251
  for (let i5 = childCount - 1; i5 >= 0; --i5) {
2249
- const hoisted = IN_PLACE ? childNodes[i5] : cloneNode(childNodes[i5], true);
2252
+ const hoisted = currentNode === root4 ? cloneNode(childNodes[i5], true) : childNodes[i5];
2250
2253
  parentNode.insertBefore(hoisted, getNextSibling(currentNode));
2251
2254
  }
2252
2255
  }
@@ -2254,9 +2257,18 @@ function createDOMPurify() {
2254
2257
  _forceRemove(currentNode);
2255
2258
  return true;
2256
2259
  };
2260
+ const _forkSharedAllowlist = function _forkSharedAllowlist2(hookList, set5, defaultSet, setConfigSet) {
2261
+ if (hookList.length === 0) {
2262
+ return set5;
2263
+ }
2264
+ return set5 === defaultSet || set5 === setConfigSet ? clone(set5) : set5;
2265
+ };
2257
2266
  const _sanitizeElements = function _sanitizeElements2(currentNode, root4) {
2258
2267
  _executeHooks(hooks.beforeSanitizeElements, currentNode, null);
2259
2268
  if (currentNode !== root4 && getParentNode(currentNode) === null) {
2269
+ if (IN_PLACE) {
2270
+ _neutralizeSubtree(currentNode);
2271
+ }
2260
2272
  return true;
2261
2273
  }
2262
2274
  if (_isClobbered(currentNode)) {
@@ -2264,11 +2276,15 @@ function createDOMPurify() {
2264
2276
  return true;
2265
2277
  }
2266
2278
  const tagName = transformCaseFunc(getNodeName ? getNodeName(currentNode) : currentNode.nodeName);
2279
+ ALLOWED_TAGS = _forkSharedAllowlist(hooks.uponSanitizeElement, ALLOWED_TAGS, DEFAULT_ALLOWED_TAGS, SET_CONFIG_ALLOWED_TAGS);
2267
2280
  _executeHooks(hooks.uponSanitizeElement, currentNode, {
2268
2281
  tagName,
2269
2282
  allowedTags: ALLOWED_TAGS
2270
2283
  });
2271
2284
  if (currentNode !== root4 && getParentNode(currentNode) === null) {
2285
+ if (IN_PLACE) {
2286
+ _neutralizeSubtree(currentNode);
2287
+ }
2272
2288
  return true;
2273
2289
  }
2274
2290
  if (_isUnsafeNode(currentNode, tagName)) {
@@ -2276,7 +2292,7 @@ function createDOMPurify() {
2276
2292
  return true;
2277
2293
  }
2278
2294
  if (FORBID_TAGS[tagName] || !(EXTRA_ELEMENT_HANDLING.tagCheck instanceof Function && EXTRA_ELEMENT_HANDLING.tagCheck(tagName)) && !ALLOWED_TAGS[tagName]) {
2279
- const removed = _sanitizeDisallowedNode(currentNode, tagName);
2295
+ const removed = _sanitizeDisallowedNode(currentNode, tagName, root4);
2280
2296
  if (removed === false) {
2281
2297
  _executeHooks(hooks.afterSanitizeElements, currentNode, null);
2282
2298
  }
@@ -2379,6 +2395,7 @@ function createDOMPurify() {
2379
2395
  if (!attributes || _isClobbered(currentNode)) {
2380
2396
  return;
2381
2397
  }
2398
+ ALLOWED_ATTR = _forkSharedAllowlist(hooks.uponSanitizeAttribute, ALLOWED_ATTR, DEFAULT_ALLOWED_ATTR, SET_CONFIG_ALLOWED_ATTR);
2382
2399
  const hookEvent = {
2383
2400
  attrName: "",
2384
2401
  attrValue: "",
@@ -2586,8 +2603,8 @@ function createDOMPurify() {
2586
2603
  _forceRemove(body.firstChild);
2587
2604
  }
2588
2605
  const walkRoot = inPlace ? dirty : body;
2589
- const nodeIterator = _createNodeIterator(walkRoot);
2590
2606
  try {
2607
+ const nodeIterator = _createNodeIterator(walkRoot);
2591
2608
  while (currentNode = nodeIterator.nextNode()) {
2592
2609
  _sanitizeElements(currentNode, walkRoot);
2593
2610
  _sanitizeAttributes(currentNode);
@@ -17358,7 +17375,7 @@ var init_katex = __esm({
17358
17375
  }
17359
17376
  });
17360
17377
 
17361
- // node_modules/mermaid/dist/chunks/mermaid.core/chunk-WYO6CB5R.mjs
17378
+ // node_modules/mermaid/dist/chunks/mermaid.core/chunk-I66GZJ75.mjs
17362
17379
  function setupDompurifyHooks() {
17363
17380
  const TEMPORARY_ATTRIBUTE = "data-temp-href-target";
17364
17381
  purify.addHook("beforeSanitizeAttributes", (node2) => {
@@ -17380,8 +17397,8 @@ function cssStyleSheetToString(cssStyleSheet) {
17380
17397
  return [...cssStyleSheet.cssRules].map((rule) => rule.cssText).join("\n");
17381
17398
  }
17382
17399
  var assignWithDepth, assignWithDepth_default, oldAttributeBackgroundColorOdd, oldAttributeBackgroundColorEven, mkBorder, Theme, getThemeVariables, Theme2, getThemeVariables2, Theme3, getThemeVariables3, Theme4, getThemeVariables4, Theme5, getThemeVariables5, Theme6, getThemeVariables6, Theme7, getThemeVariables7, Theme8, getThemeVariables8, Theme9, getThemeVariables9, Theme10, getThemeVariables10, Theme11, getThemeVariables11, themes_default, config_schema_default, config, keyify, configKeys, defaultConfig_default, DICTIONARY_CONFIG_PATTERNS, sanitizeDictionaryConfig, sanitizeDirective, sanitizeCss, defaultConfig, evaluate, siteConfig, configFromInitialize, directives, currentConfig, updateCurrentConfig, setSiteConfig, saveConfigFromInitialize, updateSiteConfig, getSiteConfig, setConfig, getConfig, sanitize, addDirective, reset, ConfigWarning, issuedWarnings, issueWarning, checkConfig, getUserDefinedConfig, getEffectiveHtmlLabels, frontMatterRegex, directiveRegex, anyCommentRegex, UnknownDiagramError, detectors, detectType, registerLazyLoadedDiagrams, addDetector, getDiagramLoader, lineBreakRegex, getRows, setupDompurifyHooksIfNotSetup, removeScript, sanitizeMore, sanitizeText, sanitizeTextOrArray, hasBreaks, splitBreaks, placeholderToBreak, breakToPlaceholder, getUrl, getMax, getMin, parseGenericTypes, countOccurrence, shouldCombineSets, processSet, isMathMLSupported, katexRegex, hasKatex, calculateMathMLDimensions, renderKatexUnsanitized, renderKatexSanitized, common_default, d3Attrs, calculateSvgSizeAttrs, configureSvgSize, setupGraphViewbox, themes, getStyles, addStylesForDiagram, styles_default, commonDb_exports, accTitle, diagramTitle, accDescription, sanitizeText2, clear, setAccTitle, getAccTitle, setAccDescription, getAccDescription, setDiagramTitle, getDiagramTitle, log2, setLogLevel2, getConfig2, setConfig2, defaultConfig2, sanitizeText3, setupGraphViewbox2, getCommonDb, diagrams, registerDiagram, getDiagram, DiagramNotFoundError;
17383
- var init_chunk_WYO6CB5R = __esm({
17384
- "node_modules/mermaid/dist/chunks/mermaid.core/chunk-WYO6CB5R.mjs"() {
17400
+ var init_chunk_I66GZJ75 = __esm({
17401
+ "node_modules/mermaid/dist/chunks/mermaid.core/chunk-I66GZJ75.mjs"() {
17385
17402
  init_chunk_X3CZISLH();
17386
17403
  init_chunk_Y2CYZVJY();
17387
17404
  init_dist();
@@ -17397,8 +17414,8 @@ var init_chunk_WYO6CB5R = __esm({
17397
17414
  init_dist();
17398
17415
  init_dist();
17399
17416
  init_purify_es();
17400
- assignWithDepth = /* @__PURE__ */ __name((dst, src, { depth = 2, clobber = false } = {}) => {
17401
- const config22 = { depth, clobber };
17417
+ assignWithDepth = /* @__PURE__ */ __name((dst, src, { depth = 2 } = {}) => {
17418
+ const config22 = { depth };
17402
17419
  if (Array.isArray(src) && !Array.isArray(dst)) {
17403
17420
  src.forEach((s2) => assignWithDepth(dst, s2, config22));
17404
17421
  return dst;
@@ -17410,22 +17427,45 @@ var init_chunk_WYO6CB5R = __esm({
17410
17427
  });
17411
17428
  return dst;
17412
17429
  }
17413
- if (dst === void 0 || depth <= 0) {
17430
+ if (dst === void 0 || dst === null || depth <= 0) {
17414
17431
  if (dst !== void 0 && dst !== null && typeof dst === "object" && typeof src === "object") {
17415
17432
  return Object.assign(dst, src);
17416
17433
  } else {
17417
17434
  return src;
17418
17435
  }
17419
17436
  }
17420
- if (src !== void 0 && typeof dst === "object" && typeof src === "object") {
17421
- Object.keys(src).forEach((key) => {
17422
- if (typeof src[key] === "object" && src[key] !== null && (dst[key] === void 0 || typeof dst[key] === "object")) {
17423
- if (dst[key] === void 0) {
17424
- dst[key] = Array.isArray(src[key]) ? [] : {};
17437
+ if (src !== void 0 && src !== null && typeof dst === "object" && typeof src === "object") {
17438
+ const dstWithKeys = dst;
17439
+ Object.entries(src).forEach(([key, srcValue]) => {
17440
+ if (typeof srcValue === "object") {
17441
+ if (srcValue === null) {
17442
+ return;
17443
+ }
17444
+ if (!Object.hasOwn(dst, key)) {
17445
+ Object.defineProperty(dst, key, {
17446
+ value: void 0,
17447
+ writable: true,
17448
+ enumerable: true,
17449
+ configurable: true
17450
+ });
17451
+ }
17452
+ if (dstWithKeys[key] === void 0) {
17453
+ dstWithKeys[key] = Array.isArray(srcValue) ? [] : {};
17454
+ }
17455
+ if (typeof dstWithKeys[key] === "object") {
17456
+ dstWithKeys[key] = assignWithDepth(dstWithKeys[key], srcValue, { depth: depth - 1 });
17457
+ }
17458
+ } else if (typeof dstWithKeys[key] !== "object") {
17459
+ if (Object.hasOwn(dst, key)) {
17460
+ dstWithKeys[key] = srcValue;
17461
+ } else {
17462
+ Object.defineProperty(dst, key, {
17463
+ value: srcValue,
17464
+ writable: true,
17465
+ enumerable: true,
17466
+ configurable: true
17467
+ });
17425
17468
  }
17426
- dst[key] = assignWithDepth(dst[key], src[key], { depth: depth - 1, clobber });
17427
- } else if (clobber || typeof dst[key] !== "object" && typeof src[key] !== "object") {
17428
- dst[key] = src[key];
17429
17469
  }
17430
17470
  });
17431
17471
  }
@@ -22218,8 +22258,7 @@ var init_chunk_WYO6CB5R = __esm({
22218
22258
  return assignWithDepth_default({}, siteConfig);
22219
22259
  }, "getSiteConfig");
22220
22260
  setConfig = /* @__PURE__ */ __name((conf5) => {
22221
- checkConfig(conf5);
22222
- assignWithDepth_default(currentConfig, conf5);
22261
+ updateCurrentConfig(currentConfig, [conf5]);
22223
22262
  return getConfig();
22224
22263
  }, "setConfig");
22225
22264
  getConfig = /* @__PURE__ */ __name(() => {
@@ -22580,7 +22619,7 @@ var init_chunk_WYO6CB5R = __esm({
22580
22619
  } else {
22581
22620
  log.warn(`No theme found for ${type3}`);
22582
22621
  }
22583
- return ` & {
22622
+ return `& {
22584
22623
  font-family: ${options2.fontFamily};
22585
22624
  font-size: ${options2.fontSize};
22586
22625
  fill: ${options2.textColor}
@@ -30230,11 +30269,11 @@ var init_src32 = __esm({
30230
30269
  }
30231
30270
  });
30232
30271
 
30233
- // node_modules/mermaid/dist/chunks/mermaid.core/chunk-VAUOI2AC.mjs
30272
+ // node_modules/mermaid/dist/chunks/mermaid.core/chunk-3NCLNEKW.mjs
30234
30273
  var selectSvgElement;
30235
- var init_chunk_VAUOI2AC = __esm({
30236
- "node_modules/mermaid/dist/chunks/mermaid.core/chunk-VAUOI2AC.mjs"() {
30237
- init_chunk_WYO6CB5R();
30274
+ var init_chunk_3NCLNEKW = __esm({
30275
+ "node_modules/mermaid/dist/chunks/mermaid.core/chunk-3NCLNEKW.mjs"() {
30276
+ init_chunk_I66GZJ75();
30238
30277
  init_chunk_Y2CYZVJY();
30239
30278
  init_src32();
30240
30279
  selectSvgElement = /* @__PURE__ */ __name((id39) => {
@@ -32959,11 +32998,11 @@ var init_chunk_ZIRB5QZD = __esm({
32959
32998
  }
32960
32999
  });
32961
33000
 
32962
- // node_modules/mermaid/dist/chunks/mermaid.core/chunk-C7G6YPKG.mjs
33001
+ // node_modules/mermaid/dist/chunks/mermaid.core/chunk-W5SLKNZC.mjs
32963
33002
  var solidStateFill, compileStyles, styles2Map, isLabelStyle, styles2String, userNodeOverrides, getStrokeDashArray;
32964
- var init_chunk_C7G6YPKG = __esm({
32965
- "node_modules/mermaid/dist/chunks/mermaid.core/chunk-C7G6YPKG.mjs"() {
32966
- init_chunk_WYO6CB5R();
33003
+ var init_chunk_W5SLKNZC = __esm({
33004
+ "node_modules/mermaid/dist/chunks/mermaid.core/chunk-W5SLKNZC.mjs"() {
33005
+ init_chunk_I66GZJ75();
32967
33006
  init_chunk_Y2CYZVJY();
32968
33007
  solidStateFill = /* @__PURE__ */ __name((color2) => {
32969
33008
  const { handDrawnSeed } = getConfig2();
@@ -33528,26 +33567,6 @@ var init_isArrayLikeObject = __esm({
33528
33567
  }
33529
33568
  });
33530
33569
 
33531
- // node_modules/es-toolkit/dist/compat/function/memoize.mjs
33532
- function memoize(func, resolver3) {
33533
- if (typeof func !== "function" || resolver3 != null && typeof resolver3 !== "function") throw new TypeError("Expected a function");
33534
- const memoized = function(...args) {
33535
- const key = resolver3 ? resolver3.apply(this, args) : args[0];
33536
- const cache3 = memoized.cache;
33537
- if (cache3.has(key)) return cache3.get(key);
33538
- const result = func.apply(this, args);
33539
- memoized.cache = cache3.set(key, result) || cache3;
33540
- return result;
33541
- };
33542
- memoized.cache = new (memoize.Cache || Map)();
33543
- return memoized;
33544
- }
33545
- var init_memoize = __esm({
33546
- "node_modules/es-toolkit/dist/compat/function/memoize.mjs"() {
33547
- memoize.Cache = Map;
33548
- }
33549
- });
33550
-
33551
33570
  // node_modules/es-toolkit/dist/compat/predicate/isTypedArray.mjs
33552
33571
  function isTypedArray2(x6) {
33553
33572
  return isTypedArray(x6);
@@ -33568,6 +33587,26 @@ var init_isPrototype = __esm({
33568
33587
  }
33569
33588
  });
33570
33589
 
33590
+ // node_modules/es-toolkit/dist/compat/function/memoize.mjs
33591
+ function memoize(func, resolver3) {
33592
+ if (typeof func !== "function" || resolver3 != null && typeof resolver3 !== "function") throw new TypeError("Expected a function");
33593
+ const memoized = function(...args) {
33594
+ const key = resolver3 ? resolver3.apply(this, args) : args[0];
33595
+ const cache3 = memoized.cache;
33596
+ if (cache3.has(key)) return cache3.get(key);
33597
+ const result = func.apply(this, args);
33598
+ memoized.cache = cache3.set(key, result) || cache3;
33599
+ return result;
33600
+ };
33601
+ memoized.cache = new (memoize.Cache || Map)();
33602
+ return memoized;
33603
+ }
33604
+ var init_memoize = __esm({
33605
+ "node_modules/es-toolkit/dist/compat/function/memoize.mjs"() {
33606
+ memoize.Cache = Map;
33607
+ }
33608
+ });
33609
+
33571
33610
  // node_modules/es-toolkit/dist/compat/object/clone.mjs
33572
33611
  function clone2(obj) {
33573
33612
  if (isPrimitive(obj)) return obj;
@@ -33851,7 +33890,7 @@ var init_compat = __esm({
33851
33890
  }
33852
33891
  });
33853
33892
 
33854
- // node_modules/mermaid/dist/chunks/mermaid.core/chunk-ICXQ74PX.mjs
33893
+ // node_modules/mermaid/dist/chunks/mermaid.core/chunk-NSK5VX7P.mjs
33855
33894
  function interpolateToCurve(interpolate, defaultCurve) {
33856
33895
  if (!interpolate) {
33857
33896
  return defaultCurve;
@@ -33965,9 +34004,9 @@ function isLabelCoordinateInPath(point8, dAttr) {
33965
34004
  return sanitizedD.includes(roundedX.toString()) || sanitizedD.includes(roundedY.toString());
33966
34005
  }
33967
34006
  var import_sanitize_url, ZERO_WIDTH_SPACE, d3CurveTypes, directiveWithoutOpen, detectInit, detectDirective, removeDirectives, isSubstringInArray, runFunc, roundNumber, calculatePoint, calcCardinalityPosition, cnt, generateId, random, getTextObj, drawSimpleText, wrapLabel, breakString, calculateTextDimensions, InitIDGenerator, decoder, entityDecode, insertTitle, parseFontSize, utils_default2, encodeEntities, decodeEntities, getEdgeId;
33968
- var init_chunk_ICXQ74PX = __esm({
33969
- "node_modules/mermaid/dist/chunks/mermaid.core/chunk-ICXQ74PX.mjs"() {
33970
- init_chunk_WYO6CB5R();
34007
+ var init_chunk_NSK5VX7P = __esm({
34008
+ "node_modules/mermaid/dist/chunks/mermaid.core/chunk-NSK5VX7P.mjs"() {
34009
+ init_chunk_I66GZJ75();
33971
34010
  init_chunk_X3CZISLH();
33972
34011
  init_chunk_Y2CYZVJY();
33973
34012
  import_sanitize_url = __toESM(require_dist(), 1);
@@ -34389,7 +34428,7 @@ var init_chunk_ICXQ74PX = __esm({
34389
34428
  }
34390
34429
  });
34391
34430
 
34392
- // node_modules/mermaid/dist/chunks/mermaid.core/chunk-OGEWGWER.mjs
34431
+ // node_modules/mermaid/dist/chunks/mermaid.core/chunk-UBXNYLIW.mjs
34393
34432
  async function configureLabelImages(container2, labelText) {
34394
34433
  const images = container2.getElementsByTagName("img");
34395
34434
  if (!images || images.length === 0) {
@@ -34427,10 +34466,10 @@ async function configureLabelImages(container2, labelText) {
34427
34466
  );
34428
34467
  }
34429
34468
  var getSubGraphTitleMargins;
34430
- var init_chunk_OGEWGWER = __esm({
34431
- "node_modules/mermaid/dist/chunks/mermaid.core/chunk-OGEWGWER.mjs"() {
34432
- init_chunk_ICXQ74PX();
34433
- init_chunk_WYO6CB5R();
34469
+ var init_chunk_UBXNYLIW = __esm({
34470
+ "node_modules/mermaid/dist/chunks/mermaid.core/chunk-UBXNYLIW.mjs"() {
34471
+ init_chunk_NSK5VX7P();
34472
+ init_chunk_I66GZJ75();
34434
34473
  init_chunk_Y2CYZVJY();
34435
34474
  getSubGraphTitleMargins = /* @__PURE__ */ __name(({
34436
34475
  flowchart
@@ -34833,11 +34872,11 @@ var init_lib = __esm({
34833
34872
  }
34834
34873
  });
34835
34874
 
34836
- // node_modules/mermaid/dist/chunks/mermaid.core/chunk-HOUHSVGY.mjs
34875
+ // node_modules/mermaid/dist/chunks/mermaid.core/chunk-4I5QYGJK.mjs
34837
34876
  var unknownIcon, iconsStore, loaderStore, registerIconPacks, getRegisteredIconData, isIconAvailable, getIconSVG;
34838
- var init_chunk_HOUHSVGY = __esm({
34839
- "node_modules/mermaid/dist/chunks/mermaid.core/chunk-HOUHSVGY.mjs"() {
34840
- init_chunk_WYO6CB5R();
34877
+ var init_chunk_4I5QYGJK = __esm({
34878
+ "node_modules/mermaid/dist/chunks/mermaid.core/chunk-4I5QYGJK.mjs"() {
34879
+ init_chunk_I66GZJ75();
34841
34880
  init_chunk_X3CZISLH();
34842
34881
  init_chunk_Y2CYZVJY();
34843
34882
  init_lib();
@@ -36128,7 +36167,7 @@ var init_esm = __esm({
36128
36167
  }
36129
36168
  });
36130
36169
 
36131
- // node_modules/mermaid/dist/chunks/mermaid.core/chunk-Q4XR5HBZ.mjs
36170
+ // node_modules/mermaid/dist/chunks/mermaid.core/chunk-WRU74C26.mjs
36132
36171
  function preprocessMarkdown(markdown, { markdownAutoWrap }) {
36133
36172
  const withoutBR = markdown.replace(/<br\/>/g, "\n");
36134
36173
  const withoutMultipleNewlines = withoutBR.replace(/\n{2,}/g, "\n");
@@ -36426,11 +36465,11 @@ async function replaceIconSubstring(text4, config3 = {}) {
36426
36465
  return text4.replace(/(fa[bklrs]?):fa-([\w-]+)/g, () => replacements.shift() ?? "");
36427
36466
  }
36428
36467
  var maxSafeSizeForWidth, createText;
36429
- var init_chunk_Q4XR5HBZ = __esm({
36430
- "node_modules/mermaid/dist/chunks/mermaid.core/chunk-Q4XR5HBZ.mjs"() {
36431
- init_chunk_HOUHSVGY();
36432
- init_chunk_ICXQ74PX();
36433
- init_chunk_WYO6CB5R();
36468
+ var init_chunk_WRU74C26 = __esm({
36469
+ "node_modules/mermaid/dist/chunks/mermaid.core/chunk-WRU74C26.mjs"() {
36470
+ init_chunk_4I5QYGJK();
36471
+ init_chunk_NSK5VX7P();
36472
+ init_chunk_I66GZJ75();
36434
36473
  init_chunk_X3CZISLH();
36435
36474
  init_chunk_Y2CYZVJY();
36436
36475
  init_src32();
@@ -37536,7 +37575,7 @@ var init_rough_esm = __esm({
37536
37575
  }
37537
37576
  });
37538
37577
 
37539
- // node_modules/mermaid/dist/chunks/mermaid.core/chunk-ZGVPDNZ5.mjs
37578
+ // node_modules/mermaid/dist/chunks/mermaid.core/chunk-QR6OTTB3.mjs
37540
37579
  function createPathFromPoints(points) {
37541
37580
  const pointStrings = points.map((p3, i5) => `${i5 === 0 ? "M" : "L"}${p3.x},${p3.y}`);
37542
37581
  pointStrings.push("Z");
@@ -41917,14 +41956,14 @@ async function insertNode(elem, node2, renderOptions) {
41917
41956
  return newEl;
41918
41957
  }
41919
41958
  var labelHelper, insertLabel, updateNodeBounds, getNodeClasses, intersectRect, intersect_rect_default, createLabel, createLabel_default, createRoundedRectPathD, swimlane, rect, noteGroup, roundedWithTitle, kanbanSection, divider, squareRect, shapes, clusterElems, insertCluster, clear2, intersect_node_default, intersect_ellipse_default, intersect_circle_default, intersect_line_default, intersect_polygon_default, intersect_default, NOTCH_SIZE, createCylinderPathD, createOuterCylinderPathD, createInnerCylinderPathD, MIN_HEIGHT, MIN_WIDTH, MIN_HEIGHT2, MIN_WIDTH2, createHexagonPathD, createCylinderPathD2, createOuterCylinderPathD2, createInnerCylinderPathD2, MIN_HEIGHT3, MIN_WIDTH3, createDecisionBoxPathD, FRAME_WIDTH, FRAME_WIDTH2, TAG_RATIO, createCylinderPathD3, createOuterCylinderPathD3, createInnerCylinderPathD3, MIN_HEIGHT4, MIN_WIDTH4, MIN_HEIGHT5, MIN_WIDTH5, rectOffset, COLOR_THEMES, REDUX_THEMES, colorFromPriority, shapesDefs, generateShapeMap, shapes2, nodeElems, setNodeElem, clear22, positionNode;
41920
- var init_chunk_ZGVPDNZ5 = __esm({
41921
- "node_modules/mermaid/dist/chunks/mermaid.core/chunk-ZGVPDNZ5.mjs"() {
41922
- init_chunk_C7G6YPKG();
41923
- init_chunk_OGEWGWER();
41924
- init_chunk_Q4XR5HBZ();
41925
- init_chunk_HOUHSVGY();
41926
- init_chunk_ICXQ74PX();
41927
- init_chunk_WYO6CB5R();
41959
+ var init_chunk_QR6OTTB3 = __esm({
41960
+ "node_modules/mermaid/dist/chunks/mermaid.core/chunk-QR6OTTB3.mjs"() {
41961
+ init_chunk_W5SLKNZC();
41962
+ init_chunk_UBXNYLIW();
41963
+ init_chunk_WRU74C26();
41964
+ init_chunk_4I5QYGJK();
41965
+ init_chunk_NSK5VX7P();
41966
+ init_chunk_I66GZJ75();
41928
41967
  init_chunk_X3CZISLH();
41929
41968
  init_chunk_Y2CYZVJY();
41930
41969
  init_src32();
@@ -43478,7 +43517,7 @@ var init_chunk_7BUUIJ7U = __esm({
43478
43517
  }
43479
43518
  });
43480
43519
 
43481
- // node_modules/mermaid/dist/chunks/mermaid.core/chunk-52WLFC77.mjs
43520
+ // node_modules/mermaid/dist/chunks/mermaid.core/chunk-7Z6QIM7H.mjs
43482
43521
  function setTerminalWidth(fo, value2) {
43483
43522
  if (getEffectiveHtmlLabels(getConfig2()) && fo) {
43484
43523
  fo.style.width = value2.length * 9 + "px";
@@ -43585,15 +43624,15 @@ function applyMarkerOffsetsToPoints(points, edge) {
43585
43624
  return newPoints;
43586
43625
  }
43587
43626
  var addEdgeMarkers, arrowTypesMap, arrowTypesWithMarginSupport, addEdgeMarker, resolveEdgeCurveType, edgeLabels, terminalLabels, clear3, getLabelStyles, insertEdgeLabel, positionEdgeLabel, orthogonalizeToLabelClippedPoints, outsideNode, intersection, cutPathAtIntersect, findAdjacentPoint, fixCorners, generateDashArray, insertEdge, insertMarkers, extension, composition, aggregation, dependency, lollipop, point6, circle2, cross, barb, barbNeo, only_one, zero_or_one, one_or_more, zero_or_more, only_one_neo, zero_or_one_neo, one_or_more_neo, zero_or_more_neo, requirement_arrow, requirement_arrow_neo, requirement_contains, requirement_contains_neo, markers, markers_default;
43588
- var init_chunk_52WLFC77 = __esm({
43589
- "node_modules/mermaid/dist/chunks/mermaid.core/chunk-52WLFC77.mjs"() {
43590
- init_chunk_ZGVPDNZ5();
43591
- init_chunk_C7G6YPKG();
43627
+ var init_chunk_7Z6QIM7H = __esm({
43628
+ "node_modules/mermaid/dist/chunks/mermaid.core/chunk-7Z6QIM7H.mjs"() {
43629
+ init_chunk_QR6OTTB3();
43630
+ init_chunk_W5SLKNZC();
43592
43631
  init_chunk_7BUUIJ7U();
43593
- init_chunk_OGEWGWER();
43594
- init_chunk_Q4XR5HBZ();
43595
- init_chunk_ICXQ74PX();
43596
- init_chunk_WYO6CB5R();
43632
+ init_chunk_UBXNYLIW();
43633
+ init_chunk_WRU74C26();
43634
+ init_chunk_NSK5VX7P();
43635
+ init_chunk_I66GZJ75();
43597
43636
  init_chunk_X3CZISLH();
43598
43637
  init_chunk_Y2CYZVJY();
43599
43638
  init_src32();
@@ -52612,25 +52651,25 @@ var init_dagre = __esm({
52612
52651
  }
52613
52652
  });
52614
52653
 
52615
- // node_modules/mermaid/dist/chunks/mermaid.core/dagre-VKFMJZFB.mjs
52616
- var dagre_VKFMJZFB_exports = {};
52617
- __export(dagre_VKFMJZFB_exports, {
52654
+ // node_modules/mermaid/dist/chunks/mermaid.core/dagre-VZM6K2ZE.mjs
52655
+ var dagre_VZM6K2ZE_exports = {};
52656
+ __export(dagre_VZM6K2ZE_exports, {
52618
52657
  getEdgesToRender: () => getEdgesToRender,
52619
52658
  render: () => render3
52620
52659
  });
52621
52660
  var clamp, getDefaultSelfLoopSide, shouldMergeSelfLoopSegments, getSelfLoopSide, getSelfLoopPoints, getSelfLoopLabelPosition, getEdgesToRender, recursiveRender, render3;
52622
- var init_dagre_VKFMJZFB = __esm({
52623
- "node_modules/mermaid/dist/chunks/mermaid.core/dagre-VKFMJZFB.mjs"() {
52661
+ var init_dagre_VZM6K2ZE = __esm({
52662
+ "node_modules/mermaid/dist/chunks/mermaid.core/dagre-VZM6K2ZE.mjs"() {
52624
52663
  init_chunk_RYQCIY6F();
52625
- init_chunk_52WLFC77();
52626
- init_chunk_ZGVPDNZ5();
52627
- init_chunk_C7G6YPKG();
52664
+ init_chunk_7Z6QIM7H();
52665
+ init_chunk_QR6OTTB3();
52666
+ init_chunk_W5SLKNZC();
52628
52667
  init_chunk_7BUUIJ7U();
52629
- init_chunk_OGEWGWER();
52630
- init_chunk_Q4XR5HBZ();
52631
- init_chunk_HOUHSVGY();
52632
- init_chunk_ICXQ74PX();
52633
- init_chunk_WYO6CB5R();
52668
+ init_chunk_UBXNYLIW();
52669
+ init_chunk_WRU74C26();
52670
+ init_chunk_4I5QYGJK();
52671
+ init_chunk_NSK5VX7P();
52672
+ init_chunk_I66GZJ75();
52634
52673
  init_chunk_X3CZISLH();
52635
52674
  init_chunk_Y2CYZVJY();
52636
52675
  init_dagre();
@@ -53222,9 +53261,9 @@ var init_sizeCapture_X5ZJPWSS = __esm({
53222
53261
  }
53223
53262
  });
53224
53263
 
53225
- // node_modules/mermaid/dist/chunks/mermaid.core/swimlanes-5IMT3BWC.mjs
53226
- var swimlanes_5IMT3BWC_exports = {};
53227
- __export(swimlanes_5IMT3BWC_exports, {
53264
+ // node_modules/mermaid/dist/chunks/mermaid.core/swimlanes-SLNWSIFB.mjs
53265
+ var swimlanes_SLNWSIFB_exports = {};
53266
+ __export(swimlanes_SLNWSIFB_exports, {
53228
53267
  render: () => render4
53229
53268
  });
53230
53269
  async function createGraphWithElements(element3, data4Layout) {
@@ -61544,18 +61583,18 @@ async function render4(data4Layout, svg2) {
61544
61583
  await adjustLayout(data4Layout, groups);
61545
61584
  }
61546
61585
  var ROUNDED_CORNER_RADIUS, CORNER_EPSILON, ENDPOINT_EPSILON, MIN_JUMP_RADIUS, DEFAULT_SWIMLANE_ID, TOP_LANE_TITLE_BAND_HEIGHT, MIN_TOP_LANE_HORIZONTAL_PADDING, EDGE_LABEL_LOG_PREFIX, EPS, EPS2, INSIDE_EPS, CORNER_CLEARANCE, EPS3, MIN_PORT_SPACING, PORT_SHIFT, TRY_DELTAS, EPS_LOCAL, MIN_SHARED, segmentsFor, orthogonallyAligned, EPS4, MIN_SHARED2, EPS5, MARKER_CLEARANCE_LENGTH, MARKER_CLEARANCE_HALF_WIDTH, EPS6, MIN_PORT_SPACING2, PORT_SHIFT2, LABEL_CLEARANCE_BUFFER, PRECISION, LAYERING, COORDINATES, AUTOMATIC_LANE_ORDERING_RESTARTS, EPS7, NODE_PADDING, HORIZONTAL_PIPE_MARGIN, VERTICAL_PIPE_MARGIN, ROUTING_MARGIN, ANCHOR_OFFSET, TRACK_SPACING;
61547
- var init_swimlanes_5IMT3BWC = __esm({
61548
- "node_modules/mermaid/dist/chunks/mermaid.core/swimlanes-5IMT3BWC.mjs"() {
61586
+ var init_swimlanes_SLNWSIFB = __esm({
61587
+ "node_modules/mermaid/dist/chunks/mermaid.core/swimlanes-SLNWSIFB.mjs"() {
61549
61588
  init_chunk_RYQCIY6F();
61550
- init_chunk_52WLFC77();
61551
- init_chunk_ZGVPDNZ5();
61552
- init_chunk_C7G6YPKG();
61589
+ init_chunk_7Z6QIM7H();
61590
+ init_chunk_QR6OTTB3();
61591
+ init_chunk_W5SLKNZC();
61553
61592
  init_chunk_7BUUIJ7U();
61554
- init_chunk_OGEWGWER();
61555
- init_chunk_Q4XR5HBZ();
61556
- init_chunk_HOUHSVGY();
61557
- init_chunk_ICXQ74PX();
61558
- init_chunk_WYO6CB5R();
61593
+ init_chunk_UBXNYLIW();
61594
+ init_chunk_WRU74C26();
61595
+ init_chunk_4I5QYGJK();
61596
+ init_chunk_NSK5VX7P();
61597
+ init_chunk_I66GZJ75();
61559
61598
  init_chunk_X3CZISLH();
61560
61599
  init_chunk_Y2CYZVJY();
61561
61600
  init_graphlib();
@@ -96997,14 +97036,14 @@ var init_cose_bilkent_JH36ORCC = __esm({
96997
97036
  }
96998
97037
  });
96999
97038
 
97000
- // node_modules/mermaid/dist/chunks/mermaid.core/chunk-FWX5IMBZ.mjs
97039
+ // node_modules/mermaid/dist/chunks/mermaid.core/chunk-J7OUQ5F2.mjs
97001
97040
  var internalHelpers, layoutAlgorithms, registerLayoutLoaders, registerDefaultLayoutLoaders, render6, getRegisteredLayoutAlgorithm;
97002
- var init_chunk_FWX5IMBZ = __esm({
97003
- "node_modules/mermaid/dist/chunks/mermaid.core/chunk-FWX5IMBZ.mjs"() {
97004
- init_chunk_52WLFC77();
97005
- init_chunk_ZGVPDNZ5();
97006
- init_chunk_ICXQ74PX();
97007
- init_chunk_WYO6CB5R();
97041
+ var init_chunk_J7OUQ5F2 = __esm({
97042
+ "node_modules/mermaid/dist/chunks/mermaid.core/chunk-J7OUQ5F2.mjs"() {
97043
+ init_chunk_7Z6QIM7H();
97044
+ init_chunk_QR6OTTB3();
97045
+ init_chunk_NSK5VX7P();
97046
+ init_chunk_I66GZJ75();
97008
97047
  init_chunk_X3CZISLH();
97009
97048
  init_chunk_Y2CYZVJY();
97010
97049
  internalHelpers = {
@@ -97030,11 +97069,11 @@ var init_chunk_FWX5IMBZ = __esm({
97030
97069
  registerLayoutLoaders([
97031
97070
  {
97032
97071
  name: "dagre",
97033
- loader: /* @__PURE__ */ __name(async () => await Promise.resolve().then(() => (init_dagre_VKFMJZFB(), dagre_VKFMJZFB_exports)), "loader")
97072
+ loader: /* @__PURE__ */ __name(async () => await Promise.resolve().then(() => (init_dagre_VZM6K2ZE(), dagre_VZM6K2ZE_exports)), "loader")
97034
97073
  },
97035
97074
  {
97036
97075
  name: "swimlane",
97037
- loader: /* @__PURE__ */ __name(async () => await Promise.resolve().then(() => (init_swimlanes_5IMT3BWC(), swimlanes_5IMT3BWC_exports)), "loader")
97076
+ loader: /* @__PURE__ */ __name(async () => await Promise.resolve().then(() => (init_swimlanes_SLNWSIFB(), swimlanes_SLNWSIFB_exports)), "loader")
97038
97077
  },
97039
97078
  ...true ? [
97040
97079
  {
@@ -97090,11 +97129,11 @@ var init_chunk_FWX5IMBZ = __esm({
97090
97129
  }
97091
97130
  });
97092
97131
 
97093
- // node_modules/mermaid/dist/chunks/mermaid.core/chunk-32BRIVSS.mjs
97132
+ // node_modules/mermaid/dist/chunks/mermaid.core/chunk-2GRJ4B5K.mjs
97094
97133
  var import_sanitize_url2, drawRect2, drawBackgroundRect, drawText, drawImage, drawEmbeddedImage, getNoteRect, getTextObj2, createTooltip;
97095
- var init_chunk_32BRIVSS = __esm({
97096
- "node_modules/mermaid/dist/chunks/mermaid.core/chunk-32BRIVSS.mjs"() {
97097
- init_chunk_WYO6CB5R();
97134
+ var init_chunk_2GRJ4B5K = __esm({
97135
+ "node_modules/mermaid/dist/chunks/mermaid.core/chunk-2GRJ4B5K.mjs"() {
97136
+ init_chunk_I66GZJ75();
97098
97137
  init_chunk_Y2CYZVJY();
97099
97138
  import_sanitize_url2 = __toESM(require_dist(), 1);
97100
97139
  init_src32();
@@ -97206,9 +97245,9 @@ var init_chunk_32BRIVSS = __esm({
97206
97245
  }
97207
97246
  });
97208
97247
 
97209
- // node_modules/mermaid/dist/chunks/mermaid.core/c4Diagram-LMCZKHZV.mjs
97210
- var c4Diagram_LMCZKHZV_exports = {};
97211
- __export(c4Diagram_LMCZKHZV_exports, {
97248
+ // node_modules/mermaid/dist/chunks/mermaid.core/c4Diagram-5PPSVZJV.mjs
97249
+ var c4Diagram_5PPSVZJV_exports = {};
97250
+ __export(c4Diagram_5PPSVZJV_exports, {
97212
97251
  diagram: () => diagram
97213
97252
  });
97214
97253
  function calcC4ShapeTextWH(textType, c4Shape, c4ShapeTextWrap, textConf, textLimitWidth) {
@@ -97333,11 +97372,11 @@ function drawInsideBoundary(diagram210, parentBoundaryAlias, parentBounds, curre
97333
97372
  }
97334
97373
  }
97335
97374
  var import_sanitize_url3, parser, c4Diagram_default, c4ShapeArray, boundaryParseStack, currentBoundaryParse, parentBoundaryParse, boundaries, rels, title, wrapEnabled, c4ShapeInRow, c4BoundaryInRow, c4Type, getC4Type, setC4Type, addRel, addPersonOrSystem, addContainer, addComponent, addPersonOrSystemBoundary, addContainerBoundary, addDeploymentNode, popBoundaryParseStack, updateElStyle, updateRelStyle, updateLayoutConfig, getC4ShapeInRow, getC4BoundaryInRow, getCurrentBoundaryParse, getParentBoundaryParse, getC4ShapeArray, getC4Shape, getC4ShapeKeys, getBoundaries, getBoundarys, getRels, getTitle, setWrap, autoWrap, clear5, LINETYPE, ARROWTYPE, PLACEMENT, setTitle, c4Db_default, drawRect22, drawImage2, drawRels, drawBoundary, drawC4Shape, insertDatabaseIcon, insertComputerIcon, insertClockIcon, insertArrowHead, insertArrowEnd, insertArrowFilledHead, insertArrowCrossHead, getC4ShapeFont, _drawTextCandidateFunc, svgDraw_default, globalBoundaryMaxX, globalBoundaryMaxY, c4ShapeInRow2, c4BoundaryInRow2, conf, Bounds, setConf, c4ShapeFont, boundaryFont, messageFont, drawBoundary2, drawC4ShapeArray, Point2, getIntersectPoint, getIntersectPoints, drawRels2, draw, c4Renderer_default, getStyles2, styles_default2, diagram;
97336
- var init_c4Diagram_LMCZKHZV = __esm({
97337
- "node_modules/mermaid/dist/chunks/mermaid.core/c4Diagram-LMCZKHZV.mjs"() {
97338
- init_chunk_32BRIVSS();
97339
- init_chunk_ICXQ74PX();
97340
- init_chunk_WYO6CB5R();
97375
+ var init_c4Diagram_5PPSVZJV = __esm({
97376
+ "node_modules/mermaid/dist/chunks/mermaid.core/c4Diagram-5PPSVZJV.mjs"() {
97377
+ init_chunk_2GRJ4B5K();
97378
+ init_chunk_NSK5VX7P();
97379
+ init_chunk_I66GZJ75();
97341
97380
  init_chunk_X3CZISLH();
97342
97381
  init_chunk_Y2CYZVJY();
97343
97382
  init_src32();
@@ -99821,11 +99860,11 @@ var init_chunk_XXDRQBXY = __esm({
99821
99860
  }
99822
99861
  });
99823
99862
 
99824
- // node_modules/mermaid/dist/chunks/mermaid.core/chunk-VR4S4FIN.mjs
99863
+ // node_modules/mermaid/dist/chunks/mermaid.core/chunk-KBJHAD2P.mjs
99825
99864
  var setupViewPortForSVG, calculateDimensionsWithPadding, createViewBox;
99826
- var init_chunk_VR4S4FIN = __esm({
99827
- "node_modules/mermaid/dist/chunks/mermaid.core/chunk-VR4S4FIN.mjs"() {
99828
- init_chunk_WYO6CB5R();
99865
+ var init_chunk_KBJHAD2P = __esm({
99866
+ "node_modules/mermaid/dist/chunks/mermaid.core/chunk-KBJHAD2P.mjs"() {
99867
+ init_chunk_I66GZJ75();
99829
99868
  init_chunk_X3CZISLH();
99830
99869
  init_chunk_Y2CYZVJY();
99831
99870
  setupViewPortForSVG = /* @__PURE__ */ __name((svg2, padding, cssDiagram, useMaxWidth) => {
@@ -99851,19 +99890,19 @@ var init_chunk_VR4S4FIN = __esm({
99851
99890
  }
99852
99891
  });
99853
99892
 
99854
- // node_modules/mermaid/dist/chunks/mermaid.core/chunk-PUDLZKDR.mjs
99893
+ // node_modules/mermaid/dist/chunks/mermaid.core/chunk-JQJVKLGR.mjs
99855
99894
  var MERMAID_DOM_ID_PREFIX, FlowDB, getClasses, draw2, flowRenderer_v3_unified_default, parser2, flow_default, newParser, flowParser_default, fade, getStyles3, styles_default3, createFlowDiagram, diagram2;
99856
- var init_chunk_PUDLZKDR = __esm({
99857
- "node_modules/mermaid/dist/chunks/mermaid.core/chunk-PUDLZKDR.mjs"() {
99895
+ var init_chunk_JQJVKLGR = __esm({
99896
+ "node_modules/mermaid/dist/chunks/mermaid.core/chunk-JQJVKLGR.mjs"() {
99858
99897
  init_chunk_5VM5RSS4();
99859
99898
  init_chunk_XXDRQBXY();
99860
- init_chunk_VR4S4FIN();
99899
+ init_chunk_KBJHAD2P();
99861
99900
  init_chunk_ZIRB5QZD();
99862
- init_chunk_FWX5IMBZ();
99863
- init_chunk_32BRIVSS();
99864
- init_chunk_ZGVPDNZ5();
99865
- init_chunk_ICXQ74PX();
99866
- init_chunk_WYO6CB5R();
99901
+ init_chunk_J7OUQ5F2();
99902
+ init_chunk_2GRJ4B5K();
99903
+ init_chunk_QR6OTTB3();
99904
+ init_chunk_NSK5VX7P();
99905
+ init_chunk_I66GZJ75();
99867
99906
  init_chunk_X3CZISLH();
99868
99907
  init_chunk_Y2CYZVJY();
99869
99908
  init_src32();
@@ -102320,59 +102359,59 @@ You have to call mermaid.initialize.`
102320
102359
  }
102321
102360
  });
102322
102361
 
102323
- // node_modules/mermaid/dist/chunks/mermaid.core/flowDiagram-23GEKE2U.mjs
102324
- var flowDiagram_23GEKE2U_exports = {};
102325
- __export(flowDiagram_23GEKE2U_exports, {
102362
+ // node_modules/mermaid/dist/chunks/mermaid.core/flowDiagram-UKHOOZJN.mjs
102363
+ var flowDiagram_UKHOOZJN_exports = {};
102364
+ __export(flowDiagram_UKHOOZJN_exports, {
102326
102365
  createFlowDiagram: () => createFlowDiagram,
102327
102366
  diagram: () => diagram2
102328
102367
  });
102329
- var init_flowDiagram_23GEKE2U = __esm({
102330
- "node_modules/mermaid/dist/chunks/mermaid.core/flowDiagram-23GEKE2U.mjs"() {
102331
- init_chunk_PUDLZKDR();
102368
+ var init_flowDiagram_UKHOOZJN = __esm({
102369
+ "node_modules/mermaid/dist/chunks/mermaid.core/flowDiagram-UKHOOZJN.mjs"() {
102370
+ init_chunk_JQJVKLGR();
102332
102371
  init_chunk_5VM5RSS4();
102333
102372
  init_chunk_XXDRQBXY();
102334
- init_chunk_VR4S4FIN();
102373
+ init_chunk_KBJHAD2P();
102335
102374
  init_chunk_ZIRB5QZD();
102336
- init_chunk_FWX5IMBZ();
102337
- init_chunk_32BRIVSS();
102338
- init_chunk_52WLFC77();
102339
- init_chunk_ZGVPDNZ5();
102340
- init_chunk_C7G6YPKG();
102375
+ init_chunk_J7OUQ5F2();
102376
+ init_chunk_2GRJ4B5K();
102377
+ init_chunk_7Z6QIM7H();
102378
+ init_chunk_QR6OTTB3();
102379
+ init_chunk_W5SLKNZC();
102341
102380
  init_chunk_7BUUIJ7U();
102342
- init_chunk_OGEWGWER();
102343
- init_chunk_Q4XR5HBZ();
102344
- init_chunk_HOUHSVGY();
102345
- init_chunk_ICXQ74PX();
102346
- init_chunk_WYO6CB5R();
102381
+ init_chunk_UBXNYLIW();
102382
+ init_chunk_WRU74C26();
102383
+ init_chunk_4I5QYGJK();
102384
+ init_chunk_NSK5VX7P();
102385
+ init_chunk_I66GZJ75();
102347
102386
  init_chunk_X3CZISLH();
102348
102387
  init_chunk_Y2CYZVJY();
102349
102388
  }
102350
102389
  });
102351
102390
 
102352
- // node_modules/mermaid/dist/chunks/mermaid.core/swimlanesDiagram-G3AALYLV.mjs
102353
- var swimlanesDiagram_G3AALYLV_exports = {};
102354
- __export(swimlanesDiagram_G3AALYLV_exports, {
102391
+ // node_modules/mermaid/dist/chunks/mermaid.core/swimlanesDiagram-ULZ7WXOC.mjs
102392
+ var swimlanesDiagram_ULZ7WXOC_exports = {};
102393
+ __export(swimlanesDiagram_ULZ7WXOC_exports, {
102355
102394
  diagram: () => diagram3
102356
102395
  });
102357
102396
  var getStyles4, styles_default22, diagram3;
102358
- var init_swimlanesDiagram_G3AALYLV = __esm({
102359
- "node_modules/mermaid/dist/chunks/mermaid.core/swimlanesDiagram-G3AALYLV.mjs"() {
102360
- init_chunk_PUDLZKDR();
102397
+ var init_swimlanesDiagram_ULZ7WXOC = __esm({
102398
+ "node_modules/mermaid/dist/chunks/mermaid.core/swimlanesDiagram-ULZ7WXOC.mjs"() {
102399
+ init_chunk_JQJVKLGR();
102361
102400
  init_chunk_5VM5RSS4();
102362
102401
  init_chunk_XXDRQBXY();
102363
- init_chunk_VR4S4FIN();
102402
+ init_chunk_KBJHAD2P();
102364
102403
  init_chunk_ZIRB5QZD();
102365
- init_chunk_FWX5IMBZ();
102366
- init_chunk_32BRIVSS();
102367
- init_chunk_52WLFC77();
102368
- init_chunk_ZGVPDNZ5();
102369
- init_chunk_C7G6YPKG();
102404
+ init_chunk_J7OUQ5F2();
102405
+ init_chunk_2GRJ4B5K();
102406
+ init_chunk_7Z6QIM7H();
102407
+ init_chunk_QR6OTTB3();
102408
+ init_chunk_W5SLKNZC();
102370
102409
  init_chunk_7BUUIJ7U();
102371
- init_chunk_OGEWGWER();
102372
- init_chunk_Q4XR5HBZ();
102373
- init_chunk_HOUHSVGY();
102374
- init_chunk_ICXQ74PX();
102375
- init_chunk_WYO6CB5R();
102410
+ init_chunk_UBXNYLIW();
102411
+ init_chunk_WRU74C26();
102412
+ init_chunk_4I5QYGJK();
102413
+ init_chunk_NSK5VX7P();
102414
+ init_chunk_I66GZJ75();
102376
102415
  init_chunk_X3CZISLH();
102377
102416
  init_chunk_Y2CYZVJY();
102378
102417
  getStyles4 = /* @__PURE__ */ __name((options2) => `${styles_default3(options2)}
@@ -102388,26 +102427,26 @@ var init_swimlanesDiagram_G3AALYLV = __esm({
102388
102427
  }
102389
102428
  });
102390
102429
 
102391
- // node_modules/mermaid/dist/chunks/mermaid.core/erDiagram-Q63AITRT.mjs
102392
- var erDiagram_Q63AITRT_exports = {};
102393
- __export(erDiagram_Q63AITRT_exports, {
102430
+ // node_modules/mermaid/dist/chunks/mermaid.core/erDiagram-JOGREHBK.mjs
102431
+ var erDiagram_JOGREHBK_exports = {};
102432
+ __export(erDiagram_JOGREHBK_exports, {
102394
102433
  diagram: () => diagram4
102395
102434
  });
102396
102435
  var parser3, erDiagram_default, ErDB, erRenderer_unified_exports, draw3, fade2, COLOR_THEMES2, genColor, getStyles5, styles_default4, diagram4;
102397
- var init_erDiagram_Q63AITRT = __esm({
102398
- "node_modules/mermaid/dist/chunks/mermaid.core/erDiagram-Q63AITRT.mjs"() {
102436
+ var init_erDiagram_JOGREHBK = __esm({
102437
+ "node_modules/mermaid/dist/chunks/mermaid.core/erDiagram-JOGREHBK.mjs"() {
102399
102438
  init_chunk_XXDRQBXY();
102400
- init_chunk_VR4S4FIN();
102401
- init_chunk_FWX5IMBZ();
102402
- init_chunk_52WLFC77();
102403
- init_chunk_ZGVPDNZ5();
102404
- init_chunk_C7G6YPKG();
102439
+ init_chunk_KBJHAD2P();
102440
+ init_chunk_J7OUQ5F2();
102441
+ init_chunk_7Z6QIM7H();
102442
+ init_chunk_QR6OTTB3();
102443
+ init_chunk_W5SLKNZC();
102405
102444
  init_chunk_7BUUIJ7U();
102406
- init_chunk_OGEWGWER();
102407
- init_chunk_Q4XR5HBZ();
102408
- init_chunk_HOUHSVGY();
102409
- init_chunk_ICXQ74PX();
102410
- init_chunk_WYO6CB5R();
102445
+ init_chunk_UBXNYLIW();
102446
+ init_chunk_WRU74C26();
102447
+ init_chunk_4I5QYGJK();
102448
+ init_chunk_NSK5VX7P();
102449
+ init_chunk_I66GZJ75();
102411
102450
  init_chunk_X3CZISLH();
102412
102451
  init_chunk_Y2CYZVJY();
102413
102452
  init_src32();
@@ -136091,9 +136130,9 @@ var init_mermaid_parser_core = __esm({
136091
136130
  }
136092
136131
  });
136093
136132
 
136094
- // node_modules/mermaid/dist/chunks/mermaid.core/gitGraphDiagram-IHSO6WYX.mjs
136095
- var gitGraphDiagram_IHSO6WYX_exports = {};
136096
- __export(gitGraphDiagram_IHSO6WYX_exports, {
136133
+ // node_modules/mermaid/dist/chunks/mermaid.core/gitGraphDiagram-DS77QQ5N.mjs
136134
+ var gitGraphDiagram_DS77QQ5N_exports = {};
136135
+ __export(gitGraphDiagram_DS77QQ5N_exports, {
136097
136136
  diagram: () => diagram5
136098
136137
  });
136099
136138
  function getID() {
@@ -136158,12 +136197,12 @@ function prettyPrintCommitHistory(commitArr) {
136158
136197
  prettyPrintCommitHistory(commitArr);
136159
136198
  }
136160
136199
  var commitType, DEFAULT_GITGRAPH_CONFIG, getConfig3, state2, setDirection, setOptions6, getOptions, commit, branch, merge5, cherryPick, checkout, prettyPrint, clear23, getBranchesAsObjArray, getBranches, getCommits, getCommitsArray, getCurrentBranch, getDirection, getHead, db, populate15, parseStatement, parseCommit, parseBranch, parseMerge, parseCheckout, parseCherryPicking, parser4, LAYOUT_OFFSET, COMMIT_STEP, PX, PY, THEME_COLOR_LIMIT, REDUX_GEOMETRY_THEMES, REDUX_BRANCH_LABEL_PADDING_Y, COLOR_THEMES3, DARK_THEMES, calcColorIndex, branchPos, commitPos, defaultPos, allCommitsDict, lanes, maxPos, dir, clear32, drawText2, findClosestParent, findClosestParentBT, setParallelBTPos, findClosestParentPos, calculateCommitPosition, setCommitPosition, setRootPosition, drawCommitBullet, drawCommitLabel, drawCommitTags, getCommitClassType, calculatePosition, getCommitPosition, drawCommits, shouldRerouteArrow, findLane, drawArrow, drawArrows, drawBranches, setBranchPosition, draw4, gitGraphRenderer_default, GIT_NAMED_COLOR_COUNT, REDUX_GEOMETRY_THEMES2, COLOR_THEMES22, NEO_THEMES, DARK_THEMES2, NEO_COLOR_GEN_THEMES, genGitGraphGradient, genColor2, normalTheme, getStyles6, styles_default5, diagram5;
136161
- var init_gitGraphDiagram_IHSO6WYX = __esm({
136162
- "node_modules/mermaid/dist/chunks/mermaid.core/gitGraphDiagram-IHSO6WYX.mjs"() {
136200
+ var init_gitGraphDiagram_DS77QQ5N = __esm({
136201
+ "node_modules/mermaid/dist/chunks/mermaid.core/gitGraphDiagram-DS77QQ5N.mjs"() {
136163
136202
  init_chunk_2Q5K7J3B();
136164
136203
  init_chunk_JWPE2WC7();
136165
- init_chunk_ICXQ74PX();
136166
- init_chunk_WYO6CB5R();
136204
+ init_chunk_NSK5VX7P();
136205
+ init_chunk_I66GZJ75();
136167
136206
  init_chunk_X3CZISLH();
136168
136207
  init_chunk_Y2CYZVJY();
136169
136208
  init_mermaid_parser_core();
@@ -138346,9 +138385,9 @@ var require_duration = __commonJS({
138346
138385
  }
138347
138386
  });
138348
138387
 
138349
- // node_modules/mermaid/dist/chunks/mermaid.core/ganttDiagram-NO4QXBWP.mjs
138350
- var ganttDiagram_NO4QXBWP_exports = {};
138351
- __export(ganttDiagram_NO4QXBWP_exports, {
138388
+ // node_modules/mermaid/dist/chunks/mermaid.core/ganttDiagram-PKOTCBZU.mjs
138389
+ var ganttDiagram_PKOTCBZU_exports = {};
138390
+ __export(ganttDiagram_PKOTCBZU_exports, {
138352
138391
  diagram: () => diagram6
138353
138392
  });
138354
138393
  function getTaskTags(data6, task, tags2) {
@@ -138367,10 +138406,10 @@ function getTaskTags(data6, task, tags2) {
138367
138406
  }
138368
138407
  }
138369
138408
  var import_sanitize_url4, import_dayjs2, import_isoWeek, import_customParseFormat, import_advancedFormat, import_dayjs3, import_duration8, parser5, gantt_default, WEEKEND_START_DAY, dateFormat, axisFormat, tickInterval, todayMarker, includes2, excludes, links, sections, tasks, currentSection, displayMode, tags, funs, diagramId, inclusiveEndDates, topAxis, weekday, weekend, lastOrder, clear24, setDiagramId, setAxisFormat, getAxisFormat, setTickInterval, getTickInterval, setTodayMarker, getTodayMarker, setDateFormat, enableInclusiveEndDates, endDatesAreInclusive, enableTopAxis, topAxisEnabled, setDisplayMode, getDisplayMode, getDateFormat, mergeTokens, setIncludes, getIncludes, setExcludes, getExcludes, getLinks, addSection, getSections, getTasks, isInvalidDate, setWeekday, getWeekday, setWeekend, checkTaskDates, fixTaskDates, getStartDate, parseDuration, getEndDate, taskCnt, parseId, compileData, parseData, lastTask, lastTaskID, rawTasks, taskDb, addTask, findTaskById, addTaskOrg, compileTasks, setLink, setClass, setClickFun, pushFun, setClickEvent, bindFunctions, ganttDb_default, setConf2, mapWeekdayToTimeFunction, getMaxIntersections, w3, MAX_TICK_COUNT, draw5, ganttRenderer_default, getStyles7, styles_default6, diagram6;
138370
- var init_ganttDiagram_NO4QXBWP = __esm({
138371
- "node_modules/mermaid/dist/chunks/mermaid.core/ganttDiagram-NO4QXBWP.mjs"() {
138372
- init_chunk_ICXQ74PX();
138373
- init_chunk_WYO6CB5R();
138409
+ var init_ganttDiagram_PKOTCBZU = __esm({
138410
+ "node_modules/mermaid/dist/chunks/mermaid.core/ganttDiagram-PKOTCBZU.mjs"() {
138411
+ init_chunk_NSK5VX7P();
138412
+ init_chunk_I66GZJ75();
138374
138413
  init_chunk_X3CZISLH();
138375
138414
  init_chunk_Y2CYZVJY();
138376
138415
  import_sanitize_url4 = __toESM(require_dist(), 1);
@@ -140631,16 +140670,16 @@ var init_ganttDiagram_NO4QXBWP = __esm({
140631
140670
  }
140632
140671
  });
140633
140672
 
140634
- // node_modules/mermaid/dist/chunks/mermaid.core/infoDiagram-FWYZ7A6U.mjs
140635
- var infoDiagram_FWYZ7A6U_exports = {};
140636
- __export(infoDiagram_FWYZ7A6U_exports, {
140673
+ // node_modules/mermaid/dist/chunks/mermaid.core/infoDiagram-6WML65LV.mjs
140674
+ var infoDiagram_6WML65LV_exports = {};
140675
+ __export(infoDiagram_6WML65LV_exports, {
140637
140676
  diagram: () => diagram7
140638
140677
  });
140639
140678
  var parser6, DEFAULT_INFO_DB, getVersion, db2, draw6, renderer3, diagram7;
140640
- var init_infoDiagram_FWYZ7A6U = __esm({
140641
- "node_modules/mermaid/dist/chunks/mermaid.core/infoDiagram-FWYZ7A6U.mjs"() {
140642
- init_chunk_VAUOI2AC();
140643
- init_chunk_WYO6CB5R();
140679
+ var init_infoDiagram_6WML65LV = __esm({
140680
+ "node_modules/mermaid/dist/chunks/mermaid.core/infoDiagram-6WML65LV.mjs"() {
140681
+ init_chunk_3NCLNEKW();
140682
+ init_chunk_I66GZJ75();
140644
140683
  init_chunk_X3CZISLH();
140645
140684
  init_chunk_Y2CYZVJY();
140646
140685
  init_mermaid_parser_core();
@@ -140651,7 +140690,7 @@ var init_infoDiagram_FWYZ7A6U = __esm({
140651
140690
  }, "parse")
140652
140691
  };
140653
140692
  DEFAULT_INFO_DB = {
140654
- version: "11.16.0" + (true ? "" : "-tiny")
140693
+ version: "11.16.1" + (true ? "" : "-tiny")
140655
140694
  };
140656
140695
  getVersion = /* @__PURE__ */ __name(() => DEFAULT_INFO_DB.version, "getVersion");
140657
140696
  db2 = {
@@ -140673,18 +140712,18 @@ var init_infoDiagram_FWYZ7A6U = __esm({
140673
140712
  }
140674
140713
  });
140675
140714
 
140676
- // node_modules/mermaid/dist/chunks/mermaid.core/pieDiagram-ENE6RG2P.mjs
140677
- var pieDiagram_ENE6RG2P_exports = {};
140678
- __export(pieDiagram_ENE6RG2P_exports, {
140715
+ // node_modules/mermaid/dist/chunks/mermaid.core/pieDiagram-7S7Q4E2Y.mjs
140716
+ var pieDiagram_7S7Q4E2Y_exports = {};
140717
+ __export(pieDiagram_7S7Q4E2Y_exports, {
140679
140718
  diagram: () => diagram8
140680
140719
  });
140681
140720
  var DEFAULT_PIE_CONFIG, DEFAULT_PIE_DB, sections2, showData, config2, getConfig22, clear25, addSection2, getSections2, setShowData, getShowData, db3, populateDb, parser7, getStyles8, pieStyles_default, createPieArcs, draw7, renderer4, diagram8;
140682
- var init_pieDiagram_ENE6RG2P = __esm({
140683
- "node_modules/mermaid/dist/chunks/mermaid.core/pieDiagram-ENE6RG2P.mjs"() {
140721
+ var init_pieDiagram_7S7Q4E2Y = __esm({
140722
+ "node_modules/mermaid/dist/chunks/mermaid.core/pieDiagram-7S7Q4E2Y.mjs"() {
140684
140723
  init_chunk_JWPE2WC7();
140685
- init_chunk_VAUOI2AC();
140686
- init_chunk_ICXQ74PX();
140687
- init_chunk_WYO6CB5R();
140724
+ init_chunk_3NCLNEKW();
140725
+ init_chunk_NSK5VX7P();
140726
+ init_chunk_I66GZJ75();
140688
140727
  init_chunk_X3CZISLH();
140689
140728
  init_chunk_Y2CYZVJY();
140690
140729
  init_mermaid_parser_core();
@@ -140947,9 +140986,9 @@ var init_pieDiagram_ENE6RG2P = __esm({
140947
140986
  }
140948
140987
  });
140949
140988
 
140950
- // node_modules/mermaid/dist/chunks/mermaid.core/quadrantDiagram-ABIIQ3AL.mjs
140951
- var quadrantDiagram_ABIIQ3AL_exports = {};
140952
- __export(quadrantDiagram_ABIIQ3AL_exports, {
140989
+ // node_modules/mermaid/dist/chunks/mermaid.core/quadrantDiagram-CIZ2JOQS.mjs
140990
+ var quadrantDiagram_CIZ2JOQS_exports = {};
140991
+ __export(quadrantDiagram_CIZ2JOQS_exports, {
140953
140992
  diagram: () => diagram9
140954
140993
  });
140955
140994
  function validateHexCode(value2) {
@@ -141066,9 +141105,9 @@ function getQuadrantData() {
141066
141105
  return quadrantBuilder.build();
141067
141106
  }
141068
141107
  var parser8, quadrant_default, defaultThemeVariables, QuadrantBuilder, InvalidStyleError, quadrantBuilder, clear26, quadrantDb_default, draw8, quadrantRenderer_default, diagram9;
141069
- var init_quadrantDiagram_ABIIQ3AL = __esm({
141070
- "node_modules/mermaid/dist/chunks/mermaid.core/quadrantDiagram-ABIIQ3AL.mjs"() {
141071
- init_chunk_WYO6CB5R();
141108
+ var init_quadrantDiagram_CIZ2JOQS = __esm({
141109
+ "node_modules/mermaid/dist/chunks/mermaid.core/quadrantDiagram-CIZ2JOQS.mjs"() {
141110
+ init_chunk_I66GZJ75();
141072
141111
  init_chunk_X3CZISLH();
141073
141112
  init_chunk_Y2CYZVJY();
141074
141113
  init_src32();
@@ -142347,9 +142386,9 @@ var init_quadrantDiagram_ABIIQ3AL = __esm({
142347
142386
  }
142348
142387
  });
142349
142388
 
142350
- // node_modules/mermaid/dist/chunks/mermaid.core/xychartDiagram-FW5EYKEG.mjs
142351
- var xychartDiagram_FW5EYKEG_exports = {};
142352
- __export(xychartDiagram_FW5EYKEG_exports, {
142389
+ // node_modules/mermaid/dist/chunks/mermaid.core/xychartDiagram-ELKLHX3M.mjs
142390
+ var xychartDiagram_ELKLHX3M_exports = {};
142391
+ __export(xychartDiagram_ELKLHX3M_exports, {
142353
142392
  diagram: () => diagram10
142354
142393
  });
142355
142394
  function isBarPlot(data6) {
@@ -142486,12 +142525,12 @@ function transformDataWithoutCategory(data6) {
142486
142525
  if (isLinearAxisData(xyChartData.xAxis)) {
142487
142526
  const min10 = xyChartData.xAxis.min;
142488
142527
  const max10 = xyChartData.xAxis.max;
142489
- const step3 = (max10 - min10) / (data6.length - 1);
142490
- const categories = [];
142491
- for (let i5 = min10; i5 <= max10; i5 += step3) {
142492
- categories.push(`${i5}`);
142528
+ if (data6.length === 1) {
142529
+ retData = [[`${min10}`, data6[0]]];
142530
+ } else {
142531
+ const step3 = (max10 - min10) / (data6.length - 1);
142532
+ retData = data6.map((datum2, index) => [`${min10 + index * step3}`, datum2]);
142493
142533
  }
142494
- retData = categories.map((c3, i5) => [c3, data6[i5]]);
142495
142534
  }
142496
142535
  return retData;
142497
142536
  }
@@ -142539,13 +142578,13 @@ function getXYChartData() {
142539
142578
  return xyChartData;
142540
142579
  }
142541
142580
  var parser9, xychart_default, TextDimensionCalculatorWithFont, BAR_WIDTH_TO_TICK_WIDTH_RATIO, MAX_OUTER_PADDING_PERCENT_FOR_WRT_LABEL, BaseAxis, BandAxis, LinearAxis, ChartTitle, LinePlot, BarPlot, BasePlot, Orchestrator, XYChartBuilder, plotIndex, tmpSVGGroup, xyChartConfig, xyChartThemeConfig, xyChartData, plotColorPalette, hasSetXAxis, hasSetYAxis, clear27, xychartDb_default, draw9, xychartRenderer_default, diagram10;
142542
- var init_xychartDiagram_FW5EYKEG = __esm({
142543
- "node_modules/mermaid/dist/chunks/mermaid.core/xychartDiagram-FW5EYKEG.mjs"() {
142544
- init_chunk_VAUOI2AC();
142545
- init_chunk_Q4XR5HBZ();
142546
- init_chunk_HOUHSVGY();
142547
- init_chunk_ICXQ74PX();
142548
- init_chunk_WYO6CB5R();
142581
+ var init_xychartDiagram_ELKLHX3M = __esm({
142582
+ "node_modules/mermaid/dist/chunks/mermaid.core/xychartDiagram-ELKLHX3M.mjs"() {
142583
+ init_chunk_3NCLNEKW();
142584
+ init_chunk_WRU74C26();
142585
+ init_chunk_4I5QYGJK();
142586
+ init_chunk_NSK5VX7P();
142587
+ init_chunk_I66GZJ75();
142549
142588
  init_chunk_X3CZISLH();
142550
142589
  init_chunk_Y2CYZVJY();
142551
142590
  init_src32();
@@ -144348,26 +144387,26 @@ var init_xychartDiagram_FW5EYKEG = __esm({
144348
144387
  }
144349
144388
  });
144350
144389
 
144351
- // node_modules/mermaid/dist/chunks/mermaid.core/requirementDiagram-TGXJPOKE.mjs
144352
- var requirementDiagram_TGXJPOKE_exports = {};
144353
- __export(requirementDiagram_TGXJPOKE_exports, {
144390
+ // node_modules/mermaid/dist/chunks/mermaid.core/requirementDiagram-LRYGKXZP.mjs
144391
+ var requirementDiagram_LRYGKXZP_exports = {};
144392
+ __export(requirementDiagram_LRYGKXZP_exports, {
144354
144393
  diagram: () => diagram11
144355
144394
  });
144356
144395
  var parser10, requirementDiagram_default, RequirementDB, genColor3, getStyles9, styles_default7, requirementRenderer_exports, draw10, diagram11;
144357
- var init_requirementDiagram_TGXJPOKE = __esm({
144358
- "node_modules/mermaid/dist/chunks/mermaid.core/requirementDiagram-TGXJPOKE.mjs"() {
144396
+ var init_requirementDiagram_LRYGKXZP = __esm({
144397
+ "node_modules/mermaid/dist/chunks/mermaid.core/requirementDiagram-LRYGKXZP.mjs"() {
144359
144398
  init_chunk_XXDRQBXY();
144360
- init_chunk_VR4S4FIN();
144361
- init_chunk_FWX5IMBZ();
144362
- init_chunk_52WLFC77();
144363
- init_chunk_ZGVPDNZ5();
144364
- init_chunk_C7G6YPKG();
144399
+ init_chunk_KBJHAD2P();
144400
+ init_chunk_J7OUQ5F2();
144401
+ init_chunk_7Z6QIM7H();
144402
+ init_chunk_QR6OTTB3();
144403
+ init_chunk_W5SLKNZC();
144365
144404
  init_chunk_7BUUIJ7U();
144366
- init_chunk_OGEWGWER();
144367
- init_chunk_Q4XR5HBZ();
144368
- init_chunk_HOUHSVGY();
144369
- init_chunk_ICXQ74PX();
144370
- init_chunk_WYO6CB5R();
144405
+ init_chunk_UBXNYLIW();
144406
+ init_chunk_WRU74C26();
144407
+ init_chunk_4I5QYGJK();
144408
+ init_chunk_NSK5VX7P();
144409
+ init_chunk_I66GZJ75();
144371
144410
  init_chunk_X3CZISLH();
144372
144411
  init_chunk_Y2CYZVJY();
144373
144412
  parser10 = (function() {
@@ -145639,9 +145678,9 @@ var init_requirementDiagram_TGXJPOKE = __esm({
145639
145678
  }
145640
145679
  });
145641
145680
 
145642
- // node_modules/mermaid/dist/chunks/mermaid.core/sequenceDiagram-DBY2YBRQ.mjs
145643
- var sequenceDiagram_DBY2YBRQ_exports = {};
145644
- __export(sequenceDiagram_DBY2YBRQ_exports, {
145681
+ // node_modules/mermaid/dist/chunks/mermaid.core/sequenceDiagram-SI44F4Z6.mjs
145682
+ var sequenceDiagram_SI44F4Z6_exports = {};
145683
+ __export(sequenceDiagram_SI44F4Z6_exports, {
145645
145684
  diagram: () => diagram12
145646
145685
  });
145647
145686
  async function boundMessage(_diagram, msgModel) {
@@ -145893,13 +145932,13 @@ async function calculateActorMargins(actors2, actorToMessageWidth, boxes) {
145893
145932
  return common_default.getMax(maxHeight, conf2.height);
145894
145933
  }
145895
145934
  var import_sanitize_url5, parser11, sequenceDiagram_default, LINETYPE2, ARROWTYPE2, PLACEMENT2, PARTICIPANT_TYPE, SequenceDB, getStyles10, styles_default8, ACTOR_TYPE_WIDTH, TOP_ACTOR_CLASS, BOTTOM_ACTOR_CLASS, ACTOR_BOX_CLASS, ACTOR_MAN_FIGURE_CLASS, COLOR_THEMES4, drawRect23, drawPopup, popupMenuToggle, drawKatex, drawText3, drawLabel, actorCnt, fixLifeLineHeights, drawActorTypeParticipant, drawActorTypeCollections, drawActorTypeQueue, drawActorTypeControl, drawActorTypeEntity, drawActorTypeDatabase, drawActorTypeBoundary, drawActorTypeActor, drawActor, drawBox, anchorElement, drawActivation, drawLoop, drawBackgroundRect2, insertDatabaseIcon2, insertComputerIcon2, insertClockIcon2, insertArrowHead2, insertArrowFilledHead2, insertSequenceNumber, insertArrowCrossHead2, insertDropShadow, getTextObj22, getNoteRect2, _drawTextCandidateFunc2, _drawMenuItemTextCandidateFunc, insertSolidTopArrowHead, insertSolidBottomArrowHead, insertStickTopArrowHead, insertStickBottomArrowHead, svgDraw_default2, conf2, bounds2, drawNote, drawCentralConnection, messageFont2, noteFont, actorFont, drawMessage, addActorRenderingData, drawActors, drawActorsPopup, setConf3, actorActivations, activationBounds, draw11, getRequiredPopupWidth, buildNoteModel, CENTRAL_CONNECTION_BASE_OFFSET, CENTRAL_CONNECTION_BIDIRECTIONAL_OFFSET, hasCentralConnection, calculateCentralConnectionOffset, isReverseArrowType, isBidirectionalArrowType, buildMessageModel, calculateLoopBounds, sequenceRenderer_default, diagram12;
145896
- var init_sequenceDiagram_DBY2YBRQ = __esm({
145897
- "node_modules/mermaid/dist/chunks/mermaid.core/sequenceDiagram-DBY2YBRQ.mjs"() {
145935
+ var init_sequenceDiagram_SI44F4Z6 = __esm({
145936
+ "node_modules/mermaid/dist/chunks/mermaid.core/sequenceDiagram-SI44F4Z6.mjs"() {
145898
145937
  init_chunk_2Q5K7J3B();
145899
145938
  init_chunk_ZIRB5QZD();
145900
- init_chunk_32BRIVSS();
145901
- init_chunk_ICXQ74PX();
145902
- init_chunk_WYO6CB5R();
145939
+ init_chunk_2GRJ4B5K();
145940
+ init_chunk_NSK5VX7P();
145941
+ init_chunk_I66GZJ75();
145903
145942
  init_chunk_X3CZISLH();
145904
145943
  init_chunk_Y2CYZVJY();
145905
145944
  init_src32();
@@ -150267,17 +150306,17 @@ var init_sequenceDiagram_DBY2YBRQ = __esm({
150267
150306
  }
150268
150307
  });
150269
150308
 
150270
- // node_modules/mermaid/dist/chunks/mermaid.core/chunk-V7JOEXUC.mjs
150309
+ // node_modules/mermaid/dist/chunks/mermaid.core/chunk-GF5L2VYU.mjs
150271
150310
  var parser12, classDiagram_default, visibilityValues, ClassMember, MERMAID_DOM_ID_PREFIX2, classCounter, sanitizeText22, ClassDB, getStyles11, styles_default9, getDir, getClasses2, draw12, classRenderer_v3_unified_default;
150272
- var init_chunk_V7JOEXUC = __esm({
150273
- "node_modules/mermaid/dist/chunks/mermaid.core/chunk-V7JOEXUC.mjs"() {
150311
+ var init_chunk_GF5L2VYU = __esm({
150312
+ "node_modules/mermaid/dist/chunks/mermaid.core/chunk-GF5L2VYU.mjs"() {
150274
150313
  init_chunk_5VM5RSS4();
150275
150314
  init_chunk_XXDRQBXY();
150276
- init_chunk_VR4S4FIN();
150277
- init_chunk_FWX5IMBZ();
150278
- init_chunk_32BRIVSS();
150279
- init_chunk_ICXQ74PX();
150280
- init_chunk_WYO6CB5R();
150315
+ init_chunk_KBJHAD2P();
150316
+ init_chunk_J7OUQ5F2();
150317
+ init_chunk_2GRJ4B5K();
150318
+ init_chunk_NSK5VX7P();
150319
+ init_chunk_I66GZJ75();
150281
150320
  init_chunk_X3CZISLH();
150282
150321
  init_chunk_Y2CYZVJY();
150283
150322
  init_src32();
@@ -152386,29 +152425,29 @@ g.classGroup line {
152386
152425
  }
152387
152426
  });
152388
152427
 
152389
- // node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-OUVF2IWQ.mjs
152390
- var classDiagram_OUVF2IWQ_exports = {};
152391
- __export(classDiagram_OUVF2IWQ_exports, {
152428
+ // node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-JCYQIIEL.mjs
152429
+ var classDiagram_JCYQIIEL_exports = {};
152430
+ __export(classDiagram_JCYQIIEL_exports, {
152392
152431
  diagram: () => diagram13
152393
152432
  });
152394
152433
  var diagram13;
152395
- var init_classDiagram_OUVF2IWQ = __esm({
152396
- "node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-OUVF2IWQ.mjs"() {
152397
- init_chunk_V7JOEXUC();
152434
+ var init_classDiagram_JCYQIIEL = __esm({
152435
+ "node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-JCYQIIEL.mjs"() {
152436
+ init_chunk_GF5L2VYU();
152398
152437
  init_chunk_5VM5RSS4();
152399
152438
  init_chunk_XXDRQBXY();
152400
- init_chunk_VR4S4FIN();
152401
- init_chunk_FWX5IMBZ();
152402
- init_chunk_32BRIVSS();
152403
- init_chunk_52WLFC77();
152404
- init_chunk_ZGVPDNZ5();
152405
- init_chunk_C7G6YPKG();
152439
+ init_chunk_KBJHAD2P();
152440
+ init_chunk_J7OUQ5F2();
152441
+ init_chunk_2GRJ4B5K();
152442
+ init_chunk_7Z6QIM7H();
152443
+ init_chunk_QR6OTTB3();
152444
+ init_chunk_W5SLKNZC();
152406
152445
  init_chunk_7BUUIJ7U();
152407
- init_chunk_OGEWGWER();
152408
- init_chunk_Q4XR5HBZ();
152409
- init_chunk_HOUHSVGY();
152410
- init_chunk_ICXQ74PX();
152411
- init_chunk_WYO6CB5R();
152446
+ init_chunk_UBXNYLIW();
152447
+ init_chunk_WRU74C26();
152448
+ init_chunk_4I5QYGJK();
152449
+ init_chunk_NSK5VX7P();
152450
+ init_chunk_I66GZJ75();
152412
152451
  init_chunk_X3CZISLH();
152413
152452
  init_chunk_Y2CYZVJY();
152414
152453
  diagram13 = {
@@ -152428,29 +152467,29 @@ var init_classDiagram_OUVF2IWQ = __esm({
152428
152467
  }
152429
152468
  });
152430
152469
 
152431
- // node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-v2-EOCWNBFH.mjs
152432
- var classDiagram_v2_EOCWNBFH_exports = {};
152433
- __export(classDiagram_v2_EOCWNBFH_exports, {
152470
+ // node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-v2-OCEON4UE.mjs
152471
+ var classDiagram_v2_OCEON4UE_exports = {};
152472
+ __export(classDiagram_v2_OCEON4UE_exports, {
152434
152473
  diagram: () => diagram14
152435
152474
  });
152436
152475
  var diagram14;
152437
- var init_classDiagram_v2_EOCWNBFH = __esm({
152438
- "node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-v2-EOCWNBFH.mjs"() {
152439
- init_chunk_V7JOEXUC();
152476
+ var init_classDiagram_v2_OCEON4UE = __esm({
152477
+ "node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-v2-OCEON4UE.mjs"() {
152478
+ init_chunk_GF5L2VYU();
152440
152479
  init_chunk_5VM5RSS4();
152441
152480
  init_chunk_XXDRQBXY();
152442
- init_chunk_VR4S4FIN();
152443
- init_chunk_FWX5IMBZ();
152444
- init_chunk_32BRIVSS();
152445
- init_chunk_52WLFC77();
152446
- init_chunk_ZGVPDNZ5();
152447
- init_chunk_C7G6YPKG();
152481
+ init_chunk_KBJHAD2P();
152482
+ init_chunk_J7OUQ5F2();
152483
+ init_chunk_2GRJ4B5K();
152484
+ init_chunk_7Z6QIM7H();
152485
+ init_chunk_QR6OTTB3();
152486
+ init_chunk_W5SLKNZC();
152448
152487
  init_chunk_7BUUIJ7U();
152449
- init_chunk_OGEWGWER();
152450
- init_chunk_Q4XR5HBZ();
152451
- init_chunk_HOUHSVGY();
152452
- init_chunk_ICXQ74PX();
152453
- init_chunk_WYO6CB5R();
152488
+ init_chunk_UBXNYLIW();
152489
+ init_chunk_WRU74C26();
152490
+ init_chunk_4I5QYGJK();
152491
+ init_chunk_NSK5VX7P();
152492
+ init_chunk_I66GZJ75();
152454
152493
  init_chunk_X3CZISLH();
152455
152494
  init_chunk_Y2CYZVJY();
152456
152495
  diagram14 = {
@@ -152470,7 +152509,7 @@ var init_classDiagram_v2_EOCWNBFH = __esm({
152470
152509
  }
152471
152510
  });
152472
152511
 
152473
- // node_modules/mermaid/dist/chunks/mermaid.core/chunk-EX3LRPZG.mjs
152512
+ // node_modules/mermaid/dist/chunks/mermaid.core/chunk-5RXB4S5H.mjs
152474
152513
  function stateDomId(itemId = "", counter = 0, type3 = "", typeSpacer = DOMID_TYPE_SPACER) {
152475
152514
  const typeStr = type3 !== null && type3.length > 0 ? `${typeSpacer}${type3}` : "";
152476
152515
  return `${DOMID_STATE}-${itemId}${typeStr}-${counter}`;
@@ -152504,14 +152543,14 @@ function getStylesFromDbInfo(dbInfoItem) {
152504
152543
  return dbInfoItem?.styles ?? [];
152505
152544
  }
152506
152545
  var parser13, stateDiagram_default, DEFAULT_DIAGRAM_DIRECTION, DEFAULT_NESTED_DOC_DIR, STMT_DIRECTION, STMT_STATE, STMT_ROOT, STMT_RELATION, STMT_CLASSDEF, STMT_STYLEDEF, STMT_APPLYCLASS, DEFAULT_STATE_TYPE, DIVIDER_TYPE, G_EDGE_STYLE, G_EDGE_ARROWHEADSTYLE, G_EDGE_LABELPOS, G_EDGE_LABELTYPE, G_EDGE_THICKNESS, SHAPE_STATE, SHAPE_STATE_WITH_DESC, SHAPE_START, SHAPE_END, SHAPE_DIVIDER, SHAPE_GROUP, SHAPE_NOTE, SHAPE_NOTEGROUP, CSS_DIAGRAM, CSS_STATE, CSS_DIAGRAM_STATE, CSS_EDGE, CSS_NOTE, CSS_NOTE_EDGE, CSS_EDGE_NOTE_EDGE, CSS_DIAGRAM_NOTE, CSS_CLUSTER, CSS_DIAGRAM_CLUSTER, CSS_CLUSTER_ALT, CSS_DIAGRAM_CLUSTER_ALT, PARENT2, NOTE, DOMID_STATE, DOMID_TYPE_SPACER, NOTE_ID, PARENT_ID, getDir2, getClasses3, draw13, stateRenderer_v3_unified_default, nodeDb, graphItemCount, setupDoc, getDir22, dataFetcher, reset3, CONSTANTS, newClassesList, newDoc, clone8, StateDB, getStyles12, styles_default10;
152507
- var init_chunk_EX3LRPZG = __esm({
152508
- "node_modules/mermaid/dist/chunks/mermaid.core/chunk-EX3LRPZG.mjs"() {
152546
+ var init_chunk_5RXB4S5H = __esm({
152547
+ "node_modules/mermaid/dist/chunks/mermaid.core/chunk-5RXB4S5H.mjs"() {
152509
152548
  init_chunk_XXDRQBXY();
152510
- init_chunk_VR4S4FIN();
152511
- init_chunk_FWX5IMBZ();
152512
- init_chunk_32BRIVSS();
152513
- init_chunk_ICXQ74PX();
152514
- init_chunk_WYO6CB5R();
152549
+ init_chunk_KBJHAD2P();
152550
+ init_chunk_J7OUQ5F2();
152551
+ init_chunk_2GRJ4B5K();
152552
+ init_chunk_NSK5VX7P();
152553
+ init_chunk_I66GZJ75();
152515
152554
  init_chunk_X3CZISLH();
152516
152555
  init_chunk_Y2CYZVJY();
152517
152556
  init_src32();
@@ -154538,28 +154577,28 @@ g.stateGroup line {
154538
154577
  }
154539
154578
  });
154540
154579
 
154541
- // node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-2N3HPSRC.mjs
154542
- var stateDiagram_2N3HPSRC_exports = {};
154543
- __export(stateDiagram_2N3HPSRC_exports, {
154580
+ // node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-OKZ733FA.mjs
154581
+ var stateDiagram_OKZ733FA_exports = {};
154582
+ __export(stateDiagram_OKZ733FA_exports, {
154544
154583
  diagram: () => diagram15
154545
154584
  });
154546
154585
  var drawStartState, drawDivider, drawSimpleState, drawDescrState, addTitleAndBox, drawEndState, drawForkJoinState, _drawLongText, drawNote2, drawState, edgeCount, drawEdge, conf3, transformationLog, setConf4, insertMarkers2, draw14, getLabelWidth, renderDoc, stateRenderer_default, diagram15;
154547
- var init_stateDiagram_2N3HPSRC = __esm({
154548
- "node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-2N3HPSRC.mjs"() {
154549
- init_chunk_EX3LRPZG();
154586
+ var init_stateDiagram_OKZ733FA = __esm({
154587
+ "node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-OKZ733FA.mjs"() {
154588
+ init_chunk_5RXB4S5H();
154550
154589
  init_chunk_XXDRQBXY();
154551
- init_chunk_VR4S4FIN();
154552
- init_chunk_FWX5IMBZ();
154553
- init_chunk_32BRIVSS();
154554
- init_chunk_52WLFC77();
154555
- init_chunk_ZGVPDNZ5();
154556
- init_chunk_C7G6YPKG();
154590
+ init_chunk_KBJHAD2P();
154591
+ init_chunk_J7OUQ5F2();
154592
+ init_chunk_2GRJ4B5K();
154593
+ init_chunk_7Z6QIM7H();
154594
+ init_chunk_QR6OTTB3();
154595
+ init_chunk_W5SLKNZC();
154557
154596
  init_chunk_7BUUIJ7U();
154558
- init_chunk_OGEWGWER();
154559
- init_chunk_Q4XR5HBZ();
154560
- init_chunk_HOUHSVGY();
154561
- init_chunk_ICXQ74PX();
154562
- init_chunk_WYO6CB5R();
154597
+ init_chunk_UBXNYLIW();
154598
+ init_chunk_WRU74C26();
154599
+ init_chunk_4I5QYGJK();
154600
+ init_chunk_NSK5VX7P();
154601
+ init_chunk_I66GZJ75();
154563
154602
  init_chunk_X3CZISLH();
154564
154603
  init_chunk_Y2CYZVJY();
154565
154604
  init_src32();
@@ -155015,28 +155054,28 @@ var init_stateDiagram_2N3HPSRC = __esm({
155015
155054
  }
155016
155055
  });
155017
155056
 
155018
- // node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-v2-6OUMAXLB.mjs
155019
- var stateDiagram_v2_6OUMAXLB_exports = {};
155020
- __export(stateDiagram_v2_6OUMAXLB_exports, {
155057
+ // node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-v2-UEYNNEHI.mjs
155058
+ var stateDiagram_v2_UEYNNEHI_exports = {};
155059
+ __export(stateDiagram_v2_UEYNNEHI_exports, {
155021
155060
  diagram: () => diagram16
155022
155061
  });
155023
155062
  var diagram16;
155024
- var init_stateDiagram_v2_6OUMAXLB = __esm({
155025
- "node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-v2-6OUMAXLB.mjs"() {
155026
- init_chunk_EX3LRPZG();
155063
+ var init_stateDiagram_v2_UEYNNEHI = __esm({
155064
+ "node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-v2-UEYNNEHI.mjs"() {
155065
+ init_chunk_5RXB4S5H();
155027
155066
  init_chunk_XXDRQBXY();
155028
- init_chunk_VR4S4FIN();
155029
- init_chunk_FWX5IMBZ();
155030
- init_chunk_32BRIVSS();
155031
- init_chunk_52WLFC77();
155032
- init_chunk_ZGVPDNZ5();
155033
- init_chunk_C7G6YPKG();
155067
+ init_chunk_KBJHAD2P();
155068
+ init_chunk_J7OUQ5F2();
155069
+ init_chunk_2GRJ4B5K();
155070
+ init_chunk_7Z6QIM7H();
155071
+ init_chunk_QR6OTTB3();
155072
+ init_chunk_W5SLKNZC();
155034
155073
  init_chunk_7BUUIJ7U();
155035
- init_chunk_OGEWGWER();
155036
- init_chunk_Q4XR5HBZ();
155037
- init_chunk_HOUHSVGY();
155038
- init_chunk_ICXQ74PX();
155039
- init_chunk_WYO6CB5R();
155074
+ init_chunk_UBXNYLIW();
155075
+ init_chunk_WRU74C26();
155076
+ init_chunk_4I5QYGJK();
155077
+ init_chunk_NSK5VX7P();
155078
+ init_chunk_I66GZJ75();
155040
155079
  init_chunk_X3CZISLH();
155041
155080
  init_chunk_Y2CYZVJY();
155042
155081
  diagram16 = {
@@ -155056,9 +155095,9 @@ var init_stateDiagram_v2_6OUMAXLB = __esm({
155056
155095
  }
155057
155096
  });
155058
155097
 
155059
- // node_modules/mermaid/dist/chunks/mermaid.core/journeyDiagram-5HDEW3XC.mjs
155060
- var journeyDiagram_5HDEW3XC_exports = {};
155061
- __export(journeyDiagram_5HDEW3XC_exports, {
155098
+ // node_modules/mermaid/dist/chunks/mermaid.core/journeyDiagram-NVQOT4AX.mjs
155099
+ var journeyDiagram_NVQOT4AX_exports = {};
155100
+ __export(journeyDiagram_NVQOT4AX_exports, {
155062
155101
  diagram: () => diagram17
155063
155102
  });
155064
155103
  function drawActorLegend(diagram210) {
@@ -155136,11 +155175,11 @@ function drawActorLegend(diagram210) {
155136
155175
  });
155137
155176
  }
155138
155177
  var parser14, journey_default, currentSection2, sections3, tasks2, rawTasks2, clear28, addSection3, getSections3, getTasks2, updateActors, addTask2, addTaskOrg2, compileTasks2, getActors, journeyDb_default, getStyles13, styles_default11, drawRect24, drawFace, drawCircle, drawText22, drawLabel2, drawSection, taskCount, drawTask, drawBackgroundRect22, _drawTextCandidateFunc3, initGraphics, svgDraw_default3, setConf5, actors, maxWidth, conf4, leftMargin, draw15, bounds3, fills, textColours, drawTasks, journeyRenderer_default, diagram17;
155139
- var init_journeyDiagram_5HDEW3XC = __esm({
155140
- "node_modules/mermaid/dist/chunks/mermaid.core/journeyDiagram-5HDEW3XC.mjs"() {
155178
+ var init_journeyDiagram_NVQOT4AX = __esm({
155179
+ "node_modules/mermaid/dist/chunks/mermaid.core/journeyDiagram-NVQOT4AX.mjs"() {
155141
155180
  init_chunk_5VM5RSS4();
155142
- init_chunk_32BRIVSS();
155143
- init_chunk_WYO6CB5R();
155181
+ init_chunk_2GRJ4B5K();
155182
+ init_chunk_I66GZJ75();
155144
155183
  init_chunk_X3CZISLH();
155145
155184
  init_chunk_Y2CYZVJY();
155146
155185
  init_src32();
@@ -156344,9 +156383,9 @@ var init_journeyDiagram_5HDEW3XC = __esm({
156344
156383
  }
156345
156384
  });
156346
156385
 
156347
- // node_modules/mermaid/dist/chunks/mermaid.core/timeline-definition-FHXFAJF6.mjs
156348
- var timeline_definition_FHXFAJF6_exports = {};
156349
- __export(timeline_definition_FHXFAJF6_exports, {
156386
+ // node_modules/mermaid/dist/chunks/mermaid.core/timeline-definition-Z64GVDOM.mjs
156387
+ var timeline_definition_Z64GVDOM_exports = {};
156388
+ __export(timeline_definition_Z64GVDOM_exports, {
156350
156389
  diagram: () => diagram18
156351
156390
  });
156352
156391
  function wrap2(text4, width3) {
@@ -156370,11 +156409,11 @@ function wrap2(text4, width3) {
156370
156409
  });
156371
156410
  }
156372
156411
  var parser15, timeline_default, timelineDb_exports, currentSection3, currentTaskId, direction, sections4, tasks3, rawTasks3, getCommonDb2, clear29, setDirection2, getDirection2, addSection4, getSections4, getTasks3, addTask3, addEvent, addTaskOrg3, compileTasks3, timelineDb_default, nodeCount, drawRect3, drawFace2, drawCircle2, drawText4, drawLabel3, drawSection2, taskCount2, drawTask2, drawBackgroundRect3, getTextObj3, getNoteRect3, _drawTextCandidateFunc4, initGraphics2, drawNode, getVirtualNodeHeight, defaultBkg, svgDraw_default4, draw16, drawTasks2, drawEvents, timelineRenderer_default, NODE_WIDTH, NODE_PADDING2, NODE_TOTAL_WIDTH, EVENT_WIDTH, EVENT_TOTAL_WIDTH, EVENT_SPACING, EVENT_VERTICAL_GAP, SECTION_TASK_GAP, TASK_AXIS_GAP, TASK_VERTICAL_GAP, EVENT_AXIS_GAP, draw22, drawTasks22, drawEvents2, timelineRendererVertical_default, genReduxSections, genSections, getStyles14, styles_default12, rendererSelector, diagram18;
156373
- var init_timeline_definition_FHXFAJF6 = __esm({
156374
- "node_modules/mermaid/dist/chunks/mermaid.core/timeline-definition-FHXFAJF6.mjs"() {
156375
- init_chunk_VAUOI2AC();
156376
- init_chunk_ICXQ74PX();
156377
- init_chunk_WYO6CB5R();
156412
+ var init_timeline_definition_Z64GVDOM = __esm({
156413
+ "node_modules/mermaid/dist/chunks/mermaid.core/timeline-definition-Z64GVDOM.mjs"() {
156414
+ init_chunk_3NCLNEKW();
156415
+ init_chunk_NSK5VX7P();
156416
+ init_chunk_I66GZJ75();
156378
156417
  init_chunk_X3CZISLH();
156379
156418
  init_chunk_Y2CYZVJY();
156380
156419
  init_src32();
@@ -158045,26 +158084,26 @@ var init_dist2 = __esm({
158045
158084
  }
158046
158085
  });
158047
158086
 
158048
- // node_modules/mermaid/dist/chunks/mermaid.core/mindmap-definition-LN4V7U3C.mjs
158049
- var mindmap_definition_LN4V7U3C_exports = {};
158050
- __export(mindmap_definition_LN4V7U3C_exports, {
158087
+ // node_modules/mermaid/dist/chunks/mermaid.core/mindmap-definition-FAOFIHXS.mjs
158088
+ var mindmap_definition_FAOFIHXS_exports = {};
158089
+ __export(mindmap_definition_FAOFIHXS_exports, {
158051
158090
  diagram: () => diagram19
158052
158091
  });
158053
158092
  var parser16, mindmap_default, MAX_SECTIONS, nodeType, MindmapDB, draw17, mindmapRenderer_default, genSections2, genGradient, getStyles15, styles_default13, diagram19;
158054
- var init_mindmap_definition_LN4V7U3C = __esm({
158055
- "node_modules/mermaid/dist/chunks/mermaid.core/mindmap-definition-LN4V7U3C.mjs"() {
158093
+ var init_mindmap_definition_FAOFIHXS = __esm({
158094
+ "node_modules/mermaid/dist/chunks/mermaid.core/mindmap-definition-FAOFIHXS.mjs"() {
158056
158095
  init_chunk_XXDRQBXY();
158057
- init_chunk_VR4S4FIN();
158058
- init_chunk_FWX5IMBZ();
158059
- init_chunk_52WLFC77();
158060
- init_chunk_ZGVPDNZ5();
158061
- init_chunk_C7G6YPKG();
158096
+ init_chunk_KBJHAD2P();
158097
+ init_chunk_J7OUQ5F2();
158098
+ init_chunk_7Z6QIM7H();
158099
+ init_chunk_QR6OTTB3();
158100
+ init_chunk_W5SLKNZC();
158062
158101
  init_chunk_7BUUIJ7U();
158063
- init_chunk_OGEWGWER();
158064
- init_chunk_Q4XR5HBZ();
158065
- init_chunk_HOUHSVGY();
158066
- init_chunk_ICXQ74PX();
158067
- init_chunk_WYO6CB5R();
158102
+ init_chunk_UBXNYLIW();
158103
+ init_chunk_WRU74C26();
158104
+ init_chunk_4I5QYGJK();
158105
+ init_chunk_NSK5VX7P();
158106
+ init_chunk_I66GZJ75();
158068
158107
  init_chunk_X3CZISLH();
158069
158108
  init_chunk_Y2CYZVJY();
158070
158109
  init_dist2();
@@ -159256,24 +159295,24 @@ var init_mindmap_definition_LN4V7U3C = __esm({
159256
159295
  }
159257
159296
  });
159258
159297
 
159259
- // node_modules/mermaid/dist/chunks/mermaid.core/kanban-definition-HUTT4EX6.mjs
159260
- var kanban_definition_HUTT4EX6_exports = {};
159261
- __export(kanban_definition_HUTT4EX6_exports, {
159298
+ // node_modules/mermaid/dist/chunks/mermaid.core/kanban-definition-27J2QSJJ.mjs
159299
+ var kanban_definition_27J2QSJJ_exports = {};
159300
+ __export(kanban_definition_27J2QSJJ_exports, {
159262
159301
  diagram: () => diagram20
159263
159302
  });
159264
159303
  var parser17, kanban_default, nodes3, sections5, cnt2, elements, clear6, getSection, getSections5, getData, addNode, nodeType2, getType, setElementForId, decorateNode, type2Str, getLogger, getElementById2, db4, kanbanDb_default, draw18, kanbanRenderer_default, genSections3, getStyles16, styles_default14, diagram20;
159265
- var init_kanban_definition_HUTT4EX6 = __esm({
159266
- "node_modules/mermaid/dist/chunks/mermaid.core/kanban-definition-HUTT4EX6.mjs"() {
159267
- init_chunk_VAUOI2AC();
159304
+ var init_kanban_definition_27J2QSJJ = __esm({
159305
+ "node_modules/mermaid/dist/chunks/mermaid.core/kanban-definition-27J2QSJJ.mjs"() {
159306
+ init_chunk_3NCLNEKW();
159268
159307
  init_chunk_5VM5RSS4();
159269
159308
  init_chunk_ZIRB5QZD();
159270
- init_chunk_ZGVPDNZ5();
159271
- init_chunk_C7G6YPKG();
159272
- init_chunk_OGEWGWER();
159273
- init_chunk_Q4XR5HBZ();
159274
- init_chunk_HOUHSVGY();
159275
- init_chunk_ICXQ74PX();
159276
- init_chunk_WYO6CB5R();
159309
+ init_chunk_QR6OTTB3();
159310
+ init_chunk_W5SLKNZC();
159311
+ init_chunk_UBXNYLIW();
159312
+ init_chunk_WRU74C26();
159313
+ init_chunk_4I5QYGJK();
159314
+ init_chunk_NSK5VX7P();
159315
+ init_chunk_I66GZJ75();
159277
159316
  init_chunk_X3CZISLH();
159278
159317
  init_chunk_Y2CYZVJY();
159279
159318
  init_dist();
@@ -161009,15 +161048,15 @@ var init_src36 = __esm({
161009
161048
  }
161010
161049
  });
161011
161050
 
161012
- // node_modules/mermaid/dist/chunks/mermaid.core/sankeyDiagram-HTMAVEWB.mjs
161013
- var sankeyDiagram_HTMAVEWB_exports = {};
161014
- __export(sankeyDiagram_HTMAVEWB_exports, {
161051
+ // node_modules/mermaid/dist/chunks/mermaid.core/sankeyDiagram-W5VNT64P.mjs
161052
+ var sankeyDiagram_W5VNT64P_exports = {};
161053
+ __export(sankeyDiagram_W5VNT64P_exports, {
161015
161054
  diagram: () => diagram21
161016
161055
  });
161017
161056
  var parser18, sankey_default, links2, nodes4, nodesMap, clear210, SankeyLink, addLink, SankeyNode, findOrCreateNode, getNodes, getLinks2, getGraph, sankeyDB_default, Uid, alignmentsMap, findCentralNodeLayer, draw19, sankeyRenderer_default, prepareTextForParsing, getStyles17, styles_default15, originalParse, diagram21;
161018
- var init_sankeyDiagram_HTMAVEWB = __esm({
161019
- "node_modules/mermaid/dist/chunks/mermaid.core/sankeyDiagram-HTMAVEWB.mjs"() {
161020
- init_chunk_WYO6CB5R();
161057
+ var init_sankeyDiagram_W5VNT64P = __esm({
161058
+ "node_modules/mermaid/dist/chunks/mermaid.core/sankeyDiagram-W5VNT64P.mjs"() {
161059
+ init_chunk_I66GZJ75();
161021
161060
  init_chunk_X3CZISLH();
161022
161061
  init_chunk_Y2CYZVJY();
161023
161062
  init_src32();
@@ -161782,18 +161821,18 @@ ${prefix}${Math.round(value2 * 100) / 100}${suffix}`;
161782
161821
  }
161783
161822
  });
161784
161823
 
161785
- // node_modules/mermaid/dist/chunks/mermaid.core/diagram-NH7WQ7WH.mjs
161786
- var diagram_NH7WQ7WH_exports = {};
161787
- __export(diagram_NH7WQ7WH_exports, {
161824
+ // node_modules/mermaid/dist/chunks/mermaid.core/diagram-LBJQPF4R.mjs
161825
+ var diagram_LBJQPF4R_exports = {};
161826
+ __export(diagram_LBJQPF4R_exports, {
161788
161827
  diagram: () => diagram22
161789
161828
  });
161790
161829
  var DEFAULT_PACKET_CONFIG, PacketDB, maxPacketSize, populate16, getNextFittingBlock, parser19, draw20, drawWord, renderer5, defaultPacketStyleOptions, styles2, diagram22;
161791
- var init_diagram_NH7WQ7WH = __esm({
161792
- "node_modules/mermaid/dist/chunks/mermaid.core/diagram-NH7WQ7WH.mjs"() {
161830
+ var init_diagram_LBJQPF4R = __esm({
161831
+ "node_modules/mermaid/dist/chunks/mermaid.core/diagram-LBJQPF4R.mjs"() {
161793
161832
  init_chunk_JWPE2WC7();
161794
- init_chunk_VAUOI2AC();
161795
- init_chunk_ICXQ74PX();
161796
- init_chunk_WYO6CB5R();
161833
+ init_chunk_3NCLNEKW();
161834
+ init_chunk_NSK5VX7P();
161835
+ init_chunk_I66GZJ75();
161797
161836
  init_chunk_X3CZISLH();
161798
161837
  init_chunk_Y2CYZVJY();
161799
161838
  init_mermaid_parser_core();
@@ -162006,9 +162045,9 @@ var init_diagram_NH7WQ7WH = __esm({
162006
162045
  }
162007
162046
  });
162008
162047
 
162009
- // node_modules/mermaid/dist/chunks/mermaid.core/diagram-WEI45ONY.mjs
162010
- var diagram_WEI45ONY_exports = {};
162011
- __export(diagram_WEI45ONY_exports, {
162048
+ // node_modules/mermaid/dist/chunks/mermaid.core/diagram-UB23O5K3.mjs
162049
+ var diagram_UB23O5K3_exports = {};
162050
+ __export(diagram_UB23O5K3_exports, {
162012
162051
  diagram: () => diagram23
162013
162052
  });
162014
162053
  function drawCurves(g2, axes, curves, minValue, maxValue, graticule, config3) {
@@ -162069,13 +162108,13 @@ function drawLegend(g2, curves, showLegend, config3) {
162069
162108
  itemGroup.append("text").attr("x", 16).attr("y", 0).attr("class", "radarLegendText").text(curve.label);
162070
162109
  });
162071
162110
  }
162072
- var defaultOptions, defaultRadarData, data4, DEFAULT_RADAR_CONFIG, getConfig23, getAxes, getCurves, getOptions2, setAxes, setCurves, computeCurveEntries, setOptions7, clear211, db5, populate17, parser20, draw21, drawFrame, drawGraticule, drawAxes2, renderer6, genIndexStyles, buildRadarStyleOptions, styles3, diagram23;
162073
- var init_diagram_WEI45ONY = __esm({
162074
- "node_modules/mermaid/dist/chunks/mermaid.core/diagram-WEI45ONY.mjs"() {
162111
+ var defaultOptions, MAX_TICKS, defaultRadarData, data4, DEFAULT_RADAR_CONFIG, getConfig23, getAxes, getCurves, getOptions2, setAxes, setCurves, computeCurveEntries, setOptions7, clear211, db5, populate17, parser20, draw21, drawFrame, drawGraticule, drawAxes2, renderer6, genIndexStyles, buildRadarStyleOptions, styles3, diagram23;
162112
+ var init_diagram_UB23O5K3 = __esm({
162113
+ "node_modules/mermaid/dist/chunks/mermaid.core/diagram-UB23O5K3.mjs"() {
162075
162114
  init_chunk_JWPE2WC7();
162076
- init_chunk_VAUOI2AC();
162077
- init_chunk_ICXQ74PX();
162078
- init_chunk_WYO6CB5R();
162115
+ init_chunk_3NCLNEKW();
162116
+ init_chunk_NSK5VX7P();
162117
+ init_chunk_I66GZJ75();
162079
162118
  init_chunk_X3CZISLH();
162080
162119
  init_chunk_Y2CYZVJY();
162081
162120
  init_mermaid_parser_core();
@@ -162086,6 +162125,7 @@ var init_diagram_WEI45ONY = __esm({
162086
162125
  min: 0,
162087
162126
  graticule: "circle"
162088
162127
  };
162128
+ MAX_TICKS = 32;
162089
162129
  defaultRadarData = {
162090
162130
  axes: [],
162091
162131
  curves: [],
@@ -162151,6 +162191,12 @@ var init_diagram_WEI45ONY = __esm({
162151
162191
  min: optionMap.min?.value ?? defaultOptions.min,
162152
162192
  graticule: optionMap.graticule?.value ?? defaultOptions.graticule
162153
162193
  };
162194
+ if (data4.options.ticks > MAX_TICKS) {
162195
+ log.warn(
162196
+ `Radar diagram ticks (${data4.options.ticks}) exceeds maximum allowed (${MAX_TICKS}). Using ${MAX_TICKS} instead.`
162197
+ );
162198
+ data4.options.ticks = MAX_TICKS;
162199
+ }
162154
162200
  }, "setOptions");
162155
162201
  clear211 = /* @__PURE__ */ __name(() => {
162156
162202
  clear();
@@ -162322,9 +162368,9 @@ var init_diagram_WEI45ONY = __esm({
162322
162368
  }
162323
162369
  });
162324
162370
 
162325
- // node_modules/mermaid/dist/chunks/mermaid.core/blockDiagram-677ZJIJ3.mjs
162326
- var blockDiagram_677ZJIJ3_exports = {};
162327
- __export(blockDiagram_677ZJIJ3_exports, {
162371
+ // node_modules/mermaid/dist/chunks/mermaid.core/blockDiagram-VBNYF7ZC.mjs
162372
+ var blockDiagram_VBNYF7ZC_exports = {};
162373
+ __export(blockDiagram_VBNYF7ZC_exports, {
162328
162374
  diagram: () => diagram24
162329
162375
  });
162330
162376
  function typeStr2Type(typeStr) {
@@ -163023,15 +163069,15 @@ async function insertEdges(elem, edges3, blocks2, db22, id39) {
163023
163069
  }
163024
163070
  }
163025
163071
  var parser21, block_default, blockDatabase, edgeList, edgeCount2, COLOR_KEYWORD, FILL_KEYWORD, BG_FILL, STYLECLASS_SEP, classes2, diagramId2, sanitizeText23, addStyleClass, addStyle2Node, setCssClass, populateBlockDatabase, blocks, rootBlock, clear212, cnt3, generateId2, setHierarchy, getColumns, getBlocksFlat, getBlocks, getEdges, getBlock, setBlock, setDiagramId2, getDiagramId, getLogger2, getClasses4, db6, blockDB_default, fade3, getStyles18, styles_default16, insertMarkers3, extension4, composition2, aggregation2, dependency2, lollipop2, point7, circle4, cross2, barb2, markers2, markers_default2, getMaxChildSize, createLabel2, createLabel_default2, addEdgeMarkers2, arrowTypesMap2, addEdgeMarker2, edgeLabels2, terminalLabels2, insertEdgeLabel2, positionEdgeLabel3, outsideNode2, intersection3, cutPathAtIntersect2, insertEdge2, expandAndDeduplicateDirections, getArrowPoints, intersect_node_default2, intersect_ellipse_default2, intersect_circle_default2, intersect_line_default2, intersect_polygon_default2, intersectRect3, intersect_rect_default2, intersect_default2, labelHelper2, updateNodeBounds2, note2, note_default, formatClass, getClassesFromNode, question2, choice2, hexagon2, block_arrow, rect_left_inv_arrow2, lean_right2, lean_left2, trapezoid2, inv_trapezoid2, rect_right_inv_arrow, cylinder2, rect2, composite, labelRect2, rectWithTitle2, stadium2, circle22, doublecircle2, subroutine2, start2, forkJoin2, end, class_box, shapes3, nodeElems2, insertNode2, positionNode2, getClasses22, draw23, blockRenderer_default, diagram24;
163026
- var init_blockDiagram_677ZJIJ3 = __esm({
163027
- "node_modules/mermaid/dist/chunks/mermaid.core/blockDiagram-677ZJIJ3.mjs"() {
163072
+ var init_blockDiagram_VBNYF7ZC = __esm({
163073
+ "node_modules/mermaid/dist/chunks/mermaid.core/blockDiagram-VBNYF7ZC.mjs"() {
163028
163074
  init_chunk_5VM5RSS4();
163029
163075
  init_chunk_7BUUIJ7U();
163030
- init_chunk_OGEWGWER();
163031
- init_chunk_Q4XR5HBZ();
163032
- init_chunk_HOUHSVGY();
163033
- init_chunk_ICXQ74PX();
163034
- init_chunk_WYO6CB5R();
163076
+ init_chunk_UBXNYLIW();
163077
+ init_chunk_WRU74C26();
163078
+ init_chunk_4I5QYGJK();
163079
+ init_chunk_NSK5VX7P();
163080
+ init_chunk_I66GZJ75();
163035
163081
  init_chunk_X3CZISLH();
163036
163082
  init_chunk_Y2CYZVJY();
163037
163083
  init_compat();
@@ -166108,9 +166154,9 @@ var init_blockDiagram_677ZJIJ3 = __esm({
166108
166154
  }
166109
166155
  });
166110
166156
 
166111
- // node_modules/mermaid/dist/chunks/mermaid.core/diagram-OA4YK3LP.mjs
166112
- var diagram_OA4YK3LP_exports = {};
166113
- __export(diagram_OA4YK3LP_exports, {
166157
+ // node_modules/mermaid/dist/chunks/mermaid.core/diagram-7IWD3JNH.mjs
166158
+ var diagram_7IWD3JNH_exports = {};
166159
+ __export(diagram_7IWD3JNH_exports, {
166114
166160
  diagram: () => diagram25
166115
166161
  });
166116
166162
  function isBoxDrawingFormat(lines) {
@@ -166277,14 +166323,14 @@ function getNodeIcon(node2, config3) {
166277
166323
  return `${treeViewIcons.prefix}:${node2.nodeType === "directory" ? "folder" : "file"}`;
166278
166324
  }
166279
166325
  var ALL_BOX_CHARS, BRANCH_CHAR, DASH_CHAR, DECORATION_ONLY, METADATA_LINE, COMMENT_LINE, INDENT_UNIT, state3, clear213, getRoot, getCount, defaultConfig4, getConfig24, addNode2, db7, db_default, populate18, parser22, treeViewIcons, ICON_SIZE, ICON_GAP, DESC_GAP, iconSymbolId, injectIconDefs, positionLabel, positionLine, drawTree, draw24, renderer7, renderer_default, defaultTreeViewDiagramStyles, styles4, styles_default17, diagram25;
166280
- var init_diagram_OA4YK3LP = __esm({
166281
- "node_modules/mermaid/dist/chunks/mermaid.core/diagram-OA4YK3LP.mjs"() {
166326
+ var init_diagram_7IWD3JNH = __esm({
166327
+ "node_modules/mermaid/dist/chunks/mermaid.core/diagram-7IWD3JNH.mjs"() {
166282
166328
  init_chunk_2Q5K7J3B();
166283
166329
  init_chunk_JWPE2WC7();
166284
- init_chunk_VAUOI2AC();
166285
- init_chunk_HOUHSVGY();
166286
- init_chunk_ICXQ74PX();
166287
- init_chunk_WYO6CB5R();
166330
+ init_chunk_3NCLNEKW();
166331
+ init_chunk_4I5QYGJK();
166332
+ init_chunk_NSK5VX7P();
166333
+ init_chunk_I66GZJ75();
166288
166334
  init_chunk_X3CZISLH();
166289
166335
  init_chunk_Y2CYZVJY();
166290
166336
  init_mermaid_parser_core();
@@ -174287,9 +174333,9 @@ var require_cytoscape_fcose = __commonJS({
174287
174333
  }
174288
174334
  });
174289
174335
 
174290
- // node_modules/mermaid/dist/chunks/mermaid.core/architectureDiagram-ZJ3FMSHR.mjs
174291
- var architectureDiagram_ZJ3FMSHR_exports = {};
174292
- __export(architectureDiagram_ZJ3FMSHR_exports, {
174336
+ // node_modules/mermaid/dist/chunks/mermaid.core/architectureDiagram-T3A2C74G.mjs
174337
+ var architectureDiagram_T3A2C74G_exports = {};
174338
+ __export(architectureDiagram_T3A2C74G_exports, {
174293
174339
  diagram: () => diagram26
174294
174340
  });
174295
174341
  function withSeededRandom(seed, fn3) {
@@ -174396,56 +174442,62 @@ function addEdges2(edges3, cy) {
174396
174442
  });
174397
174443
  }
174398
174444
  function getAlignments(db12, spatialMaps, groupAlignments, layoutHints = []) {
174399
- const flattenAlignments = /* @__PURE__ */ __name((alignmentObj, alignmentDir) => {
174400
- return Object.entries(alignmentObj).reduce(
174401
- (prev2, [dir2, alignments2]) => {
174402
- let cnt4 = 0;
174403
- const arr = Object.entries(alignments2);
174404
- if (arr.length === 1) {
174405
- prev2[dir2] = arr[0][1];
174406
- return prev2;
174407
- }
174408
- for (let i5 = 0; i5 < arr.length - 1; i5++) {
174409
- for (let j3 = i5 + 1; j3 < arr.length; j3++) {
174410
- const [aGroupId, aNodeIds] = arr[i5];
174411
- const [bGroupId, bNodeIds] = arr[j3];
174412
- const alignment = groupAlignments[aGroupId]?.[bGroupId];
174413
- if (alignment === alignmentDir) {
174414
- prev2[dir2] ??= [];
174415
- prev2[dir2] = [...prev2[dir2], ...aNodeIds, ...bNodeIds];
174416
- } else if (aGroupId === "default" || bGroupId === "default") {
174417
- prev2[dir2] ??= [];
174418
- prev2[dir2] = [...prev2[dir2], ...aNodeIds, ...bNodeIds];
174419
- } else {
174420
- const keyA = `${dir2}-${cnt4++}`;
174421
- prev2[keyA] = aNodeIds;
174422
- const keyB = `${dir2}-${cnt4++}`;
174423
- prev2[keyB] = bNodeIds;
174424
- }
174445
+ const flattenAlignments = /* @__PURE__ */ __name((alignmentMap, alignmentDir) => {
174446
+ const flattened = /* @__PURE__ */ new Map();
174447
+ for (const [numericDir, alignments2] of alignmentMap.entries()) {
174448
+ const dir2 = `${numericDir}`;
174449
+ let cnt4 = 0;
174450
+ const arr = [...alignments2.entries()];
174451
+ if (arr.length === 1) {
174452
+ flattened.set(dir2, arr[0][1]);
174453
+ continue;
174454
+ }
174455
+ for (let i5 = 0; i5 < arr.length - 1; i5++) {
174456
+ for (let j3 = i5 + 1; j3 < arr.length; j3++) {
174457
+ const [aGroupId, aNodeIds] = arr[i5];
174458
+ const [bGroupId, bNodeIds] = arr[j3];
174459
+ const alignment = groupAlignments.get(architectureGroupAlignmentKey(aGroupId, bGroupId));
174460
+ if (alignment === alignmentDir) {
174461
+ flattened.set(dir2, [...flattened.get(dir2) ?? [], ...aNodeIds, ...bNodeIds]);
174462
+ } else if (aGroupId === "default" || bGroupId === "default") {
174463
+ flattened.set(dir2, [...flattened.get(dir2) ?? [], ...aNodeIds, ...bNodeIds]);
174464
+ } else {
174465
+ const keyA = `${dir2}-${cnt4++}`;
174466
+ flattened.set(keyA, aNodeIds);
174467
+ const keyB = `${dir2}-${cnt4++}`;
174468
+ flattened.set(keyB, bNodeIds);
174425
174469
  }
174426
174470
  }
174427
- return prev2;
174428
- },
174429
- {}
174430
- );
174471
+ }
174472
+ }
174473
+ return flattened;
174431
174474
  }, "flattenAlignments");
174432
174475
  const alignments = spatialMaps.map((spatialMap) => {
174433
- const horizontalAlignments = {};
174434
- const verticalAlignments = {};
174435
- Object.entries(spatialMap).forEach(([id39, [x6, y6]]) => {
174476
+ const horizontalAlignments = /* @__PURE__ */ new Map();
174477
+ const verticalAlignments = /* @__PURE__ */ new Map();
174478
+ spatialMap.forEach(([x6, y6], id39) => {
174436
174479
  const nodeGroup = db12.getNode(id39)?.in ?? "default";
174437
- horizontalAlignments[y6] ??= {};
174438
- horizontalAlignments[y6][nodeGroup] ??= [];
174439
- horizontalAlignments[y6][nodeGroup].push(id39);
174440
- verticalAlignments[x6] ??= {};
174441
- verticalAlignments[x6][nodeGroup] ??= [];
174442
- verticalAlignments[x6][nodeGroup].push(id39);
174480
+ const horizontalAlignment = horizontalAlignments.get(y6) ?? /* @__PURE__ */ new Map();
174481
+ if (!horizontalAlignments.has(y6)) {
174482
+ horizontalAlignments.set(y6, horizontalAlignment);
174483
+ }
174484
+ const verticalAlignment2 = verticalAlignments.get(x6) ?? /* @__PURE__ */ new Map();
174485
+ if (!verticalAlignments.has(x6)) {
174486
+ verticalAlignments.set(x6, verticalAlignment2);
174487
+ }
174488
+ for (const alignment of [horizontalAlignment, verticalAlignment2]) {
174489
+ const nodeList = alignment.get(nodeGroup) ?? [];
174490
+ if (!alignment.has(nodeGroup)) {
174491
+ alignment.set(nodeGroup, nodeList);
174492
+ }
174493
+ nodeList.push(id39);
174494
+ }
174443
174495
  });
174444
174496
  return {
174445
- horiz: Object.values(flattenAlignments(horizontalAlignments, "horizontal")).filter(
174497
+ horiz: [...flattenAlignments(horizontalAlignments, "horizontal").values()].filter(
174446
174498
  (arr) => arr.length > 1
174447
174499
  ),
174448
- vert: Object.values(flattenAlignments(verticalAlignments, "vertical")).filter(
174500
+ vert: [...flattenAlignments(verticalAlignments, "vertical").values()].filter(
174449
174501
  (arr) => arr.length > 1
174450
174502
  )
174451
174503
  };
@@ -174501,8 +174553,8 @@ function getRelativeConstraints(spatialMaps, db12, layoutHints = []) {
174501
174553
  const posToStr = /* @__PURE__ */ __name((pos) => `${pos[0]},${pos[1]}`, "posToStr");
174502
174554
  const strToPos = /* @__PURE__ */ __name((pos) => pos.split(",").map((p3) => parseInt(p3)), "strToPos");
174503
174555
  spatialMaps.forEach((spatialMap) => {
174504
- const invSpatialMap = Object.fromEntries(
174505
- Object.entries(spatialMap).map(([id39, pos]) => [posToStr(pos), id39])
174556
+ const invSpatialMap = new Map(
174557
+ [...spatialMap.entries()].map(([key, value2]) => [posToStr(value2), key])
174506
174558
  );
174507
174559
  const queue = [posToStr([0, 0])];
174508
174560
  const visited = {};
@@ -174516,12 +174568,12 @@ function getRelativeConstraints(spatialMaps, db12, layoutHints = []) {
174516
174568
  const curr = queue.shift();
174517
174569
  if (curr) {
174518
174570
  visited[curr] = 1;
174519
- const currId = invSpatialMap[curr];
174571
+ const currId = invSpatialMap.get(curr);
174520
174572
  if (currId) {
174521
174573
  const currPos = strToPos(curr);
174522
174574
  Object.entries(directions).forEach(([dir2, shift2]) => {
174523
174575
  const newPos = posToStr([currPos[0] + shift2[0], currPos[1] + shift2[1]]);
174524
- const newId2 = invSpatialMap[newPos];
174576
+ const newId2 = invSpatialMap.get(newPos);
174525
174577
  if (newId2 && !visited[newPos]) {
174526
174578
  queue.push(newPos);
174527
174579
  if (declaredPairs.has(`${currId}|${newId2}`)) {
@@ -174729,15 +174781,15 @@ function layoutArchitecture(services, junctions, groups, edges3, db12, { spatial
174729
174781
  });
174730
174782
  });
174731
174783
  }
174732
- var import_cytoscape_fcose, ArchitectureDirectionName, ArchitectureDirectionArrow, ArchitectureDirectionArrowShift, getOppositeArchitectureDirection, isArchitectureDirection, isArchitectureDirectionX, isArchitectureDirectionY, isArchitectureDirectionXY, isArchitecturePairXY, isValidArchitectureDirectionPair, getArchitectureDirectionPair, shiftPositionByArchitectureDirectionPair, getArchitectureDirectionXYFactors, getArchitectureDirectionAlignment, isArchitectureService, isArchitectureJunction, edgeData, nodeData, DEFAULT_ARCHITECTURE_CONFIG, ArchitectureDB, populateDb2, parser23, getStyles19, architectureStyles_default, wrapIcon, architectureIcons, drawEdges, drawGroups, drawServices, drawJunctions, draw25, renderer8, diagram26;
174733
- var init_architectureDiagram_ZJ3FMSHR = __esm({
174734
- "node_modules/mermaid/dist/chunks/mermaid.core/architectureDiagram-ZJ3FMSHR.mjs"() {
174784
+ var import_cytoscape_fcose, ArchitectureDirectionName, ArchitectureDirectionArrow, ArchitectureDirectionArrowShift, getOppositeArchitectureDirection, isArchitectureDirection, isArchitectureDirectionX, isArchitectureDirectionY, isArchitectureDirectionXY, isArchitecturePairXY, isValidArchitectureDirectionPair, getArchitectureDirectionPair, shiftPositionByArchitectureDirectionPair, getArchitectureDirectionXYFactors, getArchitectureDirectionAlignment, isArchitectureService, isArchitectureJunction, architectureGroupAlignmentKey, edgeData, nodeData, DEFAULT_ARCHITECTURE_CONFIG, ArchitectureDB, populateDb2, parser23, getStyles19, architectureStyles_default, wrapIcon, architectureIcons, drawEdges, drawGroups, drawServices, drawJunctions, draw25, renderer8, diagram26;
174785
+ var init_architectureDiagram_T3A2C74G = __esm({
174786
+ "node_modules/mermaid/dist/chunks/mermaid.core/architectureDiagram-T3A2C74G.mjs"() {
174735
174787
  init_chunk_JWPE2WC7();
174736
- init_chunk_VAUOI2AC();
174737
- init_chunk_Q4XR5HBZ();
174738
- init_chunk_HOUHSVGY();
174739
- init_chunk_ICXQ74PX();
174740
- init_chunk_WYO6CB5R();
174788
+ init_chunk_3NCLNEKW();
174789
+ init_chunk_WRU74C26();
174790
+ init_chunk_4I5QYGJK();
174791
+ init_chunk_NSK5VX7P();
174792
+ init_chunk_I66GZJ75();
174741
174793
  init_chunk_X3CZISLH();
174742
174794
  init_chunk_Y2CYZVJY();
174743
174795
  init_mermaid_parser_core();
@@ -174844,6 +174896,10 @@ var init_architectureDiagram_ZJ3FMSHR = __esm({
174844
174896
  const temp = x6;
174845
174897
  return temp.type === "junction";
174846
174898
  }, "isArchitectureJunction");
174899
+ architectureGroupAlignmentKey = /* @__PURE__ */ __name((groupA, groupB) => {
174900
+ const [lowerGroupId, upperGroupId] = [groupA, groupB].sort();
174901
+ return `${JSON.stringify(lowerGroupId)}-${JSON.stringify(upperGroupId)}`;
174902
+ }, "architectureGroupAlignmentKey");
174847
174903
  edgeData = /* @__PURE__ */ __name((edge) => {
174848
174904
  return edge.data();
174849
174905
  }, "edgeData");
@@ -174853,12 +174909,12 @@ var init_architectureDiagram_ZJ3FMSHR = __esm({
174853
174909
  DEFAULT_ARCHITECTURE_CONFIG = defaultConfig_default.architecture;
174854
174910
  ArchitectureDB = class {
174855
174911
  constructor() {
174856
- this.nodes = {};
174857
- this.groups = {};
174912
+ this.nodes = /* @__PURE__ */ new Map();
174913
+ this.groups = /* @__PURE__ */ new Map();
174858
174914
  this.edges = [];
174859
174915
  this.layoutHints = [];
174860
- this.registeredIds = {};
174861
- this.elements = {};
174916
+ this.registeredIds = /* @__PURE__ */ new Map();
174917
+ this.elements = /* @__PURE__ */ new Map();
174862
174918
  this.diagramId = "";
174863
174919
  this.setAccTitle = setAccTitle;
174864
174920
  this.getAccTitle = getAccTitle;
@@ -174878,13 +174934,13 @@ var init_architectureDiagram_ZJ3FMSHR = __esm({
174878
174934
  return this.diagramId;
174879
174935
  }
174880
174936
  clear() {
174881
- this.nodes = {};
174882
- this.groups = {};
174937
+ this.nodes = /* @__PURE__ */ new Map();
174938
+ this.groups = /* @__PURE__ */ new Map();
174883
174939
  this.edges = [];
174884
174940
  this.layoutHints = [];
174885
- this.registeredIds = {};
174941
+ this.registeredIds = /* @__PURE__ */ new Map();
174886
174942
  this.dataStructures = void 0;
174887
- this.elements = {};
174943
+ this.elements = /* @__PURE__ */ new Map();
174888
174944
  this.diagramId = "";
174889
174945
  clear();
174890
174946
  }
@@ -174895,26 +174951,26 @@ var init_architectureDiagram_ZJ3FMSHR = __esm({
174895
174951
  title: title2,
174896
174952
  iconText
174897
174953
  }) {
174898
- if (this.registeredIds[id39] !== void 0) {
174954
+ if (this.registeredIds.has(id39)) {
174899
174955
  throw new Error(
174900
- `The service id [${id39}] is already in use by another ${this.registeredIds[id39]}`
174956
+ `The service id [${id39}] is already in use by another ${this.registeredIds.get(id39)}`
174901
174957
  );
174902
174958
  }
174903
174959
  if (parent4 !== void 0) {
174904
174960
  if (id39 === parent4) {
174905
174961
  throw new Error(`The service [${id39}] cannot be placed within itself`);
174906
174962
  }
174907
- if (this.registeredIds[parent4] === void 0) {
174963
+ if (!this.registeredIds.has(parent4)) {
174908
174964
  throw new Error(
174909
174965
  `The service [${id39}]'s parent does not exist. Please make sure the parent is created before this service`
174910
174966
  );
174911
174967
  }
174912
- if (this.registeredIds[parent4] === "node") {
174968
+ if (this.registeredIds.get(parent4) === "node") {
174913
174969
  throw new Error(`The service [${id39}]'s parent is not a group`);
174914
174970
  }
174915
174971
  }
174916
- this.registeredIds[id39] = "node";
174917
- this.nodes[id39] = {
174972
+ this.registeredIds.set(id39, "node");
174973
+ this.nodes.set(id39, {
174918
174974
  id: id39,
174919
174975
  type: "service",
174920
174976
  icon: icon2,
@@ -174922,76 +174978,76 @@ var init_architectureDiagram_ZJ3FMSHR = __esm({
174922
174978
  title: title2,
174923
174979
  edges: [],
174924
174980
  in: parent4
174925
- };
174981
+ });
174926
174982
  }
174927
174983
  getServices() {
174928
- return Object.values(this.nodes).filter(isArchitectureService);
174984
+ return [...this.nodes.values()].filter(isArchitectureService);
174929
174985
  }
174930
174986
  addJunction({ id: id39, in: parent4 }) {
174931
- if (this.registeredIds[id39] !== void 0) {
174987
+ if (this.registeredIds.has(id39)) {
174932
174988
  throw new Error(
174933
- `The junction id [${id39}] is already in use by another ${this.registeredIds[id39]}`
174989
+ `The junction id [${id39}] is already in use by another ${this.registeredIds.get(id39)}`
174934
174990
  );
174935
174991
  }
174936
174992
  if (parent4 !== void 0) {
174937
174993
  if (id39 === parent4) {
174938
174994
  throw new Error(`The junction [${id39}] cannot be placed within itself`);
174939
174995
  }
174940
- if (this.registeredIds[parent4] === void 0) {
174996
+ if (!this.registeredIds.has(parent4)) {
174941
174997
  throw new Error(
174942
174998
  `The junction [${id39}]'s parent does not exist. Please make sure the parent is created before this junction`
174943
174999
  );
174944
175000
  }
174945
- if (this.registeredIds[parent4] === "node") {
175001
+ if (this.registeredIds.get(parent4) === "node") {
174946
175002
  throw new Error(`The junction [${id39}]'s parent is not a group`);
174947
175003
  }
174948
175004
  }
174949
- this.registeredIds[id39] = "node";
174950
- this.nodes[id39] = {
175005
+ this.registeredIds.set(id39, "node");
175006
+ this.nodes.set(id39, {
174951
175007
  id: id39,
174952
175008
  type: "junction",
174953
175009
  edges: [],
174954
175010
  in: parent4
174955
- };
175011
+ });
174956
175012
  }
174957
175013
  getJunctions() {
174958
- return Object.values(this.nodes).filter(isArchitectureJunction);
175014
+ return [...this.nodes.values()].filter(isArchitectureJunction);
174959
175015
  }
174960
175016
  getNodes() {
174961
- return Object.values(this.nodes);
175017
+ return [...this.nodes.values()];
174962
175018
  }
174963
175019
  getNode(id39) {
174964
- return this.nodes[id39] ?? null;
175020
+ return this.nodes.get(id39) ?? null;
174965
175021
  }
174966
175022
  addGroup({ id: id39, icon: icon2, in: parent4, title: title2 }) {
174967
- if (this.registeredIds?.[id39] !== void 0) {
175023
+ if (this.registeredIds.has(id39)) {
174968
175024
  throw new Error(
174969
- `The group id [${id39}] is already in use by another ${this.registeredIds[id39]}`
175025
+ `The group id [${id39}] is already in use by another ${this.registeredIds.get(id39)}`
174970
175026
  );
174971
175027
  }
174972
175028
  if (parent4 !== void 0) {
174973
175029
  if (id39 === parent4) {
174974
175030
  throw new Error(`The group [${id39}] cannot be placed within itself`);
174975
175031
  }
174976
- if (this.registeredIds?.[parent4] === void 0) {
175032
+ if (!this.registeredIds.has(parent4)) {
174977
175033
  throw new Error(
174978
175034
  `The group [${id39}]'s parent does not exist. Please make sure the parent is created before this group`
174979
175035
  );
174980
175036
  }
174981
- if (this.registeredIds?.[parent4] === "node") {
175037
+ if (this.registeredIds.get(parent4) === "node") {
174982
175038
  throw new Error(`The group [${id39}]'s parent is not a group`);
174983
175039
  }
174984
175040
  }
174985
- this.registeredIds[id39] = "group";
174986
- this.groups[id39] = {
175041
+ this.registeredIds.set(id39, "group");
175042
+ this.groups.set(id39, {
174987
175043
  id: id39,
174988
175044
  icon: icon2,
174989
175045
  title: title2,
174990
175046
  in: parent4
174991
- };
175047
+ });
174992
175048
  }
174993
175049
  getGroups() {
174994
- return Object.values(this.groups);
175050
+ return [...this.groups.values()];
174995
175051
  }
174996
175052
  addEdge({
174997
175053
  lhsId,
@@ -175014,18 +175070,18 @@ var init_architectureDiagram_ZJ3FMSHR = __esm({
175014
175070
  `Invalid direction given for right hand side of edge ${lhsId}--${rhsId}. Expected (L,R,T,B) got ${String(rhsDir)}`
175015
175071
  );
175016
175072
  }
175017
- if (this.nodes[lhsId] === void 0 && this.groups[lhsId] === void 0) {
175073
+ if (!this.nodes.has(lhsId) && !this.groups.has(lhsId)) {
175018
175074
  throw new Error(
175019
175075
  `The left-hand id [${lhsId}] does not yet exist. Please create the service/group before declaring an edge to it.`
175020
175076
  );
175021
175077
  }
175022
- if (this.nodes[rhsId] === void 0 && this.groups[rhsId] === void 0) {
175078
+ if (!this.nodes.has(rhsId) && !this.groups.has(rhsId)) {
175023
175079
  throw new Error(
175024
175080
  `The right-hand id [${rhsId}] does not yet exist. Please create the service/group before declaring an edge to it.`
175025
175081
  );
175026
175082
  }
175027
- const lhsGroupId = this.nodes[lhsId].in;
175028
- const rhsGroupId = this.nodes[rhsId].in;
175083
+ const lhsGroupId = this.nodes.get(lhsId).in;
175084
+ const rhsGroupId = this.nodes.get(rhsId).in;
175029
175085
  if (lhsGroup && lhsGroupId && rhsGroupId && lhsGroupId == rhsGroupId) {
175030
175086
  throw new Error(
175031
175087
  `The left-hand id [${lhsId}] is modified to traverse the group boundary, but the edge does not pass through two groups.`
@@ -175048,9 +175104,11 @@ var init_architectureDiagram_ZJ3FMSHR = __esm({
175048
175104
  title: title2
175049
175105
  };
175050
175106
  this.edges.push(edge);
175051
- if (this.nodes[lhsId] && this.nodes[rhsId]) {
175052
- this.nodes[lhsId].edges.push(this.edges[this.edges.length - 1]);
175053
- this.nodes[rhsId].edges.push(this.edges[this.edges.length - 1]);
175107
+ const lhsNode = this.nodes.get(lhsId);
175108
+ const rhsNode = this.nodes.get(rhsId);
175109
+ if (lhsNode && rhsNode) {
175110
+ lhsNode.edges.push(this.edges[this.edges.length - 1]);
175111
+ rhsNode.edges.push(this.edges[this.edges.length - 1]);
175054
175112
  }
175055
175113
  }
175056
175114
  getEdges() {
@@ -175064,7 +175122,7 @@ var init_architectureDiagram_ZJ3FMSHR = __esm({
175064
175122
  }
175065
175123
  const seen = /* @__PURE__ */ new Set();
175066
175124
  hint.members.forEach((id39) => {
175067
- if (this.registeredIds[id39] !== "node") {
175125
+ if (this.registeredIds.get(id39) !== "node") {
175068
175126
  throw new Error(
175069
175127
  `align ${hint.direction} references [${id39}], which is not a service or junction`
175070
175128
  );
@@ -175086,57 +175144,59 @@ var init_architectureDiagram_ZJ3FMSHR = __esm({
175086
175144
  */
175087
175145
  getDataStructures() {
175088
175146
  if (this.dataStructures === void 0) {
175089
- const groupAlignments = {};
175090
- const adjList = Object.entries(this.nodes).reduce((prevOuter, [id39, service]) => {
175091
- prevOuter[id39] = service.edges.reduce((prevInner, edge) => {
175147
+ const groupAlignments = /* @__PURE__ */ new Map();
175148
+ const adjList = /* @__PURE__ */ new Map();
175149
+ for (const [id39, service] of this.nodes.entries()) {
175150
+ const directionMap = /* @__PURE__ */ new Map();
175151
+ for (const edge of service.edges) {
175092
175152
  const lhsGroupId = this.getNode(edge.lhsId)?.in;
175093
175153
  const rhsGroupId = this.getNode(edge.rhsId)?.in;
175094
175154
  if (lhsGroupId && rhsGroupId && lhsGroupId !== rhsGroupId) {
175095
175155
  const alignment = getArchitectureDirectionAlignment(edge.lhsDir, edge.rhsDir);
175096
175156
  if (alignment !== "bend") {
175097
- groupAlignments[lhsGroupId] ??= {};
175098
- groupAlignments[lhsGroupId][rhsGroupId] = alignment;
175099
- groupAlignments[rhsGroupId] ??= {};
175100
- groupAlignments[rhsGroupId][lhsGroupId] = alignment;
175157
+ groupAlignments.set(architectureGroupAlignmentKey(lhsGroupId, rhsGroupId), alignment);
175101
175158
  }
175102
175159
  }
175103
175160
  if (edge.lhsId === id39) {
175104
175161
  const pair = getArchitectureDirectionPair(edge.lhsDir, edge.rhsDir);
175105
175162
  if (pair) {
175106
- prevInner[pair] = edge.rhsId;
175163
+ directionMap.set(pair, edge.rhsId);
175107
175164
  }
175108
175165
  } else {
175109
175166
  const pair = getArchitectureDirectionPair(edge.rhsDir, edge.lhsDir);
175110
175167
  if (pair) {
175111
- prevInner[pair] = edge.lhsId;
175168
+ directionMap.set(pair, edge.lhsId);
175112
175169
  }
175113
175170
  }
175114
- return prevInner;
175115
- }, {});
175116
- return prevOuter;
175117
- }, {});
175118
- const firstId = Object.keys(adjList)[0];
175119
- const visited = { [firstId]: 1 };
175120
- const notVisited = Object.keys(adjList).reduce(
175121
- (prev2, id39) => id39 === firstId ? prev2 : { ...prev2, [id39]: 1 },
175122
- {}
175123
- );
175171
+ }
175172
+ adjList.set(id39, directionMap);
175173
+ }
175174
+ const visited = /* @__PURE__ */ new Set();
175175
+ const notVisited = new Set(adjList.keys());
175124
175176
  const BFS = /* @__PURE__ */ __name((startingId) => {
175125
- const spatialMap = { [startingId]: [0, 0] };
175177
+ const spatialMap = /* @__PURE__ */ new Map([[startingId, [0, 0]]]);
175126
175178
  const queue = [startingId];
175127
175179
  while (queue.length > 0) {
175128
175180
  const id39 = queue.shift();
175129
175181
  if (id39) {
175130
- visited[id39] = 1;
175131
- delete notVisited[id39];
175132
- const adj = adjList[id39];
175133
- const [posX, posY] = spatialMap[id39];
175134
- Object.entries(adj).forEach(([dir2, rhsId]) => {
175135
- if (!visited[rhsId]) {
175136
- spatialMap[rhsId] = shiftPositionByArchitectureDirectionPair(
175137
- [posX, posY],
175138
- dir2
175139
- );
175182
+ visited.add(id39);
175183
+ notVisited.delete(id39);
175184
+ const adj = adjList.get(id39);
175185
+ if (!adj) {
175186
+ throw new Error(
175187
+ `BFS error: adjacency list for id ${id39} not found. Please report this as a bug.`
175188
+ );
175189
+ }
175190
+ const pos = spatialMap.get(id39);
175191
+ if (!pos) {
175192
+ throw new Error(
175193
+ `BFS error: position for id ${id39} not found in spatial map. Please report this as a bug.`
175194
+ );
175195
+ }
175196
+ const [posX, posY] = pos;
175197
+ adj.forEach((rhsId, dir2) => {
175198
+ if (!visited.has(rhsId)) {
175199
+ spatialMap.set(rhsId, shiftPositionByArchitectureDirectionPair([posX, posY], dir2));
175140
175200
  queue.push(rhsId);
175141
175201
  }
175142
175202
  });
@@ -175144,9 +175204,10 @@ var init_architectureDiagram_ZJ3FMSHR = __esm({
175144
175204
  }
175145
175205
  return spatialMap;
175146
175206
  }, "BFS");
175147
- const spatialMaps = [BFS(firstId)];
175148
- while (Object.keys(notVisited).length > 0) {
175149
- spatialMaps.push(BFS(Object.keys(notVisited)[0]));
175207
+ const spatialMaps = [];
175208
+ while (notVisited.size > 0) {
175209
+ const firstId = notVisited.values().next().value;
175210
+ spatialMaps.push(BFS(firstId));
175150
175211
  }
175151
175212
  this.dataStructures = {
175152
175213
  adjList,
@@ -175157,10 +175218,10 @@ var init_architectureDiagram_ZJ3FMSHR = __esm({
175157
175218
  return this.dataStructures;
175158
175219
  }
175159
175220
  setElementForId(id39, element3) {
175160
- this.elements[id39] = element3;
175221
+ this.elements.set(id39, element3);
175161
175222
  }
175162
175223
  getElementById(id39) {
175163
- return this.elements[id39];
175224
+ return this.elements.get(id39);
175164
175225
  }
175165
175226
  getConfig() {
175166
175227
  return cleanAndMerge({
@@ -175548,9 +175609,9 @@ var init_architectureDiagram_ZJ3FMSHR = __esm({
175548
175609
  }
175549
175610
  });
175550
175611
 
175551
- // node_modules/mermaid/dist/chunks/mermaid.core/diagram-FQU43EPY.mjs
175552
- var diagram_FQU43EPY_exports = {};
175553
- __export(diagram_FQU43EPY_exports, {
175612
+ // node_modules/mermaid/dist/chunks/mermaid.core/diagram-B4RE2ZJO.mjs
175613
+ var diagram_B4RE2ZJO_exports = {};
175614
+ __export(diagram_B4RE2ZJO_exports, {
175554
175615
  diagram: () => diagram27
175555
175616
  });
175556
175617
  function reset4() {
@@ -176033,11 +176094,11 @@ function renderD3Swimlane(diagram210, maxR, diagramProps2, themeVariables) {
176033
176094
  };
176034
176095
  }
176035
176096
  var PositionFrameKind, FramePositionedKind, PositionRelationKind, RelationPositionedKind, setOptions8, getOptions3, clear214, DEFAULT_EVENTMODELING_CONFIG, getConfig32, store, diagramProps, initial, deciders, evolvers, db8, parser24, DEFAULT_CONFIG, DEFAULT_EVENTMODELING_CONFIG2, draw26, renderer_default2, getStyles20, styles_default18, diagram27;
176036
- var init_diagram_FQU43EPY = __esm({
176037
- "node_modules/mermaid/dist/chunks/mermaid.core/diagram-FQU43EPY.mjs"() {
176097
+ var init_diagram_B4RE2ZJO = __esm({
176098
+ "node_modules/mermaid/dist/chunks/mermaid.core/diagram-B4RE2ZJO.mjs"() {
176038
176099
  init_chunk_JWPE2WC7();
176039
- init_chunk_ICXQ74PX();
176040
- init_chunk_WYO6CB5R();
176100
+ init_chunk_NSK5VX7P();
176101
+ init_chunk_I66GZJ75();
176041
176102
  init_chunk_X3CZISLH();
176042
176103
  init_chunk_Y2CYZVJY();
176043
176104
  init_mermaid_parser_core();
@@ -176205,17 +176266,17 @@ var init_diagram_FQU43EPY = __esm({
176205
176266
  }
176206
176267
  });
176207
176268
 
176208
- // node_modules/mermaid/dist/chunks/mermaid.core/ishikawaDiagram-FXEZZL3T.mjs
176209
- var ishikawaDiagram_FXEZZL3T_exports = {};
176210
- __export(ishikawaDiagram_FXEZZL3T_exports, {
176269
+ // node_modules/mermaid/dist/chunks/mermaid.core/ishikawaDiagram-WSZJBQD7.mjs
176270
+ var ishikawaDiagram_WSZJBQD7_exports = {};
176271
+ __export(ishikawaDiagram_WSZJBQD7_exports, {
176211
176272
  diagram: () => diagram28
176212
176273
  });
176213
176274
  var parser25, ishikawa_default, IshikawaDB, FONT_SIZE_DEFAULT, SPINE_BASE_LENGTH, BONE_STUB, BONE_BASE, BONE_PER_CHILD, ANGLE, COS_A, SIN_A, applyPaddedViewBox, draw27, sideStats, drawHead, flattenTree, drawCauseLabel, drawArrowMarker, drawBranch, splitLines, wrapText, drawMultilineText, lerp, drawLine, renderer9, getStyles21, ishikawaStyles_default, diagram28;
176214
- var init_ishikawaDiagram_FXEZZL3T = __esm({
176215
- "node_modules/mermaid/dist/chunks/mermaid.core/ishikawaDiagram-FXEZZL3T.mjs"() {
176216
- init_chunk_VAUOI2AC();
176217
- init_chunk_ICXQ74PX();
176218
- init_chunk_WYO6CB5R();
176275
+ var init_ishikawaDiagram_WSZJBQD7 = __esm({
176276
+ "node_modules/mermaid/dist/chunks/mermaid.core/ishikawaDiagram-WSZJBQD7.mjs"() {
176277
+ init_chunk_3NCLNEKW();
176278
+ init_chunk_NSK5VX7P();
176279
+ init_chunk_I66GZJ75();
176219
176280
  init_chunk_X3CZISLH();
176220
176281
  init_chunk_Y2CYZVJY();
176221
176282
  init_rough_esm();
@@ -178649,9 +178710,9 @@ var init_venn_esm = __esm({
178649
178710
  }
178650
178711
  });
178651
178712
 
178652
- // node_modules/mermaid/dist/chunks/mermaid.core/vennDiagram-L72KCM5P.mjs
178653
- var vennDiagram_L72KCM5P_exports = {};
178654
- __export(vennDiagram_L72KCM5P_exports, {
178713
+ // node_modules/mermaid/dist/chunks/mermaid.core/vennDiagram-T6HMQDX7.mjs
178714
+ var vennDiagram_T6HMQDX7_exports = {};
178715
+ __export(vennDiagram_T6HMQDX7_exports, {
178655
178716
  diagram: () => diagram29
178656
178717
  });
178657
178718
  function getConfig25() {
@@ -178764,11 +178825,11 @@ function ensurePairwiseSubsets(subsets2) {
178764
178825
  return synthetic.length > 0 ? [...subsets2, ...synthetic] : subsets2;
178765
178826
  }
178766
178827
  var parser26, venn_default, subsets, textNodes, styleEntries, knownSets, currentSets, indentMode, addSubsetData, getSubsetData, normalizeText, normalizeStyleValue, addTextData, addStyleData, getStyleData, normalizeIdentifierList, validateUnionIdentifiers, getTextData, getCurrentSets, getIndentMode, setIndentMode, DEFAULT_VENN_CONFIG, customClear, db9, getStyles22, styles_default19, draw28, renderer10, diagram29;
178767
- var init_vennDiagram_L72KCM5P = __esm({
178768
- "node_modules/mermaid/dist/chunks/mermaid.core/vennDiagram-L72KCM5P.mjs"() {
178769
- init_chunk_VAUOI2AC();
178770
- init_chunk_ICXQ74PX();
178771
- init_chunk_WYO6CB5R();
178828
+ var init_vennDiagram_T6HMQDX7 = __esm({
178829
+ "node_modules/mermaid/dist/chunks/mermaid.core/vennDiagram-T6HMQDX7.mjs"() {
178830
+ init_chunk_3NCLNEKW();
178831
+ init_chunk_NSK5VX7P();
178832
+ init_chunk_I66GZJ75();
178772
178833
  init_chunk_X3CZISLH();
178773
178834
  init_chunk_Y2CYZVJY();
178774
178835
  init_src32();
@@ -179760,9 +179821,9 @@ var init_vennDiagram_L72KCM5P = __esm({
179760
179821
  }
179761
179822
  });
179762
179823
 
179763
- // node_modules/mermaid/dist/chunks/mermaid.core/diagram-G47NLZAW.mjs
179764
- var diagram_G47NLZAW_exports = {};
179765
- __export(diagram_G47NLZAW_exports, {
179824
+ // node_modules/mermaid/dist/chunks/mermaid.core/diagram-Q27KOJAE.mjs
179825
+ var diagram_Q27KOJAE_exports = {};
179826
+ __export(diagram_Q27KOJAE_exports, {
179766
179827
  diagram: () => diagram30
179767
179828
  });
179768
179829
  function buildHierarchy(items) {
@@ -179803,14 +179864,14 @@ function buildHierarchy(items) {
179803
179864
  return root4;
179804
179865
  }
179805
179866
  var TreeMapDB, populate19, getItemName, parser27, DEFAULT_INNER_PADDING, SECTION_INNER_PADDING, SECTION_HEADER_HEIGHT, draw29, getClasses5, renderer11, defaultTreemapStyleOptions, getStyles23, styles_default20, diagram30;
179806
- var init_diagram_G47NLZAW = __esm({
179807
- "node_modules/mermaid/dist/chunks/mermaid.core/diagram-G47NLZAW.mjs"() {
179867
+ var init_diagram_Q27KOJAE = __esm({
179868
+ "node_modules/mermaid/dist/chunks/mermaid.core/diagram-Q27KOJAE.mjs"() {
179808
179869
  init_chunk_JWPE2WC7();
179809
- init_chunk_VAUOI2AC();
179810
- init_chunk_VR4S4FIN();
179811
- init_chunk_C7G6YPKG();
179812
- init_chunk_ICXQ74PX();
179813
- init_chunk_WYO6CB5R();
179870
+ init_chunk_3NCLNEKW();
179871
+ init_chunk_KBJHAD2P();
179872
+ init_chunk_W5SLKNZC();
179873
+ init_chunk_NSK5VX7P();
179874
+ init_chunk_I66GZJ75();
179814
179875
  init_chunk_X3CZISLH();
179815
179876
  init_chunk_Y2CYZVJY();
179816
179877
  init_mermaid_parser_core();
@@ -180303,9 +180364,9 @@ var init_diagram_G47NLZAW = __esm({
180303
180364
  }
180304
180365
  });
180305
180366
 
180306
- // node_modules/mermaid/dist/chunks/mermaid.core/wardleyDiagram-EHGQE667.mjs
180307
- var wardleyDiagram_EHGQE667_exports = {};
180308
- __export(wardleyDiagram_EHGQE667_exports, {
180367
+ // node_modules/mermaid/dist/chunks/mermaid.core/wardleyDiagram-T6FBY63Y.mjs
180368
+ var wardleyDiagram_T6FBY63Y_exports = {};
180369
+ __export(wardleyDiagram_T6FBY63Y_exports, {
180309
180370
  diagram: () => diagram31
180310
180371
  });
180311
180372
  function getConfig33() {
@@ -180393,12 +180454,12 @@ function clear215() {
180393
180454
  clear();
180394
180455
  }
180395
180456
  var toPercent, toCoordinates, getFlowFromPort, extractFlowFromArrow, populateDb3, parser28, WardleyBuilder, builder, wardleyDb_default, DEFAULT_STAGES, getTheme, getConfigValues, draw30, wardleyRenderer_default, styles5, diagram31;
180396
- var init_wardleyDiagram_EHGQE667 = __esm({
180397
- "node_modules/mermaid/dist/chunks/mermaid.core/wardleyDiagram-EHGQE667.mjs"() {
180457
+ var init_wardleyDiagram_T6FBY63Y = __esm({
180458
+ "node_modules/mermaid/dist/chunks/mermaid.core/wardleyDiagram-T6FBY63Y.mjs"() {
180398
180459
  init_chunk_JWPE2WC7();
180399
- init_chunk_VAUOI2AC();
180400
- init_chunk_ICXQ74PX();
180401
- init_chunk_WYO6CB5R();
180460
+ init_chunk_3NCLNEKW();
180461
+ init_chunk_NSK5VX7P();
180462
+ init_chunk_I66GZJ75();
180402
180463
  init_chunk_X3CZISLH();
180403
180464
  init_chunk_Y2CYZVJY();
180404
180465
  init_mermaid_parser_core();
@@ -181290,9 +181351,9 @@ var init_wardleyDiagram_EHGQE667 = __esm({
181290
181351
  }
181291
181352
  });
181292
181353
 
181293
- // node_modules/mermaid/dist/chunks/mermaid.core/cynefinDiagram-TSTJHNR4.mjs
181294
- var cynefinDiagram_TSTJHNR4_exports = {};
181295
- __export(cynefinDiagram_TSTJHNR4_exports, {
181354
+ // node_modules/mermaid/dist/chunks/mermaid.core/cynefinDiagram-MW4NZA55.mjs
181355
+ var cynefinDiagram_MW4NZA55_exports = {};
181356
+ __export(cynefinDiagram_MW4NZA55_exports, {
181296
181357
  diagram: () => diagram32
181297
181358
  });
181298
181359
  function seededRandom(seed) {
@@ -181390,12 +181451,12 @@ function generateConfusionPath(cx, cy, rx, ry) {
181390
181451
  ].join(" ");
181391
181452
  }
181392
181453
  var createDefaultData, data5, getDomains, getTransitions, setDomains, setTransitions, getConfig26, clear216, db10, populate20, parser29, DOMAIN_META, getDomainLayouts, getCynefinDomainColors, MAX_CONFUSION_ITEMS, draw31, renderer12, getCynefinTheme, styles6, styles_default21, diagram32;
181393
- var init_cynefinDiagram_TSTJHNR4 = __esm({
181394
- "node_modules/mermaid/dist/chunks/mermaid.core/cynefinDiagram-TSTJHNR4.mjs"() {
181454
+ var init_cynefinDiagram_MW4NZA55 = __esm({
181455
+ "node_modules/mermaid/dist/chunks/mermaid.core/cynefinDiagram-MW4NZA55.mjs"() {
181395
181456
  init_chunk_JWPE2WC7();
181396
- init_chunk_VAUOI2AC();
181397
- init_chunk_ICXQ74PX();
181398
- init_chunk_WYO6CB5R();
181457
+ init_chunk_3NCLNEKW();
181458
+ init_chunk_NSK5VX7P();
181459
+ init_chunk_I66GZJ75();
181399
181460
  init_chunk_X3CZISLH();
181400
181461
  init_chunk_Y2CYZVJY();
181401
181462
  init_mermaid_parser_core();
@@ -181755,12 +181816,12 @@ var init_cynefinDiagram_TSTJHNR4 = __esm({
181755
181816
  }
181756
181817
  });
181757
181818
 
181758
- // node_modules/mermaid/dist/chunks/mermaid.core/chunk-MOJQB5TN.mjs
181819
+ // node_modules/mermaid/dist/chunks/mermaid.core/chunk-6Q2QTUOP.mjs
181759
181820
  var diagramTitle2, accTitle2, accDescription2, rules, ruleMap, sanitizeText24, sanitizeAstNode, clear217, setTitle2, getTitle2, addRule, getRules, getRule2, setAccTitle2, getAccTitle2, setAccDescription2, getAccDescription2, setDiagramTitle2, getDiagramTitle2, db11, DEFAULT_RAILROAD_CONFIG, COLOR_VALUE_PATTERN, FONT_FAMILY_PATTERN, RAILROAD_STYLE_OPTION_KEYS, isRailroadStyleOptions, extractRailroadOverrides, extractThemeOverrides, sanitizeColorValue, sanitizeFontFamilyValue, sanitizeNumberValue, parseThemeFontSize, buildThemeDefaults, buildRailroadStyleOptions, getStyles24, PathBuilder, RailroadRenderer, configureRailroadSvgSize, draw32, renderer13;
181760
- var init_chunk_MOJQB5TN = __esm({
181761
- "node_modules/mermaid/dist/chunks/mermaid.core/chunk-MOJQB5TN.mjs"() {
181762
- init_chunk_VAUOI2AC();
181763
- init_chunk_WYO6CB5R();
181821
+ var init_chunk_6Q2QTUOP = __esm({
181822
+ "node_modules/mermaid/dist/chunks/mermaid.core/chunk-6Q2QTUOP.mjs"() {
181823
+ init_chunk_3NCLNEKW();
181824
+ init_chunk_I66GZJ75();
181764
181825
  init_chunk_X3CZISLH();
181765
181826
  init_chunk_Y2CYZVJY();
181766
181827
  diagramTitle2 = "";
@@ -182620,19 +182681,19 @@ var init_chunk_MOJQB5TN = __esm({
182620
182681
  }
182621
182682
  });
182622
182683
 
182623
- // node_modules/mermaid/dist/chunks/mermaid.core/railroadDiagram-RFXS5EU6.mjs
182624
- var railroadDiagram_RFXS5EU6_exports = {};
182625
- __export(railroadDiagram_RFXS5EU6_exports, {
182684
+ // node_modules/mermaid/dist/chunks/mermaid.core/railroadDiagram-AXF67PYL.mjs
182685
+ var railroadDiagram_AXF67PYL_exports = {};
182686
+ __export(railroadDiagram_AXF67PYL_exports, {
182626
182687
  default: () => railroadDiagram_default,
182627
182688
  diagram: () => diagram33
182628
182689
  });
182629
182690
  var langiumParser, transformExpression, transformRule, populateDb4, parser30, diagram33, railroadDiagram_default;
182630
- var init_railroadDiagram_RFXS5EU6 = __esm({
182631
- "node_modules/mermaid/dist/chunks/mermaid.core/railroadDiagram-RFXS5EU6.mjs"() {
182632
- init_chunk_MOJQB5TN();
182691
+ var init_railroadDiagram_AXF67PYL = __esm({
182692
+ "node_modules/mermaid/dist/chunks/mermaid.core/railroadDiagram-AXF67PYL.mjs"() {
182693
+ init_chunk_6Q2QTUOP();
182633
182694
  init_chunk_JWPE2WC7();
182634
- init_chunk_VAUOI2AC();
182635
- init_chunk_WYO6CB5R();
182695
+ init_chunk_3NCLNEKW();
182696
+ init_chunk_I66GZJ75();
182636
182697
  init_chunk_X3CZISLH();
182637
182698
  init_chunk_Y2CYZVJY();
182638
182699
  init_mermaid_parser_core();
@@ -182725,18 +182786,18 @@ var init_railroadDiagram_RFXS5EU6 = __esm({
182725
182786
  }
182726
182787
  });
182727
182788
 
182728
- // node_modules/mermaid/dist/chunks/mermaid.core/ebnfDiagram-CCIWWBDH.mjs
182729
- var ebnfDiagram_CCIWWBDH_exports = {};
182730
- __export(ebnfDiagram_CCIWWBDH_exports, {
182789
+ // node_modules/mermaid/dist/chunks/mermaid.core/ebnfDiagram-BXEA7PRR.mjs
182790
+ var ebnfDiagram_BXEA7PRR_exports = {};
182791
+ __export(ebnfDiagram_BXEA7PRR_exports, {
182731
182792
  diagram: () => diagram34
182732
182793
  });
182733
182794
  var langiumParser2, transformChoice, transformSequence, transformPrimary, transformPostfix, transformTerm, transformRule2, populateDb5, parser31, diagram34;
182734
- var init_ebnfDiagram_CCIWWBDH = __esm({
182735
- "node_modules/mermaid/dist/chunks/mermaid.core/ebnfDiagram-CCIWWBDH.mjs"() {
182736
- init_chunk_MOJQB5TN();
182795
+ var init_ebnfDiagram_BXEA7PRR = __esm({
182796
+ "node_modules/mermaid/dist/chunks/mermaid.core/ebnfDiagram-BXEA7PRR.mjs"() {
182797
+ init_chunk_6Q2QTUOP();
182737
182798
  init_chunk_JWPE2WC7();
182738
- init_chunk_VAUOI2AC();
182739
- init_chunk_WYO6CB5R();
182799
+ init_chunk_3NCLNEKW();
182800
+ init_chunk_I66GZJ75();
182740
182801
  init_chunk_X3CZISLH();
182741
182802
  init_chunk_Y2CYZVJY();
182742
182803
  init_mermaid_parser_core();
@@ -182874,18 +182935,18 @@ var init_ebnfDiagram_CCIWWBDH = __esm({
182874
182935
  }
182875
182936
  });
182876
182937
 
182877
- // node_modules/mermaid/dist/chunks/mermaid.core/abnfDiagram-VRR7QNED.mjs
182878
- var abnfDiagram_VRR7QNED_exports = {};
182879
- __export(abnfDiagram_VRR7QNED_exports, {
182938
+ // node_modules/mermaid/dist/chunks/mermaid.core/abnfDiagram-N423BO3Z.mjs
182939
+ var abnfDiagram_N423BO3Z_exports = {};
182940
+ __export(abnfDiagram_N423BO3Z_exports, {
182880
182941
  diagram: () => diagram35
182881
182942
  });
182882
182943
  var langiumParser3, transformAlternation, transformConcatenation, parseRepeat, transformElement, transformPrimary2, transformRule3, populateDb6, parser32, diagram35;
182883
- var init_abnfDiagram_VRR7QNED = __esm({
182884
- "node_modules/mermaid/dist/chunks/mermaid.core/abnfDiagram-VRR7QNED.mjs"() {
182885
- init_chunk_MOJQB5TN();
182944
+ var init_abnfDiagram_N423BO3Z = __esm({
182945
+ "node_modules/mermaid/dist/chunks/mermaid.core/abnfDiagram-N423BO3Z.mjs"() {
182946
+ init_chunk_6Q2QTUOP();
182886
182947
  init_chunk_JWPE2WC7();
182887
- init_chunk_VAUOI2AC();
182888
- init_chunk_WYO6CB5R();
182948
+ init_chunk_3NCLNEKW();
182949
+ init_chunk_I66GZJ75();
182889
182950
  init_chunk_X3CZISLH();
182890
182951
  init_chunk_Y2CYZVJY();
182891
182952
  init_mermaid_parser_core();
@@ -183003,18 +183064,18 @@ var init_abnfDiagram_VRR7QNED = __esm({
183003
183064
  }
183004
183065
  });
183005
183066
 
183006
- // node_modules/mermaid/dist/chunks/mermaid.core/pegDiagram-2B236MQR.mjs
183007
- var pegDiagram_2B236MQR_exports = {};
183008
- __export(pegDiagram_2B236MQR_exports, {
183067
+ // node_modules/mermaid/dist/chunks/mermaid.core/pegDiagram-VL7TDLO6.mjs
183068
+ var pegDiagram_VL7TDLO6_exports = {};
183069
+ __export(pegDiagram_VL7TDLO6_exports, {
183009
183070
  diagram: () => diagram36
183010
183071
  });
183011
183072
  var langiumParser4, transformOrderedChoice, transformSequence2, transformPrefix, nodeToLabel, transformSuffix, transformPrimary3, transformRule4, populateDb7, parser33, diagram36;
183012
- var init_pegDiagram_2B236MQR = __esm({
183013
- "node_modules/mermaid/dist/chunks/mermaid.core/pegDiagram-2B236MQR.mjs"() {
183014
- init_chunk_MOJQB5TN();
183073
+ var init_pegDiagram_VL7TDLO6 = __esm({
183074
+ "node_modules/mermaid/dist/chunks/mermaid.core/pegDiagram-VL7TDLO6.mjs"() {
183075
+ init_chunk_6Q2QTUOP();
183015
183076
  init_chunk_JWPE2WC7();
183016
- init_chunk_VAUOI2AC();
183017
- init_chunk_WYO6CB5R();
183077
+ init_chunk_3NCLNEKW();
183078
+ init_chunk_I66GZJ75();
183018
183079
  init_chunk_X3CZISLH();
183019
183080
  init_chunk_Y2CYZVJY();
183020
183081
  init_mermaid_parser_core();
@@ -183184,18 +183245,18 @@ function toggleMarkup(button) {
183184
183245
  }
183185
183246
 
183186
183247
  // node_modules/mermaid/dist/mermaid.core.mjs
183187
- init_chunk_VAUOI2AC();
183248
+ init_chunk_3NCLNEKW();
183188
183249
  init_chunk_ZIRB5QZD();
183189
- init_chunk_FWX5IMBZ();
183190
- init_chunk_52WLFC77();
183191
- init_chunk_ZGVPDNZ5();
183192
- init_chunk_C7G6YPKG();
183250
+ init_chunk_J7OUQ5F2();
183251
+ init_chunk_7Z6QIM7H();
183252
+ init_chunk_QR6OTTB3();
183253
+ init_chunk_W5SLKNZC();
183193
183254
  init_chunk_7BUUIJ7U();
183194
- init_chunk_OGEWGWER();
183195
- init_chunk_Q4XR5HBZ();
183196
- init_chunk_HOUHSVGY();
183197
- init_chunk_ICXQ74PX();
183198
- init_chunk_WYO6CB5R();
183255
+ init_chunk_UBXNYLIW();
183256
+ init_chunk_WRU74C26();
183257
+ init_chunk_4I5QYGJK();
183258
+ init_chunk_NSK5VX7P();
183259
+ init_chunk_I66GZJ75();
183199
183260
  init_chunk_X3CZISLH();
183200
183261
  init_chunk_Y2CYZVJY();
183201
183262
  init_esm();
@@ -183583,7 +183644,7 @@ var detector = /* @__PURE__ */ __name((txt) => {
183583
183644
  return /^\s*C4Context|C4Container|C4Component|C4Dynamic|C4Deployment/.test(txt);
183584
183645
  }, "detector");
183585
183646
  var loader2 = /* @__PURE__ */ __name(async () => {
183586
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_c4Diagram_LMCZKHZV(), c4Diagram_LMCZKHZV_exports));
183647
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_c4Diagram_5PPSVZJV(), c4Diagram_5PPSVZJV_exports));
183587
183648
  return { id: id3, diagram: diagram210 };
183588
183649
  }, "loader");
183589
183650
  var plugin = {
@@ -183600,7 +183661,7 @@ var detector2 = /* @__PURE__ */ __name((txt, config3) => {
183600
183661
  return /^\s*graph/.test(txt);
183601
183662
  }, "detector");
183602
183663
  var loader22 = /* @__PURE__ */ __name(async () => {
183603
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_flowDiagram_23GEKE2U(), flowDiagram_23GEKE2U_exports));
183664
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_flowDiagram_UKHOOZJN(), flowDiagram_UKHOOZJN_exports));
183604
183665
  return { id: id22, diagram: diagram210 };
183605
183666
  }, "loader");
183606
183667
  var plugin2 = {
@@ -183623,7 +183684,7 @@ var detector3 = /* @__PURE__ */ __name((txt, config3) => {
183623
183684
  return /^\s*flowchart/.test(txt);
183624
183685
  }, "detector");
183625
183686
  var loader3 = /* @__PURE__ */ __name(async () => {
183626
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_flowDiagram_23GEKE2U(), flowDiagram_23GEKE2U_exports));
183687
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_flowDiagram_UKHOOZJN(), flowDiagram_UKHOOZJN_exports));
183627
183688
  return { id: id32, diagram: diagram210 };
183628
183689
  }, "loader");
183629
183690
  var plugin3 = {
@@ -183637,7 +183698,7 @@ var detector4 = /* @__PURE__ */ __name((txt) => {
183637
183698
  return /^\s*swimlane-beta\b/.test(txt);
183638
183699
  }, "detector");
183639
183700
  var loader4 = /* @__PURE__ */ __name(async () => {
183640
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_swimlanesDiagram_G3AALYLV(), swimlanesDiagram_G3AALYLV_exports));
183701
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_swimlanesDiagram_ULZ7WXOC(), swimlanesDiagram_ULZ7WXOC_exports));
183641
183702
  return { id: id4, diagram: diagram210 };
183642
183703
  }, "loader");
183643
183704
  var plugin4 = {
@@ -183651,7 +183712,7 @@ var detector5 = /* @__PURE__ */ __name((txt) => {
183651
183712
  return /^\s*erDiagram/.test(txt);
183652
183713
  }, "detector");
183653
183714
  var loader5 = /* @__PURE__ */ __name(async () => {
183654
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_erDiagram_Q63AITRT(), erDiagram_Q63AITRT_exports));
183715
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_erDiagram_JOGREHBK(), erDiagram_JOGREHBK_exports));
183655
183716
  return { id: id5, diagram: diagram210 };
183656
183717
  }, "loader");
183657
183718
  var plugin5 = {
@@ -183665,7 +183726,7 @@ var detector6 = /* @__PURE__ */ __name((txt) => {
183665
183726
  return /^\s*gitGraph/.test(txt);
183666
183727
  }, "detector");
183667
183728
  var loader6 = /* @__PURE__ */ __name(async () => {
183668
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_gitGraphDiagram_IHSO6WYX(), gitGraphDiagram_IHSO6WYX_exports));
183729
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_gitGraphDiagram_DS77QQ5N(), gitGraphDiagram_DS77QQ5N_exports));
183669
183730
  return { id: id6, diagram: diagram210 };
183670
183731
  }, "loader");
183671
183732
  var plugin6 = {
@@ -183679,7 +183740,7 @@ var detector7 = /* @__PURE__ */ __name((txt) => {
183679
183740
  return /^\s*gantt/.test(txt);
183680
183741
  }, "detector");
183681
183742
  var loader7 = /* @__PURE__ */ __name(async () => {
183682
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_ganttDiagram_NO4QXBWP(), ganttDiagram_NO4QXBWP_exports));
183743
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_ganttDiagram_PKOTCBZU(), ganttDiagram_PKOTCBZU_exports));
183683
183744
  return { id: id7, diagram: diagram210 };
183684
183745
  }, "loader");
183685
183746
  var plugin7 = {
@@ -183693,7 +183754,7 @@ var detector8 = /* @__PURE__ */ __name((txt) => {
183693
183754
  return /^\s*info/.test(txt);
183694
183755
  }, "detector");
183695
183756
  var loader8 = /* @__PURE__ */ __name(async () => {
183696
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_infoDiagram_FWYZ7A6U(), infoDiagram_FWYZ7A6U_exports));
183757
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_infoDiagram_6WML65LV(), infoDiagram_6WML65LV_exports));
183697
183758
  return { id: id8, diagram: diagram210 };
183698
183759
  }, "loader");
183699
183760
  var info = {
@@ -183706,7 +183767,7 @@ var detector9 = /* @__PURE__ */ __name((txt) => {
183706
183767
  return /^\s*pie/.test(txt);
183707
183768
  }, "detector");
183708
183769
  var loader9 = /* @__PURE__ */ __name(async () => {
183709
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_pieDiagram_ENE6RG2P(), pieDiagram_ENE6RG2P_exports));
183770
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_pieDiagram_7S7Q4E2Y(), pieDiagram_7S7Q4E2Y_exports));
183710
183771
  return { id: id9, diagram: diagram210 };
183711
183772
  }, "loader");
183712
183773
  var pie = {
@@ -183719,7 +183780,7 @@ var detector10 = /* @__PURE__ */ __name((txt) => {
183719
183780
  return /^\s*quadrantChart/.test(txt);
183720
183781
  }, "detector");
183721
183782
  var loader10 = /* @__PURE__ */ __name(async () => {
183722
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_quadrantDiagram_ABIIQ3AL(), quadrantDiagram_ABIIQ3AL_exports));
183783
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_quadrantDiagram_CIZ2JOQS(), quadrantDiagram_CIZ2JOQS_exports));
183723
183784
  return { id: id10, diagram: diagram210 };
183724
183785
  }, "loader");
183725
183786
  var plugin8 = {
@@ -183733,7 +183794,7 @@ var detector11 = /* @__PURE__ */ __name((txt) => {
183733
183794
  return /^\s*xychart(-beta)?/.test(txt);
183734
183795
  }, "detector");
183735
183796
  var loader11 = /* @__PURE__ */ __name(async () => {
183736
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_xychartDiagram_FW5EYKEG(), xychartDiagram_FW5EYKEG_exports));
183797
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_xychartDiagram_ELKLHX3M(), xychartDiagram_ELKLHX3M_exports));
183737
183798
  return { id: id11, diagram: diagram210 };
183738
183799
  }, "loader");
183739
183800
  var plugin9 = {
@@ -183747,7 +183808,7 @@ var detector12 = /* @__PURE__ */ __name((txt) => {
183747
183808
  return /^\s*requirement(Diagram)?/.test(txt);
183748
183809
  }, "detector");
183749
183810
  var loader12 = /* @__PURE__ */ __name(async () => {
183750
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_requirementDiagram_TGXJPOKE(), requirementDiagram_TGXJPOKE_exports));
183811
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_requirementDiagram_LRYGKXZP(), requirementDiagram_LRYGKXZP_exports));
183751
183812
  return { id: id12, diagram: diagram210 };
183752
183813
  }, "loader");
183753
183814
  var plugin10 = {
@@ -183761,7 +183822,7 @@ var detector13 = /* @__PURE__ */ __name((txt) => {
183761
183822
  return /^\s*sequenceDiagram/.test(txt);
183762
183823
  }, "detector");
183763
183824
  var loader13 = /* @__PURE__ */ __name(async () => {
183764
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_sequenceDiagram_DBY2YBRQ(), sequenceDiagram_DBY2YBRQ_exports));
183825
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_sequenceDiagram_SI44F4Z6(), sequenceDiagram_SI44F4Z6_exports));
183765
183826
  return { id: id13, diagram: diagram210 };
183766
183827
  }, "loader");
183767
183828
  var plugin11 = {
@@ -183778,7 +183839,7 @@ var detector14 = /* @__PURE__ */ __name((txt, config3) => {
183778
183839
  return /^\s*classDiagram/.test(txt);
183779
183840
  }, "detector");
183780
183841
  var loader14 = /* @__PURE__ */ __name(async () => {
183781
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_classDiagram_OUVF2IWQ(), classDiagram_OUVF2IWQ_exports));
183842
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_classDiagram_JCYQIIEL(), classDiagram_JCYQIIEL_exports));
183782
183843
  return { id: id14, diagram: diagram210 };
183783
183844
  }, "loader");
183784
183845
  var plugin12 = {
@@ -183795,7 +183856,7 @@ var detector15 = /* @__PURE__ */ __name((txt, config3) => {
183795
183856
  return /^\s*classDiagram-v2/.test(txt);
183796
183857
  }, "detector");
183797
183858
  var loader15 = /* @__PURE__ */ __name(async () => {
183798
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_classDiagram_v2_EOCWNBFH(), classDiagram_v2_EOCWNBFH_exports));
183859
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_classDiagram_v2_OCEON4UE(), classDiagram_v2_OCEON4UE_exports));
183799
183860
  return { id: id15, diagram: diagram210 };
183800
183861
  }, "loader");
183801
183862
  var plugin13 = {
@@ -183812,7 +183873,7 @@ var detector16 = /* @__PURE__ */ __name((txt, config3) => {
183812
183873
  return /^\s*stateDiagram/.test(txt);
183813
183874
  }, "detector");
183814
183875
  var loader16 = /* @__PURE__ */ __name(async () => {
183815
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_stateDiagram_2N3HPSRC(), stateDiagram_2N3HPSRC_exports));
183876
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_stateDiagram_OKZ733FA(), stateDiagram_OKZ733FA_exports));
183816
183877
  return { id: id16, diagram: diagram210 };
183817
183878
  }, "loader");
183818
183879
  var plugin14 = {
@@ -183832,7 +183893,7 @@ var detector17 = /* @__PURE__ */ __name((txt, config3) => {
183832
183893
  return false;
183833
183894
  }, "detector");
183834
183895
  var loader17 = /* @__PURE__ */ __name(async () => {
183835
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_stateDiagram_v2_6OUMAXLB(), stateDiagram_v2_6OUMAXLB_exports));
183896
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_stateDiagram_v2_UEYNNEHI(), stateDiagram_v2_UEYNNEHI_exports));
183836
183897
  return { id: id17, diagram: diagram210 };
183837
183898
  }, "loader");
183838
183899
  var plugin15 = {
@@ -183846,7 +183907,7 @@ var detector18 = /* @__PURE__ */ __name((txt) => {
183846
183907
  return /^\s*journey/.test(txt);
183847
183908
  }, "detector");
183848
183909
  var loader18 = /* @__PURE__ */ __name(async () => {
183849
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_journeyDiagram_5HDEW3XC(), journeyDiagram_5HDEW3XC_exports));
183910
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_journeyDiagram_NVQOT4AX(), journeyDiagram_NVQOT4AX_exports));
183850
183911
  return { id: id18, diagram: diagram210 };
183851
183912
  }, "loader");
183852
183913
  var plugin16 = {
@@ -183913,7 +183974,7 @@ var detector19 = /* @__PURE__ */ __name((txt, config3 = {}) => {
183913
183974
  return false;
183914
183975
  }, "detector");
183915
183976
  var loader19 = /* @__PURE__ */ __name(async () => {
183916
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_flowDiagram_23GEKE2U(), flowDiagram_23GEKE2U_exports));
183977
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_flowDiagram_UKHOOZJN(), flowDiagram_UKHOOZJN_exports));
183917
183978
  return { id: id19, diagram: diagram210 };
183918
183979
  }, "loader");
183919
183980
  var plugin17 = {
@@ -183927,7 +183988,7 @@ var detector20 = /* @__PURE__ */ __name((txt) => {
183927
183988
  return /^\s*timeline/.test(txt);
183928
183989
  }, "detector");
183929
183990
  var loader20 = /* @__PURE__ */ __name(async () => {
183930
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_timeline_definition_FHXFAJF6(), timeline_definition_FHXFAJF6_exports));
183991
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_timeline_definition_Z64GVDOM(), timeline_definition_Z64GVDOM_exports));
183931
183992
  return { id: id20, diagram: diagram210 };
183932
183993
  }, "loader");
183933
183994
  var plugin18 = {
@@ -183941,7 +184002,7 @@ var detector21 = /* @__PURE__ */ __name((txt) => {
183941
184002
  return /^\s*mindmap/.test(txt);
183942
184003
  }, "detector");
183943
184004
  var loader21 = /* @__PURE__ */ __name(async () => {
183944
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_mindmap_definition_LN4V7U3C(), mindmap_definition_LN4V7U3C_exports));
184005
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_mindmap_definition_FAOFIHXS(), mindmap_definition_FAOFIHXS_exports));
183945
184006
  return { id: id21, diagram: diagram210 };
183946
184007
  }, "loader");
183947
184008
  var plugin19 = {
@@ -183955,7 +184016,7 @@ var detector22 = /* @__PURE__ */ __name((txt) => {
183955
184016
  return /^\s*kanban/.test(txt);
183956
184017
  }, "detector");
183957
184018
  var loader222 = /* @__PURE__ */ __name(async () => {
183958
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_kanban_definition_HUTT4EX6(), kanban_definition_HUTT4EX6_exports));
184019
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_kanban_definition_27J2QSJJ(), kanban_definition_27J2QSJJ_exports));
183959
184020
  return { id: id222, diagram: diagram210 };
183960
184021
  }, "loader");
183961
184022
  var plugin20 = {
@@ -183969,7 +184030,7 @@ var detector23 = /* @__PURE__ */ __name((txt) => {
183969
184030
  return /^\s*sankey(-beta)?/.test(txt);
183970
184031
  }, "detector");
183971
184032
  var loader23 = /* @__PURE__ */ __name(async () => {
183972
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_sankeyDiagram_HTMAVEWB(), sankeyDiagram_HTMAVEWB_exports));
184033
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_sankeyDiagram_W5VNT64P(), sankeyDiagram_W5VNT64P_exports));
183973
184034
  return { id: id23, diagram: diagram210 };
183974
184035
  }, "loader");
183975
184036
  var plugin21 = {
@@ -183983,7 +184044,7 @@ var detector24 = /* @__PURE__ */ __name((txt) => {
183983
184044
  return /^\s*packet(-beta)?/.test(txt);
183984
184045
  }, "detector");
183985
184046
  var loader24 = /* @__PURE__ */ __name(async () => {
183986
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_diagram_NH7WQ7WH(), diagram_NH7WQ7WH_exports));
184047
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_diagram_LBJQPF4R(), diagram_LBJQPF4R_exports));
183987
184048
  return { id: id24, diagram: diagram210 };
183988
184049
  }, "loader");
183989
184050
  var packet = {
@@ -183996,7 +184057,7 @@ var detector25 = /* @__PURE__ */ __name((txt) => {
183996
184057
  return /^\s*radar-beta/.test(txt);
183997
184058
  }, "detector");
183998
184059
  var loader25 = /* @__PURE__ */ __name(async () => {
183999
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_diagram_WEI45ONY(), diagram_WEI45ONY_exports));
184060
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_diagram_UB23O5K3(), diagram_UB23O5K3_exports));
184000
184061
  return { id: id25, diagram: diagram210 };
184001
184062
  }, "loader");
184002
184063
  var radar = {
@@ -184009,7 +184070,7 @@ var detector26 = /* @__PURE__ */ __name((txt) => {
184009
184070
  return /^\s*block(-beta)?/.test(txt);
184010
184071
  }, "detector");
184011
184072
  var loader26 = /* @__PURE__ */ __name(async () => {
184012
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_blockDiagram_677ZJIJ3(), blockDiagram_677ZJIJ3_exports));
184073
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_blockDiagram_VBNYF7ZC(), blockDiagram_VBNYF7ZC_exports));
184013
184074
  return { id: id26, diagram: diagram210 };
184014
184075
  }, "loader");
184015
184076
  var plugin22 = {
@@ -184023,7 +184084,7 @@ var detector27 = /* @__PURE__ */ __name((txt) => {
184023
184084
  return /^\s*treeView-beta/.test(txt);
184024
184085
  }, "detector");
184025
184086
  var loader27 = /* @__PURE__ */ __name(async () => {
184026
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_diagram_OA4YK3LP(), diagram_OA4YK3LP_exports));
184087
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_diagram_7IWD3JNH(), diagram_7IWD3JNH_exports));
184027
184088
  return { id: id27, diagram: diagram210 };
184028
184089
  }, "loader");
184029
184090
  var plugin23 = {
@@ -184037,7 +184098,7 @@ var detector28 = /* @__PURE__ */ __name((txt) => {
184037
184098
  return /^\s*architecture/.test(txt);
184038
184099
  }, "detector");
184039
184100
  var loader28 = /* @__PURE__ */ __name(async () => {
184040
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_architectureDiagram_ZJ3FMSHR(), architectureDiagram_ZJ3FMSHR_exports));
184101
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_architectureDiagram_T3A2C74G(), architectureDiagram_T3A2C74G_exports));
184041
184102
  return { id: id28, diagram: diagram210 };
184042
184103
  }, "loader");
184043
184104
  var architecture = {
@@ -184051,7 +184112,7 @@ var detector29 = /* @__PURE__ */ __name((txt) => {
184051
184112
  return /^\s*eventmodeling/.test(txt);
184052
184113
  }, "detector");
184053
184114
  var loader29 = /* @__PURE__ */ __name(async () => {
184054
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_diagram_FQU43EPY(), diagram_FQU43EPY_exports));
184115
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_diagram_B4RE2ZJO(), diagram_B4RE2ZJO_exports));
184055
184116
  return { id: id29, diagram: diagram210 };
184056
184117
  }, "loader");
184057
184118
  var plugin24 = {
@@ -184065,7 +184126,7 @@ var detector30 = /* @__PURE__ */ __name((txt) => {
184065
184126
  return /^\s*ishikawa(-beta)?\b/i.test(txt);
184066
184127
  }, "detector");
184067
184128
  var loader30 = /* @__PURE__ */ __name(async () => {
184068
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_ishikawaDiagram_FXEZZL3T(), ishikawaDiagram_FXEZZL3T_exports));
184129
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_ishikawaDiagram_WSZJBQD7(), ishikawaDiagram_WSZJBQD7_exports));
184069
184130
  return { id: id30, diagram: diagram210 };
184070
184131
  }, "loader");
184071
184132
  var ishikawa = {
@@ -184078,7 +184139,7 @@ var detector31 = /* @__PURE__ */ __name((txt) => {
184078
184139
  return /^\s*venn-beta/.test(txt);
184079
184140
  }, "detector");
184080
184141
  var loader31 = /* @__PURE__ */ __name(async () => {
184081
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_vennDiagram_L72KCM5P(), vennDiagram_L72KCM5P_exports));
184142
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_vennDiagram_T6HMQDX7(), vennDiagram_T6HMQDX7_exports));
184082
184143
  return { id: id31, diagram: diagram210 };
184083
184144
  }, "loader");
184084
184145
  var plugin25 = {
@@ -184092,7 +184153,7 @@ var detector32 = /* @__PURE__ */ __name((txt) => {
184092
184153
  return /^\s*treemap/.test(txt);
184093
184154
  }, "detector");
184094
184155
  var loader32 = /* @__PURE__ */ __name(async () => {
184095
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_diagram_G47NLZAW(), diagram_G47NLZAW_exports));
184156
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_diagram_Q27KOJAE(), diagram_Q27KOJAE_exports));
184096
184157
  return { id: id322, diagram: diagram210 };
184097
184158
  }, "loader");
184098
184159
  var treemap = {
@@ -184105,7 +184166,7 @@ var detector33 = /* @__PURE__ */ __name((text4) => {
184105
184166
  return /^\s*wardley-beta/i.test(text4);
184106
184167
  }, "detector");
184107
184168
  var loader33 = /* @__PURE__ */ __name(async () => {
184108
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_wardleyDiagram_EHGQE667(), wardleyDiagram_EHGQE667_exports));
184169
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_wardleyDiagram_T6FBY63Y(), wardleyDiagram_T6FBY63Y_exports));
184109
184170
  return { id: id33, diagram: diagram210 };
184110
184171
  }, "loader");
184111
184172
  var plugin26 = {
@@ -184119,7 +184180,7 @@ var detector34 = /* @__PURE__ */ __name((txt) => {
184119
184180
  return /^\s*cynefin-beta(?:[\s:]|$)/.test(txt);
184120
184181
  }, "detector");
184121
184182
  var loader34 = /* @__PURE__ */ __name(async () => {
184122
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_cynefinDiagram_TSTJHNR4(), cynefinDiagram_TSTJHNR4_exports));
184183
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_cynefinDiagram_MW4NZA55(), cynefinDiagram_MW4NZA55_exports));
184123
184184
  return { id: id34, diagram: diagram210 };
184124
184185
  }, "loader");
184125
184186
  var cynefin = {
@@ -184132,7 +184193,7 @@ var detector35 = /* @__PURE__ */ __name((txt) => {
184132
184193
  return /^\s*railroad-beta/i.test(txt);
184133
184194
  }, "detector");
184134
184195
  var loader35 = /* @__PURE__ */ __name(async () => {
184135
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_railroadDiagram_RFXS5EU6(), railroadDiagram_RFXS5EU6_exports));
184196
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_railroadDiagram_AXF67PYL(), railroadDiagram_AXF67PYL_exports));
184136
184197
  return { id: id35, diagram: diagram210 };
184137
184198
  }, "loader");
184138
184199
  var railroad = {
@@ -184145,7 +184206,7 @@ var detector36 = /* @__PURE__ */ __name((txt) => {
184145
184206
  return /^\s*railroad-ebnf-beta/i.test(txt);
184146
184207
  }, "detector");
184147
184208
  var loader36 = /* @__PURE__ */ __name(async () => {
184148
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_ebnfDiagram_CCIWWBDH(), ebnfDiagram_CCIWWBDH_exports));
184209
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_ebnfDiagram_BXEA7PRR(), ebnfDiagram_BXEA7PRR_exports));
184149
184210
  return { id: id36, diagram: diagram210 };
184150
184211
  }, "loader");
184151
184212
  var railroadEbnf = {
@@ -184158,7 +184219,7 @@ var detector37 = /* @__PURE__ */ __name((txt) => {
184158
184219
  return /^\s*railroad-abnf-beta/i.test(txt);
184159
184220
  }, "detector");
184160
184221
  var loader37 = /* @__PURE__ */ __name(async () => {
184161
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_abnfDiagram_VRR7QNED(), abnfDiagram_VRR7QNED_exports));
184222
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_abnfDiagram_N423BO3Z(), abnfDiagram_N423BO3Z_exports));
184162
184223
  return { id: id37, diagram: diagram210 };
184163
184224
  }, "loader");
184164
184225
  var railroadAbnf = {
@@ -184171,7 +184232,7 @@ var detector38 = /* @__PURE__ */ __name((txt) => {
184171
184232
  return /^\s*railroad-peg-beta/i.test(txt);
184172
184233
  }, "detector");
184173
184234
  var loader38 = /* @__PURE__ */ __name(async () => {
184174
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_pegDiagram_2B236MQR(), pegDiagram_2B236MQR_exports));
184235
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_pegDiagram_VL7TDLO6(), pegDiagram_VL7TDLO6_exports));
184175
184236
  return { id: id38, diagram: diagram210 };
184176
184237
  }, "loader");
184177
184238
  var railroadPeg = {
@@ -184552,7 +184613,26 @@ var compileCSS = /* @__PURE__ */ __name((namespace, css) => {
184552
184613
  return;
184553
184614
  }
184554
184615
  element3.props = element3.props.map((prop) => {
184555
- if (!prop.startsWith(namespace)) {
184616
+ if (prop === namespace && Array.isArray(element3.children) && element3.children.every((child) => {
184617
+ if (child.type !== "decl") {
184618
+ return false;
184619
+ }
184620
+ const allowedProps = /* @__PURE__ */ new Set([
184621
+ "font-family",
184622
+ "font-size",
184623
+ "fill"
184624
+ ]);
184625
+ return allowedProps.has(child.props);
184626
+ })) {
184627
+ return prop;
184628
+ }
184629
+ const alreadyNamespaced = (
184630
+ // If the prop already starts with the namespace followed by a space or >, then it's already namespaced.
184631
+ (prop.startsWith(`${namespace} `) || prop.startsWith(`${namespace}>`)) && // Column combinators are not yet widely supported, it's not yet compressed to `${namespace}||`,
184632
+ // so we need to add an extra check for that
184633
+ !prop.startsWith(`${namespace} ||`)
184634
+ );
184635
+ if (!alreadyNamespaced) {
184556
184636
  return `${namespace} ${prop}`;
184557
184637
  }
184558
184638
  return prop;
@@ -184702,12 +184782,12 @@ var render7 = /* @__PURE__ */ __name(async function(id39, text4, svgContainingEl
184702
184782
  style1.innerHTML = rules2;
184703
184783
  svg2.insertBefore(style1, firstChild);
184704
184784
  try {
184705
- await diag.renderer.draw(text4, id39, "11.16.0", diag);
184785
+ await diag.renderer.draw(text4, id39, "11.16.1", diag);
184706
184786
  } catch (e3) {
184707
184787
  if (config3.suppressErrorRendering) {
184708
184788
  removeTempElements();
184709
184789
  } else {
184710
- errorRenderer_default.draw(text4, id39, "11.16.0");
184790
+ errorRenderer_default.draw(text4, id39, "11.16.1");
184711
184791
  }
184712
184792
  throw e3;
184713
184793
  }
@@ -184776,6 +184856,10 @@ var mermaidAPI = Object.freeze({
184776
184856
  getDiagramFromText,
184777
184857
  initialize,
184778
184858
  getConfig,
184859
+ /**
184860
+ * @deprecated This function does nothing. It will be overwritten by the next
184861
+ * call to {@link render} or {@link parse}.
184862
+ */
184779
184863
  setConfig,
184780
184864
  getSiteConfig,
184781
184865
  updateSiteConfig,
@@ -185473,7 +185557,7 @@ export {
185473
185557
  /*! Bundled license information:
185474
185558
 
185475
185559
  dompurify/dist/purify.es.mjs:
185476
- (*! @license DOMPurify 3.4.12 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.4.12/LICENSE *)
185560
+ (*! @license DOMPurify 3.4.13 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.4.13/LICENSE *)
185477
185561
 
185478
185562
  mermaid/dist/chunks/mermaid.core/chunk-ZIRB5QZD.mjs:
185479
185563
  (*! Bundled license information: