dsh-better-sidebar 0.10.1 → 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 +22 -24
- package/README_EN.md +22 -24
- package/cordis.patch.yml +19 -0
- package/lib/client-docx.js +156 -156
- package/lib/client-editor.js +153 -153
- package/lib/client-pptx.js +154 -154
- package/lib/client-registry.js +211 -211
- package/lib/client-terminal.js +152 -152
- package/lib/client-xlsx.js +153 -153
- package/lib/client.js +207 -207
- package/package.json +5 -1
- package/scripts/install.sh +88 -53
- package/src/client/Sidebar.tsx +15 -11
- package/src/client/layout.css +19 -14
package/README.md
CHANGED
|
@@ -35,42 +35,40 @@ https://github.com/user-attachments/assets/23187822-047e-45cc-b480-fe997bd55b86
|
|
|
35
35
|
|
|
36
36
|
## 🚀 安装
|
|
37
37
|
|
|
38
|
-
前置:已安装 DSH(`dsh web`
|
|
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
|
-
###
|
|
40
|
+
### 官方 CLI 安装(推荐)
|
|
41
41
|
|
|
42
42
|
```sh
|
|
43
|
-
|
|
44
|
-
#
|
|
45
|
-
|
|
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
|
|
46
48
|
```
|
|
47
49
|
|
|
48
|
-
|
|
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@<新版>`。
|
|
49
51
|
|
|
50
|
-
|
|
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 + 清理旧挂载行)。
|
|
51
53
|
|
|
52
|
-
|
|
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'
|
|
58
|
-
3. 在 ~/.dsh/profiles/web 执行 pnpm install
|
|
59
|
-
4. 重启 DSH 并硬刷新(Cmd/Ctrl+Shift+R)验证
|
|
60
|
-
```
|
|
54
|
+
### 一键脚本(自动处理 allowBuilds / 旧挂载行)
|
|
61
55
|
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
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
|
+
```
|
|
65
61
|
|
|
66
62
|
### 更新
|
|
67
63
|
|
|
68
|
-
```
|
|
69
|
-
|
|
70
|
-
2. 在 ~/.dsh/profiles/web 执行 pnpm install
|
|
71
|
-
3. 重启 DSH 并硬刷新(Cmd/Ctrl+Shift+R)
|
|
64
|
+
```sh
|
|
65
|
+
dsh plugin --profile web add dsh-better-sidebar@<新版>
|
|
72
66
|
```
|
|
73
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
|
+
|
|
74
72
|
<details>
|
|
75
73
|
<summary><b>从源码安装 / 开发(可选,替代 npm 方式)</b></summary>
|
|
76
74
|
|
|
@@ -85,7 +83,7 @@ curl -fsSL https://raw.githubusercontent.com/omdsh-dev/DSH-better-sidebar/main/s
|
|
|
85
83
|
5. 重启 DSH 并硬刷新
|
|
86
84
|
```
|
|
87
85
|
|
|
88
|
-
更新:`git pull && pnpm install && pnpm build` → 重启 DSH(仅 client 改动可硬刷新)。切回 npm 通道时,把依赖改回 `"dsh-better-sidebar": "^0.10.
|
|
86
|
+
更新:`git pull && pnpm install && pnpm build` → 重启 DSH(仅 client 改动可硬刷新)。切回 npm 通道时,把依赖改回 `"dsh-better-sidebar": "^0.10.2"` 再 `pnpm install`。
|
|
89
87
|
|
|
90
88
|
</details>
|
|
91
89
|
|
package/README_EN.md
CHANGED
|
@@ -35,42 +35,40 @@ 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. The plugin is published to npm as **`dsh-better-sidebar@0.10.
|
|
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
|
-
###
|
|
40
|
+
### Official CLI install (recommended)
|
|
41
41
|
|
|
42
42
|
```sh
|
|
43
|
-
|
|
44
|
-
#
|
|
45
|
-
|
|
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
|
|
46
48
|
```
|
|
47
49
|
|
|
48
|
-
The
|
|
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>`.
|
|
49
51
|
|
|
50
|
-
|
|
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).
|
|
51
53
|
|
|
52
|
-
|
|
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'
|
|
58
|
-
3. Run pnpm install in ~/.dsh/profiles/web
|
|
59
|
-
4. Restart DSH and hard-refresh (Cmd/Ctrl+Shift+R) to verify
|
|
60
|
-
```
|
|
54
|
+
### One-click script (handles allowBuilds / old mount line)
|
|
61
55
|
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
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
|
+
```
|
|
65
61
|
|
|
66
62
|
### Updating
|
|
67
63
|
|
|
68
|
-
```
|
|
69
|
-
|
|
70
|
-
2. Run pnpm install in ~/.dsh/profiles/web
|
|
71
|
-
3. Restart DSH and hard-refresh (Cmd/Ctrl+Shift+R)
|
|
64
|
+
```sh
|
|
65
|
+
dsh plugin --profile web add dsh-better-sidebar@<new>
|
|
72
66
|
```
|
|
73
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
|
+
|
|
74
72
|
<details>
|
|
75
73
|
<summary><b>Install from source / develop (optional — alternative to the npm flow)</b></summary>
|
|
76
74
|
|
|
@@ -85,7 +83,7 @@ To debug local changes or track the dev branch, point the dependency at a local
|
|
|
85
83
|
5. Restart DSH and hard-refresh
|
|
86
84
|
```
|
|
87
85
|
|
|
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.
|
|
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`.
|
|
89
87
|
|
|
90
88
|
</details>
|
|
91
89
|
|
package/cordis.patch.yml
ADDED
|
@@ -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'
|
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
|
-
"
|
|
506
|
-
"
|
|
507
|
-
"
|
|
508
|
-
"
|
|
509
|
-
"
|
|
510
|
-
"
|
|
511
|
-
"
|
|
512
|
-
"
|
|
513
|
-
"
|
|
505
|
+
"explorerEmpty": "W-zNGW_explorerEmpty",
|
|
506
|
+
"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
|
+
"sandboxStatusOff": "W-zNGW_sandboxStatusOff",
|
|
512
|
+
"editorUniverHost": "W-zNGW_editorUniverHost",
|
|
513
|
+
"gitDiffFilePath": "W-zNGW_gitDiffFilePath",
|
|
514
|
+
"iconButton": "W-zNGW_iconButton",
|
|
514
515
|
"bottomClose": "W-zNGW_bottomClose",
|
|
515
|
-
"
|
|
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",
|
|
516
525
|
"browserBlocked": "W-zNGW_browserBlocked",
|
|
526
|
+
"editorPdfStage": "W-zNGW_editorPdfStage",
|
|
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",
|
|
533
|
+
"gitDiffMetaText": "W-zNGW_gitDiffMetaText",
|
|
534
|
+
"paneDrop": "W-zNGW_paneDrop",
|
|
535
|
+
"gitDiffTabTitle": "W-zNGW_gitDiffTabTitle",
|
|
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",
|
|
517
543
|
"editorStatusError": "W-zNGW_editorStatusError",
|
|
518
|
-
"
|
|
519
|
-
"
|
|
520
|
-
"sandboxDot": "W-zNGW_sandboxDot",
|
|
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",
|
|
544
|
+
"paneTabHidden": "W-zNGW_paneTabHidden",
|
|
545
|
+
"editorPlaceholder": "W-zNGW_editorPlaceholder",
|
|
526
546
|
"browserBlockedTitle": "W-zNGW_browserBlockedTitle",
|
|
527
|
-
"
|
|
547
|
+
"gitDiffDel": "W-zNGW_gitDiffDel",
|
|
548
|
+
"bottomResizeActive": "W-zNGW_bottomResizeActive",
|
|
549
|
+
"explorerDir": "W-zNGW_explorerDir",
|
|
528
550
|
"bottomPanel": "W-zNGW_bottomPanel",
|
|
529
|
-
"
|
|
530
|
-
"sandboxStatus": "W-zNGW_sandboxStatus",
|
|
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",
|
|
551
|
+
"editorPdfDragShieldActive": "W-zNGW_editorPdfDragShieldActive",
|
|
547
552
|
"gitDiffLine": "W-zNGW_gitDiffLine",
|
|
548
|
-
"
|
|
549
|
-
"
|
|
550
|
-
"
|
|
551
|
-
"
|
|
552
|
-
"gitLogRef": "W-zNGW_gitLogRef",
|
|
553
|
-
"editorBinary": "W-zNGW_editorBinary",
|
|
554
|
-
"dropLeft": "W-zNGW_dropLeft",
|
|
555
|
-
"dsh-row-in": "W-zNGW_dsh-row-in",
|
|
556
|
-
"editorImageWrap": "W-zNGW_editorImageWrap",
|
|
557
|
-
"editorImage": "W-zNGW_editorImage",
|
|
553
|
+
"browserFrame": "W-zNGW_browserFrame",
|
|
554
|
+
"editorDocxZoom": "W-zNGW_editorDocxZoom",
|
|
555
|
+
"orphanedType": "W-zNGW_orphanedType",
|
|
556
|
+
"dropRight": "W-zNGW_dropRight",
|
|
558
557
|
"splitCol": "W-zNGW_splitCol",
|
|
559
|
-
"
|
|
560
|
-
"
|
|
561
|
-
"
|
|
558
|
+
"gitConfirmDesc": "W-zNGW_gitConfirmDesc",
|
|
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",
|
|
562
564
|
"panelResize": "W-zNGW_panelResize",
|
|
563
|
-
"
|
|
564
|
-
"
|
|
565
|
-
"
|
|
566
|
-
"
|
|
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",
|
|
570
|
+
"sandboxStatusText": "W-zNGW_sandboxStatusText",
|
|
571
|
+
"explorerCopied": "W-zNGW_explorerCopied",
|
|
572
|
+
"gitEmpty": "W-zNGW_gitEmpty",
|
|
573
|
+
"producedChip": "W-zNGW_producedChip",
|
|
567
574
|
"tabBar": "W-zNGW_tabBar",
|
|
568
|
-
"
|
|
569
|
-
"
|
|
570
|
-
"gitName": "W-zNGW_gitName",
|
|
575
|
+
"dividerCol": "W-zNGW_dividerCol",
|
|
576
|
+
"explorer": "W-zNGW_explorer",
|
|
571
577
|
"gitDiffHunk": "W-zNGW_gitDiffHunk",
|
|
572
|
-
"
|
|
573
|
-
"
|
|
574
|
-
"
|
|
575
|
-
"
|
|
576
|
-
"
|
|
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",
|
|
583
|
-
"bottomPanelHidden": "W-zNGW_bottomPanelHidden",
|
|
584
|
-
"divider": "W-zNGW_divider",
|
|
585
|
-
"dirtyDot": "W-zNGW_dirtyDot",
|
|
586
|
-
"editorBinaryNotice": "W-zNGW_editorBinaryNotice",
|
|
587
|
-
"gitDiffFilePath": "W-zNGW_gitDiffFilePath",
|
|
588
|
-
"editorPdfFrameBlocked": "W-zNGW_editorPdfFrameBlocked",
|
|
589
|
-
"gitRowSelected": "W-zNGW_gitRowSelected",
|
|
590
|
-
"paneDrop": "W-zNGW_paneDrop",
|
|
591
|
-
"gitLogSubject": "W-zNGW_gitLogSubject",
|
|
592
|
-
"gitDiffHunkSection": "W-zNGW_gitDiffHunkSection",
|
|
593
|
-
"editorPdf": "W-zNGW_editorPdf",
|
|
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",
|
|
602
|
-
"editorPptxButton": "W-zNGW_editorPptxButton",
|
|
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",
|
|
603
583
|
"explorerHidden": "W-zNGW_explorerHidden",
|
|
604
|
-
"
|
|
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",
|
|
590
|
+
"gitPlaceholder": "W-zNGW_gitPlaceholder",
|
|
591
|
+
"gitDiff": "W-zNGW_gitDiff",
|
|
592
|
+
"explorerName": "W-zNGW_explorerName",
|
|
593
|
+
"selectionPopup": "W-zNGW_selectionPopup",
|
|
594
|
+
"gitDiffCtx": "W-zNGW_gitDiffCtx",
|
|
595
|
+
"gitCommitInput": "W-zNGW_gitCommitInput",
|
|
596
|
+
"editorImageWrap": "W-zNGW_editorImageWrap",
|
|
597
|
+
"browserStart": "W-zNGW_browserStart",
|
|
605
598
|
"explorerBody": "W-zNGW_explorerBody",
|
|
606
|
-
"
|
|
607
|
-
"
|
|
608
|
-
"
|
|
609
|
-
"
|
|
610
|
-
"
|
|
611
|
-
"
|
|
612
|
-
"
|
|
613
|
-
"
|
|
614
|
-
"terminalBanner": "W-zNGW_terminalBanner",
|
|
615
|
-
"paneTab": "W-zNGW_paneTab",
|
|
616
|
-
"panel": "W-zNGW_panel",
|
|
617
|
-
"bottomResize": "W-zNGW_bottomResize",
|
|
599
|
+
"editorPdf": "W-zNGW_editorPdf",
|
|
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",
|
|
618
607
|
"editorDownloadLink": "W-zNGW_editorDownloadLink",
|
|
619
|
-
"
|
|
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",
|
|
627
|
-
"editorPptx": "W-zNGW_editorPptx",
|
|
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",
|
|
608
|
+
"gitDiffFile": "W-zNGW_gitDiffFile",
|
|
637
609
|
"gitBranchSelect": "W-zNGW_gitBranchSelect",
|
|
638
|
-
"
|
|
639
|
-
"
|
|
640
|
-
"
|
|
641
|
-
"
|
|
642
|
-
"
|
|
643
|
-
"
|
|
644
|
-
"editorOfficeOverlay": "W-zNGW_editorOfficeOverlay",
|
|
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",
|
|
645
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",
|
|
626
|
+
"editorOfficeOverlay": "W-zNGW_editorOfficeOverlay",
|
|
646
627
|
"gitLogMeta": "W-zNGW_gitLogMeta",
|
|
647
|
-
"
|
|
648
|
-
"
|
|
628
|
+
"toggleButton": "W-zNGW_toggleButton",
|
|
629
|
+
"editorPptx": "W-zNGW_editorPptx",
|
|
630
|
+
"git": "W-zNGW_git",
|
|
631
|
+
"gitDiffFileTag": "W-zNGW_gitDiffFileTag",
|
|
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",
|
|
649
638
|
"dropOverlay": "W-zNGW_dropOverlay",
|
|
650
|
-
"
|
|
651
|
-
"
|
|
652
|
-
"browserFrame": "W-zNGW_browserFrame",
|
|
653
|
-
"browserBlockedDesc": "W-zNGW_browserBlockedDesc",
|
|
654
|
-
"gitDiffAdd": "W-zNGW_gitDiffAdd",
|
|
639
|
+
"dropLeft": "W-zNGW_dropLeft",
|
|
640
|
+
"browserBlockedActions": "W-zNGW_browserBlockedActions",
|
|
655
641
|
"tab": "W-zNGW_tab",
|
|
656
|
-
"
|
|
657
|
-
"
|
|
658
|
-
"
|
|
659
|
-
"
|
|
660
|
-
"
|
|
661
|
-
"
|
|
662
|
-
"
|
|
663
|
-
"
|
|
664
|
-
"
|
|
665
|
-
"
|
|
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
|
+
"paneContent": "W-zNGW_paneContent",
|
|
656
|
+
"tabBarDrop": "W-zNGW_tabBarDrop",
|
|
657
|
+
"sandboxAction": "W-zNGW_sandboxAction",
|
|
658
|
+
"editorPdfFrameBlocked": "W-zNGW_editorPdfFrameBlocked",
|
|
659
|
+
"gitLogRow": "W-zNGW_gitLogRow",
|
|
666
660
|
"gitLogLine2": "W-zNGW_gitLogLine2",
|
|
667
|
-
"
|
|
668
|
-
"
|
|
669
|
-
"
|
|
670
|
-
"
|
|
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",
|
|
661
|
+
"dirtyDot": "W-zNGW_dirtyDot",
|
|
662
|
+
"editorXlsx": "W-zNGW_editorXlsx",
|
|
663
|
+
"editorImage": "W-zNGW_editorImage",
|
|
664
|
+
"editorPptxButton": "W-zNGW_editorPptxButton",
|
|
677
665
|
"gitRowMain": "W-zNGW_gitRowMain",
|
|
678
|
-
"
|
|
679
|
-
"
|
|
680
|
-
"
|
|
666
|
+
"editorDocxZoomRange": "W-zNGW_editorDocxZoomRange",
|
|
667
|
+
"workbench": "W-zNGW_workbench",
|
|
668
|
+
"editorDocxZoomValue": "W-zNGW_editorDocxZoomValue",
|
|
669
|
+
"editorBanner": "W-zNGW_editorBanner",
|
|
670
|
+
"browserBar": "W-zNGW_browserBar",
|
|
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
|