♻️ (form): Mueve componentes de formulario a base

This commit is contained in:
Manuel Cillero 2026-06-22 02:12:09 +02:00
parent 26f1cda831
commit 9435678e01
38 changed files with 2211 additions and 1826 deletions

View file

@ -11,7 +11,7 @@ pub mod classes;
// Button.
mod button;
pub use button::Button;
pub use button::{Button, ButtonAction};
// Container.
pub mod container;
@ -27,6 +27,12 @@ pub use dropdown::Dropdown;
pub mod form;
#[doc(inline)]
pub use form::Form;
#[doc(hidden)]
pub use form::input::InputBootsier;
#[doc(hidden)]
pub use form::select::SelectBootsier;
#[doc(hidden)]
pub use form::textarea::TextareaBootsier;
// Image.
pub mod image;