@vincemakes/kiso-tui-cells 0.16.1 → 0.16.2

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/dist/strings.js +3 -0
  2. package/package.json +1 -1
package/dist/strings.js CHANGED
@@ -191,6 +191,7 @@ export const KEY_BINDINGS = [
191
191
  { keys: "ctrl+r", what: "expand cells" },
192
192
  { keys: "tab", what: "complete (menu / @)" },
193
193
  { keys: "?", what: "this sheet" },
194
+ { keys: "ctrl+z / ctrl+y", what: "undo / redo" },
194
195
  ];
195
196
  /**
196
197
  * TUI2-R2pre ④ — THE display-verb table (the integrator's ruling).
@@ -254,12 +255,14 @@ const SHEET_GRID = [
254
255
  [3, 4, 5],
255
256
  [6, 7],
256
257
  [8, 9],
258
+ [10], // UD-1: its own single-column row — no hand-tuned stop touched
257
259
  ];
258
260
  const SHEET_STOPS = [
259
261
  [16, 43],
260
262
  [16, 43],
261
263
  [36],
262
264
  [36],
265
+ [],
263
266
  ];
264
267
  /**
265
268
  * TUI2-R1 (D) — the sheet, one screen, static.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vincemakes/kiso-tui-cells",
3
- "version": "0.16.1",
3
+ "version": "0.16.2",
4
4
  "description": "kiso tui-cells \u2014 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",