mirror of
https://github.com/adoyle0/thaw.git
synced 2025-03-13 05:59:49 -04:00
v0.3.0-beta
This commit is contained in:
parent
b87e2e8979
commit
4fe3dfd23f
4 changed files with 22 additions and 4 deletions
18
CHANGELOG.md
18
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)
|
## [0.3.0-alpha](https://github.com/thaw-ui/thaw/compare/v0.2.6...v0.3.0-alpha) (2024-04-05)
|
||||||
|
|
||||||
### Breaking Changes
|
### Breaking Changes
|
||||||
|
|
|
@ -4,6 +4,6 @@ members = ["thaw", "thaw_components", "thaw_utils", "demo", "demo_markdown"]
|
||||||
exclude = ["examples"]
|
exclude = ["examples"]
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
thaw = { version = "0.3.0-alpha", path = "./thaw" }
|
thaw = { version = "0.3.0-beta", path = "./thaw" }
|
||||||
thaw_components = { version = "0.0.3", path = "./thaw_components" }
|
thaw_components = { version = "0.1.0", path = "./thaw_components" }
|
||||||
thaw_utils = { version = "0.0.2", path = "./thaw_utils" }
|
thaw_utils = { version = "0.0.2", path = "./thaw_utils" }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "thaw"
|
name = "thaw"
|
||||||
version = "0.3.0-alpha"
|
version = "0.3.0-beta"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
keywords = ["web", "leptos", "ui", "thaw", "component"]
|
keywords = ["web", "leptos", "ui", "thaw", "component"]
|
||||||
readme = "../README.md"
|
readme = "../README.md"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "thaw_components"
|
name = "thaw_components"
|
||||||
version = "0.0.3"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
keywords = ["leptos", "thaw", "components"]
|
keywords = ["leptos", "thaw", "components"]
|
||||||
readme = "../README.md"
|
readme = "../README.md"
|
||||||
|
|
Loading…
Add table
Reference in a new issue