dsh-better-sidebar 0.10.0 → 0.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -35,41 +35,67 @@ 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` 可运行),Node.js ≥ 20、pnpm ≥ 10。插件已发布到 npm:**`dsh-better-sidebar@0.10.1`**(`@deepseek-ai/*` peer 依赖对齐宿主实际版本 `^0.1.0-rc.6` / `@deepseek-ai/cordis@^4.0.1`,同版本单实例)。挂载仍走 profile + `cordis.patch.yml`,不修改 DSH 源码。
39
39
 
40
- ```text
41
- 请帮我把 dsh-better-sidebar 插件安装到我的 web profile(插件 = VSCode 风格右侧侧边栏,仓库 https://github.com/dsh-external/DSH-better-sidebar):
40
+ ### 一键安装(推荐)
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'
42
+ ```sh
43
+ curl -fsSL https://raw.githubusercontent.com/omdsh-dev/DSH-better-sidebar/main/scripts/install.sh | bash
44
+ # 指定版本: curl -fsSL <同上> | bash -s 0.10.1
45
+ # 装完自动重启 DSH: curl -fsSL <同上> | bash -s -- --restart
46
+ ```
47
+
48
+ 脚本自动完成:登记 npm 依赖到 `~/.dsh/profiles/web/package.json`、幂等追加 `cordis.patch.yml` 挂载行、执行 `pnpm install`(版本默认 latest,可传参;`--dry-run` 只预览不落盘)。
49
+
50
+ ### 手动安装(npm 包方式)
51
+
52
+ ```text
53
+ 1. 在 ~/.dsh/profiles/web/package.json 的 dependencies 加 "dsh-better-sidebar": "^0.10.1"
54
+ 2. 在 ~/.dsh/profiles/web/cordis.patch.yml 追加挂载行:
55
+ - insert:
56
+ - id: better-sidebar
57
+ name: 'dsh-better-sidebar'
52
58
  3. 在 ~/.dsh/profiles/web 执行 pnpm install
53
59
  4. 重启 DSH 并硬刷新(Cmd/Ctrl+Shift+R)验证
54
60
  ```
55
61
 
56
- > 安装 = 依赖登记(等价 `dsh plugin --profile web add link:<路径>`)+ 一行挂载行。**DSH 以 npm 包启动(如 `npx -p @deepseek-ai/dsh@0.1.0-rc.6 dsh web`)同样可用**(v0.4.3 起实测验证)。
62
+ > 安装 = 依赖登记 + 一行挂载行。**DSH 以 npm 包启动(如 `npx -p @deepseek-ai/dsh@0.1.0-rc.6 dsh web`)同样可用**(v0.4.3 起实测验证)。
63
+
64
+ > 提示:若 profile 的 pnpm 因 `minimumReleaseAge`(发布 <24h 的新版本)拒绝安装,会自动向 `~/.dsh/profiles/web/pnpm-workspace.yaml` 追加 `minimumReleaseAgeExclude` 条目;也可手动补一行 `dsh-better-sidebar@<版本>`。
57
65
 
58
66
  ### 更新
59
67
 
60
68
  ```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 + 硬刷新
69
+ 1. ~/.dsh/profiles/web/package.json 里版本号改到新版(如 "^0.10.1")
70
+ 2. ~/.dsh/profiles/web 执行 pnpm install
71
+ 3. 重启 DSH 并硬刷新(Cmd/Ctrl+Shift+R)
64
72
  ```
65
73
 
74
+ <details>
75
+ <summary><b>从源码安装 / 开发(可选,替代 npm 方式)</b></summary>
76
+
77
+ 调试本地改动或跟随开发分支时,把依赖指向本地克隆并自行构建:
78
+
79
+ ```text
80
+ 1. git clone https://github.com/omdsh-dev/DSH-better-sidebar.git ~/Code/DSH-better-sidebar
81
+ cd ~/Code/DSH-better-sidebar && pnpm install && pnpm build
82
+ 2. ~/.dsh/profiles/web/package.json 的 dependencies 写 "dsh-better-sidebar": "link:<克隆目录绝对路径>"
83
+ 3. ~/.dsh/profiles/web/cordis.patch.yml 追加挂载行(同上)
84
+ 4. 在 ~/.dsh/profiles/web 执行 pnpm install
85
+ 5. 重启 DSH 并硬刷新
86
+ ```
87
+
88
+ 更新:`git pull && pnpm install && pnpm build` → 重启 DSH(仅 client 改动可硬刷新)。切回 npm 通道时,把依赖改回 `"dsh-better-sidebar": "^0.10.1"` 再 `pnpm install`。
89
+
90
+ </details>
91
+
66
92
  <details>
67
93
  <summary><b>通过 plugin-registry 安装(可选,与上述二选一)</b></summary>
68
94
 
69
95
  前置:DSH 已集成 [plugin-registry](https://github.com/dsh-external/plugin-registry)(`dsh registry` 可用)。**同时启用两个通道会双挂载**(Node 半挂两次、页面两个侧边栏)。
70
96
 
71
97
  ```sh
72
- git clone https://github.com/dsh-external/DSH-better-sidebar.git && cd DSH-better-sidebar
98
+ git clone https://github.com/omdsh-dev/DSH-better-sidebar.git && cd DSH-better-sidebar
73
99
  pnpm install && pnpm build
74
100
  node scripts/package-registry.mjs # 组装 registry/ 暂存(含清单 + 产物 + README,不入库)
75
101
  dsh registry install ./registry # 安装(默认禁用)
package/README_EN.md CHANGED
@@ -35,41 +35,67 @@ 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), Node.js ≥ 20, pnpm ≥ 10. The plugin is published to npm as **`dsh-better-sidebar@0.10.1`** (`@deepseek-ai/*` peers aligned with the host's actual versions `^0.1.0-rc.6` / `@deepseek-ai/cordis@^4.0.1`, single instance). Mounting still goes through the profile + `cordis.patch.yml`; 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
+ ### One-click 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'
42
+ ```sh
43
+ curl -fsSL https://raw.githubusercontent.com/omdsh-dev/DSH-better-sidebar/main/scripts/install.sh | bash
44
+ # Pick a version: curl -fsSL <same URL> | bash -s 0.10.1
45
+ # Auto-restart DSH: curl -fsSL <same URL> | bash -s -- --restart
46
+ ```
47
+
48
+ The script registers the npm dependency in `~/.dsh/profiles/web/package.json`, idempotently appends the `cordis.patch.yml` mount line, and runs `pnpm install` (version defaults to latest, pass one as an argument; `--dry-run` previews without writing anything).
49
+
50
+ ### Manual install (npm package)
51
+
52
+ ```text
53
+ 1. In ~/.dsh/profiles/web/package.json dependencies add "dsh-better-sidebar": "^0.10.1"
54
+ 2. Append the mount line to ~/.dsh/profiles/web/cordis.patch.yml:
55
+ - insert:
56
+ - id: better-sidebar
57
+ name: 'dsh-better-sidebar'
52
58
  3. Run pnpm install in ~/.dsh/profiles/web
53
59
  4. Restart DSH and hard-refresh (Cmd/Ctrl+Shift+R) to verify
54
60
  ```
55
61
 
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).
62
+ > Installation = dependency registration + 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).
63
+
64
+ > Note: if the profile's 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.
57
65
 
58
66
  ### Updating
59
67
 
60
68
  ```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
69
+ 1. Bump the version range in ~/.dsh/profiles/web/package.json (e.g. "^0.10.1")
70
+ 2. Run pnpm install in ~/.dsh/profiles/web
71
+ 3. Restart DSH and hard-refresh (Cmd/Ctrl+Shift+R)
64
72
  ```
65
73
 
74
+ <details>
75
+ <summary><b>Install from source / develop (optional — alternative to the npm flow)</b></summary>
76
+
77
+ To debug local changes or track the dev branch, point the dependency at a local clone and build it yourself:
78
+
79
+ ```text
80
+ 1. git clone https://github.com/omdsh-dev/DSH-better-sidebar.git ~/Code/DSH-better-sidebar
81
+ cd ~/Code/DSH-better-sidebar && pnpm install && pnpm build
82
+ 2. In ~/.dsh/profiles/web/package.json dependencies write "dsh-better-sidebar": "link:<absolute path of the clone>"
83
+ 3. Append the mount line to ~/.dsh/profiles/web/cordis.patch.yml (same as above)
84
+ 4. Run pnpm install in ~/.dsh/profiles/web
85
+ 5. Restart DSH and hard-refresh
86
+ ```
87
+
88
+ 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.1"` and re-run `pnpm install`.
89
+
90
+ </details>
91
+
66
92
  <details>
67
93
  <summary><b>Install via plugin-registry (optional — use either this or the main flow)</b></summary>
68
94
 
69
95
  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
96
 
71
97
  ```sh
72
- git clone https://github.com/dsh-external/DSH-better-sidebar.git && cd DSH-better-sidebar
98
+ git clone https://github.com/omdsh-dev/DSH-better-sidebar.git && cd DSH-better-sidebar
73
99
  pnpm install && pnpm build
74
100
  node scripts/package-registry.mjs # assemble the registry/ staging (manifest + artifacts + README, not committed)
75
101
  dsh registry install ./registry # install (disabled by default)
@@ -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",
512
- "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",
505
+ "explorerName": "W-zNGW_explorerName",
506
+ "browserBar": "W-zNGW_browserBar",
507
+ "producedLabel": "W-zNGW_producedLabel",
508
+ "tabClose": "W-zNGW_tabClose",
509
+ "paneCard": "W-zNGW_paneCard",
510
+ "gitError": "W-zNGW_gitError",
511
+ "gitDiffCtx": "W-zNGW_gitDiffCtx",
512
+ "editorError": "W-zNGW_editorError",
513
+ "gitCommitInput": "W-zNGW_gitCommitInput",
514
+ "bottomClose": "W-zNGW_bottomClose",
515
+ "pane": "W-zNGW_pane",
516
+ "browserBlocked": "W-zNGW_browserBlocked",
517
+ "editorStatusError": "W-zNGW_editorStatusError",
518
+ "orphanedType": "W-zNGW_orphanedType",
519
+ "toggleButton": "W-zNGW_toggleButton",
518
520
  "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",
521
+ "terminalBannerUrl": "W-zNGW_terminalBannerUrl",
522
+ "terminalRetry": "W-zNGW_terminalRetry",
523
+ "gitDiffTab": "W-zNGW_gitDiffTab",
524
+ "tabList": "W-zNGW_tabList",
525
+ "workbench": "W-zNGW_workbench",
526
+ "browserBlockedTitle": "W-zNGW_browserBlockedTitle",
527
+ "sandboxAction": "W-zNGW_sandboxAction",
528
+ "bottomPanel": "W-zNGW_bottomPanel",
529
+ "gitDiffFileTag": "W-zNGW_gitDiffFileTag",
524
530
  "sandboxStatus": "W-zNGW_sandboxStatus",
525
- "editorError": "W-zNGW_editorError",
526
- "gitDiffHunk": "W-zNGW_gitDiffHunk",
531
+ "browserBlockedButton": "W-zNGW_browserBlockedButton",
532
+ "editorModeActive": "W-zNGW_editorModeActive",
533
+ "editorDocxWrap": "W-zNGW_editorDocxWrap",
534
+ "gitDiffFile": "W-zNGW_gitDiffFile",
535
+ "gitDiffFileOld": "W-zNGW_gitDiffFileOld",
536
+ "gitCommitButton": "W-zNGW_gitCommitButton",
537
+ "splitRow": "W-zNGW_splitRow",
538
+ "toggleCluster": "W-zNGW_toggleCluster",
539
+ "browserStart": "W-zNGW_browserStart",
540
+ "dropDown": "W-zNGW_dropDown",
541
+ "dropCenter": "W-zNGW_dropCenter",
542
+ "editorPptxStage": "W-zNGW_editorPptxStage",
543
+ "dividerRow": "W-zNGW_dividerRow",
544
+ "terminal": "W-zNGW_terminal",
545
+ "gitRow": "W-zNGW_gitRow",
546
+ "editorHeader": "W-zNGW_editorHeader",
547
+ "gitDiffLine": "W-zNGW_gitDiffLine",
548
+ "editorCmHidden": "W-zNGW_editorCmHidden",
549
+ "explorerEmpty": "W-zNGW_explorerEmpty",
550
+ "gitLogRow": "W-zNGW_gitLogRow",
527
551
  "gitLogHash": "W-zNGW_gitLogHash",
528
- "editorPptxHost": "W-zNGW_editorPptxHost",
529
- "editorPlaceholder": "W-zNGW_editorPlaceholder",
530
- "dropRight": "W-zNGW_dropRight",
531
- "panel": "W-zNGW_panel",
532
- "tabBarDrop": "W-zNGW_tabBarDrop",
552
+ "gitLogRef": "W-zNGW_gitLogRef",
553
+ "editorBinary": "W-zNGW_editorBinary",
554
+ "dropLeft": "W-zNGW_dropLeft",
533
555
  "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",
556
+ "editorImageWrap": "W-zNGW_editorImageWrap",
542
557
  "editorImage": "W-zNGW_editorImage",
543
- "gitConfirmDesc": "W-zNGW_gitConfirmDesc",
544
- "editorDocxZoomRange": "W-zNGW_editorDocxZoomRange",
545
- "gitLogRow": "W-zNGW_gitLogRow",
546
- "editorDocx": "W-zNGW_editorDocx",
558
+ "splitCol": "W-zNGW_splitCol",
559
+ "paneTabHidden": "W-zNGW_paneTabHidden",
560
+ "gitCommit": "W-zNGW_gitCommit",
561
+ "panelHidden": "W-zNGW_panelHidden",
562
+ "panelResize": "W-zNGW_panelResize",
563
+ "editorXlsx": "W-zNGW_editorXlsx",
564
+ "editorPptxPosition": "W-zNGW_editorPptxPosition",
565
+ "git": "W-zNGW_git",
566
+ "explorerRoot": "W-zNGW_explorerRoot",
567
+ "tabBar": "W-zNGW_tabBar",
568
+ "editor": "W-zNGW_editor",
569
+ "tabBarPlus": "W-zNGW_tabBarPlus",
570
+ "gitName": "W-zNGW_gitName",
571
+ "gitDiffHunk": "W-zNGW_gitDiffHunk",
572
+ "explorerHeader": "W-zNGW_explorerHeader",
547
573
  "editorBanner": "W-zNGW_editorBanner",
548
- "panelBody": "W-zNGW_panelBody",
549
- "sandboxStatusOn": "W-zNGW_sandboxStatusOn",
550
- "editorPdfStage": "W-zNGW_editorPdfStage",
574
+ "editorDocxZoomRange": "W-zNGW_editorDocxZoomRange",
575
+ "editorCm": "W-zNGW_editorCm",
576
+ "explorerError": "W-zNGW_explorerError",
577
+ "editorHtml": "W-zNGW_editorHtml",
578
+ "editorMd": "W-zNGW_editorMd",
579
+ "editorPdfDragShieldActive": "W-zNGW_editorPdfDragShieldActive",
580
+ "gitDiffTabTitle": "W-zNGW_gitDiffTabTitle",
581
+ "gitDiffDel": "W-zNGW_gitDiffDel",
582
+ "explorerDir": "W-zNGW_explorerDir",
551
583
  "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",
584
+ "divider": "W-zNGW_divider",
585
+ "dirtyDot": "W-zNGW_dirtyDot",
586
+ "editorBinaryNotice": "W-zNGW_editorBinaryNotice",
587
+ "gitDiffFilePath": "W-zNGW_gitDiffFilePath",
563
588
  "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",
589
+ "gitRowSelected": "W-zNGW_gitRowSelected",
590
+ "paneDrop": "W-zNGW_paneDrop",
591
+ "gitLogSubject": "W-zNGW_gitLogSubject",
571
592
  "gitDiffHunkSection": "W-zNGW_gitDiffHunkSection",
572
- "gitDiffMetaText": "W-zNGW_gitDiffMetaText",
573
- "gitLogLine1": "W-zNGW_gitLogLine1",
574
- "editorModeButton": "W-zNGW_editorModeButton",
575
- "gitDiffDel": "W-zNGW_gitDiffDel",
576
- "panelHidden": "W-zNGW_panelHidden",
577
- "editorBinary": "W-zNGW_editorBinary",
578
- "editorDocxZoomHint": "W-zNGW_editorDocxZoomHint",
579
- "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
593
  "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
- "tabTitle": "W-zNGW_tabTitle",
600
- "gitName": "W-zNGW_gitName",
601
- "explorerRoot": "W-zNGW_explorerRoot",
602
- "gitDiffLine": "W-zNGW_gitDiffLine",
603
- "bottomClose": "W-zNGW_bottomClose",
604
- "sandboxStatusText": "W-zNGW_sandboxStatusText",
605
- "gitDiffMeta": "W-zNGW_gitDiffMeta",
594
+ "editorPdfFrame": "W-zNGW_editorPdfFrame",
595
+ "explorerRow": "W-zNGW_explorerRow",
596
+ "cornerHandle": "W-zNGW_cornerHandle",
597
+ "tabBarDrop": "W-zNGW_tabBarDrop",
598
+ "editorTitle": "W-zNGW_editorTitle",
599
+ "dropUp": "W-zNGW_dropUp",
600
+ "browserInput": "W-zNGW_browserInput",
601
+ "editorDocxZoom": "W-zNGW_editorDocxZoom",
606
602
  "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",
603
+ "explorerHidden": "W-zNGW_explorerHidden",
604
+ "producedChip": "W-zNGW_producedChip",
605
+ "explorerBody": "W-zNGW_explorerBody",
606
+ "editorDocxViewport": "W-zNGW_editorDocxViewport",
607
+ "gitDiffNum": "W-zNGW_gitDiffNum",
608
+ "producedRow": "W-zNGW_producedRow",
612
609
  "gitDiffHunkHeader": "W-zNGW_gitDiffHunkHeader",
613
- "bottomResize": "W-zNGW_bottomResize",
610
+ "panelResizeActive": "W-zNGW_panelResizeActive",
611
+ "gitDiffExpand": "W-zNGW_gitDiffExpand",
612
+ "editorUniverHost": "W-zNGW_editorUniverHost",
613
+ "editorPptxToolbar": "W-zNGW_editorPptxToolbar",
614
+ "terminalBanner": "W-zNGW_terminalBanner",
614
615
  "paneTab": "W-zNGW_paneTab",
615
- "paneContent": "W-zNGW_paneContent",
616
- "gitEmpty": "W-zNGW_gitEmpty",
616
+ "panel": "W-zNGW_panel",
617
+ "bottomResize": "W-zNGW_bottomResize",
618
+ "editorDownloadLink": "W-zNGW_editorDownloadLink",
617
619
  "browserMessage": "W-zNGW_browserMessage",
618
- "iconButton": "W-zNGW_iconButton",
619
- "git": "W-zNGW_git",
620
- "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",
620
+ "browserBlockedActions": "W-zNGW_browserBlockedActions",
621
+ "split": "W-zNGW_split",
622
+ "editorModeToggle": "W-zNGW_editorModeToggle",
623
+ "tabTitle": "W-zNGW_tabTitle",
624
+ "dividerActive": "W-zNGW_dividerActive",
625
+ "paneContent": "W-zNGW_paneContent",
626
+ "paneEmptyCards": "W-zNGW_paneEmptyCards",
626
627
  "editorPptx": "W-zNGW_editorPptx",
627
- "terminalBanner": "W-zNGW_terminalBanner",
628
- "dropDown": "W-zNGW_dropDown",
628
+ "editorPptxHost": "W-zNGW_editorPptxHost",
629
+ "gitSectionHeader": "W-zNGW_gitSectionHeader",
630
+ "gitLink": "W-zNGW_gitLink",
631
+ "gitBadge": "W-zNGW_gitBadge",
632
+ "gitDiffCode": "W-zNGW_gitDiffCode",
633
+ "gitSection": "W-zNGW_gitSection",
634
+ "editorDocxZoomValue": "W-zNGW_editorDocxZoomValue",
635
+ "editorStatus": "W-zNGW_editorStatus",
636
+ "tabActive": "W-zNGW_tabActive",
637
+ "gitBranchSelect": "W-zNGW_gitBranchSelect",
638
+ "editorPdfStage": "W-zNGW_editorPdfStage",
639
+ "gitLogMore": "W-zNGW_gitLogMore",
640
+ "editorDocxZoomHint": "W-zNGW_editorDocxZoomHint",
629
641
  "gitPlaceholder": "W-zNGW_gitPlaceholder",
630
- "browserInput": "W-zNGW_browserInput",
642
+ "editorPlaceholder": "W-zNGW_editorPlaceholder",
643
+ "sandboxStatusOn": "W-zNGW_sandboxStatusOn",
644
+ "editorOfficeOverlay": "W-zNGW_editorOfficeOverlay",
645
+ "editorPdfDragShield": "W-zNGW_editorPdfDragShield",
646
+ "gitLogMeta": "W-zNGW_gitLogMeta",
647
+ "gitLogLine1": "W-zNGW_gitLogLine1",
648
+ "boundaryError": "W-zNGW_boundaryError",
649
+ "dropOverlay": "W-zNGW_dropOverlay",
650
+ "sandboxStatusOff": "W-zNGW_sandboxStatusOff",
651
+ "explorer": "W-zNGW_explorer",
631
652
  "browserFrame": "W-zNGW_browserFrame",
632
- "editorCmHidden": "W-zNGW_editorCmHidden",
633
- "browserBlockedButton": "W-zNGW_browserBlockedButton",
634
- "paneDrop": "W-zNGW_paneDrop",
653
+ "browserBlockedDesc": "W-zNGW_browserBlockedDesc",
654
+ "gitDiffAdd": "W-zNGW_gitDiffAdd",
655
+ "tab": "W-zNGW_tab",
656
+ "producedMore": "W-zNGW_producedMore",
657
+ "gitDiffMeta": "W-zNGW_gitDiffMeta",
658
+ "editorPdfToolbar": "W-zNGW_editorPdfToolbar",
659
+ "dropRight": "W-zNGW_dropRight",
660
+ "iconButton": "W-zNGW_iconButton",
661
+ "sandboxStatusText": "W-zNGW_sandboxStatusText",
635
662
  "selectionPopup": "W-zNGW_selectionPopup",
636
- "tabActive": "W-zNGW_tabActive",
637
- "gitCommitInput": "W-zNGW_gitCommitInput",
638
- "gitCommitButton": "W-zNGW_gitCommitButton",
639
- "editorOfficeOverlay": "W-zNGW_editorOfficeOverlay",
640
- "gitDiffFileTag": "W-zNGW_gitDiffFileTag",
641
- "toggleCluster": "W-zNGW_toggleCluster",
642
- "dividerRow": "W-zNGW_dividerRow",
643
663
  "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
- "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
- "paneCard": "W-zNGW_paneCard",
662
- "gitRow": "W-zNGW_gitRow",
663
- "gitBadge": "W-zNGW_gitBadge",
664
- "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",
672
- "browserBar": "W-zNGW_browserBar",
673
- "editorStatusError": "W-zNGW_editorStatusError",
664
+ "gitEmpty": "W-zNGW_gitEmpty",
665
+ "gitDiffTabHeader": "W-zNGW_gitDiffTabHeader",
666
+ "gitLogLine2": "W-zNGW_gitLogLine2",
667
+ "explorerRef": "W-zNGW_explorerRef",
668
+ "editorModeButton": "W-zNGW_editorModeButton",
674
669
  "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"
670
+ "gitDiff": "W-zNGW_gitDiff",
671
+ "panelBody": "W-zNGW_panelBody",
672
+ "splitChild": "W-zNGW_splitChild",
673
+ "dividerCol": "W-zNGW_dividerCol",
674
+ "gitHeader": "W-zNGW_gitHeader",
675
+ "explorerCopied": "W-zNGW_explorerCopied",
676
+ "gitDiffMetaText": "W-zNGW_gitDiffMetaText",
677
+ "gitRowMain": "W-zNGW_gitRowMain",
678
+ "editorDocx": "W-zNGW_editorDocx",
679
+ "browser": "W-zNGW_browser",
680
+ "gitConfirmDesc": "W-zNGW_gitConfirmDesc"
681
681
  };
682
682
  //#endregion
683
683
  //#region src/client/office-shared.tsx