Merge pull request #1972 from wiiznokes/dev

add border radius to public API
This commit is contained in:
Héctor Ramón 2023-07-27 19:07:06 +02:00 committed by GitHub
commit 78dc341ea8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View file

@ -74,6 +74,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Quad rendering including border only inside of the bounds. [#1843](https://github.com/iced-rs/iced/pull/1843) - Quad rendering including border only inside of the bounds. [#1843](https://github.com/iced-rs/iced/pull/1843)
- Redraw requests not being forwarded for `Component` overlays. [#1949](https://github.com/iced-rs/iced/pull/1949) - Redraw requests not being forwarded for `Component` overlays. [#1949](https://github.com/iced-rs/iced/pull/1949)
- Blinking input cursor when window loses focus. [#1955](https://github.com/iced-rs/iced/pull/1955) - Blinking input cursor when window loses focus. [#1955](https://github.com/iced-rs/iced/pull/1955)
- `BorderRadius` not exposed in root crate. [#1972](https://github.com/iced-rs/iced/pull/1972)
- Outdated `ROADMAP`. [#1958](https://github.com/iced-rs/iced/pull/1958) - Outdated `ROADMAP`. [#1958](https://github.com/iced-rs/iced/pull/1958)
Many thanks to... Many thanks to...
@ -100,6 +101,7 @@ Many thanks to...
- @tarkah - @tarkah
- @thunderstorm010 - @thunderstorm010
- @wash2 - @wash2
- @wiiznokes
## [0.9.0] - 2023-04-13 ## [0.9.0] - 2023-04-13
### Added ### Added

View file

@ -190,8 +190,8 @@ pub use crate::core::alignment;
pub use crate::core::event; pub use crate::core::event;
pub use crate::core::gradient; pub use crate::core::gradient;
pub use crate::core::{ pub use crate::core::{
color, Alignment, Background, Color, ContentFit, Degrees, Gradient, Length, color, Alignment, Background, BorderRadius, Color, ContentFit, Degrees,
Padding, Pixels, Point, Radians, Rectangle, Size, Vector, Gradient, Length, Padding, Pixels, Point, Radians, Rectangle, Size, Vector,
}; };
pub use crate::runtime::Command; pub use crate::runtime::Command;