yew_datatable_core/features/row_selection/mod.rs
1/// Row selection mode enumeration.
2///
3/// Determines whether row selection is disabled, limited to a single row,
4/// or allows multiple rows to be selected simultaneously.
5pub mod row_selection_mode;
6
7/// Complete row selection state for the table.
8///
9/// Manages the set of selected rows with support for single
10/// and multi-row selection modes.
11pub mod row_selection_state;
12
13/// Re-exports for convenient access to row selection types.
14///
15/// Provides a centralized location for importing commonly used
16/// row selection-related types and enums.
17pub mod prelude;