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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Input handling module.

pub mod command_registry;
#[cfg(not(target_arch = "wasm32"))]
pub mod convert;
pub mod drag;
pub mod focus;
pub(crate) mod geometry;
pub mod handlers;
pub mod hex_history;
pub mod keyboard;
pub mod keymap;
pub mod mouse;
pub mod scrollbar;
pub mod text;
pub(crate) mod text_area_vim;