koori-ui 1.0.1 → 1.0.4
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 +29 -0
- package/dist/index.css +2251 -48
- package/dist/index.d.mts +242 -2
- package/dist/index.d.ts +242 -2
- package/dist/index.js +1309 -23
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1252 -23
- package/dist/index.mjs.map +1 -1
- package/package.json +20 -2
- package/dist/index.css.map +0 -1
package/README.md
CHANGED
|
@@ -166,6 +166,35 @@ import {
|
|
|
166
166
|
|
|
167
167
|
---
|
|
168
168
|
|
|
169
|
+
### GlassChart (Recharts Component)
|
|
170
|
+
|
|
171
|
+
Premium, automatically responsive glassmorphism wrappers for Recharts.
|
|
172
|
+
|
|
173
|
+
```tsx
|
|
174
|
+
import { GlassAreaChart, GlassBarChart } from "koori-ui";
|
|
175
|
+
|
|
176
|
+
const chartData = [
|
|
177
|
+
{ name: "Jan", revenue: 4000, users: 2400 },
|
|
178
|
+
{ name: "Feb", revenue: 3000, users: 1398 },
|
|
179
|
+
];
|
|
180
|
+
|
|
181
|
+
<GlassAreaChart
|
|
182
|
+
data={chartData}
|
|
183
|
+
index="name"
|
|
184
|
+
categories={[{ key: "revenue", color: "var(--koori-primary)", name: "Revenue" }]}
|
|
185
|
+
/>
|
|
186
|
+
```
|
|
187
|
+
|
|
188
|
+
---
|
|
189
|
+
|
|
190
|
+
## 🤖 Model Context Protocol (MCP) & Copy-Paste Setup [SOON]
|
|
191
|
+
|
|
192
|
+
We are currently building **native MCP (Model Context Protocol)** support! Soon, you will be able to simply expose Koori UI to any agent and have it automatically scaffold React components for you.
|
|
193
|
+
|
|
194
|
+
We will also provide copy-pasteable Markdown recipes for every complex component directly in our documentation so your AI assistants can use them perfectly every time!
|
|
195
|
+
|
|
196
|
+
---
|
|
197
|
+
|
|
169
198
|
## Theming
|
|
170
199
|
|
|
171
200
|
Override CSS custom properties to customize the palette:
|