Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 11, 2026

Bumps tui-widgets from 0.6.2 to 0.7.0.

Release notes

Sourced from tui-widgets's releases.

tui-widgets-v0.7.0

🚀 Features

  • (scrollbar) Add tui-scrollbar crate (#164)

    Summary

    Introduce tui-scrollbar, a new widget crate for Ratatui that renders smooth, fractional scrollbars with precise thumb feedback and stateless input handling. The crate focuses on clear geometry via ScrollMetrics, configurable glyph sets (including legacy computing symbols), and ergonomic examples for keyboard and mouse interaction.

    ScrollBar demo

    Why

    Ratatui’s built-in scrollbar favors full-cell glyphs and stateful use. This crate prioritizes fractional thumbs for more accurate feedback, exposes pure metrics for testing/composition, and keeps scroll state in the application for predictable input behavior.

    Docs and Examples

    The crate-level docs include a quick start, API map, and input-handling guidance. Two examples show the fractional glyph sweep and an interactive mouse/keyboard demo.

    use ratatui_core::buffer::Buffer;
    use ratatui_core::layout::Rect;
    use ratatui_core::widgets::Widget;
    use tui_scrollbar::{ScrollBar, ScrollBarArrows, ScrollLengths};
    let area = Rect::new(0, 0, 1, 6);
    let lengths = ScrollLengths {
    content_len: 120,
    viewport_len: 30,
    };
    let scrollbar = ScrollBar::vertical(lengths)
    .arrows(ScrollBarArrows::Both)
    .offset(45);
    let mut buffer = Buffer::empty(area);
    scrollbar.render(area, &mut buffer);

  • (scrollbar) Add styled defaults (#168)

... (truncated)

Changelog

Sourced from tui-widgets's changelog.

[0.7.0] - 2026-01-02

🚀 Features

  • (scrollbar) Add tui-scrollbar crate (#164)

    Summary

    Introduce tui-scrollbar, a new widget crate for Ratatui that renders smooth, fractional scrollbars with precise thumb feedback and stateless input handling. The crate focuses on clear geometry via ScrollMetrics, configurable glyph sets (including legacy computing symbols), and ergonomic examples for keyboard and mouse interaction.

    ScrollBar demo

    Why

    Ratatui’s built-in scrollbar favors full-cell glyphs and stateful use. This crate prioritizes fractional thumbs for more accurate feedback, exposes pure metrics for testing/composition, and keeps scroll state in the application for predictable input behavior.

    Docs and Examples

    The crate-level docs include a quick start, API map, and input-handling guidance. Two examples show the fractional glyph sweep and an interactive mouse/keyboard demo.

    use ratatui_core::buffer::Buffer;
    use ratatui_core::layout::Rect;
    use ratatui_core::widgets::Widget;
    use tui_scrollbar::{ScrollBar, ScrollBarArrows, ScrollLengths};
    let area = Rect::new(0, 0, 1, 6);
    let lengths = ScrollLengths {
    content_len: 120,
    viewport_len: 30,
    };
    let scrollbar = ScrollBar::vertical(lengths)
    .arrows(ScrollBarArrows::Both)
    .offset(45);
    let mut buffer = Buffer::empty(area);
    scrollbar.render(area, &mut buffer);

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [tui-widgets](https://github.com/joshka/tui-widgets) from 0.6.2 to 0.7.0.
- [Release notes](https://github.com/joshka/tui-widgets/releases)
- [Changelog](https://github.com/joshka/tui-widgets/blob/main/CHANGELOG.md)
- [Commits](joshka/tui-widgets@tui-widgets-v0.6.2...tui-widgets-v0.7.0)

---
updated-dependencies:
- dependency-name: tui-widgets
  dependency-version: 0.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies/rust Update rust dependencies label Jan 11, 2026
@dependabot dependabot bot requested a review from ymgyt as a code owner January 11, 2026 22:08
@dependabot dependabot bot added the dependencies/rust Update rust dependencies label Jan 11, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies/rust Update rust dependencies

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant