summaryrefslogtreecommitdiffstats
path: root/widget/src/lazy.rs (unfollow)
Commit message (Collapse)AuthorFilesLines
2025-02-21Run `cargo fmt`Libravatar Héctor Ramón Jiménez1-1/+1
2025-02-04Take `Event` by reference in `Widget::update`Libravatar Héctor Ramón Jiménez1-2/+2
2024-12-02Run `cargo fmt`Libravatar Héctor Ramón Jiménez1-3/+1
2024-12-02Fix new `clippy` lintsLibravatar Héctor Ramón Jiménez1-5/+5
2024-11-06Rename `Overlay::on_event` to `update`Libravatar Héctor Ramón Jiménez1-2/+2
2024-11-05Rename `Widget::on_event` to `update`Libravatar Héctor Ramón Jiménez1-2/+2
2024-11-05Replace `event::Status` in `Widget::on_event` with `Shell::capture_event`Libravatar Héctor Ramón Jiménez1-10/+8
2024-10-17Fix new elided lifetime lint in the `beta` toolchainLibravatar Héctor Ramón Jiménez1-1/+1
2024-10-04Fix `responsive`, `component`, and `lazy` always returning an `overlay`Libravatar Héctor Ramón Jiménez1-23/+34
2024-09-05Deprecate the `component` widgetLibravatar Héctor Ramón Jiménez1-0/+1
2024-09-05Flag `lazy` feature types directlyLibravatar Héctor Ramón Jiménez1-0/+1
Co-authored-by: JL710 <76447362+JL710@users.noreply.github.com>
2024-08-08Introduce `black_box` and `chain` in `widget::operation`Libravatar Héctor Ramón Jiménez1-1/+1
2024-06-14Replace `Command` with a new `Task` API with chain supportLibravatar Héctor Ramón Jiménez1-1/+1
2024-04-01Use `rustc-hash` for most of our `HashMap` and `HashSet` instancesLibravatar Héctor Ramón Jiménez1-7/+14
2024-02-01Remove `position` from `overlay::Element`Libravatar Héctor Ramón Jiménez1-17/+6
2024-01-21Convert `Renderer::Theme` to generic `Widget` typeLibravatar Héctor Ramón Jiménez1-32/+43
2024-01-10Replace `width` and `height` with `Widget::size`Libravatar Héctor Ramón Jiménez1-6/+2
2024-01-10Introduce `Widget::size_hint` and fix further layout inconsistenciesLibravatar Héctor Ramón Jiménez1-0/+7
2023-11-21Fix `Overlay` compositionLibravatar Héctor Ramón Jiménez1-2/+3
Translations were not easily composable.
2023-09-20Fix `clippy::semicolon_if_nothing_returned`Libravatar Héctor Ramón Jiménez1-3/+3
2023-09-01Fix `Widget::layout` for `Lazy`Libravatar Héctor Ramón Jiménez1-1/+3
2023-08-30Make `widget::Tree` mutable in `Widget::layout`Libravatar Héctor Ramón Jiménez1-2/+2
2023-08-30Implement explicit text caching in the widget state treeLibravatar Héctor Ramón Jiménez1-1/+2
2023-07-15Add viewport to Widget::on_eventLibravatar Cory Forsstrom1-0/+2
2023-06-21Update `ouroboros` dependencyLibravatar Héctor Ramón Jiménez1-5/+1
2023-06-14Use nested for lazy widgetsLibravatar Cory Forsstrom1-15/+18
2023-06-14Introduce internal `overlay::Nested` for `UserInterface`Libravatar Cory Forsstrom1-2/+7
2023-06-08Implement basic cursor availabilityLibravatar Héctor Ramón Jiménez1-24/+12
2023-05-11Write missing documentation in `iced_widget`Libravatar Héctor Ramón Jiménez1-0/+3
2023-03-04Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez1-17/+30
2023-02-10fix: lazy widgets overlay is_overLibravatar Nick Senger1-0/+7
2023-01-30Fix layout translation in `overlay::Group`Libravatar Héctor Ramón Jiménez1-2/+2
This bug produced improper positioning of overlays of elements inside a `Scrollable`.
2023-01-11feat: provide `&Dependency` to `Lazy` widget `View`Libravatar Nick Senger1-4/+8
2023-01-10fix: `Lazy` widgetLibravatar Nick Senger1-45/+75
2022-12-22Add `Renderer` argument to `operate`Libravatar Héctor Ramón Jiménez1-0/+2
2022-11-29Allow &mut self in overlayLibravatar tarkah1-18/+9
2022-11-03Rename `iced_lazy::Cached` to `Lazy` :tada:Libravatar Héctor Ramón Jiménez1-7/+7
2022-11-03Implement `Widget::operate` for `lazy::Cached`Libravatar Héctor Ramón Jiménez1-1/+17
2022-11-03Diff children only when hash differs in `lazy::Cached`Libravatar Héctor Ramón Jiménez1-5/+7
2022-11-03lintLibravatar Nick Senger1-2/+2
2022-11-03feat: implement `Cached` widgetLibravatar Nick Senger1-0/+344