summaryrefslogtreecommitdiffstats
path: root/web/src/widget (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-01-28Replace `iced_web` with WebGL support in `wgpu` :tada:Libravatar Héctor Ramón Jiménez14-2199/+0
2021-10-31Reintroduce `Box` for `style_sheet` in `TextInput`Libravatar Héctor Ramón Jiménez1-3/+6
2021-10-31Reintroduce `Box` for `style_sheet` in `Slider`Libravatar Héctor Ramón Jiménez1-2/+5
2021-10-31Reintroduce `Box` for `style_sheet` in `Scrollable`Libravatar Héctor Ramón Jiménez1-6/+6
2021-10-31Reintroduce `Box` for `style_sheet` in `Radio`Libravatar Héctor Ramón Jiménez1-3/+6
2021-10-31Introduce state lifetime for `style_sheet` in `ProgressBar`Libravatar Héctor Ramón Jiménez1-6/+6
2021-10-31Reintroduce `Box` for `style_sheet` in `Container`Libravatar Héctor Ramón Jiménez1-3/+3
2021-10-31Reintroduce `Box` for `style_sheet` in `Checkbox`Libravatar Héctor Ramón Jiménez1-3/+6
2021-10-31Reintroduce `Box` for `style_sheet` in `Button`Libravatar Héctor Ramón Jiménez1-3/+3
2021-10-21Remove `Renderer` trait for `Checkbox`Libravatar Héctor Ramón Jiménez1-9/+9
2021-10-20Wire up styling to `Radio` in `iced_native`Libravatar Héctor Ramón Jiménez1-9/+9
2021-10-20Implement `Widget::draw` for `TextInput`Libravatar Héctor Ramón Jiménez1-3/+3
2021-10-20Wire up styling to `Slider` in `iced_native`Libravatar Héctor Ramón Jiménez1-4/+4
2021-10-18Wire up styling to `Button` in `iced_native`Libravatar Héctor Ramón Jiménez1-3/+3
2021-10-18Wire up `container` styling to `iced_native`Libravatar Héctor Ramón Jiménez1-3/+3
2021-10-18Draw scrollbar in `Widget::draw` for `Scrollable`Libravatar Héctor Ramón Jiménez1-4/+7
2021-09-20Refactor alignment types into an `alignment` moduleLibravatar Héctor Ramón Jiménez5-36/+43
2021-07-22Add empty `select_all` implementation for `TextInput` in `iced_web`Libravatar Héctor Ramón Jiménez1-0/+5
2021-06-10Update disabled example of `Button` in docsLibravatar Héctor Ramón1-8/+14
2021-06-10Fix failing doctestsLibravatar Jonas Matser1-1/+7
2021-06-10Adds doc comment for disabled buttonLibravatar Jonas Matser1-0/+11
Makes disabled button behavior consistent in web
2021-06-03Fix formatLibravatar Kaiden421-20/+23
2021-06-03Add `Toggler` widget to `iced_web`Libravatar Kaiden421-0/+168
2021-06-01Replace ignored doc-tests with additional documentation for `Padding`Libravatar Héctor Ramón6-30/+0
2021-06-01Fix unused variable warning in `iced_web::text_input`Libravatar Héctor Ramón1-1/+1
2021-06-01Add support for asymmetrical paddingLibravatar Ben LeFevre6-72/+80
2021-04-10Use data urls instead of blob URLsLibravatar Liam Murphy1-15/+6
I didn't do this originally because I was half doing it in the first place to mess with Blob URLs, and it feels kinda wrong to be encoding it as base64 when that option is available. But not having memory leaks is more important.
2021-03-21fix: Don't rely on image handle not being droppedLibravatar Liam Murphy1-36/+21
It now causes a memory leak, though. :/
2021-03-21feat(web): Support in-memory image dataLibravatar Liam Murphy1-0/+39
I had to create two methods which basically do the same thing, `from_memory` and `from_slice`, but `from_memory` takes ownership of the bytes to be compatible with `iced_native`. Also, `Data` is incompatible, because if I stored the bytes in `Data` and created a new object URL every render, it would have caused a memory leak because bumpalo doesn't call destructors and there'd be no way to call URL.revokeObjectUrl on it. It's also more efficient this way.
2021-02-16Allow dead code explicitly in `iced_web`Libravatar Héctor Ramón Jiménez6-0/+8
2020-11-26Use recently stabilized intra-doc linksLibravatar Héctor Ramón Jiménez13-218/+0
See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md
2020-07-01Use `String::from_str_in` in `iced_web`Libravatar Héctor Ramón Jiménez6-40/+67
2020-07-01Fix empty `id` and `name` attributes in `iced_web`Libravatar Héctor Ramón Jiménez2-23/+37
2020-06-13Update `Slider` docs in `iced_web`Libravatar Héctor Ramón Jiménez1-1/+2
2020-06-13Make `Slider` value generic in `iced_web`Libravatar Héctor Ramón Jiménez1-21/+40
2020-06-11Add `step` member to slider widgetsLibravatar Sebastian Zivota1-2/+14
Both the native and the web slider now have a member `step` to control the least possible change of the slider's value. It defaults to 1.0 for all sliders and can be adjusted with the step method.
2020-04-21add some accessibility features to web widgetsLibravatar Tom Pridham3-6/+61
2020-04-14Fix `Checkbox` and `Radio` API in `iced_web`Libravatar Héctor Ramón Jiménez2-4/+9
2020-03-31Implement `padding` support for `Container`Libravatar Héctor Ramón Jiménez1-1/+14
2020-03-17Implement `Column` and `Row` changes in `iced_web`Libravatar Héctor Ramón Jiménez2-24/+6
2020-03-16Instantiate Column and Row with childrenLibravatar Rowun Giles2-0/+32
2020-03-06Remove counterintuitive constant functionsLibravatar Héctor Ramón Jiménez6-23/+23
2020-02-06Add `font-family` to `Text` style in `iced_web`Libravatar Héctor Ramón Jiménez1-2/+6
2020-02-06Implement `TextInput::on_submit` support in `iced_web`Libravatar Héctor Ramón Jiménez1-2/+22
2020-02-06Implement `TextInput` styling in `iced_web`Libravatar Héctor Ramón Jiménez1-13/+17
2020-02-06Fix `ProgressBar` doc example in `iced_web`Libravatar Héctor Ramón Jiménez1-4/+3
2020-02-06Implement `Container` styling in `iced_web`Libravatar Héctor Ramón Jiménez1-14/+15
2020-02-06Add style to `TextInput` in `iced_web`Libravatar Héctor Ramón Jiménez1-0/+10
2020-02-06Fix `Column` and `Row` styling for `iced_web`Libravatar Héctor Ramón Jiménez2-22/+12
2020-02-06Fix `Checkbox` styling in `iced_web`Libravatar Héctor Ramón Jiménez1-4/+18