@sisense/sdk-ui-angular 1.29.0 → 1.31.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/area-chart.component.mjs +3 -1
- package/dist/esm2020/lib/components/charts/area-range-chart.component.mjs +3 -1
- package/dist/esm2020/lib/components/charts/areamap-chart.component.mjs +3 -1
- package/dist/esm2020/lib/components/charts/bar-chart.component.mjs +3 -1
- package/dist/esm2020/lib/components/charts/boxplot-chart.component.mjs +3 -1
- package/dist/esm2020/lib/components/charts/chart.component.mjs +2 -1
- package/dist/esm2020/lib/components/charts/column-chart.component.mjs +3 -1
- package/dist/esm2020/lib/components/charts/funnel-chart.component.mjs +3 -1
- package/dist/esm2020/lib/components/charts/indicator-chart.component.mjs +3 -1
- package/dist/esm2020/lib/components/charts/line-chart.component.mjs +3 -1
- package/dist/esm2020/lib/components/charts/pie-chart.component.mjs +3 -1
- package/dist/esm2020/lib/components/charts/polar-chart.component.mjs +3 -1
- package/dist/esm2020/lib/components/charts/scatter-chart.component.mjs +3 -1
- package/dist/esm2020/lib/components/charts/scattermap-chart.component.mjs +3 -1
- package/dist/esm2020/lib/components/charts/sunburst-chart.component.mjs +3 -1
- package/dist/esm2020/lib/components/charts/table.component.mjs +5 -2
- package/dist/esm2020/lib/components/charts/treemap-chart.component.mjs +3 -1
- package/dist/esm2020/lib/components/filters/criteria-filter-tile.component.mjs +3 -3
- package/dist/esm2020/lib/components/filters/index.mjs +1 -2
- package/dist/esm2020/lib/components/widgets/chart-widget.component.mjs +8 -5
- package/dist/esm2020/lib/components/widgets/widget-by-id.component.mjs +5 -2
- package/dist/esm2020/lib/sdk-ui-core-exports.mjs +1 -1
- package/dist/esm2020/lib/sdk-ui.module.mjs +4 -8
- package/dist/esm2020/version.mjs +2 -2
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs +70 -91
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs +67 -89
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/lib/components/charts/table.component.d.ts +11 -1
- package/dist/lib/components/filters/criteria-filter-tile.component.d.ts +3 -3
- package/dist/lib/components/filters/index.d.ts +0 -1
- package/dist/lib/components/widgets/chart-widget.component.d.ts +12 -5
- package/dist/lib/components/widgets/widget-by-id.component.d.ts +11 -1
- package/dist/lib/sdk-ui-core-exports.d.ts +1 -1
- package/dist/lib/sdk-ui.module.d.ts +34 -35
- package/dist/package.json +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +4 -4
- package/dist/esm2020/lib/components/filters/basic-member-filter-tile.component.mjs +0 -62
- package/dist/lib/components/filters/basic-member-filter-tile.component.d.ts +0 -31
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { InjectionToken, Injectable, Inject, NgModule, Optional, EventEmitter, Component, ViewChild, Input, Output } from '@angular/core';
|
|
3
3
|
import { CommonModule } from '@angular/common';
|
|
4
|
-
import {
|
|
4
|
+
import { createContextProviderRenderer, CustomThemeProvider, CustomSisenseContextProvider, CustomPluginsProvider, createClientApplication, executeQuery, executeQueryByWidgetId, getDashboardModel, getDashboardModels, getWidgetModel, getHierarchyModels, getDefaultThemeSettings, getThemeSettingsByOid, ComponentAdapter, createElement, MemberFilterTile, DateRangeFilterTile, RelativeDateFilterTile, CriteriaFilterTile, Chart, Table, PivotTable, TableWidget, DashboardWidget, WidgetById, createWrapperElementHandler, createWrapperElement, DrilldownWidget, createComponentRenderer, ChartWidget, DashboardById, Dashboard, DrilldownBreadcrumbs, ContextMenu } from '@sisense/sdk-ui-preact';
|
|
5
5
|
export { boxWhiskerProcessResult, dashboardHelpers, dashboardModelTranslator, widgetModelTranslator } from '@sisense/sdk-ui-preact';
|
|
6
6
|
import { map, BehaviorSubject } from 'rxjs';
|
|
7
7
|
import { __decorate } from 'tslib';
|
|
@@ -9,77 +9,6 @@ import merge from 'ts-deepmerge';
|
|
|
9
9
|
import { getFilterListAndRelationsJaql } from '@sisense/sdk-data';
|
|
10
10
|
import { trackProductEvent } from '@sisense/sdk-tracking';
|
|
11
11
|
|
|
12
|
-
const rootId = 'preact';
|
|
13
|
-
const rootContentId = 'preactContent';
|
|
14
|
-
const template = `
|
|
15
|
-
<div #${rootId} style="width: 100%; height: 100%"></div>
|
|
16
|
-
`;
|
|
17
|
-
const templateWithContent = `
|
|
18
|
-
<div #${rootId} style="width: 100%; height: 100%">
|
|
19
|
-
<div #${rootContentId} style="width: 100%; height: 100%">
|
|
20
|
-
<ng-content></ng-content>
|
|
21
|
-
</div>
|
|
22
|
-
</div>
|
|
23
|
-
`;
|
|
24
|
-
|
|
25
|
-
/**
|
|
26
|
-
* Basic Member Filter Tile Component
|
|
27
|
-
*
|
|
28
|
-
* @internal
|
|
29
|
-
*/
|
|
30
|
-
class BasicMemberFilterTileComponent {
|
|
31
|
-
constructor() {
|
|
32
|
-
this.selectedMembersUpdated = new EventEmitter();
|
|
33
|
-
this.componentAdapter = new ComponentAdapter(() => this.createPreactComponent());
|
|
34
|
-
}
|
|
35
|
-
/** @internal */
|
|
36
|
-
ngAfterViewInit() {
|
|
37
|
-
this.componentAdapter.render(this.preactRef.nativeElement);
|
|
38
|
-
}
|
|
39
|
-
/** @internal */
|
|
40
|
-
ngOnChanges() {
|
|
41
|
-
if (this.preactRef) {
|
|
42
|
-
this.componentAdapter.render(this.preactRef.nativeElement);
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
/** @internal */
|
|
46
|
-
ngOnDestroy() {
|
|
47
|
-
this.componentAdapter.destroy();
|
|
48
|
-
}
|
|
49
|
-
createPreactComponent() {
|
|
50
|
-
const props = {
|
|
51
|
-
allMembers: this.allMembers,
|
|
52
|
-
initialSelectedMembers: this.initialSelectedMembers,
|
|
53
|
-
title: this.title,
|
|
54
|
-
maxAllowedMembers: this.maxAllowedMembers,
|
|
55
|
-
onUpdateSelectedMembers: (members) => this.selectedMembersUpdated.emit(members),
|
|
56
|
-
};
|
|
57
|
-
return createElement(BasicMemberFilterTile, props);
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
BasicMemberFilterTileComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BasicMemberFilterTileComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
61
|
-
BasicMemberFilterTileComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: BasicMemberFilterTileComponent, selector: "csdk-basic-member-filter-tile", inputs: { title: "title", allMembers: "allMembers", initialSelectedMembers: "initialSelectedMembers", maxAllowedMembers: "maxAllowedMembers" }, outputs: { selectedMembersUpdated: "selectedMembersUpdated" }, viewQueries: [{ propertyName: "preactRef", first: true, predicate: ["preact"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "\n <div #preact style=\"width: 100%; height: 100%\"></div>\n", isInline: true });
|
|
62
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BasicMemberFilterTileComponent, decorators: [{
|
|
63
|
-
type: Component,
|
|
64
|
-
args: [{
|
|
65
|
-
selector: 'csdk-basic-member-filter-tile',
|
|
66
|
-
template,
|
|
67
|
-
}]
|
|
68
|
-
}], ctorParameters: function () { return []; }, propDecorators: { preactRef: [{
|
|
69
|
-
type: ViewChild,
|
|
70
|
-
args: [rootId]
|
|
71
|
-
}], title: [{
|
|
72
|
-
type: Input
|
|
73
|
-
}], allMembers: [{
|
|
74
|
-
type: Input
|
|
75
|
-
}], initialSelectedMembers: [{
|
|
76
|
-
type: Input
|
|
77
|
-
}], maxAllowedMembers: [{
|
|
78
|
-
type: Input
|
|
79
|
-
}], selectedMembersUpdated: [{
|
|
80
|
-
type: Output
|
|
81
|
-
}] } });
|
|
82
|
-
|
|
83
12
|
/**
|
|
84
13
|
* Creates theme context connector
|
|
85
14
|
*
|
|
@@ -144,6 +73,19 @@ const createPluginsContextConnector = (pluginsService) => {
|
|
|
144
73
|
};
|
|
145
74
|
};
|
|
146
75
|
|
|
76
|
+
const rootId = 'preact';
|
|
77
|
+
const rootContentId = 'preactContent';
|
|
78
|
+
const template = `
|
|
79
|
+
<div #${rootId} style="width: 100%; height: 100%"></div>
|
|
80
|
+
`;
|
|
81
|
+
const templateWithContent = `
|
|
82
|
+
<div #${rootId} style="width: 100%; height: 100%">
|
|
83
|
+
<div #${rootContentId} style="width: 100%; height: 100%">
|
|
84
|
+
<ng-content></ng-content>
|
|
85
|
+
</div>
|
|
86
|
+
</div>
|
|
87
|
+
`;
|
|
88
|
+
|
|
147
89
|
/**
|
|
148
90
|
* Token used to inject {@link SisenseContextConfig} into your application
|
|
149
91
|
*
|
|
@@ -448,7 +390,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
448
390
|
}]
|
|
449
391
|
}], ctorParameters: function () { return [{ type: SisenseContextService }]; } });
|
|
450
392
|
|
|
451
|
-
var packageVersion = '1.
|
|
393
|
+
var packageVersion = '1.31.0';
|
|
452
394
|
|
|
453
395
|
function Trackable(target, propertyKey, descriptor) {
|
|
454
396
|
const originalMethod = descriptor.value;
|
|
@@ -989,11 +931,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
989
931
|
* export class FiltersComponent {
|
|
990
932
|
* DM = DM;
|
|
991
933
|
* title: 'Room Number',
|
|
992
|
-
* filter: filterFactory.lessThan(DM.Rooms.Room_number, 200)
|
|
934
|
+
* filter: filterFactory.lessThan(DM.Rooms.Room_number, 200) ,
|
|
993
935
|
* setFilter({ filter }: { filter: Filter | null }) {
|
|
994
936
|
* console.log(filter);
|
|
995
937
|
* if (filter) {
|
|
996
|
-
* this.filter = filter
|
|
938
|
+
* this.filter = filter ;
|
|
997
939
|
* }
|
|
998
940
|
* },
|
|
999
941
|
* }
|
|
@@ -1210,6 +1152,7 @@ class ChartComponent {
|
|
|
1210
1152
|
highlights: this.highlights,
|
|
1211
1153
|
styleOptions: this.styleOptions,
|
|
1212
1154
|
onBeforeRender: this.beforeRender?.bind(this),
|
|
1155
|
+
onDataReady: this.dataReady?.bind(this),
|
|
1213
1156
|
onDataPointClick: (...[point, nativeEvent]) => this.dataPointClick.emit({ point, nativeEvent }),
|
|
1214
1157
|
onDataPointContextMenu: (...[point, nativeEvent]) => this.dataPointContextMenu.emit({ point, nativeEvent }),
|
|
1215
1158
|
onDataPointsSelected: (...[points, nativeEvent]) => this.dataPointsSelect.emit({ points, nativeEvent }),
|
|
@@ -1316,6 +1259,7 @@ class TableComponent {
|
|
|
1316
1259
|
dataOptions: this.dataOptions,
|
|
1317
1260
|
filters: this.filters,
|
|
1318
1261
|
styleOptions: this.styleOptions,
|
|
1262
|
+
onDataReady: this.dataReady,
|
|
1319
1263
|
};
|
|
1320
1264
|
return createElement(Table, props);
|
|
1321
1265
|
}
|
|
@@ -1325,7 +1269,7 @@ class TableComponent {
|
|
|
1325
1269
|
}
|
|
1326
1270
|
}
|
|
1327
1271
|
TableComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TableComponent, deps: [{ token: SisenseContextService }, { token: ThemeService }], target: i0.ɵɵFactoryTarget.Component });
|
|
1328
|
-
TableComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: TableComponent, selector: "csdk-table", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", styleOptions: "styleOptions" }, viewQueries: [{ propertyName: "preactRef", first: true, predicate: ["preact"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "\n <div #preact style=\"width: 100%; height: 100%\"></div>\n", isInline: true });
|
|
1272
|
+
TableComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: TableComponent, selector: "csdk-table", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", styleOptions: "styleOptions", dataReady: "dataReady" }, viewQueries: [{ propertyName: "preactRef", first: true, predicate: ["preact"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "\n <div #preact style=\"width: 100%; height: 100%\"></div>\n", isInline: true });
|
|
1329
1273
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TableComponent, decorators: [{
|
|
1330
1274
|
type: Component,
|
|
1331
1275
|
args: [{
|
|
@@ -1343,6 +1287,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1343
1287
|
type: Input
|
|
1344
1288
|
}], styleOptions: [{
|
|
1345
1289
|
type: Input
|
|
1290
|
+
}], dataReady: [{
|
|
1291
|
+
type: Input
|
|
1346
1292
|
}] } });
|
|
1347
1293
|
|
|
1348
1294
|
/**
|
|
@@ -1434,6 +1380,7 @@ ColumnChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
|
|
|
1434
1380
|
[highlights]="highlights"
|
|
1435
1381
|
[styleOptions]="styleOptions"
|
|
1436
1382
|
[beforeRender]="beforeRender"
|
|
1383
|
+
[dataReady]="dataReady"
|
|
1437
1384
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
1438
1385
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
1439
1386
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -1452,6 +1399,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1452
1399
|
[highlights]="highlights"
|
|
1453
1400
|
[styleOptions]="styleOptions"
|
|
1454
1401
|
[beforeRender]="beforeRender"
|
|
1402
|
+
[dataReady]="dataReady"
|
|
1455
1403
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
1456
1404
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
1457
1405
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -1570,6 +1518,7 @@ BarChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", vers
|
|
|
1570
1518
|
[highlights]="highlights"
|
|
1571
1519
|
[styleOptions]="styleOptions"
|
|
1572
1520
|
[beforeRender]="beforeRender"
|
|
1521
|
+
[dataReady]="dataReady"
|
|
1573
1522
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
1574
1523
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
1575
1524
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -1588,6 +1537,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1588
1537
|
[highlights]="highlights"
|
|
1589
1538
|
[styleOptions]="styleOptions"
|
|
1590
1539
|
[beforeRender]="beforeRender"
|
|
1540
|
+
[dataReady]="dataReady"
|
|
1591
1541
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
1592
1542
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
1593
1543
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -1705,6 +1655,7 @@ AreaChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ver
|
|
|
1705
1655
|
[highlights]="highlights"
|
|
1706
1656
|
[styleOptions]="styleOptions"
|
|
1707
1657
|
[beforeRender]="beforeRender"
|
|
1658
|
+
[dataReady]="dataReady"
|
|
1708
1659
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
1709
1660
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
1710
1661
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -1723,6 +1674,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1723
1674
|
[highlights]="highlights"
|
|
1724
1675
|
[styleOptions]="styleOptions"
|
|
1725
1676
|
[beforeRender]="beforeRender"
|
|
1677
|
+
[dataReady]="dataReady"
|
|
1726
1678
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
1727
1679
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
1728
1680
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -1838,6 +1790,7 @@ LineChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ver
|
|
|
1838
1790
|
[highlights]="highlights"
|
|
1839
1791
|
[styleOptions]="styleOptions"
|
|
1840
1792
|
[beforeRender]="beforeRender"
|
|
1793
|
+
[dataReady]="dataReady"
|
|
1841
1794
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
1842
1795
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
1843
1796
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -1856,6 +1809,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1856
1809
|
[highlights]="highlights"
|
|
1857
1810
|
[styleOptions]="styleOptions"
|
|
1858
1811
|
[beforeRender]="beforeRender"
|
|
1812
|
+
[dataReady]="dataReady"
|
|
1859
1813
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
1860
1814
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
1861
1815
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -1959,6 +1913,7 @@ IndicatorChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0"
|
|
|
1959
1913
|
[highlights]="highlights"
|
|
1960
1914
|
[styleOptions]="styleOptions"
|
|
1961
1915
|
[beforeRender]="beforeRender"
|
|
1916
|
+
[dataReady]="dataReady"
|
|
1962
1917
|
/>
|
|
1963
1918
|
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
1964
1919
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: IndicatorChartComponent, decorators: [{
|
|
@@ -1974,6 +1929,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1974
1929
|
[highlights]="highlights"
|
|
1975
1930
|
[styleOptions]="styleOptions"
|
|
1976
1931
|
[beforeRender]="beforeRender"
|
|
1932
|
+
[dataReady]="dataReady"
|
|
1977
1933
|
/>
|
|
1978
1934
|
`,
|
|
1979
1935
|
}]
|
|
@@ -2084,6 +2040,7 @@ ScatterChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
2084
2040
|
[highlights]="highlights"
|
|
2085
2041
|
[styleOptions]="styleOptions"
|
|
2086
2042
|
[beforeRender]="beforeRender"
|
|
2043
|
+
[dataReady]="dataReady"
|
|
2087
2044
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
2088
2045
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
2089
2046
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -2102,6 +2059,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2102
2059
|
[highlights]="highlights"
|
|
2103
2060
|
[styleOptions]="styleOptions"
|
|
2104
2061
|
[beforeRender]="beforeRender"
|
|
2062
|
+
[dataReady]="dataReady"
|
|
2105
2063
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
2106
2064
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
2107
2065
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -2219,6 +2177,7 @@ PieChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", vers
|
|
|
2219
2177
|
[highlights]="highlights"
|
|
2220
2178
|
[styleOptions]="styleOptions"
|
|
2221
2179
|
[beforeRender]="beforeRender"
|
|
2180
|
+
[dataReady]="dataReady"
|
|
2222
2181
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
2223
2182
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
2224
2183
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -2237,6 +2196,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2237
2196
|
[highlights]="highlights"
|
|
2238
2197
|
[styleOptions]="styleOptions"
|
|
2239
2198
|
[beforeRender]="beforeRender"
|
|
2199
|
+
[dataReady]="dataReady"
|
|
2240
2200
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
2241
2201
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
2242
2202
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -2352,6 +2312,7 @@ FunnelChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
|
|
|
2352
2312
|
[highlights]="highlights"
|
|
2353
2313
|
[styleOptions]="styleOptions"
|
|
2354
2314
|
[beforeRender]="beforeRender"
|
|
2315
|
+
[dataReady]="dataReady"
|
|
2355
2316
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
2356
2317
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
2357
2318
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -2370,6 +2331,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2370
2331
|
[highlights]="highlights"
|
|
2371
2332
|
[styleOptions]="styleOptions"
|
|
2372
2333
|
[beforeRender]="beforeRender"
|
|
2334
|
+
[dataReady]="dataReady"
|
|
2373
2335
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
2374
2336
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
2375
2337
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -2486,6 +2448,7 @@ PolarChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ve
|
|
|
2486
2448
|
[highlights]="highlights"
|
|
2487
2449
|
[styleOptions]="styleOptions"
|
|
2488
2450
|
[beforeRender]="beforeRender"
|
|
2451
|
+
[dataReady]="dataReady"
|
|
2489
2452
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
2490
2453
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
2491
2454
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -2504,6 +2467,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2504
2467
|
[highlights]="highlights"
|
|
2505
2468
|
[styleOptions]="styleOptions"
|
|
2506
2469
|
[beforeRender]="beforeRender"
|
|
2470
|
+
[dataReady]="dataReady"
|
|
2507
2471
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
2508
2472
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
2509
2473
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -2621,6 +2585,7 @@ TreemapChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
2621
2585
|
[highlights]="highlights"
|
|
2622
2586
|
[styleOptions]="styleOptions"
|
|
2623
2587
|
[beforeRender]="beforeRender"
|
|
2588
|
+
[dataReady]="dataReady"
|
|
2624
2589
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
2625
2590
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
2626
2591
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -2639,6 +2604,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2639
2604
|
[highlights]="highlights"
|
|
2640
2605
|
[styleOptions]="styleOptions"
|
|
2641
2606
|
[beforeRender]="beforeRender"
|
|
2607
|
+
[dataReady]="dataReady"
|
|
2642
2608
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
2643
2609
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
2644
2610
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -2756,6 +2722,7 @@ SunburstChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
2756
2722
|
[highlights]="highlights"
|
|
2757
2723
|
[styleOptions]="styleOptions"
|
|
2758
2724
|
[beforeRender]="beforeRender"
|
|
2725
|
+
[dataReady]="dataReady"
|
|
2759
2726
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
2760
2727
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
2761
2728
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -2774,6 +2741,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2774
2741
|
[highlights]="highlights"
|
|
2775
2742
|
[styleOptions]="styleOptions"
|
|
2776
2743
|
[beforeRender]="beforeRender"
|
|
2744
|
+
[dataReady]="dataReady"
|
|
2777
2745
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
2778
2746
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
2779
2747
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -2885,6 +2853,7 @@ BoxplotChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
2885
2853
|
[highlights]="highlights"
|
|
2886
2854
|
[styleOptions]="styleOptions"
|
|
2887
2855
|
[beforeRender]="beforeRender"
|
|
2856
|
+
[dataReady]="dataReady"
|
|
2888
2857
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
2889
2858
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
2890
2859
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -2903,6 +2872,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2903
2872
|
[highlights]="highlights"
|
|
2904
2873
|
[styleOptions]="styleOptions"
|
|
2905
2874
|
[beforeRender]="beforeRender"
|
|
2875
|
+
[dataReady]="dataReady"
|
|
2906
2876
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
2907
2877
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
2908
2878
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -3002,6 +2972,7 @@ ScattermapChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0
|
|
|
3002
2972
|
[filters]="filters"
|
|
3003
2973
|
[highlights]="highlights"
|
|
3004
2974
|
[styleOptions]="styleOptions"
|
|
2975
|
+
[dataReady]="dataReady"
|
|
3005
2976
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
3006
2977
|
/>
|
|
3007
2978
|
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
@@ -3017,6 +2988,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3017
2988
|
[filters]="filters"
|
|
3018
2989
|
[highlights]="highlights"
|
|
3019
2990
|
[styleOptions]="styleOptions"
|
|
2991
|
+
[dataReady]="dataReady"
|
|
3020
2992
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
3021
2993
|
/>
|
|
3022
2994
|
`,
|
|
@@ -3102,6 +3074,7 @@ AreamapChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
3102
3074
|
[filters]="filters"
|
|
3103
3075
|
[highlights]="highlights"
|
|
3104
3076
|
[styleOptions]="styleOptions"
|
|
3077
|
+
[dataReady]="dataReady"
|
|
3105
3078
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
3106
3079
|
/>
|
|
3107
3080
|
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
@@ -3117,6 +3090,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3117
3090
|
[filters]="filters"
|
|
3118
3091
|
[highlights]="highlights"
|
|
3119
3092
|
[styleOptions]="styleOptions"
|
|
3093
|
+
[dataReady]="dataReady"
|
|
3120
3094
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
3121
3095
|
/>
|
|
3122
3096
|
`,
|
|
@@ -3353,6 +3327,7 @@ AreaRangeChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0"
|
|
|
3353
3327
|
[highlights]="highlights"
|
|
3354
3328
|
[styleOptions]="styleOptions"
|
|
3355
3329
|
[beforeRender]="beforeRender"
|
|
3330
|
+
[dataReady]="dataReady"
|
|
3356
3331
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
3357
3332
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
3358
3333
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -3371,6 +3346,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3371
3346
|
[highlights]="highlights"
|
|
3372
3347
|
[styleOptions]="styleOptions"
|
|
3373
3348
|
[beforeRender]="beforeRender"
|
|
3349
|
+
[dataReady]="dataReady"
|
|
3374
3350
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
3375
3351
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
3376
3352
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -3671,6 +3647,7 @@ class WidgetByIdComponent {
|
|
|
3671
3647
|
styleOptions: this.styleOptions,
|
|
3672
3648
|
highlightSelectionDisabled: this.highlightSelectionDisabled,
|
|
3673
3649
|
drilldownOptions: this.drilldownOptions,
|
|
3650
|
+
onDataReady: this.dataReady?.bind(this),
|
|
3674
3651
|
};
|
|
3675
3652
|
return createElement(WidgetById, props);
|
|
3676
3653
|
}
|
|
@@ -3680,7 +3657,7 @@ class WidgetByIdComponent {
|
|
|
3680
3657
|
}
|
|
3681
3658
|
}
|
|
3682
3659
|
WidgetByIdComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WidgetByIdComponent, deps: [{ token: SisenseContextService }, { token: ThemeService }], target: i0.ɵɵFactoryTarget.Component });
|
|
3683
|
-
WidgetByIdComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: WidgetByIdComponent, selector: "csdk-widget-by-id", inputs: { widgetOid: "widgetOid", dashboardOid: "dashboardOid", filters: "filters", highlights: "highlights", filtersMergeStrategy: "filtersMergeStrategy", includeDashboardFilters: "includeDashboardFilters", title: "title", description: "description", styleOptions: "styleOptions", highlightSelectionDisabled: "highlightSelectionDisabled", drilldownOptions: "drilldownOptions" }, viewQueries: [{ propertyName: "preactRef", first: true, predicate: ["preact"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "\n <div #preact style=\"width: 100%; height: 100%\"></div>\n", isInline: true });
|
|
3660
|
+
WidgetByIdComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: WidgetByIdComponent, selector: "csdk-widget-by-id", inputs: { widgetOid: "widgetOid", dashboardOid: "dashboardOid", filters: "filters", highlights: "highlights", filtersMergeStrategy: "filtersMergeStrategy", includeDashboardFilters: "includeDashboardFilters", title: "title", description: "description", styleOptions: "styleOptions", highlightSelectionDisabled: "highlightSelectionDisabled", drilldownOptions: "drilldownOptions", dataReady: "dataReady" }, viewQueries: [{ propertyName: "preactRef", first: true, predicate: ["preact"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "\n <div #preact style=\"width: 100%; height: 100%\"></div>\n", isInline: true });
|
|
3684
3661
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WidgetByIdComponent, decorators: [{
|
|
3685
3662
|
type: Component,
|
|
3686
3663
|
args: [{
|
|
@@ -3712,6 +3689,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3712
3689
|
type: Input
|
|
3713
3690
|
}], drilldownOptions: [{
|
|
3714
3691
|
type: Input
|
|
3692
|
+
}], dataReady: [{
|
|
3693
|
+
type: Input
|
|
3715
3694
|
}] } });
|
|
3716
3695
|
|
|
3717
3696
|
/**
|
|
@@ -3952,19 +3931,19 @@ class ChartWidgetComponent {
|
|
|
3952
3931
|
this.sisenseContextService = sisenseContextService;
|
|
3953
3932
|
this.themeService = themeService;
|
|
3954
3933
|
/**
|
|
3955
|
-
* {@inheritDoc @sisense/sdk-ui!
|
|
3934
|
+
* {@inheritDoc @sisense/sdk-ui!ChartWidgetProps.onDataPointClick}
|
|
3956
3935
|
*
|
|
3957
3936
|
* @category Callbacks
|
|
3958
3937
|
*/
|
|
3959
3938
|
this.dataPointClick = new EventEmitter();
|
|
3960
3939
|
/**
|
|
3961
|
-
* {@inheritDoc @sisense/sdk-ui!
|
|
3940
|
+
* {@inheritDoc @sisense/sdk-ui!ChartWidgetProps.onDataPointContextMenu}
|
|
3962
3941
|
*
|
|
3963
3942
|
* @category Callbacks
|
|
3964
3943
|
*/
|
|
3965
3944
|
this.dataPointContextMenu = new EventEmitter();
|
|
3966
3945
|
/**
|
|
3967
|
-
* {@inheritDoc @sisense/sdk-ui!
|
|
3946
|
+
* {@inheritDoc @sisense/sdk-ui!ChartWidgetProps.onDataPointsSelected}
|
|
3968
3947
|
*
|
|
3969
3948
|
* @category Callbacks
|
|
3970
3949
|
*/
|
|
@@ -3997,6 +3976,7 @@ class ChartWidgetComponent {
|
|
|
3997
3976
|
description: this.description,
|
|
3998
3977
|
highlightSelectionDisabled: this.highlightSelectionDisabled,
|
|
3999
3978
|
onBeforeRender: this.beforeRender?.bind(this),
|
|
3979
|
+
onDataReady: this.dataReady?.bind(this),
|
|
4000
3980
|
onDataPointClick: (...[point, nativeEvent]) => this.dataPointClick.emit({ point, nativeEvent }),
|
|
4001
3981
|
onDataPointContextMenu: (...[point, nativeEvent]) => this.dataPointContextMenu.emit({ point, nativeEvent }),
|
|
4002
3982
|
onDataPointsSelected: (...[points, nativeEvent]) => this.dataPointsSelect.emit({ points, nativeEvent }),
|
|
@@ -4009,7 +3989,7 @@ class ChartWidgetComponent {
|
|
|
4009
3989
|
}
|
|
4010
3990
|
}
|
|
4011
3991
|
ChartWidgetComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWidgetComponent, deps: [{ token: SisenseContextService }, { token: ThemeService }], target: i0.ɵɵFactoryTarget.Component });
|
|
4012
|
-
ChartWidgetComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ChartWidgetComponent, selector: "csdk-chart-widget", inputs: { chartType: "chartType", dataSource: "dataSource", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions", drilldownOptions: "drilldownOptions", title: "title", description: "description", highlightSelectionDisabled: "highlightSelectionDisabled", beforeRender: "beforeRender" }, outputs: { dataPointClick: "dataPointClick", dataPointContextMenu: "dataPointContextMenu", dataPointsSelect: "dataPointsSelect" }, viewQueries: [{ propertyName: "preactRef", first: true, predicate: ["preact"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "\n <div #preact style=\"width: 100%; height: 100%\"></div>\n", isInline: true });
|
|
3992
|
+
ChartWidgetComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ChartWidgetComponent, selector: "csdk-chart-widget", inputs: { chartType: "chartType", dataSource: "dataSource", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions", drilldownOptions: "drilldownOptions", title: "title", description: "description", highlightSelectionDisabled: "highlightSelectionDisabled", beforeRender: "beforeRender", dataReady: "dataReady" }, outputs: { dataPointClick: "dataPointClick", dataPointContextMenu: "dataPointContextMenu", dataPointsSelect: "dataPointsSelect" }, viewQueries: [{ propertyName: "preactRef", first: true, predicate: ["preact"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "\n <div #preact style=\"width: 100%; height: 100%\"></div>\n", isInline: true });
|
|
4013
3993
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWidgetComponent, decorators: [{
|
|
4014
3994
|
type: Component,
|
|
4015
3995
|
args: [{
|
|
@@ -4041,6 +4021,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4041
4021
|
type: Input
|
|
4042
4022
|
}], beforeRender: [{
|
|
4043
4023
|
type: Input
|
|
4024
|
+
}], dataReady: [{
|
|
4025
|
+
type: Input
|
|
4044
4026
|
}], dataPointClick: [{
|
|
4045
4027
|
type: Output
|
|
4046
4028
|
}], dataPointContextMenu: [{
|
|
@@ -4506,8 +4488,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4506
4488
|
class SdkUiModule {
|
|
4507
4489
|
}
|
|
4508
4490
|
SdkUiModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SdkUiModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4509
|
-
SdkUiModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: SdkUiModule, declarations: [
|
|
4510
|
-
ChartComponent,
|
|
4491
|
+
SdkUiModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: SdkUiModule, declarations: [ChartComponent,
|
|
4511
4492
|
TableComponent,
|
|
4512
4493
|
ChartWidgetComponent,
|
|
4513
4494
|
ColumnChartComponent,
|
|
@@ -4537,8 +4518,7 @@ SdkUiModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "1
|
|
|
4537
4518
|
AreamapChartComponent,
|
|
4538
4519
|
PivotTableComponent,
|
|
4539
4520
|
DashboardByIdComponent,
|
|
4540
|
-
DashboardComponent], imports: [CommonModule, DecoratorsModule], exports: [
|
|
4541
|
-
ChartComponent,
|
|
4521
|
+
DashboardComponent], imports: [CommonModule, DecoratorsModule], exports: [ChartComponent,
|
|
4542
4522
|
TableComponent,
|
|
4543
4523
|
ChartWidgetComponent,
|
|
4544
4524
|
ColumnChartComponent,
|
|
@@ -4574,7 +4554,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4574
4554
|
type: NgModule,
|
|
4575
4555
|
args: [{
|
|
4576
4556
|
declarations: [
|
|
4577
|
-
BasicMemberFilterTileComponent,
|
|
4578
4557
|
ChartComponent,
|
|
4579
4558
|
TableComponent,
|
|
4580
4559
|
ChartWidgetComponent,
|
|
@@ -4609,7 +4588,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4609
4588
|
],
|
|
4610
4589
|
imports: [CommonModule, DecoratorsModule],
|
|
4611
4590
|
exports: [
|
|
4612
|
-
BasicMemberFilterTileComponent,
|
|
4613
4591
|
ChartComponent,
|
|
4614
4592
|
TableComponent,
|
|
4615
4593
|
ChartWidgetComponent,
|
|
@@ -4680,5 +4658,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4680
4658
|
* Generated bundle index. Do not edit.
|
|
4681
4659
|
*/
|
|
4682
4660
|
|
|
4683
|
-
export { AreaChartComponent, AreaRangeChartComponent, AreamapChartComponent, BarChartComponent,
|
|
4661
|
+
export { AreaChartComponent, AreaRangeChartComponent, AreamapChartComponent, BarChartComponent, BoxplotChartComponent, ChartComponent, ChartWidgetComponent, ColumnChartComponent, ContextMenuComponent, CriteriaFilterTileComponent, DashboardByIdComponent, DashboardComponent, DashboardService, DashboardWidgetComponent, DateRangeFilterTileComponent, DrilldownBreadcrumbsComponent, DrilldownWidgetComponent, FunnelChartComponent, HierarchyService, IndicatorChartComponent, LineChartComponent, MemberFilterTileComponent, PieChartComponent, PivotTableComponent, PluginsService, PolarChartComponent, QueryService, RelativeDateFilterTileComponent, SISENSE_CONTEXT_CONFIG_TOKEN, ScatterChartComponent, ScattermapChartComponent, SdkUiModule, SisenseContextService, SunburstChartComponent, THEME_CONFIG_TOKEN, TableComponent, TableWidgetComponent, ThemeService, TreemapChartComponent, WidgetByIdComponent, WidgetService };
|
|
4684
4662
|
//# sourceMappingURL=sisense-sdk-ui-angular.mjs.map
|