@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 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: c7e0e7e53886b6ae1a4de7c40ed6041a61280446
6
- README.zh.md: 695e89acb967924f0f617b7c17b6581ee38f8ba5
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
- `dsh-client-ui-workspace` is the shared Workspace browser and picker of the dsh web client: users browse grouped or flat Session rows in the sidebar, pick a Workspace for a new session from the Session Intent hero, and manage Workspaces and Sessions with add, rename, reorder, search, fork, and archive actions; the same Workspace menu and add flow serve both surfaces. Pending user interactions surface as amber warning dots, active Schedule projections surface as non-interactive alarm markers in ordinary and search rows, and the shared sidebar projection hides subagent-origin sessions. Distinct canonical paths remain separate id-keyed Workspaces, and adding a folder goes through a directory-flow child hole that a composed picker package's client half fills.
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
- `dsh-client-ui-workspace` 是 dsh Web 客户端的共享 Workspace 浏览器与选择器:用户在侧边栏浏览分组或扁平的 Session 行,在 Session Intent 主视觉区为新会话选择 Workspace,并可用添加、重命名、重排序、搜索、fork 与归档操作管理 Workspace 与 Session;两个界面共用同一套 Workspace 菜单与添加流程。待处理的用户交互以琥珀色警告点呈现,活动 Schedule projection 会在普通行与搜索结果中显示不可交互的闹钟,共享侧边栏投影还会隐藏 subagent 来源的会话。不同的规范化路径仍作为由 id 区分的独立 Workspace;添加文件夹走目录流子 slot,由组合的选择器包 client half 填充。
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.3-alpha.2",
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.3-alpha.2",
55
- "@deepseek-ai/dsh-api-workspace-controller": "^0.1.3-alpha.2",
56
- "@deepseek-ai/dsh-api-remotes": "^0.1.3-alpha.2",
57
- "@deepseek-ai/dsh-client-locale": "^0.1.3-alpha.2",
58
- "@deepseek-ai/dsh-client-store": "^0.1.3-alpha.2",
59
- "@deepseek-ai/dsh-client-test-runtime": "^0.1.3-alpha.2",
60
- "@deepseek-ai/dsh-client-connection": "^0.1.3-alpha.2",
61
- "@deepseek-ai/dsh-client-ui-conversation": "^0.1.3-alpha.2",
62
- "@deepseek-ai/dsh-client-ui-primitives": "^0.1.3-alpha.2",
63
- "@deepseek-ai/dsh-client-ui-renderer": "^0.1.3-alpha.2",
64
- "@deepseek-ai/dsh-client-ui-session": "^0.1.3-alpha.2",
65
- "@deepseek-ai/dsh-client-ui-sidebar": "^0.1.3-alpha.2",
66
- "@deepseek-ai/dsh-client-ui-slots": "^0.1.3-alpha.2",
67
- "@deepseek-ai/dsh-schedule": "^0.1.3-alpha.2",
68
- "@deepseek-ai/dsh-typert-protocol": "^0.1.3-alpha.2",
69
- "@deepseek-ai/dsh-session": "^0.1.3-alpha.2",
70
- "@deepseek-ai/dsh-util-workspace-path": "^0.1.3-alpha.2",
71
- "@deepseek-ai/cordis": "^4.0.2"
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",