@forsakringskassan/docs-generator 3.6.2 → 3.6.4

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.13";
1519
+ DOMPurify.version = "3.4.15";
1520
1520
  DOMPurify.removed = [];
1521
1521
  if (!window3 || !window3.document || window3.document.nodeType !== NODE_TYPE.document || !window3.Element) {
1522
1522
  DOMPurify.isSupported = false;
@@ -1533,6 +1533,7 @@ function createDOMPurify() {
1533
1533
  const ElementPrototype = Element3.prototype;
1534
1534
  const cloneNode = lookupGetter(ElementPrototype, "cloneNode");
1535
1535
  const remove3 = lookupGetter(ElementPrototype, "remove");
1536
+ const removeAttributeNode = lookupGetter(ElementPrototype, "removeAttributeNode");
1536
1537
  const getNextSibling = lookupGetter(ElementPrototype, "nextSibling");
1537
1538
  const getChildNodes = lookupGetter(ElementPrototype, "childNodes");
1538
1539
  const getParentNode = lookupGetter(ElementPrototype, "parentNode");
@@ -1541,6 +1542,12 @@ function createDOMPurify() {
1541
1542
  const getNodeType = Node2 && Node2.prototype ? lookupGetter(Node2.prototype, "nodeType") : null;
1542
1543
  const getNodeName = Node2 && Node2.prototype ? lookupGetter(Node2.prototype, "nodeName") : null;
1543
1544
  const getOwnerDocument = Node2 && Node2.prototype ? lookupGetter(Node2.prototype, "ownerDocument") : null;
1545
+ const _readNodeType = function _readNodeType2(node2) {
1546
+ return getNodeType ? getNodeType(node2) : node2.nodeType;
1547
+ };
1548
+ const _readNodeName = function _readNodeName2(node2) {
1549
+ return getNodeName ? getNodeName(node2) : node2.nodeName;
1550
+ };
1544
1551
  if (typeof HTMLTemplateElement === "function") {
1545
1552
  const template = document2.createElement("template");
1546
1553
  if (template.content && template.content.ownerDocument) {
@@ -1767,9 +1774,19 @@ function createDOMPurify() {
1767
1774
  IN_PLACE = cfg.IN_PLACE || false;
1768
1775
  IS_ALLOWED_URI$1 = isRegex(cfg.ALLOWED_URI_REGEXP) ? cfg.ALLOWED_URI_REGEXP : IS_ALLOWED_URI;
1769
1776
  NAMESPACE2 = typeof cfg.NAMESPACE === "string" ? cfg.NAMESPACE : HTML_NAMESPACE;
1770
- MATHML_TEXT_INTEGRATION_POINTS = objectHasOwnProperty(cfg, "MATHML_TEXT_INTEGRATION_POINTS") && cfg.MATHML_TEXT_INTEGRATION_POINTS && typeof cfg.MATHML_TEXT_INTEGRATION_POINTS === "object" ? clone(cfg.MATHML_TEXT_INTEGRATION_POINTS) : addToSet({}, DEFAULT_MATHML_TEXT_INTEGRATION_POINTS);
1771
- HTML_INTEGRATION_POINTS = objectHasOwnProperty(cfg, "HTML_INTEGRATION_POINTS") && cfg.HTML_INTEGRATION_POINTS && typeof cfg.HTML_INTEGRATION_POINTS === "object" ? clone(cfg.HTML_INTEGRATION_POINTS) : addToSet({}, DEFAULT_HTML_INTEGRATION_POINTS);
1772
- const customElementHandling = objectHasOwnProperty(cfg, "CUSTOM_ELEMENT_HANDLING") && cfg.CUSTOM_ELEMENT_HANDLING && typeof cfg.CUSTOM_ELEMENT_HANDLING === "object" ? clone(cfg.CUSTOM_ELEMENT_HANDLING) : create(null);
1777
+ MATHML_TEXT_INTEGRATION_POINTS = _resolveObjectOption(
1778
+ cfg,
1779
+ "MATHML_TEXT_INTEGRATION_POINTS",
1780
+ () => addToSet({}, DEFAULT_MATHML_TEXT_INTEGRATION_POINTS)
1781
+ // Default built-in map
1782
+ );
1783
+ HTML_INTEGRATION_POINTS = _resolveObjectOption(
1784
+ cfg,
1785
+ "HTML_INTEGRATION_POINTS",
1786
+ () => addToSet({}, DEFAULT_HTML_INTEGRATION_POINTS)
1787
+ // Default built-in map
1788
+ );
1789
+ const customElementHandling = _resolveObjectOption(cfg, "CUSTOM_ELEMENT_HANDLING", () => create(null));
1773
1790
  CUSTOM_ELEMENT_HANDLING = create(null);
1774
1791
  if (objectHasOwnProperty(customElementHandling, "tagNameCheck") && isRegexOrFunction(customElementHandling.tagNameCheck)) {
1775
1792
  CUSTOM_ELEMENT_HANDLING.tagNameCheck = customElementHandling.tagNameCheck;
@@ -1832,15 +1849,6 @@ function createDOMPurify() {
1832
1849
  addToSet(ALLOWED_ATTR, cfg.ADD_ATTR, transformCaseFunc);
1833
1850
  }
1834
1851
  }
1835
- if (objectHasOwnProperty(cfg, "ADD_URI_SAFE_ATTR") && arrayIsArray(cfg.ADD_URI_SAFE_ATTR)) {
1836
- addToSet(URI_SAFE_ATTRIBUTES, cfg.ADD_URI_SAFE_ATTR, transformCaseFunc);
1837
- }
1838
- if (objectHasOwnProperty(cfg, "FORBID_CONTENTS") && arrayIsArray(cfg.FORBID_CONTENTS)) {
1839
- if (FORBID_CONTENTS === DEFAULT_FORBID_CONTENTS) {
1840
- FORBID_CONTENTS = clone(FORBID_CONTENTS);
1841
- }
1842
- addToSet(FORBID_CONTENTS, cfg.FORBID_CONTENTS, transformCaseFunc);
1843
- }
1844
1852
  if (objectHasOwnProperty(cfg, "ADD_FORBID_CONTENTS") && arrayIsArray(cfg.ADD_FORBID_CONTENTS)) {
1845
1853
  if (FORBID_CONTENTS === DEFAULT_FORBID_CONTENTS) {
1846
1854
  FORBID_CONTENTS = clone(FORBID_CONTENTS);
@@ -1957,6 +1965,16 @@ function createDOMPurify() {
1957
1965
  }
1958
1966
  }
1959
1967
  };
1968
+ const _stripAttributeNode = function _stripAttributeNode2(element3, attribute, name) {
1969
+ try {
1970
+ removeAttributeNode(element3, attribute);
1971
+ } catch (_3) {
1972
+ try {
1973
+ element3.removeAttribute(name);
1974
+ } catch (_4) {
1975
+ }
1976
+ }
1977
+ };
1960
1978
  const _neutralizeRoot = function _neutralizeRoot2(root4) {
1961
1979
  _neutralizeSubtree(root4);
1962
1980
  const childNodes = getChildNodes(root4);
@@ -1978,27 +1996,35 @@ function createDOMPurify() {
1978
1996
  const attribute = attributes[i4];
1979
1997
  const name = attribute && attribute.name;
1980
1998
  if (typeof name === "string") {
1981
- try {
1982
- root4.removeAttribute(name);
1983
- } catch (_3) {
1984
- }
1999
+ _stripAttributeNode(root4, attribute, name);
1985
2000
  }
1986
2001
  }
1987
2002
  }
1988
2003
  };
1989
- const _removeAttribute = function _removeAttribute2(name, element3) {
2004
+ const _removeAttribute = function _removeAttribute2(name, element3, attr) {
2005
+ if (!attr) {
2006
+ try {
2007
+ attr = element3.getAttributeNode(name);
2008
+ } catch (_3) {
2009
+ attr = null;
2010
+ }
2011
+ }
2012
+ arrayPush(DOMPurify.removed, {
2013
+ attribute: attr || null,
2014
+ from: element3
2015
+ });
1990
2016
  try {
1991
- arrayPush(DOMPurify.removed, {
1992
- attribute: element3.getAttributeNode(name),
1993
- from: element3
1994
- });
2017
+ if (attr) {
2018
+ removeAttributeNode(element3, attr);
2019
+ } else {
2020
+ element3.removeAttribute(name);
2021
+ }
1995
2022
  } catch (_3) {
1996
- arrayPush(DOMPurify.removed, {
1997
- attribute: null,
1998
- from: element3
1999
- });
2023
+ try {
2024
+ element3.removeAttribute(name);
2025
+ } catch (_4) {
2026
+ }
2000
2027
  }
2001
- element3.removeAttribute(name);
2002
2028
  if (name === "is") {
2003
2029
  if (RETURN_DOM || RETURN_DOM_FRAGMENT) {
2004
2030
  try {
@@ -2024,17 +2050,14 @@ function createDOMPurify() {
2024
2050
  if (typeof name !== "string" || ALLOWED_ATTR[transformCaseFunc(name)]) {
2025
2051
  continue;
2026
2052
  }
2027
- try {
2028
- element3.removeAttribute(name);
2029
- } catch (_3) {
2030
- }
2053
+ _stripAttributeNode(element3, attribute, name);
2031
2054
  }
2032
2055
  };
2033
2056
  const _neutralizeSubtree = function _neutralizeSubtree2(root4) {
2034
2057
  const stack = [root4];
2035
2058
  while (stack.length > 0) {
2036
2059
  const node2 = stack.pop();
2037
- const nodeType3 = getNodeType ? getNodeType(node2) : node2.nodeType;
2060
+ const nodeType3 = _readNodeType(node2);
2038
2061
  if (nodeType3 === NODE_TYPE.element) {
2039
2062
  _stripDisallowedAttributes(node2);
2040
2063
  }
@@ -2046,6 +2069,15 @@ function createDOMPurify() {
2046
2069
  }
2047
2070
  }
2048
2071
  };
2072
+ const _isPatchLinkageAttribute = function _isPatchLinkageAttribute2(lcName, lcTag) {
2073
+ if (!SAFE_FOR_XML) {
2074
+ return false;
2075
+ }
2076
+ if (lcName === "patchsrc") {
2077
+ return true;
2078
+ }
2079
+ return lcName === "for" && lcTag !== "label" && lcTag !== "output";
2080
+ };
2049
2081
  const _neutralizePatchLinkage = function _neutralizePatchLinkage2(root4) {
2050
2082
  if (!SAFE_FOR_XML) {
2051
2083
  return;
@@ -2053,7 +2085,7 @@ function createDOMPurify() {
2053
2085
  const stack = [root4];
2054
2086
  while (stack.length > 0) {
2055
2087
  const node2 = stack.pop();
2056
- const nodeType3 = getNodeType ? getNodeType(node2) : node2.nodeType;
2088
+ const nodeType3 = _readNodeType(node2);
2057
2089
  if (nodeType3 === NODE_TYPE.processingInstruction || nodeType3 === NODE_TYPE.comment && regExpTest(COMMENT_MARKUP_PROBE, node2.data)) {
2058
2090
  try {
2059
2091
  remove3(node2);
@@ -2063,12 +2095,12 @@ function createDOMPurify() {
2063
2095
  }
2064
2096
  if (nodeType3 === NODE_TYPE.element) {
2065
2097
  const element3 = node2;
2066
- const lcTag = transformCaseFunc(getNodeName ? getNodeName(node2) : node2.nodeName);
2098
+ const lcTag = transformCaseFunc(_readNodeName(node2));
2067
2099
  try {
2068
2100
  if (element3.hasAttribute && element3.hasAttribute("patchsrc")) {
2069
2101
  element3.removeAttribute("patchsrc");
2070
2102
  }
2071
- if (element3.hasAttribute && element3.hasAttribute("for") && lcTag !== "label" && lcTag !== "output") {
2103
+ if (element3.hasAttribute && element3.hasAttribute("for") && _isPatchLinkageAttribute("for", lcTag)) {
2072
2104
  element3.removeAttribute("for");
2073
2105
  }
2074
2106
  } catch (_3) {
@@ -2171,7 +2203,16 @@ function createDOMPurify() {
2171
2203
  // makes the direct read diverge from the cached read; a clean form
2172
2204
  // (same-realm OR foreign-realm) has both reads pointing at the same
2173
2205
  // canonical NamedNodeMap.
2174
- element3.attributes !== getAttributes(element3) || typeof element3.removeAttribute !== "function" || typeof element3.setAttribute !== "function" || typeof element3.namespaceURI !== "string" || typeof element3.insertBefore !== "function" || typeof element3.hasChildNodes !== "function" || // NodeType clobbering probe. Cached Node.prototype.nodeType getter
2206
+ element3.attributes !== getAttributes(element3) || typeof element3.removeAttribute !== "function" || // A form descendant named "removeAttributeNode" or "getAttributeNode"
2207
+ // shadows these Attr-node methods via [LegacyOverrideBuiltIns].
2208
+ // _removeAttribute() / _stripAttributeNode() reach for
2209
+ // element.removeAttributeNode(attr) first; when it is shadowed the call
2210
+ // throws and the name-based fallback element.removeAttribute(name)
2211
+ // ASCII-lowercases its lookup key in an HTML document, silently missing
2212
+ // a case-preserved event-handler attribute (e.g. an ONANIMATIONSTART
2213
+ // that reached the sanitizer through an XML/XHTML parse). Flag the form
2214
+ // so it is removed wholesale, exactly as for the other shadowed methods.
2215
+ typeof element3.removeAttributeNode !== "function" || typeof element3.getAttributeNode !== "function" || typeof element3.setAttribute !== "function" || typeof element3.namespaceURI !== "string" || typeof element3.insertBefore !== "function" || typeof element3.hasChildNodes !== "function" || // NodeType clobbering probe. Cached Node.prototype.nodeType getter
2175
2216
  // returns the integer 1 for any Element regardless of realm; direct
2176
2217
  // read on a clobbered form (e.g. <input name="nodeType">) returns
2177
2218
  // the named child element. Cheap addition — nodeType is read from
@@ -2223,7 +2264,7 @@ function createDOMPurify() {
2223
2264
  if (SAFE_FOR_XML && currentNode.hasChildNodes() && !_isNode(currentNode.firstElementChild) && regExpTest(ELEMENT_MARKUP_PROBE, currentNode.textContent) && regExpTest(ELEMENT_MARKUP_PROBE, currentNode.innerHTML)) {
2224
2265
  return true;
2225
2266
  }
2226
- if (SAFE_FOR_XML && currentNode.namespaceURI === HTML_NAMESPACE && tagName === "style" && _isNode(currentNode.firstElementChild)) {
2267
+ if (SAFE_FOR_XML && currentNode.namespaceURI === HTML_NAMESPACE && LITERAL_TEXT_ELEMENTS[tagName] && (_isNode(currentNode.firstElementChild) || typeof currentNode.textContent === "string" && regExpTest(LITERAL_TEXT_CLOSE[tagName], currentNode.textContent))) {
2227
2268
  return true;
2228
2269
  }
2229
2270
  if (currentNode.nodeType === NODE_TYPE.processingInstruction) {
@@ -2234,14 +2275,21 @@ function createDOMPurify() {
2234
2275
  }
2235
2276
  return false;
2236
2277
  };
2237
- const _sanitizeDisallowedNode = function _sanitizeDisallowedNode2(currentNode, tagName, root4) {
2238
- if (!FORBID_TAGS[tagName] && _isBasicCustomElement(tagName)) {
2239
- if (CUSTOM_ELEMENT_HANDLING.tagNameCheck instanceof RegExp && regExpTest(CUSTOM_ELEMENT_HANDLING.tagNameCheck, tagName)) {
2240
- return false;
2241
- }
2242
- if (CUSTOM_ELEMENT_HANDLING.tagNameCheck instanceof Function && CUSTOM_ELEMENT_HANDLING.tagNameCheck(tagName)) {
2243
- return false;
2278
+ const _matchesNameCheck = function _matchesNameCheck2(check, name) {
2279
+ if (check instanceof RegExp) {
2280
+ return regExpTest(check, name);
2281
+ }
2282
+ if (check instanceof Function) {
2283
+ for (var _len = arguments.length, args = new Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
2284
+ args[_key - 2] = arguments[_key];
2244
2285
  }
2286
+ return Boolean(check(name, ...args));
2287
+ }
2288
+ return false;
2289
+ };
2290
+ const _sanitizeDisallowedNode = function _sanitizeDisallowedNode2(currentNode, tagName, root4) {
2291
+ if (!FORBID_TAGS[tagName] && _isBasicCustomElement(tagName) && _matchesNameCheck(CUSTOM_ELEMENT_HANDLING.tagNameCheck, tagName)) {
2292
+ return false;
2245
2293
  }
2246
2294
  if (KEEP_CONTENT && !FORBID_CONTENTS[tagName]) {
2247
2295
  const parentNode = getParentNode(currentNode);
@@ -2263,28 +2311,31 @@ function createDOMPurify() {
2263
2311
  }
2264
2312
  return set5 === defaultSet || set5 === setConfigSet ? clone(set5) : set5;
2265
2313
  };
2314
+ const _handleHookDetachedNode = function _handleHookDetachedNode2(currentNode, root4) {
2315
+ if (currentNode === root4 || getParentNode(currentNode) !== null) {
2316
+ return false;
2317
+ }
2318
+ if (IN_PLACE) {
2319
+ _neutralizeSubtree(currentNode);
2320
+ }
2321
+ return true;
2322
+ };
2266
2323
  const _sanitizeElements = function _sanitizeElements2(currentNode, root4) {
2267
2324
  _executeHooks(hooks.beforeSanitizeElements, currentNode, null);
2268
- if (currentNode !== root4 && getParentNode(currentNode) === null) {
2269
- if (IN_PLACE) {
2270
- _neutralizeSubtree(currentNode);
2271
- }
2325
+ if (_handleHookDetachedNode(currentNode, root4)) {
2272
2326
  return true;
2273
2327
  }
2274
2328
  if (_isClobbered(currentNode)) {
2275
2329
  _forceRemove(currentNode);
2276
2330
  return true;
2277
2331
  }
2278
- const tagName = transformCaseFunc(getNodeName ? getNodeName(currentNode) : currentNode.nodeName);
2332
+ const tagName = transformCaseFunc(_readNodeName(currentNode));
2279
2333
  ALLOWED_TAGS = _forkSharedAllowlist(hooks.uponSanitizeElement, ALLOWED_TAGS, DEFAULT_ALLOWED_TAGS, SET_CONFIG_ALLOWED_TAGS);
2280
2334
  _executeHooks(hooks.uponSanitizeElement, currentNode, {
2281
2335
  tagName,
2282
2336
  allowedTags: ALLOWED_TAGS
2283
2337
  });
2284
- if (currentNode !== root4 && getParentNode(currentNode) === null) {
2285
- if (IN_PLACE) {
2286
- _neutralizeSubtree(currentNode);
2287
- }
2338
+ if (_handleHookDetachedNode(currentNode, root4)) {
2288
2339
  return true;
2289
2340
  }
2290
2341
  if (_isUnsafeNode(currentNode, tagName)) {
@@ -2298,7 +2349,7 @@ function createDOMPurify() {
2298
2349
  }
2299
2350
  return removed;
2300
2351
  }
2301
- const nt2 = getNodeType ? getNodeType(currentNode) : currentNode.nodeType;
2352
+ const nt2 = _readNodeType(currentNode);
2302
2353
  if (nt2 === NODE_TYPE.element && !_checkValidNamespace(currentNode)) {
2303
2354
  _forceRemove(currentNode);
2304
2355
  return true;
@@ -2323,38 +2374,43 @@ function createDOMPurify() {
2323
2374
  if (FORBID_ATTR[lcName]) {
2324
2375
  return false;
2325
2376
  }
2326
- if (SAFE_FOR_XML && lcName === "patchsrc") {
2327
- return false;
2328
- }
2329
- if (SAFE_FOR_XML && lcName === "for" && lcTag !== "label" && lcTag !== "output") {
2377
+ if (_isPatchLinkageAttribute(lcName, lcTag)) {
2330
2378
  return false;
2331
2379
  }
2332
2380
  if (SANITIZE_DOM && (lcName === "id" || lcName === "name") && (value2 in document2 || value2 in formElement)) {
2333
2381
  return false;
2334
2382
  }
2335
2383
  const nameIsPermitted = ALLOWED_ATTR[lcName] || EXTRA_ELEMENT_HANDLING.attributeCheck instanceof Function && EXTRA_ELEMENT_HANDLING.attributeCheck(lcName, lcTag);
2336
- if (ALLOW_DATA_ATTR && regExpTest(DATA_ATTR$1, lcName)) ;
2337
- else if (ALLOW_ARIA_ATTR && regExpTest(ARIA_ATTR$1, lcName)) ;
2338
- else if (!nameIsPermitted) {
2339
- if (
2340
- // First condition does a very basic check if a) it's basically a valid custom element tagname AND
2341
- // b) if the tagName passes whatever the user has configured for CUSTOM_ELEMENT_HANDLING.tagNameCheck
2342
- // and c) if the attribute name passes whatever the user has configured for CUSTOM_ELEMENT_HANDLING.attributeNameCheck
2343
- _isBasicCustomElement(lcTag) && (CUSTOM_ELEMENT_HANDLING.tagNameCheck instanceof RegExp && regExpTest(CUSTOM_ELEMENT_HANDLING.tagNameCheck, lcTag) || CUSTOM_ELEMENT_HANDLING.tagNameCheck instanceof Function && CUSTOM_ELEMENT_HANDLING.tagNameCheck(lcTag)) && (CUSTOM_ELEMENT_HANDLING.attributeNameCheck instanceof RegExp && regExpTest(CUSTOM_ELEMENT_HANDLING.attributeNameCheck, lcName) || CUSTOM_ELEMENT_HANDLING.attributeNameCheck instanceof Function && CUSTOM_ELEMENT_HANDLING.attributeNameCheck(lcName, lcTag)) || // Alternative, second condition checks if it's an `is`-attribute, AND
2344
- // the value passes whatever the user has configured for CUSTOM_ELEMENT_HANDLING.tagNameCheck
2345
- lcName === "is" && CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements && (CUSTOM_ELEMENT_HANDLING.tagNameCheck instanceof RegExp && regExpTest(CUSTOM_ELEMENT_HANDLING.tagNameCheck, value2) || CUSTOM_ELEMENT_HANDLING.tagNameCheck instanceof Function && CUSTOM_ELEMENT_HANDLING.tagNameCheck(value2))
2346
- ) ;
2347
- else {
2348
- return false;
2349
- }
2350
- } else if (URI_SAFE_ATTRIBUTES[lcName]) ;
2351
- else if (regExpTest(IS_ALLOWED_URI$1, stringReplace(value2, ATTR_WHITESPACE$1, ""))) ;
2352
- else if ((lcName === "src" || lcName === "xlink:href" || lcName === "href") && lcTag !== "script" && stringIndexOf(value2, "data:") === 0 && DATA_URI_TAGS[lcTag]) ;
2353
- else if (ALLOW_UNKNOWN_PROTOCOLS && !regExpTest(IS_SCRIPT_OR_DATA$1, stringReplace(value2, ATTR_WHITESPACE$1, ""))) ;
2354
- else if (value2) {
2355
- return false;
2356
- } else ;
2357
- return true;
2384
+ if (ALLOW_DATA_ATTR && regExpTest(DATA_ATTR$1, lcName)) {
2385
+ return true;
2386
+ }
2387
+ if (ALLOW_ARIA_ATTR && regExpTest(ARIA_ATTR$1, lcName)) {
2388
+ return true;
2389
+ }
2390
+ if (!nameIsPermitted) {
2391
+ return (
2392
+ // Condition a) covers a basically valid custom element tag name whose
2393
+ // tag passes the configured tagNameCheck and whose attribute name
2394
+ // passes the configured attributeNameCheck ...
2395
+ _isBasicCustomElement(lcTag) && _matchesNameCheck(CUSTOM_ELEMENT_HANDLING.tagNameCheck, lcTag) && _matchesNameCheck(CUSTOM_ELEMENT_HANDLING.attributeNameCheck, lcName, lcTag) || // Condition b) covers an `is` attribute whose value passes the
2396
+ // configured tagNameCheck while customized built-in elements are
2397
+ // allowed.
2398
+ lcName === "is" && CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements && _matchesNameCheck(CUSTOM_ELEMENT_HANDLING.tagNameCheck, value2)
2399
+ );
2400
+ }
2401
+ if (URI_SAFE_ATTRIBUTES[lcName]) {
2402
+ return true;
2403
+ }
2404
+ if (regExpTest(IS_ALLOWED_URI$1, stringReplace(value2, ATTR_WHITESPACE$1, ""))) {
2405
+ return true;
2406
+ }
2407
+ if ((lcName === "src" || lcName === "xlink:href" || lcName === "href") && lcTag !== "script" && stringIndexOf(value2, "data:") === 0 && DATA_URI_TAGS[lcTag]) {
2408
+ return true;
2409
+ }
2410
+ if (ALLOW_UNKNOWN_PROTOCOLS && !regExpTest(IS_SCRIPT_OR_DATA$1, stringReplace(value2, ATTR_WHITESPACE$1, ""))) {
2411
+ return true;
2412
+ }
2413
+ return !value2;
2358
2414
  };
2359
2415
  const RESERVED_CUSTOM_ELEMENT_NAMES = addToSet({}, ["annotation-xml", "color-profile", "font-face", "font-face-format", "font-face-name", "font-face-src", "font-face-uri", "missing-glyph"]);
2360
2416
  const _isBasicCustomElement = function _isBasicCustomElement2(tagName) {
@@ -2382,11 +2438,12 @@ function createDOMPurify() {
2382
2438
  }
2383
2439
  if (_isClobbered(currentNode)) {
2384
2440
  _forceRemove(currentNode);
2385
- } else {
2386
- arrayPop(DOMPurify.removed);
2441
+ return false;
2387
2442
  }
2443
+ return true;
2388
2444
  } catch (_3) {
2389
2445
  _removeAttribute(name, currentNode);
2446
+ return false;
2390
2447
  }
2391
2448
  };
2392
2449
  const _sanitizeAttributes = function _sanitizeAttributes2(currentNode) {
@@ -2411,6 +2468,7 @@ function createDOMPurify() {
2411
2468
  const lcName = transformCaseFunc(name);
2412
2469
  const initValue = attrValue;
2413
2470
  let value2 = name === "value" ? initValue : stringTrim(initValue);
2471
+ let recreatedNamedProp = false;
2414
2472
  hookEvent.attrName = lcName;
2415
2473
  hookEvent.attrValue = value2;
2416
2474
  hookEvent.keepAttr = true;
@@ -2418,38 +2476,42 @@ function createDOMPurify() {
2418
2476
  _executeHooks(hooks.uponSanitizeAttribute, currentNode, hookEvent);
2419
2477
  value2 = hookEvent.attrValue;
2420
2478
  if (SANITIZE_NAMED_PROPS && (lcName === "id" || lcName === "name") && stringIndexOf(value2, SANITIZE_NAMED_PROPS_PREFIX) !== 0) {
2421
- _removeAttribute(name, currentNode);
2479
+ _removeAttribute(name, currentNode, attr);
2422
2480
  value2 = SANITIZE_NAMED_PROPS_PREFIX + value2;
2481
+ recreatedNamedProp = true;
2423
2482
  }
2424
2483
  if (SAFE_FOR_XML && regExpTest(/((--!?|])>)|<\/(style|script|title|xmp|textarea|noscript|iframe|noembed|noframes)/i, value2)) {
2425
- _removeAttribute(name, currentNode);
2484
+ _removeAttribute(name, currentNode, attr);
2426
2485
  continue;
2427
2486
  }
2428
2487
  if (lcName === "attributename" && stringMatch(value2, "href")) {
2429
- _removeAttribute(name, currentNode);
2488
+ _removeAttribute(name, currentNode, attr);
2430
2489
  continue;
2431
2490
  }
2432
2491
  if (hookEvent.forceKeepAttr) {
2433
2492
  continue;
2434
2493
  }
2435
2494
  if (!hookEvent.keepAttr) {
2436
- _removeAttribute(name, currentNode);
2495
+ _removeAttribute(name, currentNode, attr);
2437
2496
  continue;
2438
2497
  }
2439
2498
  if (!ALLOW_SELF_CLOSE_IN_ATTR && regExpTest(SELF_CLOSING_TAG, value2)) {
2440
- _removeAttribute(name, currentNode);
2499
+ _removeAttribute(name, currentNode, attr);
2441
2500
  continue;
2442
2501
  }
2443
2502
  if (SAFE_FOR_TEMPLATES) {
2444
2503
  value2 = _stripTemplateExpressions(value2);
2445
2504
  }
2446
2505
  if (!_isValidAttribute(lcTag, lcName, value2)) {
2447
- _removeAttribute(name, currentNode);
2506
+ _removeAttribute(name, currentNode, attr);
2448
2507
  continue;
2449
2508
  }
2450
2509
  value2 = _applyTrustedTypesToAttribute(lcTag, lcName, namespaceURI, value2);
2451
2510
  if (value2 !== initValue) {
2452
- _setAttributeValue(currentNode, name, namespaceURI, value2);
2511
+ const cleanWrite = _setAttributeValue(currentNode, name, namespaceURI, value2);
2512
+ if (cleanWrite && recreatedNamedProp) {
2513
+ arrayPop(DOMPurify.removed);
2514
+ }
2453
2515
  }
2454
2516
  }
2455
2517
  _executeHooks(hooks.afterSanitizeAttributes, currentNode, null);
@@ -2465,8 +2527,7 @@ function createDOMPurify() {
2465
2527
  if (_isDocumentFragment(shadowNode.content)) {
2466
2528
  _sanitizeShadowDOM2(shadowNode.content);
2467
2529
  }
2468
- const shadowNodeType = getNodeType ? getNodeType(shadowNode) : shadowNode.nodeType;
2469
- if (shadowNodeType === NODE_TYPE.element) {
2530
+ if (_readNodeType(shadowNode) === NODE_TYPE.element) {
2470
2531
  const innerSr = getShadowRoot(shadowNode);
2471
2532
  if (_isDocumentFragment(innerSr)) {
2472
2533
  _sanitizeAttachedShadowRoots(innerSr);
@@ -2488,7 +2549,7 @@ function createDOMPurify() {
2488
2549
  continue;
2489
2550
  }
2490
2551
  const node2 = item.node;
2491
- const nodeType3 = getNodeType ? getNodeType(node2) : node2.nodeType;
2552
+ const nodeType3 = _readNodeType(node2);
2492
2553
  const isElement = nodeType3 === NODE_TYPE.element;
2493
2554
  const childNodes = getChildNodes(node2);
2494
2555
  if (childNodes) {
@@ -2560,7 +2621,7 @@ function createDOMPurify() {
2560
2621
  const inPlace = IN_PLACE && typeof dirty !== "string" && _isNode(dirty);
2561
2622
  if (inPlace) {
2562
2623
  _neutralizePatchLinkage(dirty);
2563
- const nn = getNodeName ? getNodeName(dirty) : dirty.nodeName;
2624
+ const nn = _readNodeName(dirty);
2564
2625
  if (typeof nn === "string") {
2565
2626
  const tagName = transformCaseFunc(nn);
2566
2627
  if (!ALLOWED_TAGS[tagName] || FORBID_TAGS[tagName]) {
@@ -2588,7 +2649,7 @@ function createDOMPurify() {
2588
2649
  } else {
2589
2650
  body.appendChild(importedNode);
2590
2651
  }
2591
- _sanitizeAttachedShadowRoots(importedNode);
2652
+ _sanitizeAttachedShadowRoots(body);
2592
2653
  } else {
2593
2654
  if (!RETURN_DOM && !SAFE_FOR_TEMPLATES && !WHOLE_DOCUMENT && // eslint-disable-next-line unicorn/prefer-includes
2594
2655
  dirty.indexOf("<") === -1) {
@@ -2713,7 +2774,7 @@ function createDOMPurify() {
2713
2774
  };
2714
2775
  return DOMPurify;
2715
2776
  }
2716
- var entries, setPrototypeOf, isFrozen, getPrototypeOf, getOwnPropertyDescriptor, freeze, seal, create, _ref, apply, construct, arrayForEach, arrayLastIndexOf, arrayPop, arrayPush, arraySplice, arrayIsArray, stringToLowerCase, stringToString, stringMatch, stringReplace, stringIndexOf, stringTrim, numberToString, booleanToString, bigintToString, symbolToString, objectHasOwnProperty, objectToString, regExpTest, typeErrorCreate, html$1, svg$1, svgFilters, svgDisallowed, mathMl$1, mathMlDisallowed, text, html, svg, mathMl, xml, MUSTACHE_EXPR, ERB_EXPR, TMPLIT_EXPR, DATA_ATTR, ARIA_ATTR, IS_ALLOWED_URI, IS_SCRIPT_OR_DATA, ATTR_WHITESPACE, DOCTYPE_NAME, CUSTOM_ELEMENT, ELEMENT_MARKUP_PROBE, COMMENT_MARKUP_PROBE, FALLBACK_TAG_CLOSE, SELF_CLOSING_TAG, NODE_TYPE, getGlobal, _createTrustedTypesPolicy, _createHooksMap, _resolveSetOption, purify;
2777
+ var entries, setPrototypeOf, isFrozen, getPrototypeOf, getOwnPropertyDescriptor, freeze, seal, create, _ref, apply, construct, arrayForEach, arrayLastIndexOf, arrayPop, arrayPush, arraySplice, arrayIsArray, stringToLowerCase, stringToString, stringMatch, stringReplace, stringIndexOf, stringTrim, numberToString, booleanToString, bigintToString, symbolToString, objectHasOwnProperty, objectToString, regExpTest, typeErrorCreate, html$1, svg$1, svgFilters, svgDisallowed, mathMl$1, mathMlDisallowed, text, html, svg, mathMl, xml, MUSTACHE_EXPR, ERB_EXPR, TMPLIT_EXPR, DATA_ATTR, ARIA_ATTR, IS_ALLOWED_URI, IS_SCRIPT_OR_DATA, ATTR_WHITESPACE, DOCTYPE_NAME, CUSTOM_ELEMENT, ELEMENT_MARKUP_PROBE, COMMENT_MARKUP_PROBE, FALLBACK_TAG_CLOSE, SELF_CLOSING_TAG, NODE_TYPE, LITERAL_TEXT_ELEMENT_NAMES, LITERAL_TEXT_ELEMENTS, LITERAL_TEXT_CLOSE, getGlobal, _createTrustedTypesPolicy, _createHooksMap, _resolveSetOption, _resolveObjectOption, purify;
2717
2778
  var init_purify_es = __esm({
2718
2779
  "node_modules/dompurify/dist/purify.es.mjs"() {
2719
2780
  entries = Object.entries;
@@ -2781,7 +2842,7 @@ var init_purify_es = __esm({
2781
2842
  mathMlDisallowed = freeze(["maction", "maligngroup", "malignmark", "mlongdiv", "mscarries", "mscarry", "msgroup", "mstack", "msline", "msrow", "semantics", "annotation", "annotation-xml", "mprescripts", "none"]);
2782
2843
  text = freeze(["#text"]);
2783
2844
  html = freeze(["accept", "action", "align", "alt", "autocapitalize", "autocomplete", "autopictureinpicture", "autoplay", "background", "bgcolor", "border", "capture", "cellpadding", "cellspacing", "checked", "cite", "class", "clear", "color", "cols", "colspan", "command", "commandfor", "controls", "controlslist", "coords", "crossorigin", "datetime", "decoding", "default", "dir", "disabled", "disablepictureinpicture", "disableremoteplayback", "download", "draggable", "enctype", "enterkeyhint", "exportparts", "face", "for", "headers", "height", "hidden", "high", "href", "hreflang", "id", "inert", "inputmode", "integrity", "ismap", "kind", "label", "lang", "list", "loading", "loop", "low", "max", "maxlength", "media", "method", "min", "minlength", "multiple", "muted", "name", "nonce", "noshade", "novalidate", "nowrap", "open", "optimum", "part", "pattern", "placeholder", "playsinline", "popover", "popovertarget", "popovertargetaction", "poster", "preload", "pubdate", "radiogroup", "readonly", "rel", "required", "rev", "reversed", "role", "rows", "rowspan", "spellcheck", "scope", "selected", "shape", "size", "sizes", "slot", "span", "srclang", "start", "src", "srcset", "step", "style", "summary", "tabindex", "title", "translate", "type", "usemap", "valign", "value", "width", "wrap", "xmlns"]);
2784
- svg = freeze(["accent-height", "accumulate", "additive", "alignment-baseline", "amplitude", "ascent", "attributename", "attributetype", "azimuth", "basefrequency", "baseline-shift", "begin", "bias", "by", "class", "clip", "clippathunits", "clip-path", "clip-rule", "color", "color-interpolation", "color-interpolation-filters", "color-profile", "color-rendering", "cx", "cy", "d", "dx", "dy", "diffuseconstant", "direction", "display", "divisor", "dominant-baseline", "dur", "edgemode", "elevation", "end", "exponent", "fill", "fill-opacity", "fill-rule", "filter", "filterunits", "flood-color", "flood-opacity", "font-family", "font-size", "font-size-adjust", "font-stretch", "font-style", "font-variant", "font-weight", "fx", "fy", "g1", "g2", "glyph-name", "glyphref", "gradientunits", "gradienttransform", "height", "href", "id", "image-rendering", "in", "in2", "intercept", "k", "k1", "k2", "k3", "k4", "kerning", "keypoints", "keysplines", "keytimes", "lang", "lengthadjust", "letter-spacing", "kernelmatrix", "kernelunitlength", "lighting-color", "local", "marker-end", "marker-mid", "marker-start", "markerheight", "markerunits", "markerwidth", "maskcontentunits", "maskunits", "max", "mask", "mask-type", "media", "method", "mode", "min", "name", "numoctaves", "offset", "operator", "opacity", "order", "orient", "orientation", "origin", "overflow", "paint-order", "path", "pathlength", "patterncontentunits", "patterntransform", "patternunits", "points", "preservealpha", "preserveaspectratio", "primitiveunits", "r", "rx", "ry", "radius", "refx", "refy", "repeatcount", "repeatdur", "restart", "result", "rotate", "scale", "seed", "shape-rendering", "slope", "specularconstant", "specularexponent", "spreadmethod", "startoffset", "stddeviation", "stitchtiles", "stop-color", "stop-opacity", "stroke-dasharray", "stroke-dashoffset", "stroke-linecap", "stroke-linejoin", "stroke-miterlimit", "stroke-opacity", "stroke", "stroke-width", "style", "surfacescale", "systemlanguage", "tabindex", "tablevalues", "targetx", "targety", "transform", "transform-origin", "text-anchor", "text-decoration", "text-orientation", "text-rendering", "textlength", "type", "u1", "u2", "unicode", "values", "viewbox", "visibility", "version", "vert-adv-y", "vert-origin-x", "vert-origin-y", "width", "word-spacing", "wrap", "writing-mode", "xchannelselector", "ychannelselector", "x", "x1", "x2", "xmlns", "y", "y1", "y2", "z", "zoomandpan"]);
2845
+ svg = freeze(["accent-height", "accumulate", "additive", "alignment-baseline", "amplitude", "ascent", "attributename", "attributetype", "azimuth", "basefrequency", "baseline-shift", "begin", "bias", "by", "class", "clip", "clippathunits", "clip-path", "clip-rule", "color", "color-interpolation", "color-interpolation-filters", "color-profile", "color-rendering", "cx", "cy", "d", "dx", "dy", "diffuseconstant", "direction", "display", "divisor", "dominant-baseline", "dur", "edgemode", "elevation", "end", "exponent", "fill", "fill-opacity", "fill-rule", "filter", "filterunits", "flood-color", "flood-opacity", "font-family", "font-size", "font-size-adjust", "font-stretch", "font-style", "font-variant", "font-weight", "fx", "fy", "g1", "g2", "glyph-name", "glyphref", "gradientunits", "gradienttransform", "height", "href", "id", "image-rendering", "in", "in2", "intercept", "k", "k1", "k2", "k3", "k4", "kerning", "keypoints", "keysplines", "keytimes", "lang", "lengthadjust", "letter-spacing", "kernelmatrix", "kernelunitlength", "lighting-color", "local", "marker-end", "marker-mid", "marker-start", "markerheight", "markerunits", "markerwidth", "maskcontentunits", "maskunits", "max", "mask", "mask-type", "media", "method", "mode", "min", "name", "numoctaves", "offset", "operator", "opacity", "order", "orient", "orientation", "origin", "overflow", "paint-order", "path", "pathlength", "patterncontentunits", "patterntransform", "patternunits", "pointer-events", "points", "preservealpha", "preserveaspectratio", "primitiveunits", "r", "rx", "ry", "radius", "refx", "refy", "repeatcount", "repeatdur", "restart", "result", "rotate", "scale", "seed", "shape-rendering", "slope", "specularconstant", "specularexponent", "spreadmethod", "startoffset", "stddeviation", "stitchtiles", "stop-color", "stop-opacity", "stroke-dasharray", "stroke-dashoffset", "stroke-linecap", "stroke-linejoin", "stroke-miterlimit", "stroke-opacity", "stroke", "stroke-width", "style", "surfacescale", "systemlanguage", "tabindex", "tablevalues", "targetx", "targety", "transform", "transform-origin", "text-anchor", "text-decoration", "text-orientation", "text-rendering", "textlength", "type", "u1", "u2", "unicode", "values", "vector-effect", "viewbox", "visibility", "version", "vert-adv-y", "vert-origin-x", "vert-origin-y", "width", "word-spacing", "wrap", "writing-mode", "xchannelselector", "ychannelselector", "x", "x1", "x2", "xmlns", "y", "y1", "y2", "z", "zoomandpan"]);
2785
2846
  mathMl = freeze(["accent", "accentunder", "align", "bevelled", "close", "columnalign", "columnlines", "columnspacing", "columnspan", "denomalign", "depth", "dir", "display", "displaystyle", "encoding", "fence", "frame", "height", "href", "id", "largeop", "length", "linethickness", "lquote", "lspace", "mathbackground", "mathcolor", "mathsize", "mathvariant", "maxsize", "minsize", "movablelimits", "notation", "numalign", "open", "rowalign", "rowlines", "rowspacing", "rowspan", "rspace", "rquote", "scriptlevel", "scriptminsize", "scriptsizemultiplier", "selection", "separator", "separators", "stretchy", "subscriptshift", "supscriptshift", "symmetric", "voffset", "width", "xmlns"]);
2786
2847
  xml = freeze(["xlink:href", "xml:id", "xlink:title", "xml:space", "xmlns:xlink"]);
2787
2848
  MUSTACHE_EXPR = seal(/{{[\w\W]*|^[\w\W]*}}/g);
@@ -2821,6 +2882,15 @@ var init_purify_es = __esm({
2821
2882
  notation: 12
2822
2883
  // Deprecated
2823
2884
  };
2885
+ LITERAL_TEXT_ELEMENT_NAMES = ["style", "script", "xmp", "iframe", "noembed", "noframes", "plaintext", "noscript"];
2886
+ LITERAL_TEXT_ELEMENTS = freeze(addToSet({}, LITERAL_TEXT_ELEMENT_NAMES));
2887
+ LITERAL_TEXT_CLOSE = (function() {
2888
+ const map6 = {};
2889
+ arrayForEach(LITERAL_TEXT_ELEMENT_NAMES, (name) => {
2890
+ map6[name] = seal(new RegExp("</" + name + "(?=[\\t\\n\\f\\r />])", "i"));
2891
+ });
2892
+ return freeze(map6);
2893
+ })();
2824
2894
  getGlobal = function getGlobal2() {
2825
2895
  return typeof window === "undefined" ? null : window;
2826
2896
  };
@@ -2864,6 +2934,10 @@ var init_purify_es = __esm({
2864
2934
  _resolveSetOption = function _resolveSetOption2(cfg, key, fallback, options2) {
2865
2935
  return objectHasOwnProperty(cfg, key) && arrayIsArray(cfg[key]) ? addToSet(options2.base ? clone(options2.base) : {}, cfg[key], options2.transform) : fallback;
2866
2936
  };
2937
+ _resolveObjectOption = function _resolveObjectOption2(cfg, key, makeFallback) {
2938
+ const value2 = objectHasOwnProperty(cfg, key) ? cfg[key] : void 0;
2939
+ return value2 && typeof value2 === "object" ? clone(value2) : makeFallback();
2940
+ };
2867
2941
  purify = createDOMPurify();
2868
2942
  }
2869
2943
  });
@@ -30673,13 +30747,14 @@ function iconToSVG(icon2, customisations) {
30673
30747
  const hFlip = props.hFlip;
30674
30748
  const vFlip = props.vFlip;
30675
30749
  let rotation = props.rotate;
30676
- if (hFlip) if (vFlip) rotation += 2;
30677
- else {
30678
- transformations.push("translate(" + (box.width + box.left).toString() + " " + (0 - box.top).toString() + ")");
30679
- transformations.push("scale(-1 1)");
30680
- box.top = box.left = 0;
30681
- }
30682
- else if (vFlip) {
30750
+ if (hFlip) {
30751
+ if (vFlip) rotation += 2;
30752
+ else {
30753
+ transformations.push("translate(" + (box.width + box.left).toString() + " " + (0 - box.top).toString() + ")");
30754
+ transformations.push("scale(-1 1)");
30755
+ box.top = box.left = 0;
30756
+ }
30757
+ } else if (vFlip) {
30683
30758
  transformations.push("translate(" + (0 - box.left).toString() + " " + (box.height + box.top).toString() + ")");
30684
30759
  transformations.push("scale(1 -1)");
30685
30760
  box.top = box.left = 0;
@@ -30698,7 +30773,6 @@ function iconToSVG(icon2, customisations) {
30698
30773
  case 3:
30699
30774
  tempValue = box.width / 2 + box.left;
30700
30775
  transformations.unshift("rotate(-90 " + tempValue.toString() + " " + tempValue.toString() + ")");
30701
- break;
30702
30776
  }
30703
30777
  if (rotation % 2 === 1) {
30704
30778
  if (box.left !== box.top) {
@@ -31589,7 +31663,7 @@ function mergeWithDeep(target, source, merge6, stack) {
31589
31663
  stack.set(source, target);
31590
31664
  if (Array.isArray(source)) {
31591
31665
  source = source.slice();
31592
- for (let i4 = 0; i4 < source.length; i4++) source[i4] = source[i4] ?? void 0;
31666
+ for (let i4 = 0; i4 < source.length; i4++) if (!(i4 in source)) source[i4] = void 0;
31593
31667
  }
31594
31668
  const sourceKeys = [...Object.keys(source), ...getSymbols(source)];
31595
31669
  for (let i4 = 0; i4 < sourceKeys.length; i4++) {
@@ -48407,8 +48481,8 @@ var init_sizeCapture_INFHLROL = __esm({
48407
48481
  }
48408
48482
  });
48409
48483
 
48410
- // node_modules/mermaid/dist/chunks/mermaid.core/chunk-H2I77ZZE.mjs
48411
- function createLayoutElementGroups(element3, { edgePathsClass = "edges edgePath" } = {}) {
48484
+ // node_modules/mermaid/dist/chunks/mermaid.core/chunk-2E4U76K2.mjs
48485
+ function createLayoutElementGroups(element3, { edgePathsClass = "edges edgePaths" } = {}) {
48412
48486
  const rootGroups = element3.insert("g").attr("class", "root");
48413
48487
  const clusters = rootGroups.insert("g").attr("class", "clusters");
48414
48488
  const edgePaths = rootGroups.insert("g").attr("class", edgePathsClass);
@@ -48687,8 +48761,8 @@ function positionRenderedEdgeLabel(edge, paths) {
48687
48761
  }
48688
48762
  }
48689
48763
  var clusterDb, descendants, parents, clear42, isDescendant, edgeInCluster, copy2, extractDescendants, findCommonEdges, findNonClusterChild, getAnchorId, adjustClustersAndEdges, extractor, sorter, sortNodesByHierarchy, isNodeInExtractableCluster, findSafeAnchorNode;
48690
- var init_chunk_H2I77ZZE = __esm({
48691
- "node_modules/mermaid/dist/chunks/mermaid.core/chunk-H2I77ZZE.mjs"() {
48764
+ var init_chunk_2E4U76K2 = __esm({
48765
+ "node_modules/mermaid/dist/chunks/mermaid.core/chunk-2E4U76K2.mjs"() {
48692
48766
  init_chunk_L3NEJ4N5();
48693
48767
  init_chunk_OSK3NFVY();
48694
48768
  init_chunk_GVQU2GXP();
@@ -54541,9 +54615,9 @@ var init_dagre = __esm({
54541
54615
  }
54542
54616
  });
54543
54617
 
54544
- // node_modules/mermaid/dist/chunks/mermaid.core/dagre-OS7QT2EB.mjs
54545
- var dagre_OS7QT2EB_exports = {};
54546
- __export(dagre_OS7QT2EB_exports, {
54618
+ // node_modules/mermaid/dist/chunks/mermaid.core/dagre-GXQ25YYZ.mjs
54619
+ var dagre_GXQ25YYZ_exports = {};
54620
+ __export(dagre_GXQ25YYZ_exports, {
54547
54621
  applyDagreLayoutResult: () => applyDagreLayoutResult,
54548
54622
  getEdgesToRender: () => getEdgesToRender,
54549
54623
  measureDagreLayout: () => measureDagreLayout,
@@ -54552,9 +54626,9 @@ __export(dagre_OS7QT2EB_exports, {
54552
54626
  runDagreLayoutCore: () => runDagreLayoutCore
54553
54627
  });
54554
54628
  var clamp, getDefaultSelfLoopSide, shouldMergeSelfLoopSegments, DAGRE_NODE_LAYOUT_PROPERTIES, getSelfLoopSide, getSelfLoopPoints, getSelfLoopLabelPosition, getEdgesToRender, measureDagreGraph, runDagreGraphLayout, normalizeDagreNode, applyDagreNodeLayout, normalizeDagreEdge, applyDagreLayoutResult, paintDagreLayoutCore, renderDagreSubgraph, prepareLayoutForDagre, measureDagreLayout, runDagreLayoutCore, getDagrePaintNodes, getDagreEdgeNode, render3;
54555
- var init_dagre_OS7QT2EB = __esm({
54556
- "node_modules/mermaid/dist/chunks/mermaid.core/dagre-OS7QT2EB.mjs"() {
54557
- init_chunk_H2I77ZZE();
54629
+ var init_dagre_GXQ25YYZ = __esm({
54630
+ "node_modules/mermaid/dist/chunks/mermaid.core/dagre-GXQ25YYZ.mjs"() {
54631
+ init_chunk_2E4U76K2();
54558
54632
  init_chunk_L3NEJ4N5();
54559
54633
  init_chunk_OSK3NFVY();
54560
54634
  init_chunk_GVQU2GXP();
@@ -55222,9 +55296,9 @@ var init_dagre_OS7QT2EB = __esm({
55222
55296
  }
55223
55297
  });
55224
55298
 
55225
- // node_modules/mermaid/dist/chunks/mermaid.core/swimlanes-V6O3JKXN.mjs
55226
- var swimlanes_V6O3JKXN_exports = {};
55227
- __export(swimlanes_V6O3JKXN_exports, {
55299
+ // node_modules/mermaid/dist/chunks/mermaid.core/swimlanes-42K2YHIH.mjs
55300
+ var swimlanes_42K2YHIH_exports = {};
55301
+ __export(swimlanes_42K2YHIH_exports, {
55228
55302
  render: () => render4
55229
55303
  });
55230
55304
  function buildSegmentList(points) {
@@ -63378,9 +63452,9 @@ function prepareSwimlaneLayout(data4Layout) {
63378
63452
  data4Layout.edges = transformedData.edges;
63379
63453
  }
63380
63454
  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, render4;
63381
- var init_swimlanes_V6O3JKXN = __esm({
63382
- "node_modules/mermaid/dist/chunks/mermaid.core/swimlanes-V6O3JKXN.mjs"() {
63383
- init_chunk_H2I77ZZE();
63455
+ var init_swimlanes_42K2YHIH = __esm({
63456
+ "node_modules/mermaid/dist/chunks/mermaid.core/swimlanes-42K2YHIH.mjs"() {
63457
+ init_chunk_2E4U76K2();
63384
63458
  init_chunk_L3NEJ4N5();
63385
63459
  init_chunk_OSK3NFVY();
63386
63460
  init_chunk_GVQU2GXP();
@@ -93822,7 +93896,7 @@ var init_cytoscape_esm = __esm({
93822
93896
  }
93823
93897
  return style4;
93824
93898
  };
93825
- version2 = "3.34.1";
93899
+ version2 = "3.34.2";
93826
93900
  cytoscape2 = function cytoscape3(options2) {
93827
93901
  if (options2 === void 0) {
93828
93902
  options2 = {};
@@ -98853,10 +98927,10 @@ var init_cose_bilkent_JH36ORCC = __esm({
98853
98927
  }
98854
98928
  });
98855
98929
 
98856
- // node_modules/mermaid/dist/chunks/mermaid.core/chunk-LQGUR6SS.mjs
98930
+ // node_modules/mermaid/dist/chunks/mermaid.core/chunk-TLUHSLCS.mjs
98857
98931
  var internalHelpers, layoutAlgorithms, registerLayoutLoaders, registerDefaultLayoutLoaders, render6, getRegisteredLayoutAlgorithm;
98858
- var init_chunk_LQGUR6SS = __esm({
98859
- "node_modules/mermaid/dist/chunks/mermaid.core/chunk-LQGUR6SS.mjs"() {
98932
+ var init_chunk_TLUHSLCS = __esm({
98933
+ "node_modules/mermaid/dist/chunks/mermaid.core/chunk-TLUHSLCS.mjs"() {
98860
98934
  init_chunk_L3NEJ4N5();
98861
98935
  init_chunk_OSK3NFVY();
98862
98936
  init_chunk_GVQU2GXP();
@@ -98888,11 +98962,11 @@ var init_chunk_LQGUR6SS = __esm({
98888
98962
  registerLayoutLoaders([
98889
98963
  {
98890
98964
  name: "dagre",
98891
- loader: /* @__PURE__ */ __name(async () => await Promise.resolve().then(() => (init_dagre_OS7QT2EB(), dagre_OS7QT2EB_exports)), "loader")
98965
+ loader: /* @__PURE__ */ __name(async () => await Promise.resolve().then(() => (init_dagre_GXQ25YYZ(), dagre_GXQ25YYZ_exports)), "loader")
98892
98966
  },
98893
98967
  {
98894
98968
  name: "swimlane",
98895
- loader: /* @__PURE__ */ __name(async () => await Promise.resolve().then(() => (init_swimlanes_V6O3JKXN(), swimlanes_V6O3JKXN_exports)), "loader")
98969
+ loader: /* @__PURE__ */ __name(async () => await Promise.resolve().then(() => (init_swimlanes_42K2YHIH(), swimlanes_42K2YHIH_exports)), "loader")
98896
98970
  },
98897
98971
  ...true ? [
98898
98972
  {
@@ -101589,15 +101663,15 @@ var init_chunk_POPQ4Y6H = __esm({
101589
101663
  }
101590
101664
  });
101591
101665
 
101592
- // node_modules/mermaid/dist/chunks/mermaid.core/chunk-3NF5O7KM.mjs
101666
+ // node_modules/mermaid/dist/chunks/mermaid.core/chunk-SHT3W25Y.mjs
101593
101667
  var MERMAID_DOM_ID_PREFIX, FlowDB, getClasses, draw2, flowRenderer_v3_unified_default, parser2, flow_default, newParser, flowParser_default, fade, getStyles3, styles_default3, createFlowDiagram, diagram2;
101594
- var init_chunk_3NF5O7KM = __esm({
101595
- "node_modules/mermaid/dist/chunks/mermaid.core/chunk-3NF5O7KM.mjs"() {
101668
+ var init_chunk_SHT3W25Y = __esm({
101669
+ "node_modules/mermaid/dist/chunks/mermaid.core/chunk-SHT3W25Y.mjs"() {
101596
101670
  init_chunk_5VM5RSS4();
101597
101671
  init_chunk_XXDRQBXY();
101598
101672
  init_chunk_POPQ4Y6H();
101599
101673
  init_chunk_LNGE3PJU();
101600
- init_chunk_LQGUR6SS();
101674
+ init_chunk_TLUHSLCS();
101601
101675
  init_chunk_F27PBJKO();
101602
101676
  init_chunk_4HAMMTFA();
101603
101677
  init_chunk_75Z2AOVW();
@@ -104017,7 +104091,7 @@ You have to call mermaid.initialize.`
104017
104091
  fill: ${options2.arrowheadColor};
104018
104092
  }
104019
104093
 
104020
- .edgePath .path {
104094
+ .edgePaths .path {
104021
104095
  stroke: ${options2.lineColor};
104022
104096
  stroke-width: ${options2.strokeWidth ?? 2}px;
104023
104097
  }
@@ -104142,20 +104216,20 @@ You have to call mermaid.initialize.`
104142
104216
  }
104143
104217
  });
104144
104218
 
104145
- // node_modules/mermaid/dist/chunks/mermaid.core/flowDiagram-T62WH6J4.mjs
104146
- var flowDiagram_T62WH6J4_exports = {};
104147
- __export(flowDiagram_T62WH6J4_exports, {
104219
+ // node_modules/mermaid/dist/chunks/mermaid.core/flowDiagram-HODETNUW.mjs
104220
+ var flowDiagram_HODETNUW_exports = {};
104221
+ __export(flowDiagram_HODETNUW_exports, {
104148
104222
  createFlowDiagram: () => createFlowDiagram,
104149
104223
  diagram: () => diagram2
104150
104224
  });
104151
- var init_flowDiagram_T62WH6J4 = __esm({
104152
- "node_modules/mermaid/dist/chunks/mermaid.core/flowDiagram-T62WH6J4.mjs"() {
104153
- init_chunk_3NF5O7KM();
104225
+ var init_flowDiagram_HODETNUW = __esm({
104226
+ "node_modules/mermaid/dist/chunks/mermaid.core/flowDiagram-HODETNUW.mjs"() {
104227
+ init_chunk_SHT3W25Y();
104154
104228
  init_chunk_5VM5RSS4();
104155
104229
  init_chunk_XXDRQBXY();
104156
104230
  init_chunk_POPQ4Y6H();
104157
104231
  init_chunk_LNGE3PJU();
104158
- init_chunk_LQGUR6SS();
104232
+ init_chunk_TLUHSLCS();
104159
104233
  init_chunk_F27PBJKO();
104160
104234
  init_chunk_L3NEJ4N5();
104161
104235
  init_chunk_OSK3NFVY();
@@ -104171,20 +104245,20 @@ var init_flowDiagram_T62WH6J4 = __esm({
104171
104245
  }
104172
104246
  });
104173
104247
 
104174
- // node_modules/mermaid/dist/chunks/mermaid.core/swimlanesDiagram-JKAHXJPX.mjs
104175
- var swimlanesDiagram_JKAHXJPX_exports = {};
104176
- __export(swimlanesDiagram_JKAHXJPX_exports, {
104248
+ // node_modules/mermaid/dist/chunks/mermaid.core/swimlanesDiagram-VR7AAH4N.mjs
104249
+ var swimlanesDiagram_VR7AAH4N_exports = {};
104250
+ __export(swimlanesDiagram_VR7AAH4N_exports, {
104177
104251
  diagram: () => diagram3
104178
104252
  });
104179
104253
  var getStyles4, styles_default22, diagram3;
104180
- var init_swimlanesDiagram_JKAHXJPX = __esm({
104181
- "node_modules/mermaid/dist/chunks/mermaid.core/swimlanesDiagram-JKAHXJPX.mjs"() {
104182
- init_chunk_3NF5O7KM();
104254
+ var init_swimlanesDiagram_VR7AAH4N = __esm({
104255
+ "node_modules/mermaid/dist/chunks/mermaid.core/swimlanesDiagram-VR7AAH4N.mjs"() {
104256
+ init_chunk_SHT3W25Y();
104183
104257
  init_chunk_5VM5RSS4();
104184
104258
  init_chunk_XXDRQBXY();
104185
104259
  init_chunk_POPQ4Y6H();
104186
104260
  init_chunk_LNGE3PJU();
104187
- init_chunk_LQGUR6SS();
104261
+ init_chunk_TLUHSLCS();
104188
104262
  init_chunk_F27PBJKO();
104189
104263
  init_chunk_L3NEJ4N5();
104190
104264
  init_chunk_OSK3NFVY();
@@ -104210,17 +104284,17 @@ var init_swimlanesDiagram_JKAHXJPX = __esm({
104210
104284
  }
104211
104285
  });
104212
104286
 
104213
- // node_modules/mermaid/dist/chunks/mermaid.core/erDiagram-2YWLMYGG.mjs
104214
- var erDiagram_2YWLMYGG_exports = {};
104215
- __export(erDiagram_2YWLMYGG_exports, {
104287
+ // node_modules/mermaid/dist/chunks/mermaid.core/erDiagram-RLTQ6QDP.mjs
104288
+ var erDiagram_RLTQ6QDP_exports = {};
104289
+ __export(erDiagram_RLTQ6QDP_exports, {
104216
104290
  diagram: () => diagram4
104217
104291
  });
104218
104292
  var parser3, erDiagram_default, ErDB, erRenderer_unified_exports, draw3, fade2, COLOR_THEMES2, genColor, getStyles5, styles_default4, diagram4;
104219
- var init_erDiagram_2YWLMYGG = __esm({
104220
- "node_modules/mermaid/dist/chunks/mermaid.core/erDiagram-2YWLMYGG.mjs"() {
104293
+ var init_erDiagram_RLTQ6QDP = __esm({
104294
+ "node_modules/mermaid/dist/chunks/mermaid.core/erDiagram-RLTQ6QDP.mjs"() {
104221
104295
  init_chunk_XXDRQBXY();
104222
104296
  init_chunk_POPQ4Y6H();
104223
- init_chunk_LQGUR6SS();
104297
+ init_chunk_TLUHSLCS();
104224
104298
  init_chunk_L3NEJ4N5();
104225
104299
  init_chunk_OSK3NFVY();
104226
104300
  init_chunk_GVQU2GXP();
@@ -142679,14 +142753,14 @@ var init_ganttDiagram_EL5Y4UJY = __esm({
142679
142753
  }
142680
142754
  });
142681
142755
 
142682
- // node_modules/mermaid/dist/chunks/mermaid.core/infoDiagram-FKFFQAWI.mjs
142683
- var infoDiagram_FKFFQAWI_exports = {};
142684
- __export(infoDiagram_FKFFQAWI_exports, {
142756
+ // node_modules/mermaid/dist/chunks/mermaid.core/infoDiagram-27XIBGKW.mjs
142757
+ var infoDiagram_27XIBGKW_exports = {};
142758
+ __export(infoDiagram_27XIBGKW_exports, {
142685
142759
  diagram: () => diagram7
142686
142760
  });
142687
142761
  var parser6, DEFAULT_INFO_DB, getVersion, db2, draw6, renderer3, diagram7;
142688
- var init_infoDiagram_FKFFQAWI = __esm({
142689
- "node_modules/mermaid/dist/chunks/mermaid.core/infoDiagram-FKFFQAWI.mjs"() {
142762
+ var init_infoDiagram_27XIBGKW = __esm({
142763
+ "node_modules/mermaid/dist/chunks/mermaid.core/infoDiagram-27XIBGKW.mjs"() {
142690
142764
  init_chunk_CLGD4ZFX();
142691
142765
  init_chunk_DU6HZSFF();
142692
142766
  init_chunk_X3CZISLH();
@@ -142699,7 +142773,7 @@ var init_infoDiagram_FKFFQAWI = __esm({
142699
142773
  }, "parse")
142700
142774
  };
142701
142775
  DEFAULT_INFO_DB = {
142702
- version: "11.17.1" + (true ? "" : "-tiny")
142776
+ version: "11.17.2" + (true ? "" : "-tiny")
142703
142777
  };
142704
142778
  getVersion = /* @__PURE__ */ __name(() => DEFAULT_INFO_DB.version, "getVersion");
142705
142779
  db2 = {
@@ -146541,17 +146615,17 @@ var init_xychartDiagram_S5SC5T6Z = __esm({
146541
146615
  }
146542
146616
  });
146543
146617
 
146544
- // node_modules/mermaid/dist/chunks/mermaid.core/requirementDiagram-IS5BZ75X.mjs
146545
- var requirementDiagram_IS5BZ75X_exports = {};
146546
- __export(requirementDiagram_IS5BZ75X_exports, {
146618
+ // node_modules/mermaid/dist/chunks/mermaid.core/requirementDiagram-BXWQKSXE.mjs
146619
+ var requirementDiagram_BXWQKSXE_exports = {};
146620
+ __export(requirementDiagram_BXWQKSXE_exports, {
146547
146621
  diagram: () => diagram11
146548
146622
  });
146549
146623
  var parser10, requirementDiagram_default, RequirementDB, genColor3, getStyles9, styles_default7, requirementRenderer_exports, draw10, diagram11;
146550
- var init_requirementDiagram_IS5BZ75X = __esm({
146551
- "node_modules/mermaid/dist/chunks/mermaid.core/requirementDiagram-IS5BZ75X.mjs"() {
146624
+ var init_requirementDiagram_BXWQKSXE = __esm({
146625
+ "node_modules/mermaid/dist/chunks/mermaid.core/requirementDiagram-BXWQKSXE.mjs"() {
146552
146626
  init_chunk_XXDRQBXY();
146553
146627
  init_chunk_POPQ4Y6H();
146554
- init_chunk_LQGUR6SS();
146628
+ init_chunk_TLUHSLCS();
146555
146629
  init_chunk_L3NEJ4N5();
146556
146630
  init_chunk_OSK3NFVY();
146557
146631
  init_chunk_GVQU2GXP();
@@ -152459,14 +152533,14 @@ var init_sequenceDiagram_WJ2MYXX4 = __esm({
152459
152533
  }
152460
152534
  });
152461
152535
 
152462
- // node_modules/mermaid/dist/chunks/mermaid.core/chunk-HLEWEB6X.mjs
152536
+ // node_modules/mermaid/dist/chunks/mermaid.core/chunk-TICWLB2K.mjs
152463
152537
  var parser12, classDiagram_default, visibilityValues, ClassMember, MERMAID_DOM_ID_PREFIX2, classCounter, sanitizeText22, ClassDB, getStyles11, styles_default9, getDir, getClasses2, draw12, classRenderer_v3_unified_default;
152464
- var init_chunk_HLEWEB6X = __esm({
152465
- "node_modules/mermaid/dist/chunks/mermaid.core/chunk-HLEWEB6X.mjs"() {
152538
+ var init_chunk_TICWLB2K = __esm({
152539
+ "node_modules/mermaid/dist/chunks/mermaid.core/chunk-TICWLB2K.mjs"() {
152466
152540
  init_chunk_5VM5RSS4();
152467
152541
  init_chunk_XXDRQBXY();
152468
152542
  init_chunk_POPQ4Y6H();
152469
- init_chunk_LQGUR6SS();
152543
+ init_chunk_TLUHSLCS();
152470
152544
  init_chunk_F27PBJKO();
152471
152545
  init_chunk_75Z2AOVW();
152472
152546
  init_chunk_DU6HZSFF();
@@ -154578,19 +154652,19 @@ g.classGroup line {
154578
154652
  }
154579
154653
  });
154580
154654
 
154581
- // node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-CYGNFDIV.mjs
154582
- var classDiagram_CYGNFDIV_exports = {};
154583
- __export(classDiagram_CYGNFDIV_exports, {
154655
+ // node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-ZZMXUADV.mjs
154656
+ var classDiagram_ZZMXUADV_exports = {};
154657
+ __export(classDiagram_ZZMXUADV_exports, {
154584
154658
  diagram: () => diagram13
154585
154659
  });
154586
154660
  var diagram13;
154587
- var init_classDiagram_CYGNFDIV = __esm({
154588
- "node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-CYGNFDIV.mjs"() {
154589
- init_chunk_HLEWEB6X();
154661
+ var init_classDiagram_ZZMXUADV = __esm({
154662
+ "node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-ZZMXUADV.mjs"() {
154663
+ init_chunk_TICWLB2K();
154590
154664
  init_chunk_5VM5RSS4();
154591
154665
  init_chunk_XXDRQBXY();
154592
154666
  init_chunk_POPQ4Y6H();
154593
- init_chunk_LQGUR6SS();
154667
+ init_chunk_TLUHSLCS();
154594
154668
  init_chunk_F27PBJKO();
154595
154669
  init_chunk_L3NEJ4N5();
154596
154670
  init_chunk_OSK3NFVY();
@@ -154620,19 +154694,19 @@ var init_classDiagram_CYGNFDIV = __esm({
154620
154694
  }
154621
154695
  });
154622
154696
 
154623
- // node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-v2-TLXNO2FR.mjs
154624
- var classDiagram_v2_TLXNO2FR_exports = {};
154625
- __export(classDiagram_v2_TLXNO2FR_exports, {
154697
+ // node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-v2-VYDZK3BY.mjs
154698
+ var classDiagram_v2_VYDZK3BY_exports = {};
154699
+ __export(classDiagram_v2_VYDZK3BY_exports, {
154626
154700
  diagram: () => diagram14
154627
154701
  });
154628
154702
  var diagram14;
154629
- var init_classDiagram_v2_TLXNO2FR = __esm({
154630
- "node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-v2-TLXNO2FR.mjs"() {
154631
- init_chunk_HLEWEB6X();
154703
+ var init_classDiagram_v2_VYDZK3BY = __esm({
154704
+ "node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-v2-VYDZK3BY.mjs"() {
154705
+ init_chunk_TICWLB2K();
154632
154706
  init_chunk_5VM5RSS4();
154633
154707
  init_chunk_XXDRQBXY();
154634
154708
  init_chunk_POPQ4Y6H();
154635
- init_chunk_LQGUR6SS();
154709
+ init_chunk_TLUHSLCS();
154636
154710
  init_chunk_F27PBJKO();
154637
154711
  init_chunk_L3NEJ4N5();
154638
154712
  init_chunk_OSK3NFVY();
@@ -154662,7 +154736,7 @@ var init_classDiagram_v2_TLXNO2FR = __esm({
154662
154736
  }
154663
154737
  });
154664
154738
 
154665
- // node_modules/mermaid/dist/chunks/mermaid.core/chunk-ZLD2IHE6.mjs
154739
+ // node_modules/mermaid/dist/chunks/mermaid.core/chunk-IMKFNOWR.mjs
154666
154740
  function stateDomId(itemId = "", counter = 0, type3 = "", typeSpacer = DOMID_TYPE_SPACER) {
154667
154741
  const typeStr = type3 !== null && type3.length > 0 ? `${typeSpacer}${type3}` : "";
154668
154742
  return `${DOMID_STATE}-${itemId}${typeStr}-${counter}`;
@@ -154696,11 +154770,11 @@ function getStylesFromDbInfo(dbInfoItem) {
154696
154770
  return dbInfoItem?.styles ?? [];
154697
154771
  }
154698
154772
  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, clone7, StateDB, getStyles12, styles_default10;
154699
- var init_chunk_ZLD2IHE6 = __esm({
154700
- "node_modules/mermaid/dist/chunks/mermaid.core/chunk-ZLD2IHE6.mjs"() {
154773
+ var init_chunk_IMKFNOWR = __esm({
154774
+ "node_modules/mermaid/dist/chunks/mermaid.core/chunk-IMKFNOWR.mjs"() {
154701
154775
  init_chunk_XXDRQBXY();
154702
154776
  init_chunk_POPQ4Y6H();
154703
- init_chunk_LQGUR6SS();
154777
+ init_chunk_TLUHSLCS();
154704
154778
  init_chunk_F27PBJKO();
154705
154779
  init_chunk_75Z2AOVW();
154706
154780
  init_chunk_DU6HZSFF();
@@ -156729,18 +156803,18 @@ g.stateGroup line {
156729
156803
  }
156730
156804
  });
156731
156805
 
156732
- // node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-XQSTLZYL.mjs
156733
- var stateDiagram_XQSTLZYL_exports = {};
156734
- __export(stateDiagram_XQSTLZYL_exports, {
156806
+ // node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-D77RDMKH.mjs
156807
+ var stateDiagram_D77RDMKH_exports = {};
156808
+ __export(stateDiagram_D77RDMKH_exports, {
156735
156809
  diagram: () => diagram15
156736
156810
  });
156737
156811
  var drawStartState, drawDivider, drawSimpleState, drawDescrState, addTitleAndBox, drawEndState, drawForkJoinState, _drawLongText, drawNote2, drawState, edgeCount, drawEdge, conf3, transformationLog, setConf4, insertMarkers2, draw14, getLabelWidth, renderDoc, stateRenderer_default, diagram15;
156738
- var init_stateDiagram_XQSTLZYL = __esm({
156739
- "node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-XQSTLZYL.mjs"() {
156740
- init_chunk_ZLD2IHE6();
156812
+ var init_stateDiagram_D77RDMKH = __esm({
156813
+ "node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-D77RDMKH.mjs"() {
156814
+ init_chunk_IMKFNOWR();
156741
156815
  init_chunk_XXDRQBXY();
156742
156816
  init_chunk_POPQ4Y6H();
156743
- init_chunk_LQGUR6SS();
156817
+ init_chunk_TLUHSLCS();
156744
156818
  init_chunk_F27PBJKO();
156745
156819
  init_chunk_L3NEJ4N5();
156746
156820
  init_chunk_OSK3NFVY();
@@ -157206,18 +157280,18 @@ var init_stateDiagram_XQSTLZYL = __esm({
157206
157280
  }
157207
157281
  });
157208
157282
 
157209
- // node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-v2-IH3M54BS.mjs
157210
- var stateDiagram_v2_IH3M54BS_exports = {};
157211
- __export(stateDiagram_v2_IH3M54BS_exports, {
157283
+ // node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-v2-MP3YSRHH.mjs
157284
+ var stateDiagram_v2_MP3YSRHH_exports = {};
157285
+ __export(stateDiagram_v2_MP3YSRHH_exports, {
157212
157286
  diagram: () => diagram16
157213
157287
  });
157214
157288
  var diagram16;
157215
- var init_stateDiagram_v2_IH3M54BS = __esm({
157216
- "node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-v2-IH3M54BS.mjs"() {
157217
- init_chunk_ZLD2IHE6();
157289
+ var init_stateDiagram_v2_MP3YSRHH = __esm({
157290
+ "node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-v2-MP3YSRHH.mjs"() {
157291
+ init_chunk_IMKFNOWR();
157218
157292
  init_chunk_XXDRQBXY();
157219
157293
  init_chunk_POPQ4Y6H();
157220
- init_chunk_LQGUR6SS();
157294
+ init_chunk_TLUHSLCS();
157221
157295
  init_chunk_F27PBJKO();
157222
157296
  init_chunk_L3NEJ4N5();
157223
157297
  init_chunk_OSK3NFVY();
@@ -157247,9 +157321,9 @@ var init_stateDiagram_v2_IH3M54BS = __esm({
157247
157321
  }
157248
157322
  });
157249
157323
 
157250
- // node_modules/mermaid/dist/chunks/mermaid.core/journeyDiagram-EYS64GPL.mjs
157251
- var journeyDiagram_EYS64GPL_exports = {};
157252
- __export(journeyDiagram_EYS64GPL_exports, {
157324
+ // node_modules/mermaid/dist/chunks/mermaid.core/journeyDiagram-3NMN7TZE.mjs
157325
+ var journeyDiagram_3NMN7TZE_exports = {};
157326
+ __export(journeyDiagram_3NMN7TZE_exports, {
157253
157327
  diagram: () => diagram17
157254
157328
  });
157255
157329
  function drawActorLegend(diagram210) {
@@ -157327,8 +157401,8 @@ function drawActorLegend(diagram210) {
157327
157401
  });
157328
157402
  }
157329
157403
  var parser14, journey_default, currentSection2, sections3, tasks2, rawTasks2, clear27, 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;
157330
- var init_journeyDiagram_EYS64GPL = __esm({
157331
- "node_modules/mermaid/dist/chunks/mermaid.core/journeyDiagram-EYS64GPL.mjs"() {
157404
+ var init_journeyDiagram_3NMN7TZE = __esm({
157405
+ "node_modules/mermaid/dist/chunks/mermaid.core/journeyDiagram-3NMN7TZE.mjs"() {
157332
157406
  init_chunk_5VM5RSS4();
157333
157407
  init_chunk_F27PBJKO();
157334
157408
  init_chunk_DU6HZSFF();
@@ -158057,7 +158131,7 @@ var init_journeyDiagram_EYS64GPL = __esm({
158057
158131
  fill: ${options2.arrowheadColor};
158058
158132
  }
158059
158133
 
158060
- .edgePath .path {
158134
+ .edgePaths .path {
158061
158135
  stroke: ${options2.lineColor};
158062
158136
  stroke-width: 1.5px;
158063
158137
  }
@@ -160236,17 +160310,17 @@ var init_dist2 = __esm({
160236
160310
  }
160237
160311
  });
160238
160312
 
160239
- // node_modules/mermaid/dist/chunks/mermaid.core/mindmap-definition-THT77NOG.mjs
160240
- var mindmap_definition_THT77NOG_exports = {};
160241
- __export(mindmap_definition_THT77NOG_exports, {
160313
+ // node_modules/mermaid/dist/chunks/mermaid.core/mindmap-definition-YA3MSWOX.mjs
160314
+ var mindmap_definition_YA3MSWOX_exports = {};
160315
+ __export(mindmap_definition_YA3MSWOX_exports, {
160242
160316
  diagram: () => diagram19
160243
160317
  });
160244
160318
  var parser16, mindmap_default, MAX_SECTIONS, nodeType, MindmapDB, draw17, mindmapRenderer_default, genSections2, genGradient, getStyles15, styles_default13, diagram19;
160245
- var init_mindmap_definition_THT77NOG = __esm({
160246
- "node_modules/mermaid/dist/chunks/mermaid.core/mindmap-definition-THT77NOG.mjs"() {
160319
+ var init_mindmap_definition_YA3MSWOX = __esm({
160320
+ "node_modules/mermaid/dist/chunks/mermaid.core/mindmap-definition-YA3MSWOX.mjs"() {
160247
160321
  init_chunk_XXDRQBXY();
160248
160322
  init_chunk_POPQ4Y6H();
160249
- init_chunk_LQGUR6SS();
160323
+ init_chunk_TLUHSLCS();
160250
160324
  init_chunk_L3NEJ4N5();
160251
160325
  init_chunk_OSK3NFVY();
160252
160326
  init_chunk_GVQU2GXP();
@@ -164521,9 +164595,9 @@ var init_diagram_UQ7AKVKN = __esm({
164521
164595
  }
164522
164596
  });
164523
164597
 
164524
- // node_modules/mermaid/dist/chunks/mermaid.core/blockDiagram-OSKFZWR5.mjs
164525
- var blockDiagram_OSKFZWR5_exports = {};
164526
- __export(blockDiagram_OSKFZWR5_exports, {
164598
+ // node_modules/mermaid/dist/chunks/mermaid.core/blockDiagram-I7D4REHJ.mjs
164599
+ var blockDiagram_I7D4REHJ_exports = {};
164600
+ __export(blockDiagram_I7D4REHJ_exports, {
164527
164601
  diagram: () => diagram24
164528
164602
  });
164529
164603
  function typeStr2Type(typeStr) {
@@ -165079,8 +165153,8 @@ async function insertEdges(elem, edges3, blocks2, db22, id39) {
165079
165153
  }
165080
165154
  }
165081
165155
  var parser21, block_default, blockDatabase, edgeList, edgeCount2, COLOR_KEYWORD, FILL_KEYWORD, BG_FILL, STYLECLASS_SEP, classes2, diagramId2, sanitizeText4, addStyleClass, addStyle2Node, setCssClass, populateBlockDatabase, blocks, rootBlock, clear211, cnt3, generateId2, setHierarchy, getColumns, getBlocksFlat, getBlocks, getEdges, getBlock, setBlock, setDiagramId2, getDiagramId, getLogger2, getClasses4, db6, blockDB_default, fade3, getStyles18, styles_default16, getMaxChildSize, getClasses22, draw23, blockRenderer_default, diagram24;
165082
- var init_blockDiagram_OSKFZWR5 = __esm({
165083
- "node_modules/mermaid/dist/chunks/mermaid.core/blockDiagram-OSKFZWR5.mjs"() {
165156
+ var init_blockDiagram_I7D4REHJ = __esm({
165157
+ "node_modules/mermaid/dist/chunks/mermaid.core/blockDiagram-I7D4REHJ.mjs"() {
165084
165158
  init_chunk_5VM5RSS4();
165085
165159
  init_chunk_OSK3NFVY();
165086
165160
  init_chunk_GVQU2GXP();
@@ -166401,7 +166475,7 @@ var init_blockDiagram_OSKFZWR5 = __esm({
166401
166475
  fill: ${options2.arrowheadColor};
166402
166476
  }
166403
166477
 
166404
- .edgePath .path {
166478
+ .edgePaths .path {
166405
166479
  stroke: ${options2.lineColor};
166406
166480
  stroke-width: 2.0px;
166407
166481
  }
@@ -183657,9 +183731,9 @@ function toggleMarkup(button) {
183657
183731
 
183658
183732
  // node_modules/mermaid/dist/mermaid.core.mjs
183659
183733
  init_chunk_CLGD4ZFX();
183660
- init_chunk_H2I77ZZE();
183734
+ init_chunk_2E4U76K2();
183661
183735
  init_chunk_LNGE3PJU();
183662
- init_chunk_LQGUR6SS();
183736
+ init_chunk_TLUHSLCS();
183663
183737
  init_chunk_L3NEJ4N5();
183664
183738
  init_chunk_OSK3NFVY();
183665
183739
  init_chunk_GVQU2GXP();
@@ -184073,7 +184147,7 @@ var detector2 = /* @__PURE__ */ __name((txt, config3) => {
184073
184147
  return /^\s*graph/.test(txt);
184074
184148
  }, "detector");
184075
184149
  var loader22 = /* @__PURE__ */ __name(async () => {
184076
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_flowDiagram_T62WH6J4(), flowDiagram_T62WH6J4_exports));
184150
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_flowDiagram_HODETNUW(), flowDiagram_HODETNUW_exports));
184077
184151
  return { id: id22, diagram: diagram210 };
184078
184152
  }, "loader");
184079
184153
  var plugin2 = {
@@ -184096,7 +184170,7 @@ var detector3 = /* @__PURE__ */ __name((txt, config3) => {
184096
184170
  return /^\s*flowchart/.test(txt);
184097
184171
  }, "detector");
184098
184172
  var loader3 = /* @__PURE__ */ __name(async () => {
184099
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_flowDiagram_T62WH6J4(), flowDiagram_T62WH6J4_exports));
184173
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_flowDiagram_HODETNUW(), flowDiagram_HODETNUW_exports));
184100
184174
  return { id: id32, diagram: diagram210 };
184101
184175
  }, "loader");
184102
184176
  var plugin3 = {
@@ -184110,7 +184184,7 @@ var detector4 = /* @__PURE__ */ __name((txt) => {
184110
184184
  return /^\s*swimlane-beta\b/.test(txt);
184111
184185
  }, "detector");
184112
184186
  var loader4 = /* @__PURE__ */ __name(async () => {
184113
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_swimlanesDiagram_JKAHXJPX(), swimlanesDiagram_JKAHXJPX_exports));
184187
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_swimlanesDiagram_VR7AAH4N(), swimlanesDiagram_VR7AAH4N_exports));
184114
184188
  return { id: id4, diagram: diagram210 };
184115
184189
  }, "loader");
184116
184190
  var plugin4 = {
@@ -184124,7 +184198,7 @@ var detector5 = /* @__PURE__ */ __name((txt) => {
184124
184198
  return /^\s*erDiagram/.test(txt);
184125
184199
  }, "detector");
184126
184200
  var loader5 = /* @__PURE__ */ __name(async () => {
184127
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_erDiagram_2YWLMYGG(), erDiagram_2YWLMYGG_exports));
184201
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_erDiagram_RLTQ6QDP(), erDiagram_RLTQ6QDP_exports));
184128
184202
  return { id: id5, diagram: diagram210 };
184129
184203
  }, "loader");
184130
184204
  var plugin5 = {
@@ -184166,7 +184240,7 @@ var detector8 = /* @__PURE__ */ __name((txt) => {
184166
184240
  return /^\s*info/.test(txt);
184167
184241
  }, "detector");
184168
184242
  var loader8 = /* @__PURE__ */ __name(async () => {
184169
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_infoDiagram_FKFFQAWI(), infoDiagram_FKFFQAWI_exports));
184243
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_infoDiagram_27XIBGKW(), infoDiagram_27XIBGKW_exports));
184170
184244
  return { id: id8, diagram: diagram210 };
184171
184245
  }, "loader");
184172
184246
  var info = {
@@ -184220,7 +184294,7 @@ var detector12 = /* @__PURE__ */ __name((txt) => {
184220
184294
  return /^\s*requirement(Diagram)?/.test(txt);
184221
184295
  }, "detector");
184222
184296
  var loader12 = /* @__PURE__ */ __name(async () => {
184223
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_requirementDiagram_IS5BZ75X(), requirementDiagram_IS5BZ75X_exports));
184297
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_requirementDiagram_BXWQKSXE(), requirementDiagram_BXWQKSXE_exports));
184224
184298
  return { id: id12, diagram: diagram210 };
184225
184299
  }, "loader");
184226
184300
  var plugin10 = {
@@ -184251,7 +184325,7 @@ var detector14 = /* @__PURE__ */ __name((txt, config3) => {
184251
184325
  return /^\s*classDiagram/.test(txt);
184252
184326
  }, "detector");
184253
184327
  var loader14 = /* @__PURE__ */ __name(async () => {
184254
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_classDiagram_CYGNFDIV(), classDiagram_CYGNFDIV_exports));
184328
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_classDiagram_ZZMXUADV(), classDiagram_ZZMXUADV_exports));
184255
184329
  return { id: id14, diagram: diagram210 };
184256
184330
  }, "loader");
184257
184331
  var plugin12 = {
@@ -184268,7 +184342,7 @@ var detector15 = /* @__PURE__ */ __name((txt, config3) => {
184268
184342
  return /^\s*classDiagram-v2/.test(txt);
184269
184343
  }, "detector");
184270
184344
  var loader15 = /* @__PURE__ */ __name(async () => {
184271
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_classDiagram_v2_TLXNO2FR(), classDiagram_v2_TLXNO2FR_exports));
184345
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_classDiagram_v2_VYDZK3BY(), classDiagram_v2_VYDZK3BY_exports));
184272
184346
  return { id: id15, diagram: diagram210 };
184273
184347
  }, "loader");
184274
184348
  var plugin13 = {
@@ -184285,7 +184359,7 @@ var detector16 = /* @__PURE__ */ __name((txt, config3) => {
184285
184359
  return /^\s*stateDiagram/.test(txt);
184286
184360
  }, "detector");
184287
184361
  var loader16 = /* @__PURE__ */ __name(async () => {
184288
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_stateDiagram_XQSTLZYL(), stateDiagram_XQSTLZYL_exports));
184362
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_stateDiagram_D77RDMKH(), stateDiagram_D77RDMKH_exports));
184289
184363
  return { id: id16, diagram: diagram210 };
184290
184364
  }, "loader");
184291
184365
  var plugin14 = {
@@ -184305,7 +184379,7 @@ var detector17 = /* @__PURE__ */ __name((txt, config3) => {
184305
184379
  return false;
184306
184380
  }, "detector");
184307
184381
  var loader17 = /* @__PURE__ */ __name(async () => {
184308
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_stateDiagram_v2_IH3M54BS(), stateDiagram_v2_IH3M54BS_exports));
184382
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_stateDiagram_v2_MP3YSRHH(), stateDiagram_v2_MP3YSRHH_exports));
184309
184383
  return { id: id17, diagram: diagram210 };
184310
184384
  }, "loader");
184311
184385
  var plugin15 = {
@@ -184319,7 +184393,7 @@ var detector18 = /* @__PURE__ */ __name((txt) => {
184319
184393
  return /^\s*journey/.test(txt);
184320
184394
  }, "detector");
184321
184395
  var loader18 = /* @__PURE__ */ __name(async () => {
184322
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_journeyDiagram_EYS64GPL(), journeyDiagram_EYS64GPL_exports));
184396
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_journeyDiagram_3NMN7TZE(), journeyDiagram_3NMN7TZE_exports));
184323
184397
  return { id: id18, diagram: diagram210 };
184324
184398
  }, "loader");
184325
184399
  var plugin16 = {
@@ -184386,7 +184460,7 @@ var detector19 = /* @__PURE__ */ __name((txt, config3 = {}) => {
184386
184460
  return false;
184387
184461
  }, "detector");
184388
184462
  var loader19 = /* @__PURE__ */ __name(async () => {
184389
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_flowDiagram_T62WH6J4(), flowDiagram_T62WH6J4_exports));
184463
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_flowDiagram_HODETNUW(), flowDiagram_HODETNUW_exports));
184390
184464
  return { id: id19, diagram: diagram210 };
184391
184465
  }, "loader");
184392
184466
  var plugin17 = {
@@ -184414,7 +184488,7 @@ var detector21 = /* @__PURE__ */ __name((txt) => {
184414
184488
  return /^\s*mindmap/.test(txt);
184415
184489
  }, "detector");
184416
184490
  var loader21 = /* @__PURE__ */ __name(async () => {
184417
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_mindmap_definition_THT77NOG(), mindmap_definition_THT77NOG_exports));
184491
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_mindmap_definition_YA3MSWOX(), mindmap_definition_YA3MSWOX_exports));
184418
184492
  return { id: id21, diagram: diagram210 };
184419
184493
  }, "loader");
184420
184494
  var plugin19 = {
@@ -184482,7 +184556,7 @@ var detector26 = /* @__PURE__ */ __name((txt) => {
184482
184556
  return /^\s*block(-beta)?/.test(txt);
184483
184557
  }, "detector");
184484
184558
  var loader26 = /* @__PURE__ */ __name(async () => {
184485
- const { diagram: diagram210 } = await Promise.resolve().then(() => (init_blockDiagram_OSKFZWR5(), blockDiagram_OSKFZWR5_exports));
184559
+ const { diagram: diagram210 } = await Promise.resolve().then(() => (init_blockDiagram_I7D4REHJ(), blockDiagram_I7D4REHJ_exports));
184486
184560
  return { id: id26, diagram: diagram210 };
184487
184561
  }, "loader");
184488
184562
  var plugin22 = {
@@ -185198,15 +185272,15 @@ var render7 = /* @__PURE__ */ __name(async function(id39, text4, svgContainingEl
185198
185272
  svg2.insertBefore(style1, firstChild);
185199
185273
  try {
185200
185274
  if (false) {
185201
- await profiler.span("draw", () => diag.renderer.draw(text4, id39, "11.17.1", diag));
185275
+ await profiler.span("draw", () => diag.renderer.draw(text4, id39, "11.17.2", diag));
185202
185276
  } else {
185203
- await diag.renderer.draw(text4, id39, "11.17.1", diag);
185277
+ await diag.renderer.draw(text4, id39, "11.17.2", diag);
185204
185278
  }
185205
185279
  } catch (e3) {
185206
185280
  if (config3.suppressErrorRendering) {
185207
185281
  removeTempElements();
185208
185282
  } else {
185209
- errorRenderer_default.draw(text4, id39, "11.17.1");
185283
+ errorRenderer_default.draw(text4, id39, "11.17.2");
185210
185284
  }
185211
185285
  throw e3;
185212
185286
  }
@@ -185983,7 +186057,7 @@ export {
185983
186057
  /*! Bundled license information:
185984
186058
 
185985
186059
  dompurify/dist/purify.es.mjs:
185986
- (*! @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 *)
186060
+ (*! @license DOMPurify 3.4.15 | (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.15/LICENSE *)
185987
186061
 
185988
186062
  lodash-es/lodash.js:
185989
186063
  (**