@sisense/sdk-ui-vue 1.6.0 → 1.7.1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.js +63169 -54598
- package/dist/src/components/widgets/dashboard-widget.d.ts +2 -1
- package/dist/src/composables/use-execute-query-by-widget-id.d.ts +2 -1
- package/dist/src/composables/use-get-dashboard-model.d.ts +2 -1
- package/dist/src/composables/use-get-dashboard-models.d.ts +2 -1
- package/dist/src/composables/use-get-shared-formula.d.ts +2 -1
- package/dist/src/composables/use-get-widget-model.d.ts +2 -1
- package/package.json +2 -2
@@ -20,7 +20,8 @@ import type { PropType } from 'vue';
|
|
20
20
|
*
|
21
21
|
* </script>
|
22
22
|
* ```
|
23
|
-
* @group Fusion
|
23
|
+
* @group Fusion Embed
|
24
|
+
* @fusionEmbed
|
24
25
|
*/
|
25
26
|
export declare const DashboardWidget: import("vue").DefineComponent<{
|
26
27
|
bottomSlot: PropType<import("react").ReactNode>;
|
@@ -39,6 +39,7 @@ import type { MaybeWithRefs } from '../types';
|
|
39
39
|
* Utilizing this composable allows for declarative and reactive handling of widget-specific queries within Vue applications,
|
40
40
|
* facilitating easier data fetching and state management with the Sisense SDK.
|
41
41
|
*
|
42
|
-
* @group Fusion
|
42
|
+
* @group Fusion Embed
|
43
|
+
* @fusionEmbed
|
43
44
|
*/
|
44
45
|
export declare const useExecuteQueryByWidgetId: (params: MaybeWithRefs<ExecuteQueryByWidgetIdParams>) => ToRefs<QueryByWidgetIdState>;
|
@@ -37,6 +37,7 @@ import type { GetDashboardModelParams } from '@sisense/sdk-ui-preact';
|
|
37
37
|
*
|
38
38
|
* Utilizing this composable enables developers to declaratively integrate Sisense dashboard analytics into their Vue applications,
|
39
39
|
* managing data fetching and state with minimal boilerplate code.
|
40
|
-
* @group Fusion
|
40
|
+
* @group Fusion Embed
|
41
|
+
* @fusionEmbed
|
41
42
|
*/
|
42
43
|
export declare const useGetDashboardModel: (params: MaybeWithRefs<GetDashboardModelParams>) => import("vue").ToRefs<import("@sisense/sdk-ui-preact").DashboardModelState>;
|
@@ -34,6 +34,7 @@ import type { MaybeWithRefs } from '../types';
|
|
34
34
|
*
|
35
35
|
* This composable is ideal for Vue applications requiring a list of Sisense dashboards, providing a streamlined, reactive
|
36
36
|
* way to fetch and manage the state of multiple dashboard models.
|
37
|
-
* @group Fusion
|
37
|
+
* @group Fusion Embed
|
38
|
+
* @fusionEmbed
|
38
39
|
*/
|
39
40
|
export declare const useGetDashboardModels: (params: MaybeWithRefs<GetDashboardModelsParams>) => import("vue").ToRefs<import("@sisense/sdk-ui-preact").DashboardModelsState>;
|
@@ -41,6 +41,7 @@ import type { MaybeWithRefs } from '../types';
|
|
41
41
|
* - `error`: Contains the error object if an error occurred during the fetch.
|
42
42
|
*
|
43
43
|
* This composable provides a streamlined, reactive approach to fetching shared formulas from Sisense, facilitating their integration into Vue applications for enhanced data analytics capabilities.
|
44
|
-
* @group Fusion
|
44
|
+
* @group Fusion Embed
|
45
|
+
* @fusionEmbed
|
45
46
|
*/
|
46
47
|
export declare const useGetSharedFormula: (params: MaybeWithRefs<UseGetSharedFormulaParams>) => import("vue").ToRefs<import("@sisense/sdk-ui-preact").SharedFormulaState>;
|
@@ -37,6 +37,7 @@ import type { MaybeWithRefs } from '../types';
|
|
37
37
|
*
|
38
38
|
* This composable streamlines the process of fetching and managing Sisense widget models within Vue applications, providing
|
39
39
|
* developers with a reactive and efficient way to integrate Sisense data visualizations and analytics.
|
40
|
-
* @group Fusion
|
40
|
+
* @group Fusion Embed
|
41
|
+
* @fusionEmbed
|
41
42
|
*/
|
42
43
|
export declare const useGetWidgetModel: (params: MaybeWithRefs<GetWidgetModelParams>) => import("vue").ToRefs<import("@sisense/sdk-ui-preact").DataState<WidgetModel>>;
|
package/package.json
CHANGED
@@ -11,7 +11,7 @@
|
|
11
11
|
"Sisense",
|
12
12
|
"Compose SDK"
|
13
13
|
],
|
14
|
-
"version": "1.
|
14
|
+
"version": "1.7.1",
|
15
15
|
"type": "module",
|
16
16
|
"main": "./dist/index.js",
|
17
17
|
"module": "./dist/index.js",
|
@@ -34,7 +34,7 @@
|
|
34
34
|
"format:check": "prettier --check ."
|
35
35
|
},
|
36
36
|
"dependencies": {
|
37
|
-
"@sisense/sdk-ui-preact": "^1.
|
37
|
+
"@sisense/sdk-ui-preact": "^1.7.1",
|
38
38
|
"deepmerge": "^4.3.1",
|
39
39
|
"lodash": "^4.17.21",
|
40
40
|
"vue": "^3.3.2"
|