@forsakringskassan/docs-generator 3.5.0 → 3.6.1

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();
@@ -65442,7 +65481,7 @@ function getModule(type3, name, moduleType, moduleName) {
65442
65481
  keys: [type3, name, moduleType, moduleName]
65443
65482
  });
65444
65483
  }
65445
- var _window, navigator2, typeofstr, typeofobj, typeoffn, typeofhtmlele, instanceStr, string, fn$6, array2, plainObject, object, number$1, integer, htmlElement, elementOrCollection, element, collection, core2, stylesheet, event, emptyString, domElement, boundingBox, promise, ms, memoize3, camel2dash, dash2camel, prependCamel, capitalize, endsWith, number6, rgba3, rgbaNoBackRefs, hsla2, hslaNoBackRefs, hex3, hex6, ascending3, descending2, extend3, hex2tuple, hsl2tuple, rgb2tuple, colorname2tuple, color2tuple, colors, setMap, getMap, commonjsGlobal, isObject_12, hasRequiredIsObject, _freeGlobal, hasRequired_freeGlobal, _root, hasRequired_root, now_1, hasRequiredNow, _trimmedEndIndex, hasRequired_trimmedEndIndex, _baseTrim, hasRequired_baseTrim, _Symbol, hasRequired_Symbol, _getRawTag, hasRequired_getRawTag, _objectToString, hasRequired_objectToString, _baseGetTag, hasRequired_baseGetTag, isObjectLike_1, hasRequiredIsObjectLike, isSymbol_1, hasRequiredIsSymbol, toNumber_1, hasRequiredToNumber, debounce_1, hasRequiredDebounce, debounceExports, debounce, performance$1, pnow, raf, requestAnimationFrame2, performanceNow, DEFAULT_HASH_SEED, K4, DEFAULT_HASH_SEED_ALT, hashIterableInts, hashInt, hashIntAlt, combineHashes, combineHashesArray, hashArrays, hashIntsArray, hashString2, hashStrings, hashStringsArray, movePointByBoxAspect, warningsEnabled, warnSupported, traceSupported, MAX_INT$1, trueify, falsify, zeroify, noop$1, error, warnings, warn, clone5, copy3, copyArray2, uuid, _staticEmptyObject, staticEmptyObject, defaults$g, removeFromArray, clearArray, push, getPrefixedProperty, setPrefixedProperty, ObjectMap, Map$1, undef, ObjectSet, Set$1, Element, defineSearch, elesfn$v, heap$2, heap$1, hasRequiredHeap$1, heap, hasRequiredHeap, heapExports, Heap, dijkstraDefaults, elesfn$u, elesfn$t, aStarDefaults, elesfn$s, floydWarshallDefaults, elesfn$r, bellmanFordDefaults, elesfn$q, sqrt2, collapse, contractUntil, elesfn$p, _Math$hypot, copyPosition, modelToRenderedPosition$1, renderedToModelPosition, array2point, min5, max5, mean, median2, deg2rad, getAngleFromDisp, log22, signum, dist, sqdist, inPlaceSumNormalize, qbezierAt, qbezierPtAt, lineAt, bound, makeBoundingBox, copyBoundingBox, clearBoundingBox, updateBoundingBox, expandBoundingBoxByPoint, expandBoundingBox, expandBoundingBoxSides, assignBoundingBox, boundingBoxesIntersect, inBoundingBox, pointInBoundingBox, boundingBoxInBoundingBox, hypot, roundRectangleIntersectLine, inLineVicinity, inBezierVicinity, solveQuadratic, solveCubic, sqdistToQuadraticBezier, sqdistToFiniteLine, pointInsidePolygonPoints, pointInsidePolygon, pointInsideRoundPolygon, joinLines, expandPolygon, intersectLineEllipse, checkInEllipse, intersectLineCircle, midOfThree, finiteLinesIntersect, transformPoints, polygonIntersectLine, roundPolygonIntersectLine, shortenIntersection, generateUnitNgonPointsFitToSquare, fitPolygonToSquare, generateUnitNgonPoints, getRoundRectangleRadius, getRoundPolygonRadius, getCutRectangleCornerLength, bezierPtsToQuadCoeff, getBarrelCurveConstants, pageRankDefaults, elesfn$o, defaults$f, elesfn$n, defaults$e, elesfn$m, defaults$d, elesfn$l, defaults$c, setOptions$3, getSimilarity$1, addLoops, normalize2, mmult, expand, inflate, hasConverged, assign$2, isDuplicate, removeDuplicates, markovClustering, markovClustering$1, identity$1, absDiff, addAbsDiff, addSquaredDiff, sqrt3, maxAbsDiff, getDistance, distances, defaults$b, setOptions$2, getDist, randomCentroids, classify, buildCluster, haveValuesConverged, haveMatricesConverged, seenBefore, randomMedoids, findCost, kMeans, kMedoids, updateCentroids, updateMembership, assign$1, fuzzyCMeans, kClustering, defaults$a, linkageAliases, setOptions$1, mergeClosest, _getAllChildren, _buildDendrogram, _buildClustersFromTree, hierarchicalClustering, hierarchicalClustering$1, defaults$9, setOptions4, getSimilarity2, getPreference, findExemplars, assignClusters, assign3, affinityPropagation, affinityPropagation$1, hierholzerDefaults, elesfn$k, hopcroftTarjanBiconnected, hopcroftTarjanBiconnected$1, tarjanStronglyConnected, tarjanStronglyConnected$1, elesfn$j, STATE_PENDING, STATE_FULFILLED, STATE_REJECTED, _api, deliver, execute, execute_handlers, resolver, _resolve, Promise$1, Animation, anifn, define$3, isArray_1, hasRequiredIsArray, _isKey, hasRequired_isKey, isFunction_1, hasRequiredIsFunction, _coreJsData, hasRequired_coreJsData, _isMasked, hasRequired_isMasked, _toSource, hasRequired_toSource, _baseIsNative, hasRequired_baseIsNative, _getValue, hasRequired_getValue, _getNative, hasRequired_getNative, _nativeCreate, hasRequired_nativeCreate, _hashClear, hasRequired_hashClear, _hashDelete, hasRequired_hashDelete, _hashGet, hasRequired_hashGet, _hashHas, hasRequired_hashHas, _hashSet, hasRequired_hashSet, _Hash, hasRequired_Hash, _listCacheClear, hasRequired_listCacheClear, eq_1, hasRequiredEq, _assocIndexOf, hasRequired_assocIndexOf, _listCacheDelete, hasRequired_listCacheDelete, _listCacheGet, hasRequired_listCacheGet, _listCacheHas, hasRequired_listCacheHas, _listCacheSet, hasRequired_listCacheSet, _ListCache, hasRequired_ListCache, _Map, hasRequired_Map, _mapCacheClear, hasRequired_mapCacheClear, _isKeyable, hasRequired_isKeyable, _getMapData, hasRequired_getMapData, _mapCacheDelete, hasRequired_mapCacheDelete, _mapCacheGet, hasRequired_mapCacheGet, _mapCacheHas, hasRequired_mapCacheHas, _mapCacheSet, hasRequired_mapCacheSet, _MapCache, hasRequired_MapCache, memoize_1, hasRequiredMemoize, _memoizeCapped, hasRequired_memoizeCapped, _stringToPath, hasRequired_stringToPath, _arrayMap, hasRequired_arrayMap, _baseToString, hasRequired_baseToString, toString_1, hasRequiredToString, _castPath, hasRequired_castPath, _toKey, hasRequired_toKey, _baseGet, hasRequired_baseGet, get_1, hasRequiredGet, getExports, get4, _defineProperty, hasRequired_defineProperty, _baseAssignValue, hasRequired_baseAssignValue, _assignValue, hasRequired_assignValue, _isIndex, hasRequired_isIndex, _baseSet, hasRequired_baseSet, set_1, hasRequiredSet, setExports, set4, _copyArray, hasRequired_copyArray, toPath_1, hasRequiredToPath, toPathExports, toPath, define$2, define$1, define2, elesfn$i, elesfn$h, tokens, newQuery, Type2, stateSelectors, lookup, stateSelectorMatches, stateSelectorRegex, cleanMetaChars, replaceLastQuery, exprs, consumeExpr, consumeWhitespace, parse, toString3, parse$1, valCmp, boolCmp, existCmp, data$1, meta, match, matches$1, filter3, matches31, matching, Selector, selfn, elesfn$g, cache, elesfn$f, fn$5, elesfn$e, data3, elesfn$d, fn$4, elesfn$c, beforePositionSet, positionDef, position2, labelHalign, labelValign, labelJustification, fn$3, elesfn$b, noninf, updateBounds, updateBoundsFromBox, prefixedProperty, updateBoundsFromArrow, updateBoundsFromLabel, updateBoundsFromOutline, updateBoundsFromMiter, updateBoundsFromMiterBorder, boundingBoxImpl, getKey, getBoundingBoxPosKey, cachedBoundingBoxImpl, defBbOpts, defBbOptsKey, filledBbOpts, bounds, fn$2, elesfn$a, defineDimFns, widthHeight, ifEdge, ifEdgeRenderedPosition, ifEdgeRenderedPositions, controlPoints2, segmentPoints, sourceEndpoint, targetEndpoint, midpoint, pts, renderedName, edgePoints, dimensions, Event2, eventRegex, universalNamespace, defaults$8, defaultsKeys, emptyOpts, p2, forEachEvent, makeEventObj, forEachEventObj, emitterOptions$1, argSelector$1, elesfn$9, elesfn$8, fn$1, elesfn$7, zIndexSort, elesfn$6, defineSymbolIterator, getLayoutDimensionOptions, elesfn$5, elesfn$4, eleTakesUpSpace, eleInteractive, parentInteractive, eleVisible, edgeVisibleViaNode, elesfn$3, elesfn$2, defineDagExtremity, defineDagOneHop, defineDagAllHops, Collection, elesfn$1, corefn$9, generateSpringRK4, cubicBezier, easings, corefn$8, emitterOptions, argSelector2, elesfn, corefn$7, corefn$6, corefn$5, rendererDefaults, corefn$4, corefn$3, styfn$8, TRUE, FALSE, styfn$7, styfn$6, styfn$5, styfn$4, styfn$3, styfn$2, styfn$1, _Style, styfn, corefn$2, defaultSelectionType, corefn$1, fn2, Core, corefn, defaults$7, deprecatedOptionDefaults, getInfo, setInfo, defaults$6, defaults$5, DEBUG, defaults$4, createLayoutInfo, findLCA, _findLCA_aux, printLayoutInfo, randomizePositions, getScaleInBoundsFn, refreshPositions, step, calculateNodeForces, randomDistance, nodeRepulsion2, nodesOverlap, findClippingPoint, calculateEdgeForces, calculateGravityForces, propagateForces, updatePositions, limitForce, _updateAncestryBoundaries, separateComponents, defaults$3, defaults$2, defaults$1, defaults3, layout4, noop5, throwImgErr, BRp$f, BRp$e, BRp$d, x4, y4, v1, v22, sinA, sinA90, radDirection, drawDirection, angle, halfAngle, cRadius, lenOut, radius, limit, startX, startY, stopX, stopY, lastPoint, asVec, invertVec, calcCornerArc, AVOID_IMPOSSIBLE_BEZIER_CONSTANT, AVOID_IMPOSSIBLE_BEZIER_CONSTANT_L, BRp$c, BRp$b, BRp$a, BRp$9, lineAngleFromDelta, lineAngle, bezierAngle, BRp$8, TOO_SMALL_CUT_RECT, warnedCutRect, BRp$7, BRp$6, BRp$5, BRp$4, setGrabState, setGrabbed, setFreed, BRp$3, BRp$2, BRp$1, beforeRenderCallbacks, BaseRenderer, BR, BRp, fullFpsTime, defs, ElementTextureCacheLookup, minTxrH, txrStepH, minLvl$1, maxLvl$1, maxZoom$1, eleTxrSpacing, defTxrWidth, maxTxrW, maxTxrH, minUtility, maxFullness, maxFullnessChecks, deqCost$1, deqAvgCost$1, deqNoDrawCost$1, deqFastCost$1, deqRedrawThreshold$1, maxDeqSize$1, getTxrReasons, initDefaults, ElementTextureCache, ETCp, defNumLayers, minLvl, maxLvl, maxZoom2, deqRedrawThreshold, refineEleDebounceTime, deqCost, deqAvgCost, deqNoDrawCost, deqFastCost, maxDeqSize, invalidThreshold, maxLayerArea, maxLayerDim, useHighQualityEleTxrReqs, LayeredTextureCache, LTCp, layerIdPool, MAX_INT, CRp$b, impl, CRp$a, getZeroRotation, getLabelRotation, getSourceLabelRotation, getTargetLabelRotation, getOpacity, getTextOpacity, CRp$9, drawEdgeOverlayUnderlay, CRp$8, CRp$7, CRp$6, drawNodeOverlayUnderlay, CRp$5, motionBlurDelay, fpsHeight, ARRAY_TYPE, Atlas, AtlasCollection, AtlasManager, AtlasBatchManager, circleSD, rectangleSD, roundRectangleSD, ellipseSD, RENDER_TARGET, TEX_PICKING_MODE, TEXTURE, EDGE_STRAIGHT, EDGE_CURVE_SEGMENT, EDGE_ARROW, RECTANGLE, ROUND_RECTANGLE, BOTTOM_ROUND_RECTANGLE, ELLIPSE, ElementDrawingWebGL, CRp$4, getStyleKeysForLabel, getBoundingBoxForLabel, CRp$3, sin0, cos0, sin2, cos2, ellipseStepSize, i4, CRp$2, CRp$1, CR, CRp, pathsImpld, renderer2, incExts, extensions, modules, extension2, _Stylesheet, sheetfn, version2, cytoscape2;
65484
+ var _window, navigator2, typeofstr, typeofobj, typeoffn, typeofhtmlele, instanceStr, string, fn$6, array2, plainObject, object, number$1, integer, htmlElement, elementOrCollection, element, collection, core2, stylesheet, event, emptyString, domElement, boundingBox, promise, ms, memoize3, camel2dash, dash2camel, prependCamel, capitalize, endsWith, number6, rgba3, rgbaNoBackRefs, hsla2, hslaNoBackRefs, hex3, hex6, ascending3, descending2, extend3, hex2tuple, hsl2tuple, rgb2tuple, colorname2tuple, color2tuple, colors, setMap, getMap, commonjsGlobal, isObject_12, hasRequiredIsObject, _freeGlobal, hasRequired_freeGlobal, _root, hasRequired_root, now_1, hasRequiredNow, _trimmedEndIndex, hasRequired_trimmedEndIndex, _baseTrim, hasRequired_baseTrim, _Symbol, hasRequired_Symbol, _getRawTag, hasRequired_getRawTag, _objectToString, hasRequired_objectToString, _baseGetTag, hasRequired_baseGetTag, isObjectLike_1, hasRequiredIsObjectLike, isSymbol_1, hasRequiredIsSymbol, toNumber_1, hasRequiredToNumber, debounce_1, hasRequiredDebounce, debounceExports, debounce, performance$1, pnow, raf, requestAnimationFrame2, performanceNow, DEFAULT_HASH_SEED, K4, DEFAULT_HASH_SEED_ALT, hashIterableInts, hashInt, hashIntAlt, combineHashes, combineHashesArray, hashArrays, hashIntsArray, hashString2, hashStrings, hashStringsArray, movePointByBoxAspect, warningsEnabled, warnSupported, traceSupported, MAX_INT$1, trueify, falsify, zeroify, noop$1, error, warnings, warn, clone5, copy3, copyArray2, uuid, _staticEmptyObject, staticEmptyObject, defaults$g, removeFromArray, clearArray, push, getPrefixedProperty, setPrefixedProperty, ObjectMap, Map$1, undef, ObjectSet, Set$1, Element, defineSearch, elesfn$v, heap$2, heap$1, hasRequiredHeap$1, heap, hasRequiredHeap, heapExports, Heap, dijkstraDefaults, elesfn$u, elesfn$t, aStarDefaults, elesfn$s, floydWarshallDefaults, elesfn$r, bellmanFordDefaults, elesfn$q, sqrt2, collapse, contractUntil, elesfn$p, _Math$hypot, copyPosition, modelToRenderedPosition$1, renderedToModelPosition, array2point, min5, max5, mean, median2, _gcd, gcdMultipleZeroIfNonInt, deg2rad, getAngleFromDisp, log22, signum, dist, sqdist, inPlaceSumNormalize, qbezierAt, qbezierPtAt, lineAt, bound, makeBoundingBox, copyBoundingBox, clearBoundingBox, updateBoundingBox, expandBoundingBoxByPoint, expandBoundingBox, expandBoundingBoxSides, assignBoundingBox, boundingBoxesIntersect, inBoundingBox, pointInBoundingBox, boundingBoxInBoundingBox, hypot, roundRectangleIntersectLine, inLineVicinity, inBezierVicinity, solveQuadratic, solveCubic, sqdistToQuadraticBezier, sqdistToFiniteLine, pointInsidePolygonPoints, pointInsidePolygon, pointInsideRoundPolygon, joinLines, expandPolygon, intersectLineEllipse, checkInEllipse, intersectLineCircle, midOfThree, finiteLinesIntersect, transformPoints, polygonIntersectLine, roundPolygonIntersectLine, shortenIntersection, generateUnitNgonPointsFitToSquare, fitPolygonToSquare, generateUnitNgonPoints, getRoundRectangleRadius, getRoundPolygonRadius, getCutRectangleCornerLength, bezierPtsToQuadCoeff, getBarrelCurveConstants, pageRankDefaults, elesfn$o, defaults$f, elesfn$n, defaults$e, elesfn$m, defaults$d, elesfn$l, defaults$c, setOptions$3, getSimilarity$1, addLoops, normalize2, mmult, expand, inflate, hasConverged, assign$2, isDuplicate, removeDuplicates, markovClustering, markovClustering$1, identity$1, absDiff, addAbsDiff, addSquaredDiff, sqrt3, maxAbsDiff, getDistance, distances, defaults$b, setOptions$2, getDist, randomCentroids, classify, buildCluster, haveValuesConverged, haveMatricesConverged, seenBefore, randomMedoids, findCost, kMeans, kMedoids, updateCentroids, updateMembership, assign$1, fuzzyCMeans, kClustering, defaults$a, linkageAliases, setOptions$1, mergeClosest, _getAllChildren, _buildDendrogram, _buildClustersFromTree, hierarchicalClustering, hierarchicalClustering$1, defaults$9, setOptions4, getSimilarity2, getPreference, findExemplars, assignClusters, assign3, affinityPropagation, affinityPropagation$1, hierholzerDefaults, elesfn$k, hopcroftTarjanBiconnected, hopcroftTarjanBiconnected$1, tarjanStronglyConnected, tarjanStronglyConnected$1, elesfn$j, STATE_PENDING, STATE_FULFILLED, STATE_REJECTED, _api, deliver, execute, execute_handlers, resolver, _resolve, Promise$1, Animation, anifn, define$3, isArray_1, hasRequiredIsArray, _isKey, hasRequired_isKey, isFunction_1, hasRequiredIsFunction, _coreJsData, hasRequired_coreJsData, _isMasked, hasRequired_isMasked, _toSource, hasRequired_toSource, _baseIsNative, hasRequired_baseIsNative, _getValue, hasRequired_getValue, _getNative, hasRequired_getNative, _nativeCreate, hasRequired_nativeCreate, _hashClear, hasRequired_hashClear, _hashDelete, hasRequired_hashDelete, _hashGet, hasRequired_hashGet, _hashHas, hasRequired_hashHas, _hashSet, hasRequired_hashSet, _Hash, hasRequired_Hash, _listCacheClear, hasRequired_listCacheClear, eq_1, hasRequiredEq, _assocIndexOf, hasRequired_assocIndexOf, _listCacheDelete, hasRequired_listCacheDelete, _listCacheGet, hasRequired_listCacheGet, _listCacheHas, hasRequired_listCacheHas, _listCacheSet, hasRequired_listCacheSet, _ListCache, hasRequired_ListCache, _Map, hasRequired_Map, _mapCacheClear, hasRequired_mapCacheClear, _isKeyable, hasRequired_isKeyable, _getMapData, hasRequired_getMapData, _mapCacheDelete, hasRequired_mapCacheDelete, _mapCacheGet, hasRequired_mapCacheGet, _mapCacheHas, hasRequired_mapCacheHas, _mapCacheSet, hasRequired_mapCacheSet, _MapCache, hasRequired_MapCache, memoize_1, hasRequiredMemoize, _memoizeCapped, hasRequired_memoizeCapped, _stringToPath, hasRequired_stringToPath, _arrayMap, hasRequired_arrayMap, _baseToString, hasRequired_baseToString, toString_1, hasRequiredToString, _castPath, hasRequired_castPath, _toKey, hasRequired_toKey, _baseGet, hasRequired_baseGet, get_1, hasRequiredGet, getExports, get4, _defineProperty, hasRequired_defineProperty, _baseAssignValue, hasRequired_baseAssignValue, _assignValue, hasRequired_assignValue, _isIndex, hasRequired_isIndex, _baseSet, hasRequired_baseSet, set_1, hasRequiredSet, setExports, set4, _copyArray, hasRequired_copyArray, toPath_1, hasRequiredToPath, toPathExports, toPath, define$2, define$1, define2, elesfn$i, elesfn$h, tokens, newQuery, Type2, stateSelectors, lookup, stateSelectorMatches, stateSelectorRegex, cleanMetaChars, replaceLastQuery, exprs, consumeExpr, consumeWhitespace, parse, toString3, parse$1, valCmp, boolCmp, existCmp, data$1, meta, match, matches$1, filter3, matches31, matching, Selector, selfn, elesfn$g, cache, elesfn$f, fn$5, elesfn$e, data3, elesfn$d, fn$4, elesfn$c, beforePositionSet, positionDef, position2, labelHalign, labelValign, labelJustification, fn$3, elesfn$b, noninf, updateBounds, updateBoundsFromBox, prefixedProperty, updateBoundsFromArrow, updateBoundsFromLabel, updateBoundsFromOutline, updateBoundsFromMiter, updateBoundsFromMiterBorder, boundingBoxImpl, getKey, getBoundingBoxPosKey, cachedBoundingBoxImpl, defBbOpts, defBbOptsKey, filledBbOpts, bounds, fn$2, elesfn$a, defineDimFns, widthHeight, ifEdge, ifEdgeRenderedPosition, ifEdgeRenderedPositions, controlPoints2, segmentPoints, sourceEndpoint, targetEndpoint, midpoint, pts, renderedName, edgePoints, dimensions, Event2, eventRegex, universalNamespace, defaults$8, defaultsKeys, emptyOpts, p2, forEachEvent, makeEventObj, forEachEventObj, emitterOptions$1, argSelector$1, elesfn$9, elesfn$8, fn$1, elesfn$7, zIndexSort, elesfn$6, defineSymbolIterator, getLayoutDimensionOptions, elesfn$5, elesfn$4, eleTakesUpSpace, eleInteractive, parentInteractive, eleVisible, edgeVisibleViaNode, elesfn$3, elesfn$2, defineDagExtremity, defineDagOneHop, defineDagAllHops, Collection, elesfn$1, corefn$9, generateSpringRK4, cubicBezier, easings, corefn$8, emitterOptions, argSelector2, elesfn, corefn$7, corefn$6, corefn$5, rendererDefaults, corefn$4, corefn$3, styfn$8, TRUE, FALSE, styfn$7, styfn$6, styfn$5, styfn$4, styfn$3, styfn$2, styfn$1, _Style, styfn, corefn$2, defaultSelectionType, corefn$1, fn2, Core, corefn, defaults$7, deprecatedOptionDefaults, getInfo, setInfo, defaults$6, defaults$5, DEBUG, defaults$4, createLayoutInfo, findLCA, _findLCA_aux, printLayoutInfo, randomizePositions, getScaleInBoundsFn, refreshPositions, step, calculateNodeForces, randomDistance, nodeRepulsion2, nodesOverlap, findClippingPoint, calculateEdgeForces, calculateGravityForces, propagateForces, updatePositions, limitForce, _updateAncestryBoundaries, separateComponents, defaults$3, defaults$2, defaults$1, defaults3, layout4, noop5, throwImgErr, BRp$f, BRp$e, BRp$d, x4, y4, v1, v22, sinA, sinA90, radDirection, drawDirection, angle, halfAngle, cRadius, lenOut, radius, limit, startX, startY, stopX, stopY, lastPoint, asVec, invertVec, calcCornerArc, AVOID_IMPOSSIBLE_BEZIER_CONSTANT, AVOID_IMPOSSIBLE_BEZIER_CONSTANT_L, BRp$c, BRp$b, BRp$a, BRp$9, lineAngleFromDelta, lineAngle, bezierAngle, BRp$8, TOO_SMALL_CUT_RECT, warnedCutRect, BRp$7, BRp$6, BRp$5, BRp$4, setGrabState, setGrabbed, setFreed, BRp$3, BRp$2, BRp$1, beforeRenderCallbacks, BaseRenderer, BR, BRp, fullFpsTime, defs, ElementTextureCacheLookup, minTxrH, txrStepH, minLvl$1, maxLvl$1, maxZoom$1, eleTxrSpacing, defTxrWidth, maxTxrW, maxTxrH, minUtility, maxFullness, maxFullnessChecks, deqCost$1, deqAvgCost$1, deqNoDrawCost$1, deqFastCost$1, deqRedrawThreshold$1, maxDeqSize$1, getTxrReasons, initDefaults, ElementTextureCache, ETCp, defNumLayers, minLvl, maxLvl, maxZoom2, deqRedrawThreshold, refineEleDebounceTime, deqCost, deqAvgCost, deqNoDrawCost, deqFastCost, maxDeqSize, invalidThreshold, maxLayerArea, maxLayerDim, useHighQualityEleTxrReqs, LayeredTextureCache, LTCp, layerIdPool, MAX_INT, CRp$b, impl, CRp$a, getZeroRotation, getLabelRotation, getSourceLabelRotation, getTargetLabelRotation, getOpacity, getTextOpacity, CRp$9, drawEdgeOverlayUnderlay, CRp$8, CRp$7, CRp$6, drawNodeOverlayUnderlay, CRp$5, motionBlurDelay, fpsHeight, ARRAY_TYPE, Atlas, AtlasCollection, AtlasManager, AtlasBatchManager, circleSD, rectangleSD, roundRectangleSD, ellipseSD, RENDER_TARGET, TEX_PICKING_MODE, TEXTURE, EDGE_STRAIGHT, EDGE_CURVE_SEGMENT, EDGE_ARROW, RECTANGLE, ROUND_RECTANGLE, BOTTOM_ROUND_RECTANGLE, ELLIPSE, ElementDrawingWebGL, CRp$4, getStyleKeysForLabel, getBoundingBoxForLabel, CRp$3, sin0, cos0, sin2, cos2, ellipseStepSize, i4, CRp$2, CRp$1, CR, CRp, pathsImpld, renderer2, incExts, extensions, modules, extension2, _Stylesheet, sheetfn, version2, cytoscape2;
65446
65485
  var init_cytoscape_esm = __esm({
65447
65486
  "node_modules/cytoscape/dist/cytoscape.esm.mjs"() {
65448
65487
  _window = typeof window === "undefined" ? null : window;
@@ -66785,6 +66824,7 @@ var init_cytoscape_esm = __esm({
66785
66824
  if (tempScore < gScore[wid]) {
66786
66825
  gScore[wid] = tempScore;
66787
66826
  fScore[wid] = tempScore + heuristic2(w4);
66827
+ openSet.updateItem(w4);
66788
66828
  cameFrom[wid] = cMin;
66789
66829
  cameFromEdge[wid] = e3;
66790
66830
  }
@@ -67312,6 +67352,23 @@ var init_cytoscape_esm = __esm({
67312
67352
  return (arr[mid - 1 + off] + arr[mid + off]) / 2;
67313
67353
  }
67314
67354
  };
67355
+ _gcd = function gcd(a2, b3) {
67356
+ if (b3 === 0) {
67357
+ return a2;
67358
+ }
67359
+ return _gcd(b3, a2 % b3);
67360
+ };
67361
+ gcdMultipleZeroIfNonInt = function gcdMultipleZeroIfNonInt2(arr) {
67362
+ var out = arr[0];
67363
+ for (var i5 = 0; i5 < arr.length; i5++) {
67364
+ if (!integer(arr[i5])) {
67365
+ return 0;
67366
+ } else if (i5 > 0) {
67367
+ out = _gcd(out, arr[i5]);
67368
+ }
67369
+ }
67370
+ return out;
67371
+ };
67315
67372
  deg2rad = function deg2rad2(deg) {
67316
67373
  return Math.PI * deg / 180;
67317
67374
  };
@@ -85243,14 +85300,6 @@ var init_cytoscape_esm = __esm({
85243
85300
  var wheelDeltaN = 4;
85244
85301
  var inaccurateScrollDevice;
85245
85302
  var inaccurateScrollFactor = 1e5;
85246
- var allAreDivisibleBy = function allAreDivisibleBy2(list, factor) {
85247
- for (var i5 = 0; i5 < list.length; i5++) {
85248
- if (list[i5] % factor !== 0) {
85249
- return false;
85250
- }
85251
- }
85252
- return true;
85253
- };
85254
85303
  var allAreSameMagnitude = function allAreSameMagnitude2(list) {
85255
85304
  var firstMag = Math.abs(list[0]);
85256
85305
  for (var i5 = 1; i5 < list.length; i5++) {
@@ -85275,19 +85324,22 @@ var init_cytoscape_esm = __esm({
85275
85324
  }
85276
85325
  if (inaccurateScrollDevice == null) {
85277
85326
  if (wheelDeltas.length >= wheelDeltaN) {
85327
+ inaccurateScrollDevice = false;
85278
85328
  var wds = wheelDeltas;
85279
- inaccurateScrollDevice = allAreDivisibleBy(wds, 5);
85280
- if (!inaccurateScrollDevice) {
85281
- var firstMag = Math.abs(wds[0]);
85282
- inaccurateScrollDevice = allAreSameMagnitude(wds) && firstMag > 5;
85283
- }
85284
- if (inaccurateScrollDevice) {
85285
- for (var i5 = 0; i5 < wds.length; i5++) {
85286
- inaccurateScrollFactor = Math.min(Math.abs(wds[i5]), inaccurateScrollFactor);
85329
+ if (wds[0] >= 5) {
85330
+ var factor;
85331
+ if (allAreSameMagnitude(wds)) {
85332
+ factor = wds[0];
85333
+ } else {
85334
+ factor = gcdMultipleZeroIfNonInt(wds);
85335
+ }
85336
+ if (factor > 1) {
85337
+ inaccurateScrollDevice = true;
85338
+ inaccurateScrollFactor = factor;
85287
85339
  }
85288
85340
  }
85289
85341
  } else {
85290
- wheelDeltas.push(delta);
85342
+ wheelDeltas.push(Math.abs(delta));
85291
85343
  clamp2 = true;
85292
85344
  }
85293
85345
  } else if (inaccurateScrollDevice) {
@@ -85712,10 +85764,14 @@ var init_cytoscape_esm = __esm({
85712
85764
  r2.redrawHint("drag", true);
85713
85765
  r2.redrawHint("eles", true);
85714
85766
  _start.unactivate().emit(makeEvent("freeon"));
85715
- draggedEles.emit(makeEvent("free"));
85767
+ if (draggedEles) {
85768
+ draggedEles.emit(makeEvent("free"));
85769
+ }
85716
85770
  if (r2.dragData.didDrag) {
85717
85771
  _start.emit(makeEvent("dragfreeon"));
85718
- draggedEles.emit(makeEvent("dragfree"));
85772
+ if (draggedEles) {
85773
+ draggedEles.emit(makeEvent("dragfree"));
85774
+ }
85719
85775
  }
85720
85776
  }
85721
85777
  cy.viewport({
@@ -86195,12 +86251,15 @@ var init_cytoscape_esm = __esm({
86195
86251
  name,
86196
86252
  points,
86197
86253
  getOrCreateCorners: function getOrCreateCorners(centerX, centerY, width3, height2, cornerRadius, rs, field) {
86198
- if (rs[field] !== void 0 && rs[field + "-cx"] === centerX && rs[field + "-cy"] === centerY) {
86254
+ if (rs[field] !== void 0 && rs[field + "-cx"] === centerX && rs[field + "-cy"] === centerY && rs[field + "-w"] === width3 && rs[field + "-h"] === height2 && rs[field + "-corner-radius"] === cornerRadius) {
86199
86255
  return rs[field];
86200
86256
  }
86201
86257
  rs[field] = new Array(points.length / 2);
86202
86258
  rs[field + "-cx"] = centerX;
86203
86259
  rs[field + "-cy"] = centerY;
86260
+ rs[field + "-w"] = width3;
86261
+ rs[field + "-h"] = height2;
86262
+ rs[field + "-corner-radius"] = cornerRadius;
86204
86263
  var halfW = width3 / 2;
86205
86264
  var halfH = height2 / 2;
86206
86265
  cornerRadius = cornerRadius === "auto" ? getRoundPolygonRadius(width3, height2) : cornerRadius;
@@ -91966,7 +92025,7 @@ var init_cytoscape_esm = __esm({
91966
92025
  }
91967
92026
  return style4;
91968
92027
  };
91969
- version2 = "3.34.0";
92028
+ version2 = "3.34.1";
91970
92029
  cytoscape2 = function cytoscape3(options2) {
91971
92030
  if (options2 === void 0) {
91972
92031
  options2 = {};
@@ -96997,14 +97056,14 @@ var init_cose_bilkent_JH36ORCC = __esm({
96997
97056
  }
96998
97057
  });
96999
97058
 
97000
- // node_modules/mermaid/dist/chunks/mermaid.core/chunk-FWX5IMBZ.mjs
97059
+ // node_modules/mermaid/dist/chunks/mermaid.core/chunk-J7OUQ5F2.mjs
97001
97060
  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();
97061
+ var init_chunk_J7OUQ5F2 = __esm({
97062
+ "node_modules/mermaid/dist/chunks/mermaid.core/chunk-J7OUQ5F2.mjs"() {
97063
+ init_chunk_7Z6QIM7H();
97064
+ init_chunk_QR6OTTB3();
97065
+ init_chunk_NSK5VX7P();
97066
+ init_chunk_I66GZJ75();
97008
97067
  init_chunk_X3CZISLH();
97009
97068
  init_chunk_Y2CYZVJY();
97010
97069
  internalHelpers = {
@@ -97030,11 +97089,11 @@ var init_chunk_FWX5IMBZ = __esm({
97030
97089
  registerLayoutLoaders([
97031
97090
  {
97032
97091
  name: "dagre",
97033
- loader: /* @__PURE__ */ __name(async () => await Promise.resolve().then(() => (init_dagre_VKFMJZFB(), dagre_VKFMJZFB_exports)), "loader")
97092
+ loader: /* @__PURE__ */ __name(async () => await Promise.resolve().then(() => (init_dagre_VZM6K2ZE(), dagre_VZM6K2ZE_exports)), "loader")
97034
97093
  },
97035
97094
  {
97036
97095
  name: "swimlane",
97037
- loader: /* @__PURE__ */ __name(async () => await Promise.resolve().then(() => (init_swimlanes_5IMT3BWC(), swimlanes_5IMT3BWC_exports)), "loader")
97096
+ loader: /* @__PURE__ */ __name(async () => await Promise.resolve().then(() => (init_swimlanes_SLNWSIFB(), swimlanes_SLNWSIFB_exports)), "loader")
97038
97097
  },
97039
97098
  ...true ? [
97040
97099
  {
@@ -97090,11 +97149,11 @@ var init_chunk_FWX5IMBZ = __esm({
97090
97149
  }
97091
97150
  });
97092
97151
 
97093
- // node_modules/mermaid/dist/chunks/mermaid.core/chunk-32BRIVSS.mjs
97152
+ // node_modules/mermaid/dist/chunks/mermaid.core/chunk-2GRJ4B5K.mjs
97094
97153
  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();
97154
+ var init_chunk_2GRJ4B5K = __esm({
97155
+ "node_modules/mermaid/dist/chunks/mermaid.core/chunk-2GRJ4B5K.mjs"() {
97156
+ init_chunk_I66GZJ75();
97098
97157
  init_chunk_Y2CYZVJY();
97099
97158
  import_sanitize_url2 = __toESM(require_dist(), 1);
97100
97159
  init_src32();
@@ -97206,9 +97265,9 @@ var init_chunk_32BRIVSS = __esm({
97206
97265
  }
97207
97266
  });
97208
97267
 
97209
- // node_modules/mermaid/dist/chunks/mermaid.core/c4Diagram-LMCZKHZV.mjs
97210
- var c4Diagram_LMCZKHZV_exports = {};
97211
- __export(c4Diagram_LMCZKHZV_exports, {
97268
+ // node_modules/mermaid/dist/chunks/mermaid.core/c4Diagram-5PPSVZJV.mjs
97269
+ var c4Diagram_5PPSVZJV_exports = {};
97270
+ __export(c4Diagram_5PPSVZJV_exports, {
97212
97271
  diagram: () => diagram
97213
97272
  });
97214
97273
  function calcC4ShapeTextWH(textType, c4Shape, c4ShapeTextWrap, textConf, textLimitWidth) {
@@ -97333,11 +97392,11 @@ function drawInsideBoundary(diagram210, parentBoundaryAlias, parentBounds, curre
97333
97392
  }
97334
97393
  }
97335
97394
  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();
97395
+ var init_c4Diagram_5PPSVZJV = __esm({
97396
+ "node_modules/mermaid/dist/chunks/mermaid.core/c4Diagram-5PPSVZJV.mjs"() {
97397
+ init_chunk_2GRJ4B5K();
97398
+ init_chunk_NSK5VX7P();
97399
+ init_chunk_I66GZJ75();
97341
97400
  init_chunk_X3CZISLH();
97342
97401
  init_chunk_Y2CYZVJY();
97343
97402
  init_src32();
@@ -99821,11 +99880,11 @@ var init_chunk_XXDRQBXY = __esm({
99821
99880
  }
99822
99881
  });
99823
99882
 
99824
- // node_modules/mermaid/dist/chunks/mermaid.core/chunk-VR4S4FIN.mjs
99883
+ // node_modules/mermaid/dist/chunks/mermaid.core/chunk-KBJHAD2P.mjs
99825
99884
  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();
99885
+ var init_chunk_KBJHAD2P = __esm({
99886
+ "node_modules/mermaid/dist/chunks/mermaid.core/chunk-KBJHAD2P.mjs"() {
99887
+ init_chunk_I66GZJ75();
99829
99888
  init_chunk_X3CZISLH();
99830
99889
  init_chunk_Y2CYZVJY();
99831
99890
  setupViewPortForSVG = /* @__PURE__ */ __name((svg2, padding, cssDiagram, useMaxWidth) => {
@@ -99851,19 +99910,19 @@ var init_chunk_VR4S4FIN = __esm({
99851
99910
  }
99852
99911
  });
99853
99912
 
99854
- // node_modules/mermaid/dist/chunks/mermaid.core/chunk-PUDLZKDR.mjs
99913
+ // node_modules/mermaid/dist/chunks/mermaid.core/chunk-JQJVKLGR.mjs
99855
99914
  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"() {
99915
+ var init_chunk_JQJVKLGR = __esm({
99916
+ "node_modules/mermaid/dist/chunks/mermaid.core/chunk-JQJVKLGR.mjs"() {
99858
99917
  init_chunk_5VM5RSS4();
99859
99918
  init_chunk_XXDRQBXY();
99860
- init_chunk_VR4S4FIN();
99919
+ init_chunk_KBJHAD2P();
99861
99920
  init_chunk_ZIRB5QZD();
99862
- init_chunk_FWX5IMBZ();
99863
- init_chunk_32BRIVSS();
99864
- init_chunk_ZGVPDNZ5();
99865
- init_chunk_ICXQ74PX();
99866
- init_chunk_WYO6CB5R();
99921
+ init_chunk_J7OUQ5F2();
99922
+ init_chunk_2GRJ4B5K();
99923
+ init_chunk_QR6OTTB3();
99924
+ init_chunk_NSK5VX7P();
99925
+ init_chunk_I66GZJ75();
99867
99926
  init_chunk_X3CZISLH();
99868
99927
  init_chunk_Y2CYZVJY();
99869
99928
  init_src32();
@@ -102320,59 +102379,59 @@ You have to call mermaid.initialize.`
102320
102379
  }
102321
102380
  });
102322
102381
 
102323
- // node_modules/mermaid/dist/chunks/mermaid.core/flowDiagram-23GEKE2U.mjs
102324
- var flowDiagram_23GEKE2U_exports = {};
102325
- __export(flowDiagram_23GEKE2U_exports, {
102382
+ // node_modules/mermaid/dist/chunks/mermaid.core/flowDiagram-UKHOOZJN.mjs
102383
+ var flowDiagram_UKHOOZJN_exports = {};
102384
+ __export(flowDiagram_UKHOOZJN_exports, {
102326
102385
  createFlowDiagram: () => createFlowDiagram,
102327
102386
  diagram: () => diagram2
102328
102387
  });
102329
- var init_flowDiagram_23GEKE2U = __esm({
102330
- "node_modules/mermaid/dist/chunks/mermaid.core/flowDiagram-23GEKE2U.mjs"() {
102331
- init_chunk_PUDLZKDR();
102388
+ var init_flowDiagram_UKHOOZJN = __esm({
102389
+ "node_modules/mermaid/dist/chunks/mermaid.core/flowDiagram-UKHOOZJN.mjs"() {
102390
+ init_chunk_JQJVKLGR();
102332
102391
  init_chunk_5VM5RSS4();
102333
102392
  init_chunk_XXDRQBXY();
102334
- init_chunk_VR4S4FIN();
102393
+ init_chunk_KBJHAD2P();
102335
102394
  init_chunk_ZIRB5QZD();
102336
- init_chunk_FWX5IMBZ();
102337
- init_chunk_32BRIVSS();
102338
- init_chunk_52WLFC77();
102339
- init_chunk_ZGVPDNZ5();
102340
- init_chunk_C7G6YPKG();
102395
+ init_chunk_J7OUQ5F2();
102396
+ init_chunk_2GRJ4B5K();
102397
+ init_chunk_7Z6QIM7H();
102398
+ init_chunk_QR6OTTB3();
102399
+ init_chunk_W5SLKNZC();
102341
102400
  init_chunk_7BUUIJ7U();
102342
- init_chunk_OGEWGWER();
102343
- init_chunk_Q4XR5HBZ();
102344
- init_chunk_HOUHSVGY();
102345
- init_chunk_ICXQ74PX();
102346
- init_chunk_WYO6CB5R();
102401
+ init_chunk_UBXNYLIW();
102402
+ init_chunk_WRU74C26();
102403
+ init_chunk_4I5QYGJK();
102404
+ init_chunk_NSK5VX7P();
102405
+ init_chunk_I66GZJ75();
102347
102406
  init_chunk_X3CZISLH();
102348
102407
  init_chunk_Y2CYZVJY();
102349
102408
  }
102350
102409
  });
102351
102410
 
102352
- // node_modules/mermaid/dist/chunks/mermaid.core/swimlanesDiagram-G3AALYLV.mjs
102353
- var swimlanesDiagram_G3AALYLV_exports = {};
102354
- __export(swimlanesDiagram_G3AALYLV_exports, {
102411
+ // node_modules/mermaid/dist/chunks/mermaid.core/swimlanesDiagram-ULZ7WXOC.mjs
102412
+ var swimlanesDiagram_ULZ7WXOC_exports = {};
102413
+ __export(swimlanesDiagram_ULZ7WXOC_exports, {
102355
102414
  diagram: () => diagram3
102356
102415
  });
102357
102416
  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();
102417
+ var init_swimlanesDiagram_ULZ7WXOC = __esm({
102418
+ "node_modules/mermaid/dist/chunks/mermaid.core/swimlanesDiagram-ULZ7WXOC.mjs"() {
102419
+ init_chunk_JQJVKLGR();
102361
102420
  init_chunk_5VM5RSS4();
102362
102421
  init_chunk_XXDRQBXY();
102363
- init_chunk_VR4S4FIN();
102422
+ init_chunk_KBJHAD2P();
102364
102423
  init_chunk_ZIRB5QZD();
102365
- init_chunk_FWX5IMBZ();
102366
- init_chunk_32BRIVSS();
102367
- init_chunk_52WLFC77();
102368
- init_chunk_ZGVPDNZ5();
102369
- init_chunk_C7G6YPKG();
102424
+ init_chunk_J7OUQ5F2();
102425
+ init_chunk_2GRJ4B5K();
102426
+ init_chunk_7Z6QIM7H();
102427
+ init_chunk_QR6OTTB3();
102428
+ init_chunk_W5SLKNZC();
102370
102429
  init_chunk_7BUUIJ7U();
102371
- init_chunk_OGEWGWER();
102372
- init_chunk_Q4XR5HBZ();
102373
- init_chunk_HOUHSVGY();
102374
- init_chunk_ICXQ74PX();
102375
- init_chunk_WYO6CB5R();
102430
+ init_chunk_UBXNYLIW();
102431
+ init_chunk_WRU74C26();
102432
+ init_chunk_4I5QYGJK();
102433
+ init_chunk_NSK5VX7P();
102434
+ init_chunk_I66GZJ75();
102376
102435
  init_chunk_X3CZISLH();
102377
102436
  init_chunk_Y2CYZVJY();
102378
102437
  getStyles4 = /* @__PURE__ */ __name((options2) => `${styles_default3(options2)}
@@ -102388,26 +102447,26 @@ var init_swimlanesDiagram_G3AALYLV = __esm({
102388
102447
  }
102389
102448
  });
102390
102449
 
102391
- // node_modules/mermaid/dist/chunks/mermaid.core/erDiagram-Q63AITRT.mjs
102392
- var erDiagram_Q63AITRT_exports = {};
102393
- __export(erDiagram_Q63AITRT_exports, {
102450
+ // node_modules/mermaid/dist/chunks/mermaid.core/erDiagram-JOGREHBK.mjs
102451
+ var erDiagram_JOGREHBK_exports = {};
102452
+ __export(erDiagram_JOGREHBK_exports, {
102394
102453
  diagram: () => diagram4
102395
102454
  });
102396
102455
  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"() {
102456
+ var init_erDiagram_JOGREHBK = __esm({
102457
+ "node_modules/mermaid/dist/chunks/mermaid.core/erDiagram-JOGREHBK.mjs"() {
102399
102458
  init_chunk_XXDRQBXY();
102400
- init_chunk_VR4S4FIN();
102401
- init_chunk_FWX5IMBZ();
102402
- init_chunk_52WLFC77();
102403
- init_chunk_ZGVPDNZ5();
102404
- init_chunk_C7G6YPKG();
102459
+ init_chunk_KBJHAD2P();
102460
+ init_chunk_J7OUQ5F2();
102461
+ init_chunk_7Z6QIM7H();
102462
+ init_chunk_QR6OTTB3();
102463
+ init_chunk_W5SLKNZC();
102405
102464
  init_chunk_7BUUIJ7U();
102406
- init_chunk_OGEWGWER();
102407
- init_chunk_Q4XR5HBZ();
102408
- init_chunk_HOUHSVGY();
102409
- init_chunk_ICXQ74PX();
102410
- init_chunk_WYO6CB5R();
102465
+ init_chunk_UBXNYLIW();
102466
+ init_chunk_WRU74C26();
102467
+ init_chunk_4I5QYGJK();
102468
+ init_chunk_NSK5VX7P();
102469
+ init_chunk_I66GZJ75();
102411
102470
  init_chunk_X3CZISLH();
102412
102471
  init_chunk_Y2CYZVJY();
102413
102472
  init_src32();
@@ -136091,9 +136150,9 @@ var init_mermaid_parser_core = __esm({
136091
136150
  }
136092
136151
  });
136093
136152
 
136094
- // node_modules/mermaid/dist/chunks/mermaid.core/gitGraphDiagram-IHSO6WYX.mjs
136095
- var gitGraphDiagram_IHSO6WYX_exports = {};
136096
- __export(gitGraphDiagram_IHSO6WYX_exports, {
136153
+ // node_modules/mermaid/dist/chunks/mermaid.core/gitGraphDiagram-DS77QQ5N.mjs
136154
+ var gitGraphDiagram_DS77QQ5N_exports = {};
136155
+ __export(gitGraphDiagram_DS77QQ5N_exports, {
136097
136156
  diagram: () => diagram5
136098
136157
  });
136099
136158
  function getID() {
@@ -136158,12 +136217,12 @@ function prettyPrintCommitHistory(commitArr) {
136158
136217
  prettyPrintCommitHistory(commitArr);
136159
136218
  }
136160
136219
  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"() {
136220
+ var init_gitGraphDiagram_DS77QQ5N = __esm({
136221
+ "node_modules/mermaid/dist/chunks/mermaid.core/gitGraphDiagram-DS77QQ5N.mjs"() {
136163
136222
  init_chunk_2Q5K7J3B();
136164
136223
  init_chunk_JWPE2WC7();
136165
- init_chunk_ICXQ74PX();
136166
- init_chunk_WYO6CB5R();
136224
+ init_chunk_NSK5VX7P();
136225
+ init_chunk_I66GZJ75();
136167
136226
  init_chunk_X3CZISLH();
136168
136227
  init_chunk_Y2CYZVJY();
136169
136228
  init_mermaid_parser_core();
@@ -138346,9 +138405,9 @@ var require_duration = __commonJS({
138346
138405
  }
138347
138406
  });
138348
138407
 
138349
- // node_modules/mermaid/dist/chunks/mermaid.core/ganttDiagram-NO4QXBWP.mjs
138350
- var ganttDiagram_NO4QXBWP_exports = {};
138351
- __export(ganttDiagram_NO4QXBWP_exports, {
138408
+ // node_modules/mermaid/dist/chunks/mermaid.core/ganttDiagram-PKOTCBZU.mjs
138409
+ var ganttDiagram_PKOTCBZU_exports = {};
138410
+ __export(ganttDiagram_PKOTCBZU_exports, {
138352
138411
  diagram: () => diagram6
138353
138412
  });
138354
138413
  function getTaskTags(data6, task, tags2) {
@@ -138367,10 +138426,10 @@ function getTaskTags(data6, task, tags2) {
138367
138426
  }
138368
138427
  }
138369
138428
  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();
138429
+ var init_ganttDiagram_PKOTCBZU = __esm({
138430
+ "node_modules/mermaid/dist/chunks/mermaid.core/ganttDiagram-PKOTCBZU.mjs"() {
138431
+ init_chunk_NSK5VX7P();
138432
+ init_chunk_I66GZJ75();
138374
138433
  init_chunk_X3CZISLH();
138375
138434
  init_chunk_Y2CYZVJY();
138376
138435
  import_sanitize_url4 = __toESM(require_dist(), 1);
@@ -140631,16 +140690,16 @@ var init_ganttDiagram_NO4QXBWP = __esm({
140631
140690
  }
140632
140691
  });
140633
140692
 
140634
- // node_modules/mermaid/dist/chunks/mermaid.core/infoDiagram-FWYZ7A6U.mjs
140635
- var infoDiagram_FWYZ7A6U_exports = {};
140636
- __export(infoDiagram_FWYZ7A6U_exports, {
140693
+ // node_modules/mermaid/dist/chunks/mermaid.core/infoDiagram-6WML65LV.mjs
140694
+ var infoDiagram_6WML65LV_exports = {};
140695
+ __export(infoDiagram_6WML65LV_exports, {
140637
140696
  diagram: () => diagram7
140638
140697
  });
140639
140698
  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();
140699
+ var init_infoDiagram_6WML65LV = __esm({
140700
+ "node_modules/mermaid/dist/chunks/mermaid.core/infoDiagram-6WML65LV.mjs"() {
140701
+ init_chunk_3NCLNEKW();
140702
+ init_chunk_I66GZJ75();
140644
140703
  init_chunk_X3CZISLH();
140645
140704
  init_chunk_Y2CYZVJY();
140646
140705
  init_mermaid_parser_core();
@@ -140651,7 +140710,7 @@ var init_infoDiagram_FWYZ7A6U = __esm({
140651
140710
  }, "parse")
140652
140711
  };
140653
140712
  DEFAULT_INFO_DB = {
140654
- version: "11.16.0" + (true ? "" : "-tiny")
140713
+ version: "11.16.1" + (true ? "" : "-tiny")
140655
140714
  };
140656
140715
  getVersion = /* @__PURE__ */ __name(() => DEFAULT_INFO_DB.version, "getVersion");
140657
140716
  db2 = {
@@ -140673,18 +140732,18 @@ var init_infoDiagram_FWYZ7A6U = __esm({
140673
140732
  }
140674
140733
  });
140675
140734
 
140676
- // node_modules/mermaid/dist/chunks/mermaid.core/pieDiagram-ENE6RG2P.mjs
140677
- var pieDiagram_ENE6RG2P_exports = {};
140678
- __export(pieDiagram_ENE6RG2P_exports, {
140735
+ // node_modules/mermaid/dist/chunks/mermaid.core/pieDiagram-7S7Q4E2Y.mjs
140736
+ var pieDiagram_7S7Q4E2Y_exports = {};
140737
+ __export(pieDiagram_7S7Q4E2Y_exports, {
140679
140738
  diagram: () => diagram8
140680
140739
  });
140681
140740
  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"() {
140741
+ var init_pieDiagram_7S7Q4E2Y = __esm({
140742
+ "node_modules/mermaid/dist/chunks/mermaid.core/pieDiagram-7S7Q4E2Y.mjs"() {
140684
140743
  init_chunk_JWPE2WC7();
140685
- init_chunk_VAUOI2AC();
140686
- init_chunk_ICXQ74PX();
140687
- init_chunk_WYO6CB5R();
140744
+ init_chunk_3NCLNEKW();
140745
+ init_chunk_NSK5VX7P();
140746
+ init_chunk_I66GZJ75();
140688
140747
  init_chunk_X3CZISLH();
140689
140748
  init_chunk_Y2CYZVJY();
140690
140749
  init_mermaid_parser_core();
@@ -140947,9 +141006,9 @@ var init_pieDiagram_ENE6RG2P = __esm({
140947
141006
  }
140948
141007
  });
140949
141008
 
140950
- // node_modules/mermaid/dist/chunks/mermaid.core/quadrantDiagram-ABIIQ3AL.mjs
140951
- var quadrantDiagram_ABIIQ3AL_exports = {};
140952
- __export(quadrantDiagram_ABIIQ3AL_exports, {
141009
+ // node_modules/mermaid/dist/chunks/mermaid.core/quadrantDiagram-CIZ2JOQS.mjs
141010
+ var quadrantDiagram_CIZ2JOQS_exports = {};
141011
+ __export(quadrantDiagram_CIZ2JOQS_exports, {
140953
141012
  diagram: () => diagram9
140954
141013
  });
140955
141014
  function validateHexCode(value2) {
@@ -141066,9 +141125,9 @@ function getQuadrantData() {
141066
141125
  return quadrantBuilder.build();
141067
141126
  }
141068
141127
  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();
141128
+ var init_quadrantDiagram_CIZ2JOQS = __esm({
141129
+ "node_modules/mermaid/dist/chunks/mermaid.core/quadrantDiagram-CIZ2JOQS.mjs"() {
141130
+ init_chunk_I66GZJ75();
141072
141131
  init_chunk_X3CZISLH();
141073
141132
  init_chunk_Y2CYZVJY();
141074
141133
  init_src32();
@@ -142347,9 +142406,9 @@ var init_quadrantDiagram_ABIIQ3AL = __esm({
142347
142406
  }
142348
142407
  });
142349
142408
 
142350
- // node_modules/mermaid/dist/chunks/mermaid.core/xychartDiagram-FW5EYKEG.mjs
142351
- var xychartDiagram_FW5EYKEG_exports = {};
142352
- __export(xychartDiagram_FW5EYKEG_exports, {
142409
+ // node_modules/mermaid/dist/chunks/mermaid.core/xychartDiagram-ELKLHX3M.mjs
142410
+ var xychartDiagram_ELKLHX3M_exports = {};
142411
+ __export(xychartDiagram_ELKLHX3M_exports, {
142353
142412
  diagram: () => diagram10
142354
142413
  });
142355
142414
  function isBarPlot(data6) {
@@ -142486,12 +142545,12 @@ function transformDataWithoutCategory(data6) {
142486
142545
  if (isLinearAxisData(xyChartData.xAxis)) {
142487
142546
  const min10 = xyChartData.xAxis.min;
142488
142547
  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}`);
142548
+ if (data6.length === 1) {
142549
+ retData = [[`${min10}`, data6[0]]];
142550
+ } else {
142551
+ const step3 = (max10 - min10) / (data6.length - 1);
142552
+ retData = data6.map((datum2, index) => [`${min10 + index * step3}`, datum2]);
142493
142553
  }
142494
- retData = categories.map((c3, i5) => [c3, data6[i5]]);
142495
142554
  }
142496
142555
  return retData;
142497
142556
  }
@@ -142539,13 +142598,13 @@ function getXYChartData() {
142539
142598
  return xyChartData;
142540
142599
  }
142541
142600
  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();
142601
+ var init_xychartDiagram_ELKLHX3M = __esm({
142602
+ "node_modules/mermaid/dist/chunks/mermaid.core/xychartDiagram-ELKLHX3M.mjs"() {
142603
+ init_chunk_3NCLNEKW();
142604
+ init_chunk_WRU74C26();
142605
+ init_chunk_4I5QYGJK();
142606
+ init_chunk_NSK5VX7P();
142607
+ init_chunk_I66GZJ75();
142549
142608
  init_chunk_X3CZISLH();
142550
142609
  init_chunk_Y2CYZVJY();
142551
142610
  init_src32();
@@ -144348,26 +144407,26 @@ var init_xychartDiagram_FW5EYKEG = __esm({
144348
144407
  }
144349
144408
  });
144350
144409
 
144351
- // node_modules/mermaid/dist/chunks/mermaid.core/requirementDiagram-TGXJPOKE.mjs
144352
- var requirementDiagram_TGXJPOKE_exports = {};
144353
- __export(requirementDiagram_TGXJPOKE_exports, {
144410
+ // node_modules/mermaid/dist/chunks/mermaid.core/requirementDiagram-LRYGKXZP.mjs
144411
+ var requirementDiagram_LRYGKXZP_exports = {};
144412
+ __export(requirementDiagram_LRYGKXZP_exports, {
144354
144413
  diagram: () => diagram11
144355
144414
  });
144356
144415
  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"() {
144416
+ var init_requirementDiagram_LRYGKXZP = __esm({
144417
+ "node_modules/mermaid/dist/chunks/mermaid.core/requirementDiagram-LRYGKXZP.mjs"() {
144359
144418
  init_chunk_XXDRQBXY();
144360
- init_chunk_VR4S4FIN();
144361
- init_chunk_FWX5IMBZ();
144362
- init_chunk_52WLFC77();
144363
- init_chunk_ZGVPDNZ5();
144364
- init_chunk_C7G6YPKG();
144419
+ init_chunk_KBJHAD2P();
144420
+ init_chunk_J7OUQ5F2();
144421
+ init_chunk_7Z6QIM7H();
144422
+ init_chunk_QR6OTTB3();
144423
+ init_chunk_W5SLKNZC();
144365
144424
  init_chunk_7BUUIJ7U();
144366
- init_chunk_OGEWGWER();
144367
- init_chunk_Q4XR5HBZ();
144368
- init_chunk_HOUHSVGY();
144369
- init_chunk_ICXQ74PX();
144370
- init_chunk_WYO6CB5R();
144425
+ init_chunk_UBXNYLIW();
144426
+ init_chunk_WRU74C26();
144427
+ init_chunk_4I5QYGJK();
144428
+ init_chunk_NSK5VX7P();
144429
+ init_chunk_I66GZJ75();
144371
144430
  init_chunk_X3CZISLH();
144372
144431
  init_chunk_Y2CYZVJY();
144373
144432
  parser10 = (function() {
@@ -145639,9 +145698,9 @@ var init_requirementDiagram_TGXJPOKE = __esm({
145639
145698
  }
145640
145699
  });
145641
145700
 
145642
- // node_modules/mermaid/dist/chunks/mermaid.core/sequenceDiagram-DBY2YBRQ.mjs
145643
- var sequenceDiagram_DBY2YBRQ_exports = {};
145644
- __export(sequenceDiagram_DBY2YBRQ_exports, {
145701
+ // node_modules/mermaid/dist/chunks/mermaid.core/sequenceDiagram-SI44F4Z6.mjs
145702
+ var sequenceDiagram_SI44F4Z6_exports = {};
145703
+ __export(sequenceDiagram_SI44F4Z6_exports, {
145645
145704
  diagram: () => diagram12
145646
145705
  });
145647
145706
  async function boundMessage(_diagram, msgModel) {
@@ -145893,13 +145952,13 @@ async function calculateActorMargins(actors2, actorToMessageWidth, boxes) {
145893
145952
  return common_default.getMax(maxHeight, conf2.height);
145894
145953
  }
145895
145954
  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"() {
145955
+ var init_sequenceDiagram_SI44F4Z6 = __esm({
145956
+ "node_modules/mermaid/dist/chunks/mermaid.core/sequenceDiagram-SI44F4Z6.mjs"() {
145898
145957
  init_chunk_2Q5K7J3B();
145899
145958
  init_chunk_ZIRB5QZD();
145900
- init_chunk_32BRIVSS();
145901
- init_chunk_ICXQ74PX();
145902
- init_chunk_WYO6CB5R();
145959
+ init_chunk_2GRJ4B5K();
145960
+ init_chunk_NSK5VX7P();
145961
+ init_chunk_I66GZJ75();
145903
145962
  init_chunk_X3CZISLH();
145904
145963
  init_chunk_Y2CYZVJY();
145905
145964
  init_src32();
@@ -150267,17 +150326,17 @@ var init_sequenceDiagram_DBY2YBRQ = __esm({
150267
150326
  }
150268
150327
  });
150269
150328
 
150270
- // node_modules/mermaid/dist/chunks/mermaid.core/chunk-V7JOEXUC.mjs
150329
+ // node_modules/mermaid/dist/chunks/mermaid.core/chunk-GF5L2VYU.mjs
150271
150330
  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"() {
150331
+ var init_chunk_GF5L2VYU = __esm({
150332
+ "node_modules/mermaid/dist/chunks/mermaid.core/chunk-GF5L2VYU.mjs"() {
150274
150333
  init_chunk_5VM5RSS4();
150275
150334
  init_chunk_XXDRQBXY();
150276
- init_chunk_VR4S4FIN();
150277
- init_chunk_FWX5IMBZ();
150278
- init_chunk_32BRIVSS();
150279
- init_chunk_ICXQ74PX();
150280
- init_chunk_WYO6CB5R();
150335
+ init_chunk_KBJHAD2P();
150336
+ init_chunk_J7OUQ5F2();
150337
+ init_chunk_2GRJ4B5K();
150338
+ init_chunk_NSK5VX7P();
150339
+ init_chunk_I66GZJ75();
150281
150340
  init_chunk_X3CZISLH();
150282
150341
  init_chunk_Y2CYZVJY();
150283
150342
  init_src32();
@@ -152386,29 +152445,29 @@ g.classGroup line {
152386
152445
  }
152387
152446
  });
152388
152447
 
152389
- // node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-OUVF2IWQ.mjs
152390
- var classDiagram_OUVF2IWQ_exports = {};
152391
- __export(classDiagram_OUVF2IWQ_exports, {
152448
+ // node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-JCYQIIEL.mjs
152449
+ var classDiagram_JCYQIIEL_exports = {};
152450
+ __export(classDiagram_JCYQIIEL_exports, {
152392
152451
  diagram: () => diagram13
152393
152452
  });
152394
152453
  var diagram13;
152395
- var init_classDiagram_OUVF2IWQ = __esm({
152396
- "node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-OUVF2IWQ.mjs"() {
152397
- init_chunk_V7JOEXUC();
152454
+ var init_classDiagram_JCYQIIEL = __esm({
152455
+ "node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-JCYQIIEL.mjs"() {
152456
+ init_chunk_GF5L2VYU();
152398
152457
  init_chunk_5VM5RSS4();
152399
152458
  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();
152459
+ init_chunk_KBJHAD2P();
152460
+ init_chunk_J7OUQ5F2();
152461
+ init_chunk_2GRJ4B5K();
152462
+ init_chunk_7Z6QIM7H();
152463
+ init_chunk_QR6OTTB3();
152464
+ init_chunk_W5SLKNZC();
152406
152465
  init_chunk_7BUUIJ7U();
152407
- init_chunk_OGEWGWER();
152408
- init_chunk_Q4XR5HBZ();
152409
- init_chunk_HOUHSVGY();
152410
- init_chunk_ICXQ74PX();
152411
- init_chunk_WYO6CB5R();
152466
+ init_chunk_UBXNYLIW();
152467
+ init_chunk_WRU74C26();
152468
+ init_chunk_4I5QYGJK();
152469
+ init_chunk_NSK5VX7P();
152470
+ init_chunk_I66GZJ75();
152412
152471
  init_chunk_X3CZISLH();
152413
152472
  init_chunk_Y2CYZVJY();
152414
152473
  diagram13 = {
@@ -152428,29 +152487,29 @@ var init_classDiagram_OUVF2IWQ = __esm({
152428
152487
  }
152429
152488
  });
152430
152489
 
152431
- // node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-v2-EOCWNBFH.mjs
152432
- var classDiagram_v2_EOCWNBFH_exports = {};
152433
- __export(classDiagram_v2_EOCWNBFH_exports, {
152490
+ // node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-v2-OCEON4UE.mjs
152491
+ var classDiagram_v2_OCEON4UE_exports = {};
152492
+ __export(classDiagram_v2_OCEON4UE_exports, {
152434
152493
  diagram: () => diagram14
152435
152494
  });
152436
152495
  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();
152496
+ var init_classDiagram_v2_OCEON4UE = __esm({
152497
+ "node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-v2-OCEON4UE.mjs"() {
152498
+ init_chunk_GF5L2VYU();
152440
152499
  init_chunk_5VM5RSS4();
152441
152500
  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();
152501
+ init_chunk_KBJHAD2P();
152502
+ init_chunk_J7OUQ5F2();
152503
+ init_chunk_2GRJ4B5K();
152504
+ init_chunk_7Z6QIM7H();
152505
+ init_chunk_QR6OTTB3();
152506
+ init_chunk_W5SLKNZC();
152448
152507
  init_chunk_7BUUIJ7U();
152449
- init_chunk_OGEWGWER();
152450
- init_chunk_Q4XR5HBZ();
152451
- init_chunk_HOUHSVGY();
152452
- init_chunk_ICXQ74PX();
152453
- init_chunk_WYO6CB5R();
152508
+ init_chunk_UBXNYLIW();
152509
+ init_chunk_WRU74C26();
152510
+ init_chunk_4I5QYGJK();
152511
+ init_chunk_NSK5VX7P();
152512
+ init_chunk_I66GZJ75();
152454
152513
  init_chunk_X3CZISLH();
152455
152514
  init_chunk_Y2CYZVJY();
152456
152515
  diagram14 = {
@@ -152470,7 +152529,7 @@ var init_classDiagram_v2_EOCWNBFH = __esm({
152470
152529
  }
152471
152530
  });
152472
152531
 
152473
- // node_modules/mermaid/dist/chunks/mermaid.core/chunk-EX3LRPZG.mjs
152532
+ // node_modules/mermaid/dist/chunks/mermaid.core/chunk-5RXB4S5H.mjs
152474
152533
  function stateDomId(itemId = "", counter = 0, type3 = "", typeSpacer = DOMID_TYPE_SPACER) {
152475
152534
  const typeStr = type3 !== null && type3.length > 0 ? `${typeSpacer}${type3}` : "";
152476
152535
  return `${DOMID_STATE}-${itemId}${typeStr}-${counter}`;
@@ -152504,14 +152563,14 @@ function getStylesFromDbInfo(dbInfoItem) {
152504
152563
  return dbInfoItem?.styles ?? [];
152505
152564
  }
152506
152565
  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"() {
152566
+ var init_chunk_5RXB4S5H = __esm({
152567
+ "node_modules/mermaid/dist/chunks/mermaid.core/chunk-5RXB4S5H.mjs"() {
152509
152568
  init_chunk_XXDRQBXY();
152510
- init_chunk_VR4S4FIN();
152511
- init_chunk_FWX5IMBZ();
152512
- init_chunk_32BRIVSS();
152513
- init_chunk_ICXQ74PX();
152514
- init_chunk_WYO6CB5R();
152569
+ init_chunk_KBJHAD2P();
152570
+ init_chunk_J7OUQ5F2();
152571
+ init_chunk_2GRJ4B5K();
152572
+ init_chunk_NSK5VX7P();
152573
+ init_chunk_I66GZJ75();
152515
152574
  init_chunk_X3CZISLH();
152516
152575
  init_chunk_Y2CYZVJY();
152517
152576
  init_src32();
@@ -154538,28 +154597,28 @@ g.stateGroup line {
154538
154597
  }
154539
154598
  });
154540
154599
 
154541
- // node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-2N3HPSRC.mjs
154542
- var stateDiagram_2N3HPSRC_exports = {};
154543
- __export(stateDiagram_2N3HPSRC_exports, {
154600
+ // node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-OKZ733FA.mjs
154601
+ var stateDiagram_OKZ733FA_exports = {};
154602
+ __export(stateDiagram_OKZ733FA_exports, {
154544
154603
  diagram: () => diagram15
154545
154604
  });
154546
154605
  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();
154606
+ var init_stateDiagram_OKZ733FA = __esm({
154607
+ "node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-OKZ733FA.mjs"() {
154608
+ init_chunk_5RXB4S5H();
154550
154609
  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();
154610
+ init_chunk_KBJHAD2P();
154611
+ init_chunk_J7OUQ5F2();
154612
+ init_chunk_2GRJ4B5K();
154613
+ init_chunk_7Z6QIM7H();
154614
+ init_chunk_QR6OTTB3();
154615
+ init_chunk_W5SLKNZC();
154557
154616
  init_chunk_7BUUIJ7U();
154558
- init_chunk_OGEWGWER();
154559
- init_chunk_Q4XR5HBZ();
154560
- init_chunk_HOUHSVGY();
154561
- init_chunk_ICXQ74PX();
154562
- init_chunk_WYO6CB5R();
154617
+ init_chunk_UBXNYLIW();
154618
+ init_chunk_WRU74C26();
154619
+ init_chunk_4I5QYGJK();
154620
+ init_chunk_NSK5VX7P();
154621
+ init_chunk_I66GZJ75();
154563
154622
  init_chunk_X3CZISLH();
154564
154623
  init_chunk_Y2CYZVJY();
154565
154624
  init_src32();
@@ -155015,28 +155074,28 @@ var init_stateDiagram_2N3HPSRC = __esm({
155015
155074
  }
155016
155075
  });
155017
155076
 
155018
- // node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-v2-6OUMAXLB.mjs
155019
- var stateDiagram_v2_6OUMAXLB_exports = {};
155020
- __export(stateDiagram_v2_6OUMAXLB_exports, {
155077
+ // node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-v2-UEYNNEHI.mjs
155078
+ var stateDiagram_v2_UEYNNEHI_exports = {};
155079
+ __export(stateDiagram_v2_UEYNNEHI_exports, {
155021
155080
  diagram: () => diagram16
155022
155081
  });
155023
155082
  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();
155083
+ var init_stateDiagram_v2_UEYNNEHI = __esm({
155084
+ "node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-v2-UEYNNEHI.mjs"() {
155085
+ init_chunk_5RXB4S5H();
155027
155086
  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();
155087
+ init_chunk_KBJHAD2P();
155088
+ init_chunk_J7OUQ5F2();
155089
+ init_chunk_2GRJ4B5K();
155090
+ init_chunk_7Z6QIM7H();
155091
+ init_chunk_QR6OTTB3();
155092
+ init_chunk_W5SLKNZC();
155034
155093
  init_chunk_7BUUIJ7U();
155035
- init_chunk_OGEWGWER();
155036
- init_chunk_Q4XR5HBZ();
155037
- init_chunk_HOUHSVGY();
155038
- init_chunk_ICXQ74PX();
155039
- init_chunk_WYO6CB5R();
155094
+ init_chunk_UBXNYLIW();
155095
+ init_chunk_WRU74C26();
155096
+ init_chunk_4I5QYGJK();
155097
+ init_chunk_NSK5VX7P();
155098
+ init_chunk_I66GZJ75();
155040
155099
  init_chunk_X3CZISLH();
155041
155100
  init_chunk_Y2CYZVJY();
155042
155101
  diagram16 = {
@@ -155056,9 +155115,9 @@ var init_stateDiagram_v2_6OUMAXLB = __esm({
155056
155115
  }
155057
155116
  });
155058
155117
 
155059
- // node_modules/mermaid/dist/chunks/mermaid.core/journeyDiagram-5HDEW3XC.mjs
155060
- var journeyDiagram_5HDEW3XC_exports = {};
155061
- __export(journeyDiagram_5HDEW3XC_exports, {
155118
+ // node_modules/mermaid/dist/chunks/mermaid.core/journeyDiagram-NVQOT4AX.mjs
155119
+ var journeyDiagram_NVQOT4AX_exports = {};
155120
+ __export(journeyDiagram_NVQOT4AX_exports, {
155062
155121
  diagram: () => diagram17
155063
155122
  });
155064
155123
  function drawActorLegend(diagram210) {
@@ -155136,11 +155195,11 @@ function drawActorLegend(diagram210) {
155136
155195
  });
155137
155196
  }
155138
155197
  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"() {
155198
+ var init_journeyDiagram_NVQOT4AX = __esm({
155199
+ "node_modules/mermaid/dist/chunks/mermaid.core/journeyDiagram-NVQOT4AX.mjs"() {
155141
155200
  init_chunk_5VM5RSS4();
155142
- init_chunk_32BRIVSS();
155143
- init_chunk_WYO6CB5R();
155201
+ init_chunk_2GRJ4B5K();
155202
+ init_chunk_I66GZJ75();
155144
155203
  init_chunk_X3CZISLH();
155145
155204
  init_chunk_Y2CYZVJY();
155146
155205
  init_src32();
@@ -156344,9 +156403,9 @@ var init_journeyDiagram_5HDEW3XC = __esm({
156344
156403
  }
156345
156404
  });
156346
156405
 
156347
- // node_modules/mermaid/dist/chunks/mermaid.core/timeline-definition-FHXFAJF6.mjs
156348
- var timeline_definition_FHXFAJF6_exports = {};
156349
- __export(timeline_definition_FHXFAJF6_exports, {
156406
+ // node_modules/mermaid/dist/chunks/mermaid.core/timeline-definition-Z64GVDOM.mjs
156407
+ var timeline_definition_Z64GVDOM_exports = {};
156408
+ __export(timeline_definition_Z64GVDOM_exports, {
156350
156409
  diagram: () => diagram18
156351
156410
  });
156352
156411
  function wrap2(text4, width3) {
@@ -156370,11 +156429,11 @@ function wrap2(text4, width3) {
156370
156429
  });
156371
156430
  }
156372
156431
  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();
156432
+ var init_timeline_definition_Z64GVDOM = __esm({
156433
+ "node_modules/mermaid/dist/chunks/mermaid.core/timeline-definition-Z64GVDOM.mjs"() {
156434
+ init_chunk_3NCLNEKW();
156435
+ init_chunk_NSK5VX7P();
156436
+ init_chunk_I66GZJ75();
156378
156437
  init_chunk_X3CZISLH();
156379
156438
  init_chunk_Y2CYZVJY();
156380
156439
  init_src32();
@@ -158045,26 +158104,26 @@ var init_dist2 = __esm({
158045
158104
  }
158046
158105
  });
158047
158106
 
158048
- // node_modules/mermaid/dist/chunks/mermaid.core/mindmap-definition-LN4V7U3C.mjs
158049
- var mindmap_definition_LN4V7U3C_exports = {};
158050
- __export(mindmap_definition_LN4V7U3C_exports, {
158107
+ // node_modules/mermaid/dist/chunks/mermaid.core/mindmap-definition-FAOFIHXS.mjs
158108
+ var mindmap_definition_FAOFIHXS_exports = {};
158109
+ __export(mindmap_definition_FAOFIHXS_exports, {
158051
158110
  diagram: () => diagram19
158052
158111
  });
158053
158112
  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"() {
158113
+ var init_mindmap_definition_FAOFIHXS = __esm({
158114
+ "node_modules/mermaid/dist/chunks/mermaid.core/mindmap-definition-FAOFIHXS.mjs"() {
158056
158115
  init_chunk_XXDRQBXY();
158057
- init_chunk_VR4S4FIN();
158058
- init_chunk_FWX5IMBZ();
158059
- init_chunk_52WLFC77();
158060
- init_chunk_ZGVPDNZ5();
158061
- init_chunk_C7G6YPKG();
158116
+ init_chunk_KBJHAD2P();
158117
+ init_chunk_J7OUQ5F2();
158118
+ init_chunk_7Z6QIM7H();
158119
+ init_chunk_QR6OTTB3();
158120
+ init_chunk_W5SLKNZC();
158062
158121
  init_chunk_7BUUIJ7U();
158063
- init_chunk_OGEWGWER();
158064
- init_chunk_Q4XR5HBZ();
158065
- init_chunk_HOUHSVGY();
158066
- init_chunk_ICXQ74PX();
158067
- init_chunk_WYO6CB5R();
158122
+ init_chunk_UBXNYLIW();
158123
+ init_chunk_WRU74C26();
158124
+ init_chunk_4I5QYGJK();
158125
+ init_chunk_NSK5VX7P();
158126
+ init_chunk_I66GZJ75();
158068
158127
  init_chunk_X3CZISLH();
158069
158128
  init_chunk_Y2CYZVJY();
158070
158129
  init_dist2();
@@ -159256,24 +159315,24 @@ var init_mindmap_definition_LN4V7U3C = __esm({
159256
159315
  }
159257
159316
  });
159258
159317
 
159259
- // node_modules/mermaid/dist/chunks/mermaid.core/kanban-definition-HUTT4EX6.mjs
159260
- var kanban_definition_HUTT4EX6_exports = {};
159261
- __export(kanban_definition_HUTT4EX6_exports, {
159318
+ // node_modules/mermaid/dist/chunks/mermaid.core/kanban-definition-27J2QSJJ.mjs
159319
+ var kanban_definition_27J2QSJJ_exports = {};
159320
+ __export(kanban_definition_27J2QSJJ_exports, {
159262
159321
  diagram: () => diagram20
159263
159322
  });
159264
159323
  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();
159324
+ var init_kanban_definition_27J2QSJJ = __esm({
159325
+ "node_modules/mermaid/dist/chunks/mermaid.core/kanban-definition-27J2QSJJ.mjs"() {
159326
+ init_chunk_3NCLNEKW();
159268
159327
  init_chunk_5VM5RSS4();
159269
159328
  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();
159329
+ init_chunk_QR6OTTB3();
159330
+ init_chunk_W5SLKNZC();
159331
+ init_chunk_UBXNYLIW();
159332
+ init_chunk_WRU74C26();
159333
+ init_chunk_4I5QYGJK();
159334
+ init_chunk_NSK5VX7P();
159335
+ init_chunk_I66GZJ75();
159277
159336
  init_chunk_X3CZISLH();
159278
159337
  init_chunk_Y2CYZVJY();
159279
159338
  init_dist();
@@ -161009,15 +161068,15 @@ var init_src36 = __esm({
161009
161068
  }
161010
161069
  });
161011
161070
 
161012
- // node_modules/mermaid/dist/chunks/mermaid.core/sankeyDiagram-HTMAVEWB.mjs
161013
- var sankeyDiagram_HTMAVEWB_exports = {};
161014
- __export(sankeyDiagram_HTMAVEWB_exports, {
161071
+ // node_modules/mermaid/dist/chunks/mermaid.core/sankeyDiagram-W5VNT64P.mjs
161072
+ var sankeyDiagram_W5VNT64P_exports = {};
161073
+ __export(sankeyDiagram_W5VNT64P_exports, {
161015
161074
  diagram: () => diagram21
161016
161075
  });
161017
161076
  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();
161077
+ var init_sankeyDiagram_W5VNT64P = __esm({
161078
+ "node_modules/mermaid/dist/chunks/mermaid.core/sankeyDiagram-W5VNT64P.mjs"() {
161079
+ init_chunk_I66GZJ75();
161021
161080
  init_chunk_X3CZISLH();
161022
161081
  init_chunk_Y2CYZVJY();
161023
161082
  init_src32();
@@ -161782,18 +161841,18 @@ ${prefix}${Math.round(value2 * 100) / 100}${suffix}`;
161782
161841
  }
161783
161842
  });
161784
161843
 
161785
- // node_modules/mermaid/dist/chunks/mermaid.core/diagram-NH7WQ7WH.mjs
161786
- var diagram_NH7WQ7WH_exports = {};
161787
- __export(diagram_NH7WQ7WH_exports, {
161844
+ // node_modules/mermaid/dist/chunks/mermaid.core/diagram-LBJQPF4R.mjs
161845
+ var diagram_LBJQPF4R_exports = {};
161846
+ __export(diagram_LBJQPF4R_exports, {
161788
161847
  diagram: () => diagram22
161789
161848
  });
161790
161849
  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"() {
161850
+ var init_diagram_LBJQPF4R = __esm({
161851
+ "node_modules/mermaid/dist/chunks/mermaid.core/diagram-LBJQPF4R.mjs"() {
161793
161852
  init_chunk_JWPE2WC7();
161794
- init_chunk_VAUOI2AC();
161795
- init_chunk_ICXQ74PX();
161796
- init_chunk_WYO6CB5R();
161853
+ init_chunk_3NCLNEKW();
161854
+ init_chunk_NSK5VX7P();
161855
+ init_chunk_I66GZJ75();
161797
161856
  init_chunk_X3CZISLH();
161798
161857
  init_chunk_Y2CYZVJY();
161799
161858
  init_mermaid_parser_core();
@@ -162006,9 +162065,9 @@ var init_diagram_NH7WQ7WH = __esm({
162006
162065
  }
162007
162066
  });
162008
162067
 
162009
- // node_modules/mermaid/dist/chunks/mermaid.core/diagram-WEI45ONY.mjs
162010
- var diagram_WEI45ONY_exports = {};
162011
- __export(diagram_WEI45ONY_exports, {
162068
+ // node_modules/mermaid/dist/chunks/mermaid.core/diagram-UB23O5K3.mjs
162069
+ var diagram_UB23O5K3_exports = {};
162070
+ __export(diagram_UB23O5K3_exports, {
162012
162071
  diagram: () => diagram23
162013
162072
  });
162014
162073
  function drawCurves(g2, axes, curves, minValue, maxValue, graticule, config3) {
@@ -162069,13 +162128,13 @@ function drawLegend(g2, curves, showLegend, config3) {
162069
162128
  itemGroup.append("text").attr("x", 16).attr("y", 0).attr("class", "radarLegendText").text(curve.label);
162070
162129
  });
162071
162130
  }
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"() {
162131
+ 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;
162132
+ var init_diagram_UB23O5K3 = __esm({
162133
+ "node_modules/mermaid/dist/chunks/mermaid.core/diagram-UB23O5K3.mjs"() {
162075
162134
  init_chunk_JWPE2WC7();
162076
- init_chunk_VAUOI2AC();
162077
- init_chunk_ICXQ74PX();
162078
- init_chunk_WYO6CB5R();
162135
+ init_chunk_3NCLNEKW();
162136
+ init_chunk_NSK5VX7P();
162137
+ init_chunk_I66GZJ75();
162079
162138
  init_chunk_X3CZISLH();
162080
162139
  init_chunk_Y2CYZVJY();
162081
162140
  init_mermaid_parser_core();
@@ -162086,6 +162145,7 @@ var init_diagram_WEI45ONY = __esm({
162086
162145
  min: 0,
162087
162146
  graticule: "circle"
162088
162147
  };
162148
+ MAX_TICKS = 32;
162089
162149
  defaultRadarData = {
162090
162150
  axes: [],
162091
162151
  curves: [],
@@ -162151,6 +162211,12 @@ var init_diagram_WEI45ONY = __esm({
162151
162211
  min: optionMap.min?.value ?? defaultOptions.min,
162152
162212
  graticule: optionMap.graticule?.value ?? defaultOptions.graticule
162153
162213
  };
162214
+ if (data4.options.ticks > MAX_TICKS) {
162215
+ log.warn(
162216
+ `Radar diagram ticks (${data4.options.ticks}) exceeds maximum allowed (${MAX_TICKS}). Using ${MAX_TICKS} instead.`
162217
+ );
162218
+ data4.options.ticks = MAX_TICKS;
162219
+ }
162154
162220
  }, "setOptions");
162155
162221
  clear211 = /* @__PURE__ */ __name(() => {
162156
162222
  clear();
@@ -162322,9 +162388,9 @@ var init_diagram_WEI45ONY = __esm({
162322
162388
  }
162323
162389
  });
162324
162390
 
162325
- // node_modules/mermaid/dist/chunks/mermaid.core/blockDiagram-677ZJIJ3.mjs
162326
- var blockDiagram_677ZJIJ3_exports = {};
162327
- __export(blockDiagram_677ZJIJ3_exports, {
162391
+ // node_modules/mermaid/dist/chunks/mermaid.core/blockDiagram-VBNYF7ZC.mjs
162392
+ var blockDiagram_VBNYF7ZC_exports = {};
162393
+ __export(blockDiagram_VBNYF7ZC_exports, {
162328
162394
  diagram: () => diagram24
162329
162395
  });
162330
162396
  function typeStr2Type(typeStr) {
@@ -163023,15 +163089,15 @@ async function insertEdges(elem, edges3, blocks2, db22, id39) {
163023
163089
  }
163024
163090
  }
163025
163091
  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"() {
163092
+ var init_blockDiagram_VBNYF7ZC = __esm({
163093
+ "node_modules/mermaid/dist/chunks/mermaid.core/blockDiagram-VBNYF7ZC.mjs"() {
163028
163094
  init_chunk_5VM5RSS4();
163029
163095
  init_chunk_7BUUIJ7U();
163030
- init_chunk_OGEWGWER();
163031
- init_chunk_Q4XR5HBZ();
163032
- init_chunk_HOUHSVGY();
163033
- init_chunk_ICXQ74PX();
163034
- init_chunk_WYO6CB5R();
163096
+ init_chunk_UBXNYLIW();
163097
+ init_chunk_WRU74C26();
163098
+ init_chunk_4I5QYGJK();
163099
+ init_chunk_NSK5VX7P();
163100
+ init_chunk_I66GZJ75();
163035
163101
  init_chunk_X3CZISLH();
163036
163102
  init_chunk_Y2CYZVJY();
163037
163103
  init_compat();
@@ -166108,9 +166174,9 @@ var init_blockDiagram_677ZJIJ3 = __esm({
166108
166174
  }
166109
166175
  });
166110
166176
 
166111
- // node_modules/mermaid/dist/chunks/mermaid.core/diagram-OA4YK3LP.mjs
166112
- var diagram_OA4YK3LP_exports = {};
166113
- __export(diagram_OA4YK3LP_exports, {
166177
+ // node_modules/mermaid/dist/chunks/mermaid.core/diagram-7IWD3JNH.mjs
166178
+ var diagram_7IWD3JNH_exports = {};
166179
+ __export(diagram_7IWD3JNH_exports, {
166114
166180
  diagram: () => diagram25
166115
166181
  });
166116
166182
  function isBoxDrawingFormat(lines) {
@@ -166277,14 +166343,14 @@ function getNodeIcon(node2, config3) {
166277
166343
  return `${treeViewIcons.prefix}:${node2.nodeType === "directory" ? "folder" : "file"}`;
166278
166344
  }
166279
166345
  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"() {
166346
+ var init_diagram_7IWD3JNH = __esm({
166347
+ "node_modules/mermaid/dist/chunks/mermaid.core/diagram-7IWD3JNH.mjs"() {
166282
166348
  init_chunk_2Q5K7J3B();
166283
166349
  init_chunk_JWPE2WC7();
166284
- init_chunk_VAUOI2AC();
166285
- init_chunk_HOUHSVGY();
166286
- init_chunk_ICXQ74PX();
166287
- init_chunk_WYO6CB5R();
166350
+ init_chunk_3NCLNEKW();
166351
+ init_chunk_4I5QYGJK();
166352
+ init_chunk_NSK5VX7P();
166353
+ init_chunk_I66GZJ75();
166288
166354
  init_chunk_X3CZISLH();
166289
166355
  init_chunk_Y2CYZVJY();
166290
166356
  init_mermaid_parser_core();
@@ -174287,9 +174353,9 @@ var require_cytoscape_fcose = __commonJS({
174287
174353
  }
174288
174354
  });
174289
174355
 
174290
- // node_modules/mermaid/dist/chunks/mermaid.core/architectureDiagram-ZJ3FMSHR.mjs
174291
- var architectureDiagram_ZJ3FMSHR_exports = {};
174292
- __export(architectureDiagram_ZJ3FMSHR_exports, {
174356
+ // node_modules/mermaid/dist/chunks/mermaid.core/architectureDiagram-T3A2C74G.mjs
174357
+ var architectureDiagram_T3A2C74G_exports = {};
174358
+ __export(architectureDiagram_T3A2C74G_exports, {
174293
174359
  diagram: () => diagram26
174294
174360
  });
174295
174361
  function withSeededRandom(seed, fn3) {
@@ -174396,56 +174462,62 @@ function addEdges2(edges3, cy) {
174396
174462
  });
174397
174463
  }
174398
174464
  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
- }
174465
+ const flattenAlignments = /* @__PURE__ */ __name((alignmentMap, alignmentDir) => {
174466
+ const flattened = /* @__PURE__ */ new Map();
174467
+ for (const [numericDir, alignments2] of alignmentMap.entries()) {
174468
+ const dir2 = `${numericDir}`;
174469
+ let cnt4 = 0;
174470
+ const arr = [...alignments2.entries()];
174471
+ if (arr.length === 1) {
174472
+ flattened.set(dir2, arr[0][1]);
174473
+ continue;
174474
+ }
174475
+ for (let i5 = 0; i5 < arr.length - 1; i5++) {
174476
+ for (let j3 = i5 + 1; j3 < arr.length; j3++) {
174477
+ const [aGroupId, aNodeIds] = arr[i5];
174478
+ const [bGroupId, bNodeIds] = arr[j3];
174479
+ const alignment = groupAlignments.get(architectureGroupAlignmentKey(aGroupId, bGroupId));
174480
+ if (alignment === alignmentDir) {
174481
+ flattened.set(dir2, [...flattened.get(dir2) ?? [], ...aNodeIds, ...bNodeIds]);
174482
+ } else if (aGroupId === "default" || bGroupId === "default") {
174483
+ flattened.set(dir2, [...flattened.get(dir2) ?? [], ...aNodeIds, ...bNodeIds]);
174484
+ } else {
174485
+ const keyA = `${dir2}-${cnt4++}`;
174486
+ flattened.set(keyA, aNodeIds);
174487
+ const keyB = `${dir2}-${cnt4++}`;
174488
+ flattened.set(keyB, bNodeIds);
174425
174489
  }
174426
174490
  }
174427
- return prev2;
174428
- },
174429
- {}
174430
- );
174491
+ }
174492
+ }
174493
+ return flattened;
174431
174494
  }, "flattenAlignments");
174432
174495
  const alignments = spatialMaps.map((spatialMap) => {
174433
- const horizontalAlignments = {};
174434
- const verticalAlignments = {};
174435
- Object.entries(spatialMap).forEach(([id39, [x6, y6]]) => {
174496
+ const horizontalAlignments = /* @__PURE__ */ new Map();
174497
+ const verticalAlignments = /* @__PURE__ */ new Map();
174498
+ spatialMap.forEach(([x6, y6], id39) => {
174436
174499
  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);
174500
+ const horizontalAlignment = horizontalAlignments.get(y6) ?? /* @__PURE__ */ new Map();
174501
+ if (!horizontalAlignments.has(y6)) {
174502
+ horizontalAlignments.set(y6, horizontalAlignment);
174503
+ }
174504
+ const verticalAlignment2 = verticalAlignments.get(x6) ?? /* @__PURE__ */ new Map();
174505
+ if (!verticalAlignments.has(x6)) {
174506
+ verticalAlignments.set(x6, verticalAlignment2);
174507
+ }
174508
+ for (const alignment of [horizontalAlignment, verticalAlignment2]) {
174509
+ const nodeList = alignment.get(nodeGroup) ?? [];
174510
+ if (!alignment.has(nodeGroup)) {
174511
+ alignment.set(nodeGroup, nodeList);
174512
+ }
174513
+ nodeList.push(id39);
174514
+ }
174443
174515
  });
174444
174516
  return {
174445
- horiz: Object.values(flattenAlignments(horizontalAlignments, "horizontal")).filter(
174517
+ horiz: [...flattenAlignments(horizontalAlignments, "horizontal").values()].filter(
174446
174518
  (arr) => arr.length > 1
174447
174519
  ),
174448
- vert: Object.values(flattenAlignments(verticalAlignments, "vertical")).filter(
174520
+ vert: [...flattenAlignments(verticalAlignments, "vertical").values()].filter(
174449
174521
  (arr) => arr.length > 1
174450
174522
  )
174451
174523
  };
@@ -174501,8 +174573,8 @@ function getRelativeConstraints(spatialMaps, db12, layoutHints = []) {
174501
174573
  const posToStr = /* @__PURE__ */ __name((pos) => `${pos[0]},${pos[1]}`, "posToStr");
174502
174574
  const strToPos = /* @__PURE__ */ __name((pos) => pos.split(",").map((p3) => parseInt(p3)), "strToPos");
174503
174575
  spatialMaps.forEach((spatialMap) => {
174504
- const invSpatialMap = Object.fromEntries(
174505
- Object.entries(spatialMap).map(([id39, pos]) => [posToStr(pos), id39])
174576
+ const invSpatialMap = new Map(
174577
+ [...spatialMap.entries()].map(([key, value2]) => [posToStr(value2), key])
174506
174578
  );
174507
174579
  const queue = [posToStr([0, 0])];
174508
174580
  const visited = {};
@@ -174516,12 +174588,12 @@ function getRelativeConstraints(spatialMaps, db12, layoutHints = []) {
174516
174588
  const curr = queue.shift();
174517
174589
  if (curr) {
174518
174590
  visited[curr] = 1;
174519
- const currId = invSpatialMap[curr];
174591
+ const currId = invSpatialMap.get(curr);
174520
174592
  if (currId) {
174521
174593
  const currPos = strToPos(curr);
174522
174594
  Object.entries(directions).forEach(([dir2, shift2]) => {
174523
174595
  const newPos = posToStr([currPos[0] + shift2[0], currPos[1] + shift2[1]]);
174524
- const newId2 = invSpatialMap[newPos];
174596
+ const newId2 = invSpatialMap.get(newPos);
174525
174597
  if (newId2 && !visited[newPos]) {
174526
174598
  queue.push(newPos);
174527
174599
  if (declaredPairs.has(`${currId}|${newId2}`)) {
@@ -174729,15 +174801,15 @@ function layoutArchitecture(services, junctions, groups, edges3, db12, { spatial
174729
174801
  });
174730
174802
  });
174731
174803
  }
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"() {
174804
+ 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;
174805
+ var init_architectureDiagram_T3A2C74G = __esm({
174806
+ "node_modules/mermaid/dist/chunks/mermaid.core/architectureDiagram-T3A2C74G.mjs"() {
174735
174807
  init_chunk_JWPE2WC7();
174736
- init_chunk_VAUOI2AC();
174737
- init_chunk_Q4XR5HBZ();
174738
- init_chunk_HOUHSVGY();
174739
- init_chunk_ICXQ74PX();
174740
- init_chunk_WYO6CB5R();
174808
+ init_chunk_3NCLNEKW();
174809
+ init_chunk_WRU74C26();
174810
+ init_chunk_4I5QYGJK();
174811
+ init_chunk_NSK5VX7P();
174812
+ init_chunk_I66GZJ75();
174741
174813
  init_chunk_X3CZISLH();
174742
174814
  init_chunk_Y2CYZVJY();
174743
174815
  init_mermaid_parser_core();
@@ -174844,6 +174916,10 @@ var init_architectureDiagram_ZJ3FMSHR = __esm({
174844
174916
  const temp = x6;
174845
174917
  return temp.type === "junction";
174846
174918
  }, "isArchitectureJunction");
174919
+ architectureGroupAlignmentKey = /* @__PURE__ */ __name((groupA, groupB) => {
174920
+ const [lowerGroupId, upperGroupId] = [groupA, groupB].sort();
174921
+ return `${JSON.stringify(lowerGroupId)}-${JSON.stringify(upperGroupId)}`;
174922
+ }, "architectureGroupAlignmentKey");
174847
174923
  edgeData = /* @__PURE__ */ __name((edge) => {
174848
174924
  return edge.data();
174849
174925
  }, "edgeData");
@@ -174853,12 +174929,12 @@ var init_architectureDiagram_ZJ3FMSHR = __esm({
174853
174929
  DEFAULT_ARCHITECTURE_CONFIG = defaultConfig_default.architecture;
174854
174930
  ArchitectureDB = class {
174855
174931
  constructor() {
174856
- this.nodes = {};
174857
- this.groups = {};
174932
+ this.nodes = /* @__PURE__ */ new Map();
174933
+ this.groups = /* @__PURE__ */ new Map();
174858
174934
  this.edges = [];
174859
174935
  this.layoutHints = [];
174860
- this.registeredIds = {};
174861
- this.elements = {};
174936
+ this.registeredIds = /* @__PURE__ */ new Map();
174937
+ this.elements = /* @__PURE__ */ new Map();
174862
174938
  this.diagramId = "";
174863
174939
  this.setAccTitle = setAccTitle;
174864
174940
  this.getAccTitle = getAccTitle;
@@ -174878,13 +174954,13 @@ var init_architectureDiagram_ZJ3FMSHR = __esm({
174878
174954
  return this.diagramId;
174879
174955
  }
174880
174956
  clear() {
174881
- this.nodes = {};
174882
- this.groups = {};
174957
+ this.nodes = /* @__PURE__ */ new Map();
174958
+ this.groups = /* @__PURE__ */ new Map();
174883
174959
  this.edges = [];
174884
174960
  this.layoutHints = [];
174885
- this.registeredIds = {};
174961
+ this.registeredIds = /* @__PURE__ */ new Map();
174886
174962
  this.dataStructures = void 0;
174887
- this.elements = {};
174963
+ this.elements = /* @__PURE__ */ new Map();
174888
174964
  this.diagramId = "";
174889
174965
  clear();
174890
174966
  }
@@ -174895,26 +174971,26 @@ var init_architectureDiagram_ZJ3FMSHR = __esm({
174895
174971
  title: title2,
174896
174972
  iconText
174897
174973
  }) {
174898
- if (this.registeredIds[id39] !== void 0) {
174974
+ if (this.registeredIds.has(id39)) {
174899
174975
  throw new Error(
174900
- `The service id [${id39}] is already in use by another ${this.registeredIds[id39]}`
174976
+ `The service id [${id39}] is already in use by another ${this.registeredIds.get(id39)}`
174901
174977
  );
174902
174978
  }
174903
174979
  if (parent4 !== void 0) {
174904
174980
  if (id39 === parent4) {
174905
174981
  throw new Error(`The service [${id39}] cannot be placed within itself`);
174906
174982
  }
174907
- if (this.registeredIds[parent4] === void 0) {
174983
+ if (!this.registeredIds.has(parent4)) {
174908
174984
  throw new Error(
174909
174985
  `The service [${id39}]'s parent does not exist. Please make sure the parent is created before this service`
174910
174986
  );
174911
174987
  }
174912
- if (this.registeredIds[parent4] === "node") {
174988
+ if (this.registeredIds.get(parent4) === "node") {
174913
174989
  throw new Error(`The service [${id39}]'s parent is not a group`);
174914
174990
  }
174915
174991
  }
174916
- this.registeredIds[id39] = "node";
174917
- this.nodes[id39] = {
174992
+ this.registeredIds.set(id39, "node");
174993
+ this.nodes.set(id39, {
174918
174994
  id: id39,
174919
174995
  type: "service",
174920
174996
  icon: icon2,
@@ -174922,76 +174998,76 @@ var init_architectureDiagram_ZJ3FMSHR = __esm({
174922
174998
  title: title2,
174923
174999
  edges: [],
174924
175000
  in: parent4
174925
- };
175001
+ });
174926
175002
  }
174927
175003
  getServices() {
174928
- return Object.values(this.nodes).filter(isArchitectureService);
175004
+ return [...this.nodes.values()].filter(isArchitectureService);
174929
175005
  }
174930
175006
  addJunction({ id: id39, in: parent4 }) {
174931
- if (this.registeredIds[id39] !== void 0) {
175007
+ if (this.registeredIds.has(id39)) {
174932
175008
  throw new Error(
174933
- `The junction id [${id39}] is already in use by another ${this.registeredIds[id39]}`
175009
+ `The junction id [${id39}] is already in use by another ${this.registeredIds.get(id39)}`
174934
175010
  );
174935
175011
  }
174936
175012
  if (parent4 !== void 0) {
174937
175013
  if (id39 === parent4) {
174938
175014
  throw new Error(`The junction [${id39}] cannot be placed within itself`);
174939
175015
  }
174940
- if (this.registeredIds[parent4] === void 0) {
175016
+ if (!this.registeredIds.has(parent4)) {
174941
175017
  throw new Error(
174942
175018
  `The junction [${id39}]'s parent does not exist. Please make sure the parent is created before this junction`
174943
175019
  );
174944
175020
  }
174945
- if (this.registeredIds[parent4] === "node") {
175021
+ if (this.registeredIds.get(parent4) === "node") {
174946
175022
  throw new Error(`The junction [${id39}]'s parent is not a group`);
174947
175023
  }
174948
175024
  }
174949
- this.registeredIds[id39] = "node";
174950
- this.nodes[id39] = {
175025
+ this.registeredIds.set(id39, "node");
175026
+ this.nodes.set(id39, {
174951
175027
  id: id39,
174952
175028
  type: "junction",
174953
175029
  edges: [],
174954
175030
  in: parent4
174955
- };
175031
+ });
174956
175032
  }
174957
175033
  getJunctions() {
174958
- return Object.values(this.nodes).filter(isArchitectureJunction);
175034
+ return [...this.nodes.values()].filter(isArchitectureJunction);
174959
175035
  }
174960
175036
  getNodes() {
174961
- return Object.values(this.nodes);
175037
+ return [...this.nodes.values()];
174962
175038
  }
174963
175039
  getNode(id39) {
174964
- return this.nodes[id39] ?? null;
175040
+ return this.nodes.get(id39) ?? null;
174965
175041
  }
174966
175042
  addGroup({ id: id39, icon: icon2, in: parent4, title: title2 }) {
174967
- if (this.registeredIds?.[id39] !== void 0) {
175043
+ if (this.registeredIds.has(id39)) {
174968
175044
  throw new Error(
174969
- `The group id [${id39}] is already in use by another ${this.registeredIds[id39]}`
175045
+ `The group id [${id39}] is already in use by another ${this.registeredIds.get(id39)}`
174970
175046
  );
174971
175047
  }
174972
175048
  if (parent4 !== void 0) {
174973
175049
  if (id39 === parent4) {
174974
175050
  throw new Error(`The group [${id39}] cannot be placed within itself`);
174975
175051
  }
174976
- if (this.registeredIds?.[parent4] === void 0) {
175052
+ if (!this.registeredIds.has(parent4)) {
174977
175053
  throw new Error(
174978
175054
  `The group [${id39}]'s parent does not exist. Please make sure the parent is created before this group`
174979
175055
  );
174980
175056
  }
174981
- if (this.registeredIds?.[parent4] === "node") {
175057
+ if (this.registeredIds.get(parent4) === "node") {
174982
175058
  throw new Error(`The group [${id39}]'s parent is not a group`);
174983
175059
  }
174984
175060
  }
174985
- this.registeredIds[id39] = "group";
174986
- this.groups[id39] = {
175061
+ this.registeredIds.set(id39, "group");
175062
+ this.groups.set(id39, {
174987
175063
  id: id39,
174988
175064
  icon: icon2,
174989
175065
  title: title2,
174990
175066
  in: parent4
174991
- };
175067
+ });
174992
175068
  }
174993
175069
  getGroups() {
174994
- return Object.values(this.groups);
175070
+ return [...this.groups.values()];
174995
175071
  }
174996
175072
  addEdge({
174997
175073
  lhsId,
@@ -175014,18 +175090,18 @@ var init_architectureDiagram_ZJ3FMSHR = __esm({
175014
175090
  `Invalid direction given for right hand side of edge ${lhsId}--${rhsId}. Expected (L,R,T,B) got ${String(rhsDir)}`
175015
175091
  );
175016
175092
  }
175017
- if (this.nodes[lhsId] === void 0 && this.groups[lhsId] === void 0) {
175093
+ if (!this.nodes.has(lhsId) && !this.groups.has(lhsId)) {
175018
175094
  throw new Error(
175019
175095
  `The left-hand id [${lhsId}] does not yet exist. Please create the service/group before declaring an edge to it.`
175020
175096
  );
175021
175097
  }
175022
- if (this.nodes[rhsId] === void 0 && this.groups[rhsId] === void 0) {
175098
+ if (!this.nodes.has(rhsId) && !this.groups.has(rhsId)) {
175023
175099
  throw new Error(
175024
175100
  `The right-hand id [${rhsId}] does not yet exist. Please create the service/group before declaring an edge to it.`
175025
175101
  );
175026
175102
  }
175027
- const lhsGroupId = this.nodes[lhsId].in;
175028
- const rhsGroupId = this.nodes[rhsId].in;
175103
+ const lhsGroupId = this.nodes.get(lhsId).in;
175104
+ const rhsGroupId = this.nodes.get(rhsId).in;
175029
175105
  if (lhsGroup && lhsGroupId && rhsGroupId && lhsGroupId == rhsGroupId) {
175030
175106
  throw new Error(
175031
175107
  `The left-hand id [${lhsId}] is modified to traverse the group boundary, but the edge does not pass through two groups.`
@@ -175048,9 +175124,11 @@ var init_architectureDiagram_ZJ3FMSHR = __esm({
175048
175124
  title: title2
175049
175125
  };
175050
175126
  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]);
175127
+ const lhsNode = this.nodes.get(lhsId);
175128
+ const rhsNode = this.nodes.get(rhsId);
175129
+ if (lhsNode && rhsNode) {
175130
+ lhsNode.edges.push(this.edges[this.edges.length - 1]);
175131
+ rhsNode.edges.push(this.edges[this.edges.length - 1]);
175054
175132
  }
175055
175133
  }
175056
175134
  getEdges() {
@@ -175064,7 +175142,7 @@ var init_architectureDiagram_ZJ3FMSHR = __esm({
175064
175142
  }
175065
175143
  const seen = /* @__PURE__ */ new Set();
175066
175144
  hint.members.forEach((id39) => {
175067
- if (this.registeredIds[id39] !== "node") {
175145
+ if (this.registeredIds.get(id39) !== "node") {
175068
175146
  throw new Error(
175069
175147
  `align ${hint.direction} references [${id39}], which is not a service or junction`
175070
175148
  );
@@ -175086,57 +175164,59 @@ var init_architectureDiagram_ZJ3FMSHR = __esm({
175086
175164
  */
175087
175165
  getDataStructures() {
175088
175166
  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) => {
175167
+ const groupAlignments = /* @__PURE__ */ new Map();
175168
+ const adjList = /* @__PURE__ */ new Map();
175169
+ for (const [id39, service] of this.nodes.entries()) {
175170
+ const directionMap = /* @__PURE__ */ new Map();
175171
+ for (const edge of service.edges) {
175092
175172
  const lhsGroupId = this.getNode(edge.lhsId)?.in;
175093
175173
  const rhsGroupId = this.getNode(edge.rhsId)?.in;
175094
175174
  if (lhsGroupId && rhsGroupId && lhsGroupId !== rhsGroupId) {
175095
175175
  const alignment = getArchitectureDirectionAlignment(edge.lhsDir, edge.rhsDir);
175096
175176
  if (alignment !== "bend") {
175097
- groupAlignments[lhsGroupId] ??= {};
175098
- groupAlignments[lhsGroupId][rhsGroupId] = alignment;
175099
- groupAlignments[rhsGroupId] ??= {};
175100
- groupAlignments[rhsGroupId][lhsGroupId] = alignment;
175177
+ groupAlignments.set(architectureGroupAlignmentKey(lhsGroupId, rhsGroupId), alignment);
175101
175178
  }
175102
175179
  }
175103
175180
  if (edge.lhsId === id39) {
175104
175181
  const pair = getArchitectureDirectionPair(edge.lhsDir, edge.rhsDir);
175105
175182
  if (pair) {
175106
- prevInner[pair] = edge.rhsId;
175183
+ directionMap.set(pair, edge.rhsId);
175107
175184
  }
175108
175185
  } else {
175109
175186
  const pair = getArchitectureDirectionPair(edge.rhsDir, edge.lhsDir);
175110
175187
  if (pair) {
175111
- prevInner[pair] = edge.lhsId;
175188
+ directionMap.set(pair, edge.lhsId);
175112
175189
  }
175113
175190
  }
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
- );
175191
+ }
175192
+ adjList.set(id39, directionMap);
175193
+ }
175194
+ const visited = /* @__PURE__ */ new Set();
175195
+ const notVisited = new Set(adjList.keys());
175124
175196
  const BFS = /* @__PURE__ */ __name((startingId) => {
175125
- const spatialMap = { [startingId]: [0, 0] };
175197
+ const spatialMap = /* @__PURE__ */ new Map([[startingId, [0, 0]]]);
175126
175198
  const queue = [startingId];
175127
175199
  while (queue.length > 0) {
175128
175200
  const id39 = queue.shift();
175129
175201
  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
- );
175202
+ visited.add(id39);
175203
+ notVisited.delete(id39);
175204
+ const adj = adjList.get(id39);
175205
+ if (!adj) {
175206
+ throw new Error(
175207
+ `BFS error: adjacency list for id ${id39} not found. Please report this as a bug.`
175208
+ );
175209
+ }
175210
+ const pos = spatialMap.get(id39);
175211
+ if (!pos) {
175212
+ throw new Error(
175213
+ `BFS error: position for id ${id39} not found in spatial map. Please report this as a bug.`
175214
+ );
175215
+ }
175216
+ const [posX, posY] = pos;
175217
+ adj.forEach((rhsId, dir2) => {
175218
+ if (!visited.has(rhsId)) {
175219
+ spatialMap.set(rhsId, shiftPositionByArchitectureDirectionPair([posX, posY], dir2));
175140
175220
  queue.push(rhsId);
175141
175221
  }
175142
175222
  });
@@ -175144,9 +175224,10 @@ var init_architectureDiagram_ZJ3FMSHR = __esm({
175144
175224
  }
175145
175225
  return spatialMap;
175146
175226
  }, "BFS");
175147
- const spatialMaps = [BFS(firstId)];
175148
- while (Object.keys(notVisited).length > 0) {
175149
- spatialMaps.push(BFS(Object.keys(notVisited)[0]));
175227
+ const spatialMaps = [];
175228
+ while (notVisited.size > 0) {
175229
+ const firstId = notVisited.values().next().value;
175230
+ spatialMaps.push(BFS(firstId));
175150
175231
  }
175151
175232
  this.dataStructures = {
175152
175233
  adjList,
@@ -175157,10 +175238,10 @@ var init_architectureDiagram_ZJ3FMSHR = __esm({
175157
175238
  return this.dataStructures;
175158
175239
  }
175159
175240
  setElementForId(id39, element3) {
175160
- this.elements[id39] = element3;
175241
+ this.elements.set(id39, element3);
175161
175242
  }
175162
175243
  getElementById(id39) {
175163
- return this.elements[id39];
175244
+ return this.elements.get(id39);
175164
175245
  }
175165
175246
  getConfig() {
175166
175247
  return cleanAndMerge({
@@ -175548,9 +175629,9 @@ var init_architectureDiagram_ZJ3FMSHR = __esm({
175548
175629
  }
175549
175630
  });
175550
175631
 
175551
- // node_modules/mermaid/dist/chunks/mermaid.core/diagram-FQU43EPY.mjs
175552
- var diagram_FQU43EPY_exports = {};
175553
- __export(diagram_FQU43EPY_exports, {
175632
+ // node_modules/mermaid/dist/chunks/mermaid.core/diagram-B4RE2ZJO.mjs
175633
+ var diagram_B4RE2ZJO_exports = {};
175634
+ __export(diagram_B4RE2ZJO_exports, {
175554
175635
  diagram: () => diagram27
175555
175636
  });
175556
175637
  function reset4() {
@@ -176033,11 +176114,11 @@ function renderD3Swimlane(diagram210, maxR, diagramProps2, themeVariables) {
176033
176114
  };
176034
176115
  }
176035
176116
  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"() {
176117
+ var init_diagram_B4RE2ZJO = __esm({
176118
+ "node_modules/mermaid/dist/chunks/mermaid.core/diagram-B4RE2ZJO.mjs"() {
176038
176119
  init_chunk_JWPE2WC7();
176039
- init_chunk_ICXQ74PX();
176040
- init_chunk_WYO6CB5R();
176120
+ init_chunk_NSK5VX7P();
176121
+ init_chunk_I66GZJ75();
176041
176122
  init_chunk_X3CZISLH();
176042
176123
  init_chunk_Y2CYZVJY();
176043
176124
  init_mermaid_parser_core();
@@ -176205,17 +176286,17 @@ var init_diagram_FQU43EPY = __esm({
176205
176286
  }
176206
176287
  });
176207
176288
 
176208
- // node_modules/mermaid/dist/chunks/mermaid.core/ishikawaDiagram-FXEZZL3T.mjs
176209
- var ishikawaDiagram_FXEZZL3T_exports = {};
176210
- __export(ishikawaDiagram_FXEZZL3T_exports, {
176289
+ // node_modules/mermaid/dist/chunks/mermaid.core/ishikawaDiagram-WSZJBQD7.mjs
176290
+ var ishikawaDiagram_WSZJBQD7_exports = {};
176291
+ __export(ishikawaDiagram_WSZJBQD7_exports, {
176211
176292
  diagram: () => diagram28
176212
176293
  });
176213
176294
  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();
176295
+ var init_ishikawaDiagram_WSZJBQD7 = __esm({
176296
+ "node_modules/mermaid/dist/chunks/mermaid.core/ishikawaDiagram-WSZJBQD7.mjs"() {
176297
+ init_chunk_3NCLNEKW();
176298
+ init_chunk_NSK5VX7P();
176299
+ init_chunk_I66GZJ75();
176219
176300
  init_chunk_X3CZISLH();
176220
176301
  init_chunk_Y2CYZVJY();
176221
176302
  init_rough_esm();
@@ -178649,9 +178730,9 @@ var init_venn_esm = __esm({
178649
178730
  }
178650
178731
  });
178651
178732
 
178652
- // node_modules/mermaid/dist/chunks/mermaid.core/vennDiagram-L72KCM5P.mjs
178653
- var vennDiagram_L72KCM5P_exports = {};
178654
- __export(vennDiagram_L72KCM5P_exports, {
178733
+ // node_modules/mermaid/dist/chunks/mermaid.core/vennDiagram-T6HMQDX7.mjs
178734
+ var vennDiagram_T6HMQDX7_exports = {};
178735
+ __export(vennDiagram_T6HMQDX7_exports, {
178655
178736
  diagram: () => diagram29
178656
178737
  });
178657
178738
  function getConfig25() {
@@ -178764,11 +178845,11 @@ function ensurePairwiseSubsets(subsets2) {
178764
178845
  return synthetic.length > 0 ? [...subsets2, ...synthetic] : subsets2;
178765
178846
  }
178766
178847
  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();
178848
+ var init_vennDiagram_T6HMQDX7 = __esm({
178849
+ "node_modules/mermaid/dist/chunks/mermaid.core/vennDiagram-T6HMQDX7.mjs"() {
178850
+ init_chunk_3NCLNEKW();
178851
+ init_chunk_NSK5VX7P();
178852
+ init_chunk_I66GZJ75();
178772
178853
  init_chunk_X3CZISLH();
178773
178854
  init_chunk_Y2CYZVJY();
178774
178855
  init_src32();
@@ -179760,9 +179841,9 @@ var init_vennDiagram_L72KCM5P = __esm({
179760
179841
  }
179761
179842
  });
179762
179843
 
179763
- // node_modules/mermaid/dist/chunks/mermaid.core/diagram-G47NLZAW.mjs
179764
- var diagram_G47NLZAW_exports = {};
179765
- __export(diagram_G47NLZAW_exports, {
179844
+ // node_modules/mermaid/dist/chunks/mermaid.core/diagram-Q27KOJAE.mjs
179845
+ var diagram_Q27KOJAE_exports = {};
179846
+ __export(diagram_Q27KOJAE_exports, {
179766
179847
  diagram: () => diagram30
179767
179848
  });
179768
179849
  function buildHierarchy(items) {
@@ -179803,14 +179884,14 @@ function buildHierarchy(items) {
179803
179884
  return root4;
179804
179885
  }
179805
179886
  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"() {
179887
+ var init_diagram_Q27KOJAE = __esm({
179888
+ "node_modules/mermaid/dist/chunks/mermaid.core/diagram-Q27KOJAE.mjs"() {
179808
179889
  init_chunk_JWPE2WC7();
179809
- init_chunk_VAUOI2AC();
179810
- init_chunk_VR4S4FIN();
179811
- init_chunk_C7G6YPKG();
179812
- init_chunk_ICXQ74PX();
179813
- init_chunk_WYO6CB5R();
179890
+ init_chunk_3NCLNEKW();
179891
+ init_chunk_KBJHAD2P();
179892
+ init_chunk_W5SLKNZC();
179893
+ init_chunk_NSK5VX7P();
179894
+ init_chunk_I66GZJ75();
179814
179895
  init_chunk_X3CZISLH();
179815
179896
  init_chunk_Y2CYZVJY();
179816
179897
  init_mermaid_parser_core();
@@ -180303,9 +180384,9 @@ var init_diagram_G47NLZAW = __esm({
180303
180384
  }
180304
180385
  });
180305
180386
 
180306
- // node_modules/mermaid/dist/chunks/mermaid.core/wardleyDiagram-EHGQE667.mjs
180307
- var wardleyDiagram_EHGQE667_exports = {};
180308
- __export(wardleyDiagram_EHGQE667_exports, {
180387
+ // node_modules/mermaid/dist/chunks/mermaid.core/wardleyDiagram-T6FBY63Y.mjs
180388
+ var wardleyDiagram_T6FBY63Y_exports = {};
180389
+ __export(wardleyDiagram_T6FBY63Y_exports, {
180309
180390
  diagram: () => diagram31
180310
180391
  });
180311
180392
  function getConfig33() {
@@ -180393,12 +180474,12 @@ function clear215() {
180393
180474
  clear();
180394
180475
  }
180395
180476
  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"() {
180477
+ var init_wardleyDiagram_T6FBY63Y = __esm({
180478
+ "node_modules/mermaid/dist/chunks/mermaid.core/wardleyDiagram-T6FBY63Y.mjs"() {
180398
180479
  init_chunk_JWPE2WC7();
180399
- init_chunk_VAUOI2AC();
180400
- init_chunk_ICXQ74PX();
180401
- init_chunk_WYO6CB5R();
180480
+ init_chunk_3NCLNEKW();
180481
+ init_chunk_NSK5VX7P();
180482
+ init_chunk_I66GZJ75();
180402
180483
  init_chunk_X3CZISLH();
180403
180484
  init_chunk_Y2CYZVJY();
180404
180485
  init_mermaid_parser_core();
@@ -181290,9 +181371,9 @@ var init_wardleyDiagram_EHGQE667 = __esm({
181290
181371
  }
181291
181372
  });
181292
181373
 
181293
- // node_modules/mermaid/dist/chunks/mermaid.core/cynefinDiagram-TSTJHNR4.mjs
181294
- var cynefinDiagram_TSTJHNR4_exports = {};
181295
- __export(cynefinDiagram_TSTJHNR4_exports, {
181374
+ // node_modules/mermaid/dist/chunks/mermaid.core/cynefinDiagram-MW4NZA55.mjs
181375
+ var cynefinDiagram_MW4NZA55_exports = {};
181376
+ __export(cynefinDiagram_MW4NZA55_exports, {
181296
181377
  diagram: () => diagram32
181297
181378
  });
181298
181379
  function seededRandom(seed) {
@@ -181390,12 +181471,12 @@ function generateConfusionPath(cx, cy, rx, ry) {
181390
181471
  ].join(" ");
181391
181472
  }
181392
181473
  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"() {
181474
+ var init_cynefinDiagram_MW4NZA55 = __esm({
181475
+ "node_modules/mermaid/dist/chunks/mermaid.core/cynefinDiagram-MW4NZA55.mjs"() {
181395
181476
  init_chunk_JWPE2WC7();
181396
- init_chunk_VAUOI2AC();
181397
- init_chunk_ICXQ74PX();
181398
- init_chunk_WYO6CB5R();
181477
+ init_chunk_3NCLNEKW();
181478
+ init_chunk_NSK5VX7P();
181479
+ init_chunk_I66GZJ75();
181399
181480
  init_chunk_X3CZISLH();
181400
181481
  init_chunk_Y2CYZVJY();
181401
181482
  init_mermaid_parser_core();
@@ -181755,12 +181836,12 @@ var init_cynefinDiagram_TSTJHNR4 = __esm({
181755
181836
  }
181756
181837
  });
181757
181838
 
181758
- // node_modules/mermaid/dist/chunks/mermaid.core/chunk-MOJQB5TN.mjs
181839
+ // node_modules/mermaid/dist/chunks/mermaid.core/chunk-6Q2QTUOP.mjs
181759
181840
  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();
181841
+ var init_chunk_6Q2QTUOP = __esm({
181842
+ "node_modules/mermaid/dist/chunks/mermaid.core/chunk-6Q2QTUOP.mjs"() {
181843
+ init_chunk_3NCLNEKW();
181844
+ init_chunk_I66GZJ75();
181764
181845
  init_chunk_X3CZISLH();
181765
181846
  init_chunk_Y2CYZVJY();
181766
181847
  diagramTitle2 = "";
@@ -182620,19 +182701,19 @@ var init_chunk_MOJQB5TN = __esm({
182620
182701
  }
182621
182702
  });
182622
182703
 
182623
- // node_modules/mermaid/dist/chunks/mermaid.core/railroadDiagram-RFXS5EU6.mjs
182624
- var railroadDiagram_RFXS5EU6_exports = {};
182625
- __export(railroadDiagram_RFXS5EU6_exports, {
182704
+ // node_modules/mermaid/dist/chunks/mermaid.core/railroadDiagram-AXF67PYL.mjs
182705
+ var railroadDiagram_AXF67PYL_exports = {};
182706
+ __export(railroadDiagram_AXF67PYL_exports, {
182626
182707
  default: () => railroadDiagram_default,
182627
182708
  diagram: () => diagram33
182628
182709
  });
182629
182710
  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();
182711
+ var init_railroadDiagram_AXF67PYL = __esm({
182712
+ "node_modules/mermaid/dist/chunks/mermaid.core/railroadDiagram-AXF67PYL.mjs"() {
182713
+ init_chunk_6Q2QTUOP();
182633
182714
  init_chunk_JWPE2WC7();
182634
- init_chunk_VAUOI2AC();
182635
- init_chunk_WYO6CB5R();
182715
+ init_chunk_3NCLNEKW();
182716
+ init_chunk_I66GZJ75();
182636
182717
  init_chunk_X3CZISLH();
182637
182718
  init_chunk_Y2CYZVJY();
182638
182719
  init_mermaid_parser_core();
@@ -182725,18 +182806,18 @@ var init_railroadDiagram_RFXS5EU6 = __esm({
182725
182806
  }
182726
182807
  });
182727
182808
 
182728
- // node_modules/mermaid/dist/chunks/mermaid.core/ebnfDiagram-CCIWWBDH.mjs
182729
- var ebnfDiagram_CCIWWBDH_exports = {};
182730
- __export(ebnfDiagram_CCIWWBDH_exports, {
182809
+ // node_modules/mermaid/dist/chunks/mermaid.core/ebnfDiagram-BXEA7PRR.mjs
182810
+ var ebnfDiagram_BXEA7PRR_exports = {};
182811
+ __export(ebnfDiagram_BXEA7PRR_exports, {
182731
182812
  diagram: () => diagram34
182732
182813
  });
182733
182814
  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();
182815
+ var init_ebnfDiagram_BXEA7PRR = __esm({
182816
+ "node_modules/mermaid/dist/chunks/mermaid.core/ebnfDiagram-BXEA7PRR.mjs"() {
182817
+ init_chunk_6Q2QTUOP();
182737
182818
  init_chunk_JWPE2WC7();
182738
- init_chunk_VAUOI2AC();
182739
- init_chunk_WYO6CB5R();
182819
+ init_chunk_3NCLNEKW();
182820
+ init_chunk_I66GZJ75();
182740
182821
  init_chunk_X3CZISLH();
182741
182822
  init_chunk_Y2CYZVJY();
182742
182823
  init_mermaid_parser_core();
@@ -182874,18 +182955,18 @@ var init_ebnfDiagram_CCIWWBDH = __esm({
182874
182955
  }
182875
182956
  });
182876
182957
 
182877
- // node_modules/mermaid/dist/chunks/mermaid.core/abnfDiagram-VRR7QNED.mjs
182878
- var abnfDiagram_VRR7QNED_exports = {};
182879
- __export(abnfDiagram_VRR7QNED_exports, {
182958
+ // node_modules/mermaid/dist/chunks/mermaid.core/abnfDiagram-N423BO3Z.mjs
182959
+ var abnfDiagram_N423BO3Z_exports = {};
182960
+ __export(abnfDiagram_N423BO3Z_exports, {
182880
182961
  diagram: () => diagram35
182881
182962
  });
182882
182963
  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();
182964
+ var init_abnfDiagram_N423BO3Z = __esm({
182965
+ "node_modules/mermaid/dist/chunks/mermaid.core/abnfDiagram-N423BO3Z.mjs"() {
182966
+ init_chunk_6Q2QTUOP();
182886
182967
  init_chunk_JWPE2WC7();
182887
- init_chunk_VAUOI2AC();
182888
- init_chunk_WYO6CB5R();
182968
+ init_chunk_3NCLNEKW();
182969
+ init_chunk_I66GZJ75();
182889
182970
  init_chunk_X3CZISLH();
182890
182971
  init_chunk_Y2CYZVJY();
182891
182972
  init_mermaid_parser_core();
@@ -183003,18 +183084,18 @@ var init_abnfDiagram_VRR7QNED = __esm({
183003
183084
  }
183004
183085
  });
183005
183086
 
183006
- // node_modules/mermaid/dist/chunks/mermaid.core/pegDiagram-2B236MQR.mjs
183007
- var pegDiagram_2B236MQR_exports = {};
183008
- __export(pegDiagram_2B236MQR_exports, {
183087
+ // node_modules/mermaid/dist/chunks/mermaid.core/pegDiagram-VL7TDLO6.mjs
183088
+ var pegDiagram_VL7TDLO6_exports = {};
183089
+ __export(pegDiagram_VL7TDLO6_exports, {
183009
183090
  diagram: () => diagram36
183010
183091
  });
183011
183092
  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();
183093
+ var init_pegDiagram_VL7TDLO6 = __esm({
183094
+ "node_modules/mermaid/dist/chunks/mermaid.core/pegDiagram-VL7TDLO6.mjs"() {
183095
+ init_chunk_6Q2QTUOP();
183015
183096
  init_chunk_JWPE2WC7();
183016
- init_chunk_VAUOI2AC();
183017
- init_chunk_WYO6CB5R();
183097
+ init_chunk_3NCLNEKW();
183098
+ init_chunk_I66GZJ75();
183018
183099
  init_chunk_X3CZISLH();
183019
183100
  init_chunk_Y2CYZVJY();
183020
183101
  init_mermaid_parser_core();
@@ -183184,18 +183265,18 @@ function toggleMarkup(button) {
183184
183265
  }
183185
183266
 
183186
183267
  // node_modules/mermaid/dist/mermaid.core.mjs
183187
- init_chunk_VAUOI2AC();
183268
+ init_chunk_3NCLNEKW();
183188
183269
  init_chunk_ZIRB5QZD();
183189
- init_chunk_FWX5IMBZ();
183190
- init_chunk_52WLFC77();
183191
- init_chunk_ZGVPDNZ5();
183192
- init_chunk_C7G6YPKG();
183270
+ init_chunk_J7OUQ5F2();
183271
+ init_chunk_7Z6QIM7H();
183272
+ init_chunk_QR6OTTB3();
183273
+ init_chunk_W5SLKNZC();
183193
183274
  init_chunk_7BUUIJ7U();
183194
- init_chunk_OGEWGWER();
183195
- init_chunk_Q4XR5HBZ();
183196
- init_chunk_HOUHSVGY();
183197
- init_chunk_ICXQ74PX();
183198
- init_chunk_WYO6CB5R();
183275
+ init_chunk_UBXNYLIW();
183276
+ init_chunk_WRU74C26();
183277
+ init_chunk_4I5QYGJK();
183278
+ init_chunk_NSK5VX7P();
183279
+ init_chunk_I66GZJ75();
183199
183280
  init_chunk_X3CZISLH();
183200
183281
  init_chunk_Y2CYZVJY();
183201
183282
  init_esm();
@@ -183583,7 +183664,7 @@ var detector = /* @__PURE__ */ __name((txt) => {
183583
183664
  return /^\s*C4Context|C4Container|C4Component|C4Dynamic|C4Deployment/.test(txt);
183584
183665
  }, "detector");
183585
183666
  var loader2 = /* @__PURE__ */ __name(async () => {
183586
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_c4Diagram_LMCZKHZV(), c4Diagram_LMCZKHZV_exports));
183667
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_c4Diagram_5PPSVZJV(), c4Diagram_5PPSVZJV_exports));
183587
183668
  return { id: id3, diagram: diagram210 };
183588
183669
  }, "loader");
183589
183670
  var plugin = {
@@ -183600,7 +183681,7 @@ var detector2 = /* @__PURE__ */ __name((txt, config3) => {
183600
183681
  return /^\s*graph/.test(txt);
183601
183682
  }, "detector");
183602
183683
  var loader22 = /* @__PURE__ */ __name(async () => {
183603
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_flowDiagram_23GEKE2U(), flowDiagram_23GEKE2U_exports));
183684
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_flowDiagram_UKHOOZJN(), flowDiagram_UKHOOZJN_exports));
183604
183685
  return { id: id22, diagram: diagram210 };
183605
183686
  }, "loader");
183606
183687
  var plugin2 = {
@@ -183623,7 +183704,7 @@ var detector3 = /* @__PURE__ */ __name((txt, config3) => {
183623
183704
  return /^\s*flowchart/.test(txt);
183624
183705
  }, "detector");
183625
183706
  var loader3 = /* @__PURE__ */ __name(async () => {
183626
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_flowDiagram_23GEKE2U(), flowDiagram_23GEKE2U_exports));
183707
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_flowDiagram_UKHOOZJN(), flowDiagram_UKHOOZJN_exports));
183627
183708
  return { id: id32, diagram: diagram210 };
183628
183709
  }, "loader");
183629
183710
  var plugin3 = {
@@ -183637,7 +183718,7 @@ var detector4 = /* @__PURE__ */ __name((txt) => {
183637
183718
  return /^\s*swimlane-beta\b/.test(txt);
183638
183719
  }, "detector");
183639
183720
  var loader4 = /* @__PURE__ */ __name(async () => {
183640
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_swimlanesDiagram_G3AALYLV(), swimlanesDiagram_G3AALYLV_exports));
183721
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_swimlanesDiagram_ULZ7WXOC(), swimlanesDiagram_ULZ7WXOC_exports));
183641
183722
  return { id: id4, diagram: diagram210 };
183642
183723
  }, "loader");
183643
183724
  var plugin4 = {
@@ -183651,7 +183732,7 @@ var detector5 = /* @__PURE__ */ __name((txt) => {
183651
183732
  return /^\s*erDiagram/.test(txt);
183652
183733
  }, "detector");
183653
183734
  var loader5 = /* @__PURE__ */ __name(async () => {
183654
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_erDiagram_Q63AITRT(), erDiagram_Q63AITRT_exports));
183735
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_erDiagram_JOGREHBK(), erDiagram_JOGREHBK_exports));
183655
183736
  return { id: id5, diagram: diagram210 };
183656
183737
  }, "loader");
183657
183738
  var plugin5 = {
@@ -183665,7 +183746,7 @@ var detector6 = /* @__PURE__ */ __name((txt) => {
183665
183746
  return /^\s*gitGraph/.test(txt);
183666
183747
  }, "detector");
183667
183748
  var loader6 = /* @__PURE__ */ __name(async () => {
183668
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_gitGraphDiagram_IHSO6WYX(), gitGraphDiagram_IHSO6WYX_exports));
183749
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_gitGraphDiagram_DS77QQ5N(), gitGraphDiagram_DS77QQ5N_exports));
183669
183750
  return { id: id6, diagram: diagram210 };
183670
183751
  }, "loader");
183671
183752
  var plugin6 = {
@@ -183679,7 +183760,7 @@ var detector7 = /* @__PURE__ */ __name((txt) => {
183679
183760
  return /^\s*gantt/.test(txt);
183680
183761
  }, "detector");
183681
183762
  var loader7 = /* @__PURE__ */ __name(async () => {
183682
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_ganttDiagram_NO4QXBWP(), ganttDiagram_NO4QXBWP_exports));
183763
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_ganttDiagram_PKOTCBZU(), ganttDiagram_PKOTCBZU_exports));
183683
183764
  return { id: id7, diagram: diagram210 };
183684
183765
  }, "loader");
183685
183766
  var plugin7 = {
@@ -183693,7 +183774,7 @@ var detector8 = /* @__PURE__ */ __name((txt) => {
183693
183774
  return /^\s*info/.test(txt);
183694
183775
  }, "detector");
183695
183776
  var loader8 = /* @__PURE__ */ __name(async () => {
183696
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_infoDiagram_FWYZ7A6U(), infoDiagram_FWYZ7A6U_exports));
183777
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_infoDiagram_6WML65LV(), infoDiagram_6WML65LV_exports));
183697
183778
  return { id: id8, diagram: diagram210 };
183698
183779
  }, "loader");
183699
183780
  var info = {
@@ -183706,7 +183787,7 @@ var detector9 = /* @__PURE__ */ __name((txt) => {
183706
183787
  return /^\s*pie/.test(txt);
183707
183788
  }, "detector");
183708
183789
  var loader9 = /* @__PURE__ */ __name(async () => {
183709
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_pieDiagram_ENE6RG2P(), pieDiagram_ENE6RG2P_exports));
183790
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_pieDiagram_7S7Q4E2Y(), pieDiagram_7S7Q4E2Y_exports));
183710
183791
  return { id: id9, diagram: diagram210 };
183711
183792
  }, "loader");
183712
183793
  var pie = {
@@ -183719,7 +183800,7 @@ var detector10 = /* @__PURE__ */ __name((txt) => {
183719
183800
  return /^\s*quadrantChart/.test(txt);
183720
183801
  }, "detector");
183721
183802
  var loader10 = /* @__PURE__ */ __name(async () => {
183722
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_quadrantDiagram_ABIIQ3AL(), quadrantDiagram_ABIIQ3AL_exports));
183803
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_quadrantDiagram_CIZ2JOQS(), quadrantDiagram_CIZ2JOQS_exports));
183723
183804
  return { id: id10, diagram: diagram210 };
183724
183805
  }, "loader");
183725
183806
  var plugin8 = {
@@ -183733,7 +183814,7 @@ var detector11 = /* @__PURE__ */ __name((txt) => {
183733
183814
  return /^\s*xychart(-beta)?/.test(txt);
183734
183815
  }, "detector");
183735
183816
  var loader11 = /* @__PURE__ */ __name(async () => {
183736
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_xychartDiagram_FW5EYKEG(), xychartDiagram_FW5EYKEG_exports));
183817
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_xychartDiagram_ELKLHX3M(), xychartDiagram_ELKLHX3M_exports));
183737
183818
  return { id: id11, diagram: diagram210 };
183738
183819
  }, "loader");
183739
183820
  var plugin9 = {
@@ -183747,7 +183828,7 @@ var detector12 = /* @__PURE__ */ __name((txt) => {
183747
183828
  return /^\s*requirement(Diagram)?/.test(txt);
183748
183829
  }, "detector");
183749
183830
  var loader12 = /* @__PURE__ */ __name(async () => {
183750
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_requirementDiagram_TGXJPOKE(), requirementDiagram_TGXJPOKE_exports));
183831
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_requirementDiagram_LRYGKXZP(), requirementDiagram_LRYGKXZP_exports));
183751
183832
  return { id: id12, diagram: diagram210 };
183752
183833
  }, "loader");
183753
183834
  var plugin10 = {
@@ -183761,7 +183842,7 @@ var detector13 = /* @__PURE__ */ __name((txt) => {
183761
183842
  return /^\s*sequenceDiagram/.test(txt);
183762
183843
  }, "detector");
183763
183844
  var loader13 = /* @__PURE__ */ __name(async () => {
183764
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_sequenceDiagram_DBY2YBRQ(), sequenceDiagram_DBY2YBRQ_exports));
183845
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_sequenceDiagram_SI44F4Z6(), sequenceDiagram_SI44F4Z6_exports));
183765
183846
  return { id: id13, diagram: diagram210 };
183766
183847
  }, "loader");
183767
183848
  var plugin11 = {
@@ -183778,7 +183859,7 @@ var detector14 = /* @__PURE__ */ __name((txt, config3) => {
183778
183859
  return /^\s*classDiagram/.test(txt);
183779
183860
  }, "detector");
183780
183861
  var loader14 = /* @__PURE__ */ __name(async () => {
183781
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_classDiagram_OUVF2IWQ(), classDiagram_OUVF2IWQ_exports));
183862
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_classDiagram_JCYQIIEL(), classDiagram_JCYQIIEL_exports));
183782
183863
  return { id: id14, diagram: diagram210 };
183783
183864
  }, "loader");
183784
183865
  var plugin12 = {
@@ -183795,7 +183876,7 @@ var detector15 = /* @__PURE__ */ __name((txt, config3) => {
183795
183876
  return /^\s*classDiagram-v2/.test(txt);
183796
183877
  }, "detector");
183797
183878
  var loader15 = /* @__PURE__ */ __name(async () => {
183798
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_classDiagram_v2_EOCWNBFH(), classDiagram_v2_EOCWNBFH_exports));
183879
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_classDiagram_v2_OCEON4UE(), classDiagram_v2_OCEON4UE_exports));
183799
183880
  return { id: id15, diagram: diagram210 };
183800
183881
  }, "loader");
183801
183882
  var plugin13 = {
@@ -183812,7 +183893,7 @@ var detector16 = /* @__PURE__ */ __name((txt, config3) => {
183812
183893
  return /^\s*stateDiagram/.test(txt);
183813
183894
  }, "detector");
183814
183895
  var loader16 = /* @__PURE__ */ __name(async () => {
183815
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_stateDiagram_2N3HPSRC(), stateDiagram_2N3HPSRC_exports));
183896
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_stateDiagram_OKZ733FA(), stateDiagram_OKZ733FA_exports));
183816
183897
  return { id: id16, diagram: diagram210 };
183817
183898
  }, "loader");
183818
183899
  var plugin14 = {
@@ -183832,7 +183913,7 @@ var detector17 = /* @__PURE__ */ __name((txt, config3) => {
183832
183913
  return false;
183833
183914
  }, "detector");
183834
183915
  var loader17 = /* @__PURE__ */ __name(async () => {
183835
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_stateDiagram_v2_6OUMAXLB(), stateDiagram_v2_6OUMAXLB_exports));
183916
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_stateDiagram_v2_UEYNNEHI(), stateDiagram_v2_UEYNNEHI_exports));
183836
183917
  return { id: id17, diagram: diagram210 };
183837
183918
  }, "loader");
183838
183919
  var plugin15 = {
@@ -183846,7 +183927,7 @@ var detector18 = /* @__PURE__ */ __name((txt) => {
183846
183927
  return /^\s*journey/.test(txt);
183847
183928
  }, "detector");
183848
183929
  var loader18 = /* @__PURE__ */ __name(async () => {
183849
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_journeyDiagram_5HDEW3XC(), journeyDiagram_5HDEW3XC_exports));
183930
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_journeyDiagram_NVQOT4AX(), journeyDiagram_NVQOT4AX_exports));
183850
183931
  return { id: id18, diagram: diagram210 };
183851
183932
  }, "loader");
183852
183933
  var plugin16 = {
@@ -183913,7 +183994,7 @@ var detector19 = /* @__PURE__ */ __name((txt, config3 = {}) => {
183913
183994
  return false;
183914
183995
  }, "detector");
183915
183996
  var loader19 = /* @__PURE__ */ __name(async () => {
183916
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_flowDiagram_23GEKE2U(), flowDiagram_23GEKE2U_exports));
183997
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_flowDiagram_UKHOOZJN(), flowDiagram_UKHOOZJN_exports));
183917
183998
  return { id: id19, diagram: diagram210 };
183918
183999
  }, "loader");
183919
184000
  var plugin17 = {
@@ -183927,7 +184008,7 @@ var detector20 = /* @__PURE__ */ __name((txt) => {
183927
184008
  return /^\s*timeline/.test(txt);
183928
184009
  }, "detector");
183929
184010
  var loader20 = /* @__PURE__ */ __name(async () => {
183930
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_timeline_definition_FHXFAJF6(), timeline_definition_FHXFAJF6_exports));
184011
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_timeline_definition_Z64GVDOM(), timeline_definition_Z64GVDOM_exports));
183931
184012
  return { id: id20, diagram: diagram210 };
183932
184013
  }, "loader");
183933
184014
  var plugin18 = {
@@ -183941,7 +184022,7 @@ var detector21 = /* @__PURE__ */ __name((txt) => {
183941
184022
  return /^\s*mindmap/.test(txt);
183942
184023
  }, "detector");
183943
184024
  var loader21 = /* @__PURE__ */ __name(async () => {
183944
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_mindmap_definition_LN4V7U3C(), mindmap_definition_LN4V7U3C_exports));
184025
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_mindmap_definition_FAOFIHXS(), mindmap_definition_FAOFIHXS_exports));
183945
184026
  return { id: id21, diagram: diagram210 };
183946
184027
  }, "loader");
183947
184028
  var plugin19 = {
@@ -183955,7 +184036,7 @@ var detector22 = /* @__PURE__ */ __name((txt) => {
183955
184036
  return /^\s*kanban/.test(txt);
183956
184037
  }, "detector");
183957
184038
  var loader222 = /* @__PURE__ */ __name(async () => {
183958
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_kanban_definition_HUTT4EX6(), kanban_definition_HUTT4EX6_exports));
184039
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_kanban_definition_27J2QSJJ(), kanban_definition_27J2QSJJ_exports));
183959
184040
  return { id: id222, diagram: diagram210 };
183960
184041
  }, "loader");
183961
184042
  var plugin20 = {
@@ -183969,7 +184050,7 @@ var detector23 = /* @__PURE__ */ __name((txt) => {
183969
184050
  return /^\s*sankey(-beta)?/.test(txt);
183970
184051
  }, "detector");
183971
184052
  var loader23 = /* @__PURE__ */ __name(async () => {
183972
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_sankeyDiagram_HTMAVEWB(), sankeyDiagram_HTMAVEWB_exports));
184053
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_sankeyDiagram_W5VNT64P(), sankeyDiagram_W5VNT64P_exports));
183973
184054
  return { id: id23, diagram: diagram210 };
183974
184055
  }, "loader");
183975
184056
  var plugin21 = {
@@ -183983,7 +184064,7 @@ var detector24 = /* @__PURE__ */ __name((txt) => {
183983
184064
  return /^\s*packet(-beta)?/.test(txt);
183984
184065
  }, "detector");
183985
184066
  var loader24 = /* @__PURE__ */ __name(async () => {
183986
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_diagram_NH7WQ7WH(), diagram_NH7WQ7WH_exports));
184067
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_diagram_LBJQPF4R(), diagram_LBJQPF4R_exports));
183987
184068
  return { id: id24, diagram: diagram210 };
183988
184069
  }, "loader");
183989
184070
  var packet = {
@@ -183996,7 +184077,7 @@ var detector25 = /* @__PURE__ */ __name((txt) => {
183996
184077
  return /^\s*radar-beta/.test(txt);
183997
184078
  }, "detector");
183998
184079
  var loader25 = /* @__PURE__ */ __name(async () => {
183999
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_diagram_WEI45ONY(), diagram_WEI45ONY_exports));
184080
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_diagram_UB23O5K3(), diagram_UB23O5K3_exports));
184000
184081
  return { id: id25, diagram: diagram210 };
184001
184082
  }, "loader");
184002
184083
  var radar = {
@@ -184009,7 +184090,7 @@ var detector26 = /* @__PURE__ */ __name((txt) => {
184009
184090
  return /^\s*block(-beta)?/.test(txt);
184010
184091
  }, "detector");
184011
184092
  var loader26 = /* @__PURE__ */ __name(async () => {
184012
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_blockDiagram_677ZJIJ3(), blockDiagram_677ZJIJ3_exports));
184093
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_blockDiagram_VBNYF7ZC(), blockDiagram_VBNYF7ZC_exports));
184013
184094
  return { id: id26, diagram: diagram210 };
184014
184095
  }, "loader");
184015
184096
  var plugin22 = {
@@ -184023,7 +184104,7 @@ var detector27 = /* @__PURE__ */ __name((txt) => {
184023
184104
  return /^\s*treeView-beta/.test(txt);
184024
184105
  }, "detector");
184025
184106
  var loader27 = /* @__PURE__ */ __name(async () => {
184026
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_diagram_OA4YK3LP(), diagram_OA4YK3LP_exports));
184107
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_diagram_7IWD3JNH(), diagram_7IWD3JNH_exports));
184027
184108
  return { id: id27, diagram: diagram210 };
184028
184109
  }, "loader");
184029
184110
  var plugin23 = {
@@ -184037,7 +184118,7 @@ var detector28 = /* @__PURE__ */ __name((txt) => {
184037
184118
  return /^\s*architecture/.test(txt);
184038
184119
  }, "detector");
184039
184120
  var loader28 = /* @__PURE__ */ __name(async () => {
184040
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_architectureDiagram_ZJ3FMSHR(), architectureDiagram_ZJ3FMSHR_exports));
184121
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_architectureDiagram_T3A2C74G(), architectureDiagram_T3A2C74G_exports));
184041
184122
  return { id: id28, diagram: diagram210 };
184042
184123
  }, "loader");
184043
184124
  var architecture = {
@@ -184051,7 +184132,7 @@ var detector29 = /* @__PURE__ */ __name((txt) => {
184051
184132
  return /^\s*eventmodeling/.test(txt);
184052
184133
  }, "detector");
184053
184134
  var loader29 = /* @__PURE__ */ __name(async () => {
184054
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_diagram_FQU43EPY(), diagram_FQU43EPY_exports));
184135
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_diagram_B4RE2ZJO(), diagram_B4RE2ZJO_exports));
184055
184136
  return { id: id29, diagram: diagram210 };
184056
184137
  }, "loader");
184057
184138
  var plugin24 = {
@@ -184065,7 +184146,7 @@ var detector30 = /* @__PURE__ */ __name((txt) => {
184065
184146
  return /^\s*ishikawa(-beta)?\b/i.test(txt);
184066
184147
  }, "detector");
184067
184148
  var loader30 = /* @__PURE__ */ __name(async () => {
184068
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_ishikawaDiagram_FXEZZL3T(), ishikawaDiagram_FXEZZL3T_exports));
184149
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_ishikawaDiagram_WSZJBQD7(), ishikawaDiagram_WSZJBQD7_exports));
184069
184150
  return { id: id30, diagram: diagram210 };
184070
184151
  }, "loader");
184071
184152
  var ishikawa = {
@@ -184078,7 +184159,7 @@ var detector31 = /* @__PURE__ */ __name((txt) => {
184078
184159
  return /^\s*venn-beta/.test(txt);
184079
184160
  }, "detector");
184080
184161
  var loader31 = /* @__PURE__ */ __name(async () => {
184081
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_vennDiagram_L72KCM5P(), vennDiagram_L72KCM5P_exports));
184162
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_vennDiagram_T6HMQDX7(), vennDiagram_T6HMQDX7_exports));
184082
184163
  return { id: id31, diagram: diagram210 };
184083
184164
  }, "loader");
184084
184165
  var plugin25 = {
@@ -184092,7 +184173,7 @@ var detector32 = /* @__PURE__ */ __name((txt) => {
184092
184173
  return /^\s*treemap/.test(txt);
184093
184174
  }, "detector");
184094
184175
  var loader32 = /* @__PURE__ */ __name(async () => {
184095
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_diagram_G47NLZAW(), diagram_G47NLZAW_exports));
184176
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_diagram_Q27KOJAE(), diagram_Q27KOJAE_exports));
184096
184177
  return { id: id322, diagram: diagram210 };
184097
184178
  }, "loader");
184098
184179
  var treemap = {
@@ -184105,7 +184186,7 @@ var detector33 = /* @__PURE__ */ __name((text4) => {
184105
184186
  return /^\s*wardley-beta/i.test(text4);
184106
184187
  }, "detector");
184107
184188
  var loader33 = /* @__PURE__ */ __name(async () => {
184108
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_wardleyDiagram_EHGQE667(), wardleyDiagram_EHGQE667_exports));
184189
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_wardleyDiagram_T6FBY63Y(), wardleyDiagram_T6FBY63Y_exports));
184109
184190
  return { id: id33, diagram: diagram210 };
184110
184191
  }, "loader");
184111
184192
  var plugin26 = {
@@ -184119,7 +184200,7 @@ var detector34 = /* @__PURE__ */ __name((txt) => {
184119
184200
  return /^\s*cynefin-beta(?:[\s:]|$)/.test(txt);
184120
184201
  }, "detector");
184121
184202
  var loader34 = /* @__PURE__ */ __name(async () => {
184122
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_cynefinDiagram_TSTJHNR4(), cynefinDiagram_TSTJHNR4_exports));
184203
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_cynefinDiagram_MW4NZA55(), cynefinDiagram_MW4NZA55_exports));
184123
184204
  return { id: id34, diagram: diagram210 };
184124
184205
  }, "loader");
184125
184206
  var cynefin = {
@@ -184132,7 +184213,7 @@ var detector35 = /* @__PURE__ */ __name((txt) => {
184132
184213
  return /^\s*railroad-beta/i.test(txt);
184133
184214
  }, "detector");
184134
184215
  var loader35 = /* @__PURE__ */ __name(async () => {
184135
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_railroadDiagram_RFXS5EU6(), railroadDiagram_RFXS5EU6_exports));
184216
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_railroadDiagram_AXF67PYL(), railroadDiagram_AXF67PYL_exports));
184136
184217
  return { id: id35, diagram: diagram210 };
184137
184218
  }, "loader");
184138
184219
  var railroad = {
@@ -184145,7 +184226,7 @@ var detector36 = /* @__PURE__ */ __name((txt) => {
184145
184226
  return /^\s*railroad-ebnf-beta/i.test(txt);
184146
184227
  }, "detector");
184147
184228
  var loader36 = /* @__PURE__ */ __name(async () => {
184148
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_ebnfDiagram_CCIWWBDH(), ebnfDiagram_CCIWWBDH_exports));
184229
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_ebnfDiagram_BXEA7PRR(), ebnfDiagram_BXEA7PRR_exports));
184149
184230
  return { id: id36, diagram: diagram210 };
184150
184231
  }, "loader");
184151
184232
  var railroadEbnf = {
@@ -184158,7 +184239,7 @@ var detector37 = /* @__PURE__ */ __name((txt) => {
184158
184239
  return /^\s*railroad-abnf-beta/i.test(txt);
184159
184240
  }, "detector");
184160
184241
  var loader37 = /* @__PURE__ */ __name(async () => {
184161
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_abnfDiagram_VRR7QNED(), abnfDiagram_VRR7QNED_exports));
184242
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_abnfDiagram_N423BO3Z(), abnfDiagram_N423BO3Z_exports));
184162
184243
  return { id: id37, diagram: diagram210 };
184163
184244
  }, "loader");
184164
184245
  var railroadAbnf = {
@@ -184171,7 +184252,7 @@ var detector38 = /* @__PURE__ */ __name((txt) => {
184171
184252
  return /^\s*railroad-peg-beta/i.test(txt);
184172
184253
  }, "detector");
184173
184254
  var loader38 = /* @__PURE__ */ __name(async () => {
184174
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_pegDiagram_2B236MQR(), pegDiagram_2B236MQR_exports));
184255
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_pegDiagram_VL7TDLO6(), pegDiagram_VL7TDLO6_exports));
184175
184256
  return { id: id38, diagram: diagram210 };
184176
184257
  }, "loader");
184177
184258
  var railroadPeg = {
@@ -184552,7 +184633,26 @@ var compileCSS = /* @__PURE__ */ __name((namespace, css) => {
184552
184633
  return;
184553
184634
  }
184554
184635
  element3.props = element3.props.map((prop) => {
184555
- if (!prop.startsWith(namespace)) {
184636
+ if (prop === namespace && Array.isArray(element3.children) && element3.children.every((child) => {
184637
+ if (child.type !== "decl") {
184638
+ return false;
184639
+ }
184640
+ const allowedProps = /* @__PURE__ */ new Set([
184641
+ "font-family",
184642
+ "font-size",
184643
+ "fill"
184644
+ ]);
184645
+ return allowedProps.has(child.props);
184646
+ })) {
184647
+ return prop;
184648
+ }
184649
+ const alreadyNamespaced = (
184650
+ // If the prop already starts with the namespace followed by a space or >, then it's already namespaced.
184651
+ (prop.startsWith(`${namespace} `) || prop.startsWith(`${namespace}>`)) && // Column combinators are not yet widely supported, it's not yet compressed to `${namespace}||`,
184652
+ // so we need to add an extra check for that
184653
+ !prop.startsWith(`${namespace} ||`)
184654
+ );
184655
+ if (!alreadyNamespaced) {
184556
184656
  return `${namespace} ${prop}`;
184557
184657
  }
184558
184658
  return prop;
@@ -184702,12 +184802,12 @@ var render7 = /* @__PURE__ */ __name(async function(id39, text4, svgContainingEl
184702
184802
  style1.innerHTML = rules2;
184703
184803
  svg2.insertBefore(style1, firstChild);
184704
184804
  try {
184705
- await diag.renderer.draw(text4, id39, "11.16.0", diag);
184805
+ await diag.renderer.draw(text4, id39, "11.16.1", diag);
184706
184806
  } catch (e3) {
184707
184807
  if (config3.suppressErrorRendering) {
184708
184808
  removeTempElements();
184709
184809
  } else {
184710
- errorRenderer_default.draw(text4, id39, "11.16.0");
184810
+ errorRenderer_default.draw(text4, id39, "11.16.1");
184711
184811
  }
184712
184812
  throw e3;
184713
184813
  }
@@ -184776,6 +184876,10 @@ var mermaidAPI = Object.freeze({
184776
184876
  getDiagramFromText,
184777
184877
  initialize,
184778
184878
  getConfig,
184879
+ /**
184880
+ * @deprecated This function does nothing. It will be overwritten by the next
184881
+ * call to {@link render} or {@link parse}.
184882
+ */
184779
184883
  setConfig,
184780
184884
  getSiteConfig,
184781
184885
  updateSiteConfig,
@@ -185473,7 +185577,7 @@ export {
185473
185577
  /*! Bundled license information:
185474
185578
 
185475
185579
  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 *)
185580
+ (*! @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
185581
 
185478
185582
  mermaid/dist/chunks/mermaid.core/chunk-ZIRB5QZD.mjs:
185479
185583
  (*! Bundled license information: