v0.3.0-beta

This commit is contained in:
luoxiao 2024-04-10 23:14:14 +08:00
parent b87e2e8979
commit 4fe3dfd23f
4 changed files with 22 additions and 4 deletions

View file

@ -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

View file

@ -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" }

View file

@ -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"

View file

@ -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"