Skip to content

Commit 70b243a

Browse files
committed
v0.3.0-alpha
1 parent 5a710f7 commit 70b243a

File tree

5 files changed

+22
-6
lines changed

5 files changed

+22
-6
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## [0.3.0-alpha](https://github.com/thaw-ui/thaw/compare/v0.2.6...v0.3.0-alpha) (2024-04-05)
2+
3+
### Breaking Changes
4+
5+
* `Checkbox` label does not display default value.
6+
* `Modal` adds close_on_esc prop.
7+
* Add min/max props into `InputNumber`.
8+
* `Layout` scrollbar. (When class or style is used, the original style may be confused. You can use content_class or content_style instead)
9+
10+
### Features
11+
12+
* Adds `Scrollbar` component.
13+
* `TimePicker` scrollbar.
14+
* `Layout` adds content_class and content_style prop.
15+
* Update leptos to v0.6.10.
16+
117
## [0.2.6](https://github.com/thaw-ui/thaw/compare/v0.2.5...v0.2.6) (2024-03-31)
218

319
### Features

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ members = ["thaw", "thaw_components", "thaw_utils", "demo", "demo_markdown"]
44
exclude = ["examples"]
55

66
[workspace.dependencies]
7-
thaw = { version = "0.2.6", path = "./thaw" }
8-
thaw_components = { version = "0.0.2", path = "./thaw_components" }
9-
thaw_utils = { version = "0.0.1", path = "./thaw_utils" }
7+
thaw = { version = "0.3.0-alpha", path = "./thaw" }
8+
thaw_components = { version = "0.0.3", path = "./thaw_components" }
9+
thaw_utils = { version = "0.0.2", path = "./thaw_utils" }

thaw/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thaw"
3-
version = "0.2.6"
3+
version = "0.3.0-alpha"
44
edition = "2021"
55
keywords = ["web", "leptos", "ui", "thaw", "component"]
66
readme = "../README.md"

thaw_components/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thaw_components"
3-
version = "0.0.2"
3+
version = "0.0.3"
44
edition = "2021"
55
keywords = ["leptos", "thaw", "components"]
66
readme = "../README.md"

thaw_utils/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thaw_utils"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
edition = "2021"
55
keywords = ["leptos", "thaw", "utils"]
66
readme = "../README.md"

0 commit comments

Comments
 (0)