(base): Añade componente Table

Incluye columnas ordenables (`table::SortLink`), paso de props/atributos
a filas y celdas para HTMX, y un mensaje de "sin datos" traducible con
valor por defecto.
This commit is contained in:
Manuel Cillero 2026-08-13 15:17:23 +02:00
parent 17a9f0c9e0
commit 5842ea6efc
10 changed files with 723 additions and 0 deletions

View file

@ -0,0 +1,16 @@
//! Definiciones para representar tablas de datos ([`Table`]).
mod props;
pub use props::SortLink;
mod component;
pub use component::Table;
mod column;
pub use column::Column;
mod row;
pub use row::Row;
mod cell;
pub use cell::Cell;