Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-21 | Run `cargo fmt` | 1 | -1/+1 | ||
2025-02-04 | Take `Event` by reference in `Widget::update` | 1 | -2/+2 | ||
2024-12-02 | Run `cargo fmt` | 1 | -3/+1 | ||
2024-12-02 | Fix new `clippy` lints | 1 | -5/+5 | ||
2024-11-06 | Rename `Overlay::on_event` to `update` | 1 | -2/+2 | ||
2024-11-05 | Rename `Widget::on_event` to `update` | 1 | -2/+2 | ||
2024-11-05 | Replace `event::Status` in `Widget::on_event` with `Shell::capture_event` | 1 | -10/+8 | ||
2024-10-17 | Fix new elided lifetime lint in the `beta` toolchain | 1 | -1/+1 | ||
2024-10-04 | Fix `responsive`, `component`, and `lazy` always returning an `overlay` | 1 | -23/+34 | ||
2024-09-05 | Deprecate the `component` widget | 1 | -0/+1 | ||
2024-09-05 | Flag `lazy` feature types directly | 1 | -0/+1 | ||
Co-authored-by: JL710 <76447362+JL710@users.noreply.github.com> | |||||
2024-08-08 | Introduce `black_box` and `chain` in `widget::operation` | 1 | -1/+1 | ||
2024-06-14 | Replace `Command` with a new `Task` API with chain support | 1 | -1/+1 | ||
2024-04-01 | Use `rustc-hash` for most of our `HashMap` and `HashSet` instances | 1 | -7/+14 | ||
2024-02-01 | Remove `position` from `overlay::Element` | 1 | -17/+6 | ||
2024-01-21 | Convert `Renderer::Theme` to generic `Widget` type | 1 | -32/+43 | ||
2024-01-10 | Replace `width` and `height` with `Widget::size` | 1 | -6/+2 | ||
2024-01-10 | Introduce `Widget::size_hint` and fix further layout inconsistencies | 1 | -0/+7 | ||
2023-11-21 | Fix `Overlay` composition | 1 | -2/+3 | ||
Translations were not easily composable. | |||||
2023-09-20 | Fix `clippy::semicolon_if_nothing_returned` | 1 | -3/+3 | ||
2023-09-01 | Fix `Widget::layout` for `Lazy` | 1 | -1/+3 | ||
2023-08-30 | Make `widget::Tree` mutable in `Widget::layout` | 1 | -2/+2 | ||
2023-08-30 | Implement explicit text caching in the widget state tree | 1 | -1/+2 | ||
2023-07-15 | Add viewport to Widget::on_event | 1 | -0/+2 | ||
2023-06-21 | Update `ouroboros` dependency | 1 | -5/+1 | ||
2023-06-14 | Use nested for lazy widgets | 1 | -15/+18 | ||
2023-06-14 | Introduce internal `overlay::Nested` for `UserInterface` | 1 | -2/+7 | ||
2023-06-08 | Implement basic cursor availability | 1 | -24/+12 | ||
2023-05-11 | Write missing documentation in `iced_widget` | 1 | -0/+3 | ||
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 1 | -17/+30 | ||
2023-02-10 | fix: lazy widgets overlay is_over | 1 | -0/+7 | ||
2023-01-30 | Fix layout translation in `overlay::Group` | 1 | -2/+2 | ||
This bug produced improper positioning of overlays of elements inside a `Scrollable`. | |||||
2023-01-11 | feat: provide `&Dependency` to `Lazy` widget `View` | 1 | -4/+8 | ||
2023-01-10 | fix: `Lazy` widget | 1 | -45/+75 | ||
2022-12-22 | Add `Renderer` argument to `operate` | 1 | -0/+2 | ||
2022-11-29 | Allow &mut self in overlay | 1 | -18/+9 | ||
2022-11-03 | Rename `iced_lazy::Cached` to `Lazy` :tada: | 1 | -7/+7 | ||
2022-11-03 | Implement `Widget::operate` for `lazy::Cached` | 1 | -1/+17 | ||
2022-11-03 | Diff children only when hash differs in `lazy::Cached` | 1 | -5/+7 | ||
2022-11-03 | lint | 1 | -2/+2 | ||
2022-11-03 | feat: implement `Cached` widget | 1 | -0/+344 | ||