@sisense/sdk-ui-angular 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/esm2020/lib/component-wrapper-helpers/context-connectors.mjs +7 -3
- package/dist/esm2020/lib/components/dashboard/dashboard-by-id.component.mjs +2 -2
- package/dist/esm2020/lib/components/dashboard/dashboard.component.mjs +3 -3
- package/dist/esm2020/lib/decorators/trackable.decorator.mjs +3 -2
- package/dist/esm2020/lib/services/sisense-context.service.mjs +2 -3
- package/dist/esm2020/version.mjs +2 -2
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs +16 -9
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs +13 -9
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/lib/components/dashboard/dashboard-by-id.component.d.ts +1 -1
- package/dist/lib/components/dashboard/dashboard.component.d.ts +2 -2
- package/dist/lib/services/theme.service.d.ts +13 -0
- package/dist/package.json +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -4,7 +4,7 @@ import { SisenseContextService } from '../../services/sisense-context.service';
|
|
|
4
4
|
import { ThemeService } from '../../services/theme.service';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
/**
|
|
7
|
-
* An Angular component used for easily rendering a dashboard.
|
|
7
|
+
* An Angular component used for easily rendering a dashboard created in Sisense Fusion.
|
|
8
8
|
*
|
|
9
9
|
* **Note:** Dashboard extensions based on JS scripts and add-ons in Fusion are not supported.
|
|
10
10
|
*
|
|
@@ -41,7 +41,7 @@ import * as i0 from "@angular/core";
|
|
|
41
41
|
* ```
|
|
42
42
|
* @group Fusion Embed
|
|
43
43
|
* @fusionEmbed
|
|
44
|
-
* @
|
|
44
|
+
* @alpha
|
|
45
45
|
*/
|
|
46
46
|
export declare class DashboardComponent implements AfterViewInit, OnChanges, OnDestroy {
|
|
47
47
|
/**
|
|
@@ -59,6 +59,14 @@ export declare class ThemeService {
|
|
|
59
59
|
secondaryTextColor: string;
|
|
60
60
|
backgroundColor: string;
|
|
61
61
|
panelBackgroundColor: string;
|
|
62
|
+
animation: {
|
|
63
|
+
init: {
|
|
64
|
+
duration: number | "auto";
|
|
65
|
+
};
|
|
66
|
+
redraw: {
|
|
67
|
+
duration: number | "auto";
|
|
68
|
+
};
|
|
69
|
+
};
|
|
62
70
|
};
|
|
63
71
|
palette: {
|
|
64
72
|
variantColors: import("@sisense/sdk-ui-preact").Color[];
|
|
@@ -88,6 +96,11 @@ export declare class ThemeService {
|
|
|
88
96
|
backgroundColor: string;
|
|
89
97
|
};
|
|
90
98
|
};
|
|
99
|
+
dashboard: {
|
|
100
|
+
backgroundColor: string;
|
|
101
|
+
dividerLineWidth: number;
|
|
102
|
+
dividerLineColor: string;
|
|
103
|
+
};
|
|
91
104
|
aiChat: {
|
|
92
105
|
backgroundColor: string;
|
|
93
106
|
primaryTextColor: string;
|
package/dist/package.json
CHANGED
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "1.
|
|
1
|
+
declare const _default: "1.17.1";
|
|
2
2
|
export default _default;
|
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
|
"author": "Sisense",
|
|
16
16
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
17
17
|
"main": "dist",
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
"@angular/core": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@sisense/sdk-data": "^1.
|
|
49
|
-
"@sisense/sdk-tracking": "^1.
|
|
50
|
-
"@sisense/sdk-ui-preact": "^1.
|
|
48
|
+
"@sisense/sdk-data": "^1.17.1",
|
|
49
|
+
"@sisense/sdk-tracking": "^1.17.1",
|
|
50
|
+
"@sisense/sdk-ui-preact": "^1.17.1",
|
|
51
51
|
"rxjs": "^7.8.1",
|
|
52
52
|
"ts-deepmerge": "^6.2.0",
|
|
53
53
|
"tslib": "^2.3.0"
|