@magyk/vincent 0.1.6 → 0.1.8

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/CHANGELOG.md CHANGED
@@ -6,6 +6,39 @@ The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
6
6
 
7
7
  ---
8
8
 
9
+ ## [0.1.8] — 2026-05-11
10
+
11
+ ### Fixed
12
+ - Terminal-width overflow crashes hardened across all custom UI components:
13
+ - `BorderBox` title fill now uses visible (ANSI-stripped) width; long titles
14
+ are truncated gracefully instead of overflowing the border line
15
+ - `BorderBox.padRight` truncates defensively so a misbehaving child component
16
+ can no longer propagate an overflow crash to the parent
17
+ - Proposal widget: title line, frozen-feedback line, and word-wrap now all
18
+ cap output to the given render width; single long words (URLs, base64
19
+ strings) are hard-broken instead of passing through unsplit
20
+ - `/open` hint added to the fallback message shown when inline images are not
21
+ supported by the terminal
22
+
23
+ ### Added
24
+ - Shared `assertWidthInvariant` test helper (`layout-utils.ts`) — one-line
25
+ width-contract verification for any `Component`
26
+ - `layout-constraints.test.ts` — 21 layout tests covering `BorderBox`,
27
+ `ProposalWidget`, `ThinkingComponent`, and `ContentRenderer` at widths
28
+ 40/60/80/120 with adversarial content (long titles, long single-word
29
+ descriptions, long feedback text)
30
+
31
+ ---
32
+
33
+ ## [0.1.7] — 2026-05-11
34
+
35
+ ### Fixed
36
+ - Typing long feedback in the scene proposal widget no longer crashes with
37
+ "Rendered line exceeds terminal width" — the display scrolls to keep the
38
+ current cursor position visible within the terminal width
39
+
40
+ ---
41
+
9
42
  ## [0.1.6] — 2026-05-11
10
43
 
11
44
  ### Fixed