dsh-coding-sidebar 1.0.1 → 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.
- package/README.md +5 -5
- package/lib/client-editor.js +416 -355
- package/lib/client-mermaid.js +304 -273
- package/lib/client-registry.js +555 -421
- package/lib/client-terminal.js +216 -208
- package/lib/client.js +557 -423
- package/lib/index.js +20 -12
- package/lib/types/client/locales.d.ts +4 -0
- package/lib/types/context-types.d.ts +19 -10
- package/package.json +26 -27
- package/src/client/SideCardSection.module.css +2 -2
- package/src/client/SideChatView.module.css +12 -12
- package/src/client/SubagentView.module.css +41 -0
- package/src/client/SubagentView.tsx +63 -7
- package/src/client/locales-ar.ts +4 -0
- package/src/client/locales-de.ts +4 -0
- package/src/client/locales-fr.ts +4 -0
- package/src/client/locales-hi.ts +4 -0
- package/src/client/locales-id.ts +4 -0
- package/src/client/locales-it.ts +4 -0
- package/src/client/locales-ja.ts +4 -0
- package/src/client/locales-ko.ts +4 -0
- package/src/client/locales-nl.ts +4 -0
- package/src/client/locales-pl.ts +4 -0
- package/src/client/locales-pt.ts +4 -0
- package/src/client/locales-ru.ts +4 -0
- package/src/client/locales-sv.ts +4 -0
- package/src/client/locales-th.ts +4 -0
- package/src/client/locales-tr.ts +4 -0
- package/src/client/locales-vi.ts +4 -0
- package/src/client/locales-zh-HK.ts +4 -0
- package/src/client/locales-zh-MO.ts +4 -0
- package/src/client/locales-zh-TW.ts +4 -0
- package/src/client/locales.ts +8 -0
- package/src/context-types.ts +12 -7
- package/src/index.ts +5 -4
- package/src/jobs-routes.ts +3 -2
- package/src/sidechat-routes.ts +13 -8
- package/src/subagent-live-route.ts +2 -1
package/lib/client-mermaid.js
CHANGED
|
@@ -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.
|
|
1171
|
-
/*! @license DOMPurify 3.4.
|
|
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.
|
|
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
|
-
|
|
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)
|
|
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
|
|
2429
|
-
*
|
|
2430
|
-
*
|
|
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))
|
|
2443
|
-
|
|
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)
|
|
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(
|
|
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 (
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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)
|
|
42893
|
-
|
|
42894
|
-
|
|
42895
|
-
|
|
42896
|
-
|
|
42897
|
-
|
|
42898
|
-
|
|
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.
|
|
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.
|
|
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.
|
|
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 (
|
|
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 (
|
|
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.
|
|
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 (
|
|
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 (
|
|
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 (
|
|
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.
|
|
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 (
|
|
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 (
|
|
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 (
|
|
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.
|
|
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
|
|
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 (
|
|
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 (
|
|
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 (
|
|
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 (
|
|
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.
|
|
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());
|
|
@@ -199582,6 +199605,8 @@ ${prefix}${Math.round(value * 100) / 100}${suffix}`;
|
|
|
199582
199605
|
subagentDiagUnsupported: "不支持的条目",
|
|
199583
199606
|
subagentDiagUnavailable: "不可用",
|
|
199584
199607
|
subagentThinking: "思考中…",
|
|
199608
|
+
subagentShowHistory: "展开更早的 {count} 个子代理",
|
|
199609
|
+
subagentHideHistory: "收起更早的子代理",
|
|
199585
199610
|
sideChat: "侧边对话(beta)",
|
|
199586
199611
|
sideChatNew: "新建对话",
|
|
199587
199612
|
sideChatUntitled: "新对话",
|
|
@@ -199609,6 +199634,8 @@ ${prefix}${Math.round(value * 100) / 100}${suffix}`;
|
|
|
199609
199634
|
jobs: "后台任务",
|
|
199610
199635
|
jobsCount: "{count} 个后台任务",
|
|
199611
199636
|
jobsCountRunning: "{count} 个后台任务 · {running} 运行中",
|
|
199637
|
+
jobsShowHistory: "展开更早的 {count} 个后台任务",
|
|
199638
|
+
jobsHideHistory: "收起更早的后台任务",
|
|
199612
199639
|
jobStatusRunning: "运行中",
|
|
199613
199640
|
jobStatusStopping: "终止中",
|
|
199614
199641
|
jobStatusCompleted: "已完成",
|
|
@@ -199933,6 +199960,8 @@ ${prefix}${Math.round(value * 100) / 100}${suffix}`;
|
|
|
199933
199960
|
subagentDiagUnsupported: "Unsupported",
|
|
199934
199961
|
subagentDiagUnavailable: "Unavailable",
|
|
199935
199962
|
subagentThinking: "Thinking…",
|
|
199963
|
+
subagentShowHistory: "Show {count} earlier subagents",
|
|
199964
|
+
subagentHideHistory: "Collapse earlier subagents",
|
|
199936
199965
|
sideChat: "Side Chat (beta)",
|
|
199937
199966
|
sideChatNew: "New thread",
|
|
199938
199967
|
sideChatUntitled: "New thread",
|
|
@@ -199960,6 +199989,8 @@ ${prefix}${Math.round(value * 100) / 100}${suffix}`;
|
|
|
199960
199989
|
jobs: "Background jobs",
|
|
199961
199990
|
jobsCount: "{count} background jobs",
|
|
199962
199991
|
jobsCountRunning: "{count} background jobs · {running} running",
|
|
199992
|
+
jobsShowHistory: "Show {count} earlier jobs",
|
|
199993
|
+
jobsHideHistory: "Collapse earlier jobs",
|
|
199963
199994
|
jobStatusRunning: "Running",
|
|
199964
199995
|
jobStatusStopping: "Stopping",
|
|
199965
199996
|
jobStatusCompleted: "Completed",
|
|
@@ -200112,241 +200143,241 @@ ${prefix}${Math.round(value * 100) / 100}${suffix}`;
|
|
|
200112
200143
|
document.head.appendChild(tag);
|
|
200113
200144
|
}
|
|
200114
200145
|
var sidebar_module_css_default = {
|
|
200115
|
-
"
|
|
200116
|
-
"
|
|
200117
|
-
"
|
|
200118
|
-
"
|
|
200119
|
-
"
|
|
200120
|
-
"
|
|
200121
|
-
"
|
|
200122
|
-
"
|
|
200123
|
-
"
|
|
200124
|
-
"
|
|
200125
|
-
"
|
|
200126
|
-
"
|
|
200127
|
-
"
|
|
200128
|
-
"
|
|
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",
|
|
200154
|
+
"gitDiffCtx": "S5HVoW_gitDiffCtx",
|
|
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",
|
|
200164
|
+
"uploadDropZone": "S5HVoW_uploadDropZone",
|
|
200165
|
+
"explorerCopied": "S5HVoW_explorerCopied",
|
|
200166
|
+
"tocButton": "S5HVoW_tocButton",
|
|
200167
|
+
"tabList": "S5HVoW_tabList",
|
|
200168
|
+
"boundaryError": "S5HVoW_boundaryError",
|
|
200169
|
+
"gitDiffNum": "S5HVoW_gitDiffNum",
|
|
200170
|
+
"panelBody": "S5HVoW_panelBody",
|
|
200171
|
+
"paneEmptyCards": "S5HVoW_paneEmptyCards",
|
|
200172
|
+
"editorPptxButton": "S5HVoW_editorPptxButton",
|
|
200173
|
+
"floatContent": "S5HVoW_floatContent",
|
|
200174
|
+
"uploadDropZoneText": "S5HVoW_uploadDropZoneText",
|
|
200175
|
+
"editorHtmlBlock": "S5HVoW_editorHtmlBlock",
|
|
200176
|
+
"dropDown": "S5HVoW_dropDown",
|
|
200177
|
+
"tocItem": "S5HVoW_tocItem",
|
|
200178
|
+
"gitEmpty": "S5HVoW_gitEmpty",
|
|
200129
200179
|
"dropUp": "S5HVoW_dropUp",
|
|
200130
|
-
"
|
|
200180
|
+
"editorTitle": "S5HVoW_editorTitle",
|
|
200131
200181
|
"explorerDir": "S5HVoW_explorerDir",
|
|
200132
|
-
"
|
|
200133
|
-
"
|
|
200134
|
-
"
|
|
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",
|
|
200192
|
+
"editor": "S5HVoW_editor",
|
|
200193
|
+
"dividerRow": "S5HVoW_dividerRow",
|
|
200194
|
+
"explorerError": "S5HVoW_explorerError",
|
|
200195
|
+
"paneTab": "S5HVoW_paneTab",
|
|
200196
|
+
"tabBoundaryError": "S5HVoW_tabBoundaryError",
|
|
200135
200197
|
"producedRow": "S5HVoW_producedRow",
|
|
200136
|
-
"
|
|
200137
|
-
"
|
|
200138
|
-
"
|
|
200198
|
+
"explorerName": "S5HVoW_explorerName",
|
|
200199
|
+
"editorStatusError": "S5HVoW_editorStatusError",
|
|
200200
|
+
"sandboxStatusText": "S5HVoW_sandboxStatusText",
|
|
200201
|
+
"explorerRoot": "S5HVoW_explorerRoot",
|
|
200139
200202
|
"browserBlockedActions": "S5HVoW_browserBlockedActions",
|
|
200140
|
-
"editorMain": "S5HVoW_editorMain",
|
|
200141
|
-
"panelResize": "S5HVoW_panelResize",
|
|
200142
|
-
"explorerSymlink": "S5HVoW_explorerSymlink",
|
|
200143
|
-
"editor": "S5HVoW_editor",
|
|
200144
|
-
"gitDiffDel": "S5HVoW_gitDiffDel",
|
|
200145
|
-
"gitDiffTab": "S5HVoW_gitDiffTab",
|
|
200146
|
-
"producedLabel": "S5HVoW_producedLabel",
|
|
200147
|
-
"editorTreeDock": "S5HVoW_editorTreeDock",
|
|
200148
|
-
"browserStart": "S5HVoW_browserStart",
|
|
200149
|
-
"editorSearchResult": "S5HVoW_editorSearchResult",
|
|
200150
200203
|
"selectionPopup": "S5HVoW_selectionPopup",
|
|
200151
|
-
"
|
|
200152
|
-
"
|
|
200153
|
-
"
|
|
200154
|
-
"
|
|
200155
|
-
"
|
|
200156
|
-
"
|
|
200157
|
-
"
|
|
200158
|
-
"
|
|
200159
|
-
"
|
|
200160
|
-
"
|
|
200204
|
+
"uploadOverlayProgress": "S5HVoW_uploadOverlayProgress",
|
|
200205
|
+
"terminalDepsBanner": "S5HVoW_terminalDepsBanner",
|
|
200206
|
+
"sandboxStatus": "S5HVoW_sandboxStatus",
|
|
200207
|
+
"mermaidCode": "S5HVoW_mermaidCode",
|
|
200208
|
+
"editorPdfFrame": "S5HVoW_editorPdfFrame",
|
|
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",
|
|
200220
|
+
"browser": "S5HVoW_browser",
|
|
200221
|
+
"gitDiffDel": "S5HVoW_gitDiffDel",
|
|
200222
|
+
"explorerBody": "S5HVoW_explorerBody",
|
|
200223
|
+
"gitLogHash": "S5HVoW_gitLogHash",
|
|
200224
|
+
"editorCm": "S5HVoW_editorCm",
|
|
200161
200225
|
"tabClose": "S5HVoW_tabClose",
|
|
200162
|
-
"gitDiffExpand": "S5HVoW_gitDiffExpand",
|
|
200163
|
-
"browserMessage": "S5HVoW_browserMessage",
|
|
200164
|
-
"gitDiffMetaText": "S5HVoW_gitDiffMetaText",
|
|
200165
|
-
"browserBlockedButton": "S5HVoW_browserBlockedButton",
|
|
200166
|
-
"gitLogSubject": "S5HVoW_gitLogSubject",
|
|
200167
|
-
"gitLogLine1": "S5HVoW_gitLogLine1",
|
|
200168
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",
|
|
200238
|
+
"editorSearchResult": "S5HVoW_editorSearchResult",
|
|
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",
|
|
200169
200249
|
"gitRow": "S5HVoW_gitRow",
|
|
200170
|
-
"sandboxStatus": "S5HVoW_sandboxStatus",
|
|
200171
|
-
"floatWindow": "S5HVoW_floatWindow",
|
|
200172
|
-
"gitDiffHunkSection": "S5HVoW_gitDiffHunkSection",
|
|
200173
200250
|
"dividerCol": "S5HVoW_dividerCol",
|
|
200174
|
-
"
|
|
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",
|
|
200261
|
+
"uploadOverlayTitle": "S5HVoW_uploadOverlayTitle",
|
|
200262
|
+
"gitWorktreeRow": "S5HVoW_gitWorktreeRow",
|
|
200263
|
+
"uploadDropZonePill": "S5HVoW_uploadDropZonePill",
|
|
200264
|
+
"editorStatus": "S5HVoW_editorStatus",
|
|
200265
|
+
"gitLogSubject": "S5HVoW_gitLogSubject",
|
|
200266
|
+
"splitChild": "S5HVoW_splitChild",
|
|
200267
|
+
"explorerHeader": "S5HVoW_explorerHeader",
|
|
200268
|
+
"mermaidModal": "S5HVoW_mermaidModal",
|
|
200269
|
+
"browserBlockedDesc": "S5HVoW_browserBlockedDesc",
|
|
200270
|
+
"floatWindowDragging": "S5HVoW_floatWindowDragging",
|
|
200175
200271
|
"editorImageWrap": "S5HVoW_editorImageWrap",
|
|
200176
|
-
"
|
|
200177
|
-
"
|
|
200178
|
-
"
|
|
200272
|
+
"gitHeader": "S5HVoW_gitHeader",
|
|
200273
|
+
"editorDownloadLink": "S5HVoW_editorDownloadLink",
|
|
200274
|
+
"mermaidCopy": "S5HVoW_mermaidCopy",
|
|
200275
|
+
"gitDiffFileChevronExpanded": "S5HVoW_gitDiffFileChevronExpanded",
|
|
200276
|
+
"mermaidModalHint": "S5HVoW_mermaidModalHint",
|
|
200277
|
+
"tabBar": "S5HVoW_tabBar",
|
|
200179
200278
|
"uploadDropHero": "S5HVoW_uploadDropHero",
|
|
200180
|
-
"
|
|
200181
|
-
"
|
|
200182
|
-
"
|
|
200183
|
-
"
|
|
200184
|
-
"
|
|
200185
|
-
"
|
|
200186
|
-
"
|
|
200187
|
-
"
|
|
200188
|
-
"
|
|
200189
|
-
"
|
|
200190
|
-
"
|
|
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",
|
|
200191
200292
|
"gitLogLine2": "S5HVoW_gitLogLine2",
|
|
200192
|
-
"
|
|
200193
|
-
"
|
|
200194
|
-
"
|
|
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",
|
|
200303
|
+
"explorerRef": "S5HVoW_explorerRef",
|
|
200304
|
+
"editorSearchInput": "S5HVoW_editorSearchInput",
|
|
200305
|
+
"git": "S5HVoW_git",
|
|
200306
|
+
"explorerRowDropTarget": "S5HVoW_explorerRowDropTarget",
|
|
200195
200307
|
"explorer": "S5HVoW_explorer",
|
|
200196
|
-
"
|
|
200197
|
-
"
|
|
200198
|
-
"
|
|
200308
|
+
"gitDiffFileChevron": "S5HVoW_gitDiffFileChevron",
|
|
200309
|
+
"terminalBanner": "S5HVoW_terminalBanner",
|
|
200310
|
+
"gitDiffFileOld": "S5HVoW_gitDiffFileOld",
|
|
200199
200311
|
"floatResize": "S5HVoW_floatResize",
|
|
200200
|
-
"editorStatusError": "S5HVoW_editorStatusError",
|
|
200201
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",
|
|
200202
200321
|
"terminalRepairCommand": "S5HVoW_terminalRepairCommand",
|
|
200203
|
-
"
|
|
200322
|
+
"browserBar": "S5HVoW_browserBar",
|
|
200323
|
+
"explorerHidden": "S5HVoW_explorerHidden",
|
|
200324
|
+
"tocFlash": "S5HVoW_tocFlash",
|
|
200325
|
+
"terminalDepsHint": "S5HVoW_terminalDepsHint",
|
|
200204
200326
|
"paneContent": "S5HVoW_paneContent",
|
|
200205
|
-
"floatWindowDragging": "S5HVoW_floatWindowDragging",
|
|
200206
|
-
"gitDiffHunk": "S5HVoW_gitDiffHunk",
|
|
200207
|
-
"mermaidModalHint": "S5HVoW_mermaidModalHint",
|
|
200208
|
-
"gitDiffCtx": "S5HVoW_gitDiffCtx",
|
|
200209
|
-
"tabBadge": "S5HVoW_tabBadge",
|
|
200210
|
-
"floatContent": "S5HVoW_floatContent",
|
|
200211
|
-
"tabBarDrop": "S5HVoW_tabBarDrop",
|
|
200212
|
-
"gitHeader": "S5HVoW_gitHeader",
|
|
200213
|
-
"browserBlocked": "S5HVoW_browserBlocked",
|
|
200214
|
-
"dropOverlay": "S5HVoW_dropOverlay",
|
|
200215
|
-
"editorSearchInput": "S5HVoW_editorSearchInput",
|
|
200216
|
-
"browserBlockedDesc": "S5HVoW_browserBlockedDesc",
|
|
200217
|
-
"mermaidError": "S5HVoW_mermaidError",
|
|
200218
|
-
"editorMd": "S5HVoW_editorMd",
|
|
200219
|
-
"explorerEmpty": "S5HVoW_explorerEmpty",
|
|
200220
|
-
"dropCenter": "S5HVoW_dropCenter",
|
|
200221
|
-
"paneEmptyCards": "S5HVoW_paneEmptyCards",
|
|
200222
|
-
"mermaidBody": "S5HVoW_mermaidBody",
|
|
200223
|
-
"editorTreeSearch": "S5HVoW_editorTreeSearch",
|
|
200224
200327
|
"editorTreePanel": "S5HVoW_editorTreePanel",
|
|
200225
|
-
"
|
|
200226
|
-
"
|
|
200227
|
-
"
|
|
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",
|
|
200228
200339
|
"editorBinaryNotice": "S5HVoW_editorBinaryNotice",
|
|
200229
|
-
"editorBanner": "S5HVoW_editorBanner",
|
|
200230
|
-
"mermaidCopy": "S5HVoW_mermaidCopy",
|
|
200231
200340
|
"gitBranchSelect": "S5HVoW_gitBranchSelect",
|
|
200232
|
-
"paneTabHidden": "S5HVoW_paneTabHidden",
|
|
200233
|
-
"tabBar": "S5HVoW_tabBar",
|
|
200234
|
-
"editorSearchHint": "S5HVoW_editorSearchHint",
|
|
200235
|
-
"tabList": "S5HVoW_tabList",
|
|
200236
|
-
"terminalDepsActions": "S5HVoW_terminalDepsActions",
|
|
200237
|
-
"editorTreeResize": "S5HVoW_editorTreeResize",
|
|
200238
200341
|
"editorTreePanelFull": "S5HVoW_editorTreePanelFull",
|
|
200239
|
-
"
|
|
200240
|
-
"
|
|
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",
|
|
200355
|
+
"gitDiffAdd": "S5HVoW_gitDiffAdd",
|
|
200356
|
+
"gitLogRef": "S5HVoW_gitLogRef",
|
|
200241
200357
|
"tocPanel": "S5HVoW_tocPanel",
|
|
200242
|
-
"
|
|
200243
|
-
"
|
|
200244
|
-
"
|
|
200245
|
-
"
|
|
200358
|
+
"gitConfirmDesc": "S5HVoW_gitConfirmDesc",
|
|
200359
|
+
"gitRowMain": "S5HVoW_gitRowMain",
|
|
200360
|
+
"tabTitle": "S5HVoW_tabTitle",
|
|
200361
|
+
"gitDiffTabTitle": "S5HVoW_gitDiffTabTitle",
|
|
200246
200362
|
"floatDropHintLabel": "S5HVoW_floatDropHintLabel",
|
|
200247
|
-
"uploadDropZone": "S5HVoW_uploadDropZone",
|
|
200248
|
-
"dsh-row-in": "S5HVoW_dsh-row-in",
|
|
200249
|
-
"gitPlaceholder": "S5HVoW_gitPlaceholder",
|
|
200250
|
-
"uploadOverlayProgressFill": "S5HVoW_uploadOverlayProgressFill",
|
|
200251
|
-
"gitName": "S5HVoW_gitName",
|
|
200252
|
-
"gitDiffNum": "S5HVoW_gitDiffNum",
|
|
200253
|
-
"editorError": "S5HVoW_editorError",
|
|
200254
|
-
"sandboxStatusText": "S5HVoW_sandboxStatusText",
|
|
200255
|
-
"splitChild": "S5HVoW_splitChild",
|
|
200256
|
-
"editorPathInput": "S5HVoW_editorPathInput",
|
|
200257
|
-
"gitLogRef": "S5HVoW_gitLogRef",
|
|
200258
|
-
"uploadDropChatCard": "S5HVoW_uploadDropChatCard",
|
|
200259
|
-
"editorCmHidden": "S5HVoW_editorCmHidden",
|
|
200260
|
-
"openWithChevron": "S5HVoW_openWithChevron",
|
|
200261
|
-
"sandboxStatusOn": "S5HVoW_sandboxStatusOn",
|
|
200262
|
-
"gitLogMeta": "S5HVoW_gitLogMeta",
|
|
200263
|
-
"gitDiffHunkHeader": "S5HVoW_gitDiffHunkHeader",
|
|
200264
|
-
"dirtyDot": "S5HVoW_dirtyDot",
|
|
200265
|
-
"gitLink": "S5HVoW_gitLink",
|
|
200266
|
-
"tabActive": "S5HVoW_tabActive",
|
|
200267
|
-
"uploadDropZonePill": "S5HVoW_uploadDropZonePill",
|
|
200268
|
-
"editorPdfToolbar": "S5HVoW_editorPdfToolbar",
|
|
200269
|
-
"terminalRetry": "S5HVoW_terminalRetry",
|
|
200270
|
-
"editorPdfFrame": "S5HVoW_editorPdfFrame",
|
|
200271
|
-
"terminalDepsNote": "S5HVoW_terminalDepsNote",
|
|
200272
|
-
"gitWorktreeRow": "S5HVoW_gitWorktreeRow",
|
|
200273
|
-
"openWithPin": "S5HVoW_openWithPin",
|
|
200274
|
-
"terminalDepsCommandRow": "S5HVoW_terminalDepsCommandRow",
|
|
200275
|
-
"panel": "S5HVoW_panel",
|
|
200276
200363
|
"iconButton": "S5HVoW_iconButton",
|
|
200277
|
-
"
|
|
200278
|
-
"
|
|
200279
|
-
"
|
|
200280
|
-
"
|
|
200281
|
-
"tabBarPlus": "S5HVoW_tabBarPlus",
|
|
200282
|
-
"explorerRowRevealed": "S5HVoW_explorerRowRevealed",
|
|
200364
|
+
"editorSearchHint": "S5HVoW_editorSearchHint",
|
|
200365
|
+
"producedChip": "S5HVoW_producedChip",
|
|
200366
|
+
"gitDiffCode": "S5HVoW_gitDiffCode",
|
|
200367
|
+
"editorTreeDock": "S5HVoW_editorTreeDock",
|
|
200283
200368
|
"uploadOverlay": "S5HVoW_uploadOverlay",
|
|
200284
|
-
"mermaidInfo": "S5HVoW_mermaidInfo",
|
|
200285
|
-
"pane": "S5HVoW_pane",
|
|
200286
|
-
"terminalBannerUrl": "S5HVoW_terminalBannerUrl",
|
|
200287
|
-
"tocItemText": "S5HVoW_tocItemText",
|
|
200288
|
-
"mermaidWrap": "S5HVoW_mermaidWrap",
|
|
200289
|
-
"explorerHeader": "S5HVoW_explorerHeader",
|
|
200290
|
-
"sandboxAction": "S5HVoW_sandboxAction",
|
|
200291
|
-
"mermaidModalButton": "S5HVoW_mermaidModalButton",
|
|
200292
|
-
"paneTab": "S5HVoW_paneTab",
|
|
200293
|
-
"terminalWrap": "S5HVoW_terminalWrap",
|
|
200294
|
-
"editorTitle": "S5HVoW_editorTitle",
|
|
200295
|
-
"gitDiffFileTag": "S5HVoW_gitDiffFileTag",
|
|
200296
|
-
"split": "S5HVoW_split",
|
|
200297
|
-
"tab": "S5HVoW_tab",
|
|
200298
|
-
"explorerError": "S5HVoW_explorerError",
|
|
200299
|
-
"gitDiffFileOld": "S5HVoW_gitDiffFileOld",
|
|
200300
|
-
"tocButton": "S5HVoW_tocButton",
|
|
200301
|
-
"gitLogHash": "S5HVoW_gitLogHash",
|
|
200302
|
-
"floatHeader": "S5HVoW_floatHeader",
|
|
200303
|
-
"editorPdfFrameBlocked": "S5HVoW_editorPdfFrameBlocked",
|
|
200304
|
-
"browserInput": "S5HVoW_browserInput",
|
|
200305
|
-
"sandboxDot": "S5HVoW_sandboxDot",
|
|
200306
|
-
"explorerRowDropTarget": "S5HVoW_explorerRowDropTarget",
|
|
200307
|
-
"sandboxStatusOff": "S5HVoW_sandboxStatusOff",
|
|
200308
|
-
"dsh-toc-flash": "S5HVoW_dsh-toc-flash",
|
|
200309
|
-
"gitCommit": "S5HVoW_gitCommit",
|
|
200310
|
-
"browserBar": "S5HVoW_browserBar",
|
|
200311
200369
|
"browserFrame": "S5HVoW_browserFrame",
|
|
200312
|
-
"mermaidCode": "S5HVoW_mermaidCode",
|
|
200313
|
-
"gitBadge": "S5HVoW_gitBadge",
|
|
200314
200370
|
"gitCommitInput": "S5HVoW_gitCommitInput",
|
|
200315
|
-
"
|
|
200316
|
-
"
|
|
200317
|
-
"
|
|
200318
|
-
"
|
|
200319
|
-
"
|
|
200320
|
-
"
|
|
200321
|
-
"
|
|
200322
|
-
"
|
|
200323
|
-
"
|
|
200324
|
-
"
|
|
200325
|
-
"pinnedTab": "S5HVoW_pinnedTab",
|
|
200326
|
-
"editorBinary": "S5HVoW_editorBinary",
|
|
200327
|
-
"mermaidMarkdown": "S5HVoW_mermaidMarkdown",
|
|
200328
|
-
"tocItem": "S5HVoW_tocItem",
|
|
200329
|
-
"gitEmpty": "S5HVoW_gitEmpty",
|
|
200330
|
-
"producedChip": "S5HVoW_producedChip",
|
|
200331
|
-
"splitCol": "S5HVoW_splitCol",
|
|
200332
|
-
"floatClose": "S5HVoW_floatClose",
|
|
200333
|
-
"mermaidHeader": "S5HVoW_mermaidHeader",
|
|
200334
|
-
"terminalDepsHint": "S5HVoW_terminalDepsHint",
|
|
200335
|
-
"explorerRoot": "S5HVoW_explorerRoot",
|
|
200336
|
-
"uploadOverlayTitle": "S5HVoW_uploadOverlayTitle",
|
|
200337
|
-
"dropDown": "S5HVoW_dropDown",
|
|
200338
|
-
"terminal": "S5HVoW_terminal",
|
|
200339
|
-
"explorerName": "S5HVoW_explorerName",
|
|
200340
|
-
"tabTitle": "S5HVoW_tabTitle",
|
|
200341
|
-
"gitDiffFilePath": "S5HVoW_gitDiffFilePath",
|
|
200342
|
-
"gitDiffMeta": "S5HVoW_gitDiffMeta",
|
|
200343
|
-
"terminalDepsTitle": "S5HVoW_terminalDepsTitle",
|
|
200344
|
-
"uploadOverlayProgress": "S5HVoW_uploadOverlayProgress",
|
|
200345
|
-
"gitDiffFileChevronExpanded": "S5HVoW_gitDiffFileChevronExpanded",
|
|
200346
|
-
"divider": "S5HVoW_divider",
|
|
200347
|
-
"explorerRef": "S5HVoW_explorerRef",
|
|
200348
|
-
"mermaidModalStage": "S5HVoW_mermaidModalStage",
|
|
200349
|
-
"gitRowSelected": "S5HVoW_gitRowSelected"
|
|
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",
|
|
200378
|
+
"gitDiffHunkSection": "S5HVoW_gitDiffHunkSection",
|
|
200379
|
+
"uploadOverlayCard": "S5HVoW_uploadOverlayCard",
|
|
200380
|
+
"gitSection": "S5HVoW_gitSection"
|
|
200350
200381
|
};
|
|
200351
200382
|
//#endregion
|
|
200352
200383
|
//#region src/client/mermaid.tsx
|