react-autoql 8.32.0 → 8.33.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/dist/autoql.cjs.js +2 -2
- package/dist/autoql.cjs.js.gz +0 -0
- package/dist/autoql.esm.css +1 -1
- package/dist/autoql.esm.css.gz +0 -0
- package/dist/autoql.esm.js +2 -2
- package/dist/autoql.esm.js.gz +0 -0
- package/package.json +2 -2
- package/src/index.d.ts +6 -0
package/dist/autoql.esm.js.gz
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-autoql",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.33.0",
|
|
4
4
|
"description": "React Widget Library",
|
|
5
5
|
"main": "dist/autoql.cjs.js",
|
|
6
6
|
"module": "dist/autoql.esm.js",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
66
|
"@react-icons/all-files": "4.1.0",
|
|
67
|
-
"autoql-fe-utils": "1.11.
|
|
67
|
+
"autoql-fe-utils": "1.11.28",
|
|
68
68
|
"axios": "^1.16.0",
|
|
69
69
|
"caniuse-lite": "1.0.30001692",
|
|
70
70
|
"classnames": "2.5.1",
|
package/src/index.d.ts
CHANGED
|
@@ -200,6 +200,7 @@ export interface DashboardTile {
|
|
|
200
200
|
queryResponse?: any
|
|
201
201
|
dataConfig?: any
|
|
202
202
|
aggConfig?: any
|
|
203
|
+
projectId?: string | number
|
|
203
204
|
[key: string]: any
|
|
204
205
|
}
|
|
205
206
|
|
|
@@ -247,6 +248,11 @@ export interface DashboardProps {
|
|
|
247
248
|
source?: string | string[]
|
|
248
249
|
scope?: string
|
|
249
250
|
offline?: boolean
|
|
251
|
+
projectSelectList?: Array<{ projectId: string | number; displayName: string }>
|
|
252
|
+
getAuthenticationForProject?: (projectId: string | number) => Authentication | undefined
|
|
253
|
+
onTileAuthExpired?: (projectId: string | number) => void
|
|
254
|
+
showProjectIndicator?: boolean
|
|
255
|
+
isProjectDashboard?: boolean
|
|
250
256
|
[key: string]: any
|
|
251
257
|
}
|
|
252
258
|
|