Metadata-Version: 2.3
Name: starui
Version: 0.3.0
Summary: Python-first UI component library for Datastar/StarHTML applications
Keywords: ui,components,tailwind,datastar,starhtml,fasthtml
Author: firefly
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: User Interfaces
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: typer>=0.9.0,<1.0.0
Requires-Dist: requests>=2.31.0,<3.0.0
Requires-Dist: pydantic>=2.5.0,<3.0.0
Requires-Dist: rich>=13.7.0,<14.0.0
Requires-Dist: websockets>=12.0.0,<16.0.0
Requires-Dist: starhtml>=0.5.12
Requires-Dist: starmerge>=0.2.0
Requires-Python: >=3.12
Description-Content-Type: text/markdown

<div align="center">

<a href="https://starhtml.com"><img src="docs/static/images/og/starhtml.jpg" alt="StarHTML — Python Web Framework" width="100%"></a>

<a href="https://ui.starhtml.com"><img src="docs/static/images/og/starui.jpg" alt="StarUI — Python Component Library" width="100%"></a>

![PyPI version](https://badge.fury.io/py/starui.svg)
![Python 3.12+](https://img.shields.io/badge/python-3.12+-blue.svg)

**Python-first UI component library for [StarHTML](https://starhtml.com). shadcn/ui components with zero-configuration setup.**

[Documentation](https://ui.starhtml.com) · [StarHTML](https://starhtml.com) · [Quick Start](#quick-start) · [Issues](https://github.com/banditburai/starui/issues)

</div>

## Quick Start

```bash
uv add starui
```

```python
from starhtml import *
from components.ui.button import Button
from components.ui.card import Card, CardHeader, CardTitle, CardContent

app, rt = star_app()

@rt("/")
def home():
    return Card(
        CardHeader(
            CardTitle("Welcome to StarUI")
        ),
        CardContent(
            Button("Get Started", variant="default"),
            Button("Learn More", variant="outline")
        )
    )

serve()
```

## Available Components

| Component | Description | Variants |
|-----------|-------------|----------|
| **Button** | Interactive buttons | `default`, `destructive`, `outline`, `secondary`, `ghost`, `link` |
| **Alert** | Important messages | `default`, `destructive` |
| **Badge** | Status indicators | `default`, `secondary`, `destructive`, `outline` |
| **Card** | Content containers | Header, Content, Footer sections |
| **Input** | Form inputs | All HTML input types with validation |
| **Label** | Form labels | Accessible form labeling |

## CLI

```bash
star init <project-name>          # Create new project
star add <component>              # Add component to project
star list                         # List available components
star dev <app.py>                 # Dev server with hot reload
star build                        # Build production CSS
```

## Component API

### Button

```python
Button("Click me")

Button(
    "Submit Form",
    variant="default",
    size="lg",
    disabled=False,
    type="submit",
    onclick="handleSubmit()"
)
```

### Card

```python
Card(
    CardHeader(
        CardTitle("Product Card")
    ),
    CardContent(
        P("This is the card content with detailed information."),
        Button("Learn More", variant="outline")
    ),
    class_name="max-w-md"
)
```

## Configuration

StarUI works with zero configuration, but you can customize it:

```python
# starui.config.py (optional)
from starui.config import ProjectConfig
from pathlib import Path

config = ProjectConfig(
    project_root=Path.cwd(),
    css_output=Path("static/css/starui.css"),
    component_dir=Path("components/ui")
)
```

## Development

```bash
git clone https://github.com/banditburai/starui.git
cd starui
uv sync --all-extras
uv run ruff check && uv run pyright && uv run pytest tests/ -v
```

Contributions welcome — see [CONTRIBUTING.md](CONTRIBUTING.md).

## Acknowledgments

Built on [shadcn/ui](https://ui.shadcn.com/) design patterns, [StarHTML](https://starhtml.com), and [Tailwind CSS](https://tailwindcss.com/).
