@vincemakes/kiso-tui 0.1.30 → 0.1.32
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/components.d.ts +116 -0
- package/dist/components.js +333 -0
- package/dist/compositor.d.ts +165 -0
- package/dist/compositor.js +779 -0
- package/dist/index.d.ts +5 -4
- package/dist/index.js +5 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* kiso-tui — the PURE terminal layer, extracted from the CLI (the
|
|
3
3
|
* ADR-0041 escape hatch). Zero runtime dependencies: input is data,
|
|
4
|
-
* output is bytes.
|
|
5
|
-
*
|
|
4
|
+
* output is bytes. TUI v6 (ADR-0046): the ONE compositor (the single
|
|
5
|
+
* writer — body.ts + dock.ts retired), the component tree, the raw-mode
|
|
6
|
+
* editor, the diff renderer, and the palette.
|
|
6
7
|
*/
|
|
7
|
-
export { Body, type BodyOptions } from "./
|
|
8
|
-
export {
|
|
8
|
+
export { Body, Dock, CURSOR_MARKER, type BodyOptions } from "./compositor.js";
|
|
9
|
+
export { Container, foldLine, visibleWidth, SPINNER, type Component, type FrameCtx } from "./components.js";
|
|
9
10
|
export { Editor, MENU_ITEMS, PROMPT, PROMPT_WIDTH, displayWidth, charWidth, widthOf, type MenuItem, } from "./editor.js";
|
|
10
11
|
export { bannerLines, COLOR_OFF, COLOR_ON, escapeTerminal, foldResult, foldThinking, kUnit, palette, renderEvent, renderRecap, renderSessionLine, renderStatusLine, renderTerminalGap, renderToolSummary, TAGLINE, truncateRow, type Palette, type PathResolver, type RecapStats, type RenderInput, type RenderResult, type RunUsage, } from "./render.js";
|
|
11
12
|
export { editFileDiff, truncateDiff, writeFileDiff, type DiffLine, type DiffResult } from "./diff.js";
|
package/dist/index.js
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* kiso-tui — the PURE terminal layer, extracted from the CLI (the
|
|
3
3
|
* ADR-0041 escape hatch). Zero runtime dependencies: input is data,
|
|
4
|
-
* output is bytes.
|
|
5
|
-
*
|
|
4
|
+
* output is bytes. TUI v6 (ADR-0046): the ONE compositor (the single
|
|
5
|
+
* writer — body.ts + dock.ts retired), the component tree, the raw-mode
|
|
6
|
+
* editor, the diff renderer, and the palette.
|
|
6
7
|
*/
|
|
7
|
-
export { Body } from "./
|
|
8
|
-
export {
|
|
8
|
+
export { Body, Dock, CURSOR_MARKER } from "./compositor.js";
|
|
9
|
+
export { Container, foldLine, visibleWidth, SPINNER } from "./components.js";
|
|
9
10
|
export { Editor, MENU_ITEMS, PROMPT, PROMPT_WIDTH, displayWidth, charWidth, widthOf, } from "./editor.js";
|
|
10
11
|
export { bannerLines, COLOR_OFF, COLOR_ON, escapeTerminal, foldResult, foldThinking, kUnit, palette, renderEvent, renderRecap, renderSessionLine, renderStatusLine, renderTerminalGap, renderToolSummary, TAGLINE, truncateRow, } from "./render.js";
|
|
11
12
|
export { editFileDiff, truncateDiff, writeFileDiff } from "./diff.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vincemakes/kiso-tui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.32",
|
|
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",
|