@tomny-dev/uzi 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +37 -0
- package/dist/index.cjs +715 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.css +813 -0
- package/dist/index.css.map +1 -0
- package/dist/index.d.cts +228 -0
- package/dist/index.d.ts +228 -0
- package/dist/index.js +692 -0
- package/dist/index.js.map +1 -0
- package/package.json +42 -0
package/README.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# @tomny-dev/uzi
|
|
2
|
+
|
|
3
|
+
Rapid-fire React UI components. Ship faster, build more.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pnpm add @tomny-dev/uzi
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```tsx
|
|
14
|
+
import { Button, Card, Modal, useToast } from "@tomny-dev/uzi";
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Components
|
|
18
|
+
|
|
19
|
+
| Component | Description |
|
|
20
|
+
|--------------|------------------------------------------|
|
|
21
|
+
| `Button` | Primary, secondary, outline, ghost variants |
|
|
22
|
+
| `Card` | Surface container with tone/padding control |
|
|
23
|
+
| `Pill` | Inline badge/tag |
|
|
24
|
+
| `Modal` | Accessible overlay dialog |
|
|
25
|
+
| `Dropdown` | Select-style dropdown |
|
|
26
|
+
| `AppShell` | Responsive layout with collapsible sidebar |
|
|
27
|
+
| `SidebarNav` | Sidebar navigation list |
|
|
28
|
+
| `ToastProvider` / `useToast` | Toast notification system |
|
|
29
|
+
|
|
30
|
+
## Development
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
pnpm install
|
|
34
|
+
pnpm dev # watch mode
|
|
35
|
+
pnpm build # production build
|
|
36
|
+
pnpm lint # type check
|
|
37
|
+
```
|