chiperos-ai-components-library 0.0.1 → 0.0.2

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 CHANGED
@@ -1,20 +1,26 @@
1
- # Chiper Components Library
1
+ # Chiperos AI Components Library
2
2
 
3
3
  A modern, fully-typed React component library built with Vite, TypeScript, and Tailwind CSS.
4
4
 
5
- [![npm version](https://badge.fury.io/js/chiper-components-library.svg)](https://www.npmjs.com/package/chiper-components-library)
5
+ [![npm version](https://badge.fury.io/js/chiperos-ai-components-library.svg)](https://www.npmjs.com/package/chiperos-ai-components-library)
6
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
7
7
 
8
8
  ## 🚀 Installation
9
9
 
10
10
  ```bash
11
- npm install chiper-components-library
11
+ npm install chiperos-ai-components-library
12
12
  # or
13
- yarn add chiper-components-library
13
+ yarn add chiperos-ai-components-library
14
14
  # or
15
- pnpm add chiper-components-library
15
+ pnpm add chiperos-ai-components-library
16
16
  ```
17
17
 
18
+ ## 📖 Live Documentation
19
+
20
+ View our **interactive Storybook** with all components, examples, and API documentation:
21
+
22
+ 🔗 **[https://chiperos-ai-storybook.onrender.com](https://chiperos-ai-storybook.onrender.com)**
23
+
18
24
  ## 📦 Components
19
25
 
20
26
  ### Cards
@@ -45,7 +51,7 @@ pnpm add chiper-components-library
45
51
  ## 💡 Quick Start
46
52
 
47
53
  ```tsx
48
- import { CardsGrid, FeatureCard, ActionCard } from 'chiper-components-library';
54
+ import { CardsGrid, FeatureCard, ActionCard } from 'chiperos-ai-components-library';
49
55
  import { Lock, Package } from 'lucide-react';
50
56
 
51
57
  function App() {
@@ -79,7 +85,7 @@ export default App;
79
85
  ### Cards with Grid
80
86
 
81
87
  ```tsx
82
- import { CardsGrid, FeatureCard } from 'chiper-components-library';
88
+ import { CardsGrid, FeatureCard } from 'chiperos-ai-components-library';
83
89
 
84
90
  <CardsGrid
85
91
  columns={4} // Desktop: 4 columns
@@ -97,7 +103,7 @@ import { CardsGrid, FeatureCard } from 'chiper-components-library';
97
103
  ### KPI Dashboard
98
104
 
99
105
  ```tsx
100
- import { KPICard } from 'chiper-components-library';
106
+ import { KPICard } from 'chiperos-ai-components-library';
101
107
  import { TrendingUp } from 'lucide-react';
102
108
 
103
109
  <KPICard
@@ -118,7 +124,7 @@ import { TrendingUp } from 'lucide-react';
118
124
  ### Interactive Components
119
125
 
120
126
  ```tsx
121
- import { Switcher, Loader, Toasts } from 'chiper-components-library';
127
+ import { Switcher, Loader, Toasts } from 'chiperos-ai-components-library';
122
128
  import { useState } from 'react';
123
129
 
124
130
  function Settings() {
@@ -174,7 +180,7 @@ export default {
174
180
  content: [
175
181
  "./index.html",
176
182
  "./src/**/*.{js,ts,jsx,tsx}",
177
- "./node_modules/chiper-components-library/dist/**/*.{js,mjs}"
183
+ "./node_modules/chiperos-ai-components-library/dist/**/*.{js,mjs}"
178
184
  ],
179
185
  theme: {
180
186
  extend: {},
@@ -185,7 +191,14 @@ export default {
185
191
 
186
192
  ## 📚 Documentation
187
193
 
188
- For detailed documentation and interactive examples, visit our [Storybook](https://your-storybook-url.com) (coming soon).
194
+ For detailed documentation and interactive examples, visit our **[Live Storybook](https://chiperos-ai-storybook.onrender.com)**.
195
+
196
+ The Storybook includes:
197
+ - 📦 All 17+ components with live demos
198
+ - 🎨 Interactive controls to test props
199
+ - 📖 Complete API documentation
200
+ - 💡 Usage examples and best practices
201
+ - 🎯 100+ stories showcasing different use cases
189
202
 
190
203
  ## 🤝 Contributing
191
204
 
@@ -203,7 +216,7 @@ MIT © Chiper Team
203
216
 
204
217
  ## 🐛 Issues
205
218
 
206
- Found a bug or have a feature request? Please open an issue on [GitHub](https://github.com/chiper/chiper-components-library/issues).
219
+ Found a bug or have a feature request? Please open an issue on [GitHub](https://github.com/chiperos-ai/chiperos-ai-components-library/issues).
207
220
 
208
221
  ## 📦 Package Info
209
222
 
@@ -214,12 +227,13 @@ Found a bug or have a feature request? Please open an issue on [GitHub](https://
214
227
 
215
228
  ## 🔗 Links
216
229
 
217
- - [npm Package](https://www.npmjs.com/package/chiper-components-library)
218
- - [GitHub Repository](https://github.com/chiper/chiper-components-library)
219
- - [Issues](https://github.com/chiper/chiper-components-library/issues)
220
- - [Changelog](./CHANGELOG.md)
230
+ - 📚 [Live Storybook](https://chiperos-ai-storybook.onrender.com)
231
+ - 📦 [npm Package](https://www.npmjs.com/package/chiperos-ai-components-library)
232
+ - 🐙 [GitHub Repository](https://github.com/chiperos-ai/chiperos-ai-components-library)
233
+ - 🐛 [Issues](https://github.com/chiperos-ai/chiperos-ai-components-library/issues)
234
+ - 📝 [Changelog](./CHANGELOG.md)
221
235
 
222
236
  ---
223
237
 
224
- Made with ❤️ by the Chiper Team
238
+ Made with ❤️ by the Chiperos AI Team
225
239