mirror of
https://github.com/adoyle0/thaw.git
synced 2025-01-22 22:09:22 -05:00
v0.3.1
This commit is contained in:
parent
7473a0be12
commit
9706360bad
5 changed files with 24 additions and 6 deletions
18
CHANGELOG.md
18
CHANGELOG.md
|
@ -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)
|
## [0.3.0](https://github.com/thaw-ui/thaw/compare/v0.3.0-beta...v0.3.0) (2024-04-14)
|
||||||
|
|
||||||
### 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.0", path = "./thaw" }
|
thaw = { version = "0.3.1", path = "./thaw" }
|
||||||
thaw_components = { version = "0.1.0", path = "./thaw_components" }
|
thaw_components = { version = "0.1.1", path = "./thaw_components" }
|
||||||
thaw_utils = { version = "0.0.2", path = "./thaw_utils" }
|
thaw_utils = { version = "0.0.3", path = "./thaw_utils" }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "thaw"
|
name = "thaw"
|
||||||
version = "0.3.0"
|
version = "0.3.1"
|
||||||
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.0"
|
version = "0.1.1"
|
||||||
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.2"
|
version = "0.0.3"
|
||||||
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