Skip to main content

orbital_core_components/layout/
mod.rs

1mod content_with_aside;
2mod content_with_aside_slots;
3mod context;
4mod header_inset;
5mod layout;
6mod main;
7mod overlay;
8mod sidebar;
9mod sidebar_toggle;
10mod slots;
11mod styles;
12
13pub use content_with_aside::ContentWithAside;
14#[cfg(feature = "preview")]
15pub use content_with_aside::CONTENTWITHASIDE_PREVIEW_REGISTRATION;
16pub use content_with_aside_slots::{Aside, Content};
17pub use context::LayoutSidebarOpen;
18pub use header_inset::LayoutHeaderInset;
19pub use layout::Layout;
20#[cfg(feature = "preview")]
21pub use layout::LAYOUT_PREVIEW_REGISTRATION;
22pub use sidebar_toggle::LayoutSidebarToggle;
23pub use slots::{LayoutHeader, LayoutMain, LayoutSidebar};
24
25pub use orbital_base_components::{AppBarInset, LayoutPosition};
26pub use styles::layout_styles;