yew-bootstrap
yew-bootstrap copied to clipboard
Bootstrap 5 Components for the Yew Framework
Updates the included/referenced bootstrap-icons version. Please be aware that this is a breaking change for the users if the cdn is not used (as there is a version number in...
[Bootstrap 5.3.0](https://blog.getbootstrap.com/2023/05/30/bootstrap-5-3-0/) supports color themes (e.g. dark mode), which i would like to use. Just chanaging the version seems straigtforeward since there seem to be no breaking changes on the...
Bootstrap supports a [visually hidden](https://getbootstrap.com/docs/5.1/helpers/visually-hidden/) class that is intended to be used to add context and information to screen readers that would otherwise only be conveyed visually, i.e.: with colours...
No existing components need to be struct components, so I ported them all to match the suggestion that all new components be functional. Closes #28
We are largely using struct components, and most of our components are very simple. The Yew project [recommends functional components](https://yew.rs/docs/concepts/function-components) as the default: > function components - the recommended way...
Right now, the `yew_bootstrap::component::Modal` will appear and disappear without animation, while the JS Bootstrap component has an optional fade-and-slide effect. That effect will happen if the `div.modal` also has a...
We currently do not support [Bootstrap tables](https://getbootstrap.com/docs/5.1/content/tables/). I need them for a project of mine, so I'll implement it. My particular use case is to make a table of data...
Our `Button` component does not allow the user to specify the `type` argument. This is required in forms with multiple buttons, as by default all `` tags represent submit buttons....
This is a question I have regarding the project; I think the answer is easier callback handling, but I'm not certain because I haven't tried the alternative. I think others...
Based on #45 This adds support for tooltips with [`popper-rs`](https://github.com/ctron/popper-rs/). Bootstrap tooltips are built with Popper. Both Yew and Popper assume they have complete control of the DOM, so Popper...