dsh-coding-sidebar 1.0.2 → 1.0.3

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.
@@ -1167,8 +1167,8 @@ globalThis.__dshChunks__["mermaid"] = (require) => {
1167
1167
  init_methods();
1168
1168
  }));
1169
1169
  //#endregion
1170
- //#region node_modules/.pnpm/dompurify@3.4.14/node_modules/dompurify/dist/purify.es.mjs
1171
- /*! @license DOMPurify 3.4.14 | (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.14/LICENSE */
1170
+ //#region node_modules/.pnpm/dompurify@3.4.15/node_modules/dompurify/dist/purify.es.mjs
1171
+ /*! @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 */
1172
1172
  function _arrayLikeToArray$1(r, a) {
1173
1173
  (null == a || a > r.length) && (a = r.length);
1174
1174
  for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e];
@@ -1350,7 +1350,7 @@ globalThis.__dshChunks__["mermaid"] = (require) => {
1350
1350
  function createDOMPurify() {
1351
1351
  let window = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : getGlobal();
1352
1352
  const DOMPurify = (root) => createDOMPurify(root);
1353
- DOMPurify.version = "3.4.14";
1353
+ DOMPurify.version = "3.4.15";
1354
1354
  DOMPurify.removed = [];
1355
1355
  if (!window || !window.document || window.document.nodeType !== NODE_TYPE.document || !window.Element) {
1356
1356
  DOMPurify.isSupported = false;
@@ -1367,6 +1367,7 @@ globalThis.__dshChunks__["mermaid"] = (require) => {
1367
1367
  const ElementPrototype = Element.prototype;
1368
1368
  const cloneNode = lookupGetter(ElementPrototype, "cloneNode");
1369
1369
  const remove = lookupGetter(ElementPrototype, "remove");
1370
+ const removeAttributeNode = lookupGetter(ElementPrototype, "removeAttributeNode");
1370
1371
  const getNextSibling = lookupGetter(ElementPrototype, "nextSibling");
1371
1372
  const getChildNodes = lookupGetter(ElementPrototype, "childNodes");
1372
1373
  const getParentNode = lookupGetter(ElementPrototype, "parentNode");
@@ -1821,7 +1822,7 @@ globalThis.__dshChunks__["mermaid"] = (require) => {
1821
1822
  */
1822
1823
  const _stripAttributeNode = function _stripAttributeNode(element, attribute, name) {
1823
1824
  try {
1824
- element.removeAttributeNode(attribute);
1825
+ removeAttributeNode(element, attribute);
1825
1826
  } catch (_) {
1826
1827
  try {
1827
1828
  element.removeAttribute(name);
@@ -1894,7 +1895,7 @@ globalThis.__dshChunks__["mermaid"] = (require) => {
1894
1895
  from: element
1895
1896
  });
1896
1897
  try {
1897
- if (attr) element.removeAttributeNode(attr);
1898
+ if (attr) removeAttributeNode(element, attr);
1898
1899
  else element.removeAttribute(name);
1899
1900
  } catch (_) {
1900
1901
  try {
@@ -2140,7 +2141,7 @@ globalThis.__dshChunks__["mermaid"] = (require) => {
2140
2141
  const realTagName = getNodeName ? getNodeName(element) : null;
2141
2142
  if (typeof realTagName !== "string") return false;
2142
2143
  if (transformCaseFunc(realTagName) !== "form") return false;
2143
- return typeof element.nodeName !== "string" || typeof element.textContent !== "string" || typeof element.removeChild !== "function" || element.attributes !== getAttributes(element) || typeof element.removeAttribute !== "function" || typeof element.setAttribute !== "function" || typeof element.namespaceURI !== "string" || typeof element.insertBefore !== "function" || typeof element.hasChildNodes !== "function" || element.nodeType !== getNodeType(element) || element.childNodes !== getChildNodes(element);
2144
+ return typeof element.nodeName !== "string" || typeof element.textContent !== "string" || typeof element.removeChild !== "function" || element.attributes !== getAttributes(element) || typeof element.removeAttribute !== "function" || typeof element.removeAttributeNode !== "function" || typeof element.getAttributeNode !== "function" || typeof element.setAttribute !== "function" || typeof element.namespaceURI !== "string" || typeof element.insertBefore !== "function" || typeof element.hasChildNodes !== "function" || element.nodeType !== getNodeType(element) || element.childNodes !== getChildNodes(element);
2144
2145
  };
2145
2146
  /**
2146
2147
  * Checks whether the given value is a DocumentFragment from any realm.
@@ -2425,24 +2426,38 @@ globalThis.__dshChunks__["mermaid"] = (require) => {
2425
2426
  /**
2426
2427
  * Write a modified attribute value back onto the element. On
2427
2428
  * success, re-probe for clobbering introduced by the new value and
2428
- * remove the element when found; otherwise pop the removal entry
2429
- * recorded by the earlier _removeAttribute (long-standing pairing
2430
- * with the SANITIZE_NAMED_PROPS path - do not "fix" casually). On
2429
+ * remove the element when found; otherwise, when this writeback is the
2430
+ * recreate half of the SANITIZE_NAMED_PROPS remove-and-recreate, pop the
2431
+ * removal entry that path recorded so it does not show as removed. On
2431
2432
  * failure, remove the attribute instead.
2432
2433
  *
2434
+ * Returns true only on a clean write (the value was set and the new value
2435
+ * introduced no clobbering). The caller uses that, together with its own
2436
+ * knowledge of whether this attribute pushed a DOMPurify.removed record, to
2437
+ * decide whether to pop that record. The pop must happen ONLY for the
2438
+ * named-prop remove-and-recreate; popping on any other value change (trim,
2439
+ * template scrubbing, Trusted Types) would consume an unrelated _forceRemove
2440
+ * subtree-cleanup record and let that detached subtree keep a live event
2441
+ * handler through the IN_PLACE neutralization pass (SO-001).
2442
+ *
2433
2443
  * @param currentNode the element carrying the attribute
2434
2444
  * @param name the attribute name as present on the element
2435
2445
  * @param namespaceURI the attribute's namespace, if any
2436
2446
  * @param value the new attribute value
2447
+ * @return true if the value was written without introducing clobbering
2437
2448
  */
2438
2449
  const _setAttributeValue = function _setAttributeValue(currentNode, name, namespaceURI, value) {
2439
2450
  try {
2440
2451
  if (namespaceURI) currentNode.setAttributeNS(namespaceURI, name, value);
2441
2452
  else currentNode.setAttribute(name, value);
2442
- if (_isClobbered(currentNode)) _forceRemove(currentNode);
2443
- else arrayPop(DOMPurify.removed);
2453
+ if (_isClobbered(currentNode)) {
2454
+ _forceRemove(currentNode);
2455
+ return false;
2456
+ }
2457
+ return true;
2444
2458
  } catch (_) {
2445
2459
  _removeAttribute(name, currentNode);
2460
+ return false;
2446
2461
  }
2447
2462
  };
2448
2463
  /**
@@ -2475,6 +2490,7 @@ globalThis.__dshChunks__["mermaid"] = (require) => {
2475
2490
  const lcName = transformCaseFunc(name);
2476
2491
  const initValue = attrValue;
2477
2492
  let value = name === "value" ? initValue : stringTrim(initValue);
2493
+ let recreatedNamedProp = false;
2478
2494
  hookEvent.attrName = lcName;
2479
2495
  hookEvent.attrValue = value;
2480
2496
  hookEvent.keepAttr = true;
@@ -2484,6 +2500,7 @@ globalThis.__dshChunks__["mermaid"] = (require) => {
2484
2500
  if (SANITIZE_NAMED_PROPS && (lcName === "id" || lcName === "name") && stringIndexOf(value, SANITIZE_NAMED_PROPS_PREFIX) !== 0) {
2485
2501
  _removeAttribute(name, currentNode, attr);
2486
2502
  value = SANITIZE_NAMED_PROPS_PREFIX + value;
2503
+ recreatedNamedProp = true;
2487
2504
  }
2488
2505
  if (SAFE_FOR_XML && regExpTest(/((--!?|])>)|<\/(style|script|title|xmp|textarea|noscript|iframe|noembed|noframes)/i, value)) {
2489
2506
  _removeAttribute(name, currentNode, attr);
@@ -2508,7 +2525,9 @@ globalThis.__dshChunks__["mermaid"] = (require) => {
2508
2525
  continue;
2509
2526
  }
2510
2527
  value = _applyTrustedTypesToAttribute(lcTag, lcName, namespaceURI, value);
2511
- if (value !== initValue) _setAttributeValue(currentNode, name, namespaceURI, value);
2528
+ if (value !== initValue) {
2529
+ if (_setAttributeValue(currentNode, name, namespaceURI, value) && recreatedNamedProp) arrayPop(DOMPurify.removed);
2530
+ }
2512
2531
  }
2513
2532
  _executeHooks(hooks.afterSanitizeAttributes, currentNode, null);
2514
2533
  };
@@ -2642,7 +2661,7 @@ globalThis.__dshChunks__["mermaid"] = (require) => {
2642
2661
  if (importedNode.nodeType === NODE_TYPE.element && importedNode.nodeName === "BODY") body = importedNode;
2643
2662
  else if (importedNode.nodeName === "HTML") body = importedNode;
2644
2663
  else body.appendChild(importedNode);
2645
- _sanitizeAttachedShadowRoots(importedNode);
2664
+ _sanitizeAttachedShadowRoots(body);
2646
2665
  } else {
2647
2666
  if (!RETURN_DOM && !SAFE_FOR_TEMPLATES && !WHOLE_DOCUMENT && dirty.indexOf("<") === -1) return trustedTypesPolicy && RETURN_TRUSTED_TYPE ? _createTrustedHTML(dirty) : dirty;
2648
2667
  body = _initDocument(dirty);
@@ -37715,8 +37734,8 @@ globalThis.__dshChunks__["mermaid"] = (require) => {
37715
37734
  //#endregion
37716
37735
  //#region node_modules/.pnpm/d3-interpolate@3.0.1/node_modules/d3-interpolate/src/array.js
37717
37736
  function genericArray(a, b) {
37718
- var nb = b ? b.length : 0, na = a ? Math.min(nb, a.length) : 0, x = new Array(na), c = new Array(nb), i;
37719
- for (i = 0; i < na; ++i) x[i] = value_default(a[i], b[i]);
37737
+ var nb = b ? b.length : 0, na = a ? Math.min(nb, a.length) : 0, x = new Array(na), c = new Array(nb), i = 0;
37738
+ for (; i < na; ++i) x[i] = value_default(a[i], b[i]);
37720
37739
  for (; i < nb; ++i) c[i] = b[i];
37721
37740
  return function(t) {
37722
37741
  for (i = 0; i < na; ++i) c[i] = x[i](t);
@@ -42625,7 +42644,7 @@ globalThis.__dshChunks__["mermaid"] = (require) => {
42625
42644
  }, "getStrokeDashArray");
42626
42645
  }));
42627
42646
  //#endregion
42628
- //#region node_modules/.pnpm/@iconify+utils@3.1.4/node_modules/@iconify/utils/lib/icon/defaults.js
42647
+ //#region node_modules/.pnpm/@iconify+utils@3.1.7/node_modules/@iconify/utils/lib/icon/defaults.js
42629
42648
  var defaultIconDimensions, defaultIconTransformations, defaultIconProps, defaultExtendedIconProps;
42630
42649
  var init_defaults$2 = __esmMin((() => {
42631
42650
  defaultIconDimensions = Object.freeze({
@@ -42650,7 +42669,7 @@ globalThis.__dshChunks__["mermaid"] = (require) => {
42650
42669
  });
42651
42670
  }));
42652
42671
  //#endregion
42653
- //#region node_modules/.pnpm/@iconify+utils@3.1.4/node_modules/@iconify/utils/lib/customisations/defaults.js
42672
+ //#region node_modules/.pnpm/@iconify+utils@3.1.7/node_modules/@iconify/utils/lib/customisations/defaults.js
42654
42673
  var defaultIconSizeCustomisations, defaultIconCustomisations;
42655
42674
  var init_defaults$1 = __esmMin((() => {
42656
42675
  init_defaults$2();
@@ -42664,7 +42683,7 @@ globalThis.__dshChunks__["mermaid"] = (require) => {
42664
42683
  });
42665
42684
  }));
42666
42685
  //#endregion
42667
- //#region node_modules/.pnpm/@iconify+utils@3.1.4/node_modules/@iconify/utils/lib/icon/name.js
42686
+ //#region node_modules/.pnpm/@iconify+utils@3.1.7/node_modules/@iconify/utils/lib/icon/name.js
42668
42687
  var stringToIcon, validateIconName;
42669
42688
  var init_name = __esmMin((() => {
42670
42689
  stringToIcon = (value, validate, allowSimpleName, provider = "") => {
@@ -42710,7 +42729,7 @@ globalThis.__dshChunks__["mermaid"] = (require) => {
42710
42729
  };
42711
42730
  }));
42712
42731
  //#endregion
42713
- //#region node_modules/.pnpm/@iconify+utils@3.1.4/node_modules/@iconify/utils/lib/icon/transformations.js
42732
+ //#region node_modules/.pnpm/@iconify+utils@3.1.7/node_modules/@iconify/utils/lib/icon/transformations.js
42714
42733
  /**
42715
42734
  * Merge transformations
42716
42735
  */
@@ -42724,7 +42743,7 @@ globalThis.__dshChunks__["mermaid"] = (require) => {
42724
42743
  }
42725
42744
  var init_transformations = __esmMin((() => {}));
42726
42745
  //#endregion
42727
- //#region node_modules/.pnpm/@iconify+utils@3.1.4/node_modules/@iconify/utils/lib/icon/merge.js
42746
+ //#region node_modules/.pnpm/@iconify+utils@3.1.7/node_modules/@iconify/utils/lib/icon/merge.js
42728
42747
  /**
42729
42748
  * Merge icon and alias
42730
42749
  *
@@ -42743,7 +42762,7 @@ globalThis.__dshChunks__["mermaid"] = (require) => {
42743
42762
  init_transformations();
42744
42763
  }));
42745
42764
  //#endregion
42746
- //#region node_modules/.pnpm/@iconify+utils@3.1.4/node_modules/@iconify/utils/lib/icon-set/tree.js
42765
+ //#region node_modules/.pnpm/@iconify+utils@3.1.7/node_modules/@iconify/utils/lib/icon-set/tree.js
42747
42766
  /**
42748
42767
  * Resolve icon set icons
42749
42768
  *
@@ -42768,7 +42787,7 @@ globalThis.__dshChunks__["mermaid"] = (require) => {
42768
42787
  }
42769
42788
  var init_tree = __esmMin((() => {}));
42770
42789
  //#endregion
42771
- //#region node_modules/.pnpm/@iconify+utils@3.1.4/node_modules/@iconify/utils/lib/icon-set/get-icon.js
42790
+ //#region node_modules/.pnpm/@iconify+utils@3.1.7/node_modules/@iconify/utils/lib/icon-set/get-icon.js
42772
42791
  /**
42773
42792
  * Get icon data, using prepared aliases tree
42774
42793
  */
@@ -42796,7 +42815,7 @@ globalThis.__dshChunks__["mermaid"] = (require) => {
42796
42815
  init_tree();
42797
42816
  }));
42798
42817
  //#endregion
42799
- //#region node_modules/.pnpm/@iconify+utils@3.1.4/node_modules/@iconify/utils/lib/svg/size.js
42818
+ //#region node_modules/.pnpm/@iconify+utils@3.1.7/node_modules/@iconify/utils/lib/svg/size.js
42800
42819
  function calculateSize(size, ratio, precision) {
42801
42820
  if (ratio === 1) return size;
42802
42821
  precision = precision || 100;
@@ -42824,7 +42843,7 @@ globalThis.__dshChunks__["mermaid"] = (require) => {
42824
42843
  unitsTest = /^-?[0-9.]*[0-9]+[0-9.]*$/g;
42825
42844
  }));
42826
42845
  //#endregion
42827
- //#region node_modules/.pnpm/@iconify+utils@3.1.4/node_modules/@iconify/utils/lib/svg/defs.js
42846
+ //#region node_modules/.pnpm/@iconify+utils@3.1.7/node_modules/@iconify/utils/lib/svg/defs.js
42828
42847
  function splitSVGDefs(content, tag = "defs") {
42829
42848
  let defs = "";
42830
42849
  const index = content.indexOf("<" + tag);
@@ -42857,7 +42876,7 @@ globalThis.__dshChunks__["mermaid"] = (require) => {
42857
42876
  }
42858
42877
  var init_defs = __esmMin((() => {}));
42859
42878
  //#endregion
42860
- //#region node_modules/.pnpm/@iconify+utils@3.1.4/node_modules/@iconify/utils/lib/svg/build.js
42879
+ //#region node_modules/.pnpm/@iconify+utils@3.1.7/node_modules/@iconify/utils/lib/svg/build.js
42861
42880
  /**
42862
42881
  * Get SVG attributes and content from icon + customisations
42863
42882
  *
@@ -42889,13 +42908,14 @@ globalThis.__dshChunks__["mermaid"] = (require) => {
42889
42908
  const hFlip = props.hFlip;
42890
42909
  const vFlip = props.vFlip;
42891
42910
  let rotation = props.rotate;
42892
- if (hFlip) if (vFlip) rotation += 2;
42893
- else {
42894
- transformations.push("translate(" + (box.width + box.left).toString() + " " + (0 - box.top).toString() + ")");
42895
- transformations.push("scale(-1 1)");
42896
- box.top = box.left = 0;
42897
- }
42898
- else if (vFlip) {
42911
+ if (hFlip) {
42912
+ if (vFlip) rotation += 2;
42913
+ else {
42914
+ transformations.push("translate(" + (box.width + box.left).toString() + " " + (0 - box.top).toString() + ")");
42915
+ transformations.push("scale(-1 1)");
42916
+ box.top = box.left = 0;
42917
+ }
42918
+ } else if (vFlip) {
42899
42919
  transformations.push("translate(" + (0 - box.left).toString() + " " + (box.height + box.top).toString() + ")");
42900
42920
  transformations.push("scale(1 -1)");
42901
42921
  box.top = box.left = 0;
@@ -42970,7 +42990,7 @@ globalThis.__dshChunks__["mermaid"] = (require) => {
42970
42990
  isUnsetKeyword = (value) => value === "unset" || value === "undefined" || value === "none";
42971
42991
  }));
42972
42992
  //#endregion
42973
- //#region node_modules/.pnpm/@iconify+utils@3.1.4/node_modules/@iconify/utils/lib/svg/id.js
42993
+ //#region node_modules/.pnpm/@iconify+utils@3.1.7/node_modules/@iconify/utils/lib/svg/id.js
42974
42994
  /**
42975
42995
  * Get unique new ID
42976
42996
  */
@@ -43003,7 +43023,7 @@ globalThis.__dshChunks__["mermaid"] = (require) => {
43003
43023
  counters = /* @__PURE__ */ new Map();
43004
43024
  }));
43005
43025
  //#endregion
43006
- //#region node_modules/.pnpm/@iconify+utils@3.1.4/node_modules/@iconify/utils/lib/svg/html.js
43026
+ //#region node_modules/.pnpm/@iconify+utils@3.1.7/node_modules/@iconify/utils/lib/svg/html.js
43007
43027
  /**
43008
43028
  * Generate <svg>
43009
43029
  */
@@ -43014,7 +43034,7 @@ globalThis.__dshChunks__["mermaid"] = (require) => {
43014
43034
  }
43015
43035
  var init_html = __esmMin((() => {}));
43016
43036
  //#endregion
43017
- //#region node_modules/.pnpm/@iconify+utils@3.1.4/node_modules/@iconify/utils/lib/index.js
43037
+ //#region node_modules/.pnpm/@iconify+utils@3.1.7/node_modules/@iconify/utils/lib/index.js
43018
43038
  var init_lib = __esmMin((() => {
43019
43039
  init_name();
43020
43040
  init_get_icon();
@@ -45454,8 +45474,8 @@ globalThis.__dshChunks__["mermaid"] = (require) => {
45454
45474
  `).split(`
45455
45475
  `), r = "", i = "", s = [];
45456
45476
  for (; n.length > 0;) {
45457
- let a = !1, o = [], p;
45458
- for (p = 0; p < n.length; p++) if (this.rules.other.blockquoteStart.test(n[p])) o.push(n[p]), a = !0;
45477
+ let a = !1, o = [], p = 0;
45478
+ for (; p < n.length; p++) if (this.rules.other.blockquoteStart.test(n[p])) o.push(n[p]), a = !0;
45459
45479
  else if (!a) o.push(n[p]);
45460
45480
  else break;
45461
45481
  n = n.slice(p);
@@ -66431,8 +66451,8 @@ raf(cb) {
66431
66451
  */
66432
66452
  /** @type {Attrs | undefined} */
66433
66453
  var attrs = void 0;
66434
- var dummy, i;
66435
- for (i = 0, ++vRank; vRank < wRank; ++i, ++vRank) {
66454
+ var dummy, i = 0;
66455
+ for (++vRank; vRank < wRank; ++i, ++vRank) {
66436
66456
  edgeLabel.points = [];
66437
66457
  attrs = {
66438
66458
  width: 0,
@@ -75661,7 +75681,7 @@ EPSILON: 1e-6 };
75661
75681
  });
75662
75682
  }));
75663
75683
  //#endregion
75664
- //#region node_modules/.pnpm/cytoscape@3.34.2/node_modules/cytoscape/dist/cytoscape.esm.mjs
75684
+ //#region node_modules/.pnpm/cytoscape@3.34.3/node_modules/cytoscape/dist/cytoscape.esm.mjs
75665
75685
  /**
75666
75686
  * Copyright (c) 2016-2026, The Cytoscape Consortium.
75667
75687
  *
@@ -83563,8 +83583,8 @@ EPSILON: 1e-6 };
83563
83583
  }
83564
83584
  var e = new Array(n * opts.minIterations);
83565
83585
  for (var _i7 = 0; _i7 < e.length; _i7++) e[_i7] = 0;
83566
- var iter;
83567
- for (iter = 0; iter < opts.maxIterations; iter++) {
83586
+ var iter = 0;
83587
+ for (; iter < opts.maxIterations; iter++) {
83568
83588
  for (var _i8 = 0; _i8 < n; _i8++) {
83569
83589
  var max = -Infinity, max2 = -Infinity, maxI = -1, AS = 0;
83570
83590
  for (var _j = 0; _j < n; _j++) {
@@ -84585,8 +84605,8 @@ EPSILON: 1e-6 };
84585
84605
  tokens.value = tokens.string + "|" + tokens.number;
84586
84606
  tokens.id = tokens.variable;
84587
84607
  (function() {
84588
- var ops = tokens.comparatorOp.split("|"), op, i;
84589
- for (i = 0; i < ops.length; i++) {
84608
+ var ops = tokens.comparatorOp.split("|"), op, i = 0;
84609
+ for (; i < ops.length; i++) {
84590
84610
  op = ops[i];
84591
84611
  tokens.comparatorOp += "|@" + op;
84592
84612
  }
@@ -89819,8 +89839,8 @@ EPSILON: 1e-6 };
89819
89839
  styfn$5.getNonDefaultPropertiesHash = function(ele, propNames, seed) {
89820
89840
  var hash = seed.slice();
89821
89841
  var name, val, strVal, chVal;
89822
- var i, j;
89823
- for (i = 0; i < propNames.length; i++) {
89842
+ var i = 0, j;
89843
+ for (; i < propNames.length; i++) {
89824
89844
  name = propNames[i];
89825
89845
  val = ele.pstyle(name, false);
89826
89846
  if (val == null) continue;
@@ -103502,7 +103522,7 @@ EPSILON: 1e-6 };
103502
103522
  }
103503
103523
  return style;
103504
103524
  };
103505
- version = "3.34.2";
103525
+ version = "3.34.3";
103506
103526
  cytoscape$1 = function cytoscape(options) {
103507
103527
  if (options === void 0) options = {};
103508
103528
  if (plainObject(options)) return new Core(options);
@@ -106713,8 +106733,8 @@ EPSILON: 1e-6 };
106713
106733
  var graph;
106714
106734
  var graphs = this.graphManager.getGraphs();
106715
106735
  var size = graphs.length;
106716
- var i;
106717
- for (i = 0; i < size; i++) {
106736
+ var i = 0;
106737
+ for (; i < size; i++) {
106718
106738
  graph = graphs[i];
106719
106739
  graph.updateConnected();
106720
106740
  if (!graph.isConnected) nodeList = nodeList.concat(graph.getNodes());
@@ -106725,8 +106745,8 @@ EPSILON: 1e-6 };
106725
106745
  var edges = [];
106726
106746
  edges = edges.concat(this.graphManager.getAllEdges());
106727
106747
  var visited = /* @__PURE__ */ new Set();
106728
- var i;
106729
- for (i = 0; i < edges.length; i++) {
106748
+ var i = 0;
106749
+ for (; i < edges.length; i++) {
106730
106750
  var edge = edges[i];
106731
106751
  if (!visited.has(edge)) {
106732
106752
  var source = edge.getSource();
@@ -106742,8 +106762,8 @@ EPSILON: 1e-6 };
106742
106762
  edgeList = edgeList.concat(target.getEdgeListToNode(source));
106743
106763
  if (!visited.has(edgeList[0])) {
106744
106764
  if (edgeList.length > 1) {
106745
- var k;
106746
- for (k = 0; k < edgeList.length; k++) {
106765
+ var k = 0;
106766
+ for (; k < edgeList.length; k++) {
106747
106767
  var multiEdge = edgeList[k];
106748
106768
  multiEdge.getBendpoints().push(new PointD());
106749
106769
  this.createDummyNodesForBendpoints(multiEdge);
@@ -107261,7 +107281,7 @@ EPSILON: 1e-6 };
107261
107281
  });
107262
107282
  }));
107263
107283
  //#endregion
107264
- //#region node_modules/.pnpm/cytoscape-cose-bilkent@4.1.0_cytoscape@3.34.2/node_modules/cytoscape-cose-bilkent/cytoscape-cose-bilkent.js
107284
+ //#region node_modules/.pnpm/cytoscape-cose-bilkent@4.1.0_cytoscape@3.34.3/node_modules/cytoscape-cose-bilkent/cytoscape-cose-bilkent.js
107265
107285
  var require_cytoscape_cose_bilkent = /* @__PURE__ */ __commonJSMin(((exports, module) => {
107266
107286
  (function webpackUniversalModuleDefinition(root, factory) {
107267
107287
  if (typeof exports === "object" && typeof module === "object") module.exports = factory(require_cose_base$1());
@@ -148949,8 +148969,8 @@ ${content}`;
148949
148969
  var s = this.$ms, n = m(t);
148950
148970
  return "milliseconds" === n ? s %= 1e3 : s = "weeks" === n ? $(s / h[n]) : this.$d[n], s || 0;
148951
148971
  }, y.add = function(t, s, n) {
148952
- var i;
148953
- return i = s ? t * h[m(s)] : c(t) ? t.$ms : f(t, this).$ms, f(this.$ms + i * (n ? -1 : 1), this);
148972
+ var i = s ? t * h[m(s)] : c(t) ? t.$ms : f(t, this).$ms;
148973
+ return f(this.$ms + i * (n ? -1 : 1), this);
148954
148974
  }, y.subtract = function(t, s) {
148955
148975
  return this.add(t, s, !0);
148956
148976
  }, y.locale = function(t) {
@@ -176726,6 +176746,9 @@ g.stateGroup line {
176726
176746
  }
176727
176747
  return value;
176728
176748
  }
176749
+ function keyof(value) {
176750
+ return value !== null && typeof value === "object" ? value.valueOf() : value;
176751
+ }
176729
176752
  function identity(x) {
176730
176753
  return x;
176731
176754
  }
@@ -186874,8 +186897,8 @@ ${prefix}${Math.round(value * 100) / 100}${suffix}`;
186874
186897
  }
186875
186898
  if (CoSEConstants.RELAX_MOVEMENT_ON_CONSTRAINTS) {
186876
186899
  this.shuffle = function(array) {
186877
- var j, x, i;
186878
- for (i = array.length - 1; i >= 2 * array.length / 3; i--) {
186900
+ var j, x, i = array.length - 1;
186901
+ for (; i >= 2 * array.length / 3; i--) {
186879
186902
  j = Math.floor(Math.random() * (i + 1));
186880
186903
  x = array[i];
186881
186904
  array[i] = array[j];
@@ -187144,8 +187167,8 @@ ${prefix}${Math.round(value * 100) / 100}${suffix}`;
187144
187167
  var graph;
187145
187168
  var graphs = this.graphManager.getGraphs();
187146
187169
  var size = graphs.length;
187147
- var i;
187148
- for (i = 0; i < size; i++) {
187170
+ var i = 0;
187171
+ for (; i < size; i++) {
187149
187172
  graph = graphs[i];
187150
187173
  graph.updateConnected();
187151
187174
  if (!graph.isConnected) nodeList = nodeList.concat(graph.getNodes());
@@ -187156,8 +187179,8 @@ ${prefix}${Math.round(value * 100) / 100}${suffix}`;
187156
187179
  var edges = [];
187157
187180
  edges = edges.concat(this.graphManager.getAllEdges());
187158
187181
  var visited = /* @__PURE__ */ new Set();
187159
- var i;
187160
- for (i = 0; i < edges.length; i++) {
187182
+ var i = 0;
187183
+ for (; i < edges.length; i++) {
187161
187184
  var edge = edges[i];
187162
187185
  if (!visited.has(edge)) {
187163
187186
  var source = edge.getSource();
@@ -187173,8 +187196,8 @@ ${prefix}${Math.round(value * 100) / 100}${suffix}`;
187173
187196
  edgeList = edgeList.concat(target.getEdgeListToNode(source));
187174
187197
  if (!visited.has(edgeList[0])) {
187175
187198
  if (edgeList.length > 1) {
187176
- var k;
187177
- for (k = 0; k < edgeList.length; k++) {
187199
+ var k = 0;
187200
+ for (; k < edgeList.length; k++) {
187178
187201
  var multiEdge = edgeList[k];
187179
187202
  multiEdge.getBendpoints().push(new PointD());
187180
187203
  this.createDummyNodesForBendpoints(multiEdge);
@@ -188644,7 +188667,7 @@ ${prefix}${Math.round(value * 100) / 100}${suffix}`;
188644
188667
  });
188645
188668
  }));
188646
188669
  //#endregion
188647
- //#region node_modules/.pnpm/cytoscape-fcose@2.2.0_cytoscape@3.34.2/node_modules/cytoscape-fcose/cytoscape-fcose.js
188670
+ //#region node_modules/.pnpm/cytoscape-fcose@2.2.0_cytoscape@3.34.3/node_modules/cytoscape-fcose/cytoscape-fcose.js
188648
188671
  var require_cytoscape_fcose = /* @__PURE__ */ __commonJSMin(((exports, module) => {
188649
188672
  (function webpackUniversalModuleDefinition(root, factory) {
188650
188673
  if (typeof exports === "object" && typeof module === "object") module.exports = factory(require_cose_base());
@@ -200120,241 +200143,241 @@ ${prefix}${Math.round(value * 100) / 100}${suffix}`;
200120
200143
  document.head.appendChild(tag);
200121
200144
  }
200122
200145
  var sidebar_module_css_default = {
200123
- "uploadOverlayStatus": "S5HVoW_uploadOverlayStatus",
200124
- "toggleCluster": "S5HVoW_toggleCluster",
200125
- "editorTreePanelFull": "S5HVoW_editorTreePanelFull",
200126
- "tocItemText": "S5HVoW_tocItemText",
200127
- "editorTitle": "S5HVoW_editorTitle",
200128
- "editorTreeSearch": "S5HVoW_editorTreeSearch",
200129
- "tocBar": "S5HVoW_tocBar",
200130
- "editorPptxButton": "S5HVoW_editorPptxButton",
200131
- "mermaidBody": "S5HVoW_mermaidBody",
200132
- "mermaidModalButton": "S5HVoW_mermaidModalButton",
200133
- "explorer": "S5HVoW_explorer",
200134
- "editorImageWrap": "S5HVoW_editorImageWrap",
200135
- "editorStatusError": "S5HVoW_editorStatusError",
200136
- "editorError": "S5HVoW_editorError",
200146
+ "editorBanner": "S5HVoW_editorBanner",
200147
+ "editorPdfToolbar": "S5HVoW_editorPdfToolbar",
200148
+ "terminalWrap": "S5HVoW_terminalWrap",
200149
+ "panelResizeActive": "S5HVoW_panelResizeActive",
200150
+ "editorPdfFrameBlocked": "S5HVoW_editorPdfFrameBlocked",
200151
+ "gitLink": "S5HVoW_gitLink",
200152
+ "gitDiffFilePath": "S5HVoW_gitDiffFilePath",
200153
+ "floatClose": "S5HVoW_floatClose",
200137
200154
  "gitDiffCtx": "S5HVoW_gitDiffCtx",
200138
- "terminalBanner": "S5HVoW_terminalBanner",
200139
- "floatWindow": "S5HVoW_floatWindow",
200140
- "tabBadge": "S5HVoW_tabBadge",
200141
- "iconButton": "S5HVoW_iconButton",
200142
- "uploadDropChatCard": "S5HVoW_uploadDropChatCard",
200143
- "uploadOverlay": "S5HVoW_uploadOverlay",
200144
- "gitDiffExpand": "S5HVoW_gitDiffExpand",
200145
- "editorBody": "S5HVoW_editorBody",
200146
- "gitLogRef": "S5HVoW_gitLogRef",
200155
+ "explorerRow": "S5HVoW_explorerRow",
200156
+ "terminalBannerUrl": "S5HVoW_terminalBannerUrl",
200157
+ "browserBlocked": "S5HVoW_browserBlocked",
200158
+ "editorTreeResize": "S5HVoW_editorTreeResize",
200159
+ "splitRow": "S5HVoW_splitRow",
200160
+ "panelResize": "S5HVoW_panelResize",
200161
+ "gitCommit": "S5HVoW_gitCommit",
200162
+ "producedLabel": "S5HVoW_producedLabel",
200163
+ "uploadDropChatHint": "S5HVoW_uploadDropChatHint",
200147
200164
  "uploadDropZone": "S5HVoW_uploadDropZone",
200148
- "gitLogLine1": "S5HVoW_gitLogLine1",
200149
- "gitBadge": "S5HVoW_gitBadge",
200150
- "tocItemLevel": "S5HVoW_tocItemLevel",
200165
+ "explorerCopied": "S5HVoW_explorerCopied",
200166
+ "tocButton": "S5HVoW_tocButton",
200167
+ "tabList": "S5HVoW_tabList",
200168
+ "boundaryError": "S5HVoW_boundaryError",
200169
+ "gitDiffNum": "S5HVoW_gitDiffNum",
200170
+ "panelBody": "S5HVoW_panelBody",
200151
200171
  "paneEmptyCards": "S5HVoW_paneEmptyCards",
200152
- "editorMain": "S5HVoW_editorMain",
200153
- "editorPdfFrameBlocked": "S5HVoW_editorPdfFrameBlocked",
200154
- "gitCommitButton": "S5HVoW_gitCommitButton",
200155
- "explorerEmpty": "S5HVoW_explorerEmpty",
200156
- "dropLeft": "S5HVoW_dropLeft",
200157
- "dropUp": "S5HVoW_dropUp",
200158
- "browserMessage": "S5HVoW_browserMessage",
200159
- "mermaidModalToolbar": "S5HVoW_mermaidModalToolbar",
200160
- "sandboxStatusText": "S5HVoW_sandboxStatusText",
200161
- "editorPdf": "S5HVoW_editorPdf",
200162
- "gitLogMeta": "S5HVoW_gitLogMeta",
200172
+ "editorPptxButton": "S5HVoW_editorPptxButton",
200173
+ "floatContent": "S5HVoW_floatContent",
200163
200174
  "uploadDropZoneText": "S5HVoW_uploadDropZoneText",
200175
+ "editorHtmlBlock": "S5HVoW_editorHtmlBlock",
200176
+ "dropDown": "S5HVoW_dropDown",
200177
+ "tocItem": "S5HVoW_tocItem",
200178
+ "gitEmpty": "S5HVoW_gitEmpty",
200179
+ "dropUp": "S5HVoW_dropUp",
200180
+ "editorTitle": "S5HVoW_editorTitle",
200181
+ "explorerDir": "S5HVoW_explorerDir",
200182
+ "editorMd": "S5HVoW_editorMd",
200183
+ "editorBinary": "S5HVoW_editorBinary",
200184
+ "floatTitle": "S5HVoW_floatTitle",
200185
+ "gitName": "S5HVoW_gitName",
200186
+ "workbench": "S5HVoW_workbench",
200187
+ "editorModeToggle": "S5HVoW_editorModeToggle",
200188
+ "gitRowSelected": "S5HVoW_gitRowSelected",
200189
+ "terminalDepsCommandRow": "S5HVoW_terminalDepsCommandRow",
200190
+ "editorModeButton": "S5HVoW_editorModeButton",
200191
+ "gitDiffExpand": "S5HVoW_gitDiffExpand",
200164
200192
  "editor": "S5HVoW_editor",
200165
- "editorModeActive": "S5HVoW_editorModeActive",
200166
- "mermaidModalStage": "S5HVoW_mermaidModalStage",
200167
- "editorPdfDragShield": "S5HVoW_editorPdfDragShield",
200168
- "explorerHidden": "S5HVoW_explorerHidden",
200169
- "dsh-row-in": "S5HVoW_dsh-row-in",
200170
- "browserBlockedTitle": "S5HVoW_browserBlockedTitle",
200171
- "git": "S5HVoW_git",
200193
+ "dividerRow": "S5HVoW_dividerRow",
200172
200194
  "explorerError": "S5HVoW_explorerError",
200173
- "browserStart": "S5HVoW_browserStart",
200174
- "uploadOverlayCancel": "S5HVoW_uploadOverlayCancel",
200195
+ "paneTab": "S5HVoW_paneTab",
200196
+ "tabBoundaryError": "S5HVoW_tabBoundaryError",
200175
200197
  "producedRow": "S5HVoW_producedRow",
200176
- "floatHeader": "S5HVoW_floatHeader",
200177
- "openWithPin": "S5HVoW_openWithPin",
200178
- "dividerCol": "S5HVoW_dividerCol",
200179
- "terminalDepsCommandRow": "S5HVoW_terminalDepsCommandRow",
200180
- "gitDiffDel": "S5HVoW_gitDiffDel",
200181
- "mermaidModal": "S5HVoW_mermaidModal",
200182
- "editorTreeToggleActive": "S5HVoW_editorTreeToggleActive",
200183
- "editorSearchInput": "S5HVoW_editorSearchInput",
200184
- "editorPdfStage": "S5HVoW_editorPdfStage",
200185
- "split": "S5HVoW_split",
200186
- "gitCommit": "S5HVoW_gitCommit",
200187
- "editorPdfDragShieldActive": "S5HVoW_editorPdfDragShieldActive",
200188
- "gitEmpty": "S5HVoW_gitEmpty",
200189
- "divider": "S5HVoW_divider",
200190
- "producedMore": "S5HVoW_producedMore",
200191
- "uploadOverlayProgress": "S5HVoW_uploadOverlayProgress",
200192
- "uploadOverlayProgressFill": "S5HVoW_uploadOverlayProgressFill",
200193
- "gitWorktreeLabel": "S5HVoW_gitWorktreeLabel",
200194
- "browserFrame": "S5HVoW_browserFrame",
200195
- "gitLogLine2": "S5HVoW_gitLogLine2",
200196
- "explorerHeader": "S5HVoW_explorerHeader",
200197
- "gitDiffMetaText": "S5HVoW_gitDiffMetaText",
200198
- "gitName": "S5HVoW_gitName",
200198
+ "explorerName": "S5HVoW_explorerName",
200199
+ "editorStatusError": "S5HVoW_editorStatusError",
200200
+ "sandboxStatusText": "S5HVoW_sandboxStatusText",
200199
200201
  "explorerRoot": "S5HVoW_explorerRoot",
200200
- "explorerBody": "S5HVoW_explorerBody",
200201
- "gitWorktreeRow": "S5HVoW_gitWorktreeRow",
200202
- "openWithChevron": "S5HVoW_openWithChevron",
200203
- "gitDiffHunk": "S5HVoW_gitDiffHunk",
200204
- "explorerBroken": "S5HVoW_explorerBroken",
200205
- "dirtyDot": "S5HVoW_dirtyDot",
200206
- "terminalDepsHint": "S5HVoW_terminalDepsHint",
200207
- "tabActive": "S5HVoW_tabActive",
200208
- "toggleButton": "S5HVoW_toggleButton",
200209
- "gitDiffHunkHeader": "S5HVoW_gitDiffHunkHeader",
200210
- "sandboxAction": "S5HVoW_sandboxAction",
200211
- "editorPathInput": "S5HVoW_editorPathInput",
200212
- "editorBinaryNotice": "S5HVoW_editorBinaryNotice",
200213
- "mermaidCopy": "S5HVoW_mermaidCopy",
200214
- "gitDiffNum": "S5HVoW_gitDiffNum",
200215
- "splitCol": "S5HVoW_splitCol",
200216
- "mermaidMarkdown": "S5HVoW_mermaidMarkdown",
200217
- "tabTitle": "S5HVoW_tabTitle",
200202
+ "browserBlockedActions": "S5HVoW_browserBlockedActions",
200218
200203
  "selectionPopup": "S5HVoW_selectionPopup",
200219
- "panelBody": "S5HVoW_panelBody",
200220
- "panel": "S5HVoW_panel",
200221
- "floatDropHintLabel": "S5HVoW_floatDropHintLabel",
200222
- "gitLogRow": "S5HVoW_gitLogRow",
200223
- "terminalWrap": "S5HVoW_terminalWrap",
200204
+ "uploadOverlayProgress": "S5HVoW_uploadOverlayProgress",
200205
+ "terminalDepsBanner": "S5HVoW_terminalDepsBanner",
200206
+ "sandboxStatus": "S5HVoW_sandboxStatus",
200224
200207
  "mermaidCode": "S5HVoW_mermaidCode",
200225
- "editorHeader": "S5HVoW_editorHeader",
200226
- "panelResizeActive": "S5HVoW_panelResizeActive",
200227
- "floatContent": "S5HVoW_floatContent",
200228
- "editorHtml": "S5HVoW_editorHtml",
200229
200208
  "editorPdfFrame": "S5HVoW_editorPdfFrame",
200230
- "gitSectionHeader": "S5HVoW_gitSectionHeader",
200231
- "gitCommitInput": "S5HVoW_gitCommitInput",
200209
+ "gitError": "S5HVoW_gitError",
200210
+ "gitDiffHunk": "S5HVoW_gitDiffHunk",
200211
+ "editorHtml": "S5HVoW_editorHtml",
200212
+ "dropOverlay": "S5HVoW_dropOverlay",
200213
+ "sandboxDot": "S5HVoW_sandboxDot",
200214
+ "tabBarPlus": "S5HVoW_tabBarPlus",
200215
+ "sandboxAction": "S5HVoW_sandboxAction",
200216
+ "gitDiffTab": "S5HVoW_gitDiffTab",
200217
+ "explorerRowRevealed": "S5HVoW_explorerRowRevealed",
200218
+ "mermaidMarkdown": "S5HVoW_mermaidMarkdown",
200219
+ "gitPlaceholder": "S5HVoW_gitPlaceholder",
200232
200220
  "browser": "S5HVoW_browser",
200233
- "editorMd": "S5HVoW_editorMd",
200234
- "gitDiffCode": "S5HVoW_gitDiffCode",
200221
+ "gitDiffDel": "S5HVoW_gitDiffDel",
200222
+ "explorerBody": "S5HVoW_explorerBody",
200235
200223
  "gitLogHash": "S5HVoW_gitLogHash",
200236
- "dsh-toc-flash": "S5HVoW_dsh-toc-flash",
200237
- "terminalDepsBanner": "S5HVoW_terminalDepsBanner",
200238
- "gitBranchSelect": "S5HVoW_gitBranchSelect",
200239
- "gitRowSelected": "S5HVoW_gitRowSelected",
200240
- "uploadDropChatHint": "S5HVoW_uploadDropChatHint",
200241
- "gitDiffTabHeader": "S5HVoW_gitDiffTabHeader",
200242
- "openWithPinActive": "S5HVoW_openWithPinActive",
200243
- "browserBlockedButton": "S5HVoW_browserBlockedButton",
200244
- "boundaryError": "S5HVoW_boundaryError",
200245
- "explorerRow": "S5HVoW_explorerRow",
200246
200224
  "editorCm": "S5HVoW_editorCm",
200247
- "gitRowMain": "S5HVoW_gitRowMain",
200248
- "gitPlaceholder": "S5HVoW_gitPlaceholder",
200249
- "sandboxStatusOff": "S5HVoW_sandboxStatusOff",
200250
- "floatClose": "S5HVoW_floatClose",
200251
- "dropOverlay": "S5HVoW_dropOverlay",
200252
- "tabList": "S5HVoW_tabList",
200253
- "tabBarDrop": "S5HVoW_tabBarDrop",
200225
+ "tabClose": "S5HVoW_tabClose",
200226
+ "toggleCluster": "S5HVoW_toggleCluster",
200227
+ "gitLogRow": "S5HVoW_gitLogRow",
200228
+ "editorPlaceholder": "S5HVoW_editorPlaceholder",
200229
+ "editorError": "S5HVoW_editorError",
200230
+ "uploadOverlayStatus": "S5HVoW_uploadOverlayStatus",
200231
+ "browserInput": "S5HVoW_browserInput",
200232
+ "mermaidModalStage": "S5HVoW_mermaidModalStage",
200233
+ "editorPdfDragShield": "S5HVoW_editorPdfDragShield",
200234
+ "openWithName": "S5HVoW_openWithName",
200235
+ "dropRight": "S5HVoW_dropRight",
200236
+ "gitDiffHunkHeader": "S5HVoW_gitDiffHunkHeader",
200237
+ "uploadOverlayCancel": "S5HVoW_uploadOverlayCancel",
200254
200238
  "editorSearchResult": "S5HVoW_editorSearchResult",
200255
- "gitDiffFileOld": "S5HVoW_gitDiffFileOld",
200239
+ "openWithPin": "S5HVoW_openWithPin",
200240
+ "mermaidBody": "S5HVoW_mermaidBody",
200241
+ "dsh-row-in": "S5HVoW_dsh-row-in",
200242
+ "terminal": "S5HVoW_terminal",
200243
+ "floatDropHint": "S5HVoW_floatDropHint",
200244
+ "split": "S5HVoW_split",
200245
+ "dropCenter": "S5HVoW_dropCenter",
200246
+ "editorTreeSearch": "S5HVoW_editorTreeSearch",
200247
+ "gitDiffLine": "S5HVoW_gitDiffLine",
200248
+ "tocItemText": "S5HVoW_tocItemText",
200249
+ "gitRow": "S5HVoW_gitRow",
200250
+ "dividerCol": "S5HVoW_dividerCol",
200251
+ "explorerSymlink": "S5HVoW_explorerSymlink",
200252
+ "terminalDepsActions": "S5HVoW_terminalDepsActions",
200253
+ "mermaidModalButton": "S5HVoW_mermaidModalButton",
200254
+ "browserMessage": "S5HVoW_browserMessage",
200255
+ "mermaidWrap": "S5HVoW_mermaidWrap",
200256
+ "tabBadge": "S5HVoW_tabBadge",
200257
+ "browserBlockedButton": "S5HVoW_browserBlockedButton",
200258
+ "editorMain": "S5HVoW_editorMain",
200259
+ "floatHeader": "S5HVoW_floatHeader",
200260
+ "gitCommitButton": "S5HVoW_gitCommitButton",
200256
200261
  "uploadOverlayTitle": "S5HVoW_uploadOverlayTitle",
200262
+ "gitWorktreeRow": "S5HVoW_gitWorktreeRow",
200263
+ "uploadDropZonePill": "S5HVoW_uploadDropZonePill",
200257
200264
  "editorStatus": "S5HVoW_editorStatus",
200258
- "editorPdfToolbar": "S5HVoW_editorPdfToolbar",
200259
- "editorTreeDock": "S5HVoW_editorTreeDock",
200260
- "sandboxStatusOn": "S5HVoW_sandboxStatusOn",
200261
- "tabClose": "S5HVoW_tabClose",
200262
- "explorerRowDropTarget": "S5HVoW_explorerRowDropTarget",
200263
- "browserBlocked": "S5HVoW_browserBlocked",
200264
- "mermaidHeader": "S5HVoW_mermaidHeader",
200265
- "gitLink": "S5HVoW_gitLink",
200266
- "orphanedType": "S5HVoW_orphanedType",
200267
- "explorerSymlink": "S5HVoW_explorerSymlink",
200268
- "gitError": "S5HVoW_gitError",
200269
- "tab": "S5HVoW_tab",
200265
+ "gitLogSubject": "S5HVoW_gitLogSubject",
200266
+ "splitChild": "S5HVoW_splitChild",
200267
+ "explorerHeader": "S5HVoW_explorerHeader",
200268
+ "mermaidModal": "S5HVoW_mermaidModal",
200269
+ "browserBlockedDesc": "S5HVoW_browserBlockedDesc",
200270
+ "floatWindowDragging": "S5HVoW_floatWindowDragging",
200271
+ "editorImageWrap": "S5HVoW_editorImageWrap",
200270
200272
  "gitHeader": "S5HVoW_gitHeader",
200271
- "editorBinary": "S5HVoW_editorBinary",
200272
- "pinnedTab": "S5HVoW_pinnedTab",
200273
+ "editorDownloadLink": "S5HVoW_editorDownloadLink",
200274
+ "mermaidCopy": "S5HVoW_mermaidCopy",
200275
+ "gitDiffFileChevronExpanded": "S5HVoW_gitDiffFileChevronExpanded",
200273
200276
  "mermaidModalHint": "S5HVoW_mermaidModalHint",
200277
+ "tabBar": "S5HVoW_tabBar",
200278
+ "uploadDropHero": "S5HVoW_uploadDropHero",
200279
+ "uploadDropChatCard": "S5HVoW_uploadDropChatCard",
200280
+ "editorBody": "S5HVoW_editorBody",
200281
+ "sandboxStatusOff": "S5HVoW_sandboxStatusOff",
200282
+ "pane": "S5HVoW_pane",
200283
+ "mermaidInfo": "S5HVoW_mermaidInfo",
200284
+ "gitDiffMetaText": "S5HVoW_gitDiffMetaText",
200285
+ "dropLeft": "S5HVoW_dropLeft",
200286
+ "openWithChevron": "S5HVoW_openWithChevron",
200287
+ "gitDiff": "S5HVoW_gitDiff",
200288
+ "explorerEmpty": "S5HVoW_explorerEmpty",
200289
+ "dividerActive": "S5HVoW_dividerActive",
200290
+ "paneTabHidden": "S5HVoW_paneTabHidden",
200291
+ "gitLogMore": "S5HVoW_gitLogMore",
200292
+ "gitLogLine2": "S5HVoW_gitLogLine2",
200293
+ "panel": "S5HVoW_panel",
200294
+ "splitCol": "S5HVoW_splitCol",
200295
+ "paneCard": "S5HVoW_paneCard",
200296
+ "floatWindow": "S5HVoW_floatWindow",
200297
+ "gitDiffFileTag": "S5HVoW_gitDiffFileTag",
200298
+ "gitDiffMeta": "S5HVoW_gitDiffMeta",
200299
+ "editorPathInput": "S5HVoW_editorPathInput",
200300
+ "mermaidModalToolbar": "S5HVoW_mermaidModalToolbar",
200301
+ "gitDiffFile": "S5HVoW_gitDiffFile",
200302
+ "tocItemLevel": "S5HVoW_tocItemLevel",
200274
200303
  "explorerRef": "S5HVoW_explorerRef",
200275
- "editorBanner": "S5HVoW_editorBanner",
200304
+ "editorSearchInput": "S5HVoW_editorSearchInput",
200305
+ "git": "S5HVoW_git",
200306
+ "explorerRowDropTarget": "S5HVoW_explorerRowDropTarget",
200307
+ "explorer": "S5HVoW_explorer",
200308
+ "gitDiffFileChevron": "S5HVoW_gitDiffFileChevron",
200309
+ "terminalBanner": "S5HVoW_terminalBanner",
200310
+ "gitDiffFileOld": "S5HVoW_gitDiffFileOld",
200311
+ "floatResize": "S5HVoW_floatResize",
200312
+ "editorPdf": "S5HVoW_editorPdf",
200313
+ "dirtyDot": "S5HVoW_dirtyDot",
200314
+ "dsh-toc-flash": "S5HVoW_dsh-toc-flash",
200315
+ "orphanedType": "S5HVoW_orphanedType",
200316
+ "divider": "S5HVoW_divider",
200317
+ "openWithPinActive": "S5HVoW_openWithPinActive",
200318
+ "producedMore": "S5HVoW_producedMore",
200319
+ "editorDocxZoomRange": "S5HVoW_editorDocxZoomRange",
200320
+ "tabActive": "S5HVoW_tabActive",
200276
200321
  "terminalRepairCommand": "S5HVoW_terminalRepairCommand",
200277
- "gitDiffFile": "S5HVoW_gitDiffFile",
200278
- "editorSearchHint": "S5HVoW_editorSearchHint",
200279
- "gitLogMore": "S5HVoW_gitLogMore",
200280
- "editorDownloadLink": "S5HVoW_editorDownloadLink",
200281
- "producedLabel": "S5HVoW_producedLabel",
200282
- "dropDown": "S5HVoW_dropDown",
200283
- "gitDiffTab": "S5HVoW_gitDiffTab",
200284
- "panelResize": "S5HVoW_panelResize",
200285
- "paneTab": "S5HVoW_paneTab",
200286
- "openWithLabel": "S5HVoW_openWithLabel",
200287
- "dividerRow": "S5HVoW_dividerRow",
200288
- "editorTreeResize": "S5HVoW_editorTreeResize",
200289
200322
  "browserBar": "S5HVoW_browserBar",
200290
- "explorerName": "S5HVoW_explorerName",
200291
- "browserInput": "S5HVoW_browserInput",
200292
- "terminalRetry": "S5HVoW_terminalRetry",
200293
- "tocItem": "S5HVoW_tocItem",
200294
- "mermaidInfo": "S5HVoW_mermaidInfo",
200295
- "editorCmHidden": "S5HVoW_editorCmHidden",
200296
- "dropRight": "S5HVoW_dropRight",
200297
- "gitDiffFilePath": "S5HVoW_gitDiffFilePath",
200298
- "mermaidWrap": "S5HVoW_mermaidWrap",
200323
+ "explorerHidden": "S5HVoW_explorerHidden",
200299
200324
  "tocFlash": "S5HVoW_tocFlash",
200300
- "floatTitle": "S5HVoW_floatTitle",
200301
- "editorImage": "S5HVoW_editorImage",
200325
+ "terminalDepsHint": "S5HVoW_terminalDepsHint",
200326
+ "paneContent": "S5HVoW_paneContent",
200302
200327
  "editorTreePanel": "S5HVoW_editorTreePanel",
200303
- "workbench": "S5HVoW_workbench",
200304
- "gitDiffMeta": "S5HVoW_gitDiffMeta",
200305
- "editorModeToggle": "S5HVoW_editorModeToggle",
200306
- "gitLogSubject": "S5HVoW_gitLogSubject",
200307
- "tabBarPlus": "S5HVoW_tabBarPlus",
200328
+ "uploadOverlayProgressFill": "S5HVoW_uploadOverlayProgressFill",
200329
+ "sandboxStatusOn": "S5HVoW_sandboxStatusOn",
200330
+ "browserBlockedTitle": "S5HVoW_browserBlockedTitle",
200331
+ "terminalDepsNote": "S5HVoW_terminalDepsNote",
200332
+ "editorPdfStage": "S5HVoW_editorPdfStage",
200333
+ "editorModeActive": "S5HVoW_editorModeActive",
200334
+ "gitLogLine1": "S5HVoW_gitLogLine1",
200335
+ "terminalDepsTitle": "S5HVoW_terminalDepsTitle",
200336
+ "gitWorktreeLabel": "S5HVoW_gitWorktreeLabel",
200337
+ "gitDiffTabHeader": "S5HVoW_gitDiffTabHeader",
200338
+ "pinnedTab": "S5HVoW_pinnedTab",
200339
+ "editorBinaryNotice": "S5HVoW_editorBinaryNotice",
200340
+ "gitBranchSelect": "S5HVoW_gitBranchSelect",
200341
+ "editorTreePanelFull": "S5HVoW_editorTreePanelFull",
200342
+ "editorImage": "S5HVoW_editorImage",
200343
+ "paneDrop": "S5HVoW_paneDrop",
200344
+ "tabBarDrop": "S5HVoW_tabBarDrop",
200345
+ "gitLogMeta": "S5HVoW_gitLogMeta",
200346
+ "openWithLabel": "S5HVoW_openWithLabel",
200347
+ "explorerBroken": "S5HVoW_explorerBroken",
200348
+ "editorCmHidden": "S5HVoW_editorCmHidden",
200349
+ "toggleButton": "S5HVoW_toggleButton",
200350
+ "tocBar": "S5HVoW_tocBar",
200351
+ "mermaidHeader": "S5HVoW_mermaidHeader",
200352
+ "editorPdfDragShieldActive": "S5HVoW_editorPdfDragShieldActive",
200353
+ "panelHidden": "S5HVoW_panelHidden",
200354
+ "gitBadge": "S5HVoW_gitBadge",
200308
200355
  "gitDiffAdd": "S5HVoW_gitDiffAdd",
200356
+ "gitLogRef": "S5HVoW_gitLogRef",
200357
+ "tocPanel": "S5HVoW_tocPanel",
200309
200358
  "gitConfirmDesc": "S5HVoW_gitConfirmDesc",
200310
- "pane": "S5HVoW_pane",
200311
- "explorerCopied": "S5HVoW_explorerCopied",
200312
- "paneCard": "S5HVoW_paneCard",
200313
- "gitDiffFileChevronExpanded": "S5HVoW_gitDiffFileChevronExpanded",
200314
- "uploadDropZonePill": "S5HVoW_uploadDropZonePill",
200315
- "explorerRowRevealed": "S5HVoW_explorerRowRevealed",
200316
- "gitDiffFileTag": "S5HVoW_gitDiffFileTag",
200317
- "panelHidden": "S5HVoW_panelHidden",
200318
- "sandboxStatus": "S5HVoW_sandboxStatus",
200359
+ "gitRowMain": "S5HVoW_gitRowMain",
200360
+ "tabTitle": "S5HVoW_tabTitle",
200361
+ "gitDiffTabTitle": "S5HVoW_gitDiffTabTitle",
200362
+ "floatDropHintLabel": "S5HVoW_floatDropHintLabel",
200363
+ "iconButton": "S5HVoW_iconButton",
200364
+ "editorSearchHint": "S5HVoW_editorSearchHint",
200319
200365
  "producedChip": "S5HVoW_producedChip",
200366
+ "gitDiffCode": "S5HVoW_gitDiffCode",
200367
+ "editorTreeDock": "S5HVoW_editorTreeDock",
200368
+ "uploadOverlay": "S5HVoW_uploadOverlay",
200369
+ "browserFrame": "S5HVoW_browserFrame",
200370
+ "gitCommitInput": "S5HVoW_gitCommitInput",
200371
+ "tab": "S5HVoW_tab",
200372
+ "terminalRetry": "S5HVoW_terminalRetry",
200373
+ "browserStart": "S5HVoW_browserStart",
200374
+ "mermaidError": "S5HVoW_mermaidError",
200375
+ "editorHeader": "S5HVoW_editorHeader",
200376
+ "editorTreeToggleActive": "S5HVoW_editorTreeToggleActive",
200377
+ "gitSectionHeader": "S5HVoW_gitSectionHeader",
200320
200378
  "gitDiffHunkSection": "S5HVoW_gitDiffHunkSection",
200321
- "paneContent": "S5HVoW_paneContent",
200322
- "floatDropHint": "S5HVoW_floatDropHint",
200323
- "paneTabHidden": "S5HVoW_paneTabHidden",
200324
- "openWithName": "S5HVoW_openWithName",
200325
- "floatResize": "S5HVoW_floatResize",
200326
- "tabBoundaryError": "S5HVoW_tabBoundaryError",
200327
- "terminal": "S5HVoW_terminal",
200328
- "gitRow": "S5HVoW_gitRow",
200329
- "terminalDepsNote": "S5HVoW_terminalDepsNote",
200330
- "explorerDir": "S5HVoW_explorerDir",
200331
- "editorDocxZoomRange": "S5HVoW_editorDocxZoomRange",
200332
- "gitDiffTabTitle": "S5HVoW_gitDiffTabTitle",
200333
- "sandboxDot": "S5HVoW_sandboxDot",
200334
- "editorHtmlBlock": "S5HVoW_editorHtmlBlock",
200335
- "splitChild": "S5HVoW_splitChild",
200336
- "terminalBannerUrl": "S5HVoW_terminalBannerUrl",
200337
- "browserBlockedActions": "S5HVoW_browserBlockedActions",
200338
- "tocButton": "S5HVoW_tocButton",
200339
- "tocPanel": "S5HVoW_tocPanel",
200340
- "gitDiff": "S5HVoW_gitDiff",
200341
- "editorPlaceholder": "S5HVoW_editorPlaceholder",
200342
- "dividerActive": "S5HVoW_dividerActive",
200343
- "gitDiffFileChevron": "S5HVoW_gitDiffFileChevron",
200344
- "gitSection": "S5HVoW_gitSection",
200345
- "tabBar": "S5HVoW_tabBar",
200346
- "browserBlockedDesc": "S5HVoW_browserBlockedDesc",
200347
- "uploadDropHero": "S5HVoW_uploadDropHero",
200348
- "paneDrop": "S5HVoW_paneDrop",
200349
- "splitRow": "S5HVoW_splitRow",
200350
- "floatWindowDragging": "S5HVoW_floatWindowDragging",
200351
200379
  "uploadOverlayCard": "S5HVoW_uploadOverlayCard",
200352
- "editorModeButton": "S5HVoW_editorModeButton",
200353
- "mermaidError": "S5HVoW_mermaidError",
200354
- "gitDiffLine": "S5HVoW_gitDiffLine",
200355
- "terminalDepsActions": "S5HVoW_terminalDepsActions",
200356
- "dropCenter": "S5HVoW_dropCenter",
200357
- "terminalDepsTitle": "S5HVoW_terminalDepsTitle"
200380
+ "gitSection": "S5HVoW_gitSection"
200358
200381
  };
200359
200382
  //#endregion
200360
200383
  //#region src/client/mermaid.tsx