| Commit message (Expand) | Author | Age | Files | Lines |
* | Show `text_input` doc example in multiple places | Héctor Ramón Jiménez | 2024-09-19 | 1 | -12/+52 |
* | Implement some `From` traits for `text_input::Id` | Héctor Ramón Jiménez | 2024-09-18 | 1 | -12/+27 |
* | Add `mouse::Button` to `mouse::Click` | Isaac Marovitz | 2024-09-09 | 1 | -2/+5 |
* | Simplify type signature of `TextInput` methods | Héctor Ramón Jiménez | 2024-09-07 | 1 | -21/+11 |
* | Add `*_maybe` helper methods for `TextInput` | JL710 | 2024-09-07 | 1 | -0/+39 |
* | Add `text::Wrapping` support | Héctor Ramón Jiménez | 2024-09-04 | 1 | -0/+3 |
* | Allow interactions on disabled `text_input` | Héctor Ramón Jiménez | 2024-09-04 | 1 | -19/+28 |
* | Implement `align_x` for `TextInput` | Shan | 2024-08-24 | 1 | -10/+69 |
* | Introduce `black_box` and `chain` in `widget::operation` | Héctor Ramón Jiménez | 2024-08-08 | 1 | -1/+1 |
* | Implement blinking cursor for `text_editor` | Héctor Ramón Jiménez | 2024-07-29 | 1 | -15/+0 |
* | Decouple caching from `Paragraph` API | Héctor Ramón Jiménez | 2024-07-17 | 1 | -15/+17 |
* | Hide internal `Task` constructors | Héctor Ramón Jiménez | 2024-07-05 | 1 | -6/+7 |
* | Replace `Command` with a new `Task` API with chain support | Héctor Ramón Jiménez | 2024-06-14 | 1 | -20/+23 |
* | Introduce `window::Id` to `Event` subscriptions | Héctor Ramón Jiménez | 2024-06-10 | 1 | -3/+3 |
* | Create `jump` and `macos_command` methods in `keyboard::Modifiers` | Héctor Ramón Jiménez | 2024-05-31 | 1 | -39/+6 |
* | Add Command + ArrowLeft/Right input behavior for macos | BradySimon | 2024-05-31 | 1 | -20/+61 |
* | Merge branch 'master' into wgpu/better-architecture | Héctor Ramón Jiménez | 2024-04-07 | 1 | -2/+4 |
|\ |
|
| * | Check is_secure before a copy/cut from TextInput (#2366) | Aaron McGuire | 2024-04-02 | 1 | -2/+4 |
* | | Decouple caching from layering and simplify everything | Héctor Ramón Jiménez | 2024-04-05 | 1 | -4/+5 |
|/ |
|
* | Use generic `Content` in `Text` to avoid reallocation in `fill_text` | Héctor Ramón Jiménez | 2024-04-01 | 1 | -2/+4 |
* | Use `Catalog` approach for all widgets | Héctor Ramón Jiménez | 2024-03-24 | 1 | -50/+56 |
* | Use closures for `TextInput::style` | Héctor Ramón Jiménez | 2024-03-12 | 1 | -13/+16 |
* | Use integer coordinates for input caret | Héctor Ramón Jiménez | 2024-03-10 | 1 | -1/+2 |
* | Leverage `DefaultStyle` traits instead of `Default` | Héctor Ramón Jiménez | 2024-03-07 | 1 | -17/+14 |
* | Move `Theme` type to `iced_core` | Héctor Ramón Jiménez | 2024-03-07 | 1 | -4/+2 |
* | Use `Style` struct pattern instead of trait for all widgets | Héctor Ramón Jiménez | 2024-03-06 | 1 | -17/+36 |
* | Simplify theming for `TextInput` widget | Héctor Ramón Jiménez | 2024-03-05 | 1 | -845/+824 |
* | Capture select all command in `TextInput` | Héctor Ramón Jiménez | 2024-02-28 | 1 | -0/+2 |
* | Prioritize `TextInput` and `TextEditor` commands over text insertion | Héctor Ramón Jiménez | 2024-02-28 | 1 | -73/+83 |
* | Prioritize text insertion in `TextInput` and `TextEditor` | Héctor Ramón Jiménez | 2024-02-21 | 1 | -23/+22 |
* | Rename `password` method in `TextInput` to `secure` | Héctor Ramón Jiménez | 2024-02-15 | 1 | -4/+4 |
* | Introduce `Kind` in `core::clipboard` | Héctor Ramón Jiménez | 2024-02-13 | 1 | -7/+12 |
* | Fix impossible to type `v` in `TextInput` | Héctor Ramón Jiménez | 2024-01-22 | 1 | -34/+29 |
* | Convert `Renderer::Theme` to generic `Widget` type | Héctor Ramón Jiménez | 2024-01-21 | 1 | -26/+27 |
* | Introduce `Border` struct analogous to `Shadow` | Héctor Ramón Jiménez | 2024-01-20 | 1 | -3/+1 |
* | Use `Default` implementation of `renderer::Quad` | Héctor Ramón Jiménez | 2024-01-20 | 1 | -11/+5 |
* | feat: quad shadows | Nick Senger | 2024-01-20 | 1 | -0/+3 |
* | Refactor `KeyCode` into `Key` and `Location` | Héctor Ramón Jiménez | 2024-01-16 | 1 | -26/+28 |
* | Merge branch 'master' into update-winit | Héctor Ramón Jiménez | 2024-01-16 | 1 | -59/+63 |
|\ |
|
| * | Merge pull request #2192 from iced-rs/fix/layout-inconsistencies | Héctor Ramón | 2024-01-12 | 1 | -36/+32 |
| |\ |
|
| | * | Introduce useful helpers in `layout` module | Héctor Ramón Jiménez | 2024-01-10 | 1 | -2/+2 |
| | * | Replace `width` and `height` with `Widget::size` | Héctor Ramón Jiménez | 2024-01-10 | 1 | -6/+5 |
| | * | Make `Shrink` have priority over `Fill` in layout | Héctor Ramón Jiménez | 2024-01-04 | 1 | -30/+27 |
| * | | Fix clipping of `TextInput` selection | Héctor Ramón Jiménez | 2024-01-12 | 1 | -23/+31 |
| |/ |
|
* / | Update `winit` to `0.29.4` | Héctor Ramón Jiménez | 2023-12-15 | 1 | -29/+27 |
|/ |
|
* | Merge pull request #1964 from bungoboingo/feat/multi-window-support | Héctor Ramón | 2023-12-05 | 1 | -3/+3 |
|\ |
|
| * | Merge branch 'master' into feat/multi-window-support | Héctor Ramón Jiménez | 2023-11-29 | 1 | -182/+250 |
| |\ |
|
| * | | Merge remote-tracking branch 'origin/master' into feat/multi-window-support | Bingus | 2023-07-12 | 1 | -1/+1 |
* | | | Fix `clippy` lint | Héctor Ramón Jiménez | 2023-12-01 | 1 | -1/+1 |
* | | | Clip text to `viewport` bounds instead of layout bounds | Héctor Ramón Jiménez | 2023-12-01 | 1 | -31/+28 |
| |/
|/| |
|