@vincemakes/kiso-tui 0.21.0 → 0.21.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/dist/ask-panel.js +1 -1
- package/dist/compositor.js +2 -2
- package/dist/render.js +1 -1
- package/package.json +2 -2
package/dist/ask-panel.js
CHANGED
|
@@ -510,7 +510,7 @@ export function askView(spec) {
|
|
|
510
510
|
speaker: "kiso",
|
|
511
511
|
statusText: "❯ a question for you",
|
|
512
512
|
args: { kind: "text", lines: askDeclineList(spec) },
|
|
513
|
-
fallbackQuestion:
|
|
513
|
+
fallbackQuestion: `${escapeTerminal(first.question)} — this terminal cannot show the option panel; the question is declined `,
|
|
514
514
|
ask: spec,
|
|
515
515
|
};
|
|
516
516
|
}
|
package/dist/compositor.js
CHANGED
|
@@ -3161,7 +3161,7 @@ export class Body {
|
|
|
3161
3161
|
if (cell.kind !== "tool" || !isExploreTool(cell.name))
|
|
3162
3162
|
return false;
|
|
3163
3163
|
// the run is still growing while NOTHING but explore cells follow —
|
|
3164
|
-
// the turn-less noise cells (permission raws,
|
|
3164
|
+
// the turn-less noise cells (permission raws, notices) are
|
|
3165
3165
|
// transparent here for the same reason the run scan sees through
|
|
3166
3166
|
// them: the streaming execution interleaves them between the calls.
|
|
3167
3167
|
for (let j = i + 1; j < this.#cells.length; j += 1) {
|
|
@@ -3270,7 +3270,7 @@ export class Body {
|
|
|
3270
3270
|
// split every real burst into fragments. Writes, edits, shells and
|
|
3271
3271
|
// extension tools still break the run at the first one.
|
|
3272
3272
|
// the maximal read-only run around i — forward/backward scans over
|
|
3273
|
-
// the cells. The turn-less noise cells (the permission raws, the
|
|
3273
|
+
// the cells. The turn-less noise cells (the permission raws, the
|
|
3274
3274
|
// notices) are TRANSPARENT: the streaming execution (loop.ts launch)
|
|
3275
3275
|
// interleaves them BETWEEN the calls of one burst, so the run must
|
|
3276
3276
|
// see through them. It never crosses a user/text/thinking cell —
|
package/dist/render.js
CHANGED
|
@@ -100,7 +100,7 @@ export function renderEvent(ev, prevThinking = false, resolvePath = (p) => p) {
|
|
|
100
100
|
return { text: `${p.dim} [summarized up to seq ${ev.coversToSeq}]${p.reset}\n`, newline: true, prompt: false };
|
|
101
101
|
case "uncertain_pending":
|
|
102
102
|
return {
|
|
103
|
-
text: `${p.red}
|
|
103
|
+
text: `${p.red}${escapeTerminal(ev.name)} failed (${ev.executionId}): ${escapeTerminal(ev.error.slice(0, 160))}${p.reset}\n`,
|
|
104
104
|
newline: true,
|
|
105
105
|
prompt: false,
|
|
106
106
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vincemakes/kiso-tui",
|
|
3
|
-
"version": "0.21.
|
|
3
|
+
"version": "0.21.1",
|
|
4
4
|
"description": "kiso tui — the pure terminal layer (cell renderer, dock, raw editor, diff, palette). Zero runtime dependencies: input is data, output is bytes.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -35,6 +35,6 @@
|
|
|
35
35
|
},
|
|
36
36
|
"homepage": "https://github.com/vincemakes/kiso/tree/main/packages/tui#readme",
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@vincemakes/kiso-tui-cells": "0.21.
|
|
38
|
+
"@vincemakes/kiso-tui-cells": "0.21.1"
|
|
39
39
|
}
|
|
40
40
|
}
|