@sisense/sdk-ui-angular 1.21.0 → 1.22.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/component-wrapper-helpers/context-connectors.mjs +4 -6
- package/dist/esm2020/lib/components/charts/area-chart.component.mjs +5 -3
- package/dist/esm2020/lib/components/charts/area-range-chart.component.mjs +5 -3
- package/dist/esm2020/lib/components/charts/areamap-chart.component.mjs +5 -3
- package/dist/esm2020/lib/components/charts/bar-chart.component.mjs +5 -3
- package/dist/esm2020/lib/components/charts/boxplot-chart.component.mjs +5 -3
- package/dist/esm2020/lib/components/charts/chart.component.mjs +5 -2
- package/dist/esm2020/lib/components/charts/column-chart.component.mjs +5 -3
- package/dist/esm2020/lib/components/charts/funnel-chart.component.mjs +5 -3
- package/dist/esm2020/lib/components/charts/indicator-chart.component.mjs +5 -3
- package/dist/esm2020/lib/components/charts/line-chart.component.mjs +5 -3
- package/dist/esm2020/lib/components/charts/pie-chart.component.mjs +5 -3
- package/dist/esm2020/lib/components/charts/polar-chart.component.mjs +5 -3
- package/dist/esm2020/lib/components/charts/scatter-chart.component.mjs +5 -3
- package/dist/esm2020/lib/components/charts/scattermap-chart.component.mjs +5 -3
- package/dist/esm2020/lib/components/charts/sunburst-chart.component.mjs +5 -3
- package/dist/esm2020/lib/components/charts/treemap-chart.component.mjs +5 -3
- package/dist/esm2020/lib/components/dashboard/dashboard-by-id.component.mjs +2 -2
- package/dist/esm2020/lib/components/widgets/dashboard-widget.component.mjs +2 -2
- package/dist/esm2020/lib/decorators/trackable.decorator.mjs +2 -3
- package/dist/esm2020/lib/sdk-ui-core-exports.mjs +2 -2
- package/dist/esm2020/lib/services/dashboard.service.mjs +2 -2
- package/dist/esm2020/lib/services/widget.service.mjs +2 -2
- package/dist/esm2020/public-api.mjs +3 -3
- package/dist/esm2020/version.mjs +2 -2
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs +77 -47
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs +76 -46
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/lib/components/charts/area-chart.component.d.ts +8 -1
- package/dist/lib/components/charts/area-range-chart.component.d.ts +8 -1
- package/dist/lib/components/charts/areamap-chart.component.d.ts +8 -1
- package/dist/lib/components/charts/bar-chart.component.d.ts +8 -1
- package/dist/lib/components/charts/boxplot-chart.component.d.ts +8 -1
- package/dist/lib/components/charts/chart.component.d.ts +9 -1
- package/dist/lib/components/charts/column-chart.component.d.ts +8 -1
- package/dist/lib/components/charts/funnel-chart.component.d.ts +8 -1
- package/dist/lib/components/charts/indicator-chart.component.d.ts +8 -1
- package/dist/lib/components/charts/line-chart.component.d.ts +8 -1
- package/dist/lib/components/charts/pie-chart.component.d.ts +8 -1
- package/dist/lib/components/charts/polar-chart.component.d.ts +8 -1
- package/dist/lib/components/charts/scatter-chart.component.d.ts +8 -1
- package/dist/lib/components/charts/scattermap-chart.component.d.ts +8 -1
- package/dist/lib/components/charts/sunburst-chart.component.d.ts +8 -1
- package/dist/lib/components/charts/treemap-chart.component.d.ts +8 -1
- package/dist/lib/components/dashboard/dashboard-by-id.component.d.ts +1 -1
- package/dist/lib/components/widgets/dashboard-widget.component.d.ts +1 -1
- package/dist/lib/sdk-ui-core-exports.d.ts +1 -1
- package/dist/lib/services/dashboard.service.d.ts +1 -1
- package/dist/lib/services/widget.service.d.ts +1 -1
- package/dist/package.json +1 -1
- package/dist/public-api.d.ts +2 -2
- package/dist/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -2,7 +2,7 @@ import * as i0 from '@angular/core';
|
|
|
2
2
|
import { EventEmitter, Component, ViewChild, Input, Output, InjectionToken, Injectable, Inject, NgModule, Optional } from '@angular/core';
|
|
3
3
|
import { CommonModule } from '@angular/common';
|
|
4
4
|
import { ComponentAdapter, createElement, BasicMemberFilterTile, createContextProviderRenderer, CustomThemeProvider, CustomSisenseContextProvider, CustomPluginsProvider, createClientApplication, executeQuery, executeQueryByWidgetId, getDashboardModel, getDashboardModels, getWidgetModel, getDefaultThemeSettings, getThemeSettingsByOid, MemberFilterTile, DateRangeFilterTile, CriteriaFilterTile, Chart, Table, PivotTable, TableWidget, DashboardWidget, createWrapperElementHandler, createWrapperElement, DrilldownWidget, createComponentRenderer, ChartWidget, DashboardById, Dashboard, DrilldownBreadcrumbs, ContextMenu } from '@sisense/sdk-ui-preact';
|
|
5
|
-
export { boxWhiskerProcessResult, dashboardModelTranslator, widgetModelTranslator } from '@sisense/sdk-ui-preact';
|
|
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';
|
|
8
8
|
import merge from 'ts-deepmerge';
|
|
@@ -106,20 +106,18 @@ const createThemeContextConnector = (themeService) => {
|
|
|
106
106
|
const createSisenseContextConnector = (sisenseContextService) => {
|
|
107
107
|
return {
|
|
108
108
|
prepareContext() {
|
|
109
|
-
var _a;
|
|
109
|
+
var _a, _b;
|
|
110
110
|
return __awaiter(this, void 0, void 0, function* () {
|
|
111
|
-
const {
|
|
111
|
+
const { showRuntimeErrors, appConfig } = sisenseContextService.getConfig();
|
|
112
112
|
const app = yield sisenseContextService.getApp();
|
|
113
113
|
return {
|
|
114
114
|
app,
|
|
115
115
|
isInitialized: true,
|
|
116
116
|
showRuntimeErrors,
|
|
117
117
|
tracking: {
|
|
118
|
-
// if tracking is configured in appConfig, use it
|
|
118
|
+
// if tracking is configured in appConfig, use it
|
|
119
119
|
// if none is set, default to true
|
|
120
|
-
enabled: ((_a = appConfig === null || appConfig === void 0 ? void 0 : appConfig.trackingConfig) === null || _a === void 0 ? void 0 : _a.enabled) !==
|
|
121
|
-
? appConfig.trackingConfig.enabled
|
|
122
|
-
: enableTracking !== null && enableTracking !== void 0 ? enableTracking : true,
|
|
120
|
+
enabled: (_b = (_a = appConfig === null || appConfig === void 0 ? void 0 : appConfig.trackingConfig) === null || _a === void 0 ? void 0 : _a.enabled) !== null && _b !== void 0 ? _b : true,
|
|
123
121
|
packageName: 'sdk-ui-angular',
|
|
124
122
|
},
|
|
125
123
|
};
|
|
@@ -327,7 +325,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
327
325
|
*
|
|
328
326
|
* **Note:** Dashboard extensions based on JS scripts and add-ons in Fusion are not supported.
|
|
329
327
|
*
|
|
330
|
-
* @group Fusion
|
|
328
|
+
* @group Fusion Assets
|
|
331
329
|
* @fusionEmbed
|
|
332
330
|
*/
|
|
333
331
|
let DashboardService = class DashboardService {
|
|
@@ -375,7 +373,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
375
373
|
/**
|
|
376
374
|
* Service for working with Sisense Fusion widgets.
|
|
377
375
|
*
|
|
378
|
-
* @group Fusion
|
|
376
|
+
* @group Fusion Assets
|
|
379
377
|
* @fusionEmbed
|
|
380
378
|
*/
|
|
381
379
|
let WidgetService = class WidgetService {
|
|
@@ -424,7 +422,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
424
422
|
}]
|
|
425
423
|
}], ctorParameters: function () { return [{ type: SisenseContextService }]; } });
|
|
426
424
|
|
|
427
|
-
var packageVersion = '1.
|
|
425
|
+
var packageVersion = '1.22.0';
|
|
428
426
|
|
|
429
427
|
function Trackable(target, propertyKey, descriptor) {
|
|
430
428
|
const originalMethod = descriptor.value;
|
|
@@ -451,9 +449,8 @@ function track(action, methodName) {
|
|
|
451
449
|
var _a, _b, _c;
|
|
452
450
|
return __awaiter(this, void 0, void 0, function* () {
|
|
453
451
|
try {
|
|
454
|
-
const { enableTracking } = DecoratorsModule.sisenseContextService.getConfig();
|
|
455
452
|
const app = yield DecoratorsModule.sisenseContextService.getApp();
|
|
456
|
-
const trackingEnabled =
|
|
453
|
+
const trackingEnabled = (_c = (_b = (_a = app.settings) === null || _a === void 0 ? void 0 : _a.trackingConfig) === null || _b === void 0 ? void 0 : _b.enabled) !== null && _c !== void 0 ? _c : true;
|
|
457
454
|
if (app === null || app === void 0 ? void 0 : app.httpClient) {
|
|
458
455
|
const payload = {
|
|
459
456
|
packageName: 'sdk-ui-angular',
|
|
@@ -1000,6 +997,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1000
997
|
* ```
|
|
1001
998
|
*
|
|
1002
999
|
* <img src="media://angular-chart-example.png" width="800px" />
|
|
1000
|
+
* @shortDescription Common component for rendering charts of different types including table
|
|
1003
1001
|
*
|
|
1004
1002
|
* @group Charts
|
|
1005
1003
|
*/
|
|
@@ -1086,7 +1084,7 @@ class ChartComponent {
|
|
|
1086
1084
|
}
|
|
1087
1085
|
}
|
|
1088
1086
|
ChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartComponent, deps: [{ token: SisenseContextService }, { token: ThemeService }], target: i0.ɵɵFactoryTarget.Component });
|
|
1089
|
-
ChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ChartComponent, selector: "csdk-chart", inputs: { chartType: "chartType", dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions", 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 });
|
|
1087
|
+
ChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ChartComponent, selector: "csdk-chart", inputs: { chartType: "chartType", dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions", 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 });
|
|
1090
1088
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartComponent, decorators: [{
|
|
1091
1089
|
type: Component,
|
|
1092
1090
|
args: [{
|
|
@@ -1110,6 +1108,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1110
1108
|
type: Input
|
|
1111
1109
|
}], beforeRender: [{
|
|
1112
1110
|
type: Input
|
|
1111
|
+
}], dataReady: [{
|
|
1112
|
+
type: Input
|
|
1113
1113
|
}], dataPointClick: [{
|
|
1114
1114
|
type: Output
|
|
1115
1115
|
}], dataPointContextMenu: [{
|
|
@@ -1285,7 +1285,7 @@ class ColumnChartComponent {
|
|
|
1285
1285
|
}
|
|
1286
1286
|
}
|
|
1287
1287
|
ColumnChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ColumnChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1288
|
-
ColumnChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ColumnChartComponent, selector: "csdk-column-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions", beforeRender: "beforeRender" }, outputs: { dataPointClick: "dataPointClick", dataPointContextMenu: "dataPointContextMenu", dataPointsSelect: "dataPointsSelect" }, ngImport: i0, template: `
|
|
1288
|
+
ColumnChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ColumnChartComponent, selector: "csdk-column-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions", beforeRender: "beforeRender", dataReady: "dataReady" }, outputs: { dataPointClick: "dataPointClick", dataPointContextMenu: "dataPointContextMenu", dataPointsSelect: "dataPointsSelect" }, ngImport: i0, template: `
|
|
1289
1289
|
<csdk-chart
|
|
1290
1290
|
[chartType]="chartType"
|
|
1291
1291
|
[dataSet]="dataSet"
|
|
@@ -1298,7 +1298,7 @@ ColumnChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
|
|
|
1298
1298
|
(dataPointContextMenu)="dataPointContextMenu.emit($event)"
|
|
1299
1299
|
(dataPointsSelect)="dataPointsSelect.emit($event)"
|
|
1300
1300
|
/>
|
|
1301
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
1301
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
1302
1302
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ColumnChartComponent, decorators: [{
|
|
1303
1303
|
type: Component,
|
|
1304
1304
|
args: [{
|
|
@@ -1330,6 +1330,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1330
1330
|
type: Input
|
|
1331
1331
|
}], beforeRender: [{
|
|
1332
1332
|
type: Input
|
|
1333
|
+
}], dataReady: [{
|
|
1334
|
+
type: Input
|
|
1333
1335
|
}], dataPointClick: [{
|
|
1334
1336
|
type: Output
|
|
1335
1337
|
}], dataPointContextMenu: [{
|
|
@@ -1419,7 +1421,7 @@ class BarChartComponent {
|
|
|
1419
1421
|
}
|
|
1420
1422
|
}
|
|
1421
1423
|
BarChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1422
|
-
BarChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: BarChartComponent, selector: "csdk-bar-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions", beforeRender: "beforeRender" }, outputs: { dataPointClick: "dataPointClick", dataPointContextMenu: "dataPointContextMenu", dataPointsSelect: "dataPointsSelect" }, ngImport: i0, template: `
|
|
1424
|
+
BarChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: BarChartComponent, selector: "csdk-bar-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions", beforeRender: "beforeRender", dataReady: "dataReady" }, outputs: { dataPointClick: "dataPointClick", dataPointContextMenu: "dataPointContextMenu", dataPointsSelect: "dataPointsSelect" }, ngImport: i0, template: `
|
|
1423
1425
|
<csdk-chart
|
|
1424
1426
|
[chartType]="chartType"
|
|
1425
1427
|
[dataSet]="dataSet"
|
|
@@ -1432,7 +1434,7 @@ BarChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", vers
|
|
|
1432
1434
|
(dataPointContextMenu)="dataPointContextMenu.emit($event)"
|
|
1433
1435
|
(dataPointsSelect)="dataPointsSelect.emit($event)"
|
|
1434
1436
|
/>
|
|
1435
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
1437
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
1436
1438
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarChartComponent, decorators: [{
|
|
1437
1439
|
type: Component,
|
|
1438
1440
|
args: [{
|
|
@@ -1464,6 +1466,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1464
1466
|
type: Input
|
|
1465
1467
|
}], beforeRender: [{
|
|
1466
1468
|
type: Input
|
|
1469
|
+
}], dataReady: [{
|
|
1470
|
+
type: Input
|
|
1467
1471
|
}], dataPointClick: [{
|
|
1468
1472
|
type: Output
|
|
1469
1473
|
}], dataPointContextMenu: [{
|
|
@@ -1552,7 +1556,7 @@ class AreaChartComponent {
|
|
|
1552
1556
|
}
|
|
1553
1557
|
}
|
|
1554
1558
|
AreaChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AreaChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1555
|
-
AreaChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: AreaChartComponent, selector: "csdk-area-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions", beforeRender: "beforeRender" }, outputs: { dataPointClick: "dataPointClick", dataPointContextMenu: "dataPointContextMenu", dataPointsSelect: "dataPointsSelect" }, ngImport: i0, template: `
|
|
1559
|
+
AreaChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: AreaChartComponent, selector: "csdk-area-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions", beforeRender: "beforeRender", dataReady: "dataReady" }, outputs: { dataPointClick: "dataPointClick", dataPointContextMenu: "dataPointContextMenu", dataPointsSelect: "dataPointsSelect" }, ngImport: i0, template: `
|
|
1556
1560
|
<csdk-chart
|
|
1557
1561
|
[chartType]="chartType"
|
|
1558
1562
|
[dataSet]="dataSet"
|
|
@@ -1565,7 +1569,7 @@ AreaChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ver
|
|
|
1565
1569
|
(dataPointContextMenu)="dataPointContextMenu.emit($event)"
|
|
1566
1570
|
(dataPointsSelect)="dataPointsSelect.emit($event)"
|
|
1567
1571
|
/>
|
|
1568
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
1572
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
1569
1573
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AreaChartComponent, decorators: [{
|
|
1570
1574
|
type: Component,
|
|
1571
1575
|
args: [{
|
|
@@ -1597,6 +1601,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1597
1601
|
type: Input
|
|
1598
1602
|
}], beforeRender: [{
|
|
1599
1603
|
type: Input
|
|
1604
|
+
}], dataReady: [{
|
|
1605
|
+
type: Input
|
|
1600
1606
|
}], dataPointClick: [{
|
|
1601
1607
|
type: Output
|
|
1602
1608
|
}], dataPointContextMenu: [{
|
|
@@ -1683,7 +1689,7 @@ class LineChartComponent {
|
|
|
1683
1689
|
}
|
|
1684
1690
|
}
|
|
1685
1691
|
LineChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LineChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1686
|
-
LineChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: LineChartComponent, selector: "csdk-line-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions", beforeRender: "beforeRender" }, outputs: { dataPointClick: "dataPointClick", dataPointContextMenu: "dataPointContextMenu", dataPointsSelect: "dataPointsSelect" }, ngImport: i0, template: `
|
|
1692
|
+
LineChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: LineChartComponent, selector: "csdk-line-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions", beforeRender: "beforeRender", dataReady: "dataReady" }, outputs: { dataPointClick: "dataPointClick", dataPointContextMenu: "dataPointContextMenu", dataPointsSelect: "dataPointsSelect" }, ngImport: i0, template: `
|
|
1687
1693
|
<csdk-chart
|
|
1688
1694
|
[chartType]="chartType"
|
|
1689
1695
|
[dataSet]="dataSet"
|
|
@@ -1696,7 +1702,7 @@ LineChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ver
|
|
|
1696
1702
|
(dataPointContextMenu)="dataPointContextMenu.emit($event)"
|
|
1697
1703
|
(dataPointsSelect)="dataPointsSelect.emit($event)"
|
|
1698
1704
|
/>
|
|
1699
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
1705
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
1700
1706
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LineChartComponent, decorators: [{
|
|
1701
1707
|
type: Component,
|
|
1702
1708
|
args: [{
|
|
@@ -1728,6 +1734,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1728
1734
|
type: Input
|
|
1729
1735
|
}], beforeRender: [{
|
|
1730
1736
|
type: Input
|
|
1737
|
+
}], dataReady: [{
|
|
1738
|
+
type: Input
|
|
1731
1739
|
}], dataPointClick: [{
|
|
1732
1740
|
type: Output
|
|
1733
1741
|
}], dataPointContextMenu: [{
|
|
@@ -1802,7 +1810,7 @@ class IndicatorChartComponent {
|
|
|
1802
1810
|
}
|
|
1803
1811
|
}
|
|
1804
1812
|
IndicatorChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: IndicatorChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1805
|
-
IndicatorChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: IndicatorChartComponent, selector: "csdk-indicator-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions" }, ngImport: i0, template: `
|
|
1813
|
+
IndicatorChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: IndicatorChartComponent, selector: "csdk-indicator-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions", dataReady: "dataReady" }, ngImport: i0, template: `
|
|
1806
1814
|
<csdk-chart
|
|
1807
1815
|
[chartType]="chartType"
|
|
1808
1816
|
[dataSet]="dataSet"
|
|
@@ -1811,7 +1819,7 @@ IndicatorChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0"
|
|
|
1811
1819
|
[highlights]="highlights"
|
|
1812
1820
|
[styleOptions]="styleOptions"
|
|
1813
1821
|
/>
|
|
1814
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
1822
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
1815
1823
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: IndicatorChartComponent, decorators: [{
|
|
1816
1824
|
type: Component,
|
|
1817
1825
|
args: [{
|
|
@@ -1837,6 +1845,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1837
1845
|
type: Input
|
|
1838
1846
|
}], styleOptions: [{
|
|
1839
1847
|
type: Input
|
|
1848
|
+
}], dataReady: [{
|
|
1849
|
+
type: Input
|
|
1840
1850
|
}] } });
|
|
1841
1851
|
|
|
1842
1852
|
/**
|
|
@@ -1921,7 +1931,7 @@ class ScatterChartComponent {
|
|
|
1921
1931
|
}
|
|
1922
1932
|
}
|
|
1923
1933
|
ScatterChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScatterChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1924
|
-
ScatterChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ScatterChartComponent, selector: "csdk-scatter-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions", beforeRender: "beforeRender" }, outputs: { dataPointClick: "dataPointClick", dataPointContextMenu: "dataPointContextMenu", dataPointsSelect: "dataPointsSelect" }, ngImport: i0, template: `
|
|
1934
|
+
ScatterChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ScatterChartComponent, selector: "csdk-scatter-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions", beforeRender: "beforeRender", dataReady: "dataReady" }, outputs: { dataPointClick: "dataPointClick", dataPointContextMenu: "dataPointContextMenu", dataPointsSelect: "dataPointsSelect" }, ngImport: i0, template: `
|
|
1925
1935
|
<csdk-chart
|
|
1926
1936
|
[chartType]="chartType"
|
|
1927
1937
|
[dataSet]="dataSet"
|
|
@@ -1934,7 +1944,7 @@ ScatterChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
1934
1944
|
(dataPointContextMenu)="dataPointContextMenu.emit($event)"
|
|
1935
1945
|
(dataPointsSelect)="dataPointsSelect.emit($event)"
|
|
1936
1946
|
/>
|
|
1937
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
1947
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
1938
1948
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScatterChartComponent, decorators: [{
|
|
1939
1949
|
type: Component,
|
|
1940
1950
|
args: [{
|
|
@@ -1966,6 +1976,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1966
1976
|
type: Input
|
|
1967
1977
|
}], beforeRender: [{
|
|
1968
1978
|
type: Input
|
|
1979
|
+
}], dataReady: [{
|
|
1980
|
+
type: Input
|
|
1969
1981
|
}], dataPointClick: [{
|
|
1970
1982
|
type: Output
|
|
1971
1983
|
}], dataPointContextMenu: [{
|
|
@@ -2054,7 +2066,7 @@ class PieChartComponent {
|
|
|
2054
2066
|
}
|
|
2055
2067
|
}
|
|
2056
2068
|
PieChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PieChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2057
|
-
PieChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: PieChartComponent, selector: "csdk-pie-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions", beforeRender: "beforeRender" }, outputs: { dataPointClick: "dataPointClick", dataPointContextMenu: "dataPointContextMenu", dataPointsSelect: "dataPointsSelect" }, ngImport: i0, template: `
|
|
2069
|
+
PieChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: PieChartComponent, selector: "csdk-pie-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions", beforeRender: "beforeRender", dataReady: "dataReady" }, outputs: { dataPointClick: "dataPointClick", dataPointContextMenu: "dataPointContextMenu", dataPointsSelect: "dataPointsSelect" }, ngImport: i0, template: `
|
|
2058
2070
|
<csdk-chart
|
|
2059
2071
|
[chartType]="chartType"
|
|
2060
2072
|
[dataSet]="dataSet"
|
|
@@ -2067,7 +2079,7 @@ PieChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", vers
|
|
|
2067
2079
|
(dataPointContextMenu)="dataPointContextMenu.emit($event)"
|
|
2068
2080
|
(dataPointsSelect)="dataPointsSelect.emit($event)"
|
|
2069
2081
|
/>
|
|
2070
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2082
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2071
2083
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PieChartComponent, decorators: [{
|
|
2072
2084
|
type: Component,
|
|
2073
2085
|
args: [{
|
|
@@ -2099,6 +2111,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2099
2111
|
type: Input
|
|
2100
2112
|
}], beforeRender: [{
|
|
2101
2113
|
type: Input
|
|
2114
|
+
}], dataReady: [{
|
|
2115
|
+
type: Input
|
|
2102
2116
|
}], dataPointClick: [{
|
|
2103
2117
|
type: Output
|
|
2104
2118
|
}], dataPointContextMenu: [{
|
|
@@ -2185,7 +2199,7 @@ class FunnelChartComponent {
|
|
|
2185
2199
|
}
|
|
2186
2200
|
}
|
|
2187
2201
|
FunnelChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FunnelChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2188
|
-
FunnelChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FunnelChartComponent, selector: "csdk-funnel-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions", beforeRender: "beforeRender" }, outputs: { dataPointClick: "dataPointClick", dataPointContextMenu: "dataPointContextMenu", dataPointsSelect: "dataPointsSelect" }, ngImport: i0, template: `
|
|
2202
|
+
FunnelChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FunnelChartComponent, selector: "csdk-funnel-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions", beforeRender: "beforeRender", dataReady: "dataReady" }, outputs: { dataPointClick: "dataPointClick", dataPointContextMenu: "dataPointContextMenu", dataPointsSelect: "dataPointsSelect" }, ngImport: i0, template: `
|
|
2189
2203
|
<csdk-chart
|
|
2190
2204
|
[chartType]="chartType"
|
|
2191
2205
|
[dataSet]="dataSet"
|
|
@@ -2198,7 +2212,7 @@ FunnelChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
|
|
|
2198
2212
|
(dataPointContextMenu)="dataPointContextMenu.emit($event)"
|
|
2199
2213
|
(dataPointsSelect)="dataPointsSelect.emit($event)"
|
|
2200
2214
|
/>
|
|
2201
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2215
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2202
2216
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FunnelChartComponent, decorators: [{
|
|
2203
2217
|
type: Component,
|
|
2204
2218
|
args: [{
|
|
@@ -2230,6 +2244,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2230
2244
|
type: Input
|
|
2231
2245
|
}], beforeRender: [{
|
|
2232
2246
|
type: Input
|
|
2247
|
+
}], dataReady: [{
|
|
2248
|
+
type: Input
|
|
2233
2249
|
}], dataPointClick: [{
|
|
2234
2250
|
type: Output
|
|
2235
2251
|
}], dataPointContextMenu: [{
|
|
@@ -2317,7 +2333,7 @@ class PolarChartComponent {
|
|
|
2317
2333
|
}
|
|
2318
2334
|
}
|
|
2319
2335
|
PolarChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PolarChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2320
|
-
PolarChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: PolarChartComponent, selector: "csdk-polar-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions", beforeRender: "beforeRender" }, outputs: { dataPointClick: "dataPointClick", dataPointContextMenu: "dataPointContextMenu", dataPointsSelect: "dataPointsSelect" }, ngImport: i0, template: `
|
|
2336
|
+
PolarChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: PolarChartComponent, selector: "csdk-polar-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions", beforeRender: "beforeRender", dataReady: "dataReady" }, outputs: { dataPointClick: "dataPointClick", dataPointContextMenu: "dataPointContextMenu", dataPointsSelect: "dataPointsSelect" }, ngImport: i0, template: `
|
|
2321
2337
|
<csdk-chart
|
|
2322
2338
|
[chartType]="chartType"
|
|
2323
2339
|
[dataSet]="dataSet"
|
|
@@ -2330,7 +2346,7 @@ PolarChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ve
|
|
|
2330
2346
|
(dataPointContextMenu)="dataPointContextMenu.emit($event)"
|
|
2331
2347
|
(dataPointsSelect)="dataPointsSelect.emit($event)"
|
|
2332
2348
|
/>
|
|
2333
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2349
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2334
2350
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PolarChartComponent, decorators: [{
|
|
2335
2351
|
type: Component,
|
|
2336
2352
|
args: [{
|
|
@@ -2362,6 +2378,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2362
2378
|
type: Input
|
|
2363
2379
|
}], beforeRender: [{
|
|
2364
2380
|
type: Input
|
|
2381
|
+
}], dataReady: [{
|
|
2382
|
+
type: Input
|
|
2365
2383
|
}], dataPointClick: [{
|
|
2366
2384
|
type: Output
|
|
2367
2385
|
}], dataPointContextMenu: [{
|
|
@@ -2450,7 +2468,7 @@ class TreemapChartComponent {
|
|
|
2450
2468
|
}
|
|
2451
2469
|
}
|
|
2452
2470
|
TreemapChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TreemapChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2453
|
-
TreemapChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: TreemapChartComponent, selector: "csdk-treemap-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions", beforeRender: "beforeRender" }, outputs: { dataPointClick: "dataPointClick", dataPointContextMenu: "dataPointContextMenu", dataPointsSelect: "dataPointsSelect" }, ngImport: i0, template: `
|
|
2471
|
+
TreemapChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: TreemapChartComponent, selector: "csdk-treemap-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions", beforeRender: "beforeRender", dataReady: "dataReady" }, outputs: { dataPointClick: "dataPointClick", dataPointContextMenu: "dataPointContextMenu", dataPointsSelect: "dataPointsSelect" }, ngImport: i0, template: `
|
|
2454
2472
|
<csdk-chart
|
|
2455
2473
|
[chartType]="chartType"
|
|
2456
2474
|
[dataSet]="dataSet"
|
|
@@ -2463,7 +2481,7 @@ TreemapChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
2463
2481
|
(dataPointContextMenu)="dataPointContextMenu.emit($event)"
|
|
2464
2482
|
(dataPointsSelect)="dataPointsSelect.emit($event)"
|
|
2465
2483
|
/>
|
|
2466
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2484
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2467
2485
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TreemapChartComponent, decorators: [{
|
|
2468
2486
|
type: Component,
|
|
2469
2487
|
args: [{
|
|
@@ -2495,6 +2513,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2495
2513
|
type: Input
|
|
2496
2514
|
}], beforeRender: [{
|
|
2497
2515
|
type: Input
|
|
2516
|
+
}], dataReady: [{
|
|
2517
|
+
type: Input
|
|
2498
2518
|
}], dataPointClick: [{
|
|
2499
2519
|
type: Output
|
|
2500
2520
|
}], dataPointContextMenu: [{
|
|
@@ -2583,7 +2603,7 @@ class SunburstChartComponent {
|
|
|
2583
2603
|
}
|
|
2584
2604
|
}
|
|
2585
2605
|
SunburstChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SunburstChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2586
|
-
SunburstChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: SunburstChartComponent, selector: "csdk-sunburst-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions", beforeRender: "beforeRender" }, outputs: { dataPointClick: "dataPointClick", dataPointContextMenu: "dataPointContextMenu", dataPointsSelect: "dataPointsSelect" }, ngImport: i0, template: `
|
|
2606
|
+
SunburstChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: SunburstChartComponent, selector: "csdk-sunburst-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions", beforeRender: "beforeRender", dataReady: "dataReady" }, outputs: { dataPointClick: "dataPointClick", dataPointContextMenu: "dataPointContextMenu", dataPointsSelect: "dataPointsSelect" }, ngImport: i0, template: `
|
|
2587
2607
|
<csdk-chart
|
|
2588
2608
|
[chartType]="chartType"
|
|
2589
2609
|
[dataSet]="dataSet"
|
|
@@ -2596,7 +2616,7 @@ SunburstChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
2596
2616
|
(dataPointContextMenu)="dataPointContextMenu.emit($event)"
|
|
2597
2617
|
(dataPointsSelect)="dataPointsSelect.emit($event)"
|
|
2598
2618
|
/>
|
|
2599
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2619
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2600
2620
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SunburstChartComponent, decorators: [{
|
|
2601
2621
|
type: Component,
|
|
2602
2622
|
args: [{
|
|
@@ -2628,6 +2648,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2628
2648
|
type: Input
|
|
2629
2649
|
}], beforeRender: [{
|
|
2630
2650
|
type: Input
|
|
2651
|
+
}], dataReady: [{
|
|
2652
|
+
type: Input
|
|
2631
2653
|
}], dataPointClick: [{
|
|
2632
2654
|
type: Output
|
|
2633
2655
|
}], dataPointContextMenu: [{
|
|
@@ -2710,7 +2732,7 @@ class BoxplotChartComponent {
|
|
|
2710
2732
|
}
|
|
2711
2733
|
}
|
|
2712
2734
|
BoxplotChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BoxplotChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2713
|
-
BoxplotChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: BoxplotChartComponent, selector: "csdk-boxplot-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions", beforeRender: "beforeRender" }, outputs: { dataPointClick: "dataPointClick", dataPointContextMenu: "dataPointContextMenu", dataPointsSelect: "dataPointsSelect" }, ngImport: i0, template: `
|
|
2735
|
+
BoxplotChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: BoxplotChartComponent, selector: "csdk-boxplot-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions", beforeRender: "beforeRender", dataReady: "dataReady" }, outputs: { dataPointClick: "dataPointClick", dataPointContextMenu: "dataPointContextMenu", dataPointsSelect: "dataPointsSelect" }, ngImport: i0, template: `
|
|
2714
2736
|
<csdk-chart
|
|
2715
2737
|
[chartType]="chartType"
|
|
2716
2738
|
[dataSet]="dataSet"
|
|
@@ -2723,7 +2745,7 @@ BoxplotChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
2723
2745
|
(dataPointContextMenu)="dataPointContextMenu.emit($event)"
|
|
2724
2746
|
(dataPointsSelect)="dataPointsSelect.emit($event)"
|
|
2725
2747
|
/>
|
|
2726
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2748
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2727
2749
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BoxplotChartComponent, decorators: [{
|
|
2728
2750
|
type: Component,
|
|
2729
2751
|
args: [{
|
|
@@ -2755,6 +2777,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2755
2777
|
type: Input
|
|
2756
2778
|
}], beforeRender: [{
|
|
2757
2779
|
type: Input
|
|
2780
|
+
}], dataReady: [{
|
|
2781
|
+
type: Input
|
|
2758
2782
|
}], dataPointClick: [{
|
|
2759
2783
|
type: Output
|
|
2760
2784
|
}], dataPointContextMenu: [{
|
|
@@ -2826,7 +2850,7 @@ class ScattermapChartComponent {
|
|
|
2826
2850
|
}
|
|
2827
2851
|
}
|
|
2828
2852
|
ScattermapChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScattermapChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2829
|
-
ScattermapChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ScattermapChartComponent, selector: "csdk-scattermap-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions" }, outputs: { dataPointClick: "dataPointClick" }, ngImport: i0, template: `
|
|
2853
|
+
ScattermapChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ScattermapChartComponent, selector: "csdk-scattermap-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions", dataReady: "dataReady" }, outputs: { dataPointClick: "dataPointClick" }, ngImport: i0, template: `
|
|
2830
2854
|
<csdk-chart
|
|
2831
2855
|
[chartType]="chartType"
|
|
2832
2856
|
[dataSet]="dataSet"
|
|
@@ -2836,7 +2860,7 @@ ScattermapChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0
|
|
|
2836
2860
|
[styleOptions]="styleOptions"
|
|
2837
2861
|
(dataPointClick)="dataPointClick.emit($event)"
|
|
2838
2862
|
/>
|
|
2839
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2863
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2840
2864
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScattermapChartComponent, decorators: [{
|
|
2841
2865
|
type: Component,
|
|
2842
2866
|
args: [{
|
|
@@ -2863,6 +2887,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2863
2887
|
type: Input
|
|
2864
2888
|
}], styleOptions: [{
|
|
2865
2889
|
type: Input
|
|
2890
|
+
}], dataReady: [{
|
|
2891
|
+
type: Input
|
|
2866
2892
|
}], dataPointClick: [{
|
|
2867
2893
|
type: Output
|
|
2868
2894
|
}] } });
|
|
@@ -2924,7 +2950,7 @@ class AreamapChartComponent {
|
|
|
2924
2950
|
}
|
|
2925
2951
|
}
|
|
2926
2952
|
AreamapChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AreamapChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2927
|
-
AreamapChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: AreamapChartComponent, selector: "csdk-areamap-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions" }, outputs: { dataPointClick: "dataPointClick" }, ngImport: i0, template: `
|
|
2953
|
+
AreamapChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: AreamapChartComponent, selector: "csdk-areamap-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions", dataReady: "dataReady" }, outputs: { dataPointClick: "dataPointClick" }, ngImport: i0, template: `
|
|
2928
2954
|
<csdk-chart
|
|
2929
2955
|
[chartType]="chartType"
|
|
2930
2956
|
[dataSet]="dataSet"
|
|
@@ -2934,7 +2960,7 @@ AreamapChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
2934
2960
|
[styleOptions]="styleOptions"
|
|
2935
2961
|
(dataPointClick)="dataPointClick.emit($event)"
|
|
2936
2962
|
/>
|
|
2937
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2963
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2938
2964
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AreamapChartComponent, decorators: [{
|
|
2939
2965
|
type: Component,
|
|
2940
2966
|
args: [{
|
|
@@ -2961,6 +2987,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2961
2987
|
type: Input
|
|
2962
2988
|
}], styleOptions: [{
|
|
2963
2989
|
type: Input
|
|
2990
|
+
}], dataReady: [{
|
|
2991
|
+
type: Input
|
|
2964
2992
|
}], dataPointClick: [{
|
|
2965
2993
|
type: Output
|
|
2966
2994
|
}] } });
|
|
@@ -3172,7 +3200,7 @@ class AreaRangeChartComponent {
|
|
|
3172
3200
|
}
|
|
3173
3201
|
}
|
|
3174
3202
|
AreaRangeChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AreaRangeChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3175
|
-
AreaRangeChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: AreaRangeChartComponent, selector: "csdk-area-range-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions", beforeRender: "beforeRender" }, outputs: { dataPointClick: "dataPointClick", dataPointContextMenu: "dataPointContextMenu", dataPointsSelect: "dataPointsSelect" }, ngImport: i0, template: `
|
|
3203
|
+
AreaRangeChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: AreaRangeChartComponent, selector: "csdk-area-range-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions", beforeRender: "beforeRender", dataReady: "dataReady" }, outputs: { dataPointClick: "dataPointClick", dataPointContextMenu: "dataPointContextMenu", dataPointsSelect: "dataPointsSelect" }, ngImport: i0, template: `
|
|
3176
3204
|
<csdk-chart
|
|
3177
3205
|
[chartType]="chartType"
|
|
3178
3206
|
[dataSet]="dataSet"
|
|
@@ -3185,7 +3213,7 @@ AreaRangeChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0"
|
|
|
3185
3213
|
(dataPointContextMenu)="dataPointContextMenu.emit($event)"
|
|
3186
3214
|
(dataPointsSelect)="dataPointsSelect.emit($event)"
|
|
3187
3215
|
/>
|
|
3188
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
3216
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
3189
3217
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AreaRangeChartComponent, decorators: [{
|
|
3190
3218
|
type: Component,
|
|
3191
3219
|
args: [{
|
|
@@ -3217,6 +3245,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3217
3245
|
type: Input
|
|
3218
3246
|
}], beforeRender: [{
|
|
3219
3247
|
type: Input
|
|
3248
|
+
}], dataReady: [{
|
|
3249
|
+
type: Input
|
|
3220
3250
|
}], dataPointClick: [{
|
|
3221
3251
|
type: Output
|
|
3222
3252
|
}], dataPointContextMenu: [{
|
|
@@ -3353,7 +3383,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3353
3383
|
* dashboardOid: string = '60f3e3e3e4b0e3e3e4b0e3e3';
|
|
3354
3384
|
* }
|
|
3355
3385
|
* ```
|
|
3356
|
-
* @group Fusion
|
|
3386
|
+
* @group Fusion Assets
|
|
3357
3387
|
* @fusionEmbed
|
|
3358
3388
|
*/
|
|
3359
3389
|
class DashboardWidgetComponent {
|
|
@@ -3782,7 +3812,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3782
3812
|
*
|
|
3783
3813
|
* To learn more about this and related dashboard components,
|
|
3784
3814
|
* see [Embedded Dashboards](/guides/sdk/guides/dashboards/index.html).
|
|
3785
|
-
* @group Fusion
|
|
3815
|
+
* @group Fusion Assets
|
|
3786
3816
|
* @fusionEmbed
|
|
3787
3817
|
* @beta
|
|
3788
3818
|
*/
|
|
@@ -4369,8 +4399,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4369
4399
|
* Angular query service
|
|
4370
4400
|
* @groupDescription Dashboards
|
|
4371
4401
|
* Angular components and utilities for working with dashboards
|
|
4372
|
-
* @groupDescription Fusion
|
|
4373
|
-
* Angular modules, services, and components for working with Fusion
|
|
4402
|
+
* @groupDescription Fusion Assets
|
|
4403
|
+
* Angular modules, services, and components for working with Fusion dashboards, widgets, queries, and formulas
|
|
4374
4404
|
* @groupDescription Interfaces
|
|
4375
4405
|
* TypeScript interfaces for components and services listed above
|
|
4376
4406
|
* @groupDescription Type Aliases
|