@thetinycode/hash-ui 1.0.0 → 1.1.1
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 +14 -14
- package/dist/index.cjs +599 -142
- package/dist/index.d.cts +69 -1
- package/dist/index.d.ts +69 -1
- package/dist/index.js +544 -118
- package/package.json +7 -8
package/README.md
CHANGED
|
@@ -119,20 +119,20 @@ export default function Demo() {
|
|
|
119
119
|
|
|
120
120
|
## Components
|
|
121
121
|
|
|
122
|
-
|
|
|
123
|
-
|
|
124
|
-
| **Layout**
|
|
125
|
-
| **Forms**
|
|
126
|
-
| **Display**
|
|
127
|
-
| **Navigation**
|
|
128
|
-
| **Overlays**
|
|
129
|
-
| **Marketing**
|
|
122
|
+
| Category | Components |
|
|
123
|
+
|-----------------|------------------------------------------------------------------|
|
|
124
|
+
| **Layout** | `Box` `Container` `Stack` `Grid` `Section` `Divider` |
|
|
125
|
+
| **Forms** | `Button` `Input` `Textarea` `Select` `Checkbox` `Switch` `Label` |
|
|
126
|
+
| **Display** | `Card` `Badge` `Avatar` `Alert` `Stat` `EmptyState` |
|
|
127
|
+
| **Navigation** | `Header` `Tabs` `Breadcrumb` `Pagination` |
|
|
128
|
+
| **Overlays** | `Modal` `Drawer` `Dropdown` `Tooltip` `Toast` |
|
|
129
|
+
| **Marketing** | `Hero` |
|
|
130
130
|
|
|
131
131
|
---
|
|
132
132
|
|
|
133
133
|
## Project Structure
|
|
134
134
|
|
|
135
|
-
```
|
|
135
|
+
```path
|
|
136
136
|
hash-ui/
|
|
137
137
|
├── src/
|
|
138
138
|
│ ├── components/
|
|
@@ -175,12 +175,12 @@ pnpm publish --access public
|
|
|
175
175
|
|
|
176
176
|
## Roadmap
|
|
177
177
|
|
|
178
|
-
|
|
|
179
|
-
|
|
180
|
-
| **v0.1** | ✅ Current |
|
|
178
|
+
| Version | Status | Planned |
|
|
179
|
+
|----------|------------|-------------------------------------------------------------------------------|
|
|
180
|
+
| **v0.1** | ✅ Current | Core primitives, Forms, Display, Navigation, Overlays |
|
|
181
181
|
| **v0.2** | 🔜 Planned | `IconButton`, `ButtonGroup`, `InputGroup`, `AvatarGroup`, Notification system |
|
|
182
|
-
| **v0.3** | 🔜 Planned |
|
|
183
|
-
| **v1.0** | 🎯 Future
|
|
182
|
+
| **v0.3** | 🔜 Planned | `Navbar`, `Sidebar`, `Accordion`, Command palette, Theme support |
|
|
183
|
+
| **v1.0** | 🎯 Future | Full docs, Demo site, Storybook, Accessibility, Animation utilities |
|
|
184
184
|
|
|
185
185
|
---
|
|
186
186
|
|