yew_datatable_core/state/mod.rs
1/// Combined state for all table features.
2///
3/// Aggregates all feature states into a single structure
4/// for easier management and passing around.
5pub mod data_table_state;
6
7/// Builder for creating table state with specific initial values.
8///
9/// Provides a fluent API for constructing `DataTableState` instances
10/// with pre-configured feature states.
11pub mod data_table_state_builder;
12
13/// Re-exports for convenient access to state types.
14///
15/// Provides a centralized location for importing commonly used
16/// state-related types and structs.
17pub mod prelude;