mirror of
https://github.com/nushell/nushell
synced 2025-02-19 07:28:32 +00:00
* Drop in replacement from nu-table to tabled. Must act the same way as original nu-table. Signed-off-by: Maxim Zhiburt <zhiburt@gmail.com> Fix some issues Signed-off-by: Maxim Zhiburt <zhiburt@gmail.com> * Bump ansi-str version Signed-off-by: Maxim Zhiburt <zhiburt@gmail.com> * Update to latest Signed-off-by: Maxim Zhiburt <zhiburt@gmail.com> * Fix footer issue Signed-off-by: Maxim Zhiburt <zhiburt@gmail.com> * Fix header alignment Signed-off-by: Maxim Zhiburt <zhiburt@gmail.com> * Fix header style Signed-off-by: Maxim Zhiburt <zhiburt@gmail.com> * Use latest tabled/ansi-str * Refactorings Signed-off-by: Maxim Zhiburt <zhiburt@gmail.com> * Fix clippy warnings Signed-off-by: Maxim Zhiburt <zhiburt@gmail.com>
8 lines
180 B
Rust
8 lines
180 B
Rust
mod table;
|
|
mod table_theme;
|
|
mod textstyle;
|
|
mod wrap;
|
|
|
|
pub use table::{draw_table, Table};
|
|
pub use table_theme::TableTheme;
|
|
pub use textstyle::{Alignment, StyledString, TextStyle};
|