@sisense/sdk-ui-angular 1.17.0 → 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
|
@@ -345,7 +345,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
345
345
|
}]
|
|
346
346
|
}], ctorParameters: function () { return [{ type: SisenseContextService }]; } });
|
|
347
347
|
|
|
348
|
-
var packageVersion = '1.
|
|
348
|
+
var packageVersion = '1.18.0';
|
|
349
349
|
|
|
350
350
|
function Trackable(target, propertyKey, descriptor) {
|
|
351
351
|
const originalMethod = descriptor.value;
|
|
@@ -518,7 +518,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
518
518
|
* };
|
|
519
519
|
* }
|
|
520
520
|
* ```
|
|
521
|
-
* <img src="media://angular-member-filter-tile-example.png" width="
|
|
521
|
+
* <img src="media://angular-member-filter-tile-example.png" width="400px" />
|
|
522
522
|
*
|
|
523
523
|
* @group Filter Tiles
|
|
524
524
|
*/
|
|
@@ -646,7 +646,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
646
646
|
* };
|
|
647
647
|
* }
|
|
648
648
|
* ```
|
|
649
|
-
* <img src="media://angular-date-range-filter-tile-example.png" width="
|
|
649
|
+
* <img src="media://angular-date-range-filter-tile-example.png" width="600px" />
|
|
650
650
|
*
|
|
651
651
|
* @group Filter Tiles
|
|
652
652
|
*/
|
|
@@ -747,6 +747,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
747
747
|
* @example
|
|
748
748
|
* An example of using the `Chart` component to
|
|
749
749
|
* plot a column chart of the Sample Healthcare data source hosted in a Sisense instance:
|
|
750
|
+
*
|
|
751
|
+
* ```html
|
|
752
|
+
* <!--Component HTML template in .component.html-->
|
|
753
|
+
* <csdk-chart
|
|
754
|
+
* [chartType]="chart.chartType"
|
|
755
|
+
* [dataSet]="chart.dataSet"
|
|
756
|
+
* [dataOptions]="chart.dataOptions"
|
|
757
|
+
* [filters]="chart.filters"
|
|
758
|
+
* [styleOptions]="chart.styleOptions"
|
|
759
|
+
* />
|
|
760
|
+
* ```
|
|
761
|
+
*
|
|
750
762
|
* ```ts
|
|
751
763
|
* // Component behavior in .component.ts
|
|
752
764
|
* chart = {
|
|
@@ -776,16 +788,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
776
788
|
* },
|
|
777
789
|
* };
|
|
778
790
|
* ```
|
|
779
|
-
* ```html
|
|
780
|
-
* <!--Component HTML template in .component.html-->
|
|
781
|
-
* <csdk-chart
|
|
782
|
-
* [chartType]="chart.chartType"
|
|
783
|
-
* [dataSet]="chart.dataSet"
|
|
784
|
-
* [dataOptions]="chart.dataOptions"
|
|
785
|
-
* [filters]="chart.filters"
|
|
786
|
-
* [styleOptions]="chart.styleOptions"
|
|
787
|
-
* />
|
|
788
|
-
* ```
|
|
789
791
|
*
|
|
790
792
|
* <img src="media://angular-chart-example.png" width="800px" />
|
|
791
793
|
*
|
|
@@ -1139,7 +1141,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1139
1141
|
* (dataPointClick)="logArguments($event)"
|
|
1140
1142
|
* (dataPointContextMenu)="logArguments($event)"
|
|
1141
1143
|
* (dataPointsSelect)="logArguments($event)"
|
|
1142
|
-
* />
|
|
1144
|
+
* />
|
|
1145
|
+
* ```
|
|
1146
|
+
*
|
|
1143
1147
|
* ```ts
|
|
1144
1148
|
import { Component } from '@angular/core';
|
|
1145
1149
|
import { measureFactory, filterFactory } from '@sisense/sdk-data';
|
|
@@ -2435,7 +2439,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2435
2439
|
* (dataPointClick)="logArguments($event)"
|
|
2436
2440
|
* (dataPointContextMenu)="logArguments($event)"
|
|
2437
2441
|
* (dataPointsSelect)="logArguments($event)"
|
|
2438
|
-
* />
|
|
2442
|
+
* />
|
|
2443
|
+
* ```
|
|
2444
|
+
*
|
|
2439
2445
|
* ```ts
|
|
2440
2446
|
import { Component } from '@angular/core';
|
|
2441
2447
|
import { filterFactory } from '@sisense/sdk-data';
|
|
@@ -2660,7 +2666,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2660
2666
|
* [dataOptions]="areamapChart.dataOptions"
|
|
2661
2667
|
* [styleOptions]="areamapChart.styleOptions"
|
|
2662
2668
|
* (dataPointClick)="logArguments($event)"
|
|
2663
|
-
* />
|
|
2669
|
+
* />
|
|
2670
|
+
* ```
|
|
2671
|
+
*
|
|
2664
2672
|
* ```ts
|
|
2665
2673
|
import { Component } from '@angular/core';
|
|
2666
2674
|
import { measureFactory } from '@sisense/sdk-data';
|
|
@@ -3126,12 +3134,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3126
3134
|
*
|
|
3127
3135
|
* @Component({
|
|
3128
3136
|
* selector: 'app-widgets',
|
|
3129
|
-
*
|
|
3130
|
-
*
|
|
3137
|
+
* templateUrl: './widgets.component.html',
|
|
3138
|
+
* styleUrls: ['./widgets.component.scss'],
|
|
3131
3139
|
* })
|
|
3132
3140
|
* export class WidgetsComponent {
|
|
3133
3141
|
* widgetOid: string = '60f3e3e3e4b0e3e3e4b0e3e3';
|
|
3134
3142
|
* dashboardOid: string = '60f3e3e3e4b0e3e3e4b0e3e3';
|
|
3143
|
+
* }
|
|
3135
3144
|
* ```
|
|
3136
3145
|
* @group Fusion Embed
|
|
3137
3146
|
* @fusionEmbed
|