vtcode-ui 0.143.0

Unified UI crate for VT Code: design system, theme registry, and TUI framework
mod layout;
mod render;
mod state;
#[cfg(test)]
mod tests;

#[expect(
    unused_imports,
    reason = "Intentional compatibility, platform, test, or API-shape suppression."
)]
pub(crate) use layout::{ModalBodyContext, ModalRenderStyles, ModalSection};
#[expect(
    unused_imports,
    reason = "Intentional compatibility, platform, test, or API-shape suppression."
)]
pub(crate) use render::{
    modal_list_item_lines, render_modal_body, render_modal_list, render_wizard_modal_body, render_wizard_tabs,
};
pub use state::{
    ModalKeyModifiers, ModalListItem, ModalListKeyResult, ModalListState, ModalSearchState, ModalState,
    WizardModalState, WizardStepState, is_divider_title,
};