* parsing rendering private osc table * move components to DCS and add tests * refactor: move components to their own thing * ribbon and selected-ribbon ui components * nested list ui component * selected and indices for nested list * coordinates and size for ui components * use Text with ribbon * add tests for components * refactor: ui components * refactor: ui components api * style(fmt): rustfmt * style(fmt): cleanups
12 lines
204 B
Rust
12 lines
204 B
Rust
mod nested_list;
|
|
mod ribbon;
|
|
mod table;
|
|
mod text;
|
|
|
|
pub use zellij_utils::plugin_api;
|
|
pub use zellij_utils::prost::{self, *};
|
|
|
|
pub use nested_list::*;
|
|
pub use ribbon::*;
|
|
pub use table::*;
|
|
pub use text::*;
|