summaryrefslogtreecommitdiffstats
path: root/widget (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Cull out of bounds `rich_text` during `draw`Libravatar Héctor Ramón Jiménez2025-02-011-0/+4
|
* Fix `viewport` when using nested `scrollable`sLibravatar Héctor Ramón Jiménez2025-02-011-6/+6
|
* Discard `markdown::Highlighter` if language changesLibravatar Héctor Ramón Jiménez2025-02-011-0/+5
|
* Add `new` constructor for `markdown::Content`Libravatar Héctor Ramón Jiménez2025-01-311-5/+5
|
* Replace `println` with `log` calls in `markdown` moduleLibravatar Héctor Ramón Jiménez2025-01-312-3/+8
|
* Implement `markdown` incremental code highlightingLibravatar Héctor Ramón Jiménez2025-01-311-46/+129
|
* Draft incremental `markdown` parsingLibravatar Héctor Ramón Jiménez2025-01-311-17/+82
| | | | | Specially useful when dealing with long Markdown streams, like LLMs.
* Add `min_height` and `max_height` to `text_editor`Libravatar Héctor Ramón Jiménez2025-01-301-4/+26
|
* Use `Into<Id>` for `scrollable::Id` argumentsLibravatar Héctor Ramón Jiménez2025-01-301-8/+19
|
* Avoid capturing mouse press when `text_editor` is unfocusedLibravatar Héctor Ramón Jiménez2025-01-301-2/+4
|
* Use `Into<Id>` for `container::Id` argumentsLibravatar Héctor Ramón Jiménez2025-01-301-3/+11
|
* Let `markdown::view` be `Shrink` when no code blocks existLibravatar Héctor Ramón Jiménez2025-01-301-1/+1
|
* Make `spacing` configurable in `markdown::Settings`Libravatar Héctor Ramón Jiménez2025-01-301-8/+27
|
* Fix code block merging with previous spans in `markdown` widgetLibravatar Héctor Ramón Jiménez2025-01-301-1/+10
|
* Introduce `LineEnding` to `editor` and fix inconsistenciesLibravatar Héctor Ramón Jiménez2025-01-281-52/+31
|
* Implement `scale` support for `image` widgetLibravatar Héctor Ramón Jiménez2025-01-271-2/+15
|
* Fix `update` passing wrong `Tree` to content in `pop` widgetLibravatar Héctor Ramón Jiménez2025-01-261-1/+8
|
* Merge pull request #2741 from edwloef/click-kind-deriveLibravatar Héctor2025-01-261-1/+1
|\ | | | | derive PartialEq and Eq for `mouse::click::Kind`
| * derive partialeq and eq for mouse::click::KindLibravatar edwloef2025-01-221-1/+1
| |
* | Merge pull request #2751 from iced-rs/feature/pop-widgetLibravatar Héctor2025-01-263-1/+250
|\ \ | | | | | | `pop` widget
| * | Implement `pop` widget :tada:Libravatar Héctor Ramón Jiménez2025-01-263-1/+250
| | |
* | | Fix `Image` not respecting `viewport` boundsLibravatar Héctor Ramón Jiménez2025-01-261-2/+6
|/ /
* | Add `warning` style for `progress_bar`Libravatar Héctor Ramón Jiménez2025-01-241-0/+7
| |
* | Fix missing reactive rendering logic for `vertical_slider`Libravatar Héctor Ramón Jiménez2025-01-241-15/+24
| |
* | Implement support for vertical `ProgressBar`Libravatar Héctor Ramón Jiménez2025-01-241-25/+62
| | | | | | | | Co-authored-by: MG_REX <49415741+ThisIsRex@users.noreply.github.com>
* | Add helper functions for alignment to `widget` moduleLibravatar Héctor Ramón Jiménez2025-01-241-2/+162
|/
* fix: parsing of nested markdown lists without empty lineLibravatar Jinderamarak2025-01-151-1/+10
|
* Fix consistency of import orderingLibravatar Héctor Ramón Jiménez2025-01-061-2/+1
|
* chore: remove once_cell dependencyLibravatar Tommy Volk2025-01-062-3/+3
|
* Merge pull request #2607 from DavidAguilo/palette_warningLibravatar Héctor2025-01-061-0/+15
|\ | | | | Feat: Add warning color to palette
| * Add `warning` style for `button`Libravatar Héctor Ramón Jiménez2025-01-061-0/+15
| |
* | Rename `*_disabled` to `is_*_disabled` in `scrollable`Libravatar Héctor Ramón Jiménez2025-01-061-8/+8
| |
* | Simplify `scrollable` disabled styling calculationLibravatar Héctor Ramón Jiménez2025-01-061-24/+11
| |
* | Migrate scrollbar disabled style status to iced 0.13.Libravatar dtzxporter2025-01-061-14/+65
|/ | | | Feel free to change the 'name' of it. I originally used 'disabled' to signal that it's not usable, but still visible. 'Overflowing' may be a better term.
* Merge pull request #2698 from iced-rs/feature/test-crateLibravatar Héctor2024-12-175-7/+26
|\ | | | | Headless Mode Testing
| * Draft `iced_test` crate and test `todos` exampleLibravatar Héctor Ramón Jiménez2024-12-105-7/+26
| |
* | Emit pane_grid::DragEvent::Canceled within deadbandLibravatar mtkennerly2024-12-071-0/+4
|/
* Merge pull request #2675 from chrismanning/tooltip-hover-renderLibravatar Héctor2024-12-061-0/+3
|\ | | | | Request redraw in tooltip widget when cursor is hovering
| * Request redraw in `tooltip` when `State` changesLibravatar Héctor Ramón Jiménez2024-12-061-1/+2
| |
| * Request redraw in tooltip widget when cursor is hoveringLibravatar Chris Manning2024-11-241-0/+2
| |
* | Fix `widget::button` formatLibravatar Héctor Ramón Jiménez2024-12-021-2/+1
| |
* | Call `OnPress::get` only when button is pressedLibravatar T-2562024-12-021-2/+2
| |
* | Run `cargo fmt`Libravatar Héctor Ramón Jiménez2024-12-024-12/+5
| |
* | Fix new `clippy` lintsLibravatar Héctor Ramón Jiménez2024-12-0232-91/+91
|/
* Make `pin` widget `Fill` parent by defaultLibravatar Héctor Ramón Jiménez2024-11-222-8/+4
|
* Implement `pin` widgetLibravatar Héctor Ramón Jiménez2024-11-223-1/+310
|
* Merge pull request #2668 from edwloef/masterLibravatar Héctor2024-11-131-2/+2
|\ | | | | Fix docs of `Scrollable::with_direction` and `Scrollable::direction`
| * Fix docs of `Scrollable::with_direction` and `Scrollable::direction`Libravatar edwloef2024-11-111-2/+2
| |
* | Fix event capturing order in `pane_grid`Libravatar Héctor Ramón Jiménez2024-11-061-38/+41
| |
* | Rename `Overlay::on_event` to `update`Libravatar Héctor Ramón Jiménez2024-11-068-15/+14
| |