dsh-better-sidebar 0.10.2 → 0.10.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 +98 -19
- package/README_EN.md +98 -19
- package/lib/client-docx.js +151 -151
- package/lib/client-editor.js +156 -156
- package/lib/client-pptx.js +154 -154
- package/lib/client-registry.js +226 -213
- package/lib/client-terminal.js +154 -154
- package/lib/client-xlsx.js +156 -156
- package/lib/client.js +227 -214
- package/lib/types/client/intercept.d.ts +14 -1
- package/package.json +13 -12
- package/scripts/install.ps1 +242 -0
- package/scripts/install.sh +126 -50
- package/src/client/intercept.tsx +16 -3
package/README.md
CHANGED
|
@@ -35,39 +35,115 @@ https://github.com/user-attachments/assets/23187822-047e-45cc-b480-fe997bd55b86
|
|
|
35
35
|
|
|
36
36
|
## 🚀 安装
|
|
37
37
|
|
|
38
|
-
|
|
38
|
+
**前置**:已装好 DSH(`dsh web` 能正常运行),Node.js ≥ 20、pnpm ≥ 10。
|
|
39
39
|
|
|
40
|
-
|
|
40
|
+
**macOS / Linux**(Windows 装了 Git Bash 或 WSL 也可):
|
|
41
41
|
|
|
42
42
|
```sh
|
|
43
|
-
|
|
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
|
|
43
|
+
curl -fsSL https://raw.githubusercontent.com/omdsh-dev/DSH-better-sidebar/main/scripts/install.sh | bash
|
|
48
44
|
```
|
|
49
45
|
|
|
50
|
-
|
|
46
|
+
**Windows(PowerShell 5.1+ / pwsh)**:
|
|
47
|
+
|
|
48
|
+
```powershell
|
|
49
|
+
irm https://raw.githubusercontent.com/omdsh-dev/DSH-better-sidebar/main/scripts/install.ps1 | iex
|
|
50
|
+
```
|
|
51
51
|
|
|
52
|
-
|
|
52
|
+
装完**重启 DSH 并硬刷新**(Cmd/Ctrl+Shift+R)即可看到侧边栏。
|
|
53
53
|
|
|
54
|
-
|
|
54
|
+
<details>
|
|
55
|
+
<summary><b>指定版本 / 装完自动重启(可选)</b></summary>
|
|
55
56
|
|
|
56
57
|
```sh
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
58
|
+
# macOS / Linux
|
|
59
|
+
curl -fsSL https://raw.githubusercontent.com/omdsh-dev/DSH-better-sidebar/main/scripts/install.sh | bash -s 0.10.3 --restart
|
|
60
|
+
|
|
61
|
+
# Windows PowerShell
|
|
62
|
+
& ([scriptblock]::Create((irm 'https://raw.githubusercontent.com/omdsh-dev/DSH-better-sidebar/main/scripts/install.ps1'))) -Version 0.10.3 -Restart
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
不确定的话,可先加 `--dry-run`(PowerShell 用 `-DryRun`)预览步骤再执行。
|
|
66
|
+
|
|
67
|
+
</details>
|
|
68
|
+
|
|
69
|
+
<details>
|
|
70
|
+
<summary><b>手动安装(逐步命令,想看清每一步)</b></summary>
|
|
71
|
+
|
|
72
|
+
与一键脚本等价。**第 ③ 步可重复执行;①② 只需做一次。**
|
|
73
|
+
|
|
74
|
+
**macOS / Linux(bash)**:
|
|
75
|
+
|
|
76
|
+
```sh
|
|
77
|
+
cd ~/.dsh/profiles/web
|
|
78
|
+
|
|
79
|
+
# ① 放行 node-pty / protobufjs 的构建脚本(pnpm 11 默认拦截;pnpm 10 可跳过)
|
|
80
|
+
pnpm approve-builds --all
|
|
81
|
+
|
|
82
|
+
# ② 放行「发布不足 24h」的新版本(装老版本可跳过;若已有该键,把下面那行并入其下即可)
|
|
83
|
+
cat >> pnpm-workspace.yaml <<'EOF'
|
|
84
|
+
minimumReleaseAgeExclude:
|
|
85
|
+
- dsh-better-sidebar
|
|
86
|
+
EOF
|
|
87
|
+
|
|
88
|
+
# ③ 安装并自动挂载(不带 @版本 = npm 的 latest;固定版本写 dsh-better-sidebar@0.10.3)
|
|
89
|
+
npx -y --package @deepseek-ai/dsh dsh plugin --profile web add dsh-better-sidebar
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
**Windows(PowerShell)**:
|
|
93
|
+
|
|
94
|
+
```powershell
|
|
95
|
+
cd ~\.dsh\profiles\web
|
|
96
|
+
|
|
97
|
+
# ① 放行构建脚本
|
|
98
|
+
pnpm approve-builds --all
|
|
99
|
+
|
|
100
|
+
# ② 放行新版本(一次性;若已有该键,把 - dsh-better-sidebar 并入其下即可)
|
|
101
|
+
Add-Content -Path pnpm-workspace.yaml -Value "`nminimumReleaseAgeExclude:`n - dsh-better-sidebar"
|
|
102
|
+
|
|
103
|
+
# ③ 安装并自动挂载
|
|
104
|
+
npx -y --package @deepseek-ai/dsh dsh plugin --profile web add dsh-better-sidebar
|
|
60
105
|
```
|
|
61
106
|
|
|
62
|
-
|
|
107
|
+
</details>
|
|
108
|
+
|
|
109
|
+
<details>
|
|
110
|
+
<summary><b>脚本内部做了什么(技术细节)</b></summary>
|
|
111
|
+
|
|
112
|
+
一键脚本自动完成 4 件事(全部幂等,可安全重复执行):
|
|
113
|
+
|
|
114
|
+
1. 预写 `allowBuilds`(node-pty / protobufjs),规避 pnpm 11 的构建脚本拦截;
|
|
115
|
+
2. 预写 `minimumReleaseAgeExclude`,放行「发布不足 24 小时」的新版本;
|
|
116
|
+
3. 执行 `dsh plugin --profile web add dsh-better-sidebar`:登记依赖 → 识别包内 `dsh.bundle.patch` → 自动注册进 `dsh.profile.bundles` 挂载;
|
|
117
|
+
4. 清理旧版残留的手动挂载行,避免「双挂载」(页面出现两个侧边栏)。
|
|
118
|
+
|
|
119
|
+
`curl | bash` / `irm | iex` 会执行远程代码——脚本已随仓库开源(`scripts/install.sh` / `scripts/install.ps1`),可先下载审阅。插件以 npm 包 `dsh-better-sidebar@0.10.3` 发布,通过 `dsh.bundle.patch`(随包的 `cordis.patch.yml`)由官方 CLI 自动挂载,**不修改 DSH 源码**。
|
|
120
|
+
|
|
121
|
+
</details>
|
|
122
|
+
|
|
123
|
+
<details>
|
|
124
|
+
<summary><b>更新</b></summary>
|
|
63
125
|
|
|
64
126
|
```sh
|
|
65
|
-
dsh plugin --profile web add dsh-better-sidebar
|
|
127
|
+
dsh plugin --profile web add dsh-better-sidebar
|
|
66
128
|
```
|
|
67
129
|
|
|
68
|
-
|
|
130
|
+
或重跑一次一键脚本;也可把 `~/.dsh/profiles/web/package.json` 里的版本号改高后 `pnpm install`。改完**重启 DSH 并硬刷新**(Cmd/Ctrl+Shift+R)。
|
|
131
|
+
|
|
132
|
+
</details>
|
|
69
133
|
|
|
70
|
-
>
|
|
134
|
+
<details>
|
|
135
|
+
<summary><b>常见问题</b></summary>
|
|
136
|
+
|
|
137
|
+
| 现象 | 原因与解决 |
|
|
138
|
+
|---|---|
|
|
139
|
+
| 报 `Ignored build scripts` | pnpm 11 拦截构建脚本。跑 `pnpm approve-builds --all`(一键脚本已自动处理)。 |
|
|
140
|
+
| 报 `minimum release age` / 版本不足 24h | 装的版本发布不足 24 小时。等 24h 或重跑一次(pnpm 会自动补 `minimumReleaseAgeExclude`);一键脚本已自动处理。 |
|
|
141
|
+
| 报「找不到 profile 目录」 | 先跑一次 `dsh web`,让它初始化 `~/.dsh/profiles/web`。 |
|
|
142
|
+
| 页面出现**两个侧边栏** | 双挂载:`~/.dsh/profiles/web/cordis.patch.yml` 还留着旧的手动挂载行,删掉那段 `- insert: ... better-sidebar ...`(一键脚本会自动清)。 |
|
|
143
|
+
| Windows 下终端无法使用 | `node-pty` 依赖预编译二进制;若当前 Node 版本没有对应产物,需装编译工具链(VS Build Tools)。主流 Node 版本一般已有预编译。 |
|
|
144
|
+
| Windows 没有 bash / curl | 直接用 PowerShell 一键命令;或安装 Git Bash / WSL 再跑 bash 命令。 |
|
|
145
|
+
|
|
146
|
+
</details>
|
|
71
147
|
|
|
72
148
|
<details>
|
|
73
149
|
<summary><b>从源码安装 / 开发(可选,替代 npm 方式)</b></summary>
|
|
@@ -78,12 +154,15 @@ dsh plugin --profile web add dsh-better-sidebar@<新版>
|
|
|
78
154
|
1. git clone https://github.com/omdsh-dev/DSH-better-sidebar.git ~/Code/DSH-better-sidebar
|
|
79
155
|
cd ~/Code/DSH-better-sidebar && pnpm install && pnpm build
|
|
80
156
|
2. ~/.dsh/profiles/web/package.json 的 dependencies 写 "dsh-better-sidebar": "link:<克隆目录绝对路径>"
|
|
81
|
-
3. ~/.dsh/profiles/web/cordis.patch.yml
|
|
157
|
+
3. ~/.dsh/profiles/web/cordis.patch.yml 追加挂载行:
|
|
158
|
+
- insert:
|
|
159
|
+
- id: better-sidebar
|
|
160
|
+
name: 'dsh-better-sidebar'
|
|
82
161
|
4. 在 ~/.dsh/profiles/web 执行 pnpm install
|
|
83
162
|
5. 重启 DSH 并硬刷新
|
|
84
163
|
```
|
|
85
164
|
|
|
86
|
-
更新:`git pull && pnpm install && pnpm build` → 重启 DSH(仅 client 改动可硬刷新)。切回 npm 通道时,把依赖改回 `"dsh-better-sidebar": "^0.10.
|
|
165
|
+
更新:`git pull && pnpm install && pnpm build` → 重启 DSH(仅 client 改动可硬刷新)。切回 npm 通道时,把依赖改回 `"dsh-better-sidebar": "^0.10.3"` 再 `pnpm install`。
|
|
87
166
|
|
|
88
167
|
</details>
|
|
89
168
|
|
package/README_EN.md
CHANGED
|
@@ -35,39 +35,115 @@ https://github.com/user-attachments/assets/23187822-047e-45cc-b480-fe997bd55b86
|
|
|
35
35
|
|
|
36
36
|
## 🚀 Installation
|
|
37
37
|
|
|
38
|
-
Prerequisites
|
|
38
|
+
**Prerequisites**: DSH installed (`dsh web` boots), Node.js ≥ 20, pnpm ≥ 10.
|
|
39
39
|
|
|
40
|
-
|
|
40
|
+
**macOS / Linux** (also works in Git Bash / WSL on Windows):
|
|
41
41
|
|
|
42
42
|
```sh
|
|
43
|
-
|
|
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
|
|
43
|
+
curl -fsSL https://raw.githubusercontent.com/omdsh-dev/DSH-better-sidebar/main/scripts/install.sh | bash
|
|
48
44
|
```
|
|
49
45
|
|
|
50
|
-
|
|
46
|
+
**Windows (PowerShell 5.1+ / pwsh)**:
|
|
47
|
+
|
|
48
|
+
```powershell
|
|
49
|
+
irm https://raw.githubusercontent.com/omdsh-dev/DSH-better-sidebar/main/scripts/install.ps1 | iex
|
|
50
|
+
```
|
|
51
51
|
|
|
52
|
-
|
|
52
|
+
Then **restart DSH and hard-refresh** (Cmd/Ctrl+Shift+R) to see the sidebar.
|
|
53
53
|
|
|
54
|
-
|
|
54
|
+
<details>
|
|
55
|
+
<summary><b>Pin a version / auto-restart (optional)</b></summary>
|
|
55
56
|
|
|
56
57
|
```sh
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
58
|
+
# macOS / Linux
|
|
59
|
+
curl -fsSL https://raw.githubusercontent.com/omdsh-dev/DSH-better-sidebar/main/scripts/install.sh | bash -s 0.10.3 --restart
|
|
60
|
+
|
|
61
|
+
# Windows PowerShell
|
|
62
|
+
& ([scriptblock]::Create((irm 'https://raw.githubusercontent.com/omdsh-dev/DSH-better-sidebar/main/scripts/install.ps1'))) -Version 0.10.3 -Restart
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
Not sure? Add `--dry-run` (`-DryRun` in PowerShell) to preview before running.
|
|
66
|
+
|
|
67
|
+
</details>
|
|
68
|
+
|
|
69
|
+
<details>
|
|
70
|
+
<summary><b>Manual install (step by step)</b></summary>
|
|
71
|
+
|
|
72
|
+
Equivalent to the one-click script. **Step ③ is repeatable; ①② only need to run once.**
|
|
73
|
+
|
|
74
|
+
**macOS / Linux (bash)**:
|
|
75
|
+
|
|
76
|
+
```sh
|
|
77
|
+
cd ~/.dsh/profiles/web
|
|
78
|
+
|
|
79
|
+
# ① Allow node-pty / protobufjs build scripts (pnpm 11 blocks them by default; skip on pnpm 10)
|
|
80
|
+
pnpm approve-builds --all
|
|
81
|
+
|
|
82
|
+
# ② Allow versions published less than 24h ago (skip for older releases; if the key already exists, merge the line under it instead)
|
|
83
|
+
cat >> pnpm-workspace.yaml <<'EOF'
|
|
84
|
+
minimumReleaseAgeExclude:
|
|
85
|
+
- dsh-better-sidebar
|
|
86
|
+
EOF
|
|
87
|
+
|
|
88
|
+
# ③ Install and auto-mount (no @version = npm's latest; pin with dsh-better-sidebar@0.10.3)
|
|
89
|
+
npx -y --package @deepseek-ai/dsh dsh plugin --profile web add dsh-better-sidebar
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
**Windows (PowerShell)**:
|
|
93
|
+
|
|
94
|
+
```powershell
|
|
95
|
+
cd ~\.dsh\profiles\web
|
|
96
|
+
|
|
97
|
+
# ① Allow build scripts
|
|
98
|
+
pnpm approve-builds --all
|
|
99
|
+
|
|
100
|
+
# ② Allow fresh releases (once; if the key already exists, merge - dsh-better-sidebar under it instead)
|
|
101
|
+
Add-Content -Path pnpm-workspace.yaml -Value "`nminimumReleaseAgeExclude:`n - dsh-better-sidebar"
|
|
102
|
+
|
|
103
|
+
# ③ Install and auto-mount
|
|
104
|
+
npx -y --package @deepseek-ai/dsh dsh plugin --profile web add dsh-better-sidebar
|
|
60
105
|
```
|
|
61
106
|
|
|
62
|
-
|
|
107
|
+
</details>
|
|
108
|
+
|
|
109
|
+
<details>
|
|
110
|
+
<summary><b>What the script does (technical details)</b></summary>
|
|
111
|
+
|
|
112
|
+
The one-click script does four things, all idempotent (safe to re-run):
|
|
113
|
+
|
|
114
|
+
1. Pre-writes `allowBuilds` (node-pty / protobufjs) to dodge pnpm 11's build-script block;
|
|
115
|
+
2. Pre-writes `minimumReleaseAgeExclude` to allow versions younger than 24 hours;
|
|
116
|
+
3. Runs `dsh plugin --profile web add dsh-better-sidebar`: registers the dependency → detects `dsh.bundle.patch` → auto-appends the plugin to `dsh.profile.bundles`;
|
|
117
|
+
4. Removes any leftover hand-written mount line to avoid double-mounting (two sidebars on the page).
|
|
118
|
+
|
|
119
|
+
`curl | bash` / `irm | iex` executes remote code — the scripts are open source in the repo (`scripts/install.sh` / `scripts/install.ps1`); download and review them first if you prefer. The plugin ships as npm package `dsh-better-sidebar@0.10.3` and mounts via `dsh.bundle.patch` (the shipped `cordis.patch.yml`), so the DSH source is never modified.
|
|
120
|
+
|
|
121
|
+
</details>
|
|
122
|
+
|
|
123
|
+
<details>
|
|
124
|
+
<summary><b>Updating</b></summary>
|
|
63
125
|
|
|
64
126
|
```sh
|
|
65
|
-
dsh plugin --profile web add dsh-better-sidebar
|
|
127
|
+
dsh plugin --profile web add dsh-better-sidebar
|
|
66
128
|
```
|
|
67
129
|
|
|
68
|
-
or bump the version
|
|
130
|
+
or re-run the one-click script; or bump the version in `~/.dsh/profiles/web/package.json` (e.g. `"^0.10.3"`) and run `pnpm install`. Then restart DSH and hard-refresh (Cmd/Ctrl+Shift+R).
|
|
131
|
+
|
|
132
|
+
</details>
|
|
69
133
|
|
|
70
|
-
>
|
|
134
|
+
<details>
|
|
135
|
+
<summary><b>Troubleshooting</b></summary>
|
|
136
|
+
|
|
137
|
+
| Symptom | Cause & fix |
|
|
138
|
+
|---|---|
|
|
139
|
+
| `Ignored build scripts` | pnpm 11 blocked build scripts. Run `pnpm approve-builds --all` (the one-click script handles it). |
|
|
140
|
+
| `minimum release age` / version `< 24h` | The release is younger than 24 hours. Wait, or re-run once (pnpm auto-adds `minimumReleaseAgeExclude`); the one-click script handles it. |
|
|
141
|
+
| "profile directory not found" | Run `dsh web` once so it initializes `~/.dsh/profiles/web`. |
|
|
142
|
+
| Two sidebars on the page | Double-mount: `~/.dsh/profiles/web/cordis.patch.yml` still has the old hand-written `- insert: ... better-sidebar ...` line — delete it (the one-click script cleans it). |
|
|
143
|
+
| Terminal fails on Windows | `node-pty` relies on prebuilt binaries; if none match your Node version, install a build toolchain (VS Build Tools). Mainstream Node versions are usually covered. |
|
|
144
|
+
| No bash / curl on Windows | Use the PowerShell one-click command, or install Git Bash / WSL and run the bash commands. |
|
|
145
|
+
|
|
146
|
+
</details>
|
|
71
147
|
|
|
72
148
|
<details>
|
|
73
149
|
<summary><b>Install from source / develop (optional — alternative to the npm flow)</b></summary>
|
|
@@ -78,12 +154,15 @@ To debug local changes or track the dev branch, point the dependency at a local
|
|
|
78
154
|
1. git clone https://github.com/omdsh-dev/DSH-better-sidebar.git ~/Code/DSH-better-sidebar
|
|
79
155
|
cd ~/Code/DSH-better-sidebar && pnpm install && pnpm build
|
|
80
156
|
2. In ~/.dsh/profiles/web/package.json dependencies write "dsh-better-sidebar": "link:<absolute path of the clone>"
|
|
81
|
-
3. Append
|
|
157
|
+
3. Append this mount line to ~/.dsh/profiles/web/cordis.patch.yml:
|
|
158
|
+
- insert:
|
|
159
|
+
- id: better-sidebar
|
|
160
|
+
name: 'dsh-better-sidebar'
|
|
82
161
|
4. Run pnpm install in ~/.dsh/profiles/web
|
|
83
162
|
5. Restart DSH and hard-refresh
|
|
84
163
|
```
|
|
85
164
|
|
|
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.
|
|
165
|
+
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.3"` and re-run `pnpm install`.
|
|
87
166
|
|
|
88
167
|
</details>
|
|
89
168
|
|
package/lib/client-docx.js
CHANGED
|
@@ -502,182 +502,182 @@ globalThis.__dshChunks__["docx"] = (require) => {
|
|
|
502
502
|
document.head.appendChild(tag);
|
|
503
503
|
}
|
|
504
504
|
var sidebar_module_css_default = {
|
|
505
|
-
"
|
|
505
|
+
"splitChild": "W-zNGW_splitChild",
|
|
506
|
+
"editorModeToggle": "W-zNGW_editorModeToggle",
|
|
507
|
+
"tabBarPlus": "W-zNGW_tabBarPlus",
|
|
506
508
|
"terminalRetry": "W-zNGW_terminalRetry",
|
|
507
|
-
"editorMd": "W-zNGW_editorMd",
|
|
508
|
-
"gitLogSubject": "W-zNGW_gitLogSubject",
|
|
509
|
-
"toggleCluster": "W-zNGW_toggleCluster",
|
|
510
|
-
"panel": "W-zNGW_panel",
|
|
511
509
|
"sandboxStatusOff": "W-zNGW_sandboxStatusOff",
|
|
512
|
-
"
|
|
513
|
-
"
|
|
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",
|
|
523
|
-
"panelBody": "W-zNGW_panelBody",
|
|
524
|
-
"tabBarPlus": "W-zNGW_tabBarPlus",
|
|
510
|
+
"editorDocx": "W-zNGW_editorDocx",
|
|
511
|
+
"editorMd": "W-zNGW_editorMd",
|
|
525
512
|
"browserBlocked": "W-zNGW_browserBlocked",
|
|
526
|
-
"
|
|
527
|
-
"
|
|
513
|
+
"gitDiffFileOld": "W-zNGW_gitDiffFileOld",
|
|
514
|
+
"dropOverlay": "W-zNGW_dropOverlay",
|
|
515
|
+
"tabList": "W-zNGW_tabList",
|
|
516
|
+
"explorerCopied": "W-zNGW_explorerCopied",
|
|
528
517
|
"editorStatus": "W-zNGW_editorStatus",
|
|
529
|
-
"
|
|
518
|
+
"browserMessage": "W-zNGW_browserMessage",
|
|
519
|
+
"editorPdfDragShieldActive": "W-zNGW_editorPdfDragShieldActive",
|
|
520
|
+
"splitRow": "W-zNGW_splitRow",
|
|
530
521
|
"terminalBanner": "W-zNGW_terminalBanner",
|
|
522
|
+
"gitDiffFile": "W-zNGW_gitDiffFile",
|
|
531
523
|
"explorerRef": "W-zNGW_explorerRef",
|
|
524
|
+
"editorDocxZoomRange": "W-zNGW_editorDocxZoomRange",
|
|
525
|
+
"dirtyDot": "W-zNGW_dirtyDot",
|
|
526
|
+
"gitRow": "W-zNGW_gitRow",
|
|
532
527
|
"terminalWrap": "W-zNGW_terminalWrap",
|
|
533
|
-
"
|
|
534
|
-
"
|
|
535
|
-
"
|
|
536
|
-
"
|
|
528
|
+
"gitName": "W-zNGW_gitName",
|
|
529
|
+
"explorerEmpty": "W-zNGW_explorerEmpty",
|
|
530
|
+
"git": "W-zNGW_git",
|
|
531
|
+
"toggleButton": "W-zNGW_toggleButton",
|
|
532
|
+
"editorPptxButton": "W-zNGW_editorPptxButton",
|
|
533
|
+
"gitDiffFileTag": "W-zNGW_gitDiffFileTag",
|
|
534
|
+
"gitLogRow": "W-zNGW_gitLogRow",
|
|
535
|
+
"gitRowMain": "W-zNGW_gitRowMain",
|
|
536
|
+
"tabTitle": "W-zNGW_tabTitle",
|
|
537
|
+
"editorBinaryNotice": "W-zNGW_editorBinaryNotice",
|
|
538
|
+
"editorImage": "W-zNGW_editorImage",
|
|
537
539
|
"editorDocxWrap": "W-zNGW_editorDocxWrap",
|
|
538
|
-
"
|
|
539
|
-
"
|
|
540
|
+
"editorDocxZoomValue": "W-zNGW_editorDocxZoomValue",
|
|
541
|
+
"editorHtml": "W-zNGW_editorHtml",
|
|
542
|
+
"editorPdfFrame": "W-zNGW_editorPdfFrame",
|
|
543
|
+
"producedLabel": "W-zNGW_producedLabel",
|
|
544
|
+
"editorError": "W-zNGW_editorError",
|
|
545
|
+
"bottomPanelHidden": "W-zNGW_bottomPanelHidden",
|
|
546
|
+
"editorPptx": "W-zNGW_editorPptx",
|
|
547
|
+
"sandboxStatusOn": "W-zNGW_sandboxStatusOn",
|
|
548
|
+
"gitLogLine2": "W-zNGW_gitLogLine2",
|
|
549
|
+
"gitLogSubject": "W-zNGW_gitLogSubject",
|
|
550
|
+
"gitDiffHunk": "W-zNGW_gitDiffHunk",
|
|
551
|
+
"gitCommitInput": "W-zNGW_gitCommitInput",
|
|
552
|
+
"editorDocxViewport": "W-zNGW_editorDocxViewport",
|
|
553
|
+
"producedMore": "W-zNGW_producedMore",
|
|
554
|
+
"toggleCluster": "W-zNGW_toggleCluster",
|
|
555
|
+
"editorPdfStage": "W-zNGW_editorPdfStage",
|
|
556
|
+
"dividerActive": "W-zNGW_dividerActive",
|
|
557
|
+
"gitDiffDel": "W-zNGW_gitDiffDel",
|
|
558
|
+
"iconButton": "W-zNGW_iconButton",
|
|
559
|
+
"gitCommit": "W-zNGW_gitCommit",
|
|
560
|
+
"gitLogMeta": "W-zNGW_gitLogMeta",
|
|
561
|
+
"producedChip": "W-zNGW_producedChip",
|
|
562
|
+
"panelResize": "W-zNGW_panelResize",
|
|
563
|
+
"gitDiffHunkHeader": "W-zNGW_gitDiffHunkHeader",
|
|
564
|
+
"explorerBody": "W-zNGW_explorerBody",
|
|
565
|
+
"editorDocxZoomHint": "W-zNGW_editorDocxZoomHint",
|
|
566
|
+
"gitEmpty": "W-zNGW_gitEmpty",
|
|
567
|
+
"tabBarDrop": "W-zNGW_tabBarDrop",
|
|
568
|
+
"editorPdf": "W-zNGW_editorPdf",
|
|
569
|
+
"bottomResizeActive": "W-zNGW_bottomResizeActive",
|
|
570
|
+
"browserBlockedDesc": "W-zNGW_browserBlockedDesc",
|
|
571
|
+
"editorOfficeOverlay": "W-zNGW_editorOfficeOverlay",
|
|
572
|
+
"tabBar": "W-zNGW_tabBar",
|
|
573
|
+
"panelHidden": "W-zNGW_panelHidden",
|
|
574
|
+
"boundaryError": "W-zNGW_boundaryError",
|
|
575
|
+
"gitSectionHeader": "W-zNGW_gitSectionHeader",
|
|
576
|
+
"browserInput": "W-zNGW_browserInput",
|
|
577
|
+
"gitDiffHunkSection": "W-zNGW_gitDiffHunkSection",
|
|
578
|
+
"divider": "W-zNGW_divider",
|
|
579
|
+
"sandboxStatus": "W-zNGW_sandboxStatus",
|
|
580
|
+
"editorPptxHost": "W-zNGW_editorPptxHost",
|
|
540
581
|
"gitDiffAdd": "W-zNGW_gitDiffAdd",
|
|
541
|
-
"
|
|
582
|
+
"editorPdfDragShield": "W-zNGW_editorPdfDragShield",
|
|
583
|
+
"gitDiffTabHeader": "W-zNGW_gitDiffTabHeader",
|
|
584
|
+
"gitLink": "W-zNGW_gitLink",
|
|
585
|
+
"paneCard": "W-zNGW_paneCard",
|
|
586
|
+
"workbench": "W-zNGW_workbench",
|
|
587
|
+
"gitDiffMeta": "W-zNGW_gitDiffMeta",
|
|
588
|
+
"gitLogMore": "W-zNGW_gitLogMore",
|
|
589
|
+
"dropLeft": "W-zNGW_dropLeft",
|
|
542
590
|
"producedRow": "W-zNGW_producedRow",
|
|
543
|
-
"
|
|
544
|
-
"
|
|
591
|
+
"explorerError": "W-zNGW_explorerError",
|
|
592
|
+
"gitDiffMetaText": "W-zNGW_gitDiffMetaText",
|
|
593
|
+
"gitConfirmDesc": "W-zNGW_gitConfirmDesc",
|
|
545
594
|
"editorPlaceholder": "W-zNGW_editorPlaceholder",
|
|
546
|
-
"
|
|
547
|
-
"
|
|
548
|
-
"
|
|
595
|
+
"editorPptxToolbar": "W-zNGW_editorPptxToolbar",
|
|
596
|
+
"terminal": "W-zNGW_terminal",
|
|
597
|
+
"editorBanner": "W-zNGW_editorBanner",
|
|
598
|
+
"panelBody": "W-zNGW_panelBody",
|
|
599
|
+
"explorerHeader": "W-zNGW_explorerHeader",
|
|
600
|
+
"dsh-row-in": "W-zNGW_dsh-row-in",
|
|
601
|
+
"browserBlockedActions": "W-zNGW_browserBlockedActions",
|
|
602
|
+
"panelResizeActive": "W-zNGW_panelResizeActive",
|
|
549
603
|
"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
604
|
"orphanedType": "W-zNGW_orphanedType",
|
|
556
|
-
"
|
|
605
|
+
"gitSection": "W-zNGW_gitSection",
|
|
606
|
+
"gitLogRef": "W-zNGW_gitLogRef",
|
|
607
|
+
"dropUp": "W-zNGW_dropUp",
|
|
608
|
+
"cornerHandle": "W-zNGW_cornerHandle",
|
|
609
|
+
"explorerRoot": "W-zNGW_explorerRoot",
|
|
610
|
+
"split": "W-zNGW_split",
|
|
611
|
+
"pane": "W-zNGW_pane",
|
|
612
|
+
"bottomClose": "W-zNGW_bottomClose",
|
|
613
|
+
"bottomResize": "W-zNGW_bottomResize",
|
|
557
614
|
"splitCol": "W-zNGW_splitCol",
|
|
558
|
-
"
|
|
559
|
-
"gitDiffFileOld": "W-zNGW_gitDiffFileOld",
|
|
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",
|
|
567
|
-
"gitSectionHeader": "W-zNGW_gitSectionHeader",
|
|
568
|
-
"tabTitle": "W-zNGW_tabTitle",
|
|
569
|
-
"sandboxStatus": "W-zNGW_sandboxStatus",
|
|
615
|
+
"dropRight": "W-zNGW_dropRight",
|
|
570
616
|
"sandboxStatusText": "W-zNGW_sandboxStatusText",
|
|
571
|
-
"
|
|
572
|
-
"
|
|
573
|
-
"
|
|
574
|
-
"
|
|
575
|
-
"dividerCol": "W-zNGW_dividerCol",
|
|
576
|
-
"explorer": "W-zNGW_explorer",
|
|
577
|
-
"gitDiffHunk": "W-zNGW_gitDiffHunk",
|
|
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",
|
|
617
|
+
"editorCm": "W-zNGW_editorCm",
|
|
618
|
+
"paneEmptyCards": "W-zNGW_paneEmptyCards",
|
|
619
|
+
"editorXlsx": "W-zNGW_editorXlsx",
|
|
620
|
+
"editorPdfFrameBlocked": "W-zNGW_editorPdfFrameBlocked",
|
|
585
621
|
"editorPptxPosition": "W-zNGW_editorPptxPosition",
|
|
586
|
-
"
|
|
622
|
+
"paneTab": "W-zNGW_paneTab",
|
|
623
|
+
"paneDrop": "W-zNGW_paneDrop",
|
|
624
|
+
"dropCenter": "W-zNGW_dropCenter",
|
|
587
625
|
"editor": "W-zNGW_editor",
|
|
588
|
-
"
|
|
589
|
-
"
|
|
590
|
-
"
|
|
591
|
-
"
|
|
592
|
-
"
|
|
626
|
+
"sandboxAction": "W-zNGW_sandboxAction",
|
|
627
|
+
"browserBlockedButton": "W-zNGW_browserBlockedButton",
|
|
628
|
+
"terminalBannerUrl": "W-zNGW_terminalBannerUrl",
|
|
629
|
+
"gitRowSelected": "W-zNGW_gitRowSelected",
|
|
630
|
+
"gitLogLine1": "W-zNGW_gitLogLine1",
|
|
631
|
+
"dividerRow": "W-zNGW_dividerRow",
|
|
632
|
+
"browserBar": "W-zNGW_browserBar",
|
|
633
|
+
"panel": "W-zNGW_panel",
|
|
634
|
+
"browserBlockedTitle": "W-zNGW_browserBlockedTitle",
|
|
635
|
+
"tabActive": "W-zNGW_tabActive",
|
|
593
636
|
"selectionPopup": "W-zNGW_selectionPopup",
|
|
594
|
-
"gitDiffCtx": "W-zNGW_gitDiffCtx",
|
|
595
|
-
"gitCommitInput": "W-zNGW_gitCommitInput",
|
|
596
|
-
"editorImageWrap": "W-zNGW_editorImageWrap",
|
|
597
637
|
"browserStart": "W-zNGW_browserStart",
|
|
598
|
-
"
|
|
599
|
-
"
|
|
600
|
-
"
|
|
601
|
-
"
|
|
638
|
+
"gitDiffTab": "W-zNGW_gitDiffTab",
|
|
639
|
+
"browser": "W-zNGW_browser",
|
|
640
|
+
"dividerCol": "W-zNGW_dividerCol",
|
|
641
|
+
"tabClose": "W-zNGW_tabClose",
|
|
602
642
|
"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
643
|
"gitBranchSelect": "W-zNGW_gitBranchSelect",
|
|
610
|
-
"
|
|
611
|
-
"
|
|
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",
|
|
644
|
+
"gitDiffExpand": "W-zNGW_gitDiffExpand",
|
|
645
|
+
"editorModeActive": "W-zNGW_editorModeActive",
|
|
623
646
|
"gitHeader": "W-zNGW_gitHeader",
|
|
624
|
-
"
|
|
625
|
-
"
|
|
626
|
-
"
|
|
627
|
-
"
|
|
628
|
-
"
|
|
629
|
-
"
|
|
630
|
-
"
|
|
631
|
-
"
|
|
647
|
+
"gitCommitButton": "W-zNGW_gitCommitButton",
|
|
648
|
+
"gitLogHash": "W-zNGW_gitLogHash",
|
|
649
|
+
"gitDiffCtx": "W-zNGW_gitDiffCtx",
|
|
650
|
+
"editorDownloadLink": "W-zNGW_editorDownloadLink",
|
|
651
|
+
"browserFrame": "W-zNGW_browserFrame",
|
|
652
|
+
"editorDocxZoom": "W-zNGW_editorDocxZoom",
|
|
653
|
+
"gitDiffCode": "W-zNGW_gitDiffCode",
|
|
654
|
+
"bottomPanel": "W-zNGW_bottomPanel",
|
|
655
|
+
"gitDiffLine": "W-zNGW_gitDiffLine",
|
|
632
656
|
"editorBinary": "W-zNGW_editorBinary",
|
|
633
|
-
"
|
|
634
|
-
"
|
|
635
|
-
"
|
|
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",
|
|
657
|
+
"editorPdfToolbar": "W-zNGW_editorPdfToolbar",
|
|
658
|
+
"editorUniverHost": "W-zNGW_editorUniverHost",
|
|
659
|
+
"editorTitle": "W-zNGW_editorTitle",
|
|
641
660
|
"tab": "W-zNGW_tab",
|
|
642
|
-
"paneEmptyCards": "W-zNGW_paneEmptyCards",
|
|
643
|
-
"dividerRow": "W-zNGW_dividerRow",
|
|
644
|
-
"dropUp": "W-zNGW_dropUp",
|
|
645
|
-
"paneCard": "W-zNGW_paneCard",
|
|
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
661
|
"paneContent": "W-zNGW_paneContent",
|
|
656
|
-
"
|
|
657
|
-
"
|
|
658
|
-
"
|
|
659
|
-
"
|
|
660
|
-
"
|
|
661
|
-
"
|
|
662
|
-
"
|
|
663
|
-
"
|
|
664
|
-
"
|
|
665
|
-
"
|
|
666
|
-
"
|
|
667
|
-
"
|
|
668
|
-
"
|
|
669
|
-
"
|
|
670
|
-
"
|
|
671
|
-
"
|
|
672
|
-
"
|
|
673
|
-
"
|
|
674
|
-
"
|
|
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"
|
|
662
|
+
"editorImageWrap": "W-zNGW_editorImageWrap",
|
|
663
|
+
"explorerName": "W-zNGW_explorerName",
|
|
664
|
+
"explorerRow": "W-zNGW_explorerRow",
|
|
665
|
+
"editorHeader": "W-zNGW_editorHeader",
|
|
666
|
+
"sandboxDot": "W-zNGW_sandboxDot",
|
|
667
|
+
"gitBadge": "W-zNGW_gitBadge",
|
|
668
|
+
"gitDiffTabTitle": "W-zNGW_gitDiffTabTitle",
|
|
669
|
+
"editorStatusError": "W-zNGW_editorStatusError",
|
|
670
|
+
"editorPptxStage": "W-zNGW_editorPptxStage",
|
|
671
|
+
"gitPlaceholder": "W-zNGW_gitPlaceholder",
|
|
672
|
+
"gitDiffFilePath": "W-zNGW_gitDiffFilePath",
|
|
673
|
+
"gitDiff": "W-zNGW_gitDiff",
|
|
674
|
+
"paneTabHidden": "W-zNGW_paneTabHidden",
|
|
675
|
+
"explorerHidden": "W-zNGW_explorerHidden",
|
|
676
|
+
"dropDown": "W-zNGW_dropDown",
|
|
677
|
+
"editorModeButton": "W-zNGW_editorModeButton",
|
|
678
|
+
"gitError": "W-zNGW_gitError",
|
|
679
|
+
"gitDiffNum": "W-zNGW_gitDiffNum",
|
|
680
|
+
"explorer": "W-zNGW_explorer"
|
|
681
681
|
};
|
|
682
682
|
//#endregion
|
|
683
683
|
//#region src/client/office-shared.tsx
|