diff --git a/demo/src/pages/auto_complete/mod.rs b/demo/src/pages/auto_complete/mod.rs
index 444169c..f0bdd56 100644
--- a/demo/src/pages/auto_complete/mod.rs
+++ b/demo/src/pages/auto_complete/mod.rs
@@ -173,6 +173,12 @@ pub fn AutoCompletePage() -> impl IntoView {
"Default::default()" |
"Additional classes for the autocomplete element." |
+
+ "attr:" |
+ "Vec<(&'static str, Attribute)>" |
+ "Default::default()" |
+ "The dom attrs of the input element inside the component." |
+
"AutoCompleteOption Properties"
diff --git a/demo/src/pages/date_picker/mod.rs b/demo/src/pages/date_picker/mod.rs
index 086bb5b..5d74a0c 100644
--- a/demo/src/pages/date_picker/mod.rs
+++ b/demo/src/pages/date_picker/mod.rs
@@ -57,6 +57,12 @@ pub fn DatePickerPage() -> impl IntoView {
"Default::default()" |
"Addtional classes for the date picker element." |
+
+ "attr:" |
+ "Vec<(&'static str, Attribute)>" |
+ "Default::default()" |
+ "The dom attrs of the input element inside the component." |
+
diff --git a/demo/src/pages/input/mod.rs b/demo/src/pages/input/mod.rs
index e3805f6..c7dca67 100644
--- a/demo/src/pages/input/mod.rs
+++ b/demo/src/pages/input/mod.rs
@@ -104,6 +104,26 @@ pub fn InputPage() -> impl IntoView {
+ "Input attrs"
+
+
+
+
+
+
+
+ {highlight_str!(
+ r#"
+ view! {
+
+
+ }
+ "#,
+ "rust"
+ )}
+
+
+
"Prefix & Suffix"
@@ -219,6 +239,12 @@ pub fn InputPage() -> impl IntoView {
"Default::default()" |
"Addtional classes for the input element." |
+
+ "attr:" |
+ "Vec<(&'static str, Attribute)>" |
+ "Default::default()" |
+ "The dom attrs of the input element inside the component." |
+
"Input Slots"
diff --git a/demo/src/pages/input_number/mod.rs b/demo/src/pages/input_number/mod.rs
index db15093..008db8c 100644
--- a/demo/src/pages/input_number/mod.rs
+++ b/demo/src/pages/input_number/mod.rs
@@ -114,6 +114,12 @@ pub fn InputNumberPage() -> impl IntoView {
"Default::default()" |
"Addtional classes for the input element." |
+
+ "attr:" |
+ "Vec<(&'static str, Attribute)>" |
+ "Default::default()" |
+ "The dom attrs of the input element inside the component." |
+
"T impl"
diff --git a/demo_markdown/docs/time_picker/mod.md b/demo_markdown/docs/time_picker/mod.md
index a71dd93..7dc60bd 100644
--- a/demo_markdown/docs/time_picker/mod.md
+++ b/demo_markdown/docs/time_picker/mod.md
@@ -12,7 +12,8 @@ view! {
## TimePicker Props
-| Name | Type | Default | Description |
-| ----- | ----------------------------- | -------------------- | ---------------------------------------------- |
-| class | `MaybeSignal` | `Default::default()` | Addtional classes for the time picker element. |
-| value | `RwSignal