@deepseek-ai/dsh-client-ui-workspace 0.1.3-alpha.2 → 0.1.5-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.i18n.yaml +2 -2
- package/README.md +1 -1
- package/README.zh.md +1 -1
- package/lib/client.js +0 -4
- package/package.json +19 -19
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 packages/client/ui-workspace/README.md
|
|
5
|
-
README.md:
|
|
6
|
-
README.zh.md:
|
|
5
|
+
README.md: a819b07fecb74faeb3bebb6665aaabfdc8ecfba6
|
|
6
|
+
README.zh.md: f9565b12bccd596fa61d1f1436f82b090139f506
|
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ English | [中文](README.zh.md)
|
|
|
9
9
|
|
|
10
10
|
## Summary
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
This package lets users browse grouped or flat Session lists, choose a Workspace for a new Session, and manage Workspaces and Sessions through add, rename, reorder, search, fork, archive, and Workspace deletion. Pending interactions appear as warning dots, active scheduled tasks as alarm markers, and subagent-origin Sessions remain hidden. Canonically distinct folder paths remain separate Workspaces. Adding a Workspace requires a composed directory picker; without one, the add action is unavailable.
|
|
13
13
|
|
|
14
14
|
## Table of Contents
|
|
15
15
|
|
package/README.zh.md
CHANGED
|
@@ -9,7 +9,7 @@ kind: "package-reference"
|
|
|
9
9
|
|
|
10
10
|
## 概述
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
本包让用户浏览分组或扁平的 Session 列表、为新 Session 选择 Workspace,并通过添加、重命名、重排序、搜索、fork、归档和删除 Workspace 来管理 Workspace 与 Session。待处理交互显示为警告点,活动定时任务显示为闹钟标识,subagent 来源的 Session 则保持隐藏。规范化后仍有差异的文件夹路径会保留为独立 Workspace。添加 Workspace 需要组合目录选择器;没有目录选择器时,添加操作不可用。
|
|
13
13
|
|
|
14
14
|
## 目录
|
|
15
15
|
|
package/lib/client.js
CHANGED
|
@@ -225,10 +225,6 @@ window.__ModuleLoader__.load({
|
|
|
225
225
|
}
|
|
226
226
|
//#endregion
|
|
227
227
|
//#region ../../util/workspace-path/src/index.ts
|
|
228
|
-
/**
|
|
229
|
-
* Browser-safe Workspace path and display helpers.
|
|
230
|
-
* @module @deepseek-ai/dsh-util-workspace-path
|
|
231
|
-
*/
|
|
232
228
|
/** Whether a path uses a Windows drive or UNC prefix. */
|
|
233
229
|
function isWindowsStylePath(value) {
|
|
234
230
|
return /^[A-Za-z]:[/\\]/.test(value) || value.startsWith("\\\\");
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deepseek-ai/dsh-client-ui-workspace",
|
|
3
3
|
"description": "Workspace picker plugin: one WorkspacePicker registered into the sidebar and empty-state workspace slots",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.5-alpha.1",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -51,24 +51,24 @@
|
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@types/react": "~18.3.1",
|
|
53
53
|
"react": "^18.2.0",
|
|
54
|
-
"@deepseek-ai/dsh-api-session-controller": "^0.1.
|
|
55
|
-
"@deepseek-ai/dsh-api-workspace-controller": "^0.1.
|
|
56
|
-
"@deepseek-ai/dsh-api-remotes": "^0.1.
|
|
57
|
-
"@deepseek-ai/dsh-client-
|
|
58
|
-
"@deepseek-ai/dsh-client-
|
|
59
|
-
"@deepseek-ai/dsh-client-
|
|
60
|
-
"@deepseek-ai/dsh-client-
|
|
61
|
-
"@deepseek-ai/dsh-client-ui-
|
|
62
|
-
"@deepseek-ai/dsh-client-ui-primitives": "^0.1.
|
|
63
|
-
"@deepseek-ai/dsh-client-
|
|
64
|
-
"@deepseek-ai/dsh-client-ui-session": "^0.1.
|
|
65
|
-
"@deepseek-ai/dsh-client-ui-sidebar": "^0.1.
|
|
66
|
-
"@deepseek-ai/dsh-client-ui-slots": "^0.1.
|
|
67
|
-
"@deepseek-ai/dsh-schedule": "^0.1.
|
|
68
|
-
"@deepseek-ai/dsh-typert-protocol": "^0.1.
|
|
69
|
-
"@deepseek-ai/dsh-session": "^0.1.
|
|
70
|
-
"@deepseek-ai/
|
|
71
|
-
"@deepseek-ai/
|
|
54
|
+
"@deepseek-ai/dsh-api-session-controller": "^0.1.5-alpha.1",
|
|
55
|
+
"@deepseek-ai/dsh-api-workspace-controller": "^0.1.5-alpha.1",
|
|
56
|
+
"@deepseek-ai/dsh-api-remotes": "^0.1.5-alpha.1",
|
|
57
|
+
"@deepseek-ai/dsh-client-connection": "^0.1.5-alpha.1",
|
|
58
|
+
"@deepseek-ai/dsh-client-locale": "^0.1.5-alpha.1",
|
|
59
|
+
"@deepseek-ai/dsh-client-store": "^0.1.5-alpha.1",
|
|
60
|
+
"@deepseek-ai/dsh-client-ui-conversation": "^0.1.5-alpha.1",
|
|
61
|
+
"@deepseek-ai/dsh-client-ui-renderer": "^0.1.5-alpha.1",
|
|
62
|
+
"@deepseek-ai/dsh-client-ui-primitives": "^0.1.5-alpha.1",
|
|
63
|
+
"@deepseek-ai/dsh-client-test-runtime": "^0.1.5-alpha.1",
|
|
64
|
+
"@deepseek-ai/dsh-client-ui-session": "^0.1.5-alpha.1",
|
|
65
|
+
"@deepseek-ai/dsh-client-ui-sidebar": "^0.1.5-alpha.1",
|
|
66
|
+
"@deepseek-ai/dsh-client-ui-slots": "^0.1.5-alpha.1",
|
|
67
|
+
"@deepseek-ai/dsh-schedule": "^0.1.5-alpha.1",
|
|
68
|
+
"@deepseek-ai/dsh-typert-protocol": "^0.1.5-alpha.1",
|
|
69
|
+
"@deepseek-ai/dsh-session": "^0.1.5-alpha.1",
|
|
70
|
+
"@deepseek-ai/cordis": "^4.0.2",
|
|
71
|
+
"@deepseek-ai/dsh-util-workspace-path": "^0.1.5-alpha.1"
|
|
72
72
|
},
|
|
73
73
|
"files": [
|
|
74
74
|
"lib/index.js",
|