tui-lipan 0.1.0

Opinionated, component-based TUI framework for Rust - declarative components, reconciliation, layout engine, focus, overlays, and rich widgets on top of ratatui.
Documentation
/// Standard FIGlet font.
pub const STANDARD_FONT: &str = include_str!("fonts/Standard.flf");

/// Slant FIGlet font - italic style.
pub const SLANT_FONT: &str = include_str!("fonts/Slant.flf");

/// Bloody FIGlet font - horror style with dripping effect.
pub const BLOODY_FONT: &str = include_str!("fonts/Bloody.flf");

/// Colossal FIGlet font - very large block letters.
pub const COLOSSAL_FONT: &str = include_str!("fonts/Colossal.flf");

/// Roman FIGlet font - classic roman style.
pub const ROMAN_FONT: &str = include_str!("fonts/Roman.flf");

/// Sub-Zero FIGlet font - clean geometric style.
pub const SUB_ZERO_FONT: &str = include_str!("fonts/SubZero.flf");

/// Poison FIGlet font - stylized dripping text.
pub const POISON_FONT: &str = include_str!("fonts/Poison.flf");

/// Nancyj FIGlet font - decorative style.
pub const NANCYJ_FONT: &str = include_str!("fonts/Nancyj.flf");

/// Small Poison FIGlet font - compact poison style.
pub const SMALL_POISON_FONT: &str = include_str!("fonts/SmallPoison.flf");

/// DOS Rebel FIGlet font - retro DOS style.
pub const DOS_REBEL_FONT: &str = include_str!("fonts/DosRebel.flf");

/// ANSI Shadow FIGlet font - shadow effect using box-drawing characters.
pub const ANSI_SHADOW_FONT: &str = include_str!("fonts/AnsiShadow.flf");

/// Small FIGlet font - compact version of Standard.
pub const SMALL_FONT: &str = include_str!("fonts/Small.flf");