@young1lin/dsh-ui-gitworkbench 0.1.10 → 0.1.11
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/AGENTS.md +1 -1
- package/CHANGELOG.md +6 -0
- package/CHANGELOG_EN.md +6 -0
- package/README.md +2 -0
- package/lib/client.js +296 -296
- package/package.json +21 -1
package/AGENTS.md
CHANGED
|
@@ -87,7 +87,7 @@ Pure rules live in React/CSS-free modules so vitest can load them — `src/clien
|
|
|
87
87
|
- **UI copy is bilingual** (`src/client/locales.ts`, zh + en — add both keys); code comments and commit messages are English.
|
|
88
88
|
- **Commits:** conventional prefix, lowercase subject, a body explaining *why*, ending with a `Co-Authored-By:` trailer per model that worked on the change, ranked by token usage — credit the model(s) that actually wrote it, never a fixed name (history shows the spellings: `Claude Opus 5 (1M context) <noreply@anthropic.com>`, `GLM-5.3 <noreply@zhipuai.cn>`, `Grok-4.6 <noreply@x.ai>`). Remote is `origin` = github.com/young1lin/dsh-ui-gitworkbench; publishing is tag-driven — push `vX.Y.Z` and `.github/workflows/publish.yml` publishes to npm via Trusted Publishing (no local npm login; the workflow re-runs typecheck/tests/build itself).
|
|
89
89
|
- **Other agents may have uncommitted work in this tree** (e.g. `scripts/verify_worktree_ui.py`). Check `git status` first and commit with `git commit --only <paths>` — never sweep the tree, and don't touch files that aren't yours.
|
|
90
|
-
- `.npmrc` must keep `auto-install-peers=false` (dev-time weight control: the harness peers resolve from the web profile / linked checkout; letting pnpm auto-install the whole `@deepseek-ai/*` tree locally adds nothing). The peers
|
|
90
|
+
- `.npmrc` must keep `auto-install-peers=false` (dev-time weight control: the harness peers resolve from the web profile / linked checkout; letting pnpm auto-install the whole `@deepseek-ai/*` tree locally adds nothing). The peers are declared **optional** on purpose: every one of them is in `tsdown.config.ts`'s `CLIENT_EXTERNALS`, so the dsh shell shares them into its frozen module table at runtime and they are never meant to land in a consumer's tree — a dsh profile holds only the plugin, with `@deepseek-ai/*` one directory up. Keep the RANGES current anyway; they are what still checks compatibility when the peer is present. Do not trust the `latest` dist-tag of any `@deepseek-ai/*` package: it still points at the unusable `0.0.1-rc.1` line (README 6.14). `@deepseek-ai/*` imports in client code must be `import type` only — the bundle purity gate rejects value imports.
|
|
91
91
|
|
|
92
92
|
<!-- business-logic-skill: explore-first (managed by install_hooks.py) -->
|
|
93
93
|
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
本文件记录面向使用者的变更。格式参考 [Keep a Changelog](https://keepachangelog.com/zh-CN/1.1.0/),版本号遵循语义化版本。
|
|
4
4
|
|
|
5
|
+
## [0.1.11] - 2026-08-21
|
|
6
|
+
|
|
7
|
+
### 修复
|
|
8
|
+
|
|
9
|
+
- **安装插件时不再打印一屏 `missing peer` 告警**。`dsh plugin --profile web add` 会对六个 peer 全部报 missing,而插件其实完全正常。原因是这些 peer 一个都不该被安装:它们全在 `tsdown.config.ts` 的 `CLIENT_EXTERNALS` 里,dsh 外壳把它们共享进自己那张冻结模块表,由**加载插件的进程**在运行时提供。目录结构可以直接看出来——`~/.dsh/profiles/web/node_modules/` 里只有插件自己,`@deepseek-ai/*` 全在上一层 `~/.dsh/profiles/node_modules/`,Node 逐级向上解析所以运行时找得到,而 pnpm 的 peer 检查只看本层,于是全报 missing。这不是本包特有的:官方自己的 `dsh-client-ui-file-reference` 与 `dsh-file-reference` 在同一次安装里打印一模一样的告警。既然消费者不该安装它们,那按 npm 自己的定义它们就是 optional,现在 `peerDependenciesMeta` 如实声明了这一点。**版本范围一个字没改**——peer 真的在场时仍然照常校验兼容性。空目录装 `npm pack` 出的 tarball 验证(`auto-install-peers=false`,与 dsh profile 一致):改前 6 行 missing peer,改后零告警、exit 0,17 个 host 模块加 `client.js` 一个不少。
|
|
10
|
+
|
|
5
11
|
## [0.1.10] - 2026-08-20
|
|
6
12
|
|
|
7
13
|
性能专项:抽屉的开销从此与文件长度无关。
|
package/CHANGELOG_EN.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
User-facing changes, newest first. Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/); versioning follows SemVer.
|
|
4
4
|
|
|
5
|
+
## [0.1.11] - 2026-08-21
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- **Installing the plugin no longer prints a screen of `missing peer` warnings.** `dsh plugin --profile web add` reported all six peers as missing while the plugin worked perfectly. None of them should be installed: every one is in `tsdown.config.ts`'s `CLIENT_EXTERNALS`, shared into the dsh shell's frozen module table and provided at runtime by the process that loads the plugin. The directory layout shows it — `~/.dsh/profiles/web/node_modules/` holds only the plugin, while `@deepseek-ai/*` lives one level up in `~/.dsh/profiles/node_modules/`, which Node's upward resolution finds and pnpm's peer check (which only inspects the profile's own tree) does not. This is not specific to this package: DeepSeek's own `dsh-client-ui-file-reference` and `dsh-file-reference` print the identical warnings in the same install. A peer a consumer must not install is, by npm's own definition, optional, and `peerDependenciesMeta` now says so. **The version ranges are unchanged** — they still check compatibility when the peer IS present. Verified by installing the packed tarball into an empty directory with `auto-install-peers=false`, as a dsh profile has: six missing-peer lines before, no warnings and exit 0 after, with all 17 host modules and `client.js` present.
|
|
10
|
+
|
|
5
11
|
## [0.1.10] - 2026-08-20
|
|
6
12
|
|
|
7
13
|
A performance release: what the drawer costs no longer depends on how long the file is.
|
package/README.md
CHANGED
|
@@ -370,6 +370,8 @@ window.__ModuleLoader__.load({ id: "@young1lin/dsh-ui-gitworkbench", factory: (r
|
|
|
370
370
|
### 6.14 发布的 peer 范围不能写 `*`——`*` 按 `latest` dist-tag 解析
|
|
371
371
|
npm 7+ 自动安装 peer 时,`*` 走 **`latest` dist-tag**,不是「取版本列表最高」。`@deepseek-ai/*` 全系的 `latest` 长期停在 8 月 10 日的 `0.0.1-rc.1` 老线(那条线依赖**从未发布**的 `@deepseek-ai/dsh-compact`,公开安装必 404),能用的 `0.1.0-rc.x` 全挂 `next`。于是 0.1.2 之前任何不在 dsh profile 工作区里的裸 `npm i` 都炸 E404。规则:**peer 写显式区间**(cordis `^4.0.1-rc.1`、dsh 系 `^0.1.0-rc.2`),dsh 发新线时同步抬范围并验证 `npm pack` 出的 tarball 在空目录可装。注意 6.5 的 `auto-install-peers=false` 只管本仓库 pnpm 开发态,管不了用户侧 npm。
|
|
372
372
|
|
|
373
|
+
**补充(0.1.11)**:范围要留,但这些 peer 同时是 **optional**。它们全在 `tsdown.config.ts` 的 `CLIENT_EXTERNALS` 里——dsh 外壳把它们共享进自己那张冻结模块表,运行时由**加载插件的进程**提供,从来不该落进 profile 自己那层 `node_modules`。实测目录结构可以证明:`~/.dsh/profiles/web/node_modules/` 里只有插件自己,`@deepseek-ai/*` 全在上一层 `~/.dsh/profiles/node_modules/`,Node 逐级向上解析所以能找到;而 pnpm 的 peer 检查只看本层,于是把每一个都报成 missing——**官方自己的 `dsh-client-ui-file-reference` / `dsh-file-reference` 在同一次安装里打印一模一样的告警**,这条才是「这是平台常态,不是本包的缺陷」的证据。「消费者不该安装的 peer」按 npm 自己的定义就是 optional,所以 0.1.11 起 `peerDependenciesMeta` 把六个全标为 optional:告警消失,而**范围一个字没动**,peer 真的在场时仍然照常校验版本。验证方式是空目录装 `npm pack` 出的 tarball(`auto-install-peers=false`,与 dsh profile 一致):改前 6 行 missing peer,改后零告警、exit 0、17 个 host 模块加 `client.js` 一个不少。
|
|
374
|
+
|
|
373
375
|
### 6.15 Windows 上裸 `--since=2026-08-18` 可能吃掉当天的提交
|
|
374
376
|
git 对裸 `yyyy-mm-dd` 的 `--since`/`--until` 解析带时刻语义,Windows 上一整天的提交可能全被排掉,且无任何报错。host 把裸日期展开为 `T00:00:00` / `T23:59:59` 再交给 git(`log-filter.ts`)——选中一天即指一整天,不赌平台行为。
|
|
375
377
|
|
package/lib/client.js
CHANGED
|
@@ -1231,332 +1231,332 @@ window.__ModuleLoader__.load({
|
|
|
1231
1231
|
document.head.appendChild(tag);
|
|
1232
1232
|
}
|
|
1233
1233
|
var GitWorkbenchPanel_module_css_default = {
|
|
1234
|
-
"
|
|
1235
|
-
"
|
|
1236
|
-
"
|
|
1237
|
-
"
|
|
1238
|
-
"
|
|
1239
|
-
"
|
|
1240
|
-
"
|
|
1241
|
-
"
|
|
1242
|
-
"
|
|
1243
|
-
"
|
|
1244
|
-
"
|
|
1245
|
-
"
|
|
1246
|
-
"
|
|
1247
|
-
"
|
|
1248
|
-
"
|
|
1249
|
-
"
|
|
1250
|
-
"
|
|
1251
|
-
"
|
|
1252
|
-
"
|
|
1253
|
-
"fileStatus": "SD8qLW_fileStatus",
|
|
1234
|
+
"sideCodeDel": "SD8qLW_sideCodeDel",
|
|
1235
|
+
"cal": "SD8qLW_cal",
|
|
1236
|
+
"filterChipLabel": "SD8qLW_filterChipLabel",
|
|
1237
|
+
"fbCommitHash": "SD8qLW_fbCommitHash",
|
|
1238
|
+
"funnelBoundRow": "SD8qLW_funnelBoundRow",
|
|
1239
|
+
"commitBox": "SD8qLW_commitBox",
|
|
1240
|
+
"cardDetached": "SD8qLW_cardDetached",
|
|
1241
|
+
"funnelPane": "SD8qLW_funnelPane",
|
|
1242
|
+
"pathFileGlyph": "SD8qLW_pathFileGlyph",
|
|
1243
|
+
"line": "SD8qLW_line",
|
|
1244
|
+
"fbNote": "SD8qLW_fbNote",
|
|
1245
|
+
"commitWhen": "SD8qLW_commitWhen",
|
|
1246
|
+
"lineHunk": "SD8qLW_lineHunk",
|
|
1247
|
+
"sideTab": "SD8qLW_sideTab",
|
|
1248
|
+
"fbCommitLine": "SD8qLW_fbCommitLine",
|
|
1249
|
+
"diffWrap": "SD8qLW_diffWrap",
|
|
1250
|
+
"menuPop": "SD8qLW_menuPop",
|
|
1251
|
+
"sideNumDel": "SD8qLW_sideNumDel",
|
|
1252
|
+
"miniBtnPrimary": "SD8qLW_miniBtnPrimary",
|
|
1254
1253
|
"commitBtn": "SD8qLW_commitBtn",
|
|
1255
|
-
"
|
|
1256
|
-
"
|
|
1257
|
-
"
|
|
1258
|
-
"
|
|
1259
|
-
"
|
|
1260
|
-
"
|
|
1261
|
-
"fileCountAdd": "SD8qLW_fileCountAdd",
|
|
1262
|
-
"refLabel": "SD8qLW_refLabel",
|
|
1254
|
+
"headerViewRef": "SD8qLW_headerViewRef",
|
|
1255
|
+
"commitsPane": "SD8qLW_commitsPane",
|
|
1256
|
+
"treeWrap": "SD8qLW_treeWrap",
|
|
1257
|
+
"sideCode": "SD8qLW_sideCode",
|
|
1258
|
+
"treeActions": "SD8qLW_treeActions",
|
|
1259
|
+
"fbCommitWho": "SD8qLW_fbCommitWho",
|
|
1263
1260
|
"graphCell": "SD8qLW_graphCell",
|
|
1264
|
-
"
|
|
1265
|
-
"
|
|
1266
|
-
"calHead": "SD8qLW_calHead",
|
|
1267
|
-
"sideColGridBlame": "SD8qLW_sideColGridBlame",
|
|
1268
|
-
"themeGroup": "SD8qLW_themeGroup",
|
|
1269
|
-
"funnel": "SD8qLW_funnel",
|
|
1270
|
-
"elide": "SD8qLW_elide",
|
|
1271
|
-
"cmHost": "SD8qLW_cmHost",
|
|
1272
|
-
"filterClear": "SD8qLW_filterClear",
|
|
1273
|
-
"theme": "SD8qLW_theme",
|
|
1274
|
-
"cardSep": "SD8qLW_cardSep",
|
|
1275
|
-
"miniBtnPrimary": "SD8qLW_miniBtnPrimary",
|
|
1276
|
-
"btnClose": "SD8qLW_btnClose",
|
|
1277
|
-
"imgCaption": "SD8qLW_imgCaption",
|
|
1278
|
-
"commitCopy": "SD8qLW_commitCopy",
|
|
1279
|
-
"commitPopBody": "SD8qLW_commitPopBody",
|
|
1280
|
-
"refRowActive": "SD8qLW_refRowActive",
|
|
1281
|
-
"commitFilter": "SD8qLW_commitFilter",
|
|
1282
|
-
"treeFilter": "SD8qLW_treeFilter",
|
|
1261
|
+
"sideScroll": "SD8qLW_sideScroll",
|
|
1262
|
+
"paneDividerY": "SD8qLW_paneDividerY",
|
|
1283
1263
|
"sideColGrid": "SD8qLW_sideColGrid",
|
|
1284
|
-
"fbList": "SD8qLW_fbList",
|
|
1285
|
-
"chipSystem": "SD8qLW_chipSystem",
|
|
1286
|
-
"treeActions": "SD8qLW_treeActions",
|
|
1287
|
-
"menuPop": "SD8qLW_menuPop",
|
|
1288
|
-
"confirmTitle": "SD8qLW_confirmTitle",
|
|
1289
|
-
"elideHead": "SD8qLW_elideHead",
|
|
1290
|
-
"commitBox": "SD8qLW_commitBox",
|
|
1291
|
-
"treeSub": "SD8qLW_treeSub",
|
|
1292
|
-
"fbCommitHash": "SD8qLW_fbCommitHash",
|
|
1293
|
-
"calToday": "SD8qLW_calToday",
|
|
1294
|
-
"funnelFootCount": "SD8qLW_funnelFootCount",
|
|
1295
|
-
"commits": "SD8qLW_commits",
|
|
1296
|
-
"opBannerBad": "SD8qLW_opBannerBad",
|
|
1297
|
-
"fileCountDel": "SD8qLW_fileCountDel",
|
|
1298
|
-
"confirmActions": "SD8qLW_confirmActions",
|
|
1299
|
-
"lineDel": "SD8qLW_lineDel",
|
|
1300
1264
|
"funnelBoundValSet": "SD8qLW_funnelBoundValSet",
|
|
1301
|
-
"
|
|
1302
|
-
"
|
|
1265
|
+
"fbMain": "SD8qLW_fbMain",
|
|
1266
|
+
"fileStatus": "SD8qLW_fileStatus",
|
|
1267
|
+
"sideNumAdd": "SD8qLW_sideNumAdd",
|
|
1268
|
+
"stDeleted": "SD8qLW_stDeleted",
|
|
1269
|
+
"fbBody": "SD8qLW_fbBody",
|
|
1270
|
+
"theme": "SD8qLW_theme",
|
|
1271
|
+
"treeTools": "SD8qLW_treeTools",
|
|
1272
|
+
"fileLi": "SD8qLW_fileLi",
|
|
1273
|
+
"themeRowSplit": "SD8qLW_themeRowSplit",
|
|
1274
|
+
"segmentChip": "SD8qLW_segmentChip",
|
|
1275
|
+
"funnelList": "SD8qLW_funnelList",
|
|
1276
|
+
"lineDel": "SD8qLW_lineDel",
|
|
1277
|
+
"sideSpacer": "SD8qLW_sideSpacer",
|
|
1278
|
+
"sideBannerTitle": "SD8qLW_sideBannerTitle",
|
|
1279
|
+
"syncBar": "SD8qLW_syncBar",
|
|
1280
|
+
"funnelRow": "SD8qLW_funnelRow",
|
|
1281
|
+
"checkMarkPartial": "SD8qLW_checkMarkPartial",
|
|
1282
|
+
"confirmTitle": "SD8qLW_confirmTitle",
|
|
1283
|
+
"calOut": "SD8qLW_calOut",
|
|
1284
|
+
"checkBox": "SD8qLW_checkBox",
|
|
1285
|
+
"fbTree": "SD8qLW_fbTree",
|
|
1286
|
+
"filterChip": "SD8qLW_filterChip",
|
|
1287
|
+
"refRowName": "SD8qLW_refRowName",
|
|
1288
|
+
"resizerActive": "SD8qLW_resizerActive",
|
|
1289
|
+
"checkMark": "SD8qLW_checkMark",
|
|
1290
|
+
"pullGroup": "SD8qLW_pullGroup",
|
|
1291
|
+
"opBannerOk": "SD8qLW_opBannerOk",
|
|
1292
|
+
"commitSubject": "SD8qLW_commitSubject",
|
|
1293
|
+
"funnelPresets": "SD8qLW_funnelPresets",
|
|
1303
1294
|
"funnelTabs": "SD8qLW_funnelTabs",
|
|
1304
|
-
"
|
|
1305
|
-
"
|
|
1306
|
-
"
|
|
1307
|
-
"
|
|
1308
|
-
"
|
|
1309
|
-
"
|
|
1310
|
-
"
|
|
1311
|
-
"
|
|
1295
|
+
"wordAdd": "SD8qLW_wordAdd",
|
|
1296
|
+
"sideBanner": "SD8qLW_sideBanner",
|
|
1297
|
+
"btnIcon": "SD8qLW_btnIcon",
|
|
1298
|
+
"drawer": "SD8qLW_drawer",
|
|
1299
|
+
"cardDeleted": "SD8qLW_cardDeleted",
|
|
1300
|
+
"commitPopSubject": "SD8qLW_commitPopSubject",
|
|
1301
|
+
"blameCell": "SD8qLW_blameCell",
|
|
1302
|
+
"diffSpacer": "SD8qLW_diffSpacer",
|
|
1303
|
+
"headerTotals": "SD8qLW_headerTotals",
|
|
1304
|
+
"refRowActive": "SD8qLW_refRowActive",
|
|
1305
|
+
"imgCaption": "SD8qLW_imgCaption",
|
|
1306
|
+
"funnelSearch": "SD8qLW_funnelSearch",
|
|
1307
|
+
"elideTail": "SD8qLW_elideTail",
|
|
1308
|
+
"blockBar": "SD8qLW_blockBar",
|
|
1309
|
+
"lnNew": "SD8qLW_lnNew",
|
|
1312
1310
|
"btnBehind": "SD8qLW_btnBehind",
|
|
1313
|
-
"
|
|
1314
|
-
"
|
|
1311
|
+
"sideTabActive": "SD8qLW_sideTabActive",
|
|
1312
|
+
"headerTotalsDim": "SD8qLW_headerTotalsDim",
|
|
1313
|
+
"headerView": "SD8qLW_headerView",
|
|
1314
|
+
"commitPop": "SD8qLW_commitPop",
|
|
1315
|
+
"btn": "SD8qLW_btn",
|
|
1316
|
+
"treeFilter": "SD8qLW_treeFilter",
|
|
1317
|
+
"sideBlockHot": "SD8qLW_sideBlockHot",
|
|
1318
|
+
"calHead": "SD8qLW_calHead",
|
|
1315
1319
|
"treeDir": "SD8qLW_treeDir",
|
|
1316
|
-
"cardGlyph": "SD8qLW_cardGlyph",
|
|
1317
|
-
"refGroup": "SD8qLW_refGroup",
|
|
1318
|
-
"funnelBoundVal": "SD8qLW_funnelBoundVal",
|
|
1319
|
-
"sideCodeAdd": "SD8qLW_sideCodeAdd",
|
|
1320
|
-
"sideCode": "SD8qLW_sideCode",
|
|
1321
|
-
"diffPre": "SD8qLW_diffPre",
|
|
1322
|
-
"paletteRowActive": "SD8qLW_paletteRowActive",
|
|
1323
|
-
"checkMarkOn": "SD8qLW_checkMarkOn",
|
|
1324
|
-
"stAdded": "SD8qLW_stAdded",
|
|
1325
|
-
"commitSubjectRow": "SD8qLW_commitSubjectRow",
|
|
1326
1320
|
"diffNav": "SD8qLW_diffNav",
|
|
1327
|
-
"
|
|
1328
|
-
"
|
|
1329
|
-
"
|
|
1330
|
-
"
|
|
1331
|
-
"
|
|
1332
|
-
"
|
|
1333
|
-
"
|
|
1334
|
-
"paletteRow": "SD8qLW_paletteRow",
|
|
1335
|
-
"paneTitle": "SD8qLW_paneTitle",
|
|
1336
|
-
"blockBtn": "SD8qLW_blockBtn",
|
|
1337
|
-
"resizer": "SD8qLW_resizer",
|
|
1338
|
-
"stRenamed": "SD8qLW_stRenamed",
|
|
1339
|
-
"funnelButtonActive": "SD8qLW_funnelButtonActive",
|
|
1340
|
-
"cardAdded": "SD8qLW_cardAdded",
|
|
1321
|
+
"sliderValue": "SD8qLW_sliderValue",
|
|
1322
|
+
"cardBehind": "SD8qLW_cardBehind",
|
|
1323
|
+
"calTitle": "SD8qLW_calTitle",
|
|
1324
|
+
"funnelButton": "SD8qLW_funnelButton",
|
|
1325
|
+
"scopeBtn": "SD8qLW_scopeBtn",
|
|
1326
|
+
"cardBranchName": "SD8qLW_cardBranchName",
|
|
1327
|
+
"funnelCount": "SD8qLW_funnelCount",
|
|
1341
1328
|
"fbRowActive": "SD8qLW_fbRowActive",
|
|
1342
|
-
"
|
|
1343
|
-
"
|
|
1344
|
-
"
|
|
1345
|
-
"
|
|
1346
|
-
"refButton": "SD8qLW_refButton",
|
|
1347
|
-
"sideSpacer": "SD8qLW_sideSpacer",
|
|
1348
|
-
"sideSaveReady": "SD8qLW_sideSaveReady",
|
|
1349
|
-
"chipDark": "SD8qLW_chipDark",
|
|
1350
|
-
"cssArea": "SD8qLW_cssArea",
|
|
1351
|
-
"themeRail": "SD8qLW_themeRail",
|
|
1352
|
-
"headerLeft": "SD8qLW_headerLeft",
|
|
1353
|
-
"chevronOpen": "SD8qLW_chevronOpen",
|
|
1354
|
-
"fileActive": "SD8qLW_fileActive",
|
|
1355
|
-
"lnOld": "SD8qLW_lnOld",
|
|
1356
|
-
"compareBar": "SD8qLW_compareBar",
|
|
1329
|
+
"treeIcon": "SD8qLW_treeIcon",
|
|
1330
|
+
"bodyRow": "SD8qLW_bodyRow",
|
|
1331
|
+
"syncLevel": "SD8qLW_syncLevel",
|
|
1332
|
+
"funnelCaption": "SD8qLW_funnelCaption",
|
|
1357
1333
|
"treeDirActive": "SD8qLW_treeDirActive",
|
|
1358
|
-
"
|
|
1359
|
-
"
|
|
1360
|
-
"
|
|
1361
|
-
"
|
|
1362
|
-
"
|
|
1363
|
-
"
|
|
1364
|
-
"compareArrow": "SD8qLW_compareArrow",
|
|
1365
|
-
"headerTotalsAdd": "SD8qLW_headerTotalsAdd",
|
|
1366
|
-
"commitWhen": "SD8qLW_commitWhen",
|
|
1367
|
-
"sideTabActive": "SD8qLW_sideTabActive",
|
|
1368
|
-
"renameLine": "SD8qLW_renameLine",
|
|
1369
|
-
"fileCounts": "SD8qLW_fileCounts",
|
|
1370
|
-
"treeWrap": "SD8qLW_treeWrap",
|
|
1371
|
-
"commitRefMore": "SD8qLW_commitRefMore",
|
|
1372
|
-
"headerDetached": "SD8qLW_headerDetached",
|
|
1373
|
-
"calIn": "SD8qLW_calIn",
|
|
1374
|
-
"filterChipRemove": "SD8qLW_filterChipRemove",
|
|
1375
|
-
"treeTools": "SD8qLW_treeTools",
|
|
1376
|
-
"lineAdd": "SD8qLW_lineAdd",
|
|
1377
|
-
"wordDel": "SD8qLW_wordDel",
|
|
1378
|
-
"sideBannerTitle": "SD8qLW_sideBannerTitle",
|
|
1379
|
-
"sideEditCell": "SD8qLW_sideEditCell",
|
|
1380
|
-
"sideBanner": "SD8qLW_sideBanner",
|
|
1381
|
-
"confirmBox": "SD8qLW_confirmBox",
|
|
1382
|
-
"resizerActive": "SD8qLW_resizerActive",
|
|
1383
|
-
"treeIconGlyph": "SD8qLW_treeIconGlyph",
|
|
1384
|
-
"funnelBoundKey": "SD8qLW_funnelBoundKey",
|
|
1385
|
-
"lineContext": "SD8qLW_lineContext",
|
|
1386
|
-
"themeNote": "SD8qLW_themeNote",
|
|
1387
|
-
"cardDeleted": "SD8qLW_cardDeleted",
|
|
1388
|
-
"sideCodeSame": "SD8qLW_sideCodeSame",
|
|
1389
|
-
"treeLabel": "SD8qLW_treeLabel",
|
|
1390
|
-
"fbMore": "SD8qLW_fbMore",
|
|
1391
|
-
"refEmpty": "SD8qLW_refEmpty",
|
|
1392
|
-
"cardFiles": "SD8qLW_cardFiles",
|
|
1393
|
-
"paneHead": "SD8qLW_paneHead",
|
|
1394
|
-
"funnelBounds": "SD8qLW_funnelBounds",
|
|
1395
|
-
"filterChip": "SD8qLW_filterChip",
|
|
1396
|
-
"gsSlide": "SD8qLW_gsSlide",
|
|
1397
|
-
"paneDividerActive": "SD8qLW_paneDividerActive",
|
|
1398
|
-
"fbCommitWhat": "SD8qLW_fbCommitWhat",
|
|
1399
|
-
"fbTree": "SD8qLW_fbTree",
|
|
1400
|
-
"pathNode": "SD8qLW_pathNode",
|
|
1401
|
-
"lineHunk": "SD8qLW_lineHunk",
|
|
1402
|
-
"fbFileName": "SD8qLW_fbFileName",
|
|
1403
|
-
"scopeBtnActive": "SD8qLW_scopeBtnActive",
|
|
1404
|
-
"checkMarkPartial": "SD8qLW_checkMarkPartial",
|
|
1405
|
-
"btnPrimary": "SD8qLW_btnPrimary",
|
|
1406
|
-
"segmentChip": "SD8qLW_segmentChip",
|
|
1334
|
+
"body": "SD8qLW_body",
|
|
1335
|
+
"lnOld": "SD8qLW_lnOld",
|
|
1336
|
+
"chipDark": "SD8qLW_chipDark",
|
|
1337
|
+
"refPop": "SD8qLW_refPop",
|
|
1338
|
+
"funnelBoundVal": "SD8qLW_funnelBoundVal",
|
|
1339
|
+
"imgShot": "SD8qLW_imgShot",
|
|
1407
1340
|
"refSearch": "SD8qLW_refSearch",
|
|
1408
|
-
"
|
|
1409
|
-
"
|
|
1410
|
-
"
|
|
1411
|
-
"
|
|
1341
|
+
"fbSearch": "SD8qLW_fbSearch",
|
|
1342
|
+
"funnelMore": "SD8qLW_funnelMore",
|
|
1343
|
+
"btnClose": "SD8qLW_btnClose",
|
|
1344
|
+
"fileActive": "SD8qLW_fileActive",
|
|
1345
|
+
"sidePane": "SD8qLW_sidePane",
|
|
1346
|
+
"filterChips": "SD8qLW_filterChips",
|
|
1347
|
+
"fbPath": "SD8qLW_fbPath",
|
|
1412
1348
|
"fileDiscard": "SD8qLW_fileDiscard",
|
|
1413
|
-
"funnelPresets": "SD8qLW_funnelPresets",
|
|
1414
|
-
"cardDetached": "SD8qLW_cardDetached",
|
|
1415
|
-
"funnelBoundBtnActive": "SD8qLW_funnelBoundBtnActive",
|
|
1416
1349
|
"commitHash": "SD8qLW_commitHash",
|
|
1417
|
-
"
|
|
1418
|
-
"
|
|
1419
|
-
"
|
|
1350
|
+
"treeIconDown": "SD8qLW_treeIconDown",
|
|
1351
|
+
"card": "SD8qLW_card",
|
|
1352
|
+
"funnelFootCount": "SD8qLW_funnelFootCount",
|
|
1353
|
+
"treeDirCount": "SD8qLW_treeDirCount",
|
|
1420
1354
|
"fbDirName": "SD8qLW_fbDirName",
|
|
1421
|
-
"
|
|
1422
|
-
"
|
|
1423
|
-
"
|
|
1424
|
-
"
|
|
1425
|
-
"
|
|
1355
|
+
"fbCommitWhen": "SD8qLW_fbCommitWhen",
|
|
1356
|
+
"refRow": "SD8qLW_refRow",
|
|
1357
|
+
"commitPopMeta": "SD8qLW_commitPopMeta",
|
|
1358
|
+
"treeDirCounts": "SD8qLW_treeDirCounts",
|
|
1359
|
+
"fileBinary": "SD8qLW_fileBinary",
|
|
1360
|
+
"wtCurrent": "SD8qLW_wtCurrent",
|
|
1361
|
+
"tabs": "SD8qLW_tabs",
|
|
1362
|
+
"funnelPop": "SD8qLW_funnelPop",
|
|
1363
|
+
"sideNav": "SD8qLW_sideNav",
|
|
1364
|
+
"filePath": "SD8qLW_filePath",
|
|
1365
|
+
"scopeHint": "SD8qLW_scopeHint",
|
|
1366
|
+
"filterClear": "SD8qLW_filterClear",
|
|
1367
|
+
"fbFileName": "SD8qLW_fbFileName",
|
|
1368
|
+
"treeLabel": "SD8qLW_treeLabel",
|
|
1369
|
+
"diffScroll": "SD8qLW_diffScroll",
|
|
1370
|
+
"resizer": "SD8qLW_resizer",
|
|
1371
|
+
"themeGroup": "SD8qLW_themeGroup",
|
|
1372
|
+
"funnelBounds": "SD8qLW_funnelBounds",
|
|
1373
|
+
"chipSystem": "SD8qLW_chipSystem",
|
|
1374
|
+
"commitAuthor": "SD8qLW_commitAuthor",
|
|
1375
|
+
"treeFilterClear": "SD8qLW_treeFilterClear",
|
|
1426
1376
|
"btnDanger": "SD8qLW_btnDanger",
|
|
1377
|
+
"commitsSentinel": "SD8qLW_commitsSentinel",
|
|
1378
|
+
"fbRow": "SD8qLW_fbRow",
|
|
1379
|
+
"sideCellBlock": "SD8qLW_sideCellBlock",
|
|
1380
|
+
"themeLabel": "SD8qLW_themeLabel",
|
|
1381
|
+
"headerPicker": "SD8qLW_headerPicker",
|
|
1382
|
+
"headerDetached": "SD8qLW_headerDetached",
|
|
1383
|
+
"cardBranch": "SD8qLW_cardBranch",
|
|
1384
|
+
"commitCopy": "SD8qLW_commitCopy",
|
|
1385
|
+
"sideActions": "SD8qLW_sideActions",
|
|
1386
|
+
"checkMarkOn": "SD8qLW_checkMarkOn",
|
|
1387
|
+
"sliderRow": "SD8qLW_sliderRow",
|
|
1388
|
+
"blockBtnDanger": "SD8qLW_blockBtnDanger",
|
|
1389
|
+
"commitMessage": "SD8qLW_commitMessage",
|
|
1390
|
+
"confirmBox": "SD8qLW_confirmBox",
|
|
1391
|
+
"commitRefMore": "SD8qLW_commitRefMore",
|
|
1392
|
+
"imgStage": "SD8qLW_imgStage",
|
|
1393
|
+
"headerLeft": "SD8qLW_headerLeft",
|
|
1394
|
+
"chevronOpen": "SD8qLW_chevronOpen",
|
|
1395
|
+
"funnelPreset": "SD8qLW_funnelPreset",
|
|
1396
|
+
"funnelBoundRows": "SD8qLW_funnelBoundRows",
|
|
1397
|
+
"calNav": "SD8qLW_calNav",
|
|
1398
|
+
"diffPre": "SD8qLW_diffPre",
|
|
1399
|
+
"cardAhead": "SD8qLW_cardAhead",
|
|
1400
|
+
"funnelFootClear": "SD8qLW_funnelFootClear",
|
|
1401
|
+
"sideArmable": "SD8qLW_sideArmable",
|
|
1402
|
+
"stAdded": "SD8qLW_stAdded",
|
|
1403
|
+
"compareArrow": "SD8qLW_compareArrow",
|
|
1404
|
+
"sideCodeAdd": "SD8qLW_sideCodeAdd",
|
|
1405
|
+
"bgEmpty": "SD8qLW_bgEmpty",
|
|
1406
|
+
"paletteRowActive": "SD8qLW_paletteRowActive",
|
|
1407
|
+
"wordDel": "SD8qLW_wordDel",
|
|
1408
|
+
"commitFilter": "SD8qLW_commitFilter",
|
|
1409
|
+
"sideBannerActs": "SD8qLW_sideBannerActs",
|
|
1410
|
+
"paneTitle": "SD8qLW_paneTitle",
|
|
1411
|
+
"commitPopTop": "SD8qLW_commitPopTop",
|
|
1412
|
+
"headerPathMain": "SD8qLW_headerPathMain",
|
|
1413
|
+
"overlay": "SD8qLW_overlay",
|
|
1414
|
+
"themeRail": "SD8qLW_themeRail",
|
|
1415
|
+
"treeCol": "SD8qLW_treeCol",
|
|
1416
|
+
"themeNote": "SD8qLW_themeNote",
|
|
1417
|
+
"fileCountDel": "SD8qLW_fileCountDel",
|
|
1418
|
+
"treeDirName": "SD8qLW_treeDirName",
|
|
1427
1419
|
"treeLead": "SD8qLW_treeLead",
|
|
1420
|
+
"commitHasBody": "SD8qLW_commitHasBody",
|
|
1421
|
+
"commitRef": "SD8qLW_commitRef",
|
|
1422
|
+
"empty": "SD8qLW_empty",
|
|
1423
|
+
"sideTabs": "SD8qLW_sideTabs",
|
|
1424
|
+
"sideNavCount": "SD8qLW_sideNavCount",
|
|
1425
|
+
"signAdd": "SD8qLW_signAdd",
|
|
1428
1426
|
"headerTotalsDel": "SD8qLW_headerTotalsDel",
|
|
1427
|
+
"sideNotice": "SD8qLW_sideNotice",
|
|
1428
|
+
"funnelBoundClear": "SD8qLW_funnelBoundClear",
|
|
1429
|
+
"elideHead": "SD8qLW_elideHead",
|
|
1430
|
+
"segmented": "SD8qLW_segmented",
|
|
1431
|
+
"cssArea": "SD8qLW_cssArea",
|
|
1432
|
+
"funnelBoundBtn": "SD8qLW_funnelBoundBtn",
|
|
1433
|
+
"funnelBoundKey": "SD8qLW_funnelBoundKey",
|
|
1434
|
+
"paneHead": "SD8qLW_paneHead",
|
|
1435
|
+
"lineContext": "SD8qLW_lineContext",
|
|
1436
|
+
"commitLine": "SD8qLW_commitLine",
|
|
1437
|
+
"commitSubjectRow": "SD8qLW_commitSubjectRow",
|
|
1438
|
+
"themeDirty": "SD8qLW_themeDirty",
|
|
1429
1439
|
"funnelName": "SD8qLW_funnelName",
|
|
1430
|
-
"
|
|
1431
|
-
"
|
|
1432
|
-
"
|
|
1433
|
-
"
|
|
1440
|
+
"lineAdd": "SD8qLW_lineAdd",
|
|
1441
|
+
"elide": "SD8qLW_elide",
|
|
1442
|
+
"calMark": "SD8qLW_calMark",
|
|
1443
|
+
"layoutSwitch": "SD8qLW_layoutSwitch",
|
|
1434
1444
|
"confirmBody": "SD8qLW_confirmBody",
|
|
1435
|
-
"
|
|
1436
|
-
"
|
|
1437
|
-
"
|
|
1438
|
-
"
|
|
1439
|
-
"
|
|
1440
|
-
"
|
|
1441
|
-
"
|
|
1442
|
-
"
|
|
1443
|
-
"
|
|
1444
|
-
"
|
|
1445
|
-
"
|
|
1446
|
-
"
|
|
1445
|
+
"commitMeta": "SD8qLW_commitMeta",
|
|
1446
|
+
"calGrid": "SD8qLW_calGrid",
|
|
1447
|
+
"treeSub": "SD8qLW_treeSub",
|
|
1448
|
+
"treeIconOn": "SD8qLW_treeIconOn",
|
|
1449
|
+
"scopeRow": "SD8qLW_scopeRow",
|
|
1450
|
+
"stRenamed": "SD8qLW_stRenamed",
|
|
1451
|
+
"syncUpstream": "SD8qLW_syncUpstream",
|
|
1452
|
+
"cardSep": "SD8qLW_cardSep",
|
|
1453
|
+
"commits": "SD8qLW_commits",
|
|
1454
|
+
"layoutGlyph": "SD8qLW_layoutGlyph",
|
|
1455
|
+
"scopeBtnActive": "SD8qLW_scopeBtnActive",
|
|
1456
|
+
"refGroup": "SD8qLW_refGroup",
|
|
1457
|
+
"calToday": "SD8qLW_calToday",
|
|
1458
|
+
"sideColGridBlame": "SD8qLW_sideColGridBlame",
|
|
1459
|
+
"paletteRow": "SD8qLW_paletteRow",
|
|
1447
1460
|
"commitAmend": "SD8qLW_commitAmend",
|
|
1448
|
-
"
|
|
1449
|
-
"
|
|
1450
|
-
"
|
|
1451
|
-
"
|
|
1452
|
-
"
|
|
1453
|
-
"
|
|
1454
|
-
"pathDirGlyph": "SD8qLW_pathDirGlyph",
|
|
1455
|
-
"sideCols": "SD8qLW_sideCols",
|
|
1456
|
-
"paneDividerY": "SD8qLW_paneDividerY",
|
|
1457
|
-
"segment": "SD8qLW_segment",
|
|
1458
|
-
"treeFilterClear": "SD8qLW_treeFilterClear",
|
|
1459
|
-
"commitAuthor": "SD8qLW_commitAuthor",
|
|
1460
|
-
"gsFade": "SD8qLW_gsFade",
|
|
1461
|
-
"calTitle": "SD8qLW_calTitle",
|
|
1461
|
+
"btnCount": "SD8qLW_btnCount",
|
|
1462
|
+
"refEmpty": "SD8qLW_refEmpty",
|
|
1463
|
+
"settingsPop": "SD8qLW_settingsPop",
|
|
1464
|
+
"stModified": "SD8qLW_stModified",
|
|
1465
|
+
"swatch": "SD8qLW_swatch",
|
|
1466
|
+
"tab": "SD8qLW_tab",
|
|
1462
1467
|
"refCaret": "SD8qLW_refCaret",
|
|
1463
|
-
"
|
|
1464
|
-
"
|
|
1465
|
-
"
|
|
1466
|
-
"
|
|
1467
|
-
"
|
|
1468
|
-
"
|
|
1469
|
-
"
|
|
1470
|
-
"
|
|
1471
|
-
"
|
|
1472
|
-
"
|
|
1473
|
-
"
|
|
1474
|
-
"
|
|
1475
|
-
"
|
|
1468
|
+
"cmHost": "SD8qLW_cmHost",
|
|
1469
|
+
"sideEditCell": "SD8qLW_sideEditCell",
|
|
1470
|
+
"signDel": "SD8qLW_signDel",
|
|
1471
|
+
"syncSpacer": "SD8qLW_syncSpacer",
|
|
1472
|
+
"funnel": "SD8qLW_funnel",
|
|
1473
|
+
"commitStaged": "SD8qLW_commitStaged",
|
|
1474
|
+
"commitPopBody": "SD8qLW_commitPopBody",
|
|
1475
|
+
"sideCodeSame": "SD8qLW_sideCodeSame",
|
|
1476
|
+
"fbMore": "SD8qLW_fbMore",
|
|
1477
|
+
"commitLead": "SD8qLW_commitLead",
|
|
1478
|
+
"chevron": "SD8qLW_chevron",
|
|
1479
|
+
"imgPane": "SD8qLW_imgPane",
|
|
1480
|
+
"calIn": "SD8qLW_calIn",
|
|
1481
|
+
"gsSlide": "SD8qLW_gsSlide",
|
|
1482
|
+
"chipLight": "SD8qLW_chipLight",
|
|
1483
|
+
"refLabel": "SD8qLW_refLabel",
|
|
1484
|
+
"cardAdded": "SD8qLW_cardAdded",
|
|
1476
1485
|
"sideCol": "SD8qLW_sideCol",
|
|
1477
|
-
"header": "SD8qLW_header",
|
|
1478
1486
|
"paneDivider": "SD8qLW_paneDivider",
|
|
1479
|
-
"
|
|
1480
|
-
"
|
|
1481
|
-
"syncSpacer": "SD8qLW_syncSpacer",
|
|
1482
|
-
"sliderRow": "SD8qLW_sliderRow",
|
|
1483
|
-
"diffWrap": "SD8qLW_diffWrap",
|
|
1484
|
-
"stModified": "SD8qLW_stModified",
|
|
1485
|
-
"funnelSearch": "SD8qLW_funnelSearch",
|
|
1487
|
+
"funnelPresetActive": "SD8qLW_funnelPresetActive",
|
|
1488
|
+
"confirmScrim": "SD8qLW_confirmScrim",
|
|
1486
1489
|
"calWeek": "SD8qLW_calWeek",
|
|
1487
|
-
"line": "SD8qLW_line",
|
|
1488
1490
|
"funnelFootCountOn": "SD8qLW_funnelFootCountOn",
|
|
1489
|
-
"
|
|
1490
|
-
"
|
|
1491
|
-
"
|
|
1492
|
-
"
|
|
1493
|
-
"
|
|
1494
|
-
"
|
|
1495
|
-
"
|
|
1496
|
-
"treeCol": "SD8qLW_treeCol",
|
|
1491
|
+
"tabActive": "SD8qLW_tabActive",
|
|
1492
|
+
"gutter": "SD8qLW_gutter",
|
|
1493
|
+
"diffPane": "SD8qLW_diffPane",
|
|
1494
|
+
"filterChipRemove": "SD8qLW_filterChipRemove",
|
|
1495
|
+
"funnelTab": "SD8qLW_funnelTab",
|
|
1496
|
+
"pathDirGlyph": "SD8qLW_pathDirGlyph",
|
|
1497
|
+
"refPicker": "SD8qLW_refPicker",
|
|
1497
1498
|
"stUntracked": "SD8qLW_stUntracked",
|
|
1498
|
-
"
|
|
1499
|
-
"
|
|
1500
|
-
"
|
|
1501
|
-
"
|
|
1502
|
-
"
|
|
1503
|
-
"
|
|
1504
|
-
"funnelMore": "SD8qLW_funnelMore",
|
|
1505
|
-
"treeDirLi": "SD8qLW_treeDirLi",
|
|
1499
|
+
"sideCols": "SD8qLW_sideCols",
|
|
1500
|
+
"header": "SD8qLW_header",
|
|
1501
|
+
"funnelTabCount": "SD8qLW_funnelTabCount",
|
|
1502
|
+
"treeEmpty": "SD8qLW_treeEmpty",
|
|
1503
|
+
"file": "SD8qLW_file",
|
|
1504
|
+
"pathNode": "SD8qLW_pathNode",
|
|
1506
1505
|
"commitTop": "SD8qLW_commitTop",
|
|
1507
|
-
"
|
|
1508
|
-
"
|
|
1509
|
-
"
|
|
1510
|
-
"
|
|
1511
|
-
"
|
|
1512
|
-
"
|
|
1513
|
-
"
|
|
1514
|
-
"
|
|
1515
|
-
"
|
|
1516
|
-
"
|
|
1517
|
-
"
|
|
1518
|
-
"
|
|
1519
|
-
"
|
|
1506
|
+
"compareBar": "SD8qLW_compareBar",
|
|
1507
|
+
"refFoot": "SD8qLW_refFoot",
|
|
1508
|
+
"sideSaveReady": "SD8qLW_sideSaveReady",
|
|
1509
|
+
"opBannerBad": "SD8qLW_opBannerBad",
|
|
1510
|
+
"tree": "SD8qLW_tree",
|
|
1511
|
+
"fileCounts": "SD8qLW_fileCounts",
|
|
1512
|
+
"commitRow": "SD8qLW_commitRow",
|
|
1513
|
+
"fbCommitWhat": "SD8qLW_fbCommitWhat",
|
|
1514
|
+
"fbCommitHint": "SD8qLW_fbCommitHint",
|
|
1515
|
+
"treeFilterInput": "SD8qLW_treeFilterInput",
|
|
1516
|
+
"paneDividerActive": "SD8qLW_paneDividerActive",
|
|
1517
|
+
"bgPreview": "SD8qLW_bgPreview",
|
|
1518
|
+
"segment": "SD8qLW_segment",
|
|
1519
|
+
"treeDirLi": "SD8qLW_treeDirLi",
|
|
1520
|
+
"miniBtn": "SD8qLW_miniBtn",
|
|
1521
|
+
"overlayMax": "SD8qLW_overlayMax",
|
|
1522
|
+
"funnelFoot": "SD8qLW_funnelFoot",
|
|
1523
|
+
"btnPrimary": "SD8qLW_btnPrimary",
|
|
1524
|
+
"code": "SD8qLW_code",
|
|
1525
|
+
"funnelButtonActive": "SD8qLW_funnelButtonActive",
|
|
1526
|
+
"pathChildren": "SD8qLW_pathChildren",
|
|
1527
|
+
"renameLine": "SD8qLW_renameLine",
|
|
1528
|
+
"blockBtn": "SD8qLW_blockBtn",
|
|
1529
|
+
"refList": "SD8qLW_refList",
|
|
1530
|
+
"refRowSpacer": "SD8qLW_refRowSpacer",
|
|
1531
|
+
"layoutButtonOn": "SD8qLW_layoutButtonOn",
|
|
1532
|
+
"sideNum": "SD8qLW_sideNum",
|
|
1533
|
+
"fbList": "SD8qLW_fbList",
|
|
1534
|
+
"refValue": "SD8qLW_refValue",
|
|
1535
|
+
"funnelTabActive": "SD8qLW_funnelTabActive",
|
|
1536
|
+
"fbCommit": "SD8qLW_fbCommit",
|
|
1537
|
+
"segmentActive": "SD8qLW_segmentActive",
|
|
1538
|
+
"refButton": "SD8qLW_refButton",
|
|
1539
|
+
"headerTotalsAdd": "SD8qLW_headerTotalsAdd",
|
|
1520
1540
|
"headerRight": "SD8qLW_headerRight",
|
|
1541
|
+
"funnelChevron": "SD8qLW_funnelChevron",
|
|
1542
|
+
"commitsFoot": "SD8qLW_commitsFoot",
|
|
1521
1543
|
"treeRow": "SD8qLW_treeRow",
|
|
1522
|
-
"
|
|
1523
|
-
"
|
|
1524
|
-
"
|
|
1525
|
-
"
|
|
1526
|
-
"
|
|
1527
|
-
"
|
|
1528
|
-
"
|
|
1529
|
-
"
|
|
1530
|
-
"
|
|
1544
|
+
"fbHeader": "SD8qLW_fbHeader",
|
|
1545
|
+
"cardGlyph": "SD8qLW_cardGlyph",
|
|
1546
|
+
"gsFade": "SD8qLW_gsFade",
|
|
1547
|
+
"funnelBoundBtnActive": "SD8qLW_funnelBoundBtnActive",
|
|
1548
|
+
"opBanner": "SD8qLW_opBanner",
|
|
1549
|
+
"cardWt": "SD8qLW_cardWt",
|
|
1550
|
+
"fileCountAdd": "SD8qLW_fileCountAdd",
|
|
1551
|
+
"treeIconGlyph": "SD8qLW_treeIconGlyph",
|
|
1552
|
+
"commitActive": "SD8qLW_commitActive",
|
|
1553
|
+
"headerBranch": "SD8qLW_headerBranch",
|
|
1531
1554
|
"sideColRight": "SD8qLW_sideColRight",
|
|
1532
|
-
"
|
|
1533
|
-
"
|
|
1534
|
-
"
|
|
1535
|
-
"
|
|
1536
|
-
"
|
|
1537
|
-
"diffScroll": "SD8qLW_diffScroll",
|
|
1538
|
-
"gutter": "SD8qLW_gutter",
|
|
1539
|
-
"signDel": "SD8qLW_signDel",
|
|
1540
|
-
"chevron": "SD8qLW_chevron",
|
|
1541
|
-
"fileLi": "SD8qLW_fileLi",
|
|
1542
|
-
"funnelPreset": "SD8qLW_funnelPreset",
|
|
1543
|
-
"sideNotice": "SD8qLW_sideNotice",
|
|
1544
|
-
"sideTab": "SD8qLW_sideTab",
|
|
1545
|
-
"calMark": "SD8qLW_calMark",
|
|
1546
|
-
"treeIconOn": "SD8qLW_treeIconOn",
|
|
1547
|
-
"funnelBoundRows": "SD8qLW_funnelBoundRows",
|
|
1548
|
-
"layoutButtonOn": "SD8qLW_layoutButtonOn",
|
|
1549
|
-
"funnelFootClear": "SD8qLW_funnelFootClear",
|
|
1550
|
-
"blockBar": "SD8qLW_blockBar",
|
|
1551
|
-
"wtCurrent": "SD8qLW_wtCurrent",
|
|
1552
|
-
"tabActive": "SD8qLW_tabActive",
|
|
1553
|
-
"commitMessage": "SD8qLW_commitMessage",
|
|
1554
|
-
"layoutSwitch": "SD8qLW_layoutSwitch",
|
|
1555
|
-
"fbCommitLine": "SD8qLW_fbCommitLine",
|
|
1556
|
-
"cardBranch": "SD8qLW_cardBranch",
|
|
1557
|
-
"headerTotalsDim": "SD8qLW_headerTotalsDim",
|
|
1558
|
-
"code": "SD8qLW_code",
|
|
1559
|
-
"refRowName": "SD8qLW_refRowName"
|
|
1555
|
+
"cardFiles": "SD8qLW_cardFiles",
|
|
1556
|
+
"btnAhead": "SD8qLW_btnAhead",
|
|
1557
|
+
"commit": "SD8qLW_commit",
|
|
1558
|
+
"layoutButton": "SD8qLW_layoutButton",
|
|
1559
|
+
"confirmActions": "SD8qLW_confirmActions"
|
|
1560
1560
|
};
|
|
1561
1561
|
//#endregion
|
|
1562
1562
|
//#region node_modules/.pnpm/@marijn+find-cluster-break@1.0.3/node_modules/@marijn/find-cluster-break/src/index.js
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@young1lin/dsh-ui-gitworkbench",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11",
|
|
4
4
|
"description": "Out-of-tree dsh web UI plugin: a session-header git workbench chip opening a drawer with the file tree, per-file diff, history, compare, staging, commit, and sync (fetch/pull/push).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -72,6 +72,26 @@
|
|
|
72
72
|
"@deepseek-ai/dsh-typert-protocol": "^0.1.0-rc.2",
|
|
73
73
|
"react": "^18.2.0"
|
|
74
74
|
},
|
|
75
|
+
"peerDependenciesMeta": {
|
|
76
|
+
"@deepseek-ai/cordis": {
|
|
77
|
+
"optional": true
|
|
78
|
+
},
|
|
79
|
+
"@deepseek-ai/dsh-client-runtime": {
|
|
80
|
+
"optional": true
|
|
81
|
+
},
|
|
82
|
+
"@deepseek-ai/dsh-client-ui-slots": {
|
|
83
|
+
"optional": true
|
|
84
|
+
},
|
|
85
|
+
"@deepseek-ai/dsh-tools": {
|
|
86
|
+
"optional": true
|
|
87
|
+
},
|
|
88
|
+
"@deepseek-ai/dsh-typert-protocol": {
|
|
89
|
+
"optional": true
|
|
90
|
+
},
|
|
91
|
+
"react": {
|
|
92
|
+
"optional": true
|
|
93
|
+
}
|
|
94
|
+
},
|
|
75
95
|
"devDependencies": {
|
|
76
96
|
"@types/node": "^22.0.0",
|
|
77
97
|
"@types/react": "~18.3.1",
|