From 4fe3dfd23fef63ee7c6b908bd247b931489d6736 Mon Sep 17 00:00:00 2001 From: luoxiao Date: Wed, 10 Apr 2024 23:14:14 +0800 Subject: [PATCH] v0.3.0-beta --- CHANGELOG.md | 18 ++++++++++++++++++ Cargo.toml | 4 ++-- thaw/Cargo.toml | 2 +- thaw_components/Cargo.toml | 2 +- 4 files changed, 22 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fe0fd46..e4c7472 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +## [0.3.0-beta](https://github.com/thaw-ui/thaw/compare/v0.3.0-alpha...v0.3.0-beta) (2024-04-10) + +### Breaking Changes + +* `Drawer` adds close_on_esc and mask_closeable prop. +* `Drawer` scrollbar. +* `Modal` scrollbar. +* `Teleport` related component will lazy mount. (Defer rendering of the DOM until it is first displayed) + +### Features + +* thaw_components: Adds `FocusTrap` component. +* thaw_components: `Teleport` adds immediate prop. + +### Bug Fixs + +* `Modal` esc close problem. + ## [0.3.0-alpha](https://github.com/thaw-ui/thaw/compare/v0.2.6...v0.3.0-alpha) (2024-04-05) ### Breaking Changes diff --git a/Cargo.toml b/Cargo.toml index 2978e12..e421122 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,6 +4,6 @@ members = ["thaw", "thaw_components", "thaw_utils", "demo", "demo_markdown"] exclude = ["examples"] [workspace.dependencies] -thaw = { version = "0.3.0-alpha", path = "./thaw" } -thaw_components = { version = "0.0.3", path = "./thaw_components" } +thaw = { version = "0.3.0-beta", path = "./thaw" } +thaw_components = { version = "0.1.0", path = "./thaw_components" } thaw_utils = { version = "0.0.2", path = "./thaw_utils" } diff --git a/thaw/Cargo.toml b/thaw/Cargo.toml index f9f2565..b9d4e5e 100644 --- a/thaw/Cargo.toml +++ b/thaw/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thaw" -version = "0.3.0-alpha" +version = "0.3.0-beta" edition = "2021" keywords = ["web", "leptos", "ui", "thaw", "component"] readme = "../README.md" diff --git a/thaw_components/Cargo.toml b/thaw_components/Cargo.toml index 5d4a1ba..bc84006 100644 --- a/thaw_components/Cargo.toml +++ b/thaw_components/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thaw_components" -version = "0.0.3" +version = "0.1.0" edition = "2021" keywords = ["leptos", "thaw", "components"] readme = "../README.md"