yew_datatable_core/features/column_sizing/mod.rs
1/// Size info for a single column.
2///
3/// Stores the current width, minimum and maximum constraints,
4/// and flex grow factor for a column.
5pub mod column_size;
6
7/// Column sizing mode enumeration.
8///
9/// Determines how columns are sized within the table layout,
10/// supporting fixed, fit-content, and flex sizing strategies.
11pub mod column_sizing_mode;
12
13/// Complete column sizing state for the table.
14///
15/// Manages column widths, resize operations, and sizing mode
16/// with support for minimum and maximum constraints.
17pub mod column_sizing_state;
18
19/// Re-exports for convenient access to column sizing types.
20///
21/// Provides a centralized location for importing commonly used
22/// column sizing-related types, enums, and structs.
23pub mod prelude;