Skip to main content

yew_datatable/components/
mod.rs

1/// Main DataTable component that assembles all sub-components.
2///
3/// Provides a complete data table with global filter, sortable headers,
4/// row body, and pagination support.
5pub mod data_table;
6
7/// Pagination component for navigating table pages.
8///
9/// Displays page navigation controls, page size selector,
10/// and row count information.
11pub mod pagination;
12
13/// Table body component for rendering rows and cells.
14///
15/// Supports row selection, custom cell rendering via callbacks,
16/// and selectable row highlighting.
17pub mod table_body;
18
19/// Table header component for rendering column headers.
20///
21/// Supports click-to-sort with multi-column sorting via shift-click,
22/// and visual sort direction indicators.
23pub mod table_header;