diff --git a/Cargo.toml b/Cargo.toml index 076c499..8a5e3ce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bootstrap-rs" -version = "0.2.7" +version = "0.2.8" authors = ["Thomas Gideon "] edition = "2018" diff --git a/src/input/mod.rs b/src/input/mod.rs index b80627b..b392da5 100644 --- a/src/input/mod.rs +++ b/src/input/mod.rs @@ -12,6 +12,7 @@ use yew::prelude::*; pub enum InputType { Text, Date, + DateTime, Checkbox, Color, } @@ -21,6 +22,7 @@ impl Display for InputType { match self { Self::Text => write!(f, "text"), Self::Date => write!(f, "date"), + Self::DateTime => write!(f, "datetime-local"), Self::Checkbox => write!(f, "checkbox"), Self::Color => write!(f, "color"), }