diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index c23e5b43..4ee7bec8 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -27,6 +27,7 @@ jobs:
toolchain: stable
target: wasm32-unknown-unknown
override: true
+ - uses: Swatinem/rust-cache@v2
- name: Install Trunk
uses: jetli/trunk-action@v0.4.0
with:
@@ -47,6 +48,7 @@ jobs:
toolchain: nightly
target: wasm32-unknown-unknown
override: true
+ - uses: Swatinem/rust-cache@v2
- name: Install Trunk
uses: jetli/trunk-action@v0.4.0
with:
@@ -67,14 +69,11 @@ jobs:
toolchain: stable
target: wasm32-unknown-unknown
override: true
- - name: Install Trunk
- uses: jetli/trunk-action@v0.4.0
- with:
- version: "latest"
+ - uses: Swatinem/rust-cache@v2
- name: Install Cargo BInstall
uses: cargo-bins/cargo-binstall@main
- name: Install Cargo Leptos
- run: cargo binstall cargo-leptos -y
+ run: cargo binstall cargo-leptos --locked --no-confirm
- name: Build
run: |
cd ./examples/ssr_axum
@@ -91,14 +90,11 @@ jobs:
toolchain: nightly
target: wasm32-unknown-unknown
override: true
- - name: Install Trunk
- uses: jetli/trunk-action@v0.4.0
- with:
- version: "latest"
+ - uses: Swatinem/rust-cache@v2
- name: Install Cargo BInstall
uses: cargo-bins/cargo-binstall@main
- name: Install Cargo Leptos
- run: cargo binstall cargo-leptos -y
+ run: cargo binstall cargo-leptos --locked --no-confirm
- name: Build
run: |
cd ./examples/ssr_axum
@@ -116,6 +112,7 @@ jobs:
toolchain: stable
target: wasm32-unknown-unknown
override: true
+ - uses: Swatinem/rust-cache@v2
- name: cargo test
run: |
cd thaw_utils
diff --git a/.github/workflows/demo.yml b/.github/workflows/demo.yml
index 337750ac..2826fd5a 100644
--- a/.github/workflows/demo.yml
+++ b/.github/workflows/demo.yml
@@ -31,6 +31,7 @@ jobs:
toolchain: stable
target: wasm32-unknown-unknown
override: true
+ - uses: Swatinem/rust-cache@v2
- name: Install Trunk
uses: jetli/trunk-action@v0.4.0
with:
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3a321829..17385864 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,19 @@
+## [0.5.0-alpha](https://github.com/thaw-ui/thaw/compare/v0.4.5...v0.5.0-alpha) (2025-03-30)
+
+### Features
+
+* Adds `Tree` component, closes [#392](https://github.com/thaw-ui/thaw/pull/392).
+* `Menu` is changed to a generic component, closes [#390](https://github.com/thaw-ui/thaw/pull/390).
+
+### Breaking Changes
+
+* Update leptos to v0.8.0-beta.
+* Theme is changed to use getset.
+* RatingColor adds Marigold prop.
+* InputType adds Number prop.
+* The icon prop of `Icon` is changed to icondata_core::Icon type.
+* The value prop of `MenuItem` is changed to generic type.
+
## [0.4.5](https://github.com/thaw-ui/thaw/compare/v0.4.4...v0.4.5) (2025-03-30)
### Features
@@ -69,4 +85,4 @@
### 0.1.0-beta2 - 0.4.0-rc (2023-11-14 - 2024-12-09)
-See [0.1 - 0.4 changelog](./changelog/CHANGELOG-0.1-0.4.md)
+See [0.1 - 0.4 changelog](./changelogs/CHANGELOG-0.1-0.4.md)
diff --git a/Cargo.toml b/Cargo.toml
index d3ef9b01..cd9f7c57 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -14,12 +14,16 @@ exclude = ["examples"]
rust-version = "1.79"
[workspace.dependencies]
-thaw = { version = "0.4.5", path = "./thaw" }
-thaw_components = { version = "0.3.1", path = "./thaw_components" }
+thaw = { version = "0.5.0-alpha", path = "./thaw" }
+thaw_components = { version = "0.4.0-alpha", path = "./thaw_components" }
thaw_macro = { version = "0.1.0", path = "./thaw_macro" }
-thaw_utils = { version = "0.1.1", path = "./thaw_utils" }
+thaw_utils = { version = "0.2.0-alpha", path = "./thaw_utils" }
-leptos = { version = "0.7.7" }
-leptos_meta = { version = "0.7.7" }
-leptos_router = { version = "0.7.7" }
-reactive_stores = { version = "0.1.7" }
+# leptos
+leptos = { version = "0.8.0-beta" }
+leptos_meta = { version = "0.8.0-beta" }
+leptos_router = { version = "0.8.0-beta" }
+reactive_stores = { version = "0.2.0-beta" }
+
+# web
+wasm-bindgen = { version = "0.2.100" }
\ No newline at end of file
diff --git a/demo/Cargo.toml b/demo/Cargo.toml
index 514f0d0a..6b6d22c2 100644
--- a/demo/Cargo.toml
+++ b/demo/Cargo.toml
@@ -26,7 +26,7 @@ uuid = { version = "1.10.0", features = ["v4", "js"] }
console_error_panic_hook = "0.1.7"
console_log = "1"
log = "0.4"
-js-sys = "0.3.70"
+js-sys = "0.3.74"
gloo-net = { version = "0.6.0" }
[features]
diff --git a/demo/index.html b/demo/index.html
index a1879b17..928ed3e3 100644
--- a/demo/index.html
+++ b/demo/index.html
@@ -10,6 +10,7 @@
href="/favicon.ico"
type="image/x-icon"
/>
+
impl IntoView {
+
@@ -120,6 +121,7 @@ fn TheRouter() -> impl IntoView {
+
diff --git a/demo/src/components/demo.rs b/demo/src/components/demo.rs
index 0f57eee5..f4864af7 100644
--- a/demo/src/components/demo.rs
+++ b/demo/src/components/demo.rs
@@ -20,7 +20,7 @@ pub fn Demo(
let css_vars = Memo::new(move |_| {
let mut css_vars = String::new();
theme.with(|theme| {
- if theme.color.color_scheme == "dark" {
+ if theme.color.color_scheme() == "dark" {
css_vars.push_str("--demo-border-color: #383f52;");
css_vars.push_str("--demo-background-color: #242832;");
} else {
@@ -32,7 +32,12 @@ pub fn Demo(
});
let code_class = Memo::new(move |_| {
- theme.with(|theme| format!("demo-demo__code color-scheme--{}", theme.color.color_scheme))
+ theme.with(|theme| {
+ format!(
+ "demo-demo__code color-scheme--{}",
+ theme.color.color_scheme()
+ )
+ })
});
let is_show_code = RwSignal::new(children.is_none());
diff --git a/demo/src/components/site_header.rs b/demo/src/components/site_header.rs
index f0274a44..8408a781 100644
--- a/demo/src/components/site_header.rs
+++ b/demo/src/components/site_header.rs
@@ -5,6 +5,14 @@ use leptos_router::hooks::use_navigate;
// use leptos_use::{storage::use_local_storage, utils::FromToStringCodec};
use thaw::*;
+#[derive(Clone)]
+enum HeaderAction {
+ ChangeTheme,
+ Github,
+ Discord,
+ Navigate(&'static str),
+}
+
#[component]
pub fn SiteHeader() -> impl IntoView {
let navigate = use_navigate();
@@ -172,19 +180,18 @@ pub fn SiteHeader() -> impl IntoView {