vtcode-tui 0.98.3

Reusable TUI primitives and session API for VT Code-style terminal interfaces
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod layout;
mod render;
mod state;
#[cfg(test)]
mod tests;

#[allow(unused_imports)]
pub use layout::{ModalBodyContext, ModalRenderStyles, ModalSection};
#[allow(unused_imports)]
pub(crate) use render::{
    modal_list_item_lines, render_modal_body, render_modal_list, render_wizard_modal_body,
    render_wizard_tabs,
};
#[allow(unused_imports)]
pub use state::{
    ModalKeyModifiers, ModalListItem, ModalListKeyResult, ModalListState, ModalSearchState,
    ModalState, WizardModalState, WizardStepState, is_divider_title,
};