@nextclaw/ui 0.12.23 → 0.12.24

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.
Files changed (61) hide show
  1. package/CHANGELOG.md +97 -0
  2. package/dist/assets/{api-BGd3rgv_.js → api-D2xRKmZd.js} +2 -2
  3. package/dist/assets/{app-manager-provider-BuJ_U9eC.js → app-manager-provider-CNaZboG4.js} +1 -1
  4. package/dist/assets/{app-navigation.config-BTdUuqXS.js → app-navigation.config-Ihhrrt--.js} +1 -1
  5. package/dist/assets/{channels-list-page-BrwymXPe.js → channels-list-page-p26lgxLk.js} +1 -1
  6. package/dist/assets/{chat-DGM6K3Qs.js → chat-Dkh2qtuz.js} +8 -8
  7. package/dist/assets/{chat-page-DpmXMWNS.js → chat-page-DoTmE2wx.js} +1 -1
  8. package/dist/assets/{desktop-update-config-BGKiqc6q.js → desktop-update-config-DlpzDfKM.js} +1 -1
  9. package/dist/assets/{dialog-dxsKz7jJ.js → dialog-C3D7Be0p.js} +1 -1
  10. package/dist/assets/{dist-DsYTOyq7.js → dist-CPlbUgwU.js} +1 -1
  11. package/dist/assets/{es2015-V75WQJ2s.js → es2015-xqN1slyW.js} +1 -1
  12. package/dist/assets/{index-BrEdR78s.js → index-pBvbJ5Mt.js} +2 -2
  13. package/dist/assets/marketplace-page-Cql0kDi-.js +1 -0
  14. package/dist/assets/{marketplace-page-CPHxlYL8.js → marketplace-page-m4P5g_Ht.js} +1 -1
  15. package/dist/assets/mcp-marketplace-page-9WVKl1m1.js +1 -0
  16. package/dist/assets/{mcp-marketplace-page-CswPXSjf.js → mcp-marketplace-page-ByzBQZcx.js} +1 -1
  17. package/dist/assets/{model-config-Cmruiqdx.js → model-config-Dbr_0APb.js} +1 -1
  18. package/dist/assets/{notice-card-D1RNsTn_.js → notice-card-BFDbKQDA.js} +1 -1
  19. package/dist/assets/{popover-BMyiifTA.js → popover-B86Dbfhf.js} +1 -1
  20. package/dist/assets/{provider-scoped-model-input-D7ACiMAO.js → provider-scoped-model-input-DFm6N2f7.js} +1 -1
  21. package/dist/assets/{providers-list-gg7LrfuB.js → providers-list-BJcLOjun.js} +1 -1
  22. package/dist/assets/remote-BOxo9iwd.js +1 -0
  23. package/dist/assets/{runtime-config-page-BT_VV41p.js → runtime-config-page-CjLhnbSl.js} +1 -1
  24. package/dist/assets/{search-config-0VTPpz-w.js → search-config-J4Htco-P.js} +1 -1
  25. package/dist/assets/{secrets-config-DwQbLLEy.js → secrets-config-CUdERjco.js} +1 -1
  26. package/dist/assets/{select-DTdzR8j8.js → select-CJ0wbo3D.js} +1 -1
  27. package/dist/assets/{sessions-config-page-CAG7Zevv.js → sessions-config-page-DpK991fs.js} +2 -2
  28. package/dist/assets/{setting-row-CvKngoNI.js → setting-row-D1Yygqp7.js} +1 -1
  29. package/dist/assets/{tag-chip-BywQeHJj.js → tag-chip-FrkmkT8r.js} +1 -1
  30. package/dist/assets/{theme-provider-COAwWFv8.js → theme-provider-0hxjiPc_.js} +1 -1
  31. package/dist/assets/{tooltip-BOYp8Ue7.js → tooltip-Cj4yA0gH.js} +1 -1
  32. package/dist/assets/{use-config-DTwhNDQE.js → use-config-38Ur-89i.js} +1 -1
  33. package/dist/assets/{use-confirm-dialog-oeSqhmrx.js → use-confirm-dialog-DPQThaeU.js} +1 -1
  34. package/dist/assets/{use-infinite-scroll-loader-X3KGuME8.js → use-infinite-scroll-loader-5Gf1xQi7.js} +1 -1
  35. package/dist/assets/{use-viewport-layout-C0NJAVXs.js → use-viewport-layout-D1XzKeip.js} +1 -1
  36. package/dist/index.html +15 -15
  37. package/package.json +9 -9
  38. package/src/features/chat/components/chat-sidebar-session-item.tsx +1 -1
  39. package/src/features/chat/components/conversation/chat-conversation-panel.tsx +2 -2
  40. package/src/features/chat/components/layout/chat-sidebar.test.tsx +74 -0
  41. package/src/features/chat/components/layout/chat-sidebar.tsx +28 -29
  42. package/src/features/chat/hooks/use-hydrated-ncp-agent.test.tsx +6 -0
  43. package/src/features/chat/hooks/use-ncp-agent-runtime.test.tsx +158 -69
  44. package/src/features/chat/hooks/use-ncp-chat-derived-state.ts +2 -2
  45. package/src/features/chat/hooks/use-ncp-chat-page-data.ts +7 -7
  46. package/src/features/chat/hooks/use-ncp-session-conversation.test.tsx +10 -0
  47. package/src/features/chat/hooks/use-ncp-session-conversation.ts +2 -1
  48. package/src/features/chat/hooks/use-selected-session-context-window-indicator.ts +2 -4
  49. package/src/features/chat/managers/chat-session-list.manager.test.ts +19 -16
  50. package/src/features/chat/managers/chat-session-list.manager.ts +20 -24
  51. package/src/features/chat/managers/ncp-chat-input.manager.test.ts +23 -12
  52. package/src/features/chat/managers/ncp-chat-input.manager.ts +4 -2
  53. package/src/features/chat/pages/ncp-chat-page.tsx +23 -13
  54. package/src/features/chat/stores/chat-session-list.store.ts +2 -3
  55. package/src/features/chat/types/chat-stream.types.ts +1 -1
  56. package/src/features/chat/utils/ncp-session-adapter.utils.ts +1 -1
  57. package/src/shared/lib/api/ncp-session-query-cache.test.ts +26 -1
  58. package/src/shared/lib/api/ncp-session-query-cache.ts +5 -1
  59. package/dist/assets/marketplace-page-B2Pm2RDJ.js +0 -1
  60. package/dist/assets/mcp-marketplace-page-BcjVmw36.js +0 -1
  61. package/dist/assets/remote-Db2M39Cv.js +0 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,74 @@
1
1
  # @nextclaw/ui
2
2
 
3
+ ## 0.12.24
4
+
5
+ ### Patch Changes
6
+
7
+ - Auto-generated full public beta release batch.
8
+
9
+ Packages:
10
+
11
+ - @nextclaw/agent-chat
12
+ - @nextclaw/agent-chat-ui
13
+ - @nextclaw/app-runtime
14
+ - @nextclaw/app-sdk
15
+ - @nextclaw/channel-extension-weixin
16
+ - @nextclaw/channel-plugin-dingtalk
17
+ - @nextclaw/channel-plugin-discord
18
+ - @nextclaw/channel-plugin-email
19
+ - @nextclaw/channel-plugin-feishu
20
+ - @nextclaw/channel-plugin-mochat
21
+ - @nextclaw/channel-plugin-qq
22
+ - @nextclaw/channel-plugin-slack
23
+ - @nextclaw/channel-plugin-telegram
24
+ - @nextclaw/channel-plugin-wecom
25
+ - @nextclaw/channel-plugin-whatsapp
26
+ - @nextclaw/channel-runtime
27
+ - @nextclaw/client-sdk
28
+ - @nextclaw/companion
29
+ - @nextclaw/core
30
+ - @nextclaw/extension-sdk
31
+ - @nextclaw/feishu-core
32
+ - @nextclaw/kernel
33
+ - @nextclaw/mcp
34
+ - @nextclaw/ncp
35
+ - @nextclaw/ncp-agent-runtime
36
+ - @nextclaw/ncp-http-agent-client
37
+ - @nextclaw/ncp-http-agent-server
38
+ - @nextclaw/ncp-mcp
39
+ - @nextclaw/ncp-react
40
+ - @nextclaw/ncp-react-ui
41
+ - @nextclaw/ncp-toolkit
42
+ - @nextclaw/nextclaw-hermes-acp-bridge
43
+ - @nextclaw/nextclaw-narp-runtime-claude-code-sdk
44
+ - @nextclaw/nextclaw-narp-runtime-codex-sdk
45
+ - @nextclaw/nextclaw-narp-stdio-runtime-wrapper
46
+ - @nextclaw/nextclaw-ncp-runtime-adapter-hermes-http
47
+ - @nextclaw/nextclaw-ncp-runtime-claude-code-sdk
48
+ - @nextclaw/nextclaw-ncp-runtime-codex-sdk
49
+ - @nextclaw/nextclaw-ncp-runtime-http-client
50
+ - @nextclaw/nextclaw-ncp-runtime-plugin-claude-code-sdk
51
+ - @nextclaw/nextclaw-ncp-runtime-plugin-codex-sdk
52
+ - @nextclaw/nextclaw-ncp-runtime-stdio-client
53
+ - @nextclaw/openclaw-compat
54
+ - @nextclaw/remote
55
+ - @nextclaw/runtime
56
+ - @nextclaw/server
57
+ - @nextclaw/service
58
+ - @nextclaw/shared
59
+ - @nextclaw/ui
60
+ - nextclaw
61
+
62
+ - Updated dependencies
63
+ - @nextclaw/agent-chat@0.1.14
64
+ - @nextclaw/agent-chat-ui@0.3.16
65
+ - @nextclaw/client-sdk@0.1.4
66
+ - @nextclaw/ncp@0.5.9
67
+ - @nextclaw/ncp-http-agent-client@0.3.21
68
+ - @nextclaw/ncp-react@0.4.29
69
+ - @nextclaw/server@0.12.16
70
+ - @nextclaw/shared@0.1.3
71
+
3
72
  ## 0.12.23
4
73
 
5
74
  ### Patch Changes
@@ -13,6 +82,7 @@
13
82
  - Auto-generated full public beta release batch.
14
83
 
15
84
  Packages:
85
+
16
86
  - @nextclaw/agent-chat
17
87
  - @nextclaw/agent-chat-ui
18
88
  - @nextclaw/app-runtime
@@ -81,6 +151,7 @@
81
151
  - Stable minor release for the NextClaw npm package, with patch releases for the workspace dependency closure.
82
152
 
83
153
  Packages:
154
+
84
155
  - @nextclaw/agent-chat
85
156
  - @nextclaw/agent-chat-ui
86
157
  - @nextclaw/app-runtime
@@ -149,6 +220,7 @@
149
220
  - 0251268: Auto-generated patch release for packages with meaningful drift after their latest version commit.
150
221
 
151
222
  Packages:
223
+
152
224
  - @nextclaw/agent-chat-ui
153
225
  - @nextclaw/channel-plugin-feishu
154
226
  - @nextclaw/channel-plugin-weixin
@@ -165,6 +237,7 @@
165
237
  - 2418020: Auto-generated full public beta release batch.
166
238
 
167
239
  Packages:
240
+
168
241
  - @nextclaw/agent-chat
169
242
  - @nextclaw/agent-chat-ui
170
243
  - @nextclaw/app-runtime
@@ -213,6 +286,7 @@
213
286
  - a5da9d6: Auto-generated full public beta release batch.
214
287
 
215
288
  Packages:
289
+
216
290
  - @nextclaw/agent-chat
217
291
  - @nextclaw/agent-chat-ui
218
292
  - @nextclaw/app-runtime
@@ -261,6 +335,7 @@
261
335
  - 1600643: Auto-generated full public beta release batch.
262
336
 
263
337
  Packages:
338
+
264
339
  - @nextclaw/agent-chat
265
340
  - @nextclaw/agent-chat-ui
266
341
  - @nextclaw/app-runtime
@@ -309,6 +384,7 @@
309
384
  - 223037c: Auto-generated full public beta release batch.
310
385
 
311
386
  Packages:
387
+
312
388
  - @nextclaw/agent-chat
313
389
  - @nextclaw/agent-chat-ui
314
390
  - @nextclaw/app-runtime
@@ -376,6 +452,7 @@
376
452
  - Auto-generated full public beta release batch.
377
453
 
378
454
  Packages:
455
+
379
456
  - @nextclaw/agent-chat
380
457
  - @nextclaw/agent-chat-ui
381
458
  - @nextclaw/app-runtime
@@ -438,6 +515,7 @@
438
515
  - Auto-generated full public beta release batch.
439
516
 
440
517
  Packages:
518
+
441
519
  - @nextclaw/agent-chat
442
520
  - @nextclaw/agent-chat-ui
443
521
  - @nextclaw/app-runtime
@@ -500,6 +578,7 @@
500
578
  - Auto-generated full public beta release batch.
501
579
 
502
580
  Packages:
581
+
503
582
  - @nextclaw/agent-chat
504
583
  - @nextclaw/agent-chat-ui
505
584
  - @nextclaw/app-runtime
@@ -562,6 +641,7 @@
562
641
  - Auto-generated full public beta release batch.
563
642
 
564
643
  Packages:
644
+
565
645
  - @nextclaw/agent-chat
566
646
  - @nextclaw/agent-chat-ui
567
647
  - @nextclaw/app-runtime
@@ -643,6 +723,7 @@
643
723
  - Auto-generated patch release for packages with meaningful drift after their latest version commit.
644
724
 
645
725
  Packages:
726
+
646
727
  - @nextclaw/agent-chat-ui
647
728
  - @nextclaw/channel-plugin-feishu
648
729
  - @nextclaw/channel-plugin-weixin
@@ -682,6 +763,7 @@
682
763
  - Auto-generated patch release for packages with meaningful drift after their latest version commit.
683
764
 
684
765
  Packages:
766
+
685
767
  - @nextclaw/agent-chat-ui
686
768
  - @nextclaw/ui
687
769
  - nextclaw
@@ -696,6 +778,7 @@
696
778
  - Auto-generated patch release for packages with meaningful drift after their latest version commit.
697
779
 
698
780
  Packages:
781
+
699
782
  - @nextclaw/agent-chat-ui
700
783
  - @nextclaw/ui
701
784
 
@@ -709,6 +792,7 @@
709
792
  - Auto-generated patch release for packages with meaningful drift after their latest version commit.
710
793
 
711
794
  Packages:
795
+
712
796
  - @nextclaw/agent-chat-ui
713
797
  - @nextclaw/ui
714
798
  - nextclaw
@@ -729,6 +813,7 @@
729
813
  - Auto-generated patch release for packages with meaningful drift after their latest version commit.
730
814
 
731
815
  Packages:
816
+
732
817
  - @nextclaw/ui
733
818
  - nextclaw
734
819
 
@@ -739,6 +824,7 @@
739
824
  - Auto-generated patch release for packages with meaningful drift after their latest version commit.
740
825
 
741
826
  Packages:
827
+
742
828
  - @nextclaw/agent-chat-ui
743
829
  - @nextclaw/channel-plugin-dingtalk
744
830
  - @nextclaw/channel-plugin-discord
@@ -791,6 +877,7 @@
791
877
  - Auto-generated patch release for packages with meaningful drift after their latest version commit.
792
878
 
793
879
  Packages:
880
+
794
881
  - @nextclaw/agent-chat-ui
795
882
  - @nextclaw/channel-plugin-dingtalk
796
883
  - @nextclaw/channel-plugin-discord
@@ -842,6 +929,7 @@
842
929
  - Auto-generated patch release for packages with meaningful drift after their latest version commit.
843
930
 
844
931
  Packages:
932
+
845
933
  - @nextclaw/agent-chat-ui
846
934
  - @nextclaw/channel-plugin-dingtalk
847
935
  - @nextclaw/channel-plugin-discord
@@ -893,6 +981,7 @@
893
981
  - Auto-generated patch release for packages with meaningful drift after their latest version commit.
894
982
 
895
983
  Packages:
984
+
896
985
  - @nextclaw/agent-chat-ui
897
986
  - @nextclaw/channel-plugin-dingtalk
898
987
  - @nextclaw/channel-plugin-discord
@@ -928,6 +1017,7 @@
928
1017
  - Auto-generated patch release for packages with meaningful drift after their latest version commit.
929
1018
 
930
1019
  Packages:
1020
+
931
1021
  - @nextclaw/agent-chat
932
1022
  - @nextclaw/agent-chat-ui
933
1023
  - @nextclaw/channel-plugin-dingtalk
@@ -978,6 +1068,7 @@
978
1068
  - Auto-generated patch release for packages with meaningful drift after their latest version commit.
979
1069
 
980
1070
  Packages:
1071
+
981
1072
  - @nextclaw/agent-chat-ui
982
1073
  - @nextclaw/channel-plugin-dingtalk
983
1074
  - @nextclaw/channel-plugin-discord
@@ -1018,6 +1109,7 @@
1018
1109
  - Auto-generated patch release for packages with meaningful drift after their latest version commit.
1019
1110
 
1020
1111
  Packages:
1112
+
1021
1113
  - @nextclaw/agent-chat-ui
1022
1114
  - @nextclaw/channel-plugin-weixin
1023
1115
  - @nextclaw/core
@@ -1043,6 +1135,7 @@
1043
1135
  - Auto-generated patch release for packages with meaningful drift after their latest version commit.
1044
1136
 
1045
1137
  Packages:
1138
+
1046
1139
  - @nextclaw/agent-chat
1047
1140
  - @nextclaw/agent-chat-ui
1048
1141
  - @nextclaw/channel-plugin-dingtalk
@@ -1098,6 +1191,7 @@
1098
1191
  - Auto-generated patch release for packages with meaningful drift after their latest version commit.
1099
1192
 
1100
1193
  Packages:
1194
+
1101
1195
  - @nextclaw/agent-chat
1102
1196
  - @nextclaw/channel-plugin-dingtalk
1103
1197
  - @nextclaw/channel-plugin-discord
@@ -1136,6 +1230,7 @@
1136
1230
  - Auto-generated patch release for packages with meaningful drift after their latest version commit.
1137
1231
 
1138
1232
  Packages:
1233
+
1139
1234
  - @nextclaw/agent-chat
1140
1235
  - @nextclaw/core
1141
1236
  - @nextclaw/feishu-core
@@ -1652,6 +1747,7 @@
1652
1747
  - Switch skill distribution to marketplace-first flow and remove GitHub-based skill install paths.
1653
1748
 
1654
1749
  This release includes:
1750
+
1655
1751
  - skill/plugin model clean split (skill: `builtin` + `marketplace` only)
1656
1752
  - marketplace API migration from bundled JSON to D1-backed source
1657
1753
  - CLI support for marketplace skill upload/update/install
@@ -1712,6 +1808,7 @@
1712
1808
  - Unified minor release for accumulated architecture, engine, and chat UX updates.
1713
1809
 
1714
1810
  Includes:
1811
+
1715
1812
  - New pluggable engine runtime support (Codex SDK / Claude Agent SDK)
1716
1813
  - Skill-context propagation and chat interaction stability improvements
1717
1814
  - Main workspace routing and conversation UX refinements