@nextclaw/ui 0.3.12 → 0.3.14
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 +20 -0
- package/dist/assets/index-DMFVPFFm.js +255 -0
- package/dist/assets/index-uqpsLADF.css +1 -0
- package/dist/index.html +2 -2
- package/package.json +1 -1
- package/src/App.tsx +3 -0
- package/src/api/client.ts +4 -0
- package/src/api/config.ts +55 -1
- package/src/api/types.ts +42 -0
- package/src/components/config/RuntimeConfig.tsx +43 -2
- package/src/components/config/SessionsConfig.tsx +246 -0
- package/src/components/layout/Sidebar.tsx +6 -1
- package/src/hooks/useConfig.ts +56 -1
- package/src/stores/ui.store.ts +1 -1
- package/dist/assets/index-D3arfjLX.css +0 -1
- package/dist/assets/index-DTd23uLj.js +0 -240
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @nextclaw/ui
|
|
2
2
|
|
|
3
|
+
## 0.3.14
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Add full session management in NextClaw UI with OpenClaw-aligned capabilities.
|
|
8
|
+
- add Sessions tab with filtering, history inspection, metadata patching, clear, and delete
|
|
9
|
+
- add UI API endpoints for sessions list/history/patch/delete
|
|
10
|
+
- sync frontend/server types and hooks for session operations
|
|
11
|
+
- update usage guide for session management UI
|
|
12
|
+
|
|
13
|
+
## 0.3.13
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Add full UI/runtime API support for configuring input context token budgets.
|
|
18
|
+
- Runtime page supports `agents.defaults.contextTokens`
|
|
19
|
+
- Runtime page supports per-agent `agents.list[*].contextTokens`
|
|
20
|
+
- Runtime API persists default context token budget updates
|
|
21
|
+
- Usage docs updated for UI configuration path
|
|
22
|
+
|
|
3
23
|
## 0.3.12
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|