dsh-neotui 0.0.26 → 0.0.27

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 (2) hide show
  1. package/package.json +1 -1
  2. package/src/views.js +3 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-neotui",
3
- "version": "0.0.26",
3
+ "version": "0.0.27",
4
4
  "description": "Neo-TUI: mouse-driven terminal UI client for DeepSeek Harness (B-tier per dsh-tui-design.md)",
5
5
  "type": "module",
6
6
  "bin": { "dsh-neotui": "bin/dsh-tui.js" },
package/src/views.js CHANGED
@@ -1094,10 +1094,9 @@ export class ChatView extends Widget {
1094
1094
  }
1095
1095
  case "assistant": {
1096
1096
  const blocks = node.blocks ?? [];
1097
- if (node.streaming) {
1098
- lines.push([{ t: "◌ 生成中…", fg: K.FAINT }]);
1099
- mark(realIdx);
1100
- }
1097
+ // No separate "◌ 生成中…" marker line: it vanished at finalization,
1098
+ // snapping the pinned view by 1 line. Streaming state is already
1099
+ // visible via the block "…" suffixes and the live timers.
1101
1100
  if (blocks.length === 0) { lines.push([{ t: " …", fg: K.FAINT }]); mark(realIdx); break; }
1102
1101
  for (let bi = 0; bi < blocks.length; bi++) {
1103
1102
  const b = blocks[bi];