2 releases

new 0.1.1 Apr 4, 2025
0.1.0 Apr 3, 2025

#225 in GUI

48 downloads per month

MIT license

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:

  1. Run make run-frontend from the root
  2. Edit components in this crate (src/atoms/, etc.)
  3. 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


Dependencies

~15–25MB
~356K SLoC