oxi-tui 0.60.0

Terminal UI rendering pipeline and widget library for oxi (v2 — terminal-first pipeline)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Panel widgets — chrome around the chat surface.
//!
//! - [`Footer`] — one-line status bar (model · tokens · cost · spinner).
//! - [`Sticky`] — top- or bottom-anchored band that paints a bg fill.
//! - [`Overlay`] — centered modal with border + optional title.

pub mod footer;
pub mod overlay;
pub mod sticky;

pub use footer::Footer;
pub use overlay::Overlay;
pub use sticky::{Sticky, StickyPosition};