Elina

Results 74 issues of Elina

There should be an `Icon` enum which defines all the possible icons. It should be generated in the build script so it's always up-to-date. Similar to how the `IconName` enum...

enhancement

Menu's anchor prop take has signature of `anchor: Option`. It's clunky and difficult to use. For example, need to have `HtmlElement` of the element which isn't possible to obtain in...

enhancement
help wanted

> When a worker agent bridge is dropped, all queued messages get dropped as well. This means that if the worker has not yet connected to the bridge, it will...

bug

Yew recently got [Suspense](https://yew.rs/docs/next/concepts/suspense) support and I would like to have reqwasm provide a nice API for API of suspense capable Yew HTTP client. What should the API be?

enhancement
proposal

Right now, this library will not work when called from node. This is because uses browser specific APIs. The implementation will be based on the assumption that [`node-fetch` is available...

enhancement

Port the now-removed Yew's dashboard example to work with reqwasm

The WebSocket futures API does not implement the `Async(Read|Write)` traits. It should.

#4 re-did the websocket API. There should also be a callback based API, alongside the futures one.

Consider a path, `/path/:value/?foo=:bar` parsed with url `/path/test/?foo=something`. The library currently parses only `test` parameter, ignoring the `foo` query parameter. It should parse that as well.

#### Description Add method: ``` impl VNode { fn from_raw_html(html: &str) -> Self { ... } } ``` Fixes #2841 #### Checklist - [x] I have reviewed my own code...

breaking change
A-yew