mirror of
https://github.com/adoyle0/thaw.git
synced 2025-01-22 22:09:22 -05:00
v0.4.0-beta2
This commit is contained in:
parent
b52f09baa9
commit
d189e89f0e
6 changed files with 30 additions and 8 deletions
22
CHANGELOG.md
22
CHANGELOG.md
|
@ -1,3 +1,25 @@
|
||||||
|
## [0.4.0-beta2](https://github.com/thaw-ui/thaw/compare/v0.3.2...v0.3.3) (2024-07-15)
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* Font add ui-* and system-ui.
|
||||||
|
* `Calendar` adds children prop.
|
||||||
|
* `Button` adds button_type prop.
|
||||||
|
* Adds `Field` component.
|
||||||
|
* Adss `Link` component.
|
||||||
|
* Adss `Select` component.
|
||||||
|
|
||||||
|
### Bug Fixs
|
||||||
|
|
||||||
|
* Scrollbar nested update value.
|
||||||
|
* The position is messed up when switching DatePicker panels.
|
||||||
|
* Clicking the ExpandIcon of the Combobox does not close the popup window.
|
||||||
|
|
||||||
|
### Breaking Changes
|
||||||
|
|
||||||
|
* Change the type of dir in ConfigProvider.
|
||||||
|
* Update leptos to v0.7.0-beta4.
|
||||||
|
|
||||||
## [0.3.3](https://github.com/thaw-ui/thaw/compare/v0.3.2...v0.3.3) (2024-07-15)
|
## [0.3.3](https://github.com/thaw-ui/thaw/compare/v0.3.2...v0.3.3) (2024-07-15)
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
|
|
|
@ -11,10 +11,10 @@ members = [
|
||||||
exclude = ["examples"]
|
exclude = ["examples"]
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
thaw = { version = "0.4.0-beta", path = "./thaw" }
|
thaw = { version = "0.4.0-beta2", path = "./thaw" }
|
||||||
thaw_components = { version = "0.2.0-beta", path = "./thaw_components" }
|
thaw_components = { version = "0.2.0-beta2", path = "./thaw_components" }
|
||||||
thaw_macro = { version = "0.1.0-beta", path = "./thaw_macro" }
|
thaw_macro = { version = "0.1.0-beta2", path = "./thaw_macro" }
|
||||||
thaw_utils = { version = "0.1.0-beta", path = "./thaw_utils" }
|
thaw_utils = { version = "0.1.0-beta2", path = "./thaw_utils" }
|
||||||
|
|
||||||
leptos = { version = "0.7.0-beta4" }
|
leptos = { version = "0.7.0-beta4" }
|
||||||
leptos_meta = { version = "0.7.0-beta4" }
|
leptos_meta = { version = "0.7.0-beta4" }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "thaw"
|
name = "thaw"
|
||||||
version = "0.4.0-beta"
|
version = "0.4.0-beta2"
|
||||||
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.2.0-beta"
|
version = "0.2.0-beta2"
|
||||||
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_macro"
|
name = "thaw_macro"
|
||||||
version = "0.1.0-beta"
|
version = "0.1.0-beta2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
keywords = ["leptos", "thaw", "macro"]
|
keywords = ["leptos", "thaw", "macro"]
|
||||||
readme = "../README.md"
|
readme = "../README.md"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "thaw_utils"
|
name = "thaw_utils"
|
||||||
version = "0.1.0-beta"
|
version = "0.1.0-beta2"
|
||||||
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