unifyedx-storybook-new 0.1.2 → 0.1.3
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 +36 -7
- package/dist/unifyedx-storybook-new.css +5846 -1
- package/dist/unifyedx-storybook-new.es.js +43087 -0
- package/package.json +15 -12
- package/dist/index.es.js +0 -28858
- package/dist/index.es.js.map +0 -1
package/README.md
CHANGED
|
@@ -1,12 +1,41 @@
|
|
|
1
|
-
#
|
|
1
|
+
# 🎨 Acme Component Library
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+

|
|
4
|
+

|
|
5
|
+

|
|
4
6
|
|
|
5
|
-
|
|
7
|
+
A beautifully crafted collection of reusable, accessible React components built with modern web standards. Perfect for building consistent, production-ready UIs faster.
|
|
6
8
|
|
|
7
|
-
|
|
8
|
-
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
|
|
9
|
+

|
|
9
10
|
|
|
10
|
-
##
|
|
11
|
+
## ✨ Features
|
|
11
12
|
|
|
12
|
-
|
|
13
|
+
| Feature | Description |
|
|
14
|
+
| ----------------------- | ------------------------------------------------ |
|
|
15
|
+
| **Modern Stack** | Built with React 19 + Vite, styled with pure CSS |
|
|
16
|
+
| **Accessibility First** | WCAG-compliant components powered by Headless UI |
|
|
17
|
+
| **Form Ready** | Seamless React Hook Form integration |
|
|
18
|
+
| **Icon Friendly** | Works beautifully with `lucide-react` icons |
|
|
19
|
+
| **Type Safe** | Full JSDoc support (TypeScript ready) |
|
|
20
|
+
| **CI/CD** | Automated publishing via GitLab pipelines |
|
|
21
|
+
|
|
22
|
+
## 🧩 Component Showcase
|
|
23
|
+
|
|
24
|
+
### Core Components
|
|
25
|
+
|
|
26
|
+
- **Buttons**: `Button`, `ButtonWithDropdown`, `IconButton`
|
|
27
|
+
- **Forms**: `Input`, `Textarea`, `Checkbox`, `RadioGroup`, `Select`, `ToggleSwitch`, `FileUpload`
|
|
28
|
+
- **Navigation**: `Sidebar`, `Breadcrumbs`, `Pagination`
|
|
29
|
+
- **Overlays**: `Modal`, `WizardModal`, `Tooltip`
|
|
30
|
+
- **Data Display**: `Avatar`, `Badge`, `Spinner`, `FullScreenLoader`
|
|
31
|
+
- **Date Pickers**: `DatePicker`, `DateRangePicker`
|
|
32
|
+
|
|
33
|
+
## 🚀 Quick Start
|
|
34
|
+
|
|
35
|
+
### Installation
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
npm install unifyedx-storybook-new@latest
|
|
39
|
+
# or
|
|
40
|
+
yarn add unifyedx-storybook-new@latest
|
|
41
|
+
```
|