orbital_history/lib.rs
1//! Orbital History — composable audit timeline for Leptos.
2//!
3//! Host applications own data fetch and domain models; Orbital owns presentation,
4//! formatting defaults, layout, slots, and render extensibility.
5
6#![recursion_limit = "512"]
7
8#[cfg(feature = "preview")]
9pub mod preview;
10
11#[cfg(feature = "preview")]
12pub(crate) mod components {
13 pub use crate::preview::{ComponentPreviewCard, OrbitalComponentView};
14}
15
16mod context;
17mod engine;
18mod format;
19mod products;
20mod types;
21
22pub use context::*;
23pub use engine::*;
24pub use format::*;
25pub use products::history::*;
26pub use types::*;