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.
40 lines
618 B
Rust
40 lines
618 B
Rust
//! Componentes nativos proporcionados por PageTop.
|
|
|
|
pub mod layout;
|
|
|
|
mod badge;
|
|
pub use badge::Badge;
|
|
|
|
pub mod breadcrumb;
|
|
#[doc(inline)]
|
|
pub use breadcrumb::Breadcrumb;
|
|
|
|
mod block;
|
|
pub use block::Block;
|
|
|
|
mod button;
|
|
pub use button::{Button, ButtonAction};
|
|
|
|
pub mod container;
|
|
#[doc(inline)]
|
|
pub use container::Container;
|
|
|
|
pub mod form;
|
|
#[doc(inline)]
|
|
pub use form::Form;
|
|
|
|
mod html;
|
|
pub use html::Html;
|
|
|
|
mod intro;
|
|
pub use intro::{Intro, IntroOpening};
|
|
|
|
mod pager;
|
|
pub use pager::{Pager, PagerAlign, PagerVisibility};
|
|
|
|
mod poweredby;
|
|
pub use poweredby::PoweredBy;
|
|
|
|
pub mod table;
|
|
#[doc(inline)]
|
|
pub use table::Table;
|