@sisense/sdk-ui-angular 1.29.0 → 1.30.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 { __awaiter, __decorate } from 'tslib';
|
|
7
7
|
import { map, BehaviorSubject } from 'rxjs';
|
|
@@ -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
|
*
|
|
@@ -147,6 +76,19 @@ const createPluginsContextConnector = (pluginsService) => {
|
|
|
147
76
|
};
|
|
148
77
|
};
|
|
149
78
|
|
|
79
|
+
const rootId = 'preact';
|
|
80
|
+
const rootContentId = 'preactContent';
|
|
81
|
+
const template = `
|
|
82
|
+
<div #${rootId} style="width: 100%; height: 100%"></div>
|
|
83
|
+
`;
|
|
84
|
+
const templateWithContent = `
|
|
85
|
+
<div #${rootId} style="width: 100%; height: 100%">
|
|
86
|
+
<div #${rootContentId} style="width: 100%; height: 100%">
|
|
87
|
+
<ng-content></ng-content>
|
|
88
|
+
</div>
|
|
89
|
+
</div>
|
|
90
|
+
`;
|
|
91
|
+
|
|
150
92
|
/**
|
|
151
93
|
* Token used to inject {@link SisenseContextConfig} into your application
|
|
152
94
|
*
|
|
@@ -459,7 +401,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
459
401
|
}]
|
|
460
402
|
}], ctorParameters: function () { return [{ type: SisenseContextService }]; } });
|
|
461
403
|
|
|
462
|
-
var packageVersion = '1.
|
|
404
|
+
var packageVersion = '1.30.0';
|
|
463
405
|
|
|
464
406
|
function Trackable(target, propertyKey, descriptor) {
|
|
465
407
|
const originalMethod = descriptor.value;
|
|
@@ -1011,11 +953,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1011
953
|
* export class FiltersComponent {
|
|
1012
954
|
* DM = DM;
|
|
1013
955
|
* title: 'Room Number',
|
|
1014
|
-
* filter: filterFactory.lessThan(DM.Rooms.Room_number, 200)
|
|
956
|
+
* filter: filterFactory.lessThan(DM.Rooms.Room_number, 200) ,
|
|
1015
957
|
* setFilter({ filter }: { filter: Filter | null }) {
|
|
1016
958
|
* console.log(filter);
|
|
1017
959
|
* if (filter) {
|
|
1018
|
-
* this.filter = filter
|
|
960
|
+
* this.filter = filter ;
|
|
1019
961
|
* }
|
|
1020
962
|
* },
|
|
1021
963
|
* }
|
|
@@ -1224,7 +1166,7 @@ class ChartComponent {
|
|
|
1224
1166
|
}
|
|
1225
1167
|
}
|
|
1226
1168
|
createPreactComponent() {
|
|
1227
|
-
var _a;
|
|
1169
|
+
var _a, _b;
|
|
1228
1170
|
const props = {
|
|
1229
1171
|
chartType: this.chartType,
|
|
1230
1172
|
dataSet: this.dataSet,
|
|
@@ -1233,6 +1175,7 @@ class ChartComponent {
|
|
|
1233
1175
|
highlights: this.highlights,
|
|
1234
1176
|
styleOptions: this.styleOptions,
|
|
1235
1177
|
onBeforeRender: (_a = this.beforeRender) === null || _a === void 0 ? void 0 : _a.bind(this),
|
|
1178
|
+
onDataReady: (_b = this.dataReady) === null || _b === void 0 ? void 0 : _b.bind(this),
|
|
1236
1179
|
onDataPointClick: (...[point, nativeEvent]) => this.dataPointClick.emit({ point, nativeEvent }),
|
|
1237
1180
|
onDataPointContextMenu: (...[point, nativeEvent]) => this.dataPointContextMenu.emit({ point, nativeEvent }),
|
|
1238
1181
|
onDataPointsSelected: (...[points, nativeEvent]) => this.dataPointsSelect.emit({ points, nativeEvent }),
|
|
@@ -1339,6 +1282,7 @@ class TableComponent {
|
|
|
1339
1282
|
dataOptions: this.dataOptions,
|
|
1340
1283
|
filters: this.filters,
|
|
1341
1284
|
styleOptions: this.styleOptions,
|
|
1285
|
+
onDataReady: this.dataReady,
|
|
1342
1286
|
};
|
|
1343
1287
|
return createElement(Table, props);
|
|
1344
1288
|
}
|
|
@@ -1348,7 +1292,7 @@ class TableComponent {
|
|
|
1348
1292
|
}
|
|
1349
1293
|
}
|
|
1350
1294
|
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 });
|
|
1351
|
-
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 });
|
|
1295
|
+
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 });
|
|
1352
1296
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TableComponent, decorators: [{
|
|
1353
1297
|
type: Component,
|
|
1354
1298
|
args: [{
|
|
@@ -1366,6 +1310,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1366
1310
|
type: Input
|
|
1367
1311
|
}], styleOptions: [{
|
|
1368
1312
|
type: Input
|
|
1313
|
+
}], dataReady: [{
|
|
1314
|
+
type: Input
|
|
1369
1315
|
}] } });
|
|
1370
1316
|
|
|
1371
1317
|
/**
|
|
@@ -1457,6 +1403,7 @@ ColumnChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
|
|
|
1457
1403
|
[highlights]="highlights"
|
|
1458
1404
|
[styleOptions]="styleOptions"
|
|
1459
1405
|
[beforeRender]="beforeRender"
|
|
1406
|
+
[dataReady]="dataReady"
|
|
1460
1407
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
1461
1408
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
1462
1409
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -1475,6 +1422,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1475
1422
|
[highlights]="highlights"
|
|
1476
1423
|
[styleOptions]="styleOptions"
|
|
1477
1424
|
[beforeRender]="beforeRender"
|
|
1425
|
+
[dataReady]="dataReady"
|
|
1478
1426
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
1479
1427
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
1480
1428
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -1593,6 +1541,7 @@ BarChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", vers
|
|
|
1593
1541
|
[highlights]="highlights"
|
|
1594
1542
|
[styleOptions]="styleOptions"
|
|
1595
1543
|
[beforeRender]="beforeRender"
|
|
1544
|
+
[dataReady]="dataReady"
|
|
1596
1545
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
1597
1546
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
1598
1547
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -1611,6 +1560,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1611
1560
|
[highlights]="highlights"
|
|
1612
1561
|
[styleOptions]="styleOptions"
|
|
1613
1562
|
[beforeRender]="beforeRender"
|
|
1563
|
+
[dataReady]="dataReady"
|
|
1614
1564
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
1615
1565
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
1616
1566
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -1728,6 +1678,7 @@ AreaChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ver
|
|
|
1728
1678
|
[highlights]="highlights"
|
|
1729
1679
|
[styleOptions]="styleOptions"
|
|
1730
1680
|
[beforeRender]="beforeRender"
|
|
1681
|
+
[dataReady]="dataReady"
|
|
1731
1682
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
1732
1683
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
1733
1684
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -1746,6 +1697,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1746
1697
|
[highlights]="highlights"
|
|
1747
1698
|
[styleOptions]="styleOptions"
|
|
1748
1699
|
[beforeRender]="beforeRender"
|
|
1700
|
+
[dataReady]="dataReady"
|
|
1749
1701
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
1750
1702
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
1751
1703
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -1861,6 +1813,7 @@ LineChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ver
|
|
|
1861
1813
|
[highlights]="highlights"
|
|
1862
1814
|
[styleOptions]="styleOptions"
|
|
1863
1815
|
[beforeRender]="beforeRender"
|
|
1816
|
+
[dataReady]="dataReady"
|
|
1864
1817
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
1865
1818
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
1866
1819
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -1879,6 +1832,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1879
1832
|
[highlights]="highlights"
|
|
1880
1833
|
[styleOptions]="styleOptions"
|
|
1881
1834
|
[beforeRender]="beforeRender"
|
|
1835
|
+
[dataReady]="dataReady"
|
|
1882
1836
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
1883
1837
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
1884
1838
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -1982,6 +1936,7 @@ IndicatorChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0"
|
|
|
1982
1936
|
[highlights]="highlights"
|
|
1983
1937
|
[styleOptions]="styleOptions"
|
|
1984
1938
|
[beforeRender]="beforeRender"
|
|
1939
|
+
[dataReady]="dataReady"
|
|
1985
1940
|
/>
|
|
1986
1941
|
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
1987
1942
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: IndicatorChartComponent, decorators: [{
|
|
@@ -1997,6 +1952,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1997
1952
|
[highlights]="highlights"
|
|
1998
1953
|
[styleOptions]="styleOptions"
|
|
1999
1954
|
[beforeRender]="beforeRender"
|
|
1955
|
+
[dataReady]="dataReady"
|
|
2000
1956
|
/>
|
|
2001
1957
|
`,
|
|
2002
1958
|
}]
|
|
@@ -2107,6 +2063,7 @@ ScatterChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
2107
2063
|
[highlights]="highlights"
|
|
2108
2064
|
[styleOptions]="styleOptions"
|
|
2109
2065
|
[beforeRender]="beforeRender"
|
|
2066
|
+
[dataReady]="dataReady"
|
|
2110
2067
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
2111
2068
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
2112
2069
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -2125,6 +2082,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2125
2082
|
[highlights]="highlights"
|
|
2126
2083
|
[styleOptions]="styleOptions"
|
|
2127
2084
|
[beforeRender]="beforeRender"
|
|
2085
|
+
[dataReady]="dataReady"
|
|
2128
2086
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
2129
2087
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
2130
2088
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -2242,6 +2200,7 @@ PieChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", vers
|
|
|
2242
2200
|
[highlights]="highlights"
|
|
2243
2201
|
[styleOptions]="styleOptions"
|
|
2244
2202
|
[beforeRender]="beforeRender"
|
|
2203
|
+
[dataReady]="dataReady"
|
|
2245
2204
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
2246
2205
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
2247
2206
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -2260,6 +2219,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2260
2219
|
[highlights]="highlights"
|
|
2261
2220
|
[styleOptions]="styleOptions"
|
|
2262
2221
|
[beforeRender]="beforeRender"
|
|
2222
|
+
[dataReady]="dataReady"
|
|
2263
2223
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
2264
2224
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
2265
2225
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -2375,6 +2335,7 @@ FunnelChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
|
|
|
2375
2335
|
[highlights]="highlights"
|
|
2376
2336
|
[styleOptions]="styleOptions"
|
|
2377
2337
|
[beforeRender]="beforeRender"
|
|
2338
|
+
[dataReady]="dataReady"
|
|
2378
2339
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
2379
2340
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
2380
2341
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -2393,6 +2354,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2393
2354
|
[highlights]="highlights"
|
|
2394
2355
|
[styleOptions]="styleOptions"
|
|
2395
2356
|
[beforeRender]="beforeRender"
|
|
2357
|
+
[dataReady]="dataReady"
|
|
2396
2358
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
2397
2359
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
2398
2360
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -2509,6 +2471,7 @@ PolarChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ve
|
|
|
2509
2471
|
[highlights]="highlights"
|
|
2510
2472
|
[styleOptions]="styleOptions"
|
|
2511
2473
|
[beforeRender]="beforeRender"
|
|
2474
|
+
[dataReady]="dataReady"
|
|
2512
2475
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
2513
2476
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
2514
2477
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -2527,6 +2490,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2527
2490
|
[highlights]="highlights"
|
|
2528
2491
|
[styleOptions]="styleOptions"
|
|
2529
2492
|
[beforeRender]="beforeRender"
|
|
2493
|
+
[dataReady]="dataReady"
|
|
2530
2494
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
2531
2495
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
2532
2496
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -2644,6 +2608,7 @@ TreemapChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
2644
2608
|
[highlights]="highlights"
|
|
2645
2609
|
[styleOptions]="styleOptions"
|
|
2646
2610
|
[beforeRender]="beforeRender"
|
|
2611
|
+
[dataReady]="dataReady"
|
|
2647
2612
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
2648
2613
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
2649
2614
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -2662,6 +2627,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2662
2627
|
[highlights]="highlights"
|
|
2663
2628
|
[styleOptions]="styleOptions"
|
|
2664
2629
|
[beforeRender]="beforeRender"
|
|
2630
|
+
[dataReady]="dataReady"
|
|
2665
2631
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
2666
2632
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
2667
2633
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -2779,6 +2745,7 @@ SunburstChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
2779
2745
|
[highlights]="highlights"
|
|
2780
2746
|
[styleOptions]="styleOptions"
|
|
2781
2747
|
[beforeRender]="beforeRender"
|
|
2748
|
+
[dataReady]="dataReady"
|
|
2782
2749
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
2783
2750
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
2784
2751
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -2797,6 +2764,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2797
2764
|
[highlights]="highlights"
|
|
2798
2765
|
[styleOptions]="styleOptions"
|
|
2799
2766
|
[beforeRender]="beforeRender"
|
|
2767
|
+
[dataReady]="dataReady"
|
|
2800
2768
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
2801
2769
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
2802
2770
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -2908,6 +2876,7 @@ BoxplotChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
2908
2876
|
[highlights]="highlights"
|
|
2909
2877
|
[styleOptions]="styleOptions"
|
|
2910
2878
|
[beforeRender]="beforeRender"
|
|
2879
|
+
[dataReady]="dataReady"
|
|
2911
2880
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
2912
2881
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
2913
2882
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -2926,6 +2895,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2926
2895
|
[highlights]="highlights"
|
|
2927
2896
|
[styleOptions]="styleOptions"
|
|
2928
2897
|
[beforeRender]="beforeRender"
|
|
2898
|
+
[dataReady]="dataReady"
|
|
2929
2899
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
2930
2900
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
2931
2901
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -3025,6 +2995,7 @@ ScattermapChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0
|
|
|
3025
2995
|
[filters]="filters"
|
|
3026
2996
|
[highlights]="highlights"
|
|
3027
2997
|
[styleOptions]="styleOptions"
|
|
2998
|
+
[dataReady]="dataReady"
|
|
3028
2999
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
3029
3000
|
/>
|
|
3030
3001
|
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
@@ -3040,6 +3011,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3040
3011
|
[filters]="filters"
|
|
3041
3012
|
[highlights]="highlights"
|
|
3042
3013
|
[styleOptions]="styleOptions"
|
|
3014
|
+
[dataReady]="dataReady"
|
|
3043
3015
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
3044
3016
|
/>
|
|
3045
3017
|
`,
|
|
@@ -3125,6 +3097,7 @@ AreamapChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
3125
3097
|
[filters]="filters"
|
|
3126
3098
|
[highlights]="highlights"
|
|
3127
3099
|
[styleOptions]="styleOptions"
|
|
3100
|
+
[dataReady]="dataReady"
|
|
3128
3101
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
3129
3102
|
/>
|
|
3130
3103
|
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
@@ -3140,6 +3113,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3140
3113
|
[filters]="filters"
|
|
3141
3114
|
[highlights]="highlights"
|
|
3142
3115
|
[styleOptions]="styleOptions"
|
|
3116
|
+
[dataReady]="dataReady"
|
|
3143
3117
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
3144
3118
|
/>
|
|
3145
3119
|
`,
|
|
@@ -3376,6 +3350,7 @@ AreaRangeChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0"
|
|
|
3376
3350
|
[highlights]="highlights"
|
|
3377
3351
|
[styleOptions]="styleOptions"
|
|
3378
3352
|
[beforeRender]="beforeRender"
|
|
3353
|
+
[dataReady]="dataReady"
|
|
3379
3354
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
3380
3355
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
3381
3356
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -3394,6 +3369,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3394
3369
|
[highlights]="highlights"
|
|
3395
3370
|
[styleOptions]="styleOptions"
|
|
3396
3371
|
[beforeRender]="beforeRender"
|
|
3372
|
+
[dataReady]="dataReady"
|
|
3397
3373
|
(dataPointClick)="dataPointClick.emit($any($event))"
|
|
3398
3374
|
(dataPointContextMenu)="dataPointContextMenu.emit($any($event))"
|
|
3399
3375
|
(dataPointsSelect)="dataPointsSelect.emit($any($event))"
|
|
@@ -3682,6 +3658,7 @@ class WidgetByIdComponent {
|
|
|
3682
3658
|
}
|
|
3683
3659
|
/** @internal */
|
|
3684
3660
|
createPreactComponent() {
|
|
3661
|
+
var _a;
|
|
3685
3662
|
const props = {
|
|
3686
3663
|
widgetOid: this.widgetOid,
|
|
3687
3664
|
dashboardOid: this.dashboardOid,
|
|
@@ -3694,6 +3671,7 @@ class WidgetByIdComponent {
|
|
|
3694
3671
|
styleOptions: this.styleOptions,
|
|
3695
3672
|
highlightSelectionDisabled: this.highlightSelectionDisabled,
|
|
3696
3673
|
drilldownOptions: this.drilldownOptions,
|
|
3674
|
+
onDataReady: (_a = this.dataReady) === null || _a === void 0 ? void 0 : _a.bind(this),
|
|
3697
3675
|
};
|
|
3698
3676
|
return createElement(WidgetById, props);
|
|
3699
3677
|
}
|
|
@@ -3703,7 +3681,7 @@ class WidgetByIdComponent {
|
|
|
3703
3681
|
}
|
|
3704
3682
|
}
|
|
3705
3683
|
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 });
|
|
3706
|
-
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 });
|
|
3684
|
+
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 });
|
|
3707
3685
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WidgetByIdComponent, decorators: [{
|
|
3708
3686
|
type: Component,
|
|
3709
3687
|
args: [{
|
|
@@ -3735,6 +3713,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3735
3713
|
type: Input
|
|
3736
3714
|
}], drilldownOptions: [{
|
|
3737
3715
|
type: Input
|
|
3716
|
+
}], dataReady: [{
|
|
3717
|
+
type: Input
|
|
3738
3718
|
}] } });
|
|
3739
3719
|
|
|
3740
3720
|
/**
|
|
@@ -3969,19 +3949,19 @@ class ChartWidgetComponent {
|
|
|
3969
3949
|
this.sisenseContextService = sisenseContextService;
|
|
3970
3950
|
this.themeService = themeService;
|
|
3971
3951
|
/**
|
|
3972
|
-
* {@inheritDoc @sisense/sdk-ui!
|
|
3952
|
+
* {@inheritDoc @sisense/sdk-ui!ChartWidgetProps.onDataPointClick}
|
|
3973
3953
|
*
|
|
3974
3954
|
* @category Callbacks
|
|
3975
3955
|
*/
|
|
3976
3956
|
this.dataPointClick = new EventEmitter();
|
|
3977
3957
|
/**
|
|
3978
|
-
* {@inheritDoc @sisense/sdk-ui!
|
|
3958
|
+
* {@inheritDoc @sisense/sdk-ui!ChartWidgetProps.onDataPointContextMenu}
|
|
3979
3959
|
*
|
|
3980
3960
|
* @category Callbacks
|
|
3981
3961
|
*/
|
|
3982
3962
|
this.dataPointContextMenu = new EventEmitter();
|
|
3983
3963
|
/**
|
|
3984
|
-
* {@inheritDoc @sisense/sdk-ui!
|
|
3964
|
+
* {@inheritDoc @sisense/sdk-ui!ChartWidgetProps.onDataPointsSelected}
|
|
3985
3965
|
*
|
|
3986
3966
|
* @category Callbacks
|
|
3987
3967
|
*/
|
|
@@ -4002,7 +3982,7 @@ class ChartWidgetComponent {
|
|
|
4002
3982
|
}
|
|
4003
3983
|
}
|
|
4004
3984
|
createPreactComponent() {
|
|
4005
|
-
var _a;
|
|
3985
|
+
var _a, _b;
|
|
4006
3986
|
const props = {
|
|
4007
3987
|
chartType: this.chartType,
|
|
4008
3988
|
dataSource: this.dataSource,
|
|
@@ -4015,6 +3995,7 @@ class ChartWidgetComponent {
|
|
|
4015
3995
|
description: this.description,
|
|
4016
3996
|
highlightSelectionDisabled: this.highlightSelectionDisabled,
|
|
4017
3997
|
onBeforeRender: (_a = this.beforeRender) === null || _a === void 0 ? void 0 : _a.bind(this),
|
|
3998
|
+
onDataReady: (_b = this.dataReady) === null || _b === void 0 ? void 0 : _b.bind(this),
|
|
4018
3999
|
onDataPointClick: (...[point, nativeEvent]) => this.dataPointClick.emit({ point, nativeEvent }),
|
|
4019
4000
|
onDataPointContextMenu: (...[point, nativeEvent]) => this.dataPointContextMenu.emit({ point, nativeEvent }),
|
|
4020
4001
|
onDataPointsSelected: (...[points, nativeEvent]) => this.dataPointsSelect.emit({ points, nativeEvent }),
|
|
@@ -4027,7 +4008,7 @@ class ChartWidgetComponent {
|
|
|
4027
4008
|
}
|
|
4028
4009
|
}
|
|
4029
4010
|
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 });
|
|
4030
|
-
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 });
|
|
4011
|
+
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 });
|
|
4031
4012
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWidgetComponent, decorators: [{
|
|
4032
4013
|
type: Component,
|
|
4033
4014
|
args: [{
|
|
@@ -4059,6 +4040,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4059
4040
|
type: Input
|
|
4060
4041
|
}], beforeRender: [{
|
|
4061
4042
|
type: Input
|
|
4043
|
+
}], dataReady: [{
|
|
4044
|
+
type: Input
|
|
4062
4045
|
}], dataPointClick: [{
|
|
4063
4046
|
type: Output
|
|
4064
4047
|
}], dataPointContextMenu: [{
|
|
@@ -4524,8 +4507,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4524
4507
|
class SdkUiModule {
|
|
4525
4508
|
}
|
|
4526
4509
|
SdkUiModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SdkUiModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4527
|
-
SdkUiModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: SdkUiModule, declarations: [
|
|
4528
|
-
ChartComponent,
|
|
4510
|
+
SdkUiModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: SdkUiModule, declarations: [ChartComponent,
|
|
4529
4511
|
TableComponent,
|
|
4530
4512
|
ChartWidgetComponent,
|
|
4531
4513
|
ColumnChartComponent,
|
|
@@ -4555,8 +4537,7 @@ SdkUiModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "1
|
|
|
4555
4537
|
AreamapChartComponent,
|
|
4556
4538
|
PivotTableComponent,
|
|
4557
4539
|
DashboardByIdComponent,
|
|
4558
|
-
DashboardComponent], imports: [CommonModule, DecoratorsModule], exports: [
|
|
4559
|
-
ChartComponent,
|
|
4540
|
+
DashboardComponent], imports: [CommonModule, DecoratorsModule], exports: [ChartComponent,
|
|
4560
4541
|
TableComponent,
|
|
4561
4542
|
ChartWidgetComponent,
|
|
4562
4543
|
ColumnChartComponent,
|
|
@@ -4592,7 +4573,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4592
4573
|
type: NgModule,
|
|
4593
4574
|
args: [{
|
|
4594
4575
|
declarations: [
|
|
4595
|
-
BasicMemberFilterTileComponent,
|
|
4596
4576
|
ChartComponent,
|
|
4597
4577
|
TableComponent,
|
|
4598
4578
|
ChartWidgetComponent,
|
|
@@ -4627,7 +4607,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4627
4607
|
],
|
|
4628
4608
|
imports: [CommonModule, DecoratorsModule],
|
|
4629
4609
|
exports: [
|
|
4630
|
-
BasicMemberFilterTileComponent,
|
|
4631
4610
|
ChartComponent,
|
|
4632
4611
|
TableComponent,
|
|
4633
4612
|
ChartWidgetComponent,
|
|
@@ -4698,5 +4677,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4698
4677
|
* Generated bundle index. Do not edit.
|
|
4699
4678
|
*/
|
|
4700
4679
|
|
|
4701
|
-
export { AreaChartComponent, AreaRangeChartComponent, AreamapChartComponent, BarChartComponent,
|
|
4680
|
+
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 };
|
|
4702
4681
|
//# sourceMappingURL=sisense-sdk-ui-angular.mjs.map
|