Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2022-07-27 | Replace stateful widgets with new `iced_pure` API | 29 | -5796/+0 | ||
2022-07-18 | Fix `max_height` for `Scrollable` | 1 | -0/+1 | ||
2022-07-18 | Fix `max_width` and `max_height` for `Container` | 1 | -0/+2 | ||
2022-07-13 | Simplify `update` signature in `text_input` | 1 | -1/+1 | ||
2022-07-13 | Simplify `on_paste` signature | 1 | -5/+8 | ||
... and fix spacing. | |||||
2022-07-13 | Added `on_paste` handler to `TextInput` | 1 | -1/+11 | ||
2022-07-09 | Fix `clippy` lints for all crates and features | 14 | -61/+73 | ||
... and check those in CI as well! | |||||
2022-07-09 | Fix further `clippy` lints | 1 | -4/+12 | ||
... and explicitly annotate crates as well. | |||||
2022-07-09 | Address Clippy lints | 2 | -3/+3 | ||
2022-06-29 | Introduce `StyleSheet` for `Text` widget | 7 | -15/+24 | ||
2022-06-23 | Allow overriding pure text_input value during draw | 1 | -0/+26 | ||
2022-06-07 | Implement theme styling for `PickList` and `Menu` | 2 | -15/+18 | ||
2022-06-07 | Implement theme styling for `Container` | 7 | -34/+72 | ||
2022-06-07 | Implement theme styling for `Scrollable` | 3 | -11/+24 | ||
2022-06-07 | Prevent pane grid title bar content and controls from overlapping | 1 | -28/+50 | ||
2022-06-07 | Implement theme styling for `TextInput` | 2 | -9/+18 | ||
2022-06-04 | Implement theme styling for `Checkbox` | 2 | -1/+4 | ||
2022-06-01 | Implement theme styling for `ProgressBar` | 2 | -4/+10 | ||
2022-06-01 | Implement theme styling for `Rule` | 2 | -4/+15 | ||
2022-06-01 | Implement theme styling for `PaneGrid` | 1 | -7/+18 | ||
2022-06-01 | Implement theme styling for `Toggler` | 2 | -1/+4 | ||
... and wire up theming to the `styling` example. | |||||
2022-05-31 | Bump versions :tada: | 1 | -1/+1 | ||
2022-05-27 | Implement theme styling for `Radio` | 2 | -6/+8 | ||
2022-05-26 | Fix examples and doc-tests | 1 | -1/+4 | ||
2022-05-26 | Rename `Variant` to `Style` and `Style` to `Appearance` | 3 | -16/+12 | ||
2022-05-26 | Implement theme styling for `Slider` | 2 | -13/+26 | ||
2022-05-14 | Draft first-class `Theme` support | 27 | -16/+101 | ||
RFC: https://github.com/iced-rs/rfcs/pull/6 | |||||
2022-05-06 | Use `Borrow` instead of `AsRef` to allow easier casting | 2 | -11/+22 | ||
2022-05-06 | Take `AsRef<Widget>` instead of `Element` in `Tree` API | 2 | -13/+27 | ||
2022-05-05 | Expose pure flex module as public | 1 | -2/+1 | ||
2022-05-05 | Bump version of `iced_pure` :tada: | 1 | -1/+1 | ||
2022-05-04 | Fix vertical rule helper | 1 | -1/+1 | ||
2022-05-02 | Bump versions :tada: | 1 | -3/+9 | ||
2022-05-02 | Forbid `unused_results` and `rust_2018_idioms` in `iced_pure` | 2 | -5/+4 | ||
2022-05-02 | Write documentation for `iced_pure` | 22 | -28/+477 | ||
2022-04-30 | Fix broken intra-doc links in documentation | 6 | -23/+21 | ||
2022-04-30 | Point repository links to `0.4` branch in documentation | 1 | -1/+1 | ||
2022-04-24 | Reuse `Tooltip` draw logic in `iced_pure` | 1 | -94/+24 | ||
2022-04-24 | Reuse `tooltip::Position` from `iced_native` in `iced_pure` | 1 | -20/+8 | ||
2022-04-22 | Implemented Tooltip as Pure | 3 | -0/+323 | ||
2022-03-29 | Use State::new() for State::default() | 1 | -3/+1 | ||
2022-03-29 | Implement `Default` for `pure::State` | 1 | -0/+8 | ||
Impure Applications using pure widgets can now use a struct implementing `Default` | |||||
2022-03-29 | Loose lifetime bounds in `pure::Widget` implementations | 8 | -18/+18 | ||
2022-03-26 | Forward overlay() calls in iced_pure::element::Map | 1 | -2/+16 | ||
If Map does not override overlay(), calling map() on a pure Element breaks any pick_list inside it (its overlay does not appear). Fix it by implementing overlay() the same way iced_native::element::Map does. | |||||
2022-03-22 | Implement `pure` version of `Svg` widget | 2 | -0/+64 | ||
2022-03-22 | Use application lifetime in `Into<Element>` implementation for `&str` | 1 | -2/+1 | ||
2022-03-16 | Export widget modules in `iced_pure` | 19 | -181/+199 | ||
... and fix collisions with the new `helpers` | |||||
2022-03-14 | Implement `pure` version of `PaneGrid` widget | 5 | -2/+1102 | ||
2022-03-10 | Implement `pure` version of `ProgressBar` widget | 2 | -0/+114 | ||
2022-03-10 | Implement `pure` version of `Rule` widget | 2 | -0/+110 | ||