tuigram 0.1.5

A TUI sequence diagram editor
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod confirm;
mod editor;
pub mod help;
pub mod input;
pub mod scroll;
mod selection;
pub mod status_bar;

pub use editor::{EditorMode, EditorState};
pub use selection::Selection;

/// Height of the participant header area
pub const HEADER_HEIGHT: u16 = 3;
/// Offset from lifeline start to first message
pub const FIRST_MESSAGE_OFFSET: u16 = 2;