chiperos-ai-components-library 0.0.1 → 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 +31 -17
- package/dist/chiperos-ai-components-library.cjs +46 -0
- package/dist/chiperos-ai-components-library.cjs.map +1 -0
- package/dist/chiperos-ai-components-library.js +10865 -0
- package/dist/chiperos-ai-components-library.js.map +1 -0
- package/dist/components/Input/Input.stories.d.ts +66 -0
- package/dist/components/Input/Input.test.d.ts +1 -0
- package/dist/components/Input/index.d.ts +94 -0
- package/dist/components/Select/Select.stories.d.ts +50 -0
- package/dist/components/Select/Select.test.d.ts +1 -0
- package/dist/components/Select/index.d.ts +36 -0
- package/dist/components/Table/Table.stories.d.ts +35 -0
- package/dist/components/Table/Table.test.d.ts +1 -0
- package/dist/components/Table/index.d.ts +64 -0
- package/dist/components/TableHeader/TableHeader.stories.d.ts +48 -0
- package/dist/components/TableHeader/TableHeader.test.d.ts +1 -0
- package/dist/components/TableHeader/index.d.ts +125 -0
- package/dist/components/index.d.ts +4 -0
- package/package.json +42 -13
- package/dist/chiper-components-library.cjs +0 -15
- package/dist/chiper-components-library.cjs.map +0 -1
- package/dist/chiper-components-library.js +0 -4836
- package/dist/chiper-components-library.js.map +0 -1
package/README.md
CHANGED
|
@@ -1,20 +1,26 @@
|
|
|
1
|
-
#
|
|
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
|
-
[](https://www.npmjs.com/package/chiperos-ai-components-library)
|
|
6
6
|
[](https://opensource.org/licenses/MIT)
|
|
7
7
|
|
|
8
8
|
## 🚀 Installation
|
|
9
9
|
|
|
10
10
|
```bash
|
|
11
|
-
npm install
|
|
11
|
+
npm install chiperos-ai-components-library
|
|
12
12
|
# or
|
|
13
|
-
yarn add
|
|
13
|
+
yarn add chiperos-ai-components-library
|
|
14
14
|
# or
|
|
15
|
-
pnpm add
|
|
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 '
|
|
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 '
|
|
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 '
|
|
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 '
|
|
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/
|
|
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://
|
|
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/
|
|
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
|
-
- [
|
|
218
|
-
- [
|
|
219
|
-
- [
|
|
220
|
-
- [
|
|
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
|
|
238
|
+
Made with ❤️ by the Chiperos AI Team
|
|
225
239
|
|