wavefunk-ui 0.1.5

Askama and htmx UI component base for Wave Funk Rust applications.
Documentation
1
<textarea class="wf-textarea" name="{{ name }}"{% match placeholder %}{% when Some with (text) %} placeholder="{{ text }}"{% when None %}{% endmatch %}{% match rows %}{% when Some with (count) %} rows="{{ count }}"{% when None %}{% endmatch %}{% if disabled %} disabled{% endif %}{% if required %} required{% endif %}{% for attr in attrs %} {{ attr.name }}="{{ attr.value }}"{% endfor %}>{% match value %}{% when Some with (text) %}{{ text }}{% when None %}{% endmatch %}</textarea>