drizzle-cube 0.1.6 → 0.1.9
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/dist/client/components/QueryBuilder/FilterBuilder.d.ts +4 -0
- package/dist/client/components/QueryBuilder/FilterGroup.d.ts +4 -0
- package/dist/client/components/QueryBuilder/FilterItem.d.ts +4 -0
- package/dist/client/components/QueryBuilder/FilterValueSelector.d.ts +4 -0
- package/dist/client/components/QueryBuilder/types.d.ts +43 -1
- package/dist/client/components/QueryBuilder/utils.d.ts +76 -1
- package/dist/client/hooks/useCubeQuery.d.ts +1 -0
- package/dist/client/hooks/useDebounce.d.ts +12 -0
- package/dist/client/hooks/useFilterValues.d.ts +16 -0
- package/dist/client/index.js +9562 -8655
- package/dist/client/styles.css +1 -1
- package/dist/client/types.d.ts +12 -5
- package/dist/server/index.d.ts +14 -1
- package/dist/server/index.js +590 -463
- package/package.json +3 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "drizzle-cube",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9",
|
|
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",
|
|
@@ -31,8 +31,7 @@
|
|
|
31
31
|
"dev:client": "vite build src/client --watch --mode development",
|
|
32
32
|
"dev:examples": "cd examples/hono-app && npm run dev",
|
|
33
33
|
"dev:help": "cd help-site && npm run dev",
|
|
34
|
-
"build": "npm run build:server && npm run build:client && npm run build:adapters",
|
|
35
|
-
"build:all": "npm run build && npm run build:help",
|
|
34
|
+
"build": "npm run build:server && npm run build:client && npm run build:adapters && npm run build:help",
|
|
36
35
|
"build:server": "vite build --config vite.config.server.ts",
|
|
37
36
|
"build:client": "vite build --config vite.config.client.ts",
|
|
38
37
|
"build:adapters": "vite build --config vite.config.adapters.ts",
|
|
@@ -99,7 +98,6 @@
|
|
|
99
98
|
}
|
|
100
99
|
},
|
|
101
100
|
"devDependencies": {
|
|
102
|
-
"@tailwindcss/postcss": "^4.1.12",
|
|
103
101
|
"@types/better-sqlite3": "^7.6.0",
|
|
104
102
|
"@types/node": "^20.0.0",
|
|
105
103
|
"@types/react": "^18.0.0",
|
|
@@ -117,7 +115,7 @@
|
|
|
117
115
|
"hono": "^4.0.0",
|
|
118
116
|
"postcss": "^8.5.6",
|
|
119
117
|
"postgres": "^3.4.7",
|
|
120
|
-
"tailwindcss": "^4.
|
|
118
|
+
"tailwindcss": "^3.4.15",
|
|
121
119
|
"typescript": "^5.0.0",
|
|
122
120
|
"vite": "^5.0.0",
|
|
123
121
|
"vite-plugin-dts": "^4.0.0",
|
|
@@ -125,7 +123,6 @@
|
|
|
125
123
|
},
|
|
126
124
|
"dependencies": {
|
|
127
125
|
"@heroicons/react": "^2.2.0",
|
|
128
|
-
"daisyui": "^5.0.50",
|
|
129
126
|
"react-grid-layout": "^1.4.0",
|
|
130
127
|
"react-hook-form": "^7.47.0",
|
|
131
128
|
"recharts": "^2.8.0",
|