chore: version packages - #122
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
commit: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@bomb.sh/tty@0.9.0
Minor Changes
#118
619d2d4Thanks @natemoo-re! - Changesbordersides to reserve layout space instead of drawing as an overlay. Each border width is now added to the padding on its side, so content and children are laid out inside the border rather than collapsing behind the border glyphs.This is a breaking change for callers who compensated for the old behavior by setting
layout.paddingequal to the border width — that padding is now additive and double-counts. Remove the workaround:{ border: { color, left: 1, right: 1, top: 1, bottom: 1 }, - layout: { padding: { left: 1, right: 1, top: 1, bottom: 1 } }, }A
borderof 1 with no padding now reserves one cell per bordered side;borderof 1 pluspaddingof 1 reserves two, measured inward from the border edge.#118
619d2d4Thanks @natemoo-re! - Adds acaretproperty to text elements that positions the terminal's hardware cursor at a code-point offset within the text, resolved through wrapping and wide-character widths. The cursor shows only while a caret is declared; an offset at or past the content length places it one cell past the last character, giving text inputs a real, movable cursor.Patch Changes
#118
619d2d4Thanks @natemoo-re! - Shrinks the bundled WASM ~35% (156 kB → 101 kB raw) by compiling out Clay's unused debug-inspector UI.#120
b371922Thanks @natemoo-re! - Scales the renderer's memory arena to the terminal grid instead of a fixed default, cutting the reservation for an 80×24 grid ~51% (4.85 MB → 2.39 MB) with no change to render performance.#118
619d2d4Thanks @natemoo-re! - Fixes width measurement for non-printable, control, and surrogate code points, which now measure as oneU+FFFDcell to match what the renderer draws (width data regenerated against Unicode 17).