summaryrefslogtreecommitdiffstats
path: root/widget (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #2812 from andymandias/text_input-is_focusedLibravatar Héctor2025-02-231-0/+5
|\ | | | | `operation::focusable::is_focused` & `text_input::is_focused`
| * Add `is_focused` function that produces an `Operation` to get the focused ↵Libravatar Andrew Baldwin2025-02-211-0/+5
| | | | | | | | | | | | state of a `focusable` by ID. Add `is_focused` function that produces a `Task` to get the focused state of a `text_input` by ID.
* | Add `weakest` and `strongest` to `Background` paletteLibravatar Héctor Ramón Jiménez2025-02-226-19/+33
|/ | | | ... and tweak background shade generation logic.
* Run `cargo fmt`Libravatar Héctor Ramón Jiménez2025-02-2117-21/+23
|
* Fix new `clippy` lintsLibravatar Héctor Ramón Jiménez2025-02-211-5/+5
|
* Update to Rust 2024 and fix compiler errorsLibravatar Héctor Ramón Jiménez2025-02-212-6/+4
|
* Fix broken links in `Pop::delay` documentationLibravatar Héctor Ramón Jiménez2025-02-201-0/+4
|
* Implement `delay` for `pop` widget :tada:Libravatar Héctor Ramón Jiménez2025-02-191-9/+38
|
* Remove lifetime bound for `Text` in `markdown::paragraph`Libravatar Héctor Ramón Jiménez2025-02-191-2/+2
|
* Add `bounds` argument to `Component::operate`Libravatar Héctor Ramón Jiménez2025-02-181-1/+4
|
* Fix `markdown` compilation when `highlighter` feature is disabledLibravatar Héctor Ramón Jiménez2025-02-181-0/+1
|
* Fix `Component` not diffing when its state is recreatedLibravatar Héctor Ramón Jiménez2025-02-141-0/+3
|
* Fix `request_input_method` call in `text_input`Libravatar Héctor Ramón Jiménez2025-02-121-15/+16
|
* Simplify `InputMethod` API with only two statesLibravatar Héctor Ramón Jiménez2025-02-123-24/+16
| | | | | Co-authored-by: rhysd <lin90162@yahoo.co.jp> Co-authored-by: KENZ <KENZ.gelsoft@gmail.com>
* Fix unneeded re-shaping during layout on `text_input` editLibravatar Héctor Ramón Jiménez2025-02-121-1/+1
|
* Merge pull request #2790 from rhysd/adjust-preedit-sizeLibravatar Héctor2025-02-122-2/+6
|\ | | | | Set correct text size for preedit window
| * Use default size for empty pre-editsLibravatar Héctor Ramón Jiménez2025-02-122-12/+4
| |
| * Do not pass text size to `Preedit::new`Libravatar rhysd2025-02-062-3/+10
| |
| * Set correct text size for text in preedit windowLibravatar rhysd2025-02-062-5/+10
| |
* | Make `row` module publicLibravatar Héctor Ramón Jiménez2025-02-111-1/+1
| |
* | Merge pull request #2798 from kenz-gelsoft/fix_input_method_scrolling_offsetLibravatar Héctor2025-02-111-1/+1
|\ \ | | | | | | Fix the preedit text placement on scrolled content
| * | Fix scrolling offset of preedit windowLibravatar KENZ2025-02-071-1/+1
| | |
* | | Introduce additional color styles for `container`Libravatar Héctor Ramón Jiménez2025-02-091-2/+38
|/ /
* / Request redraw in image viewer updateLibravatar Cory Forsstrom2025-02-061-0/+5
|/
* Merge pull request #2786 from iced-rs/customizable-markdownLibravatar Héctor2025-02-054-170/+546
|\ | | | | Customizable Markdown Rendering and Image Support
| * Use `code_size` instead of `spacing` for `code_block` metricsLibravatar Héctor Ramón Jiménez2025-02-051-4/+4
| |
| * Add `language` to `Item::CodeBlock` in `markdown`Libravatar Héctor Ramón Jiménez2025-02-051-8/+20
| |
| * Rename `on_link_clicked` to `on_link_click`Libravatar Héctor Ramón Jiménez2025-02-043-21/+21
| |
| * Add `Copy` action to code blocks in `markdown` exampleLibravatar Héctor Ramón Jiménez2025-02-041-6/+22
| |
| * Add `alt` and `title` to `markdown` imagesLibravatar Héctor Ramón Jiménez2025-02-041-13/+26
| |
| * Animate image fade in in `markdown` exampleLibravatar Héctor Ramón Jiménez2025-02-041-2/+2
| |
| * Fix documentation of `markdown` and `rich_text`Libravatar Héctor Ramón Jiménez2025-02-042-42/+69
| |
| * Draft `Viewer` trait for `markdown`Libravatar Héctor Ramón Jiménez2025-02-044-212/+428
| |
| * Introduce `view_with` customizers in `markdown` moduleLibravatar Héctor Ramón Jiménez2025-02-041-94/+186
| |
* | Remove the placeholder text when IME is activated in text inputLibravatar rhysd2025-02-051-1/+7
|/
* Take `Event` by reference in `Widget::update`Libravatar Héctor Ramón Jiménez2025-02-0435-122/+86
|
* Handle pre-edits and commits only if `text_editor` is focusedLibravatar Héctor Ramón Jiménez2025-02-031-9/+10
|
* Merge branch 'master' into explore-input-method2Libravatar Héctor Ramón Jiménez2025-02-033-17/+24
|\
| * Introduce `Levitating` variant for `mouse::Cursor`Libravatar Héctor Ramón Jiménez2025-02-032-14/+13
| |
| * Ignore redraws of invisible content in `hover` widgetLibravatar Héctor Ramón Jiménez2025-02-031-3/+11
| |
* | Fix `InputMethod` conflicts with multiple scrollablesLibravatar Héctor Ramón Jiménez2025-02-031-4/+8
| |
* | Request redraws on `InputMethod` eventsLibravatar Héctor Ramón Jiménez2025-02-032-1/+9
| |
* | Implement basic IME selection in `Preedit` overlayLibravatar Héctor Ramón Jiménez2025-02-032-13/+27
| |
* | Clamp pre-edit inside viewport boundsLibravatar Héctor Ramón Jiménez2025-02-031-3/+2
| |
* | Track pre-edits separately from focus in text inputsLibravatar Héctor Ramón Jiménez2025-02-032-21/+13
| |
* | Refactor and simplify `input_method` APILibravatar Héctor Ramón Jiménez2025-02-029-203/+186
| |
* | Run `cargo fmt` and fix lintsLibravatar Héctor Ramón Jiménez2025-02-022-19/+15
| |
* | Draft `input_method` supportLibravatar KENZ2025-02-025-8/+183
|/
* Avoid sharing `State` when re-parsing `markdown` sectionsLibravatar Héctor Ramón Jiménez2025-02-021-6/+8
|
* Fix broken references when parsing `markdown` streamsLibravatar Héctor Ramón Jiménez2025-02-021-11/+99
|