drizzle-cube 0.3.4 → 0.3.6
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 +16 -0
- package/dist/adapters/{compiler-Duyh6Jp-.js → compiler-C_liaz7j.js} +3291 -3121
- package/dist/adapters/compiler-l0i37Jpx.cjs +180 -0
- package/dist/adapters/express/index.cjs +1 -1
- package/dist/adapters/express/index.js +1 -1
- package/dist/adapters/fastify/index.cjs +1 -1
- package/dist/adapters/fastify/index.js +1 -1
- package/dist/adapters/hono/index.cjs +1 -1
- package/dist/adapters/hono/index.js +1 -1
- package/dist/adapters/nextjs/index.cjs +1 -1
- package/dist/adapters/nextjs/index.js +1 -1
- package/dist/client/charts.js +2 -2
- package/dist/client/chunks/{charts-DzHumCCp.js → charts-Bjt9nuto.js} +3372 -3061
- package/dist/client/chunks/charts-Bjt9nuto.js.map +1 -0
- package/dist/client/chunks/{charts-DwU4Ekjc.js → charts-jVQFlYTz.js} +62 -59
- package/dist/client/chunks/charts-jVQFlYTz.js.map +1 -0
- package/dist/client/chunks/{components-DIoQGahV.js → components-ZkZLXPw3.js} +1624 -1619
- package/dist/client/chunks/{components-DIoQGahV.js.map → components-ZkZLXPw3.js.map} +1 -1
- package/dist/client/chunks/core-DgVWZ4dE.js +6 -0
- package/dist/client/chunks/core-DgVWZ4dE.js.map +1 -0
- package/dist/client/chunks/{hooks-BJbBseyx.js → hooks-B0no4-kB.js} +2 -2
- package/dist/client/chunks/{hooks-BJbBseyx.js.map → hooks-B0no4-kB.js.map} +1 -1
- package/dist/client/chunks/{icons-BiNaQlri.js → icons-ByQjlg-K.js} +284 -279
- package/dist/client/chunks/icons-ByQjlg-K.js.map +1 -0
- package/dist/client/components/charts/HeatMapChart.config.d.ts +8 -0
- package/dist/client/components/charts/HeatMapChart.d.ts +10 -0
- package/dist/client/components.js +2 -2
- package/dist/client/hooks.js +2 -2
- package/dist/client/icons/types.d.ts +1 -0
- package/dist/client/icons.js +1 -1
- package/dist/client/index.js +4 -4
- package/dist/client/providers.js +1 -1
- package/dist/client/types.d.ts +1 -1
- package/dist/client-bundle-stats.html +1 -1
- package/dist/server/index.cjs +298 -55
- package/dist/server/index.d.ts +95 -1
- package/dist/server/index.js +4140 -3671
- package/package.json +6 -1
- package/dist/adapters/compiler-Du1HVm5_.cjs +0 -180
- package/dist/client/chunks/charts-DwU4Ekjc.js.map +0 -1
- package/dist/client/chunks/charts-DzHumCCp.js.map +0 -1
- package/dist/client/chunks/core-Dpz8VE0a.js +0 -6
- package/dist/client/chunks/core-Dpz8VE0a.js.map +0 -1
- package/dist/client/chunks/icons-BiNaQlri.js.map +0 -1
package/README.md
CHANGED
|
@@ -215,6 +215,22 @@ setTheme('ocean') // It just works! ✨
|
|
|
215
215
|
|
|
216
216
|
**[Complete Theming Guide →](./docs/THEMING.md)**
|
|
217
217
|
|
|
218
|
+
## Claude Code Plugin
|
|
219
|
+
|
|
220
|
+
Use natural language to query your semantic layer directly from [Claude Code](https://claude.ai/code):
|
|
221
|
+
|
|
222
|
+
```bash
|
|
223
|
+
# Install the plugin
|
|
224
|
+
claude /install-plugin github:cliftonc/drizzle-cube-plugin
|
|
225
|
+
```
|
|
226
|
+
|
|
227
|
+
The plugin provides MCP tools for querying, debugging, and building dashboards. Just ask Claude things like:
|
|
228
|
+
- "Show me average happiness by department for the last 3 months"
|
|
229
|
+
- "Debug this query and show me the SQL"
|
|
230
|
+
- "Create a sales dashboard with revenue KPIs"
|
|
231
|
+
|
|
232
|
+
**[Learn more →](https://www.drizzle-cube.dev/ai/claude-code-plugin/)**
|
|
233
|
+
|
|
218
234
|
## Documentation
|
|
219
235
|
|
|
220
236
|
- 📚 **[Full Documentation](https://www.drizzle-cube.dev/)** - Complete guides and API reference
|