orbital_datatable/lib.rs
1//! Orbital DataTable — interactive tabular data product for the Orbital component library.
2#![recursion_limit = "512"]
3
4#[cfg(feature = "preview")]
5pub mod preview;
6
7#[cfg(feature = "preview")]
8pub(crate) mod components {
9 pub use crate::preview::{ComponentPreviewCard, OrbitalComponentView};
10}
11
12mod core;
13mod engine;
14mod io;
15mod products;
16mod types;
17
18pub use core::*;
19pub use products::*;
20pub use types::*;