@sisense/sdk-ui-vue 1.16.0 → 1.17.1
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/index.cjs +325 -325
- package/dist/index.js +83836 -83509
- package/dist/src/components/dashboard/dashboard-by-id.d.ts +1 -1
- package/dist/src/components/dashboard/dashboard.d.ts +3 -3
- package/dist/src/providers/sisense-context-provider.d.ts +4 -6
- package/dist/src/providers/theme-provider.d.ts +39 -0
- package/package.json +2 -2
@@ -30,7 +30,7 @@ import type { PropType } from 'vue';
|
|
30
30
|
* ```
|
31
31
|
* @group Fusion Embed
|
32
32
|
* @fusionEmbed
|
33
|
-
* @
|
33
|
+
* @alpha
|
34
34
|
*/
|
35
35
|
export declare const Dashboard: import("vue").DefineComponent<{
|
36
36
|
/**
|
@@ -60,7 +60,7 @@ export declare const Dashboard: import("vue").DefineComponent<{
|
|
60
60
|
/**
|
61
61
|
* {@inheritDoc @sisense/sdk-ui!DashboardProps.styleOptions}
|
62
62
|
*/
|
63
|
-
styleOptions: PropType<import("@sisense/sdk-ui
|
63
|
+
styleOptions: PropType<import("@sisense/sdk-ui-preact").DashboardStyleOptions>;
|
64
64
|
}, (() => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
65
65
|
[key: string]: any;
|
66
66
|
}>) | null, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
@@ -91,5 +91,5 @@ export declare const Dashboard: import("vue").DefineComponent<{
|
|
91
91
|
/**
|
92
92
|
* {@inheritDoc @sisense/sdk-ui!DashboardProps.styleOptions}
|
93
93
|
*/
|
94
|
-
styleOptions: PropType<import("@sisense/sdk-ui
|
94
|
+
styleOptions: PropType<import("@sisense/sdk-ui-preact").DashboardStyleOptions>;
|
95
95
|
}>>, {}, {}>;
|
@@ -31,8 +31,6 @@ export declare const createSisenseContextConnector: (context: CustomSisenseConte
|
|
31
31
|
* :token="authToken"
|
32
32
|
* :wat="watToken"
|
33
33
|
* :appConfig="appConfigurations"
|
34
|
-
* :showRuntimeErrors="true"
|
35
|
-
* :enableTracking="false"
|
36
34
|
* >
|
37
35
|
* <!-- Your application components here -->
|
38
36
|
* </SisenseContextProvider>
|
@@ -85,13 +83,13 @@ export declare const SisenseContextProvider: import("vue").DefineComponent<{
|
|
85
83
|
*
|
86
84
|
* @category Sisense Authentication
|
87
85
|
*/
|
88
|
-
token: PropType<string | undefined>;
|
86
|
+
token: PropType<string | null | undefined>;
|
89
87
|
/**
|
90
88
|
* {@inheritDoc @sisense/sdk-ui!SisenseContextProviderProps.wat}
|
91
89
|
*
|
92
90
|
* @category Sisense Authentication
|
93
91
|
*/
|
94
|
-
wat: PropType<string | undefined>;
|
92
|
+
wat: PropType<string | null | undefined>;
|
95
93
|
/**
|
96
94
|
* {@inheritDoc @sisense/sdk-ui!SisenseContextProviderProps.appConfig}
|
97
95
|
*
|
@@ -138,13 +136,13 @@ export declare const SisenseContextProvider: import("vue").DefineComponent<{
|
|
138
136
|
*
|
139
137
|
* @category Sisense Authentication
|
140
138
|
*/
|
141
|
-
token: PropType<string | undefined>;
|
139
|
+
token: PropType<string | null | undefined>;
|
142
140
|
/**
|
143
141
|
* {@inheritDoc @sisense/sdk-ui!SisenseContextProviderProps.wat}
|
144
142
|
*
|
145
143
|
* @category Sisense Authentication
|
146
144
|
*/
|
147
|
-
wat: PropType<string | undefined>;
|
145
|
+
wat: PropType<string | null | undefined>;
|
148
146
|
/**
|
149
147
|
* {@inheritDoc @sisense/sdk-ui!SisenseContextProviderProps.appConfig}
|
150
148
|
*
|
@@ -9,6 +9,14 @@ export declare const getThemeContext: () => Ref<{
|
|
9
9
|
secondaryTextColor: string;
|
10
10
|
backgroundColor: string;
|
11
11
|
panelBackgroundColor: string;
|
12
|
+
animation: {
|
13
|
+
init: {
|
14
|
+
duration: number | "auto";
|
15
|
+
};
|
16
|
+
redraw: {
|
17
|
+
duration: number | "auto";
|
18
|
+
};
|
19
|
+
};
|
12
20
|
};
|
13
21
|
palette: {
|
14
22
|
variantColors: import("@sisense/sdk-ui-preact").Color[];
|
@@ -38,6 +46,11 @@ export declare const getThemeContext: () => Ref<{
|
|
38
46
|
backgroundColor: string;
|
39
47
|
};
|
40
48
|
};
|
49
|
+
dashboard: {
|
50
|
+
backgroundColor: string;
|
51
|
+
dividerLineWidth: number;
|
52
|
+
dividerLineColor: string;
|
53
|
+
};
|
41
54
|
aiChat: {
|
42
55
|
backgroundColor: string;
|
43
56
|
primaryTextColor: string;
|
@@ -146,6 +159,14 @@ export declare const createThemeContextConnector: (themeSettings?: CompleteTheme
|
|
146
159
|
secondaryTextColor: string;
|
147
160
|
backgroundColor: string;
|
148
161
|
panelBackgroundColor: string;
|
162
|
+
animation: {
|
163
|
+
init: {
|
164
|
+
duration: number | "auto";
|
165
|
+
};
|
166
|
+
redraw: {
|
167
|
+
duration: number | "auto";
|
168
|
+
};
|
169
|
+
};
|
149
170
|
};
|
150
171
|
palette: {
|
151
172
|
variantColors: import("@sisense/sdk-ui-preact").Color[];
|
@@ -175,6 +196,11 @@ export declare const createThemeContextConnector: (themeSettings?: CompleteTheme
|
|
175
196
|
backgroundColor: string;
|
176
197
|
};
|
177
198
|
};
|
199
|
+
dashboard: {
|
200
|
+
backgroundColor: string;
|
201
|
+
dividerLineWidth: number;
|
202
|
+
dividerLineColor: string;
|
203
|
+
};
|
178
204
|
aiChat: {
|
179
205
|
backgroundColor: string;
|
180
206
|
primaryTextColor: string;
|
@@ -280,6 +306,14 @@ export declare const createThemeContextConnector: (themeSettings?: CompleteTheme
|
|
280
306
|
secondaryTextColor: string;
|
281
307
|
backgroundColor: string;
|
282
308
|
panelBackgroundColor: string;
|
309
|
+
animation: {
|
310
|
+
init: {
|
311
|
+
duration: number | "auto";
|
312
|
+
};
|
313
|
+
redraw: {
|
314
|
+
duration: number | "auto";
|
315
|
+
};
|
316
|
+
};
|
283
317
|
};
|
284
318
|
palette: {
|
285
319
|
variantColors: import("@sisense/sdk-ui-preact").Color[];
|
@@ -309,6 +343,11 @@ export declare const createThemeContextConnector: (themeSettings?: CompleteTheme
|
|
309
343
|
backgroundColor: string;
|
310
344
|
};
|
311
345
|
};
|
346
|
+
dashboard: {
|
347
|
+
backgroundColor: string;
|
348
|
+
dividerLineWidth: number;
|
349
|
+
dividerLineColor: string;
|
350
|
+
};
|
312
351
|
aiChat: {
|
313
352
|
backgroundColor: string;
|
314
353
|
primaryTextColor: string;
|
package/package.json
CHANGED
@@ -11,7 +11,7 @@
|
|
11
11
|
"Sisense",
|
12
12
|
"Compose SDK"
|
13
13
|
],
|
14
|
-
"version": "1.
|
14
|
+
"version": "1.17.1",
|
15
15
|
"type": "module",
|
16
16
|
"main": "./dist/index.cjs",
|
17
17
|
"module": "./dist/index.js",
|
@@ -42,7 +42,7 @@
|
|
42
42
|
"format:check": "prettier --check ."
|
43
43
|
},
|
44
44
|
"dependencies": {
|
45
|
-
"@sisense/sdk-ui-preact": "^1.
|
45
|
+
"@sisense/sdk-ui-preact": "^1.17.1",
|
46
46
|
"deepmerge": "^4.3.1",
|
47
47
|
"lodash": "^4.17.21",
|
48
48
|
"vue": "^3.3.2"
|