dsh-edge 0.1.0 → 0.1.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/LICENSE +1 -1
- package/README.i18n.yaml +2 -2
- package/README.md +2 -0
- package/README.zh.md +2 -0
- package/THIRD_PARTY_NOTICES.md +40 -12
- package/dist/index.html +1 -1
- package/dist/plugins/@deepseek-ai/dsh-client-locale/client.js +7 -7
- package/dist/plugins/@deepseek-ai/dsh-client-ui-agent-preset/client.js +61 -61
- package/dist/plugins/@deepseek-ai/dsh-client-ui-commands/client.js +14 -14
- package/dist/plugins/@deepseek-ai/dsh-client-ui-conversation/client.js +287 -287
- package/dist/plugins/@deepseek-ai/dsh-client-ui-deliverables/client.js +10 -10
- package/dist/plugins/@deepseek-ai/dsh-client-ui-input-trigger/client.js +11 -11
- package/dist/plugins/@deepseek-ai/dsh-client-ui-jobs/client.js +15 -15
- package/dist/plugins/@deepseek-ai/dsh-client-ui-layout/client.js +8 -8
- package/dist/plugins/@deepseek-ai/dsh-client-ui-model-selection/client.js +27 -27
- package/dist/plugins/@deepseek-ai/dsh-client-ui-permission-presets/client.js +8 -8
- package/dist/plugins/@deepseek-ai/dsh-client-ui-settings-general/client.js +31 -31
- package/dist/plugins/@deepseek-ai/dsh-client-ui-sidebar/client.js +23 -23
- package/dist/plugins/@deepseek-ai/dsh-client-ui-skill/client.js +19 -19
- package/dist/plugins/@deepseek-ai/dsh-client-ui-subagent/client.js +29 -29
- package/dist/plugins/@deepseek-ai/dsh-client-ui-theme/client.js +7 -7
- package/dist/plugins/@deepseek-ai/dsh-client-ui-tool/client.js +64 -64
- package/dist/plugins/@deepseek-ai/dsh-client-ui-trajectory/client.js +183 -183
- package/dist/plugins/@deepseek-ai/dsh-client-ui-user-questions/client.js +44 -44
- package/dist/plugins/@deepseek-ai/dsh-client-ui-workflow-run/client.js +24 -24
- package/dist/plugins/@deepseek-ai/dsh-client-ui-workspace/client.js +79 -79
- package/dist/plugins/{@deepseek-ai/dsh-client-ui-edge → dsh-edge-client-ui}/client.js +12 -12
- package/package.json +13 -11
- package/scripts/assemble-web.mjs +1 -1
- package/scripts/legal-files.mjs +65 -7
- package/scripts/verify-packed.d.mts +24 -0
- package/scripts/verify-packed.mjs +76 -23
package/LICENSE
CHANGED
package/README.i18n.yaml
CHANGED
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
# side as of the last confirmed-consistent state. Both languages carry equal authority;
|
|
3
3
|
# after editing either side, bring the other along and re-record with:
|
|
4
4
|
# pnpm run verify-translation-pairing --write apps/dsh-edge/README.md
|
|
5
|
-
README.md:
|
|
6
|
-
README.zh.md:
|
|
5
|
+
README.md: 08d327791ae4cbbcfcae835c57898d4719b6283e
|
|
6
|
+
README.zh.md: 3589fb2d268c84c2a123cdd72290c893373e060b
|
package/README.md
CHANGED
|
@@ -4,6 +4,8 @@ English | [中文](README.zh.md)
|
|
|
4
4
|
|
|
5
5
|
`dsh-edge` is the Cloudflare runtime prototype for DeepSeek Harness. One deployment maps its authenticated owner to one Durable Object whose SQLite-backed virtual filesystem survives requests. By default, an in-process just-bash backend runs commands against that same filesystem without a Linux container or Dynamic Worker.
|
|
6
6
|
|
|
7
|
+
`dsh-edge` is an independent community project. It is not affiliated with or endorsed by DeepSeek; DeepSeek Harness remains an upstream dependency under its own license.
|
|
8
|
+
|
|
7
9
|
The checked-in Wrangler configuration exposes two deployment targets from the same application graph. The default target is direct mode for Workers Free and has no Worker Loader binding. The named `isolated` target adds the `LOADER` binding and requires Workers Paid, but does not fork the DSH protocol, storage, UI, or tool implementation.
|
|
8
10
|
|
|
9
11
|
The prototype runs persistent conversations through the upstream Cordis-composed `ReactLoopAgent`, `AgentRegistry`, `LlmRuntime`, `ToolRuntime`, `SystemPrompt`, `SessionStore`, and `SessionPersistence`. Edge code only binds a request-scoped DeepSeek adapter and maps one native DSH `bash` tool definition onto Cloudflare Computer. Durable Object SQLite implements the upstream persistence backend contract; `PersistenceCoordinator` still owns write-behind, revisions, resume preparation, and crash recovery. Model history is projected from canonical events rather than persisted separately.
|
package/README.zh.md
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
`dsh-edge` 是 DeepSeek Harness 的 Cloudflare 运行时原型。每次部署把通过认证的 owner 固定映射到一个 Durable Object,其基于 SQLite 的虚拟文件系统可跨请求持久保存。默认情况下,进程内 just-bash 后端直接在同一文件系统上执行命令,不依赖 Linux 容器或 Dynamic Worker。
|
|
6
6
|
|
|
7
|
+
`dsh-edge` 是独立的社区项目,与 DeepSeek 没有隶属关系,也未获得 DeepSeek 官方背书;DeepSeek Harness 仍是按其自身许可证使用的上游依赖。
|
|
8
|
+
|
|
7
9
|
仓库提交的 Wrangler 配置从同一套应用 graph 暴露两个部署目标。默认目标是面向 Workers Free 的 direct 模式,不包含 Worker Loader binding。命名的 `isolated` 目标会添加 `LOADER` binding,并且需要 Workers Paid,但不会 fork DSH protocol、storage、UI 或 tool implementation。
|
|
8
10
|
|
|
9
11
|
该原型通过上游 Cordis 组合的 `ReactLoopAgent`、`AgentRegistry`、`LlmRuntime`、`ToolRuntime`、`SystemPrompt`、`SessionStore` 和 `SessionPersistence` 运行持久对话。Edge 代码只绑定请求作用域的 DeepSeek 适配器,并把一个原生 DSH `bash` 工具定义映射到 Cloudflare Computer。Durable Object SQLite 实现上游持久化后端约定,write-behind、revision、恢复准备和崩溃恢复仍由 `PersistenceCoordinator` 负责。模型历史从 canonical 事件投影,不再单独持久化。
|
package/THIRD_PARTY_NOTICES.md
CHANGED
|
@@ -1,15 +1,43 @@
|
|
|
1
|
-
<!-- Generated by scripts/
|
|
2
|
-
Run `pnpm run
|
|
1
|
+
<!-- Generated by apps/dsh-edge/scripts/legal-files.mjs — do not edit by hand.
|
|
2
|
+
Run `pnpm --filter dsh-edge run legal:write` to regenerate. -->
|
|
3
3
|
|
|
4
4
|
# Third-Party Notices
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
`dsh-edge` is an independent community project and is not affiliated with or endorsed by DeepSeek.
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
## DeepSeek Harness
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
`dsh-edge` includes and adapts DeepSeek Harness. DeepSeek Harness retains its upstream copyright and MIT license:
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
```text
|
|
13
|
+
MIT License
|
|
14
|
+
|
|
15
|
+
Copyright (c) 2026 DeepSeek
|
|
16
|
+
|
|
17
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
18
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
19
|
+
in the Software without restriction, including without limitation the rights
|
|
20
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
21
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
22
|
+
furnished to do so, subject to the following conditions:
|
|
23
|
+
|
|
24
|
+
The above copyright notice and this permission notice shall be included in all
|
|
25
|
+
copies or substantial portions of the Software.
|
|
26
|
+
|
|
27
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
28
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
29
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
30
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
31
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
32
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
33
|
+
SOFTWARE.
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## DeepSeek Harness dependency notices
|
|
37
|
+
|
|
38
|
+
The following inventory is reproduced from the DeepSeek Harness source distribution. Each project remains under its own license; nothing in this file changes those terms.
|
|
39
|
+
|
|
40
|
+
### Vendored source (`vendor/`)
|
|
13
41
|
|
|
14
42
|
The Cordis framework and its foundation libraries are source-vendored into this repository rather than consumed from npm, and republished under the `@deepseek-ai` scope. All are MIT-licensed; each directory preserves its upstream `LICENSE` file. Exact upstream commits and local modifications are recorded in [`vendor/README.md`](vendor/README.md).
|
|
15
43
|
|
|
@@ -25,7 +53,7 @@ The Cordis framework and its foundation libraries are source-vendored into this
|
|
|
25
53
|
| `@deepseek-ai/cordis-plugin-hmr` | `@cordisjs/plugin-hmr` | [github.com/deepseek-harness/cordis](https://github.com/deepseek-harness/cordis) | MIT |
|
|
26
54
|
| `@deepseek-ai/cordis-plugin-logger-console` | `@cordisjs/plugin-logger-console` | [github.com/deepseek-harness/cordis](https://github.com/deepseek-harness/cordis) | MIT |
|
|
27
55
|
|
|
28
|
-
|
|
56
|
+
### Runtime npm dependencies
|
|
29
57
|
|
|
30
58
|
External packages that a workspace package resolves at runtime. The tier covers every plugin a user can mount from `cordis.yml` — not only what the `dsh` CLI, Web UI, and Python SDK runtime load by default.
|
|
31
59
|
|
|
@@ -102,7 +130,7 @@ pnpm applies local patches to the following packages at install time, so shipped
|
|
|
102
130
|
|
|
103
131
|
- `node-pty@1.2.0-beta.15` — [`patches/node-pty@1.2.0-beta.15.patch`](patches/node-pty@1.2.0-beta.15.patch)
|
|
104
132
|
|
|
105
|
-
|
|
133
|
+
### Official Claude Code platform payloads
|
|
106
134
|
|
|
107
135
|
The project owner authorizes distribution of every version of the official `@anthropic-ai/claude-agent-sdk` package and the official Claude Code CLI/platform payloads that each version declares through `optionalDependencies`. This identity-scoped authorization does not classify their declared terms as permissive and does not cover any unrelated runtime package; version, declared-license, and payload-set changes still require the ordinary dependency, lockfile, compatibility, terms, and notices review.
|
|
108
136
|
|
|
@@ -120,7 +148,7 @@ The installed SDK 0.3.220 declares the following optional platform packages. Eac
|
|
|
120
148
|
| [`@anthropic-ai/claude-agent-sdk-win32-x64`](https://www.npmjs.com/package/@anthropic-ai/claude-agent-sdk-win32-x64) | 0.3.220 | SEE LICENSE IN LICENSE.md |
|
|
121
149
|
|
|
122
150
|
|
|
123
|
-
|
|
151
|
+
### Development-only npm dependencies
|
|
124
152
|
|
|
125
153
|
External packages **directly declared** only by repository tooling, test infrastructure, the documentation site, the demo leaves, or the native launcher's build workspace. No shipped surface names them itself. A package here may still be pulled in transitively by a runtime dependency — `pnpm-lock.yaml` is the authority on the full closure — so this tier records who declares a package, not what a build ultimately bundles.
|
|
126
154
|
|
|
@@ -177,7 +205,7 @@ External packages **directly declared** only by repository tooling, test infrast
|
|
|
177
205
|
|
|
178
206
|
`eslint-plugin-sonarjs` (LGPL-3.0-only) and `lightningcss` (MPL-2.0) run only as development tooling; their code is not linked into or distributed with any DeepSeek Harness artifact.
|
|
179
207
|
|
|
180
|
-
|
|
208
|
+
### Python SDK dependencies (`python/`)
|
|
181
209
|
|
|
182
210
|
Direct dependencies of the `pyproject.toml` manifests, plus `uv` as the development workflow tool.
|
|
183
211
|
|
|
@@ -188,12 +216,12 @@ Direct dependencies of the `pyproject.toml` manifests, plus `uv` as the developm
|
|
|
188
216
|
| [`pytest`](https://github.com/pytest-dev/pytest) | MIT | test-only |
|
|
189
217
|
| [`uv`](https://github.com/astral-sh/uv) | MIT / Apache-2.0 | development workflow tool |
|
|
190
218
|
|
|
191
|
-
|
|
219
|
+
### Fetched at build time
|
|
192
220
|
|
|
193
221
|
| Package | License | Role |
|
|
194
222
|
| --- | --- | --- |
|
|
195
223
|
| [`@yao-pkg/pkg`](https://github.com/yao-pkg/pkg) | MIT | invoked by `scripts/build-exe-for-python-sdk.ts` to assemble the single-file SDK runtime executable |
|
|
196
224
|
|
|
197
|
-
|
|
225
|
+
### First-party native packages
|
|
198
226
|
|
|
199
227
|
`@deepseek-ai/node-addon-landlock-run` (and its platform packages) is built and released from this repository under BSD 3-Clause. It is listed here for completeness; it is first-party, not third-party.
|
package/dist/index.html
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
}
|
|
19
19
|
return response
|
|
20
20
|
}
|
|
21
|
-
})()</script><script>window.__DSH_BOOT__ = {"rev":"
|
|
21
|
+
})()</script><script>window.__DSH_BOOT__ = {"rev":"95a71229887d","entries":[{"id":"@deepseek-ai/dsh-typert-registry","url":"/plugins/@deepseek-ai/dsh-typert-registry/client.js?rev=f41d56e0b747","rev":"f41d56e0b747","inject":[],"immediately":true},{"id":"@deepseek-ai/dsh-api-gateway","url":"/plugins/@deepseek-ai/dsh-api-gateway/client.js?rev=9e83e9d9c076","rev":"9e83e9d9c076","inject":["@deepseek-ai/dsh-typert-registry","@deepseek-ai/dsh-client-connection"],"immediately":true},{"id":"@deepseek-ai/dsh-client-modules","url":"/plugins/@deepseek-ai/dsh-client-modules/client.js?rev=c3a65f7f440a","rev":"c3a65f7f440a","inject":[],"immediately":true},{"id":"@deepseek-ai/dsh-client-connection","url":"/plugins/@deepseek-ai/dsh-client-connection/client.js?rev=e4774927550c","rev":"e4774927550c","inject":[],"immediately":true},{"id":"@deepseek-ai/dsh-api-remotes","url":"/plugins/@deepseek-ai/dsh-api-remotes/client.js?rev=e17dd6016653","rev":"e17dd6016653","inject":["@deepseek-ai/dsh-api-gateway"],"immediately":true},{"id":"@deepseek-ai/dsh-client-runtime","url":"/plugins/@deepseek-ai/dsh-client-runtime/client.js?rev=6a4a3bdb1227","rev":"6a4a3bdb1227","inject":["@deepseek-ai/dsh-client-connection","@deepseek-ai/dsh-typert-registry","@deepseek-ai/dsh-api-remotes"],"immediately":true},{"id":"@deepseek-ai/dsh-client-ui-theme","url":"/plugins/@deepseek-ai/dsh-client-ui-theme/client.js?rev=12371dcb8d62","rev":"12371dcb8d62","inject":["@deepseek-ai/dsh-client-connection","@deepseek-ai/dsh-client-runtime","@deepseek-ai/dsh-client-locale","@deepseek-ai/dsh-client-ui-settings","@deepseek-ai/dsh-api-remotes"],"immediately":true},{"id":"@deepseek-ai/dsh-client-locale","url":"/plugins/@deepseek-ai/dsh-client-locale/client.js?rev=1dbc152f8422","rev":"1dbc152f8422","inject":["@deepseek-ai/dsh-client-connection","@deepseek-ai/dsh-client-runtime","@deepseek-ai/dsh-client-ui-settings","@deepseek-ai/dsh-api-remotes"],"immediately":true},{"id":"@deepseek-ai/dsh-client-ui-layout","url":"/plugins/@deepseek-ai/dsh-client-ui-layout/client.js?rev=d9a1a5e2eeed","rev":"d9a1a5e2eeed","inject":["@deepseek-ai/dsh-client-runtime","@deepseek-ai/dsh-client-ui-theme"]},{"id":"@deepseek-ai/dsh-client-ui-sidebar","url":"/plugins/@deepseek-ai/dsh-client-ui-sidebar/client.js?rev=292a7ae27d65","rev":"292a7ae27d65","inject":["@deepseek-ai/dsh-client-runtime","@deepseek-ai/dsh-client-ui-layout","@deepseek-ai/dsh-client-locale"]},{"id":"@deepseek-ai/dsh-client-ui-settings","url":"/plugins/@deepseek-ai/dsh-client-ui-settings/client.js?rev=09edeb10e0d0","rev":"09edeb10e0d0","inject":["@deepseek-ai/dsh-client-connection","@deepseek-ai/dsh-client-runtime","@deepseek-ai/dsh-api-remotes"]},{"id":"@deepseek-ai/dsh-client-ui-settings-general","url":"/plugins/@deepseek-ai/dsh-client-ui-settings-general/client.js?rev=8381401e229b","rev":"8381401e229b","inject":["@deepseek-ai/dsh-client-runtime","@deepseek-ai/dsh-client-ui-settings","@deepseek-ai/dsh-client-locale","@deepseek-ai/dsh-client-connection","@deepseek-ai/dsh-api-remotes","@deepseek-ai/dsh-client-ui-sidebar"]},{"id":"@deepseek-ai/dsh-client-ui-conversation","url":"/plugins/@deepseek-ai/dsh-client-ui-conversation/client.js?rev=182db6febf57","rev":"182db6febf57","inject":["@deepseek-ai/dsh-client-connection","@deepseek-ai/dsh-client-locale","@deepseek-ai/dsh-client-runtime","@deepseek-ai/dsh-client-ui-settings","@deepseek-ai/dsh-api-remotes","@deepseek-ai/dsh-client-ui-layout"]},{"id":"@deepseek-ai/dsh-client-ui-tool","url":"/plugins/@deepseek-ai/dsh-client-ui-tool/client.js?rev=76ed4a09bb65","rev":"76ed4a09bb65","inject":["@deepseek-ai/dsh-client-runtime","@deepseek-ai/dsh-client-locale","@deepseek-ai/dsh-client-ui-conversation"]},{"id":"@deepseek-ai/dsh-client-ui-workflow-run","url":"/plugins/@deepseek-ai/dsh-client-ui-workflow-run/client.js?rev=7cd3441306aa","rev":"7cd3441306aa","inject":["@deepseek-ai/dsh-client-locale","@deepseek-ai/dsh-client-runtime","@deepseek-ai/dsh-client-ui-conversation"]},{"id":"@deepseek-ai/dsh-client-ui-deliverables","url":"/plugins/@deepseek-ai/dsh-client-ui-deliverables/client.js?rev=ecc61af5aecf","rev":"ecc61af5aecf","inject":["@deepseek-ai/dsh-client-connection","@deepseek-ai/dsh-client-locale","@deepseek-ai/dsh-client-runtime","@deepseek-ai/dsh-client-ui-conversation"]},{"id":"@deepseek-ai/dsh-client-ui-workspace","url":"/plugins/@deepseek-ai/dsh-client-ui-workspace/client.js?rev=b230cf9f30a1","rev":"b230cf9f30a1","inject":["@deepseek-ai/dsh-client-locale","@deepseek-ai/dsh-client-runtime","@deepseek-ai/dsh-client-ui-conversation","@deepseek-ai/dsh-client-ui-sidebar"]},{"id":"@deepseek-ai/dsh-client-ui-input-trigger","url":"/plugins/@deepseek-ai/dsh-client-ui-input-trigger/client.js?rev=c1fdc2b26b18","rev":"c1fdc2b26b18","inject":["@deepseek-ai/dsh-client-runtime","@deepseek-ai/dsh-client-locale"]},{"id":"@deepseek-ai/dsh-client-ui-commands","url":"/plugins/@deepseek-ai/dsh-client-ui-commands/client.js?rev=98289bfd6789","rev":"98289bfd6789","inject":["@deepseek-ai/dsh-api-remotes","@deepseek-ai/dsh-client-runtime","@deepseek-ai/dsh-client-locale","@deepseek-ai/dsh-client-ui-input-trigger","@deepseek-ai/dsh-client-ui-conversation"]},{"id":"@deepseek-ai/dsh-client-ui-skill","url":"/plugins/@deepseek-ai/dsh-client-ui-skill/client.js?rev=56d661feb0d7","rev":"56d661feb0d7","inject":["@deepseek-ai/dsh-client-runtime","@deepseek-ai/dsh-client-locale","@deepseek-ai/dsh-client-ui-tool","@deepseek-ai/dsh-client-ui-input-trigger","@deepseek-ai/dsh-api-remotes"]},{"id":"@deepseek-ai/dsh-client-ui-subagent","url":"/plugins/@deepseek-ai/dsh-client-ui-subagent/client.js?rev=eb382890c1de","rev":"eb382890c1de","inject":["@deepseek-ai/dsh-client-locale","@deepseek-ai/dsh-client-runtime","@deepseek-ai/dsh-client-ui-conversation","@deepseek-ai/dsh-client-ui-primitives","@deepseek-ai/dsh-client-ui-input-trigger"]},{"id":"@deepseek-ai/dsh-client-ui-jobs","url":"/plugins/@deepseek-ai/dsh-client-ui-jobs/client.js?rev=d3d84cdfd0c4","rev":"d3d84cdfd0c4","inject":["@deepseek-ai/dsh-client-locale","@deepseek-ai/dsh-client-runtime","@deepseek-ai/dsh-client-ui-conversation","@deepseek-ai/dsh-client-ui-primitives"]},{"id":"@deepseek-ai/dsh-client-ui-model-selection","url":"/plugins/@deepseek-ai/dsh-client-ui-model-selection/client.js?rev=93af76dc6126","rev":"93af76dc6126","inject":["@deepseek-ai/dsh-client-locale","@deepseek-ai/dsh-client-runtime","@deepseek-ai/dsh-client-ui-commands","@deepseek-ai/dsh-api-remotes"]},{"id":"@deepseek-ai/dsh-client-ui-permission-presets","url":"/plugins/@deepseek-ai/dsh-client-ui-permission-presets/client.js?rev=c4a742c3ad57","rev":"c4a742c3ad57","inject":["@deepseek-ai/dsh-client-connection","@deepseek-ai/dsh-client-locale","@deepseek-ai/dsh-client-runtime","@deepseek-ai/dsh-client-ui-commands","@deepseek-ai/dsh-api-remotes","@deepseek-ai/dsh-client-ui-settings"]},{"id":"@deepseek-ai/dsh-client-ui-agent-preset","url":"/plugins/@deepseek-ai/dsh-client-ui-agent-preset/client.js?rev=4635022dca84","rev":"4635022dca84","inject":["@deepseek-ai/dsh-client-connection","@deepseek-ai/dsh-client-locale","@deepseek-ai/dsh-client-runtime","@deepseek-ai/dsh-client-ui-conversation","@deepseek-ai/dsh-client-ui-settings","@deepseek-ai/dsh-api-remotes"]},{"id":"@deepseek-ai/dsh-client-ui-user-questions","url":"/plugins/@deepseek-ai/dsh-client-ui-user-questions/client.js?rev=368b881accb6","rev":"368b881accb6","inject":["@deepseek-ai/dsh-client-locale","@deepseek-ai/dsh-client-ui-conversation"]},{"id":"@deepseek-ai/dsh-client-ui-trajectory","url":"/plugins/@deepseek-ai/dsh-client-ui-trajectory/client.js?rev=b1898accf737","rev":"b1898accf737","inject":["@deepseek-ai/dsh-client-locale","@deepseek-ai/dsh-client-runtime","@deepseek-ai/dsh-client-ui-conversation"]},{"id":"dsh-edge-client-ui","url":"/plugins/dsh-edge-client-ui/client.js?rev=28048e72479a","rev":"28048e72479a","inject":["@deepseek-ai/dsh-client-runtime","@deepseek-ai/dsh-client-ui-settings","@deepseek-ai/dsh-client-locale"]}]}</script>
|
|
22
22
|
<meta charset="utf-8" />
|
|
23
23
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
24
24
|
<link rel="manifest" href="/manifest.webmanifest" />
|
|
@@ -875,8 +875,8 @@ window.__ModuleLoader__.load({
|
|
|
875
875
|
/** English dictionary, checked complete against the zh key set. */
|
|
876
876
|
const en = { "language.title": "Language" };
|
|
877
877
|
//#endregion
|
|
878
|
-
//#region \0dsh-css
|
|
879
|
-
const css = ".
|
|
878
|
+
//#region \0dsh-css:D:\a\dsh-edge\dsh-edge\packages\client\locale\src\client\LanguageRow.module.css.mjs
|
|
879
|
+
const css = ".D6Kc3G_row{border-bottom:1px solid var(--dsw-alias-border-l2);align-items:center;gap:8px;padding:16px 0;display:flex}.D6Kc3G_rowText{flex-direction:column;flex:1;gap:4px;min-width:0;padding-right:48px;display:flex}.D6Kc3G_title{color:var(--dsw-alias-label-primary);font-size:14px;font-weight:400;line-height:22px}.D6Kc3G_selector{background:var(--dsw-alias-bg-module-platform);height:36px;font:inherit;color:var(--dsw-alias-label-primary);cursor:pointer;border:none;border-radius:18px;align-items:center;gap:12px;padding:0 14px;font-size:14px;line-height:22px;display:inline-flex}.D6Kc3G_selector:hover{background:var(--dsw-alias-interactive-bg-hover)}.D6Kc3G_chevron{flex:none}";
|
|
880
880
|
const tagId = "@deepseek-ai/dsh-client-locale/LanguageRow.module.css";
|
|
881
881
|
if (typeof document !== "undefined" && document.querySelector("style[data-plugin-css=" + JSON.stringify(tagId) + "]") === null) {
|
|
882
882
|
const tag = document.createElement("style");
|
|
@@ -886,11 +886,11 @@ window.__ModuleLoader__.load({
|
|
|
886
886
|
document.head.appendChild(tag);
|
|
887
887
|
}
|
|
888
888
|
var LanguageRow_module_css_default = {
|
|
889
|
-
"
|
|
890
|
-
"rowText": "
|
|
891
|
-
"
|
|
892
|
-
"
|
|
893
|
-
"
|
|
889
|
+
"selector": "D6Kc3G_selector",
|
|
890
|
+
"rowText": "D6Kc3G_rowText",
|
|
891
|
+
"title": "D6Kc3G_title",
|
|
892
|
+
"chevron": "D6Kc3G_chevron",
|
|
893
|
+
"row": "D6Kc3G_row"
|
|
894
894
|
};
|
|
895
895
|
//#endregion
|
|
896
896
|
//#region lib/types/client/LanguageRow.js
|
|
@@ -158,8 +158,8 @@ window.__ModuleLoader__.load({
|
|
|
158
158
|
};
|
|
159
159
|
}
|
|
160
160
|
//#endregion
|
|
161
|
-
//#region \0dsh-css
|
|
162
|
-
const css$3 = ".
|
|
161
|
+
//#region \0dsh-css:D:\a\dsh-edge\dsh-edge\packages\client\ui-agent-preset\src\client\AgentPresetLabel.module.css.mjs
|
|
162
|
+
const css$3 = ".m-LsSW_label{background:var(--dsw-alias-fill-tsp-secondary);max-width:180px;height:22px;color:var(--dsw-alias-label-secondary);white-space:nowrap;text-overflow:ellipsis;border-radius:6px;align-items:center;gap:4px;padding:0 2px 0 0;font-size:12px;line-height:22px;display:inline-flex;overflow:hidden}.m-LsSW_icon{opacity:.7;flex:none}";
|
|
163
163
|
const tagId$3 = "@deepseek-ai/dsh-client-ui-agent-preset/AgentPresetLabel.module.css";
|
|
164
164
|
if (typeof document !== "undefined" && document.querySelector("style[data-plugin-css=" + JSON.stringify(tagId$3) + "]") === null) {
|
|
165
165
|
const tag = document.createElement("style");
|
|
@@ -169,8 +169,8 @@ window.__ModuleLoader__.load({
|
|
|
169
169
|
document.head.appendChild(tag);
|
|
170
170
|
}
|
|
171
171
|
var AgentPresetLabel_module_css_default = {
|
|
172
|
-
"label": "
|
|
173
|
-
"icon": "
|
|
172
|
+
"label": "m-LsSW_label",
|
|
173
|
+
"icon": "m-LsSW_icon"
|
|
174
174
|
};
|
|
175
175
|
//#endregion
|
|
176
176
|
//#region lib/types/client/AgentPresetLabel.js
|
|
@@ -257,8 +257,8 @@ window.__ModuleLoader__.load({
|
|
|
257
257
|
});
|
|
258
258
|
}
|
|
259
259
|
//#endregion
|
|
260
|
-
//#region \0dsh-css
|
|
261
|
-
const css$2 = ".
|
|
260
|
+
//#region \0dsh-css:D:\a\dsh-edge\dsh-edge\packages\client\ui-agent-preset\src\client\AgentPresetRow.module.css.mjs
|
|
261
|
+
const css$2 = ".mh38Ja_row{border-bottom:1px solid var(--dsw-alias-border-l2);align-items:center;gap:8px;padding:16px 0;display:flex}.mh38Ja_rowText{flex-direction:column;flex:1;gap:4px;min-width:0;padding-right:48px;display:flex}.mh38Ja_title{color:var(--dsw-alias-label-primary);font-size:14px;font-weight:400;line-height:22px}.mh38Ja_desc{color:var(--dsw-alias-label-tertiary);font-size:12px;font-weight:400;line-height:18px}.mh38Ja_selector{background:var(--dsw-alias-bg-module-platform);height:36px;font:inherit;color:var(--dsw-alias-label-primary);cursor:pointer;border:none;border-radius:18px;align-items:center;gap:12px;padding:0 14px;font-size:14px;line-height:22px;display:inline-flex}.mh38Ja_selector:hover:not(:disabled){background:var(--dsw-alias-interactive-bg-hover)}.mh38Ja_selector:disabled{cursor:default}.mh38Ja_chevron{flex:none}";
|
|
262
262
|
const tagId$2 = "@deepseek-ai/dsh-client-ui-agent-preset/AgentPresetRow.module.css";
|
|
263
263
|
if (typeof document !== "undefined" && document.querySelector("style[data-plugin-css=" + JSON.stringify(tagId$2) + "]") === null) {
|
|
264
264
|
const tag = document.createElement("style");
|
|
@@ -268,12 +268,12 @@ window.__ModuleLoader__.load({
|
|
|
268
268
|
document.head.appendChild(tag);
|
|
269
269
|
}
|
|
270
270
|
var AgentPresetRow_module_css_default = {
|
|
271
|
-
"desc": "
|
|
272
|
-
"
|
|
273
|
-
"
|
|
274
|
-
"title": "
|
|
275
|
-
"
|
|
276
|
-
"chevron": "
|
|
271
|
+
"desc": "mh38Ja_desc",
|
|
272
|
+
"selector": "mh38Ja_selector",
|
|
273
|
+
"row": "mh38Ja_row",
|
|
274
|
+
"title": "mh38Ja_title",
|
|
275
|
+
"rowText": "mh38Ja_rowText",
|
|
276
|
+
"chevron": "mh38Ja_chevron"
|
|
277
277
|
};
|
|
278
278
|
//#endregion
|
|
279
279
|
//#region lib/types/client/AgentPresetRow.js
|
|
@@ -332,8 +332,8 @@ window.__ModuleLoader__.load({
|
|
|
332
332
|
});
|
|
333
333
|
}
|
|
334
334
|
//#endregion
|
|
335
|
-
//#region \0dsh-css
|
|
336
|
-
const css$1 = ".
|
|
335
|
+
//#region \0dsh-css:D:\a\dsh-edge\dsh-edge\packages\client\ui-agent-preset\src\client\AgentPresetSeat.module.css.mjs
|
|
336
|
+
const css$1 = "._1bLKuG_seat{max-width:min(100%,240px);min-height:28px;color:var(--dsw-alias-label-primary);white-space:nowrap;text-overflow:ellipsis;cursor:pointer;background:0 0;border:none;border-radius:16px;align-items:center;gap:4px;padding:0 8px;font-size:13px;font-weight:500;line-height:20px;display:inline-flex;overflow:hidden}._1bLKuG_seat:not(:disabled):hover,._1bLKuG_seat[aria-expanded=true]{background:var(--dsw-alias-interactive-bg-hover)}._1bLKuG_seat:disabled{cursor:default;color:var(--dsw-alias-label-quaternary)}._1bLKuG_seatIcon{color:var(--dsw-alias-label-primary);flex:none}._1bLKuG_introIcon{animation:.15s cubic-bezier(.16,1,.3,1) both _1bLKuG_seat-icon-in}@keyframes _1bLKuG_seat-icon-in{0%{opacity:0;transform:scale(.5)}to{opacity:1;transform:scale(1)}}._1bLKuG_introText{white-space:pre;display:inline-block}._1bLKuG_introChar{white-space:pre;opacity:0;animation:.4s ease-out forwards _1bLKuG_seat-char-in;display:inline-block}@keyframes _1bLKuG_seat-char-in{0%{opacity:0;transform:translateY(4px)}to{opacity:1;transform:none}}@media (prefers-reduced-motion:reduce){._1bLKuG_introIcon,._1bLKuG_introChar{opacity:1;animation:none}}._1bLKuG_chevron{color:var(--dsw-alias-label-caption);flex:none}._1bLKuG_item{flex-direction:column;gap:2px;max-width:280px;display:flex}._1bLKuG_itemName{color:var(--dsw-alias-label-primary);font-size:13px;line-height:20px}._1bLKuG_itemDesc{color:var(--dsw-alias-label-caption);white-space:normal;font-size:12px;line-height:16px}";
|
|
337
337
|
const tagId$1 = "@deepseek-ai/dsh-client-ui-agent-preset/AgentPresetSeat.module.css";
|
|
338
338
|
if (typeof document !== "undefined" && document.querySelector("style[data-plugin-css=" + JSON.stringify(tagId$1) + "]") === null) {
|
|
339
339
|
const tag = document.createElement("style");
|
|
@@ -343,17 +343,17 @@ window.__ModuleLoader__.load({
|
|
|
343
343
|
document.head.appendChild(tag);
|
|
344
344
|
}
|
|
345
345
|
var AgentPresetSeat_module_css_default = {
|
|
346
|
-
"
|
|
347
|
-
"
|
|
348
|
-
"
|
|
349
|
-
"
|
|
350
|
-
"
|
|
351
|
-
"
|
|
352
|
-
"seat": "
|
|
353
|
-
"
|
|
354
|
-
"introChar": "
|
|
355
|
-
"
|
|
356
|
-
"
|
|
346
|
+
"itemName": "_1bLKuG_itemName",
|
|
347
|
+
"itemDesc": "_1bLKuG_itemDesc",
|
|
348
|
+
"introIcon": "_1bLKuG_introIcon",
|
|
349
|
+
"introText": "_1bLKuG_introText",
|
|
350
|
+
"seat-icon-in": "_1bLKuG_seat-icon-in",
|
|
351
|
+
"item": "_1bLKuG_item",
|
|
352
|
+
"seat-char-in": "_1bLKuG_seat-char-in",
|
|
353
|
+
"chevron": "_1bLKuG_chevron",
|
|
354
|
+
"introChar": "_1bLKuG_introChar",
|
|
355
|
+
"seatIcon": "_1bLKuG_seatIcon",
|
|
356
|
+
"seat": "_1bLKuG_seat"
|
|
357
357
|
};
|
|
358
358
|
//#endregion
|
|
359
359
|
//#region lib/types/client/AgentPresetSeat.js
|
|
@@ -973,8 +973,8 @@ window.__ModuleLoader__.load({
|
|
|
973
973
|
}
|
|
974
974
|
};
|
|
975
975
|
//#endregion
|
|
976
|
-
//#region \0dsh-css
|
|
977
|
-
const css = ".
|
|
976
|
+
//#region \0dsh-css:D:\a\dsh-edge\dsh-edge\packages\client\ui-agent-preset\src\client\AgentPresetSection.module.css.mjs
|
|
977
|
+
const css = ".TA3O3q_section{max-width:720px;color:var(--dsw-alias-label-primary);flex-direction:column;gap:12px;display:flex}.TA3O3q_title{margin:0;font-size:18px;font-weight:600}.TA3O3q_intro{color:var(--dsw-alias-label-tertiary);margin:0;font-size:13px}.TA3O3q_group{flex-direction:column;gap:10px;display:flex}.TA3O3q_group+.TA3O3q_group{margin-top:20px}.TA3O3q_groupHead{letter-spacing:.06em;text-transform:uppercase;color:var(--dsw-alias-label-tertiary);margin:0;font-size:12px;font-weight:600}.TA3O3q_cards{grid-template-columns:repeat(auto-fill,minmax(268px,1fr));grid-auto-rows:1fr;gap:12px;margin:0;padding:0;list-style:none;display:grid}.TA3O3q_card{border:1px solid var(--dsw-alias-border-l2);background:var(--dsw-alias-bg-layer-3);border-radius:12px;flex-direction:column;transition:border-color .16s,background .16s;display:flex}.TA3O3q_card:hover:not(.TA3O3q_cardActive){border-color:var(--dsw-alias-label-dimmed)}.TA3O3q_cardActive{background:var(--dsw-alias-bg-layer-2);border-color:var(--dsw-alias-label-primary)}.TA3O3q_cardBroken,.TA3O3q_cardBroken:hover{border-color:var(--dsw-alias-state-error-primary)}.TA3O3q_brokenBadge{white-space:nowrap;background:var(--dsw-alias-state-error-primary);color:var(--dsw-alias-bg-layer-3);border-radius:999px;padding:1px 8px;font-size:11px;font-weight:500;line-height:17px}.TA3O3q_cardBrokenReason{color:var(--dsw-alias-state-error-primary);overflow-wrap:anywhere;font-size:12px;line-height:1.5}.TA3O3q_cardMain{appearance:none;font:inherit;color:inherit;text-align:left;cursor:pointer;background:0 0;border:0;border-radius:12px 12px 0 0;flex-direction:column;flex:1;gap:8px;padding:14px 16px 12px;display:flex}.TA3O3q_cardMain:disabled{cursor:default}.TA3O3q_cardMain:focus-visible{outline:2px solid var(--dsw-alias-brand-primary);outline-offset:-2px}.TA3O3q_cardHead{align-items:center;gap:8px;display:flex}.TA3O3q_cardName{font-size:15px;font-weight:600;line-height:1.4}.TA3O3q_badge,.TA3O3q_inUse{white-space:nowrap;border-radius:999px;padding:1px 8px;font-size:11px;font-weight:500;line-height:17px}.TA3O3q_badge{border:1px solid var(--dsw-alias-border-l2);color:var(--dsw-alias-label-tertiary)}.TA3O3q_inUse{background:var(--dsw-alias-label-primary);color:var(--dsw-alias-bg-layer-3);margin-left:auto}.TA3O3q_cardDesc{color:var(--dsw-alias-label-secondary);-webkit-line-clamp:4;overflow-wrap:anywhere;-webkit-box-orient:vertical;min-height:42px;font-size:13px;line-height:1.55;display:-webkit-box;overflow:hidden}.TA3O3q_cardId{font-family:var(--dsw-font-mono,ui-monospace, SFMono-Regular, Menlo, monospace);color:var(--dsw-alias-label-dimmed);margin-top:auto;font-size:11px}.TA3O3q_cardFoot{border-top:1px solid var(--dsw-alias-border-l2);justify-content:flex-end;gap:2px;padding:6px 10px;display:flex}.TA3O3q_iconButton{appearance:none;color:var(--dsw-alias-label-tertiary);cursor:pointer;background:0 0;border:0;border-radius:7px;align-items:center;padding:6px;display:inline-flex;position:relative}.TA3O3q_iconButton:disabled{opacity:.4;cursor:default}.TA3O3q_iconButton:hover:not(:disabled){background:var(--dsw-alias-bg-layer-1);color:var(--dsw-alias-label-primary)}.TA3O3q_iconButton:focus-visible{outline:2px solid var(--dsw-alias-brand-primary);outline-offset:-1px}.TA3O3q_iconButton:after{content:attr(data-tip);background:var(--dsw-alias-label-primary);color:var(--dsw-alias-bg-layer-3);white-space:nowrap;opacity:0;pointer-events:none;border-radius:6px;padding:3px 8px;font-size:11px;line-height:17px;transition:opacity .12s;position:absolute;bottom:calc(100% + 6px);left:50%;transform:translate(-50%)}.TA3O3q_iconButton:hover:after,.TA3O3q_iconButton:focus-visible:after{opacity:1}.TA3O3q_iconDanger:hover:not(:disabled){background:var(--dsw-alias-interactive-bg-hover-danger);color:var(--dsw-alias-state-error-primary)}.TA3O3q_revealedPath{color:var(--dsw-alias-label-tertiary);align-items:baseline;gap:6px;margin:0;padding:6px 16px 10px;font-size:11px;display:flex}.TA3O3q_revealedPath code{font-family:var(--dsw-font-mono,ui-monospace, SFMono-Regular, Menlo, monospace);color:var(--dsw-alias-label-secondary);user-select:all;overflow-wrap:anywhere}.TA3O3q_revealedPathLabel{white-space:nowrap}.TA3O3q_secondaryButton{color:var(--dsw-alias-label-secondary);font:inherit;cursor:pointer;background:0 0;border:none;border-radius:7px;padding:5px 8px;font-size:12.5px}.TA3O3q_secondaryButton:hover:not(:disabled){background:var(--dsw-alias-bg-layer-1)}.TA3O3q_secondaryButton:disabled{opacity:.5;cursor:default}.TA3O3q_field{flex-direction:column;gap:6px;display:flex}.TA3O3q_fieldLabel{color:var(--dsw-alias-label-secondary);font-size:12px;font-weight:500}.TA3O3q_input{box-sizing:border-box;border:1px solid var(--dsw-alias-border-l2);font:inherit;background:var(--dsw-alias-bg-layer-1);color:var(--dsw-alias-label-primary);border-radius:10px;padding:9px 12px;font-size:13px}.TA3O3q_input:focus{border-color:var(--dsw-alias-brand-primary);outline:none}.TA3O3q_input::placeholder{color:var(--dsw-alias-label-dimmed)}.TA3O3q_dialog{width:min(560px,100%)}.TA3O3q_dialogFields{flex-direction:column;gap:12px;display:flex}.TA3O3q_viewerCode{border:1px solid var(--dsw-alias-border-l2);background:var(--dsw-alias-bg-layer-2);max-height:min(52vh,480px);color:var(--dsw-alias-label-secondary);font-family:var(--dsw-font-mono,ui-monospace, SFMono-Regular, Menlo, monospace);white-space:pre;tab-size:2;--dsh-scrollbar-thumb:var(--dsw-alias-scrollbar-bg-l2);--dsh-scrollbar-thumb-hover:var(--dsw-alias-scrollbar-hover-l2);border-radius:10px;margin:0;padding:12px;font-size:12.5px;line-height:1.5;overflow:auto}.TA3O3q_error{color:var(--dsw-alias-state-error-primary);margin:0;font-size:12px}.TA3O3q_deleteDialog{width:min(480px,100%)}.TA3O3q_deleteConfirm:not(:disabled){border-color:var(--dsw-alias-state-error-primary);color:var(--dsw-alias-state-error-primary)}.TA3O3q_deleteConfirm:hover:not(:disabled){background:var(--dsw-alias-interactive-bg-hover-danger)}.TA3O3q_creatorButton{box-sizing:border-box;border:1px dashed var(--dsw-alias-border-l3);height:44px;font:inherit;color:var(--dsw-alias-label-primary);cursor:pointer;background:0 0;border-radius:12px;justify-content:center;align-self:stretch;align-items:center;gap:6px;font-size:14px;line-height:22px;display:flex}.TA3O3q_creatorButton:hover:not(:disabled){background:var(--dsw-alias-interactive-bg-hover)}.TA3O3q_creatorButton:disabled{opacity:.4;cursor:default}";
|
|
978
978
|
const tagId = "@deepseek-ai/dsh-client-ui-agent-preset/AgentPresetSection.module.css";
|
|
979
979
|
if (typeof document !== "undefined" && document.querySelector("style[data-plugin-css=" + JSON.stringify(tagId) + "]") === null) {
|
|
980
980
|
const tag = document.createElement("style");
|
|
@@ -984,40 +984,40 @@ window.__ModuleLoader__.load({
|
|
|
984
984
|
document.head.appendChild(tag);
|
|
985
985
|
}
|
|
986
986
|
var AgentPresetSection_module_css_default = {
|
|
987
|
-
"
|
|
988
|
-
"
|
|
989
|
-
"
|
|
990
|
-
"
|
|
991
|
-
"
|
|
992
|
-
"
|
|
993
|
-
"
|
|
994
|
-
"
|
|
995
|
-
"
|
|
996
|
-
"
|
|
997
|
-
"
|
|
998
|
-
"
|
|
999
|
-
"
|
|
1000
|
-
"
|
|
1001
|
-
"
|
|
1002
|
-
"
|
|
1003
|
-
"
|
|
1004
|
-
"
|
|
1005
|
-
"
|
|
1006
|
-
"
|
|
1007
|
-
"
|
|
1008
|
-
"
|
|
1009
|
-
"
|
|
1010
|
-
"
|
|
1011
|
-
"
|
|
1012
|
-
"field": "
|
|
1013
|
-
"
|
|
1014
|
-
"
|
|
1015
|
-
"
|
|
1016
|
-
"
|
|
1017
|
-
"
|
|
1018
|
-
"
|
|
1019
|
-
"
|
|
1020
|
-
"
|
|
987
|
+
"input": "TA3O3q_input",
|
|
988
|
+
"dialog": "TA3O3q_dialog",
|
|
989
|
+
"viewerCode": "TA3O3q_viewerCode",
|
|
990
|
+
"cardFoot": "TA3O3q_cardFoot",
|
|
991
|
+
"revealedPath": "TA3O3q_revealedPath",
|
|
992
|
+
"revealedPathLabel": "TA3O3q_revealedPathLabel",
|
|
993
|
+
"cardDesc": "TA3O3q_cardDesc",
|
|
994
|
+
"fieldLabel": "TA3O3q_fieldLabel",
|
|
995
|
+
"cardBroken": "TA3O3q_cardBroken",
|
|
996
|
+
"cardBrokenReason": "TA3O3q_cardBrokenReason",
|
|
997
|
+
"cardHead": "TA3O3q_cardHead",
|
|
998
|
+
"title": "TA3O3q_title",
|
|
999
|
+
"badge": "TA3O3q_badge",
|
|
1000
|
+
"cards": "TA3O3q_cards",
|
|
1001
|
+
"cardActive": "TA3O3q_cardActive",
|
|
1002
|
+
"inUse": "TA3O3q_inUse",
|
|
1003
|
+
"intro": "TA3O3q_intro",
|
|
1004
|
+
"iconDanger": "TA3O3q_iconDanger",
|
|
1005
|
+
"section": "TA3O3q_section",
|
|
1006
|
+
"card": "TA3O3q_card",
|
|
1007
|
+
"iconButton": "TA3O3q_iconButton",
|
|
1008
|
+
"groupHead": "TA3O3q_groupHead",
|
|
1009
|
+
"cardId": "TA3O3q_cardId",
|
|
1010
|
+
"dialogFields": "TA3O3q_dialogFields",
|
|
1011
|
+
"cardMain": "TA3O3q_cardMain",
|
|
1012
|
+
"field": "TA3O3q_field",
|
|
1013
|
+
"cardName": "TA3O3q_cardName",
|
|
1014
|
+
"secondaryButton": "TA3O3q_secondaryButton",
|
|
1015
|
+
"error": "TA3O3q_error",
|
|
1016
|
+
"deleteDialog": "TA3O3q_deleteDialog",
|
|
1017
|
+
"creatorButton": "TA3O3q_creatorButton",
|
|
1018
|
+
"brokenBadge": "TA3O3q_brokenBadge",
|
|
1019
|
+
"deleteConfirm": "TA3O3q_deleteConfirm",
|
|
1020
|
+
"group": "TA3O3q_group"
|
|
1021
1021
|
};
|
|
1022
1022
|
//#endregion
|
|
1023
1023
|
//#region lib/types/client/AgentPresetSection.js
|
|
@@ -844,8 +844,8 @@ window.__ModuleLoader__.load({
|
|
|
844
844
|
return n;
|
|
845
845
|
}
|
|
846
846
|
//#endregion
|
|
847
|
-
//#region \0dsh-css
|
|
848
|
-
const css = ".
|
|
847
|
+
//#region \0dsh-css:D:\a\dsh-edge\dsh-edge\packages\client\ui-commands\src\client\PopupSelectView.module.css.mjs
|
|
848
|
+
const css = ".JhNNqG_card{z-index:100;--dsh-scrollbar-thumb:var(--dsw-alias-scrollbar-bg-l2);--dsh-scrollbar-thumb-hover:var(--dsw-alias-scrollbar-hover-l2);border:1px solid var(--dsw-alias-border-inverted);background:var(--dsw-specific-menu);min-width:min(220px,100%);max-width:100%;max-height:320px;box-shadow:var(--dsw-shadow-lv3);border-radius:12px;outline:none;flex-direction:column;padding:4px;display:flex;position:absolute;bottom:calc(100% + 4px);left:0;overflow:hidden}.JhNNqG_viewport{flex-direction:column;min-height:0;display:flex;overflow-y:auto}.JhNNqG_row{cursor:pointer;color:var(--dsw-alias-label-primary);border-radius:8px;align-items:center;gap:8px;padding:6px 8px;font-size:13px;display:flex}.JhNNqG_rowActive{background:var(--dsw-alias-interactive-bg-hover)}.JhNNqG_label{white-space:nowrap;text-overflow:ellipsis;flex:auto;min-width:0;overflow:hidden}.JhNNqG_detail{color:var(--dsw-alias-label-tertiary);white-space:nowrap;text-overflow:ellipsis;font-size:12px;overflow:hidden}.JhNNqG_check{color:var(--dsw-alias-label-primary);flex:none;display:inline-flex}.JhNNqG_status{color:var(--dsw-alias-label-tertiary);padding:8px 10px;font-size:13px}.JhNNqG_search{border:1px solid var(--dsw-alias-border-inverted);color:var(--dsw-alias-label-primary);background:0 0;border-radius:8px;outline:none;margin:2px 2px 4px;padding:6px 8px;font-size:13px}.JhNNqG_error{color:var(--dsw-alias-state-error-primary);align-items:center;gap:8px;padding:6px 8px;font-size:12px;display:flex}.JhNNqG_errorText{text-overflow:ellipsis;flex:1;overflow:hidden}.JhNNqG_retry{border:1px solid var(--dsw-alias-border-inverted);color:var(--dsw-alias-label-primary);cursor:pointer;background:0 0;border-radius:6px;padding:2px 8px;font-size:12px}";
|
|
849
849
|
const tagId = "@deepseek-ai/dsh-client-ui-commands/PopupSelectView.module.css";
|
|
850
850
|
if (typeof document !== "undefined" && document.querySelector("style[data-plugin-css=" + JSON.stringify(tagId) + "]") === null) {
|
|
851
851
|
const tag = document.createElement("style");
|
|
@@ -855,18 +855,18 @@ window.__ModuleLoader__.load({
|
|
|
855
855
|
document.head.appendChild(tag);
|
|
856
856
|
}
|
|
857
857
|
var PopupSelectView_module_css_default = {
|
|
858
|
-
"
|
|
859
|
-
"
|
|
860
|
-
"
|
|
861
|
-
"
|
|
862
|
-
"viewport": "
|
|
863
|
-
"
|
|
864
|
-
"
|
|
865
|
-
"
|
|
866
|
-
"
|
|
867
|
-
"error": "
|
|
868
|
-
"
|
|
869
|
-
"
|
|
858
|
+
"rowActive": "JhNNqG_rowActive",
|
|
859
|
+
"detail": "JhNNqG_detail",
|
|
860
|
+
"errorText": "JhNNqG_errorText",
|
|
861
|
+
"card": "JhNNqG_card",
|
|
862
|
+
"viewport": "JhNNqG_viewport",
|
|
863
|
+
"row": "JhNNqG_row",
|
|
864
|
+
"label": "JhNNqG_label",
|
|
865
|
+
"status": "JhNNqG_status",
|
|
866
|
+
"search": "JhNNqG_search",
|
|
867
|
+
"error": "JhNNqG_error",
|
|
868
|
+
"retry": "JhNNqG_retry",
|
|
869
|
+
"check": "JhNNqG_check"
|
|
870
870
|
};
|
|
871
871
|
//#endregion
|
|
872
872
|
//#region lib/types/client/PopupSelectView.js
|