Skip to content

Commit 4fe3dfd

Browse files
committed
v0.3.0-beta
1 parent b87e2e8 commit 4fe3dfd

File tree

4 files changed

+22
-4
lines changed

4 files changed

+22
-4
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## [0.3.0-beta](https://github.com/thaw-ui/thaw/compare/v0.3.0-alpha...v0.3.0-beta) (2024-04-10)
2+
3+
### Breaking Changes
4+
5+
* `Drawer` adds close_on_esc and mask_closeable prop.
6+
* `Drawer` scrollbar.
7+
* `Modal` scrollbar.
8+
* `Teleport` related component will lazy mount. (Defer rendering of the DOM until it is first displayed)
9+
10+
### Features
11+
12+
* thaw_components: Adds `FocusTrap` component.
13+
* thaw_components: `Teleport` adds immediate prop.
14+
15+
### Bug Fixs
16+
17+
* `Modal` esc close problem.
18+
119
## [0.3.0-alpha](https://github.com/thaw-ui/thaw/compare/v0.2.6...v0.3.0-alpha) (2024-04-05)
220

321
### Breaking Changes

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ members = ["thaw", "thaw_components", "thaw_utils", "demo", "demo_markdown"]
44
exclude = ["examples"]
55

66
[workspace.dependencies]
7-
thaw = { version = "0.3.0-alpha", path = "./thaw" }
8-
thaw_components = { version = "0.0.3", path = "./thaw_components" }
7+
thaw = { version = "0.3.0-beta", path = "./thaw" }
8+
thaw_components = { version = "0.1.0", path = "./thaw_components" }
99
thaw_utils = { version = "0.0.2", path = "./thaw_utils" }

thaw/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thaw"
3-
version = "0.3.0-alpha"
3+
version = "0.3.0-beta"
44
edition = "2021"
55
keywords = ["web", "leptos", "ui", "thaw", "component"]
66
readme = "../README.md"

thaw_components/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thaw_components"
3-
version = "0.0.3"
3+
version = "0.1.0"
44
edition = "2021"
55
keywords = ["leptos", "thaw", "components"]
66
readme = "../README.md"

0 commit comments

Comments
 (0)