Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-04 | Take `Event` by reference in `Widget::update` | 1 | -3/+3 | ||
2025-02-02 | Refactor and simplify `input_method` API | 1 | -13/+3 | ||
2025-02-02 | Draft `input_method` support | 1 | -1/+5 | ||
2024-12-02 | Fix new `clippy` lints | 1 | -2/+2 | ||
2024-11-05 | Implement `reactive-rendering` for `combo_box` | 1 | -3/+17 | ||
2024-11-05 | Rename `Widget::on_event` to `update` | 1 | -3/+3 | ||
2024-11-05 | Replace `event::Status` in `Widget::on_event` with `Shell::capture_event` | 1 | -11/+13 | ||
2024-09-29 | Fix various typos | 1 | -2/+2 | ||
Using https://github.com/crate-ci/typos | |||||
2024-09-19 | Show `combo_box` doc example in multiple places | 1 | -4/+110 | ||
2024-09-13 | Add `on_open` handler to `combo_box` widget | 1 | -7/+20 | ||
Co-authored-by: Wail Abou <abou.w@hotmail.com> | |||||
2024-08-05 | Implement `State::options` for `combo_box` | 1 | -13/+25 | ||
2024-07-09 | Implement `Default` for `combo_box::State` | 1 | -0/+9 | ||
2024-04-01 | combo_box: Do not draw empty menu overlay | 1 | -28/+37 | ||
Fixes #2311 | |||||
2024-03-25 | Make defaults of composite widgets configurable | 1 | -3/+14 | ||
2024-03-24 | Use `Catalog` approach for all widgets | 1 | -55/+64 | ||
2024-03-12 | Use closures for `PickList::style` | 1 | -10/+10 | ||
2024-03-12 | Use closures for `TextInput::style` | 1 | -21/+11 | ||
2024-03-08 | Inline helper functions in `widget` modules | 1 | -4/+4 | ||
2024-03-07 | Make fields of `Style` structs public | 1 | -2/+2 | ||
2024-03-07 | Leverage `DefaultStyle` traits instead of `Default` | 1 | -12/+18 | ||
2024-03-07 | Move `Theme` type to `iced_core` | 1 | -2/+1 | ||
2024-03-06 | Use `Style` struct pattern instead of trait for all widgets | 1 | -8/+7 | ||
2024-03-06 | Simplify theming for `PickList`, `ComboBox`, and `Menu` widgets | 1 | -33/+56 | ||
2024-03-05 | Simplify theming for `TextInput` widget | 1 | -15/+12 | ||
2024-03-05 | Simplify theming for `Scrollable` widget | 1 | -2/+2 | ||
2024-03-05 | Simplify theming for `Container` widget | 1 | -2/+2 | ||
2024-02-01 | Remove `position` from `overlay::Element` | 1 | -2/+3 | ||
2024-01-21 | Convert `Renderer::Theme` to generic `Widget` type | 1 | -25/+32 | ||
2024-01-16 | Refactor `KeyCode` into `Key` and `Location` | 1 | -7/+7 | ||
2024-01-10 | Replace `width` and `height` with `Widget::size` | 1 | -7/+5 | ||
2023-12-01 | Clip text to `viewport` bounds instead of layout bounds | 1 | -1/+2 | ||
2023-09-10 | Fix `ComboBox` widget panic on wasm | 1 | -1/+1 | ||
2023-09-10 | Fix `ComboBox` widget not displaying selection text | 1 | -2/+23 | ||
2023-09-09 | Fix majority of unresolved documentation links | 1 | -3/+5 | ||
2023-08-30 | Make `widget::Tree` mutable in `Widget::layout` | 1 | -1/+1 | ||
2023-08-30 | Implement explicit text caching in the widget state tree | 1 | -92/+75 | ||
2023-08-26 | Fix `clippy` lints for Rust 1.72 | 1 | -1/+1 | ||
2023-07-31 | Update widget/src/combo_box.rs | 1 | -1/+1 | ||
Co-authored-by: Héctor Ramón <hector0193@gmail.com> | |||||
2023-07-31 | cycle combobox with keybinds | 1 | -9/+34 | ||
2023-07-26 | Rename `on_selection` to `on_option_hovered` in `combo_box` | 1 | -6/+6 | ||
2023-07-26 | Fix `on_option_hovered` support in `ComboBox` | 1 | -11/+31 | ||
2023-07-26 | Use default padding of `TextInput` in `ComboBox` | 1 | -1/+1 | ||
2023-07-26 | Add `Viewport` to `on_event` for `ComboBox` | 1 | -0/+3 | ||
2023-07-26 | Swap unwrap_or_else to unwrap_or_default | 1 | -2/+2 | ||
2023-07-26 | Add ComboBox widget | 1 | -0/+716 | ||
- Widget implementation - Widget helper - Example |