Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ scrollview = ["tui-scrollview"]
document-features.workspace = true
ratatui-core = { workspace = true }
tui-bar-graph = { version = "0.3.1", path = "tui-bar-graph", optional = true }
tui-big-text = { version = "0.8.2", path = "tui-big-text", optional = true }
tui-big-text = { version = "0.8.3", path = "tui-big-text", optional = true }
tui-box-text = { version = "0.3.1", path = "tui-box-text", optional = true }
tui-cards = { version = "0.3.1", path = "tui-cards", optional = true }
tui-popup = { version = "0.7.2", path = "tui-popup", optional = true }
Expand Down
31 changes: 31 additions & 0 deletions tui-big-text/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,37 @@

All notable changes to this project will be documented in this file.

## [0.8.3] - 2026-02-14

### πŸš€ Features

- *(tui-big-text)* Add optional Block wrapping for BigText ([#197](https://github.com/ratatui/tui-widgets/issues/197))
> # Summary
> Add optional block wrapping for the big text widget so it can render
> within a border and title area.
>
> # Motivation
> This enables composing the big text widget with standard block
> decorations, which is useful for dashboards and status displays.
> E. g. I'm making layout with BigText stopwatch and I want to use block
> title as a place for status. Additionally it fits into my dashboard
> design.
> I think it might be useful.
>
> My example:
>
> ![Screenshot_5](https://github.com/user-attachments/assets/0fdbbdeb-8f05-4588-ad39-ba5133295717)
>
>
> # Changes
> - Added optional block support in the widget configuration and rendering
> flow.
> - Added a test to validate rendering with a bordered block and title.
>
> # Testing
> `cargo test -p tui-big-text --all-features -- --nocapture`


## [0.8.2] - 2026-02-01

### πŸš€ Features
Expand Down
2 changes: 1 addition & 1 deletion tui-big-text/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tui-big-text"
version = "0.8.2"
version = "0.8.3"
description = "A Ratatui widget for displaying big text in the terminal"
documentation = "https://docs.rs/tui-big-text"

Expand Down