@sayknow-cli/tui 0.2.2 → 0.2.3

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/CHANGELOG.md +6 -6
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -91,7 +91,7 @@
91
91
 
92
92
  ### Fixed
93
93
 
94
- - Fixed `matchesKey(data, "ctrl+m")` (and the other named-key collisions: `ctrl+h`/`ctrl+i`/`ctrl+j`/`ctrl+[`) returning true for the bare `\r`/`\x08`/`\t`/`\n`/`\x1b` byte terminals send for Enter/Backspace/Tab/Escape in legacy mode. Binding a command to `Ctrl+M` no longer fires when the user presses Enter — the named key wins, and `ctrl+<colliding-letter>` matches only when the terminal disambiguates via the Kitty keyboard protocol or `modifyOtherKeys`. ([#1354](https://github.com/jaybeyond/sayknow-cli/issues/1354))
94
+ - Fixed `matchesKey(data, "ctrl+m")` (and the other named-key collisions: `ctrl+h`/`ctrl+i`/`ctrl+j`/`ctrl+[`) returning true for the bare `\r`/`\x08`/`\t`/`\n`/`\x1b` byte terminals send for Enter/Backspace/Tab/Escape in legacy mode. Binding a command to `Ctrl+M` no longer fires when the user presses Enter — the named key wins, and `ctrl+<colliding-letter>` matches only when the terminal disambiguates via the Kitty keyboard protocol or `modifyOtherKeys`. ([#1354](https://github.com/jaybeyond/Sayknow_CLI/issues/1354))
95
95
 
96
96
  ## [15.2.3] - 2026-05-22
97
97
  ### Added
@@ -106,13 +106,13 @@
106
106
 
107
107
  ### Fixed
108
108
 
109
- - Fixed terminal probe responses (DA1, kitty keyboard, Mode 2031) leaking into the prompt as keystrokes when the response is split across stdin reads. `ProcessTerminal` now reassembles `\x1b[?<digits>...` private CSI fragments and dispatches the complete response through the existing pattern handlers. ([#1238](https://github.com/jaybeyond/sayknow-cli/issues/1238))
109
+ - Fixed terminal probe responses (DA1, kitty keyboard, Mode 2031) leaking into the prompt as keystrokes when the response is split across stdin reads. `ProcessTerminal` now reassembles `\x1b[?<digits>...` private CSI fragments and dispatches the complete response through the existing pattern handlers. ([#1238](https://github.com/jaybeyond/Sayknow_CLI/issues/1238))
110
110
 
111
111
  ## [15.1.4] - 2026-05-19
112
112
 
113
113
  ### Fixed
114
114
 
115
- - Fixed `renderInlineMarkdown` crashing with `TypeError: undefined is not an object (evaluating 'e.replace')` when called with a non-string value during streaming — partial JSON parsing leaves option label fields temporarily unpopulated, causing the ask tool renderer to fail. ([#1176](https://github.com/jaybeyond/sayknow-cli/issues/1176))
115
+ - Fixed `renderInlineMarkdown` crashing with `TypeError: undefined is not an object (evaluating 'e.replace')` when called with a non-string value during streaming — partial JSON parsing leaves option label fields temporarily unpopulated, causing the ask tool renderer to fail. ([#1176](https://github.com/jaybeyond/Sayknow_CLI/issues/1176))
116
116
 
117
117
  ## [15.0.2] - 2026-05-15
118
118
 
@@ -185,7 +185,7 @@
185
185
  ## [14.9.5] - 2026-05-12
186
186
  ### Fixed
187
187
 
188
- - Fixed rapidly blinking cursor artifact during task execution by consolidating cursor control sequences into the synchronized output buffer ([#992](https://github.com/jaybeyond/sayknow-cli/issues/992))
188
+ - Fixed rapidly blinking cursor artifact during task execution by consolidating cursor control sequences into the synchronized output buffer ([#992](https://github.com/jaybeyond/Sayknow_CLI/issues/992))
189
189
 
190
190
  ## [14.5.7] - 2026-04-29
191
191
 
@@ -290,7 +290,7 @@
290
290
 
291
291
  ### Fixed
292
292
 
293
- - Fixed viewport repaint scrollback accounting during resize oscillation to avoid double-scrolling on height shrink and added exact-row scrollback assertions in overlay regression coverage ([#228](https://github.com/jaybeyond/sayknow-cli/issues/228), [#234](https://github.com/jaybeyond/sayknow-cli/issues/234))
293
+ - Fixed viewport repaint scrollback accounting during resize oscillation to avoid double-scrolling on height shrink and added exact-row scrollback assertions in overlay regression coverage ([#228](https://github.com/jaybeyond/Sayknow_CLI/issues/228), [#234](https://github.com/jaybeyond/Sayknow_CLI/issues/234))
294
294
  ## [13.5.3] - 2026-03-01
295
295
 
296
296
  ### Fixed
@@ -397,7 +397,7 @@
397
397
 
398
398
  ### Fixed
399
399
 
400
- - Fixed history-entry navigation anchoring (Up opens at top, Down opens at bottom) and preserved editor scroll context when max-height changes to keep cursor movement visible in long prompts ([#99](https://github.com/jaybeyond/sayknow-cli/issues/99)).
400
+ - Fixed history-entry navigation anchoring (Up opens at top, Down opens at bottom) and preserved editor scroll context when max-height changes to keep cursor movement visible in long prompts ([#99](https://github.com/jaybeyond/Sayknow_CLI/issues/99)).
401
401
 
402
402
  ## [12.11.3] - 2026-02-19
403
403
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@sayknow-cli/tui",
4
- "version": "0.2.2",
4
+ "version": "0.2.3",
5
5
  "description": "Terminal User Interface library with differential rendering for efficient text-based applications",
6
6
  "homepage": "https://github.com/jaybeyond/Sayknow_CLI",
7
7
  "author": "jaybeyond",
@@ -38,8 +38,8 @@
38
38
  "fmt": "biome format --write ."
39
39
  },
40
40
  "dependencies": {
41
- "@sayknow-cli/natives": "0.2.2",
42
- "@sayknow-cli/utils": "0.2.2",
41
+ "@sayknow-cli/natives": "0.2.3",
42
+ "@sayknow-cli/utils": "0.2.3",
43
43
  "lru-cache": "11.3.6",
44
44
  "marked": "^18.0.3"
45
45
  },