mirror of
https://github.com/adoyle0/thaw.git
synced 2025-01-22 14:09:21 -05:00
v0.4.0-beta3
This commit is contained in:
parent
32693e8244
commit
2382b8f779
6 changed files with 29 additions and 8 deletions
21
CHANGELOG.md
21
CHANGELOG.md
|
@ -1,3 +1,24 @@
|
|||
## [0.4.0-beta3](https://github.com/thaw-ui/thaw/compare/v0.4.0-beta2...v0.4.0-beta3) (2024-09-13)
|
||||
|
||||
### Features
|
||||
|
||||
* Adss `Flex` component.
|
||||
* Adss `TagPicker` component.
|
||||
* `Spinner` adds children prop.
|
||||
|
||||
### Bug Fixs
|
||||
|
||||
* `AnchorLink` outline.
|
||||
* `SliderLabel` position.
|
||||
* `NavDrawer` selected category value error.
|
||||
* Adjust the z-index of the Binder popup.
|
||||
* Binder component display position.
|
||||
|
||||
### Breaking Changes
|
||||
|
||||
* Change Tag's closable to dismissible.
|
||||
* Update leptos to v0.7.0-beta5.
|
||||
|
||||
## [0.3.4](https://github.com/thaw-ui/thaw/compare/v0.3.3...v0.3.4) (2024-09-11)
|
||||
|
||||
### Features
|
||||
|
|
|
@ -11,10 +11,10 @@ members = [
|
|||
exclude = ["examples"]
|
||||
|
||||
[workspace.dependencies]
|
||||
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" }
|
||||
thaw = { version = "0.4.0-beta3", path = "./thaw" }
|
||||
thaw_components = { version = "0.2.0-beta3", path = "./thaw_components" }
|
||||
thaw_macro = { version = "0.1.0-beta3", path = "./thaw_macro" }
|
||||
thaw_utils = { version = "0.1.0-beta3", path = "./thaw_utils" }
|
||||
|
||||
leptos = { version = "0.7.0-beta5" }
|
||||
leptos_meta = { version = "0.7.0-beta5" }
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "thaw"
|
||||
version = "0.4.0-beta2"
|
||||
version = "0.4.0-beta3"
|
||||
edition = "2021"
|
||||
keywords = ["web", "leptos", "ui", "thaw", "component"]
|
||||
readme = "../README.md"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "thaw_components"
|
||||
version = "0.2.0-beta2"
|
||||
version = "0.2.0-beta3"
|
||||
edition = "2021"
|
||||
keywords = ["leptos", "thaw", "components"]
|
||||
readme = "../README.md"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "thaw_macro"
|
||||
version = "0.1.0-beta2"
|
||||
version = "0.1.0-beta3"
|
||||
edition = "2021"
|
||||
keywords = ["leptos", "thaw", "macro"]
|
||||
readme = "../README.md"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "thaw_utils"
|
||||
version = "0.1.0-beta2"
|
||||
version = "0.1.0-beta3"
|
||||
edition = "2021"
|
||||
keywords = ["leptos", "thaw", "utils"]
|
||||
readme = "../README.md"
|
||||
|
|
Loading…
Add table
Reference in a new issue