yew-bulma

Crates.ioyew-bulma
lib.rsyew-bulma
version0.0.2
sourcesrc
created_at2020-12-31 23:11:14.965641
updated_at2021-01-31 21:13:06.248375
descriptionYew components compatible with the Bulma CSS framework
homepage
repositoryhttps://github.com/khonsulabs/yew-bulma
max_upload_size
id329901
size52,499
Khonsu Labs Bot (kl-botsu)

documentation

README

yew-bulma

crate version

This crate provides simple Yew components that render Bulma-compatible DOM nodes. For example:

html! {
    <Button
        label="Save"
        disabled=!can_save
        css_class="is-primary"
        action=edit_form.link.callback(|e: web_sys::MouseEvent| {e.prevent_default(); Message::Save})
        processing=edit_form.is_saving
    />
}

The goals of this crate are:

  • Provide easy accessors for common Bulma components, including Rust-native implementations of logic.
  • Support for fluent-based localization.
  • Markdown rendering support.

This project is very early in development and is really only being added as needed for projects for Khonsu Labs.

Commit count: 4

cargo fmt