♻️ (bootsier): Mueve Image al core de PageTop

`Image`, `Size` y `Source` pasan a `pagetop::base::component` como
componente genérico reutilizable por cualquier tema. Bootsier
sustituye las clases semánticas por las de Bootstrap (`img-fluid`,
`img-thumbnail`) interceptando `setup()`.
This commit is contained in:
Manuel Cillero 2026-08-17 00:55:35 +02:00
parent 745d492d5b
commit c3ff8a6ff8
6 changed files with 97 additions and 88 deletions

View file

@ -145,6 +145,7 @@ impl Theme for Bootsier {
setup_component!(component, {
Button => |c| theme::bs::button::setup(c),
Container => |c| theme::bs::container::setup(c),
Image => |c| theme::bs::image::setup(c),
form::input::Field => |c| theme::bs::form::input::setup(c),
form::select::Field => |c| theme::bs::form::select::setup(c),
form::Textarea => |c| theme::bs::form::textarea::setup(c),