drizzle-cube 0.1.4 → 0.1.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 +4 -17
- package/dist/adapters/hono/index.js +163 -94
- package/dist/client/client/CubeClient.d.ts +1 -0
- package/dist/client/components/Modal.d.ts +2 -1
- package/dist/client/components/QueryBuilder/CubeMetaExplorer.d.ts +4 -0
- package/dist/client/components/QueryBuilder/QueryPanel.d.ts +4 -0
- package/dist/client/components/QueryBuilder/ResultsPanel.d.ts +4 -0
- package/dist/client/components/QueryBuilder/SetupPanel.d.ts +11 -0
- package/dist/client/components/QueryBuilder/index.d.ts +3 -0
- package/dist/client/components/QueryBuilder/types.d.ts +132 -0
- package/dist/client/components/QueryBuilder/utils.d.ts +42 -0
- package/dist/client/index.d.ts +1 -0
- package/dist/client/index.js +11429 -9727
- package/dist/client/styles.css +1 -1
- package/dist/server/index.d.ts +10 -0
- package/dist/server/index.js +339 -313
- package/package.json +6 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "drizzle-cube",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Drizzle ORM-first semantic layer with Cube.js compatibility. Type-safe analytics and dashboards with SQL injection protection.",
|
|
5
5
|
"main": "./dist/server/index.js",
|
|
6
6
|
"types": "./dist/server/index.d.ts",
|
|
@@ -99,6 +99,7 @@
|
|
|
99
99
|
}
|
|
100
100
|
},
|
|
101
101
|
"devDependencies": {
|
|
102
|
+
"@tailwindcss/postcss": "^4.1.12",
|
|
102
103
|
"@types/better-sqlite3": "^7.6.0",
|
|
103
104
|
"@types/node": "^20.0.0",
|
|
104
105
|
"@types/react": "^18.0.0",
|
|
@@ -107,13 +108,16 @@
|
|
|
107
108
|
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
108
109
|
"@typescript-eslint/parser": "^7.18.0",
|
|
109
110
|
"@vitejs/plugin-react": "^4.0.0",
|
|
111
|
+
"autoprefixer": "^10.4.21",
|
|
110
112
|
"better-sqlite3": "^11.10.0",
|
|
111
113
|
"concurrently": "^8.0.0",
|
|
112
114
|
"drizzle-kit": "^0.31.4",
|
|
113
115
|
"drizzle-orm": "^0.44.4",
|
|
114
116
|
"eslint": "^8.0.0",
|
|
115
117
|
"hono": "^4.0.0",
|
|
118
|
+
"postcss": "^8.5.6",
|
|
116
119
|
"postgres": "^3.4.7",
|
|
120
|
+
"tailwindcss": "^4.1.12",
|
|
117
121
|
"typescript": "^5.0.0",
|
|
118
122
|
"vite": "^5.0.0",
|
|
119
123
|
"vite-plugin-dts": "^4.0.0",
|
|
@@ -121,6 +125,7 @@
|
|
|
121
125
|
},
|
|
122
126
|
"dependencies": {
|
|
123
127
|
"@heroicons/react": "^2.2.0",
|
|
128
|
+
"daisyui": "^5.0.50",
|
|
124
129
|
"react-grid-layout": "^1.4.0",
|
|
125
130
|
"react-hook-form": "^7.47.0",
|
|
126
131
|
"recharts": "^2.8.0",
|