dsh-better-sidebar 0.10.0 → 0.10.2

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 CHANGED
@@ -35,41 +35,65 @@ https://github.com/user-attachments/assets/23187822-047e-45cc-b480-fe997bd55b86
35
35
 
36
36
  ## 🚀 安装
37
37
 
38
- 前置:已安装 DSH(`dsh web` 可运行),Node.js ≥ 20、pnpm ≥ 10。`@deepseek-ai/*` 已发布到 npm,`pnpm install` 直接解析、无需令牌。把下面提示词**整段**发给 DSH 即可自动完成克隆、构建、注册与安装:
38
+ 前置:已安装 DSH(`dsh web` 可运行,含 `dsh plugin` 命令),Node.js ≥ 20、pnpm ≥ 10。插件已发布到 npm:**`dsh-better-sidebar@0.10.2`**(`@deepseek-ai/*` peer 依赖对齐宿主实际版本 `^0.1.0-rc.6` / `@deepseek-ai/cordis@^4.0.1`,同版本单实例)。包内声明了 `dsh.bundle.patch`(随包发布的 `cordis.patch.yml`),官方 CLI **一条命令完成安装 + 挂载**,不修改 DSH 源码。
39
39
 
40
- ```text
41
- 请帮我把 dsh-better-sidebar 插件安装到我的 web profile(插件 = VSCode 风格右侧侧边栏,仓库 https://github.com/dsh-external/DSH-better-sidebar):
40
+ ### 官方 CLI 安装(推荐)
42
41
 
43
- 1. 克隆并构建:
44
- git clone https://github.com/dsh-external/DSH-better-sidebar.git ~/Code/DSH-better-sidebar
45
- cd ~/Code/DSH-better-sidebar && pnpm install && pnpm build
46
- 2. 注册到 web profile:
47
- a. ~/.dsh/profiles/web/package.json 的 dependencies 加 "dsh-better-sidebar": "link:<第 1 步克隆目录的绝对路径>"
48
- b. ~/.dsh/profiles/web/cordis.patch.yml 追加:
49
- - insert:
50
- - id: better-sidebar
51
- name: 'dsh-better-sidebar'
52
- 3. 在 ~/.dsh/profiles/web 执行 pnpm install
53
- 4. 重启 DSH 并硬刷新(Cmd/Ctrl+Shift+R)验证
42
+ ```sh
43
+ dsh plugin --profile web add dsh-better-sidebar@0.10.2
44
+ # 或(本机无 dsh 命令时)
45
+ npx -y --package @deepseek-ai/dsh dsh plugin --profile web add dsh-better-sidebar@0.10.2
46
+ # 或安装最新发布版
47
+ dsh plugin --profile web add dsh-better-sidebar
54
48
  ```
55
49
 
56
- > 安装 = 依赖登记(等价 `dsh plugin --profile web add link:<路径>`)+ 一行挂载行。**DSH npm 包启动(如 `npx -p @deepseek-ai/dsh@0.1.0-rc.6 dsh web`)同样可用**(v0.4.3 起实测验证)。
50
+ 命令自动完成:`pnpm add` 登记依赖到 `~/.dsh/profiles/web/package.json` 识别包内 `dsh.bundle.patch`,把插件自动加进 `dsh.profile.bundles` 下次启动自动挂载(无需手写 `cordis.patch.yml` 挂载行)。更新同理:`dsh plugin --profile web add dsh-better-sidebar@<新版>`。
51
+
52
+ > ⚠️ 首次在新 profile 上执行时,pnpm 11 的 `strict-dep-builds` 会拦截 node-pty/protobufjs 的构建脚本,命令会报 `Ignored build scripts`(包仍已安装、node-pty 预编译产物可直接用)。此时在 `~/.dsh/profiles/web` 执行 `pnpm approve-builds --all` 再重跑一次即可;`scripts/install.sh` 会自动处理(预写 allowBuilds + 清理旧挂载行)。
53
+
54
+ ### 一键脚本(自动处理 allowBuilds / 旧挂载行)
55
+
56
+ ```sh
57
+ curl -fsSL https://raw.githubusercontent.com/omdsh-dev/DSH-better-sidebar/main/scripts/install.sh | bash
58
+ # 指定版本: curl -fsSL <同上> | bash -s 0.10.2
59
+ # 装完自动重启 DSH: curl -fsSL <同上> | bash -s -- --restart
60
+ ```
57
61
 
58
62
  ### 更新
59
63
 
64
+ ```sh
65
+ dsh plugin --profile web add dsh-better-sidebar@<新版>
66
+ ```
67
+
68
+ 或手动把 `~/.dsh/profiles/web/package.json` 里版本号改到新版(如 `"^0.10.2"`)后 `pnpm install`。随后重启 DSH 并硬刷新(Cmd/Ctrl+Shift+R)。
69
+
70
+ > 提示:若 pnpm 因 `minimumReleaseAge`(发布 <24h 的新版本)拒绝安装,会自动向 `~/.dsh/profiles/web/pnpm-workspace.yaml` 追加 `minimumReleaseAgeExclude` 条目;也可手动补一行 `dsh-better-sidebar@<版本>`。
71
+
72
+ <details>
73
+ <summary><b>从源码安装 / 开发(可选,替代 npm 方式)</b></summary>
74
+
75
+ 调试本地改动或跟随开发分支时,把依赖指向本地克隆并自行构建:
76
+
60
77
  ```text
61
- 1. cd ~/Code/DSH-better-sidebar && git pull && pnpm install && pnpm build
62
- 2. 核对注册仍有效(缺失才补):profile package.json link: 依赖 + cordis.patch.yml 挂载行
63
- 3. 仅 client(src/client/*)→ 硬刷新即可;含 host(src/index.ts、src/config.ts 等)→ 重启 DSH + 硬刷新
78
+ 1. git clone https://github.com/omdsh-dev/DSH-better-sidebar.git ~/Code/DSH-better-sidebar
79
+ cd ~/Code/DSH-better-sidebar && pnpm install && pnpm build
80
+ 2. ~/.dsh/profiles/web/package.json dependencies "dsh-better-sidebar": "link:<克隆目录绝对路径>"
81
+ 3. ~/.dsh/profiles/web/cordis.patch.yml 追加挂载行(同上)
82
+ 4. 在 ~/.dsh/profiles/web 执行 pnpm install
83
+ 5. 重启 DSH 并硬刷新
64
84
  ```
65
85
 
86
+ 更新:`git pull && pnpm install && pnpm build` → 重启 DSH(仅 client 改动可硬刷新)。切回 npm 通道时,把依赖改回 `"dsh-better-sidebar": "^0.10.2"` 再 `pnpm install`。
87
+
88
+ </details>
89
+
66
90
  <details>
67
91
  <summary><b>通过 plugin-registry 安装(可选,与上述二选一)</b></summary>
68
92
 
69
93
  前置:DSH 已集成 [plugin-registry](https://github.com/dsh-external/plugin-registry)(`dsh registry` 可用)。**同时启用两个通道会双挂载**(Node 半挂两次、页面两个侧边栏)。
70
94
 
71
95
  ```sh
72
- git clone https://github.com/dsh-external/DSH-better-sidebar.git && cd DSH-better-sidebar
96
+ git clone https://github.com/omdsh-dev/DSH-better-sidebar.git && cd DSH-better-sidebar
73
97
  pnpm install && pnpm build
74
98
  node scripts/package-registry.mjs # 组装 registry/ 暂存(含清单 + 产物 + README,不入库)
75
99
  dsh registry install ./registry # 安装(默认禁用)
package/README_EN.md CHANGED
@@ -35,41 +35,65 @@ https://github.com/user-attachments/assets/23187822-047e-45cc-b480-fe997bd55b86
35
35
 
36
36
  ## 🚀 Installation
37
37
 
38
- Prerequisites: DSH installed (`dsh web` works), Node.js ≥ 20, pnpm ≥ 10. `@deepseek-ai/*` packages are published to npm and resolved directly by `pnpm install` no token needed. Send the following prompt **in full** to DSH and it will automatically clone, build, register and install:
38
+ Prerequisites: DSH installed (`dsh web` works, including the `dsh plugin` command), Node.js ≥ 20, pnpm ≥ 10. The plugin is published to npm as **`dsh-better-sidebar@0.10.2`** (`@deepseek-ai/*` peers aligned with the host's actual versions `^0.1.0-rc.6` / `@deepseek-ai/cordis@^4.0.1`, single instance). The package declares `dsh.bundle.patch` (the shipped `cordis.patch.yml`), so the official CLI installs **and mounts in one command** the DSH source is never modified.
39
39
 
40
- ```text
41
- Please install the dsh-better-sidebar plugin into my web profile (plugin = VSCode-style right sidebar, repo https://github.com/dsh-external/DSH-better-sidebar):
40
+ ### Official CLI install (recommended)
42
41
 
43
- 1. Clone and build:
44
- git clone https://github.com/dsh-external/DSH-better-sidebar.git ~/Code/DSH-better-sidebar
45
- cd ~/Code/DSH-better-sidebar && pnpm install && pnpm build
46
- 2. Register into the web profile:
47
- a. Add "dsh-better-sidebar": "link:<absolute path of the cloned directory from step 1>" to the dependencies of ~/.dsh/profiles/web/package.json
48
- b. Append to ~/.dsh/profiles/web/cordis.patch.yml:
49
- - insert:
50
- - id: better-sidebar
51
- name: 'dsh-better-sidebar'
52
- 3. Run pnpm install in ~/.dsh/profiles/web
53
- 4. Restart DSH and hard-refresh (Cmd/Ctrl+Shift+R) to verify
42
+ ```sh
43
+ dsh plugin --profile web add dsh-better-sidebar@0.10.2
44
+ # or (no local dsh command):
45
+ npx -y --package @deepseek-ai/dsh dsh plugin --profile web add dsh-better-sidebar@0.10.2
46
+ # or install the latest published version:
47
+ dsh plugin --profile web add dsh-better-sidebar
54
48
  ```
55
49
 
56
- > Installation = dependency registration (equivalent to `dsh plugin --profile web add link:<path>`) + one mount line. **It also works when DSH is started as an npm package (e.g. `npx -p @deepseek-ai/dsh@0.1.0-rc.6 dsh web`)** (verified since v0.4.3).
50
+ The command: runs `pnpm add` to register the dependency in `~/.dsh/profiles/web/package.json`, detects the package's `dsh.bundle.patch`, auto-appends the plugin to `dsh.profile.bundles`, and the next boot mounts it no hand-written `cordis.patch.yml` mount line. Update the same way: `dsh plugin --profile web add dsh-better-sidebar@<new>`.
51
+
52
+ > ⚠️ On a fresh profile, pnpm 11's `strict-dep-builds` blocks node-pty/protobufjs build scripts and the command reports `Ignored build scripts` (the package is still installed; node-pty's prebuilds work as-is). Fix: run `pnpm approve-builds --all` in `~/.dsh/profiles/web` and re-run. `scripts/install.sh` handles this automatically (pre-writes allowBuilds + cleans up the old mount line).
53
+
54
+ ### One-click script (handles allowBuilds / old mount line)
55
+
56
+ ```sh
57
+ curl -fsSL https://raw.githubusercontent.com/omdsh-dev/DSH-better-sidebar/main/scripts/install.sh | bash
58
+ # Pick a version: curl -fsSL <same URL> | bash -s 0.10.2
59
+ # Auto-restart DSH: curl -fsSL <same URL> | bash -s -- --restart
60
+ ```
57
61
 
58
62
  ### Updating
59
63
 
64
+ ```sh
65
+ dsh plugin --profile web add dsh-better-sidebar@<new>
66
+ ```
67
+
68
+ or bump the version range in `~/.dsh/profiles/web/package.json` (e.g. `"^0.10.2"`) and run `pnpm install`. Then restart DSH and hard-refresh (Cmd/Ctrl+Shift+R).
69
+
70
+ > Note: if pnpm rejects a too-fresh release via `minimumReleaseAge` (<24h old), it auto-appends a `minimumReleaseAgeExclude` entry to `~/.dsh/profiles/web/pnpm-workspace.yaml` — or add `dsh-better-sidebar@<version>` there manually.
71
+
72
+ <details>
73
+ <summary><b>Install from source / develop (optional — alternative to the npm flow)</b></summary>
74
+
75
+ To debug local changes or track the dev branch, point the dependency at a local clone and build it yourself:
76
+
60
77
  ```text
61
- 1. cd ~/Code/DSH-better-sidebar && git pull && pnpm install && pnpm build
62
- 2. Verify the registration is still valid (only re-add if missing): the link: dependency in the profile's package.json + the cordis.patch.yml mount line
63
- 3. Client-only changes (src/client/*) → hard refresh is enough; host changes (src/index.ts, src/config.ts, etc.) restart DSH + hard refresh
78
+ 1. git clone https://github.com/omdsh-dev/DSH-better-sidebar.git ~/Code/DSH-better-sidebar
79
+ cd ~/Code/DSH-better-sidebar && pnpm install && pnpm build
80
+ 2. In ~/.dsh/profiles/web/package.json dependencies write "dsh-better-sidebar": "link:<absolute path of the clone>"
81
+ 3. Append the mount line to ~/.dsh/profiles/web/cordis.patch.yml (same as above)
82
+ 4. Run pnpm install in ~/.dsh/profiles/web
83
+ 5. Restart DSH and hard-refresh
64
84
  ```
65
85
 
86
+ Update: `git pull && pnpm install && pnpm build` → restart DSH (client-only changes can just hard-refresh). To switch back to the npm channel, restore `"dsh-better-sidebar": "^0.10.2"` and re-run `pnpm install`.
87
+
88
+ </details>
89
+
66
90
  <details>
67
91
  <summary><b>Install via plugin-registry (optional — use either this or the main flow)</b></summary>
68
92
 
69
93
  Prerequisite: DSH with [plugin-registry](https://github.com/dsh-external/plugin-registry) integrated (`dsh registry` available). **Enabling both channels double-mounts** (the Node half loads twice, the page gets two sidebars).
70
94
 
71
95
  ```sh
72
- git clone https://github.com/dsh-external/DSH-better-sidebar.git && cd DSH-better-sidebar
96
+ git clone https://github.com/omdsh-dev/DSH-better-sidebar.git && cd DSH-better-sidebar
73
97
  pnpm install && pnpm build
74
98
  node scripts/package-registry.mjs # assemble the registry/ staging (manifest + artifacts + README, not committed)
75
99
  dsh registry install ./registry # install (disabled by default)
@@ -0,0 +1,19 @@
1
+ # dsh-better-sidebar bundle patch
2
+ #
3
+ # This file is the `dsh.bundle.patch` layer of the published npm package: when
4
+ # the plugin is installed through the official CLI —
5
+ #
6
+ # dsh plugin --profile <name> add dsh-better-sidebar@<version>
7
+ #
8
+ # — the command reconciles `dsh.profile.bundles` against installed packages
9
+ # and, seeing this declaration, appends `dsh-better-sidebar` to the bundle
10
+ # stack. The profile boot then merges THIS patch (a single `insert` of the
11
+ # plugin row) exactly like the manual cordis.patch.yml mount line used
12
+ # before. No profile file edits needed — one command installs and mounts.
13
+ #
14
+ # If the profile still carries the old manual mount line in its own
15
+ # cordis.patch.yml, remove it before switching to the bundle channel to
16
+ # avoid double-mounting (two Node halves, two sidebars).
17
+ - insert:
18
+ - id: better-sidebar
19
+ name: 'dsh-better-sidebar'
@@ -502,182 +502,182 @@ globalThis.__dshChunks__["docx"] = (require) => {
502
502
  document.head.appendChild(tag);
503
503
  }
504
504
  var sidebar_module_css_default = {
505
- "dividerCol": "W-zNGW_dividerCol",
506
- "split": "W-zNGW_split",
507
- "editorImageWrap": "W-zNGW_editorImageWrap",
508
- "editorPptxPosition": "W-zNGW_editorPptxPosition",
509
- "gitDiffTabTitle": "W-zNGW_gitDiffTabTitle",
510
- "dropLeft": "W-zNGW_dropLeft",
511
- "gitDiffExpand": "W-zNGW_gitDiffExpand",
505
+ "explorerEmpty": "W-zNGW_explorerEmpty",
506
+ "terminalRetry": "W-zNGW_terminalRetry",
507
+ "editorMd": "W-zNGW_editorMd",
512
508
  "gitLogSubject": "W-zNGW_gitLogSubject",
513
- "workbench": "W-zNGW_workbench",
514
- "gitLogRef": "W-zNGW_gitLogRef",
515
- "tabBar": "W-zNGW_tabBar",
516
- "explorerRef": "W-zNGW_explorerRef",
517
- "explorerError": "W-zNGW_explorerError",
518
- "sandboxDot": "W-zNGW_sandboxDot",
519
- "gitBranchSelect": "W-zNGW_gitBranchSelect",
520
- "gitLogLine2": "W-zNGW_gitLogLine2",
521
- "producedMore": "W-zNGW_producedMore",
522
- "splitChild": "W-zNGW_splitChild",
523
- "divider": "W-zNGW_divider",
524
- "sandboxStatus": "W-zNGW_sandboxStatus",
525
- "editorError": "W-zNGW_editorError",
526
- "gitDiffHunk": "W-zNGW_gitDiffHunk",
527
- "gitLogHash": "W-zNGW_gitLogHash",
528
- "editorPptxHost": "W-zNGW_editorPptxHost",
529
- "editorPlaceholder": "W-zNGW_editorPlaceholder",
530
- "dropRight": "W-zNGW_dropRight",
509
+ "toggleCluster": "W-zNGW_toggleCluster",
531
510
  "panel": "W-zNGW_panel",
532
- "tabBarDrop": "W-zNGW_tabBarDrop",
533
- "dsh-row-in": "W-zNGW_dsh-row-in",
534
- "panelResizeActive": "W-zNGW_panelResizeActive",
535
- "panelResize": "W-zNGW_panelResize",
536
- "explorerCopied": "W-zNGW_explorerCopied",
537
- "gitDiffNum": "W-zNGW_gitDiffNum",
538
- "gitDiffCode": "W-zNGW_gitDiffCode",
539
- "sandboxAction": "W-zNGW_sandboxAction",
540
- "gitLogMore": "W-zNGW_gitLogMore",
541
- "paneTabHidden": "W-zNGW_paneTabHidden",
542
- "editorImage": "W-zNGW_editorImage",
543
- "gitConfirmDesc": "W-zNGW_gitConfirmDesc",
544
- "editorDocxZoomRange": "W-zNGW_editorDocxZoomRange",
545
- "gitLogRow": "W-zNGW_gitLogRow",
546
- "editorDocx": "W-zNGW_editorDocx",
547
- "editorBanner": "W-zNGW_editorBanner",
511
+ "sandboxStatusOff": "W-zNGW_sandboxStatusOff",
512
+ "editorUniverHost": "W-zNGW_editorUniverHost",
513
+ "gitDiffFilePath": "W-zNGW_gitDiffFilePath",
514
+ "iconButton": "W-zNGW_iconButton",
515
+ "bottomClose": "W-zNGW_bottomClose",
516
+ "cornerHandle": "W-zNGW_cornerHandle",
517
+ "explorerRow": "W-zNGW_explorerRow",
518
+ "tabActive": "W-zNGW_tabActive",
519
+ "gitLogLine1": "W-zNGW_gitLogLine1",
520
+ "gitDiffExpand": "W-zNGW_gitDiffExpand",
521
+ "gitDiffTab": "W-zNGW_gitDiffTab",
522
+ "gitDiffHunkHeader": "W-zNGW_gitDiffHunkHeader",
548
523
  "panelBody": "W-zNGW_panelBody",
549
- "sandboxStatusOn": "W-zNGW_sandboxStatusOn",
524
+ "tabBarPlus": "W-zNGW_tabBarPlus",
525
+ "browserBlocked": "W-zNGW_browserBlocked",
550
526
  "editorPdfStage": "W-zNGW_editorPdfStage",
551
- "bottomPanelHidden": "W-zNGW_bottomPanelHidden",
552
- "orphanedType": "W-zNGW_orphanedType",
553
- "editorDownloadLink": "W-zNGW_editorDownloadLink",
554
- "browserBlockedActions": "W-zNGW_browserBlockedActions",
555
- "tab": "W-zNGW_tab",
556
- "gitLogMeta": "W-zNGW_gitLogMeta",
557
- "cornerHandle": "W-zNGW_cornerHandle",
558
- "editorDocxWrap": "W-zNGW_editorDocxWrap",
559
- "tabClose": "W-zNGW_tabClose",
560
- "editorDocxViewport": "W-zNGW_editorDocxViewport",
561
- "explorerName": "W-zNGW_explorerName",
562
- "dropOverlay": "W-zNGW_dropOverlay",
563
- "editorPdfFrameBlocked": "W-zNGW_editorPdfFrameBlocked",
564
- "editorTitle": "W-zNGW_editorTitle",
565
- "gitHeader": "W-zNGW_gitHeader",
566
- "gitError": "W-zNGW_gitError",
567
- "gitDiff": "W-zNGW_gitDiff",
568
- "gitDiffTabHeader": "W-zNGW_gitDiffTabHeader",
569
- "editorPdfToolbar": "W-zNGW_editorPdfToolbar",
570
- "gitDiffFileOld": "W-zNGW_gitDiffFileOld",
571
- "gitDiffHunkSection": "W-zNGW_gitDiffHunkSection",
527
+ "editorModeActive": "W-zNGW_editorModeActive",
528
+ "editorStatus": "W-zNGW_editorStatus",
529
+ "editorPptxHost": "W-zNGW_editorPptxHost",
530
+ "terminalBanner": "W-zNGW_terminalBanner",
531
+ "explorerRef": "W-zNGW_explorerRef",
532
+ "terminalWrap": "W-zNGW_terminalWrap",
572
533
  "gitDiffMetaText": "W-zNGW_gitDiffMetaText",
573
- "gitLogLine1": "W-zNGW_gitLogLine1",
534
+ "paneDrop": "W-zNGW_paneDrop",
535
+ "gitDiffTabTitle": "W-zNGW_gitDiffTabTitle",
574
536
  "editorModeButton": "W-zNGW_editorModeButton",
537
+ "editorDocxWrap": "W-zNGW_editorDocxWrap",
538
+ "split": "W-zNGW_split",
539
+ "browser": "W-zNGW_browser",
540
+ "gitDiffAdd": "W-zNGW_gitDiffAdd",
541
+ "gitSection": "W-zNGW_gitSection",
542
+ "producedRow": "W-zNGW_producedRow",
543
+ "editorStatusError": "W-zNGW_editorStatusError",
544
+ "paneTabHidden": "W-zNGW_paneTabHidden",
545
+ "editorPlaceholder": "W-zNGW_editorPlaceholder",
546
+ "browserBlockedTitle": "W-zNGW_browserBlockedTitle",
575
547
  "gitDiffDel": "W-zNGW_gitDiffDel",
576
- "panelHidden": "W-zNGW_panelHidden",
577
- "editorBinary": "W-zNGW_editorBinary",
548
+ "bottomResizeActive": "W-zNGW_bottomResizeActive",
549
+ "explorerDir": "W-zNGW_explorerDir",
550
+ "bottomPanel": "W-zNGW_bottomPanel",
551
+ "editorPdfDragShieldActive": "W-zNGW_editorPdfDragShieldActive",
552
+ "gitDiffLine": "W-zNGW_gitDiffLine",
553
+ "browserFrame": "W-zNGW_browserFrame",
554
+ "editorDocxZoom": "W-zNGW_editorDocxZoom",
555
+ "orphanedType": "W-zNGW_orphanedType",
556
+ "dropRight": "W-zNGW_dropRight",
557
+ "splitCol": "W-zNGW_splitCol",
558
+ "gitConfirmDesc": "W-zNGW_gitConfirmDesc",
559
+ "gitDiffFileOld": "W-zNGW_gitDiffFileOld",
578
560
  "editorDocxZoomHint": "W-zNGW_editorDocxZoomHint",
561
+ "editorPptxStage": "W-zNGW_editorPptxStage",
562
+ "editorTitle": "W-zNGW_editorTitle",
563
+ "gitDiffCode": "W-zNGW_gitDiffCode",
564
+ "panelResize": "W-zNGW_panelResize",
565
+ "browserInput": "W-zNGW_browserInput",
566
+ "browserMessage": "W-zNGW_browserMessage",
579
567
  "gitSectionHeader": "W-zNGW_gitSectionHeader",
580
- "dividerActive": "W-zNGW_dividerActive",
581
- "producedRow": "W-zNGW_producedRow",
582
- "tabBarPlus": "W-zNGW_tabBarPlus",
583
- "editorPptxToolbar": "W-zNGW_editorPptxToolbar",
584
- "tabList": "W-zNGW_tabList",
585
- "editorPdfDragShield": "W-zNGW_editorPdfDragShield",
586
- "editorPdf": "W-zNGW_editorPdf",
587
- "explorer": "W-zNGW_explorer",
588
- "terminalBannerUrl": "W-zNGW_terminalBannerUrl",
589
- "gitDiffCtx": "W-zNGW_gitDiffCtx",
590
- "gitDiffFilePath": "W-zNGW_gitDiffFilePath",
591
- "browserBlocked": "W-zNGW_browserBlocked",
592
- "browserBlockedTitle": "W-zNGW_browserBlockedTitle",
593
- "gitLink": "W-zNGW_gitLink",
594
- "gitSection": "W-zNGW_gitSection",
595
- "splitRow": "W-zNGW_splitRow",
596
- "gitRowSelected": "W-zNGW_gitRowSelected",
597
- "boundaryError": "W-zNGW_boundaryError",
598
- "editorUniverHost": "W-zNGW_editorUniverHost",
599
568
  "tabTitle": "W-zNGW_tabTitle",
600
- "gitName": "W-zNGW_gitName",
601
- "explorerRoot": "W-zNGW_explorerRoot",
602
- "gitDiffLine": "W-zNGW_gitDiffLine",
603
- "bottomClose": "W-zNGW_bottomClose",
569
+ "sandboxStatus": "W-zNGW_sandboxStatus",
604
570
  "sandboxStatusText": "W-zNGW_sandboxStatusText",
605
- "gitDiffMeta": "W-zNGW_gitDiffMeta",
606
- "editorPptxButton": "W-zNGW_editorPptxButton",
607
- "toggleButton": "W-zNGW_toggleButton",
608
- "editorPdfDragShieldActive": "W-zNGW_editorPdfDragShieldActive",
609
- "gitRowMain": "W-zNGW_gitRowMain",
610
- "editorModeToggle": "W-zNGW_editorModeToggle",
611
- "editorDocxZoomValue": "W-zNGW_editorDocxZoomValue",
612
- "gitDiffHunkHeader": "W-zNGW_gitDiffHunkHeader",
613
- "bottomResize": "W-zNGW_bottomResize",
614
- "paneTab": "W-zNGW_paneTab",
615
- "paneContent": "W-zNGW_paneContent",
571
+ "explorerCopied": "W-zNGW_explorerCopied",
616
572
  "gitEmpty": "W-zNGW_gitEmpty",
617
- "browserMessage": "W-zNGW_browserMessage",
618
- "iconButton": "W-zNGW_iconButton",
619
- "git": "W-zNGW_git",
620
573
  "producedChip": "W-zNGW_producedChip",
621
- "producedLabel": "W-zNGW_producedLabel",
622
- "gitDiffAdd": "W-zNGW_gitDiffAdd",
623
- "dropCenter": "W-zNGW_dropCenter",
624
- "explorerHeader": "W-zNGW_explorerHeader",
625
- "explorerHidden": "W-zNGW_explorerHidden",
626
- "editorPptx": "W-zNGW_editorPptx",
627
- "terminalBanner": "W-zNGW_terminalBanner",
574
+ "tabBar": "W-zNGW_tabBar",
575
+ "dividerCol": "W-zNGW_dividerCol",
576
+ "explorer": "W-zNGW_explorer",
577
+ "gitDiffHunk": "W-zNGW_gitDiffHunk",
628
578
  "dropDown": "W-zNGW_dropDown",
579
+ "sandboxDot": "W-zNGW_sandboxDot",
580
+ "editorPdfToolbar": "W-zNGW_editorPdfToolbar",
581
+ "tabList": "W-zNGW_tabList",
582
+ "editorDocx": "W-zNGW_editorDocx",
583
+ "explorerHidden": "W-zNGW_explorerHidden",
584
+ "browserBlockedDesc": "W-zNGW_browserBlockedDesc",
585
+ "editorPptxPosition": "W-zNGW_editorPptxPosition",
586
+ "divider": "W-zNGW_divider",
587
+ "editor": "W-zNGW_editor",
588
+ "editorHtml": "W-zNGW_editorHtml",
589
+ "editorModeToggle": "W-zNGW_editorModeToggle",
629
590
  "gitPlaceholder": "W-zNGW_gitPlaceholder",
630
- "browserInput": "W-zNGW_browserInput",
631
- "browserFrame": "W-zNGW_browserFrame",
632
- "editorCmHidden": "W-zNGW_editorCmHidden",
633
- "browserBlockedButton": "W-zNGW_browserBlockedButton",
634
- "paneDrop": "W-zNGW_paneDrop",
591
+ "gitDiff": "W-zNGW_gitDiff",
592
+ "explorerName": "W-zNGW_explorerName",
635
593
  "selectionPopup": "W-zNGW_selectionPopup",
636
- "tabActive": "W-zNGW_tabActive",
594
+ "gitDiffCtx": "W-zNGW_gitDiffCtx",
637
595
  "gitCommitInput": "W-zNGW_gitCommitInput",
596
+ "editorImageWrap": "W-zNGW_editorImageWrap",
597
+ "browserStart": "W-zNGW_browserStart",
598
+ "explorerBody": "W-zNGW_explorerBody",
599
+ "editorPdf": "W-zNGW_editorPdf",
638
600
  "gitCommitButton": "W-zNGW_gitCommitButton",
601
+ "splitRow": "W-zNGW_splitRow",
602
+ "editorCmHidden": "W-zNGW_editorCmHidden",
603
+ "terminalBannerUrl": "W-zNGW_terminalBannerUrl",
604
+ "gitLogMore": "W-zNGW_gitLogMore",
605
+ "boundaryError": "W-zNGW_boundaryError",
606
+ "gitLogRef": "W-zNGW_gitLogRef",
607
+ "editorDownloadLink": "W-zNGW_editorDownloadLink",
608
+ "gitDiffFile": "W-zNGW_gitDiffFile",
609
+ "gitBranchSelect": "W-zNGW_gitBranchSelect",
610
+ "bottomResize": "W-zNGW_bottomResize",
611
+ "gitError": "W-zNGW_gitError",
612
+ "tabClose": "W-zNGW_tabClose",
613
+ "explorerRoot": "W-zNGW_explorerRoot",
614
+ "editorPptxToolbar": "W-zNGW_editorPptxToolbar",
615
+ "editorHeader": "W-zNGW_editorHeader",
616
+ "editorPdfDragShield": "W-zNGW_editorPdfDragShield",
617
+ "gitBadge": "W-zNGW_gitBadge",
618
+ "gitDiffNum": "W-zNGW_gitDiffNum",
619
+ "producedLabel": "W-zNGW_producedLabel",
620
+ "gitDiffMeta": "W-zNGW_gitDiffMeta",
621
+ "dropCenter": "W-zNGW_dropCenter",
622
+ "editorError": "W-zNGW_editorError",
623
+ "gitHeader": "W-zNGW_gitHeader",
624
+ "gitRow": "W-zNGW_gitRow",
625
+ "gitCommit": "W-zNGW_gitCommit",
639
626
  "editorOfficeOverlay": "W-zNGW_editorOfficeOverlay",
627
+ "gitLogMeta": "W-zNGW_gitLogMeta",
628
+ "toggleButton": "W-zNGW_toggleButton",
629
+ "editorPptx": "W-zNGW_editorPptx",
630
+ "git": "W-zNGW_git",
640
631
  "gitDiffFileTag": "W-zNGW_gitDiffFileTag",
641
- "toggleCluster": "W-zNGW_toggleCluster",
632
+ "editorBinary": "W-zNGW_editorBinary",
633
+ "gitDiffTabHeader": "W-zNGW_gitDiffTabHeader",
634
+ "dividerActive": "W-zNGW_dividerActive",
635
+ "paneTab": "W-zNGW_paneTab",
636
+ "panelResizeActive": "W-zNGW_panelResizeActive",
637
+ "producedMore": "W-zNGW_producedMore",
638
+ "dropOverlay": "W-zNGW_dropOverlay",
639
+ "dropLeft": "W-zNGW_dropLeft",
640
+ "browserBlockedActions": "W-zNGW_browserBlockedActions",
641
+ "tab": "W-zNGW_tab",
642
+ "paneEmptyCards": "W-zNGW_paneEmptyCards",
642
643
  "dividerRow": "W-zNGW_dividerRow",
643
- "terminalWrap": "W-zNGW_terminalWrap",
644
- "pane": "W-zNGW_pane",
645
- "editorHeader": "W-zNGW_editorHeader",
646
- "gitCommit": "W-zNGW_gitCommit",
647
- "splitCol": "W-zNGW_splitCol",
648
- "editor": "W-zNGW_editor",
649
644
  "dropUp": "W-zNGW_dropUp",
650
- "explorerEmpty": "W-zNGW_explorerEmpty",
651
- "editorDocxZoom": "W-zNGW_editorDocxZoom",
652
- "editorCm": "W-zNGW_editorCm",
653
- "browserStart": "W-zNGW_browserStart",
654
- "editorPdfFrame": "W-zNGW_editorPdfFrame",
655
- "editorModeActive": "W-zNGW_editorModeActive",
656
- "sandboxStatusOff": "W-zNGW_sandboxStatusOff",
657
- "editorXlsx": "W-zNGW_editorXlsx",
658
- "editorPptxStage": "W-zNGW_editorPptxStage",
659
- "editorBinaryNotice": "W-zNGW_editorBinaryNotice",
660
- "explorerRow": "W-zNGW_explorerRow",
661
645
  "paneCard": "W-zNGW_paneCard",
662
- "gitRow": "W-zNGW_gitRow",
663
- "gitBadge": "W-zNGW_gitBadge",
646
+ "editorBinaryNotice": "W-zNGW_editorBinaryNotice",
647
+ "panelHidden": "W-zNGW_panelHidden",
648
+ "sandboxStatusOn": "W-zNGW_sandboxStatusOn",
649
+ "editorDocxViewport": "W-zNGW_editorDocxViewport",
650
+ "gitName": "W-zNGW_gitName",
651
+ "gitDiffHunkSection": "W-zNGW_gitDiffHunkSection",
652
+ "bottomPanelHidden": "W-zNGW_bottomPanelHidden",
653
+ "explorerHeader": "W-zNGW_explorerHeader",
654
+ "editorPdfFrame": "W-zNGW_editorPdfFrame",
655
+ "paneContent": "W-zNGW_paneContent",
656
+ "tabBarDrop": "W-zNGW_tabBarDrop",
657
+ "sandboxAction": "W-zNGW_sandboxAction",
658
+ "editorPdfFrameBlocked": "W-zNGW_editorPdfFrameBlocked",
659
+ "gitLogRow": "W-zNGW_gitLogRow",
660
+ "gitLogLine2": "W-zNGW_gitLogLine2",
664
661
  "dirtyDot": "W-zNGW_dirtyDot",
665
- "browser": "W-zNGW_browser",
666
- "terminal": "W-zNGW_terminal",
667
- "gitDiffTab": "W-zNGW_gitDiffTab",
668
- "gitDiffFile": "W-zNGW_gitDiffFile",
669
- "explorerBody": "W-zNGW_explorerBody",
670
- "explorerDir": "W-zNGW_explorerDir",
671
- "editorHtml": "W-zNGW_editorHtml",
662
+ "editorXlsx": "W-zNGW_editorXlsx",
663
+ "editorImage": "W-zNGW_editorImage",
664
+ "editorPptxButton": "W-zNGW_editorPptxButton",
665
+ "gitRowMain": "W-zNGW_gitRowMain",
666
+ "editorDocxZoomRange": "W-zNGW_editorDocxZoomRange",
667
+ "workbench": "W-zNGW_workbench",
668
+ "editorDocxZoomValue": "W-zNGW_editorDocxZoomValue",
669
+ "editorBanner": "W-zNGW_editorBanner",
672
670
  "browserBar": "W-zNGW_browserBar",
673
- "editorStatusError": "W-zNGW_editorStatusError",
674
- "bottomResizeActive": "W-zNGW_bottomResizeActive",
675
- "bottomPanel": "W-zNGW_bottomPanel",
676
- "paneEmptyCards": "W-zNGW_paneEmptyCards",
677
- "browserBlockedDesc": "W-zNGW_browserBlockedDesc",
678
- "editorMd": "W-zNGW_editorMd",
679
- "terminalRetry": "W-zNGW_terminalRetry",
680
- "editorStatus": "W-zNGW_editorStatus"
671
+ "dsh-row-in": "W-zNGW_dsh-row-in",
672
+ "explorerError": "W-zNGW_explorerError",
673
+ "browserBlockedButton": "W-zNGW_browserBlockedButton",
674
+ "splitChild": "W-zNGW_splitChild",
675
+ "editorCm": "W-zNGW_editorCm",
676
+ "pane": "W-zNGW_pane",
677
+ "gitLink": "W-zNGW_gitLink",
678
+ "gitLogHash": "W-zNGW_gitLogHash",
679
+ "gitRowSelected": "W-zNGW_gitRowSelected",
680
+ "terminal": "W-zNGW_terminal"
681
681
  };
682
682
  //#endregion
683
683
  //#region src/client/office-shared.tsx