@sisense/sdk-ui-angular 1.17.1 → 1.18.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/esm2020/lib/components/charts/areamap-chart.component.mjs +4 -2
- package/dist/esm2020/lib/components/charts/bar-chart.component.mjs +4 -2
- package/dist/esm2020/lib/components/charts/boxplot-chart.component.mjs +4 -2
- package/dist/esm2020/lib/components/charts/chart.component.mjs +13 -11
- package/dist/esm2020/lib/components/filters/date-range-filter-tile.component.mjs +2 -2
- package/dist/esm2020/lib/components/filters/member-filter-tile.component.mjs +2 -2
- package/dist/esm2020/lib/components/widgets/dashboard-widget.component.mjs +4 -3
- package/dist/esm2020/version.mjs +2 -2
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs +27 -18
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs +27 -18
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/lib/components/charts/areamap-chart.component.d.ts +3 -1
- package/dist/lib/components/charts/bar-chart.component.d.ts +3 -1
- package/dist/lib/components/charts/boxplot-chart.component.d.ts +3 -1
- package/dist/lib/components/charts/chart.component.d.ts +12 -10
- package/dist/lib/components/filters/date-range-filter-tile.component.d.ts +1 -1
- package/dist/lib/components/filters/member-filter-tile.component.d.ts +1 -1
- package/dist/lib/components/widgets/dashboard-widget.component.d.ts +3 -2
- package/dist/lib/services/theme.service.d.ts +6 -0
- package/dist/package.json +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -12,7 +12,9 @@ import * as i0 from "@angular/core";
|
|
|
12
12
|
* [dataOptions]="areamapChart.dataOptions"
|
|
13
13
|
* [styleOptions]="areamapChart.styleOptions"
|
|
14
14
|
* (dataPointClick)="logArguments($event)"
|
|
15
|
-
* />
|
|
15
|
+
* />
|
|
16
|
+
* ```
|
|
17
|
+
*
|
|
16
18
|
* ```ts
|
|
17
19
|
import { Component } from '@angular/core';
|
|
18
20
|
import { measureFactory } from '@sisense/sdk-data';
|
|
@@ -17,7 +17,9 @@ import * as i0 from "@angular/core";
|
|
|
17
17
|
* (dataPointClick)="logArguments($event)"
|
|
18
18
|
* (dataPointContextMenu)="logArguments($event)"
|
|
19
19
|
* (dataPointsSelect)="logArguments($event)"
|
|
20
|
-
* />
|
|
20
|
+
* />
|
|
21
|
+
* ```
|
|
22
|
+
*
|
|
21
23
|
* ```ts
|
|
22
24
|
import { Component } from '@angular/core';
|
|
23
25
|
import { measureFactory, filterFactory } from '@sisense/sdk-data';
|
|
@@ -17,7 +17,9 @@ import * as i0 from "@angular/core";
|
|
|
17
17
|
* (dataPointClick)="logArguments($event)"
|
|
18
18
|
* (dataPointContextMenu)="logArguments($event)"
|
|
19
19
|
* (dataPointsSelect)="logArguments($event)"
|
|
20
|
-
* />
|
|
20
|
+
* />
|
|
21
|
+
* ```
|
|
22
|
+
*
|
|
21
23
|
* ```ts
|
|
22
24
|
import { Component } from '@angular/core';
|
|
23
25
|
import { filterFactory } from '@sisense/sdk-data';
|
|
@@ -10,6 +10,18 @@ import * as i0 from "@angular/core";
|
|
|
10
10
|
* @example
|
|
11
11
|
* An example of using the `Chart` component to
|
|
12
12
|
* plot a column chart of the Sample Healthcare data source hosted in a Sisense instance:
|
|
13
|
+
*
|
|
14
|
+
* ```html
|
|
15
|
+
* <!--Component HTML template in .component.html-->
|
|
16
|
+
* <csdk-chart
|
|
17
|
+
* [chartType]="chart.chartType"
|
|
18
|
+
* [dataSet]="chart.dataSet"
|
|
19
|
+
* [dataOptions]="chart.dataOptions"
|
|
20
|
+
* [filters]="chart.filters"
|
|
21
|
+
* [styleOptions]="chart.styleOptions"
|
|
22
|
+
* />
|
|
23
|
+
* ```
|
|
24
|
+
*
|
|
13
25
|
* ```ts
|
|
14
26
|
* // Component behavior in .component.ts
|
|
15
27
|
* chart = {
|
|
@@ -39,16 +51,6 @@ import * as i0 from "@angular/core";
|
|
|
39
51
|
* },
|
|
40
52
|
* };
|
|
41
53
|
* ```
|
|
42
|
-
* ```html
|
|
43
|
-
* <!--Component HTML template in .component.html-->
|
|
44
|
-
* <csdk-chart
|
|
45
|
-
* [chartType]="chart.chartType"
|
|
46
|
-
* [dataSet]="chart.dataSet"
|
|
47
|
-
* [dataOptions]="chart.dataOptions"
|
|
48
|
-
* [filters]="chart.filters"
|
|
49
|
-
* [styleOptions]="chart.styleOptions"
|
|
50
|
-
* />
|
|
51
|
-
* ```
|
|
52
54
|
*
|
|
53
55
|
* <img src="media://angular-chart-example.png" width="800px" />
|
|
54
56
|
*
|
|
@@ -43,7 +43,7 @@ import * as i0 from "@angular/core";
|
|
|
43
43
|
* };
|
|
44
44
|
* }
|
|
45
45
|
* ```
|
|
46
|
-
* <img src="media://angular-date-range-filter-tile-example.png" width="
|
|
46
|
+
* <img src="media://angular-date-range-filter-tile-example.png" width="600px" />
|
|
47
47
|
*
|
|
48
48
|
* @group Filter Tiles
|
|
49
49
|
*/
|
|
@@ -26,12 +26,13 @@ import * as i0 from "@angular/core";
|
|
|
26
26
|
*
|
|
27
27
|
* @Component({
|
|
28
28
|
* selector: 'app-widgets',
|
|
29
|
-
*
|
|
30
|
-
*
|
|
29
|
+
* templateUrl: './widgets.component.html',
|
|
30
|
+
* styleUrls: ['./widgets.component.scss'],
|
|
31
31
|
* })
|
|
32
32
|
* export class WidgetsComponent {
|
|
33
33
|
* widgetOid: string = '60f3e3e3e4b0e3e3e4b0e3e3';
|
|
34
34
|
* dashboardOid: string = '60f3e3e3e4b0e3e3e4b0e3e3';
|
|
35
|
+
* }
|
|
35
36
|
* ```
|
|
36
37
|
* @group Fusion Embed
|
|
37
38
|
* @fusionEmbed
|
|
@@ -101,6 +101,12 @@ export declare class ThemeService {
|
|
|
101
101
|
dividerLineWidth: number;
|
|
102
102
|
dividerLineColor: string;
|
|
103
103
|
};
|
|
104
|
+
filter: {
|
|
105
|
+
panel: {
|
|
106
|
+
titleColor: string;
|
|
107
|
+
backgroundColor: string;
|
|
108
|
+
};
|
|
109
|
+
};
|
|
104
110
|
aiChat: {
|
|
105
111
|
backgroundColor: string;
|
|
106
112
|
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.18.0";
|
|
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.18.0",
|
|
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.18.0",
|
|
49
|
+
"@sisense/sdk-tracking": "^1.18.0",
|
|
50
|
+
"@sisense/sdk-ui-preact": "^1.18.0",
|
|
51
51
|
"rxjs": "^7.8.1",
|
|
52
52
|
"ts-deepmerge": "^6.2.0",
|
|
53
53
|
"tslib": "^2.3.0"
|