@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 { map, BehaviorSubject } from 'rxjs';
|
|
7
7
|
import { __decorate } from 'tslib';
|
|
8
8
|
import merge from 'ts-deepmerge';
|
|
@@ -106,18 +106,16 @@ const createThemeContextConnector = (themeService) => {
|
|
|
106
106
|
const createSisenseContextConnector = (sisenseContextService) => {
|
|
107
107
|
return {
|
|
108
108
|
async prepareContext() {
|
|
109
|
-
const {
|
|
109
|
+
const { showRuntimeErrors, appConfig } = sisenseContextService.getConfig();
|
|
110
110
|
const app = await sisenseContextService.getApp();
|
|
111
111
|
return {
|
|
112
112
|
app,
|
|
113
113
|
isInitialized: true,
|
|
114
114
|
showRuntimeErrors,
|
|
115
115
|
tracking: {
|
|
116
|
-
// if tracking is configured in appConfig, use it
|
|
116
|
+
// if tracking is configured in appConfig, use it
|
|
117
117
|
// if none is set, default to true
|
|
118
|
-
enabled: appConfig?.trackingConfig?.enabled
|
|
119
|
-
? appConfig.trackingConfig.enabled
|
|
120
|
-
: enableTracking ?? true,
|
|
118
|
+
enabled: appConfig?.trackingConfig?.enabled ?? true,
|
|
121
119
|
packageName: 'sdk-ui-angular',
|
|
122
120
|
},
|
|
123
121
|
};
|
|
@@ -324,7 +322,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
324
322
|
*
|
|
325
323
|
* **Note:** Dashboard extensions based on JS scripts and add-ons in Fusion are not supported.
|
|
326
324
|
*
|
|
327
|
-
* @group Fusion
|
|
325
|
+
* @group Fusion Assets
|
|
328
326
|
* @fusionEmbed
|
|
329
327
|
*/
|
|
330
328
|
let DashboardService = class DashboardService {
|
|
@@ -368,7 +366,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
368
366
|
/**
|
|
369
367
|
* Service for working with Sisense Fusion widgets.
|
|
370
368
|
*
|
|
371
|
-
* @group Fusion
|
|
369
|
+
* @group Fusion Assets
|
|
372
370
|
* @fusionEmbed
|
|
373
371
|
*/
|
|
374
372
|
let WidgetService = class WidgetService {
|
|
@@ -415,7 +413,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
415
413
|
}]
|
|
416
414
|
}], ctorParameters: function () { return [{ type: SisenseContextService }]; } });
|
|
417
415
|
|
|
418
|
-
var packageVersion = '1.
|
|
416
|
+
var packageVersion = '1.22.0';
|
|
419
417
|
|
|
420
418
|
function Trackable(target, propertyKey, descriptor) {
|
|
421
419
|
const originalMethod = descriptor.value;
|
|
@@ -440,9 +438,8 @@ function TrackableService(trackableMethods) {
|
|
|
440
438
|
}
|
|
441
439
|
async function track(action, methodName) {
|
|
442
440
|
try {
|
|
443
|
-
const { enableTracking } = DecoratorsModule.sisenseContextService.getConfig();
|
|
444
441
|
const app = await DecoratorsModule.sisenseContextService.getApp();
|
|
445
|
-
const trackingEnabled =
|
|
442
|
+
const trackingEnabled = app.settings?.trackingConfig?.enabled ?? true;
|
|
446
443
|
if (app?.httpClient) {
|
|
447
444
|
const payload = {
|
|
448
445
|
packageName: 'sdk-ui-angular',
|
|
@@ -980,6 +977,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
980
977
|
* ```
|
|
981
978
|
*
|
|
982
979
|
* <img src="media://angular-chart-example.png" width="800px" />
|
|
980
|
+
* @shortDescription Common component for rendering charts of different types including table
|
|
983
981
|
*
|
|
984
982
|
* @group Charts
|
|
985
983
|
*/
|
|
@@ -1065,7 +1063,7 @@ class ChartComponent {
|
|
|
1065
1063
|
}
|
|
1066
1064
|
}
|
|
1067
1065
|
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 });
|
|
1068
|
-
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 });
|
|
1066
|
+
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 });
|
|
1069
1067
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartComponent, decorators: [{
|
|
1070
1068
|
type: Component,
|
|
1071
1069
|
args: [{
|
|
@@ -1089,6 +1087,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1089
1087
|
type: Input
|
|
1090
1088
|
}], beforeRender: [{
|
|
1091
1089
|
type: Input
|
|
1090
|
+
}], dataReady: [{
|
|
1091
|
+
type: Input
|
|
1092
1092
|
}], dataPointClick: [{
|
|
1093
1093
|
type: Output
|
|
1094
1094
|
}], dataPointContextMenu: [{
|
|
@@ -1264,7 +1264,7 @@ class ColumnChartComponent {
|
|
|
1264
1264
|
}
|
|
1265
1265
|
}
|
|
1266
1266
|
ColumnChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ColumnChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1267
|
-
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: `
|
|
1267
|
+
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: `
|
|
1268
1268
|
<csdk-chart
|
|
1269
1269
|
[chartType]="chartType"
|
|
1270
1270
|
[dataSet]="dataSet"
|
|
@@ -1277,7 +1277,7 @@ ColumnChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
|
|
|
1277
1277
|
(dataPointContextMenu)="dataPointContextMenu.emit($event)"
|
|
1278
1278
|
(dataPointsSelect)="dataPointsSelect.emit($event)"
|
|
1279
1279
|
/>
|
|
1280
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
1280
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
1281
1281
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ColumnChartComponent, decorators: [{
|
|
1282
1282
|
type: Component,
|
|
1283
1283
|
args: [{
|
|
@@ -1309,6 +1309,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1309
1309
|
type: Input
|
|
1310
1310
|
}], beforeRender: [{
|
|
1311
1311
|
type: Input
|
|
1312
|
+
}], dataReady: [{
|
|
1313
|
+
type: Input
|
|
1312
1314
|
}], dataPointClick: [{
|
|
1313
1315
|
type: Output
|
|
1314
1316
|
}], dataPointContextMenu: [{
|
|
@@ -1398,7 +1400,7 @@ class BarChartComponent {
|
|
|
1398
1400
|
}
|
|
1399
1401
|
}
|
|
1400
1402
|
BarChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1401
|
-
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: `
|
|
1403
|
+
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: `
|
|
1402
1404
|
<csdk-chart
|
|
1403
1405
|
[chartType]="chartType"
|
|
1404
1406
|
[dataSet]="dataSet"
|
|
@@ -1411,7 +1413,7 @@ BarChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", vers
|
|
|
1411
1413
|
(dataPointContextMenu)="dataPointContextMenu.emit($event)"
|
|
1412
1414
|
(dataPointsSelect)="dataPointsSelect.emit($event)"
|
|
1413
1415
|
/>
|
|
1414
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
1416
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
1415
1417
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarChartComponent, decorators: [{
|
|
1416
1418
|
type: Component,
|
|
1417
1419
|
args: [{
|
|
@@ -1443,6 +1445,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1443
1445
|
type: Input
|
|
1444
1446
|
}], beforeRender: [{
|
|
1445
1447
|
type: Input
|
|
1448
|
+
}], dataReady: [{
|
|
1449
|
+
type: Input
|
|
1446
1450
|
}], dataPointClick: [{
|
|
1447
1451
|
type: Output
|
|
1448
1452
|
}], dataPointContextMenu: [{
|
|
@@ -1531,7 +1535,7 @@ class AreaChartComponent {
|
|
|
1531
1535
|
}
|
|
1532
1536
|
}
|
|
1533
1537
|
AreaChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AreaChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1534
|
-
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: `
|
|
1538
|
+
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: `
|
|
1535
1539
|
<csdk-chart
|
|
1536
1540
|
[chartType]="chartType"
|
|
1537
1541
|
[dataSet]="dataSet"
|
|
@@ -1544,7 +1548,7 @@ AreaChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ver
|
|
|
1544
1548
|
(dataPointContextMenu)="dataPointContextMenu.emit($event)"
|
|
1545
1549
|
(dataPointsSelect)="dataPointsSelect.emit($event)"
|
|
1546
1550
|
/>
|
|
1547
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
1551
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
1548
1552
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AreaChartComponent, decorators: [{
|
|
1549
1553
|
type: Component,
|
|
1550
1554
|
args: [{
|
|
@@ -1576,6 +1580,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1576
1580
|
type: Input
|
|
1577
1581
|
}], beforeRender: [{
|
|
1578
1582
|
type: Input
|
|
1583
|
+
}], dataReady: [{
|
|
1584
|
+
type: Input
|
|
1579
1585
|
}], dataPointClick: [{
|
|
1580
1586
|
type: Output
|
|
1581
1587
|
}], dataPointContextMenu: [{
|
|
@@ -1662,7 +1668,7 @@ class LineChartComponent {
|
|
|
1662
1668
|
}
|
|
1663
1669
|
}
|
|
1664
1670
|
LineChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LineChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1665
|
-
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: `
|
|
1671
|
+
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: `
|
|
1666
1672
|
<csdk-chart
|
|
1667
1673
|
[chartType]="chartType"
|
|
1668
1674
|
[dataSet]="dataSet"
|
|
@@ -1675,7 +1681,7 @@ LineChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ver
|
|
|
1675
1681
|
(dataPointContextMenu)="dataPointContextMenu.emit($event)"
|
|
1676
1682
|
(dataPointsSelect)="dataPointsSelect.emit($event)"
|
|
1677
1683
|
/>
|
|
1678
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
1684
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
1679
1685
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LineChartComponent, decorators: [{
|
|
1680
1686
|
type: Component,
|
|
1681
1687
|
args: [{
|
|
@@ -1707,6 +1713,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1707
1713
|
type: Input
|
|
1708
1714
|
}], beforeRender: [{
|
|
1709
1715
|
type: Input
|
|
1716
|
+
}], dataReady: [{
|
|
1717
|
+
type: Input
|
|
1710
1718
|
}], dataPointClick: [{
|
|
1711
1719
|
type: Output
|
|
1712
1720
|
}], dataPointContextMenu: [{
|
|
@@ -1781,7 +1789,7 @@ class IndicatorChartComponent {
|
|
|
1781
1789
|
}
|
|
1782
1790
|
}
|
|
1783
1791
|
IndicatorChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: IndicatorChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1784
|
-
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: `
|
|
1792
|
+
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: `
|
|
1785
1793
|
<csdk-chart
|
|
1786
1794
|
[chartType]="chartType"
|
|
1787
1795
|
[dataSet]="dataSet"
|
|
@@ -1790,7 +1798,7 @@ IndicatorChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0"
|
|
|
1790
1798
|
[highlights]="highlights"
|
|
1791
1799
|
[styleOptions]="styleOptions"
|
|
1792
1800
|
/>
|
|
1793
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
1801
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
1794
1802
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: IndicatorChartComponent, decorators: [{
|
|
1795
1803
|
type: Component,
|
|
1796
1804
|
args: [{
|
|
@@ -1816,6 +1824,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1816
1824
|
type: Input
|
|
1817
1825
|
}], styleOptions: [{
|
|
1818
1826
|
type: Input
|
|
1827
|
+
}], dataReady: [{
|
|
1828
|
+
type: Input
|
|
1819
1829
|
}] } });
|
|
1820
1830
|
|
|
1821
1831
|
/**
|
|
@@ -1900,7 +1910,7 @@ class ScatterChartComponent {
|
|
|
1900
1910
|
}
|
|
1901
1911
|
}
|
|
1902
1912
|
ScatterChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScatterChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1903
|
-
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: `
|
|
1913
|
+
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: `
|
|
1904
1914
|
<csdk-chart
|
|
1905
1915
|
[chartType]="chartType"
|
|
1906
1916
|
[dataSet]="dataSet"
|
|
@@ -1913,7 +1923,7 @@ ScatterChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
1913
1923
|
(dataPointContextMenu)="dataPointContextMenu.emit($event)"
|
|
1914
1924
|
(dataPointsSelect)="dataPointsSelect.emit($event)"
|
|
1915
1925
|
/>
|
|
1916
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
1926
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
1917
1927
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScatterChartComponent, decorators: [{
|
|
1918
1928
|
type: Component,
|
|
1919
1929
|
args: [{
|
|
@@ -1945,6 +1955,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1945
1955
|
type: Input
|
|
1946
1956
|
}], beforeRender: [{
|
|
1947
1957
|
type: Input
|
|
1958
|
+
}], dataReady: [{
|
|
1959
|
+
type: Input
|
|
1948
1960
|
}], dataPointClick: [{
|
|
1949
1961
|
type: Output
|
|
1950
1962
|
}], dataPointContextMenu: [{
|
|
@@ -2033,7 +2045,7 @@ class PieChartComponent {
|
|
|
2033
2045
|
}
|
|
2034
2046
|
}
|
|
2035
2047
|
PieChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PieChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2036
|
-
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: `
|
|
2048
|
+
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: `
|
|
2037
2049
|
<csdk-chart
|
|
2038
2050
|
[chartType]="chartType"
|
|
2039
2051
|
[dataSet]="dataSet"
|
|
@@ -2046,7 +2058,7 @@ PieChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", vers
|
|
|
2046
2058
|
(dataPointContextMenu)="dataPointContextMenu.emit($event)"
|
|
2047
2059
|
(dataPointsSelect)="dataPointsSelect.emit($event)"
|
|
2048
2060
|
/>
|
|
2049
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2061
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2050
2062
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PieChartComponent, decorators: [{
|
|
2051
2063
|
type: Component,
|
|
2052
2064
|
args: [{
|
|
@@ -2078,6 +2090,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2078
2090
|
type: Input
|
|
2079
2091
|
}], beforeRender: [{
|
|
2080
2092
|
type: Input
|
|
2093
|
+
}], dataReady: [{
|
|
2094
|
+
type: Input
|
|
2081
2095
|
}], dataPointClick: [{
|
|
2082
2096
|
type: Output
|
|
2083
2097
|
}], dataPointContextMenu: [{
|
|
@@ -2164,7 +2178,7 @@ class FunnelChartComponent {
|
|
|
2164
2178
|
}
|
|
2165
2179
|
}
|
|
2166
2180
|
FunnelChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FunnelChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2167
|
-
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: `
|
|
2181
|
+
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: `
|
|
2168
2182
|
<csdk-chart
|
|
2169
2183
|
[chartType]="chartType"
|
|
2170
2184
|
[dataSet]="dataSet"
|
|
@@ -2177,7 +2191,7 @@ FunnelChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
|
|
|
2177
2191
|
(dataPointContextMenu)="dataPointContextMenu.emit($event)"
|
|
2178
2192
|
(dataPointsSelect)="dataPointsSelect.emit($event)"
|
|
2179
2193
|
/>
|
|
2180
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2194
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2181
2195
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FunnelChartComponent, decorators: [{
|
|
2182
2196
|
type: Component,
|
|
2183
2197
|
args: [{
|
|
@@ -2209,6 +2223,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2209
2223
|
type: Input
|
|
2210
2224
|
}], beforeRender: [{
|
|
2211
2225
|
type: Input
|
|
2226
|
+
}], dataReady: [{
|
|
2227
|
+
type: Input
|
|
2212
2228
|
}], dataPointClick: [{
|
|
2213
2229
|
type: Output
|
|
2214
2230
|
}], dataPointContextMenu: [{
|
|
@@ -2296,7 +2312,7 @@ class PolarChartComponent {
|
|
|
2296
2312
|
}
|
|
2297
2313
|
}
|
|
2298
2314
|
PolarChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PolarChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2299
|
-
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: `
|
|
2315
|
+
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: `
|
|
2300
2316
|
<csdk-chart
|
|
2301
2317
|
[chartType]="chartType"
|
|
2302
2318
|
[dataSet]="dataSet"
|
|
@@ -2309,7 +2325,7 @@ PolarChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ve
|
|
|
2309
2325
|
(dataPointContextMenu)="dataPointContextMenu.emit($event)"
|
|
2310
2326
|
(dataPointsSelect)="dataPointsSelect.emit($event)"
|
|
2311
2327
|
/>
|
|
2312
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2328
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2313
2329
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PolarChartComponent, decorators: [{
|
|
2314
2330
|
type: Component,
|
|
2315
2331
|
args: [{
|
|
@@ -2341,6 +2357,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2341
2357
|
type: Input
|
|
2342
2358
|
}], beforeRender: [{
|
|
2343
2359
|
type: Input
|
|
2360
|
+
}], dataReady: [{
|
|
2361
|
+
type: Input
|
|
2344
2362
|
}], dataPointClick: [{
|
|
2345
2363
|
type: Output
|
|
2346
2364
|
}], dataPointContextMenu: [{
|
|
@@ -2429,7 +2447,7 @@ class TreemapChartComponent {
|
|
|
2429
2447
|
}
|
|
2430
2448
|
}
|
|
2431
2449
|
TreemapChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TreemapChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2432
|
-
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: `
|
|
2450
|
+
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: `
|
|
2433
2451
|
<csdk-chart
|
|
2434
2452
|
[chartType]="chartType"
|
|
2435
2453
|
[dataSet]="dataSet"
|
|
@@ -2442,7 +2460,7 @@ TreemapChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
2442
2460
|
(dataPointContextMenu)="dataPointContextMenu.emit($event)"
|
|
2443
2461
|
(dataPointsSelect)="dataPointsSelect.emit($event)"
|
|
2444
2462
|
/>
|
|
2445
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2463
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2446
2464
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TreemapChartComponent, decorators: [{
|
|
2447
2465
|
type: Component,
|
|
2448
2466
|
args: [{
|
|
@@ -2474,6 +2492,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2474
2492
|
type: Input
|
|
2475
2493
|
}], beforeRender: [{
|
|
2476
2494
|
type: Input
|
|
2495
|
+
}], dataReady: [{
|
|
2496
|
+
type: Input
|
|
2477
2497
|
}], dataPointClick: [{
|
|
2478
2498
|
type: Output
|
|
2479
2499
|
}], dataPointContextMenu: [{
|
|
@@ -2562,7 +2582,7 @@ class SunburstChartComponent {
|
|
|
2562
2582
|
}
|
|
2563
2583
|
}
|
|
2564
2584
|
SunburstChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SunburstChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2565
|
-
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: `
|
|
2585
|
+
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: `
|
|
2566
2586
|
<csdk-chart
|
|
2567
2587
|
[chartType]="chartType"
|
|
2568
2588
|
[dataSet]="dataSet"
|
|
@@ -2575,7 +2595,7 @@ SunburstChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
2575
2595
|
(dataPointContextMenu)="dataPointContextMenu.emit($event)"
|
|
2576
2596
|
(dataPointsSelect)="dataPointsSelect.emit($event)"
|
|
2577
2597
|
/>
|
|
2578
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2598
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2579
2599
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SunburstChartComponent, decorators: [{
|
|
2580
2600
|
type: Component,
|
|
2581
2601
|
args: [{
|
|
@@ -2607,6 +2627,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2607
2627
|
type: Input
|
|
2608
2628
|
}], beforeRender: [{
|
|
2609
2629
|
type: Input
|
|
2630
|
+
}], dataReady: [{
|
|
2631
|
+
type: Input
|
|
2610
2632
|
}], dataPointClick: [{
|
|
2611
2633
|
type: Output
|
|
2612
2634
|
}], dataPointContextMenu: [{
|
|
@@ -2689,7 +2711,7 @@ class BoxplotChartComponent {
|
|
|
2689
2711
|
}
|
|
2690
2712
|
}
|
|
2691
2713
|
BoxplotChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BoxplotChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2692
|
-
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: `
|
|
2714
|
+
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: `
|
|
2693
2715
|
<csdk-chart
|
|
2694
2716
|
[chartType]="chartType"
|
|
2695
2717
|
[dataSet]="dataSet"
|
|
@@ -2702,7 +2724,7 @@ BoxplotChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
2702
2724
|
(dataPointContextMenu)="dataPointContextMenu.emit($event)"
|
|
2703
2725
|
(dataPointsSelect)="dataPointsSelect.emit($event)"
|
|
2704
2726
|
/>
|
|
2705
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2727
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2706
2728
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BoxplotChartComponent, decorators: [{
|
|
2707
2729
|
type: Component,
|
|
2708
2730
|
args: [{
|
|
@@ -2734,6 +2756,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2734
2756
|
type: Input
|
|
2735
2757
|
}], beforeRender: [{
|
|
2736
2758
|
type: Input
|
|
2759
|
+
}], dataReady: [{
|
|
2760
|
+
type: Input
|
|
2737
2761
|
}], dataPointClick: [{
|
|
2738
2762
|
type: Output
|
|
2739
2763
|
}], dataPointContextMenu: [{
|
|
@@ -2805,7 +2829,7 @@ class ScattermapChartComponent {
|
|
|
2805
2829
|
}
|
|
2806
2830
|
}
|
|
2807
2831
|
ScattermapChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScattermapChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2808
|
-
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: `
|
|
2832
|
+
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: `
|
|
2809
2833
|
<csdk-chart
|
|
2810
2834
|
[chartType]="chartType"
|
|
2811
2835
|
[dataSet]="dataSet"
|
|
@@ -2815,7 +2839,7 @@ ScattermapChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0
|
|
|
2815
2839
|
[styleOptions]="styleOptions"
|
|
2816
2840
|
(dataPointClick)="dataPointClick.emit($event)"
|
|
2817
2841
|
/>
|
|
2818
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2842
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2819
2843
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScattermapChartComponent, decorators: [{
|
|
2820
2844
|
type: Component,
|
|
2821
2845
|
args: [{
|
|
@@ -2842,6 +2866,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2842
2866
|
type: Input
|
|
2843
2867
|
}], styleOptions: [{
|
|
2844
2868
|
type: Input
|
|
2869
|
+
}], dataReady: [{
|
|
2870
|
+
type: Input
|
|
2845
2871
|
}], dataPointClick: [{
|
|
2846
2872
|
type: Output
|
|
2847
2873
|
}] } });
|
|
@@ -2903,7 +2929,7 @@ class AreamapChartComponent {
|
|
|
2903
2929
|
}
|
|
2904
2930
|
}
|
|
2905
2931
|
AreamapChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AreamapChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2906
|
-
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: `
|
|
2932
|
+
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: `
|
|
2907
2933
|
<csdk-chart
|
|
2908
2934
|
[chartType]="chartType"
|
|
2909
2935
|
[dataSet]="dataSet"
|
|
@@ -2913,7 +2939,7 @@ AreamapChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
2913
2939
|
[styleOptions]="styleOptions"
|
|
2914
2940
|
(dataPointClick)="dataPointClick.emit($event)"
|
|
2915
2941
|
/>
|
|
2916
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2942
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2917
2943
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AreamapChartComponent, decorators: [{
|
|
2918
2944
|
type: Component,
|
|
2919
2945
|
args: [{
|
|
@@ -2940,6 +2966,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2940
2966
|
type: Input
|
|
2941
2967
|
}], styleOptions: [{
|
|
2942
2968
|
type: Input
|
|
2969
|
+
}], dataReady: [{
|
|
2970
|
+
type: Input
|
|
2943
2971
|
}], dataPointClick: [{
|
|
2944
2972
|
type: Output
|
|
2945
2973
|
}] } });
|
|
@@ -3151,7 +3179,7 @@ class AreaRangeChartComponent {
|
|
|
3151
3179
|
}
|
|
3152
3180
|
}
|
|
3153
3181
|
AreaRangeChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AreaRangeChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3154
|
-
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: `
|
|
3182
|
+
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: `
|
|
3155
3183
|
<csdk-chart
|
|
3156
3184
|
[chartType]="chartType"
|
|
3157
3185
|
[dataSet]="dataSet"
|
|
@@ -3164,7 +3192,7 @@ AreaRangeChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0"
|
|
|
3164
3192
|
(dataPointContextMenu)="dataPointContextMenu.emit($event)"
|
|
3165
3193
|
(dataPointsSelect)="dataPointsSelect.emit($event)"
|
|
3166
3194
|
/>
|
|
3167
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
3195
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender", "dataReady"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
3168
3196
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AreaRangeChartComponent, decorators: [{
|
|
3169
3197
|
type: Component,
|
|
3170
3198
|
args: [{
|
|
@@ -3196,6 +3224,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3196
3224
|
type: Input
|
|
3197
3225
|
}], beforeRender: [{
|
|
3198
3226
|
type: Input
|
|
3227
|
+
}], dataReady: [{
|
|
3228
|
+
type: Input
|
|
3199
3229
|
}], dataPointClick: [{
|
|
3200
3230
|
type: Output
|
|
3201
3231
|
}], dataPointContextMenu: [{
|
|
@@ -3332,7 +3362,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3332
3362
|
* dashboardOid: string = '60f3e3e3e4b0e3e3e4b0e3e3';
|
|
3333
3363
|
* }
|
|
3334
3364
|
* ```
|
|
3335
|
-
* @group Fusion
|
|
3365
|
+
* @group Fusion Assets
|
|
3336
3366
|
* @fusionEmbed
|
|
3337
3367
|
*/
|
|
3338
3368
|
class DashboardWidgetComponent {
|
|
@@ -3766,7 +3796,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3766
3796
|
*
|
|
3767
3797
|
* To learn more about this and related dashboard components,
|
|
3768
3798
|
* see [Embedded Dashboards](/guides/sdk/guides/dashboards/index.html).
|
|
3769
|
-
* @group Fusion
|
|
3799
|
+
* @group Fusion Assets
|
|
3770
3800
|
* @fusionEmbed
|
|
3771
3801
|
* @beta
|
|
3772
3802
|
*/
|
|
@@ -4353,8 +4383,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4353
4383
|
* Angular query service
|
|
4354
4384
|
* @groupDescription Dashboards
|
|
4355
4385
|
* Angular components and utilities for working with dashboards
|
|
4356
|
-
* @groupDescription Fusion
|
|
4357
|
-
* Angular modules, services, and components for working with Fusion
|
|
4386
|
+
* @groupDescription Fusion Assets
|
|
4387
|
+
* Angular modules, services, and components for working with Fusion dashboards, widgets, queries, and formulas
|
|
4358
4388
|
* @groupDescription Interfaces
|
|
4359
4389
|
* TypeScript interfaces for components and services listed above
|
|
4360
4390
|
* @groupDescription Type Aliases
|