@vincemakes/kiso-tui-cells 0.19.0 → 0.19.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/strings.d.ts +13 -1
- package/dist/strings.js +13 -1
- package/package.json +1 -1
package/dist/strings.d.ts
CHANGED
|
@@ -155,7 +155,19 @@ export declare function displayVerb(name: string): string;
|
|
|
155
155
|
* The two ask-only gestures keep their clauses because the ask is the
|
|
156
156
|
* only flavor with a set to build and an answer to write.
|
|
157
157
|
*/
|
|
158
|
-
|
|
158
|
+
/**
|
|
159
|
+
* R6/D2 — the row claims only what is TRUE OF EVERY panel.
|
|
160
|
+
*
|
|
161
|
+
* Its old sentence ("⏎ or click confirms · 1-4 instant · space toggles")
|
|
162
|
+
* was documented as true of every flavor, and had silently stopped
|
|
163
|
+
* being: `1-4 instant` is false on the ask's multi-select and on the
|
|
164
|
+
* pick panel (where a digit only moves the cursor and never commits),
|
|
165
|
+
* `or click` is false on both (their frames deliberately report no
|
|
166
|
+
* clickable span), and "1-4" is wrong whenever a panel has a different
|
|
167
|
+
* option count. Layered honesty: this row states the invariant, and each
|
|
168
|
+
* panel's own affordance row states that panel's whole truth.
|
|
169
|
+
*/
|
|
170
|
+
export declare const PANEL_KEYS_ROW = "panels: \u2191\u2193 move \u00B7 \u23CE confirms \u00B7 digits act on their row \u00B7 t types";
|
|
159
171
|
/**
|
|
160
172
|
* TUI2-R1 (D) — the sheet, one screen, static.
|
|
161
173
|
*
|
package/dist/strings.js
CHANGED
|
@@ -249,7 +249,19 @@ export function displayVerb(name) {
|
|
|
249
249
|
* The two ask-only gestures keep their clauses because the ask is the
|
|
250
250
|
* only flavor with a set to build and an answer to write.
|
|
251
251
|
*/
|
|
252
|
-
|
|
252
|
+
/**
|
|
253
|
+
* R6/D2 — the row claims only what is TRUE OF EVERY panel.
|
|
254
|
+
*
|
|
255
|
+
* Its old sentence ("⏎ or click confirms · 1-4 instant · space toggles")
|
|
256
|
+
* was documented as true of every flavor, and had silently stopped
|
|
257
|
+
* being: `1-4 instant` is false on the ask's multi-select and on the
|
|
258
|
+
* pick panel (where a digit only moves the cursor and never commits),
|
|
259
|
+
* `or click` is false on both (their frames deliberately report no
|
|
260
|
+
* clickable span), and "1-4" is wrong whenever a panel has a different
|
|
261
|
+
* option count. Layered honesty: this row states the invariant, and each
|
|
262
|
+
* panel's own affordance row states that panel's whole truth.
|
|
263
|
+
*/
|
|
264
|
+
export const PANEL_KEYS_ROW = "panels: ↑↓ move \u00b7 ⏎ confirms \u00b7 digits act on their row \u00b7 t types";
|
|
253
265
|
/** The sheet's grid: the first six bindings in two 3-column rows, the
|
|
254
266
|
* last four in two 2-column rows (the wide entries get the room). The
|
|
255
267
|
* COLUMN STOPS are the prototype's absolute positions, floored by the
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vincemakes/kiso-tui-cells",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.1",
|
|
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",
|