Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Refactor and simplify `input_method` API | 2025-02-02 | 9 | -203/+186 | |
| | |||||
* | Run `cargo fmt` and fix lints | 2025-02-02 | 2 | -19/+15 | |
| | |||||
* | Draft `input_method` support | 2025-02-02 | 5 | -8/+183 | |
| | |||||
* | Avoid sharing `State` when re-parsing `markdown` sections | 2025-02-02 | 1 | -6/+8 | |
| | |||||
* | Fix broken references when parsing `markdown` streams | 2025-02-02 | 1 | -11/+99 | |
| | |||||
* | Fix imprecise documentation in `Pop::on_show` | 2025-02-02 | 1 | -1/+1 | |
| | |||||
* | Add `on_resize` handler to `pop` widget :tada: | 2025-02-02 | 1 | -8/+35 | |
| | |||||
* | Write documentation for `markdown::Content` | 2025-02-01 | 1 | -1/+10 | |
| | |||||
* | Add `horizontal` helper to `scrollable` | 2025-02-01 | 1 | -0/+5 | |
| | |||||
* | Revert automatic horizontal scroll in `scrollable` | 2025-02-01 | 1 | -7/+1 | |
| | |||||
* | Propagate mouse cursor movements in `stack` | 2025-02-01 | 1 | -1/+6 | |
| | |||||
* | Fix event capturing in `rich_text` | 2025-02-01 | 1 | -2/+4 | |
| | |||||
* | Fix `rich_text` reactive rendering when hovering links | 2025-02-01 | 1 | -61/+52 | |
| | |||||
* | Split code blocks into multiple `rich_text` lines | 2025-02-01 | 1 | -10/+12 | |
| | | | | This improves layout diffing considerably! | ||||
* | Cull out of bounds `rich_text` during `draw` | 2025-02-01 | 1 | -0/+4 | |
| | |||||
* | Fix `viewport` when using nested `scrollable`s | 2025-02-01 | 1 | -6/+6 | |
| | |||||
* | Discard `markdown::Highlighter` if language changes | 2025-02-01 | 1 | -0/+5 | |
| | |||||
* | Add `new` constructor for `markdown::Content` | 2025-01-31 | 1 | -5/+5 | |
| | |||||
* | Replace `println` with `log` calls in `markdown` module | 2025-01-31 | 2 | -3/+8 | |
| | |||||
* | Implement `markdown` incremental code highlighting | 2025-01-31 | 1 | -46/+129 | |
| | |||||
* | Draft incremental `markdown` parsing | 2025-01-31 | 1 | -17/+82 | |
| | | | | | Specially useful when dealing with long Markdown streams, like LLMs. | ||||
* | Add `min_height` and `max_height` to `text_editor` | 2025-01-30 | 1 | -4/+26 | |
| | |||||
* | Use `Into<Id>` for `scrollable::Id` arguments | 2025-01-30 | 1 | -8/+19 | |
| | |||||
* | Avoid capturing mouse press when `text_editor` is unfocused | 2025-01-30 | 1 | -2/+4 | |
| | |||||
* | Use `Into<Id>` for `container::Id` arguments | 2025-01-30 | 1 | -3/+11 | |
| | |||||
* | Let `markdown::view` be `Shrink` when no code blocks exist | 2025-01-30 | 1 | -1/+1 | |
| | |||||
* | Make `spacing` configurable in `markdown::Settings` | 2025-01-30 | 1 | -8/+27 | |
| | |||||
* | Fix code block merging with previous spans in `markdown` widget | 2025-01-30 | 1 | -1/+10 | |
| | |||||
* | Introduce `LineEnding` to `editor` and fix inconsistencies | 2025-01-28 | 1 | -52/+31 | |
| | |||||
* | Implement `scale` support for `image` widget | 2025-01-27 | 1 | -2/+15 | |
| | |||||
* | Fix `update` passing wrong `Tree` to content in `pop` widget | 2025-01-26 | 1 | -1/+8 | |
| | |||||
* | Merge pull request #2741 from edwloef/click-kind-derive | 2025-01-26 | 1 | -1/+1 | |
|\ | | | | | derive PartialEq and Eq for `mouse::click::Kind` | ||||
| * | derive partialeq and eq for mouse::click::Kind | 2025-01-22 | 1 | -1/+1 | |
| | | |||||
* | | Merge pull request #2751 from iced-rs/feature/pop-widget | 2025-01-26 | 3 | -1/+250 | |
|\ \ | | | | | | | `pop` widget | ||||
| * | | Implement `pop` widget :tada: | 2025-01-26 | 3 | -1/+250 | |
| | | | |||||
* | | | Fix `Image` not respecting `viewport` bounds | 2025-01-26 | 1 | -2/+6 | |
|/ / | |||||
* | | Add `warning` style for `progress_bar` | 2025-01-24 | 1 | -0/+7 | |
| | | |||||
* | | Fix missing reactive rendering logic for `vertical_slider` | 2025-01-24 | 1 | -15/+24 | |
| | | |||||
* | | Implement support for vertical `ProgressBar` | 2025-01-24 | 1 | -25/+62 | |
| | | | | | | | | Co-authored-by: MG_REX <49415741+ThisIsRex@users.noreply.github.com> | ||||
* | | Add helper functions for alignment to `widget` module | 2025-01-24 | 1 | -2/+162 | |
|/ | |||||
* | fix: parsing of nested markdown lists without empty line | 2025-01-15 | 1 | -1/+10 | |
| | |||||
* | Fix consistency of import ordering | 2025-01-06 | 1 | -2/+1 | |
| | |||||
* | chore: remove once_cell dependency | 2025-01-06 | 2 | -3/+3 | |
| | |||||
* | Merge pull request #2607 from DavidAguilo/palette_warning | 2025-01-06 | 1 | -0/+15 | |
|\ | | | | | Feat: Add warning color to palette | ||||
| * | Add `warning` style for `button` | 2025-01-06 | 1 | -0/+15 | |
| | | |||||
* | | Rename `*_disabled` to `is_*_disabled` in `scrollable` | 2025-01-06 | 1 | -8/+8 | |
| | | |||||
* | | Simplify `scrollable` disabled styling calculation | 2025-01-06 | 1 | -24/+11 | |
| | | |||||
* | | Migrate scrollbar disabled style status to iced 0.13. | 2025-01-06 | 1 | -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-crate | 2024-12-17 | 5 | -7/+26 | |
|\ | | | | | Headless Mode Testing | ||||
| * | Draft `iced_test` crate and test `todos` example | 2024-12-10 | 5 | -7/+26 | |
| | |