2
0
Fork 0
mirror of https://github.com/nushell/nushell synced 2025-02-19 07:28:32 +00:00
nushell/crates/nu-table/src/lib.rs
JT a98b3124c5
Revert "Add an option to move header on borders" ()
Reverts nushell/nushell#9796

This is just draft since we're seeing some issues with the latest fixes
to table drawing that just landed with . We're hoping to get these
fixed, but if we're not able to fix them before the next release, we'll
need to revert (hence this PR, just in case we need it).
2023-08-03 14:52:12 -05:00

15 lines
464 B
Rust

mod table;
mod table_theme;
mod types;
mod unstructured_table;
mod util;
pub use nu_color_config::TextStyle;
pub use table::{Alignments, Cell, NuTable, TableConfig};
pub use table_theme::TableTheme;
pub use types::{
clean_charset, value_to_clean_styled_string, value_to_styled_string, BuildConfig,
CollapsedTable, ExpandedTable, JustTable, NuText, StringResult, TableOutput, TableResult,
};
pub use unstructured_table::UnstructuredTable;
pub use util::*;