diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c80097..fe0fd46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index f8cf9ce..2978e12 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" } diff --git a/thaw/Cargo.toml b/thaw/Cargo.toml index afab3ce..f9f2565 100644 --- a/thaw/Cargo.toml +++ b/thaw/Cargo.toml @@ -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" diff --git a/thaw_components/Cargo.toml b/thaw_components/Cargo.toml index 4429fe8..39b9a2c 100644 --- a/thaw_components/Cargo.toml +++ b/thaw_components/Cargo.toml @@ -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" diff --git a/thaw_utils/Cargo.toml b/thaw_utils/Cargo.toml index b61165b..27dc562 100644 --- a/thaw_utils/Cargo.toml +++ b/thaw_utils/Cargo.toml @@ -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"