@vincemakes/kiso-tui-cells 0.13.0 → 0.14.0
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/strings.d.ts +8 -0
- package/dist/strings.js +20 -0
- package/package.json +1 -1
package/dist/strings.d.ts
CHANGED
|
@@ -61,6 +61,14 @@ export declare function projectUntrustedNote(count: number, root: string): strin
|
|
|
61
61
|
* goes stale silently. The tool name is escaped for the dock-less
|
|
62
62
|
* fallback question because it reaches the terminal as raw text there;
|
|
63
63
|
* the panel's own rows are escaped by the panel renderer. */
|
|
64
|
+
/**
|
|
65
|
+
* TV-1B — the verification offer (the thin task driver's one question):
|
|
66
|
+
* shown at a NORMAL settle when every item is claimed done and no
|
|
67
|
+
* passing check is fresh. The panel's simple flavor; bare-Enter
|
|
68
|
+
* approves, Esc dismisses. The fallback question serves a dock-less
|
|
69
|
+
* TTY; non-interactive paths never reach askPanel at all.
|
|
70
|
+
*/
|
|
71
|
+
export declare function verifyOfferView(): PanelView;
|
|
64
72
|
export declare function uncertainView(name: string, executionId: string): PanelView;
|
|
65
73
|
/**
|
|
66
74
|
* KC3.5 — the SAME uncertainty gate, said honestly for an ask_user call.
|
package/dist/strings.js
CHANGED
|
@@ -72,6 +72,26 @@ export function projectUntrustedNote(count, root) {
|
|
|
72
72
|
* goes stale silently. The tool name is escaped for the dock-less
|
|
73
73
|
* fallback question because it reaches the terminal as raw text there;
|
|
74
74
|
* the panel's own rows are escaped by the panel renderer. */
|
|
75
|
+
/**
|
|
76
|
+
* TV-1B — the verification offer (the thin task driver's one question):
|
|
77
|
+
* shown at a NORMAL settle when every item is claimed done and no
|
|
78
|
+
* passing check is fresh. The panel's simple flavor; bare-Enter
|
|
79
|
+
* approves, Esc dismisses. The fallback question serves a dock-less
|
|
80
|
+
* TTY; non-interactive paths never reach askPanel at all.
|
|
81
|
+
*/
|
|
82
|
+
export function verifyOfferView() {
|
|
83
|
+
return {
|
|
84
|
+
flavor: "simple",
|
|
85
|
+
name: "verification",
|
|
86
|
+
title: "finish the checklist?",
|
|
87
|
+
speaker: "kiso",
|
|
88
|
+
statusText: "\u25b8 run paused",
|
|
89
|
+
args: { kind: "text", lines: [] },
|
|
90
|
+
ruleOverride: "every item is marked done \u2014 run a check?",
|
|
91
|
+
simpleOptions: ["run a verification pass", "not now"],
|
|
92
|
+
fallbackQuestion: "run a verification pass? (y/n) ",
|
|
93
|
+
};
|
|
94
|
+
}
|
|
75
95
|
export function uncertainView(name, executionId) {
|
|
76
96
|
return {
|
|
77
97
|
flavor: "simple",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vincemakes/kiso-tui-cells",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.0",
|
|
4
4
|
"description": "kiso tui-cells — the components cell renderer (components, diff, width, the render slice). Zero runtime dependencies: input is data, output is bytes.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|