vize_fresco 0.220.0

Fresco - Vue TUI framework (Terminal User Interface)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Primitive component nodes.
//!
//! Provides the core building blocks for TUI:
//! - BoxNode: Container with flexbox layout
//! - TextNode: Text display
//! - InputNode: Text input with IME support

mod box_node;
mod input_node;
mod text_node;

pub use box_node::BoxNode;
pub use input_node::InputNode;
pub use text_node::TextNode;