yew
yew copied to clipboard
Rust / Wasm framework for creating reliable and efficient web applications
I use "Key" inside component properties, so it would be convenient to have IntoPropValue for Key.
**Describe the feature you'd like** I am in the process of creating a Bulma component library for Yew. For many of the components, users will need to attached callback handlers...
Currently, yew.rs is built using [Docusaurus](https://docusaurus.io/), which uses React. It was used because at the time Yew did not have a way to render page to HTML files (SSG). This...
Bumps [@svgr/webpack](https://github.com/gregberge/svgr) from 6.2.1 to 6.3.1. Release notes Sourced from @svgr/webpack's releases. v6.3.1 Bug Fixes fix duplicate plugin/preset detected error (#747) (3c6a54c), closes #746 fix exports compat with ESM (#749)...
Bumps [@docusaurus/core](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus) from 2.0.0-beta.21 to 2.0.0-rc.1. Release notes Sourced from @docusaurus/core's releases. 2.0.0-rc.1 (2022-07-14) :bug: Bug Fix docusaurus #7776 fix(core): swizzle --eject js should not copy theme .d.ts files (@slorber)...
Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 5.30.0 to 5.31.0. Release notes Sourced from @typescript-eslint/parser's releases. v5.31.0 5.31.0 (2022-07-25) Bug Fixes eslint-plugin: [typedef] Support nested array destructuring with type annotation (#5311) (6d19efe) scope-manager: handle...
Bumps [@docusaurus/plugin-content-docs](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-plugin-content-docs) from 2.0.0-beta.21 to 2.0.0-rc.1. Release notes Sourced from @docusaurus/plugin-content-docs's releases. 2.0.0-rc.1 (2022-07-14) :bug: Bug Fix docusaurus #7776 fix(core): swizzle --eject js should not copy theme .d.ts files (@slorber)...
#### Description Quality of life improvement that allows using `Option` inside `html! {}` macros. Example: ```rust fn view() { let inner = some_condition.then(|| { html! { {"Some conditional stuff"} }...
This is about: - Other **Problem** While trying to follow https://yew.rs/docs/getting-started/build-a-sample-app, `{ "Hello World" }` does not show in Firefox so I can't progress. Text included in the `index.html` renders....
#### Description Before this change, the entire `render_gl` function was called every frame, calling redundant operations, hence inefficient. After the changes, the `render_gl` function is called only once, and the...