@gajae-code/tui 0.11.4 → 0.11.5

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 +3 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -12,7 +12,10 @@
12
12
  ## [0.11.3] - 2026-07-19
13
13
  ### Fixed
14
14
 
15
+ - Keybinding configuration arrays are now defensively copied so external mutations cannot diverge snapshots from resolved key matches.
15
16
  - Suppressed slash-command and skill autocomplete inside line-local single-backtick code spans while preserving path completion and ordinary slash matching outside literals (#2619).
17
+ - Supplementary Unicode terminal input now crosses the stdin decoding boundary as complete code points instead of separate UTF-16 surrogate events.
18
+ - Bracketed-paste framing now preserves ordinary input before coalesced or split start markers, retains split end markers byte-for-byte, and reprocesses multiple framed pastes in order instead of dropping command prefixes.
16
19
 
17
20
  ## [0.11.0] - 2026-07-15
18
21
  ### Fixed
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@gajae-code/tui",
4
- "version": "0.11.4",
4
+ "version": "0.11.5",
5
5
  "description": "Terminal User Interface library with differential rendering for efficient text-based applications",
6
6
  "homepage": "https://gajae-code.com",
7
7
  "author": "Yeachan-Heo and Gajae Code Contributors",
@@ -36,8 +36,8 @@
36
36
  "fmt": "biome format --write ."
37
37
  },
38
38
  "dependencies": {
39
- "@gajae-code/natives": "0.11.4",
40
- "@gajae-code/utils": "0.11.4",
39
+ "@gajae-code/natives": "0.11.5",
40
+ "@gajae-code/utils": "0.11.5",
41
41
  "lru-cache": "11.3.6",
42
42
  "marked": "18.0.6"
43
43
  },