diff --git a/komorebi-client/src/lib.rs b/komorebi-client/src/lib.rs index 589a760c..8f95a160 100644 --- a/komorebi-client/src/lib.rs +++ b/komorebi-client/src/lib.rs @@ -20,6 +20,10 @@ pub use komorebi::core::Arrangement; pub use komorebi::core::Axis; pub use komorebi::core::BorderImplementation; pub use komorebi::core::BorderStyle; +pub use komorebi::core::Column; +pub use komorebi::core::ColumnSplit; +pub use komorebi::core::ColumnSplitWithCapacity; +pub use komorebi::core::ColumnWidth; pub use komorebi::core::CustomLayout; pub use komorebi::core::CycleDirection; pub use komorebi::core::DefaultLayout; diff --git a/komorebi/src/core/mod.rs b/komorebi/src/core/mod.rs index ba29d215..61bf95b1 100644 --- a/komorebi/src/core/mod.rs +++ b/komorebi/src/core/mod.rs @@ -19,6 +19,10 @@ use crate::KomorebiTheme; pub use animation::AnimationStyle; pub use arrangement::Arrangement; pub use arrangement::Axis; +pub use custom_layout::Column; +pub use custom_layout::ColumnSplit; +pub use custom_layout::ColumnSplitWithCapacity; +pub use custom_layout::ColumnWidth; pub use custom_layout::CustomLayout; pub use cycle_direction::CycleDirection; pub use default_layout::DefaultLayout;