oxicode-vtui 0.79.0

Terminal UI framework for oxicode, based on vtcode-ui
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Small, host-agnostic presentation primitives for the next oxicode TUI.
//!
//! This module deliberately has no agent, settings, or terminal-lifecycle
//! dependency. It is the seam between oxicode's event/state layer and its
//! ratatui views.

pub mod allocation;
pub mod renderable;
pub mod transcript;

pub use allocation::{BlockAlloc, allocate_rows};
pub use renderable::{Column, Renderable, TextCell};
pub use transcript::{BlockDisplayMode, TranscriptLine, VisibleItem, visible_items};