diff --git a/Cargo.toml b/Cargo.toml index 56212f9..e993f21 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -leptos = { version = "0.5.0", features = ["csr"] } +leptos = { version = "0.5.1", features = ["csr"] } web-sys = { version = "0.3.62", features = ["DomRect"] } wasm-bindgen = "0.2.85" icondata = { version = "0.0.7", features = [ diff --git a/gh-pages/Cargo.toml b/gh-pages/Cargo.toml index 33ec338..e7164e6 100644 --- a/gh-pages/Cargo.toml +++ b/gh-pages/Cargo.toml @@ -6,13 +6,13 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -leptos = { version = "0.5.0", features = ["csr"] } +leptos = { version = "0.5.1", features = ["csr"] } melt-ui = { path = "../" } icondata = { version = "0.0.7", features = [ "AiCloseOutlined", "AiCheckOutlined", ] } -leptos_router = { version = "0.5.0", features = ["csr"] } +leptos_router = { version = "0.5.1", features = ["csr"] } regex = "1.8.2" leptos_devtools = "0.0.1" prisms = { git = "https://github.com/luoxiaozero/prisms" } diff --git a/gh-pages/src/pages/checkbox/mod.rs b/gh-pages/src/pages/checkbox/mod.rs index 0a232b9..ed56034 100644 --- a/gh-pages/src/pages/checkbox/mod.rs +++ b/gh-pages/src/pages/checkbox/mod.rs @@ -7,13 +7,13 @@ use prisms::highlight_str; #[component] pub fn CheckboxPage() -> impl IntoView { - let value = create_rw_signal(false); + let checked = create_rw_signal(false); let value = create_rw_signal(HashSet::new()); view! {