summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix `PaneGrid` mouse interaction when clicking a paneLibravatar Héctor Ramón Jiménez2024-02-272-99/+59
|
* Merge pull request #2298 from iced-rs/fix/row-column-fluidityLibravatar Héctor Ramón2024-02-274-25/+19
|\ | | | | Fix `Column` and `Row` fluidity being overridden by `push`
| * Fix `Column` and `Row` fluidity being overridden by `push`Libravatar Héctor Ramón Jiménez2024-02-274-25/+19
| |
* | Merge pull request #2299 from iced-rs/fix/tooltip-size-hintLibravatar Héctor Ramón2024-02-271-0/+4
|\ \ | |/ |/| Add `size_hint` implementation for `Tooltip`
| * Add `size_hint` implementation for `Tooltip`Libravatar Héctor Ramón Jiménez2024-02-271-0/+4
|/
* Merge pull request #2295 from iced-rs/ignore-private-use-charsLibravatar Héctor Ramón2024-02-261-1/+6
|\ | | | | Ignore `text` in `KeyPressed` with private use chars
| * Use inclusive range for `is_private_use` functionLibravatar Héctor Ramón Jiménez2024-02-261-1/+1
| |
| * Ignore `text` in `KeyPressed` with private use charsLibravatar Héctor Ramón Jiménez2024-02-261-1/+6
|/ | | | Apparently, macOS likes to use these for simple keys.
* Merge pull request #2287 from iced-rs/assert-scrollable-contentLibravatar Héctor Ramón2024-02-242-39/+55
|\ | | | | Assert `scrollable` content size never fills scrolling axis
| * Assert `scrollable` content size never fills scrolling axisLibravatar Héctor Ramón Jiménez2024-02-242-39/+55
|/
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2024-02-241-13/+13
|
* Merge pull request #2282 from iced-rs/fix/tiny-skia-strokesLibravatar Héctor Ramón2024-02-222-2/+3
|\ | | | | Fix `iced_tiny_skia` clipping line strokes
| * Update `CHANGELOG`Libravatar Héctor Ramón Jiménez2024-02-221-0/+1
| |
| * Fix `iced_tiny_skia` clipping line strokesLibravatar Héctor Ramón Jiménez2024-02-221-2/+2
|/
* Move `fetch_position` to next minor releaseLibravatar Héctor Ramón Jiménez2024-02-221-2/+6
| | | | | ... since we are adding a variant to `window::Action`, this is a breaking change.
* Update `CHANGELOG`Libravatar Héctor Ramón Jiménez2024-02-221-1/+4
|
* Merge pull request #2280 from n1ght-hunter/add-action-fetch-locationLibravatar Héctor Ramón2024-02-225-2/+57
|\ | | | | add fetch_location action
| * Update `CHANGELOG`Libravatar Héctor Ramón Jiménez2024-02-221-0/+2
| |
| * Use `crate::core::Point` instead of prefixingLibravatar Héctor Ramón Jiménez2024-02-222-4/+4
| |
| * Rename `fetch_location` to `fetch_position`Libravatar Héctor Ramón Jiménez2024-02-224-41/+43
| |
| * Add `fetch_location` command to `window` moduleLibravatar Night_Hunter2024-02-224-0/+51
| |
* | Enable layout debugger for Wasm builds in `tour` exampleLibravatar Héctor Ramón Jiménez2024-02-221-10/+3
|/
* Merge pull request #2278 from iced-rs/prioritize-text-insertionLibravatar Héctor Ramón2024-02-213-30/+31
|\ | | | | Prioritize text insertion in `TextInput` and `TextEditor`
| * Use `find(...)` instead of `filter(...).next()`Libravatar Héctor Ramón Jiménez2024-02-211-2/+1
| |
| * Update `CHANGELOG`Libravatar Héctor Ramón Jiménez2024-02-211-0/+1
| |
| * Prioritize text insertion in `TextInput` and `TextEditor`Libravatar Héctor Ramón Jiménez2024-02-212-30/+31
|/
* Merge pull request #2275 from iced-rs/component-size-hintLibravatar Héctor Ramón2024-02-213-5/+26
|\ | | | | `size_hint` method for `Component` trait
| * Update `CHANGELOG`Libravatar Héctor Ramón Jiménez2024-02-211-0/+1
| |
| * Add `size_hint` method to `Component` traitLibravatar Héctor Ramón Jiménez2024-02-212-5/+25
|/ | | | | | | This can be used to aid the sizing strategy of some containers directly in the component definition, instead of stating the sizes explicitly in `view` logic.
* Merge pull request #2274 from iced-rs/more-from-for-border-radiusLibravatar Héctor Ramón2024-02-212-1/+14
|\ | | | | `From<u16>` and `From<i32>` implementations for `border::Radius`
| * Update `CHANGELOG`Libravatar Héctor Ramón Jiménez2024-02-211-0/+1
| |
| * Add `From<u16>` and `From<i32>` for `border::Radius`Libravatar Héctor Ramón Jiménez2024-02-211-1/+13
|/
* Merge pull request #2273 from iced-rs/missing-default-stylesLibravatar Héctor Ramón2024-02-213-2/+20
|\ | | | | Default `disabled` style for `checkbox` and `hovered` style for `Svg`
| * Update `CHANGELOG`Libravatar Héctor Ramón Jiménez2024-02-211-0/+1
| |
| * Add default `hovered` implementation to `svg::StyleSheet`Libravatar Héctor Ramón Jiménez2024-02-211-1/+3
| |
| * Add default `disabled` implementation to `checkbox::StyleSheet`Libravatar Héctor Ramón Jiménez2024-02-211-1/+16
|/
* Merge pull request #2272 from iced-rs/export-clipboard-moduleLibravatar Héctor Ramón2024-02-212-1/+3
|\ | | | | Export `clipboard` module in `advanced` module
| * Update `CHANGELOG`Libravatar Héctor Ramón Jiménez2024-02-211-0/+1
| |
| * Export `clipboard` module in `advanced` moduleLibravatar Héctor Ramón Jiménez2024-02-211-1/+2
|/
* Bump versions to `0.12.1`Libravatar Héctor Ramón Jiménez2024-02-211-1/+1
|
* Merge pull request #2238 from wash2/modifiers-textLibravatar Héctor Ramón2024-02-202-11/+36
|\ | | | | fix: account for modifiers in key text
| * Update `CHANGELOG`Libravatar Héctor Ramón Jiménez2024-02-201-0/+2
| |
| * Decouple `Key` from modifiers and apply them to `text`Libravatar Ashley Wulber2024-02-201-11/+34
|/
* Update `CHANGELOG`Libravatar Héctor Ramón Jiménez2024-02-201-0/+1
|
* Merge pull request #2271 from iced-rs/fix/wasmLibravatar Héctor Ramón2024-02-209-95/+142
|\ | | | | Fix WebAssembly platform
| * Embed Fira Sans font on Wasm builds by defaultLibravatar Héctor Ramón Jiménez2024-02-205-1/+18
| |
| * Make `Canvas` fill the parent container on WasmLibravatar Héctor Ramón Jiménez2024-02-202-2/+6
| |
| * Avoid uninitialized `Surface` configuration on WasmLibravatar Héctor Ramón Jiménez2024-02-201-1/+3
| |
| * Disable `quad::gradient` pipeline on WasmLibravatar Héctor Ramón Jiménez2024-02-201-91/+115
|/
* Merge pull request #2270 from iced-rs/traits-for-modifiersLibravatar Héctor Ramón2024-02-203-12/+13
|\ | | | | Implement `PartialOrd`, `Ord`, and `Hash` for `keyboard::Modifiers`