tb-tui-common 0.1.3

Shared TUI helpers (Powerline probe, overlay sizing, theme contrast, splash render, atomic-write) reused by ebman and pgman.
Documentation
//! tui-common — shared helpers used by ratatui-based TUIs `ebman` and
//! `pgman` (and any future siblings).
//!
//! What lives here:
//! - [`font_probe`] — pre-TUI terminal probe that decides whether the
//!   user's font renders Powerline / Nerd Font glyphs at one cell each.
//! - [`overlay`] — centred-popup sizing (`OverlaySize` categories +
//!   `centered_overlay` / `centered_rect` helpers).
//! - [`text_input`] — single-line editable buffer with a cursor
//!   ([`TextInput`]) for modal prompts / filter / command lines.
//!
//! What does *not* live here: anything app-specific (AWS SDK clients,
//! Postgres connection code, EB-flavoured theme palettes, …). Pure
//! reusable plumbing only.

pub mod font_probe;
pub mod overlay;
pub mod splash;
pub mod text_input;
pub mod theme;
pub mod util;

pub use text_input::TextInput;