bmux_tui_components 0.0.1-alpha.1

Reusable terminal UI components for bmux
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![cfg_attr(feature = "fail-on-warnings", deny(warnings))]
#![warn(clippy::all, clippy::pedantic, clippy::nursery, clippy::cargo)]
#![allow(clippy::multiple_crate_versions)]

//! Reusable BMUX TUI components.
//!
//! This crate intentionally layers higher-level controls on top of raw
//! [`bmux_tui`] primitives instead of replacing them. Component state is kept
//! separate from component policy so applications can opt into behavior one
//! feature at a time.

#[cfg(feature = "text-input")]
pub mod text_input;