Elina
Elina
**Problem** Hooks can be called in either function components or other functions marked as `#[hook]` (custom hooks). Calling hooks in a context that is not either of those results in...
Our website's home page is just a wall of text. Compare https://yew.rs/ with - https://sycamore-rs.netlify.app/ - https://dioxuslabs.com/ - https://seed-rs.org/ - https://arctic-hen7.github.io/perseus/en-US/ Although the documentation is comparable (or maybe even, visually...
It's been almost 2 years since the roadmap has been updated. It needs updates. We need to conduct another survey, just like [this one](https://github.com/yewstack/yew/wiki/Dev-Survey-%5BSpring-2020%5D) and build our roadmap based on...
**Describe the feature you'd like** Allow using for loops like: ```rust html! { for val in range { { val } } } ``` **Is your feature request related to...
Tracking issue for the point, "Custom events" described in https://github.com/yewstack/yew/issues/1666 **Problem** > Yew should allow users to listen to custom events as well and pass CustomEvent to the callback. >...
As I recently found out while writing a wrapper for [Material Web Components](https://github.com/material-components/material-components-web-components), consuming web components in yew is far from an ergonomic and pleasant experience. ## Problems I ran...
Automatically generate `*.wit` bindings from any language, like Rust. It becomes tedious (or borderline impossible) to manually write bindings for any kind of complex code. This is already a well-known...
I did this according to [this discussion](https://canary.discord.com/channels/500028886025895936/671042482770935808/7997138255945400720) on discord.
## Describe the Bug When [LocalTee](https://docs.rs/walrus/latest/walrus/ir/struct.LocalTee.html) is encountered, wasm-bindgen panics. This happens because this instruction is not handled proeprly. The panic occurs at https://github.com/rustwasm/wasm-bindgen/blob/e4477293c15df8500330b295cb9624dccb2a063b/crates/wasm-interpreter/src/lib.rs#L354-L363 Unlike what the comment suggests, this...
### Description The `import` keyword can be called as a function for [dynamic imports](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import#dynamic_imports). This function is missing from the `js-sys` bindings. ### Solution Export `import` from `js-sys` ### Workaround...