Skip to main content

yew_datatable/components/
mod.rs

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