mirror of
https://github.com/nushell/nushell.git
synced 2025-07-13 12:56:22 +02:00
With this comes a new `unicode-width` as I remember there was some issue with `ratatui`. And a bit of refactorings which are ment to reduce code lines while not breaking anything. Not yet complete, I think I'll try to improve some more places, just wanted to trigger CI 😄 And yessssssssss we have a new `unicode-width` but I sort of doubtful, I mean the original issue with emojie. I think it may require an additional "clean" call. I am just saying I was not testing it with that case of complex emojies. --------- Signed-off-by: Maxim Zhiburt <zhiburt@gmail.com>
18 lines
434 B
Rust
18 lines
434 B
Rust
#![doc = include_str!("../README.md")]
|
|
|
|
mod table;
|
|
mod table_theme;
|
|
mod types;
|
|
mod unstructured_table;
|
|
mod util;
|
|
|
|
pub mod common;
|
|
|
|
pub use common::{StringResult, TableResult};
|
|
pub use nu_color_config::TextStyle;
|
|
pub use table::{NuRecordsValue, NuTable};
|
|
pub use table_theme::TableTheme;
|
|
pub use types::{CollapsedTable, ExpandedTable, JustTable, TableOpts, TableOutput};
|
|
pub use unstructured_table::UnstructuredTable;
|
|
pub use util::*;
|