From d189e89f0e7f9bd40f2767b44a42d985c20ea25c Mon Sep 17 00:00:00 2001 From: luoxiao Date: Mon, 2 Sep 2024 20:42:32 +0800 Subject: [PATCH] v0.4.0-beta2 --- CHANGELOG.md | 22 ++++++++++++++++++++++ Cargo.toml | 8 ++++---- thaw/Cargo.toml | 2 +- thaw_components/Cargo.toml | 2 +- thaw_macro/Cargo.toml | 2 +- thaw_utils/Cargo.toml | 2 +- 6 files changed, 30 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 329bc97..7645a41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,25 @@ +## [0.4.0-beta2](https://github.com/thaw-ui/thaw/compare/v0.3.2...v0.3.3) (2024-07-15) + +### Features + +* Font add ui-* and system-ui. +* `Calendar` adds children prop. +* `Button` adds button_type prop. +* Adds `Field` component. +* Adss `Link` component. +* Adss `Select` component. + +### Bug Fixs + +* Scrollbar nested update value. +* The position is messed up when switching DatePicker panels. +* Clicking the ExpandIcon of the Combobox does not close the popup window. + +### Breaking Changes + +* Change the type of dir in ConfigProvider. +* Update leptos to v0.7.0-beta4. + ## [0.3.3](https://github.com/thaw-ui/thaw/compare/v0.3.2...v0.3.3) (2024-07-15) ### Features diff --git a/Cargo.toml b/Cargo.toml index 1b73c6f..5da903e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,10 +11,10 @@ members = [ exclude = ["examples"] [workspace.dependencies] -thaw = { version = "0.4.0-beta", path = "./thaw" } -thaw_components = { version = "0.2.0-beta", path = "./thaw_components" } -thaw_macro = { version = "0.1.0-beta", path = "./thaw_macro" } -thaw_utils = { version = "0.1.0-beta", path = "./thaw_utils" } +thaw = { version = "0.4.0-beta2", path = "./thaw" } +thaw_components = { version = "0.2.0-beta2", path = "./thaw_components" } +thaw_macro = { version = "0.1.0-beta2", path = "./thaw_macro" } +thaw_utils = { version = "0.1.0-beta2", path = "./thaw_utils" } leptos = { version = "0.7.0-beta4" } leptos_meta = { version = "0.7.0-beta4" } diff --git a/thaw/Cargo.toml b/thaw/Cargo.toml index cf4cba3..65d51af 100644 --- a/thaw/Cargo.toml +++ b/thaw/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thaw" -version = "0.4.0-beta" +version = "0.4.0-beta2" edition = "2021" keywords = ["web", "leptos", "ui", "thaw", "component"] readme = "../README.md" diff --git a/thaw_components/Cargo.toml b/thaw_components/Cargo.toml index 68b0c72..6e2797c 100644 --- a/thaw_components/Cargo.toml +++ b/thaw_components/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thaw_components" -version = "0.2.0-beta" +version = "0.2.0-beta2" edition = "2021" keywords = ["leptos", "thaw", "components"] readme = "../README.md" diff --git a/thaw_macro/Cargo.toml b/thaw_macro/Cargo.toml index ad75285..f844f79 100644 --- a/thaw_macro/Cargo.toml +++ b/thaw_macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thaw_macro" -version = "0.1.0-beta" +version = "0.1.0-beta2" edition = "2021" keywords = ["leptos", "thaw", "macro"] readme = "../README.md" diff --git a/thaw_utils/Cargo.toml b/thaw_utils/Cargo.toml index d34737e..2d0c7f2 100644 --- a/thaw_utils/Cargo.toml +++ b/thaw_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thaw_utils" -version = "0.1.0-beta" +version = "0.1.0-beta2" edition = "2021" keywords = ["leptos", "thaw", "utils"] readme = "../README.md"