(bootsier): Añade campos de texto de una línea

This commit is contained in:
Manuel Cillero 2026-04-27 18:19:45 +02:00
parent 9273be2110
commit f85f2ea2d1
5 changed files with 377 additions and 143 deletions

View file

@ -1,8 +1,9 @@
//! Definiciones para crear formularios ([`Form`]).
mod props;
pub use props::Method;
pub use props::{Autocomplete, AutofillField};
pub use props::{CheckboxKind, InputType, Method};
pub use props::CheckboxKind;
mod component;
pub use component::Form;
@ -10,9 +11,6 @@ pub use component::Form;
mod fieldset;
pub use fieldset::Fieldset;
mod input;
pub use input::Input;
mod checkbox;
pub use checkbox::Checkbox;
@ -21,3 +19,5 @@ pub mod check;
pub mod radio;
pub mod select;
pub mod input;