summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add `default` and `base` stylings to `text` widgetLibravatar Héctor Ramón Jiménez2024-07-131-0/+12
|
* Merge pull request #2505 from iced-rs/window-resize-eventsLibravatar Héctor Ramón2024-07-133-15/+16
|\ | | | | Add `resize_events` subscription to `window` module
| * Add `resize_events` subscription to `window` moduleLibravatar Héctor Ramón Jiménez2024-07-133-15/+16
|/
* Set default `width` of `toggler` widget to `Shrink`Libravatar Héctor Ramón Jiménez2024-07-131-1/+1
|
* Merge pull request #2504 from iced-rs/view-ergonomicsLibravatar Héctor Ramón2024-07-1264-658/+805
|\ | | | | Improved `view` ergonomics
| * Rename `embed_*` in `Scrollable` to simply `spacing`Libravatar Héctor Ramón Jiménez2024-07-122-49/+64
| |
| * Add directional `border::Radius` helpersLibravatar Héctor Ramón Jiménez2024-07-122-22/+64
| |
| * Improve `Border` ergonomicsLibravatar Héctor Ramón Jiménez2024-07-1213-95/+204
| |
| * Improve `Padding` ergonomicsLibravatar Héctor Ramón Jiménez2024-07-125-47/+70
| | | | | | | | | | We expose free functions for creating a `Padding` and methods with the same name to modify its fields.
| * Fix inconsistent `align_*` methods in `Container`Libravatar Héctor Ramón Jiménez2024-07-121-2/+2
| |
| * Re-export variants of `Length` and `alignment` typesLibravatar Héctor Ramón Jiménez2024-07-1251-396/+256
| |
| * Introduce helper methods for alignment for all widgetsLibravatar Héctor Ramón Jiménez2024-07-1245-282/+380
|/
* Merge pull request #2503 from iced-rs/task-abort-on-dropLibravatar Héctor Ramón2024-07-121-5/+40
|\ | | | | Add `abort_on_drop` to `task::Handle`
| * Add `abort_on_drop` to `task::Handle`Libravatar Héctor Ramón Jiménez2024-07-121-5/+40
|/ | | | You may not want to worry about aborting tasks manually.
* Merge pull request #2502 from iced-rs/button-on-press-withLibravatar Héctor Ramón2024-07-121-4/+35
|\ | | | | Add `on_press_with` method for `Button`
| * Add `on_press_with` method for `Button`Libravatar Héctor Ramón Jiménez2024-07-121-4/+35
|/ | | | | | This allows using a closure to produce the message only when the `Button` is actually pressed. Useful when generating the message may be expensive.
* Finish `window::open` only when window fully opensLibravatar Héctor Ramón Jiménez2024-07-111-25/+22
| | | | | ... and run initial `Task` after `window::open` for applications. This fixes certain race conditions.
* Make window visible after surface creation in `iced_winit`Libravatar Héctor Ramón Jiménez2024-07-111-1/+11
|
* Merge pull request #2269 from dtzxporter/scrollbar-disabledLibravatar Héctor Ramón2024-07-114-215/+328
|\ | | | | Add a configuration to scrollable to always show the scrollbar. Adds a disabled style for scrollbar.
| * Fix broken doc links in `widget::scrollable`Libravatar Héctor Ramón Jiménez2024-07-111-4/+4
| |
| * Add support for embedded scrollbars for `scrollable`Libravatar Héctor Ramón Jiménez2024-07-114-211/+324
|/ | | | Co-authored-by: dtzxporter <dtzxporter@users.noreply.github.com>
* Merge pull request #2500 from iced-rs/builtin-text-stylesLibravatar Héctor Ramón2024-07-111-0/+28
|\ | | | | Add some built-in text styles for each `Palette` color
| * Add some built-in text styles for each `Palette` colorLibravatar Héctor Ramón Jiménez2024-07-111-0/+28
| |
* | Merge pull request #2488 from vladh/remove-scrollable-commentLibravatar Héctor Ramón2024-07-111-1/+0
|\ \ | |/ |/| doc: remove extraneous comment
| * doc: remove extraneous commentLibravatar Vlad-Stefan Harbuz2024-07-021-1/+0
| |
* | Merge pull request #2499 from iced-rs/scrollable-alignment-helpersLibravatar Héctor Ramón2024-07-111-0/+26
|\ \ | | | | | | Add `align_x` and `align_y` helpers to `Scrollable`
| * | Add `align_x` and `align_y` helpers to `Scrollable`Libravatar Héctor Ramón Jiménez2024-07-111-0/+26
| | |
* | | Merge pull request #2498 from iced-rs/iced-widgetLibravatar Héctor Ramón2024-07-117-30/+56
|\ \ \ | | | | | | | | Add `iced` widget helper to display the iced logo :comet:
| * | | Add `iced` widget helper to display the iced logo :comet:Libravatar Héctor Ramón Jiménez2024-07-117-30/+56
| |/ /
* | | Merge pull request #2497 from iced-rs/stream-try-channelLibravatar Héctor Ramón2024-07-111-0/+21
|\ \ \ | |/ / |/| | Introduce `stream::try_channel` helper
| * | Introduce `stream::try_channel` helperLibravatar Héctor Ramón Jiménez2024-07-111-0/+21
|/ /
* | Merge pull request #2496 from iced-rs/abortable-tasksLibravatar Héctor Ramón2024-07-102-19/+62
|\ \ | | | | | | Abortable `Task`
| * | Introduce `Task::abortable` :tada:Libravatar Héctor Ramón Jiménez2024-07-102-1/+44
| | |
| * | Move docs of `future` and `stream` in `Task`Libravatar Héctor Ramón Jiménez2024-07-101-18/+18
|/ /
* | Remove `load` method from `application` and `daemon`Libravatar Héctor Ramón Jiménez2024-07-0910-197/+70
| | | | | | | | | | If you need to run a `Task` during boot, use `run_with` instead!
* | Implement `Default` for `combo_box::State`Libravatar Héctor Ramón Jiménez2024-07-091-0/+9
| |
* | Merge pull request #2321 from PgBiel/select-allLibravatar Héctor Ramón2024-07-083-0/+28
|\ \ | | | | | | Add "Select All" functionality on Ctrl+A to TextEditor
| * | add SelectAll to TextEditorLibravatar PgBiel2024-07-083-0/+28
|/ /
* | Allow future in `stream::channel` to returnLibravatar Héctor Ramón Jiménez2024-07-081-3/+2
| |
* | Merge pull request #2493 from iced-rs/hide-subscription-internalsLibravatar Héctor Ramón2024-07-0513-249/+271
|\ \ | | | | | | Hide `Subscription` internals
| * | Expose `from_recipe` and `into_recipes` in `advanced::subscription`Libravatar Héctor Ramón Jiménez2024-07-051-1/+1
| | |
| * | Fix `wasm_bindgen` backend in `iced_futures`Libravatar Héctor Ramón Jiménez2024-07-051-1/+1
| | |
| * | Hide `Subscription` internalsLibravatar Héctor Ramón Jiménez2024-07-0511-247/+269
|/ / | | | | | | .. and introduce `stream::channel` helper
* | Merge pull request #2492 from iced-rs/hide-internal-task-constructorsLibravatar Héctor Ramón2024-07-0511-134/+138
|\ \ | | | | | | Hide internal `Task` constructors
| * | Hide internal `Task` constructorsLibravatar Héctor Ramón Jiménez2024-07-0511-134/+138
|/ /
* / Simplify `subscription::channel` exampleLibravatar Héctor Ramón Jiménez2024-07-021-29/+14
|/
* Merge pull request #2485 from vladh/add-quad-border-docLibravatar Héctor Ramón2024-06-301-1/+1
|\ | | | | doc: clarify Quad border alignment
| * doc: clarify Quad border alignmentLibravatar Vlad-Stefan Harbuz2024-06-291-1/+1
| |
* | Merge pull request #2487 from vladh/fix-reconcile-typoLibravatar Héctor Ramón2024-06-302-4/+4
|\ \ | | | | | | doc: fix "Reconciles" typo
| * | doc: fix "Reconciles" typoLibravatar Vlad-Stefan Harbuz2024-06-302-4/+4
|/ /