2 releases
new 0.1.1 | Apr 4, 2025 |
---|---|
0.1.0 | Apr 3, 2025 |
#225 in GUI
48 downloads per month
125KB
3.5K
SLoC
𧩠TailYew β Reusable Yew + Tailwind Component Library
TailYew is a modular, reusable UI component system for Yew built with the utility-first power of Tailwind CSS. It provides elegant, accessible, and composable components to build Rust web frontends faster and with consistency.
This crate is used internally in our own documentation site β see ../frontend/
β which showcases each component with live usage and examples.
ποΈ Project Goals
- π‘ Atomic Design pattern (atoms β molecules β organisms)
- βοΈ Yew-native components β idiomatic Rust, no JavaScript
- π¨ Tailwind-first styling β utility-based, flexible, consistent
- π§ͺ Well-documented
- 𧩠Composable API for building custom UIs
π Folder Structure
crates/tailyew/
βββ src/
β βββ atoms/ # Low-level building blocks (buttons, inputs, etc.)
β βββ molecules/ # Mid-level UI (forms, modals, selects)
β βββ organisms/ # Full UI blocks (headers, footers, nav)
β βββ charts/ # Data visualization components (optional)
β βββ form/ # Form layout & state handling helpers
β βββ icons/ # Custom SVG icon components
β βββ lib.rs # Exports all components and modules
βββ Makefile # Dev commands (build, docs)
βββ Cargo.toml # Rust crate manifest
βββ README.md # You are here
π§° Development
This crate is part of a Cargo workspace. You can develop it in isolation or alongside the documentation frontend.
π§ Build
make build
π Generate docs
make doc
Or skip opening the browser:
make doc-no-open
π§ͺ Testing in the Docs Site
To see components in use:
- Run
make run-frontend
from the root - Edit components in this crate (
src/atoms/
, etc.) - Rebuild and preview live in
frontend/
Hot reloading is handled via cargo watch
from the root Makefile. The docs site imports this crate directly via:
# frontend/Cargo.toml
tailyew = { path = "../crates/tailyew" }
π Publishing
Before publishing, ensure tests and docs pass:
make doc-no-open
Then:
make publish-tailyew
π Related
frontend/
β Docs site showcasing TailYewMakefile
β Root build & dev orchestrator- Yew Framework
- Tailwind CSS
Dependencies
~15β25MB
~356K SLoC