@nextclaw/ui 0.20.0-beta.0 → 0.20.0
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/CHANGELOG.md +23 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @nextclaw/ui
|
|
2
2
|
|
|
3
|
+
## 0.20.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- ec60bc1: 新增全局 Extension 管理入口、会话级持续关注管理,以及会话时间线中的可见外部事件卡片。事件消息使用通用的 `observation.event` 标识,不绑定具体产品或协议品牌。
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- eeac1f6: 修复会话历史摘要删除工具调用结构节点导致上下文压缩边界和 Continue 后续内容错位的问题。摘要现在保留完整的 part 顺序与数量,仅延迟大 payload 的加载。
|
|
12
|
+
- e14eeb0: 会话头部、会话列表、子会话列表和工作区子会话 tab 的“更多操作”现在都支持复制对应的会话 ID。
|
|
13
|
+
- f9c6477: 修复会话历史可靠性问题:保留历史 replay、projection 恢复和压缩消息视图的修复,不再用 journal 目录级 writer ownership 阻止同一 `NEXTCLAW_HOME` 下的第二个 runtime 或新会话启动。
|
|
14
|
+
- a4421b3: 修复运行中通过 Cmd/Ctrl+Enter 插话后,待消费消息未立即显示“等待进入下一步”的问题;当插话回退为排队时也会正确显示在队列中。
|
|
15
|
+
- Updated dependencies [2c7ce8c]
|
|
16
|
+
- Updated dependencies [eeac1f6]
|
|
17
|
+
- Updated dependencies [ec60bc1]
|
|
18
|
+
- Updated dependencies [70dd515]
|
|
19
|
+
- @nextclaw/ncp@0.9.0
|
|
20
|
+
- @nextclaw/shared@0.4.27
|
|
21
|
+
- @nextclaw/ncp-http-agent-client@0.4.21
|
|
22
|
+
- @nextclaw/ncp-react@0.5.24
|
|
23
|
+
- @nextclaw/ncp-toolkit@0.6.22
|
|
24
|
+
- @nextclaw/client-sdk@0.7.4
|
|
25
|
+
|
|
3
26
|
## 0.20.0-beta.0
|
|
4
27
|
|
|
5
28
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nextclaw/ui",
|
|
3
|
-
"version": "0.20.0
|
|
3
|
+
"version": "0.20.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -34,14 +34,14 @@
|
|
|
34
34
|
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz",
|
|
35
35
|
"zod": "^3.23.8",
|
|
36
36
|
"zustand": "^5.0.2",
|
|
37
|
-
"@nextclaw/
|
|
38
|
-
"@nextclaw/
|
|
39
|
-
"@nextclaw/ncp-http-agent-client": "0.4.21-beta.0",
|
|
40
|
-
"@nextclaw/ncp-toolkit": "0.6.22-beta.0",
|
|
41
|
-
"@nextclaw/shared": "0.4.27-beta.0",
|
|
42
|
-
"@nextclaw/ncp": "0.9.0-beta.0",
|
|
37
|
+
"@nextclaw/client-sdk": "0.7.4",
|
|
38
|
+
"@nextclaw/agent-chat": "0.3.14",
|
|
43
39
|
"@nextclaw/agent-chat-ui": "0.7.1",
|
|
44
|
-
"@nextclaw/
|
|
40
|
+
"@nextclaw/ncp": "0.9.0",
|
|
41
|
+
"@nextclaw/ncp-http-agent-client": "0.4.21",
|
|
42
|
+
"@nextclaw/ncp-react": "0.5.24",
|
|
43
|
+
"@nextclaw/ncp-toolkit": "0.6.22",
|
|
44
|
+
"@nextclaw/shared": "0.4.27"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@testing-library/react": "^16.3.0",
|