summaryrefslogtreecommitdiffstats
path: root/web/src/lib.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Replace `iced_web` with WebGL support in `wgpu` :tada:Libravatar Héctor Ramón Jiménez2022-01-281-431/+0
|
* Change GitHub namespace to new org for all filesLibravatar LordRatte2022-01-031-2/+2
|
* Use commit hash in `html_logo_url`Libravatar Héctor Ramón Jiménez2021-12-091-1/+1
|
* Added icon in docsLibravatar daladim2021-12-091-0/+3
|
* Refactor alignment types into an `alignment` moduleLibravatar Héctor Ramón Jiménez2021-09-201-5/+10
|
* Introduce and use `CrossAlign` enum for `Column` and `Row`Libravatar Héctor Ramón Jiménez2021-09-201-2/+3
|
* Revert system menus supportLibravatar Héctor Ramón Jiménez2021-09-151-2/+2
| | | | | | The current implementation has some important issues on Windows. We will reintroduce the feature once we figure them out! I have kept some of the changes in #945, like the new `keyboard::Modifiers` powered by `bitflags`.
* Write missing docs and `Debug` implementations for `web`Libravatar Héctor Ramón Jiménez2021-09-131-2/+2
|
* Make `Command` implementations platform-specificLibravatar Héctor Ramón Jiménez2021-09-021-19/+30
| | | | | | | | | This allows us to introduce a platform-specific `Action` to both `iced_native` and `iced_web` and remove the `Clipboard` from `Application::update` to maintain purity. Additionally, this should let us implement further actions to let users query and modify the shell environment (e.g. window, clipboard, and more!)
* Merge pull request #517 from Kaiden42/embeddedLibravatar Héctor Ramón2021-08-121-0/+165
|\ | | | | iced_web: Add an option to select the element
| * Format codeLibravatar Kaiden422020-09-091-2/+2
| |
| * Add trait for embedded web applicationsLibravatar Kaiden422020-09-091-0/+165
| |
* | Move `menu` module from `iced_native` to `iced_core`Libravatar Héctor Ramón Jiménez2021-07-121-2/+2
| |
* | docs: update all 0.2 github links to 0.3Libravatar Yusuf Bera Ertan2021-06-141-1/+1
| |
* | Add support for asymmetrical paddingLibravatar Ben LeFevre2021-06-011-1/+1
| |
* | Implement stub `Clipboard` in `iced_web`Libravatar Héctor Ramón Jiménez2021-03-111-2/+11
| | | | | | | | | | We need to figure out browser permissions and use of unstable `web-sys` APIs
* | Update example links to point to `0.2` branchLibravatar Héctor Ramón Jiménez2020-11-261-1/+1
| |
* | Update graphs in crate docsLibravatar Héctor Ramón Jiménez2020-11-261-2/+0
| |
* | Use recently stabilized intra-doc linksLibravatar Héctor Ramón Jiménez2020-11-261-24/+3
| | | | | | | | See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md
* | Fix broken links in API documentationLibravatar Héctor Ramón Jiménez2020-11-261-2/+0
|/
* Update `dodrio` dependency in `iced_web`Libravatar Héctor Ramón Jiménez2020-07-011-11/+8
|
* Rename `MouseCursor` to `mouse::Interaction`Libravatar Héctor Ramón Jiménez2020-04-301-1/+1
|
* Remove inconsistent `input` module in `iced_native`Libravatar Héctor Ramón Jiménez2020-04-301-2/+2
|
* Move `MouseCursor` to `iced_core`Libravatar Héctor Ramón Jiménez2020-04-291-1/+1
|
* Expose `Rectangle` in `iced_web`Libravatar Héctor Ramón Jiménez2020-04-281-1/+1
|
* Fix a couple of links in documentationLibravatar Héctor Ramón Jiménez2020-04-021-1/+1
|
* Update `iced_web` build documentationLibravatar Héctor Ramón Jiménez2020-04-021-2/+3
|
* Call `Runtime::enter` properly in `iced_web`Libravatar Héctor Ramón Jiménez2020-03-301-3/+8
|
* Allow passing external state to `Application::new`Libravatar Héctor Ramón Jiménez2020-03-301-12/+18
|
* Move common keyboard types to `iced_core`Libravatar Héctor Ramón Jiménez2020-03-171-2/+2
| | | | Also expose them in `iced` through `iced_native` and `iced_web`.
* Add transform stack to `canvas::Frame`Libravatar Héctor Ramón Jiménez2020-02-141-2/+2
|
* Expose `Point` in `iced_web`Libravatar Héctor Ramón Jiménez2020-02-121-1/+1
|
* Rename module `style` to `css` in `iced_web`Libravatar Héctor Ramón Jiménez2020-02-051-5/+5
|
* Support event subscriptions in `iced_web`Libravatar Héctor Ramón Jiménez2020-02-041-72/+64
| | | | Also improves the overall web runtime, avoiding nested update loops.
* Forbid unsafe code and Rust 2018 idiomsLibravatar Héctor Ramón Jiménez2020-01-201-2/+2
|
* Implement `WasmBindgen` executor and reorganizeLibravatar Héctor Ramón Jiménez2020-01-201-2/+7
|
* Add `Application::Executor` associated typeLibravatar Héctor Ramón Jiménez2020-01-201-1/+1
|
* Create `iced_futures` and wire everything upLibravatar Héctor Ramón Jiménez2020-01-191-3/+3
|
* Additional clone removals for wasmLibravatar Elliott Mahler2020-01-121-4/+14
|
* Fix missing `Subscription` type in `iced_web`Libravatar Héctor Ramón Jiménez2019-12-181-0/+4
|
* Schedule render after `Command` futures finishLibravatar Héctor Ramón Jiménez2019-12-011-13/+29
|
* Update document title properly in `iced_web`Libravatar Héctor Ramón Jiménez2019-11-241-0/+15
|
* Spawn `Command` futures in `iced_web`Libravatar Héctor Ramón Jiménez2019-11-241-11/+27
|
* Make `tour` work with `iced_web` again :tada:Libravatar Héctor Ramón Jiménez2019-11-231-7/+44
| | | | | - Implements `TextInput`, `Scrollable`, and `Container` - Adds basic style generation
* Write docs for `iced_web`Libravatar Héctor Ramón Jiménez2019-11-221-1/+89
|
* Move widgets from `core` to `native` and `web`Libravatar Héctor Ramón Jiménez2019-11-211-1/+4
| | | | Also made fields private and improved `Renderer` traits.
* Remove `padding` from `Container` for nowLibravatar Héctor Ramón Jiménez2019-11-111-1/+1
|
* Connect `iced_web` with `iced` properlyLibravatar Héctor Ramón Jiménez2019-10-231-10/+3
|
* Move `winit` logic from `iced` to `iced_winit`Libravatar Héctor Ramón Jiménez2019-10-091-9/+9
| | | | | | | | | | - Added new `renderer::Windowed` trait. This shoud allow users to easily try different renderers by simply changing one line. - Renamed `UserInterface` traits to `Application`, as the `run` method takes total control of the current thread. - Moved `MouseCursor` back to `iced_native`. The new `renderer::Windowed` trait returns one on `draw`. - Split `iced_native` renderer in multiple modules, for consistency.
* Improve documentationLibravatar Héctor Ramón Jiménez2019-09-241-2/+2
|