mirror of
https://github.com/adoyle0/thaw.git
synced 2025-01-23 06:19:22 -05:00
v0.3.2
This commit is contained in:
parent
bf48bcca82
commit
5320793ca9
5 changed files with 19 additions and 6 deletions
13
CHANGELOG.md
13
CHANGELOG.md
|
@ -1,3 +1,16 @@
|
||||||
|
## [0.3.2](https://github.com/thaw-ui/thaw/compare/v0.3.1...v0.3.2) (2024-05-21)
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* `Switch` adds on_change prop, closes [#196](https://github.com/thaw-ui/thaw/pull/196).
|
||||||
|
|
||||||
|
### Bug Fixs
|
||||||
|
|
||||||
|
* `Image` object-fit, closes [#195](https://github.com/thaw-ui/thaw/pull/195).
|
||||||
|
* `Icon` missaligment in message fix, closes [#194](https://github.com/thaw-ui/thaw/pull/194).
|
||||||
|
* fix `Scrollbar` panic, closes [#193](https://github.com/thaw-ui/thaw/pull/193).
|
||||||
|
* interchange the icons of MessageVariant::Success and MessageVariant::Error, closes [#188](https://github.com/thaw-ui/thaw/pull/188).
|
||||||
|
|
||||||
## [0.3.1](https://github.com/thaw-ui/thaw/compare/v0.3.0...v0.3.1) (2024-04-27)
|
## [0.3.1](https://github.com/thaw-ui/thaw/compare/v0.3.0...v0.3.1) (2024-04-27)
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
|
|
|
@ -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.1", path = "./thaw" }
|
thaw = { version = "0.3.2", path = "./thaw" }
|
||||||
thaw_components = { version = "0.1.1", path = "./thaw_components" }
|
thaw_components = { version = "0.1.2", path = "./thaw_components" }
|
||||||
thaw_utils = { version = "0.0.3", path = "./thaw_utils" }
|
thaw_utils = { version = "0.0.4", path = "./thaw_utils" }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "thaw"
|
name = "thaw"
|
||||||
version = "0.3.1"
|
version = "0.3.2"
|
||||||
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.1.1"
|
version = "0.1.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
keywords = ["leptos", "thaw", "components"]
|
keywords = ["leptos", "thaw", "components"]
|
||||||
readme = "../README.md"
|
readme = "../README.md"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "thaw_utils"
|
name = "thaw_utils"
|
||||||
version = "0.0.3"
|
version = "0.0.4"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
keywords = ["leptos", "thaw", "utils"]
|
keywords = ["leptos", "thaw", "utils"]
|
||||||
readme = "../README.md"
|
readme = "../README.md"
|
||||||
|
|
Loading…
Add table
Reference in a new issue