v0.3.0-alpha

This commit is contained in:
luoxiao 2024-04-06 00:42:42 +08:00
parent 5a710f724b
commit 70b243ae0d
5 changed files with 22 additions and 6 deletions

View file

@ -1,3 +1,19 @@
## [0.3.0-alpha](https://github.com/thaw-ui/thaw/compare/v0.2.6...v0.3.0-alpha) (2024-04-05)
### Breaking Changes
* `Checkbox` label does not display default value.
* `Modal` adds close_on_esc prop.
* Add min/max props into `InputNumber`.
* `Layout` scrollbar. (When class or style is used, the original style may be confused. You can use content_class or content_style instead)
### Features
* Adds `Scrollbar` component.
* `TimePicker` scrollbar.
* `Layout` adds content_class and content_style prop.
* Update leptos to v0.6.10.
## [0.2.6](https://github.com/thaw-ui/thaw/compare/v0.2.5...v0.2.6) (2024-03-31)
### Features

View file

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

View file

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

View file

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

View file

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