This commit is contained in:
luoxiao 2024-04-27 20:58:49 +08:00
parent 7473a0be12
commit 9706360bad
5 changed files with 24 additions and 6 deletions

View file

@ -1,3 +1,21 @@
## [0.3.1](https://github.com/thaw-ui/thaw/compare/v0.3.0...v0.3.1) (2024-04-27)
### Features
* Adds `BackTop` component.
* Adds `Anchor` component.
* Adds `MultiSelect` component.
* thaw_utils: Adds get_scroll_parent function.
* thaw_utils: Adds add_event_listener_with_bool function.
* thaw_utils: Adds throttle function.
### Bug Fixs
* `Button` font size styling.
* `TimePicker` scroll problem.
* `Icon` inline-block.
* `Select` height problem.
## [0.3.0](https://github.com/thaw-ui/thaw/compare/v0.3.0-beta...v0.3.0) (2024-04-14)
### Features

View file

@ -4,6 +4,6 @@ members = ["thaw", "thaw_components", "thaw_utils", "demo", "demo_markdown"]
exclude = ["examples"]
[workspace.dependencies]
thaw = { version = "0.3.0", path = "./thaw" }
thaw_components = { version = "0.1.0", path = "./thaw_components" }
thaw_utils = { version = "0.0.2", path = "./thaw_utils" }
thaw = { version = "0.3.1", path = "./thaw" }
thaw_components = { version = "0.1.1", path = "./thaw_components" }
thaw_utils = { version = "0.0.3", path = "./thaw_utils" }

View file

@ -1,6 +1,6 @@
[package]
name = "thaw"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
keywords = ["web", "leptos", "ui", "thaw", "component"]
readme = "../README.md"

View file

@ -1,6 +1,6 @@
[package]
name = "thaw_components"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
keywords = ["leptos", "thaw", "components"]
readme = "../README.md"

View file

@ -1,6 +1,6 @@
[package]
name = "thaw_utils"
version = "0.0.2"
version = "0.0.3"
edition = "2021"
keywords = ["leptos", "thaw", "utils"]
readme = "../README.md"