@magyk/vincent 0.1.7 → 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 +24 -0
- package/dist/vincent.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,30 @@ 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
|
+
|
|
9
33
|
## [0.1.7] — 2026-05-11
|
|
10
34
|
|
|
11
35
|
### Fixed
|