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
//! Input widgets — the prompt area where the user types messages.
//!
//! Currently exposes [`InputArea`], a thin `Renderable` wrapper around
//! stock `ratatui-textarea` 0.9. The textarea handles IME, paste, undo,
//! and word-wrap natively; we only translate between `Renderable` and
//! `Widget`.

pub mod textarea;

pub use textarea::InputArea;