Skip to main content

gpui_kit/navigation/
mod.rs

1//! Navigation and disclosure: tabs, accordion sections, a breadcrumb trail, a
2//! collapsible rail, and page controls.
3//!
4//! None of these own where the typist is. Each reports the place that was
5//! picked and renders whatever the caller says is current, so a host that
6//! refuses a move keeps showing the place that still holds.
7
8pub mod accordion;
9pub mod anchor_list;
10pub mod breadcrumb;
11pub mod collapsible;
12pub mod pagination;
13pub mod sidebar;
14pub mod tabs;
15pub mod undo_history;
16pub mod wizard;
17
18pub use accordion::{Accordion, AccordionSection};
19pub use anchor_list::{Anchor, AnchorList};
20pub use breadcrumb::{Breadcrumb, Crumb};
21pub use collapsible::Collapsible;
22pub use pagination::{PageTotal, Pagination};
23pub use sidebar::{Sidebar, SidebarItem, SidebarSection};
24pub use tabs::{SaveState, TabItem, Tabs};
25pub use undo_history::{HistoryEntry, UndoHistory};
26pub use wizard::{StepStatus, Wizard, WizardIntent, WizardLayout, WizardStep};