Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add border radius to public API #1972

Merged
merged 3 commits into from
Jul 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,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)
- 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)
- `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)

Many thanks to...
Expand All @@ -99,6 +100,7 @@ Many thanks to...
- @tarkah
- @thunderstorm010
- @wash2
- @wiiznokes

## [0.9.0] - 2023-04-13
### Added
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,8 @@
pub use crate::core::event;
pub use crate::core::gradient;
pub use crate::core::{
color, Alignment, Background, Color, ContentFit, Degrees, Gradient, Length,
Padding, Pixels, Point, Radians, Rectangle, Size, Vector,
color, Alignment, Background, BorderRadius, Color, ContentFit, Degrees,
Gradient, Length, Padding, Pixels, Point, Radians, Rectangle, Size, Vector,
};
pub use crate::runtime::Command;

Expand Down Expand Up @@ -273,12 +273,12 @@
pub use iced_widget::*;

// We hide the re-exported modules by `iced_widget`
mod core {}

Check warning on line 276 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (ubuntu-latest, beta)

private item shadows public glob re-export

Check warning on line 276 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (ubuntu-latest, beta)

private item shadows public glob re-export

Check warning on line 276 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (windows-latest, beta)

private item shadows public glob re-export

Check warning on line 276 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (windows-latest, beta)

private item shadows public glob re-export

Check warning on line 276 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (macOS-latest, beta)

private item shadows public glob re-export

Check warning on line 276 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (macOS-latest, beta)

private item shadows public glob re-export
mod graphics {}

Check warning on line 277 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (ubuntu-latest, beta)

private item shadows public glob re-export

Check warning on line 277 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (ubuntu-latest, beta)

private item shadows public glob re-export

Check warning on line 277 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (windows-latest, beta)

private item shadows public glob re-export

Check warning on line 277 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (windows-latest, beta)

private item shadows public glob re-export

Check warning on line 277 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (macOS-latest, beta)

private item shadows public glob re-export

Check warning on line 277 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (macOS-latest, beta)

private item shadows public glob re-export
mod native {}
mod renderer {}

Check warning on line 279 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (ubuntu-latest, beta)

private item shadows public glob re-export

Check warning on line 279 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (ubuntu-latest, beta)

private item shadows public glob re-export

Check warning on line 279 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (windows-latest, beta)

private item shadows public glob re-export

Check warning on line 279 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (windows-latest, beta)

private item shadows public glob re-export

Check warning on line 279 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (macOS-latest, beta)

private item shadows public glob re-export

Check warning on line 279 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (macOS-latest, beta)

private item shadows public glob re-export
mod style {}

Check warning on line 280 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (ubuntu-latest, beta)

private item shadows public glob re-export

Check warning on line 280 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (ubuntu-latest, beta)

private item shadows public glob re-export

Check warning on line 280 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (windows-latest, beta)

private item shadows public glob re-export

Check warning on line 280 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (windows-latest, beta)

private item shadows public glob re-export

Check warning on line 280 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (macOS-latest, beta)

private item shadows public glob re-export

Check warning on line 280 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (macOS-latest, beta)

private item shadows public glob re-export
mod runtime {}

Check warning on line 281 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (ubuntu-latest, beta)

private item shadows public glob re-export

Check warning on line 281 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (ubuntu-latest, beta)

private item shadows public glob re-export

Check warning on line 281 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (windows-latest, beta)

private item shadows public glob re-export

Check warning on line 281 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (windows-latest, beta)

private item shadows public glob re-export

Check warning on line 281 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (macOS-latest, beta)

private item shadows public glob re-export

Check warning on line 281 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (macOS-latest, beta)

private item shadows public glob re-export
}

pub use application::Application;
Expand Down
Loading