zellij/zellij-tile/src/ui_components/mod.rs
Aram Drevekenin 7e5f22f8c9
feat(plugins): UI components (#2898)
* 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
2023-11-02 08:17:23 +01:00

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::*;