@carbon/charts-angular 1.7.5 → 1.8.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/CHANGELOG.md +22 -0
- package/bundles/carbon-charts-angular.umd.js +45 -0
- package/bundles/carbon-charts-angular.umd.js.map +1 -1
- package/bundles/carbon-charts-angular.umd.min.js +2 -2
- package/bundles/carbon-charts-angular.umd.min.js.map +1 -1
- package/carbon-charts-angular.d.ts +1 -0
- package/carbon-charts-angular.metadata.json +1 -1
- package/choropleth.component.d.ts +13 -0
- package/esm2015/carbon-charts-angular.js +2 -1
- package/esm2015/charts.module.js +4 -1
- package/esm2015/choropleth.component.js +33 -0
- package/esm5/carbon-charts-angular.js +2 -1
- package/esm5/charts.module.js +4 -1
- package/esm5/choropleth.component.js +47 -0
- package/fesm2015/carbon-charts-angular.js +34 -2
- package/fesm2015/carbon-charts-angular.js.map +1 -1
- package/fesm5/carbon-charts-angular.js +46 -2
- package/fesm5/carbon-charts-angular.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Component, ElementRef, Input, ViewChild, NgModule, EventEmitter, Output, HostBinding } from '@angular/core';
|
|
2
2
|
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { AlluvialChart, AreaChart, StackedAreaChart, SimpleBarChart, GroupedBarChart, StackedBarChart, BoxplotChart, BubbleChart, BulletChart, DonutChart, GaugeChart, HistogramChart, LineChart, LollipopChart, PieChart, ScatterChart, MeterChart, RadarChart, ComboChart, TreeChart, TreemapChart, CirclePackChart, WordCloudChart, HeatmapChart } from '@carbon/charts';
|
|
3
|
+
import { AlluvialChart, AreaChart, StackedAreaChart, SimpleBarChart, GroupedBarChart, StackedBarChart, BoxplotChart, BubbleChart, BulletChart, DonutChart, GaugeChart, HistogramChart, LineChart, LollipopChart, PieChart, ScatterChart, MeterChart, RadarChart, ComboChart, TreeChart, TreemapChart, CirclePackChart, WordCloudChart, HeatmapChart, EXPERIMENTAL_ChoroplethChart } from '@carbon/charts';
|
|
4
4
|
import { buildStraightPathString } from '@carbon/charts/components/diagrams/buildPaths';
|
|
5
5
|
import { arrowLeft, arrowRight, circle, diamond, square, tee } from '@carbon/charts/components/diagrams/markerDefinitions';
|
|
6
6
|
|
|
@@ -863,6 +863,36 @@ HeatmapChartComponent.decorators = [
|
|
|
863
863
|
}] }
|
|
864
864
|
];
|
|
865
865
|
|
|
866
|
+
/**
|
|
867
|
+
* @fileoverview added by tsickle
|
|
868
|
+
* Generated from: choropleth.component.ts
|
|
869
|
+
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
870
|
+
*/
|
|
871
|
+
/**
|
|
872
|
+
* Wrapper around `Choropleth` in carbon charts library
|
|
873
|
+
*
|
|
874
|
+
* Most functions just call their equivalent from the chart library.
|
|
875
|
+
*/
|
|
876
|
+
class EXPERIMENTAL_ChoroplethChartComponent extends BaseChart {
|
|
877
|
+
/**
|
|
878
|
+
* Runs after view init to create a chart, attach it to `elementRef` and draw it.
|
|
879
|
+
* @return {?}
|
|
880
|
+
*/
|
|
881
|
+
ngAfterViewInit() {
|
|
882
|
+
this.chart = new EXPERIMENTAL_ChoroplethChart(this.elementRef.nativeElement, {
|
|
883
|
+
data: this.data,
|
|
884
|
+
options: this.options
|
|
885
|
+
});
|
|
886
|
+
Object.assign(this, this.chart);
|
|
887
|
+
}
|
|
888
|
+
}
|
|
889
|
+
EXPERIMENTAL_ChoroplethChartComponent.decorators = [
|
|
890
|
+
{ type: Component, args: [{
|
|
891
|
+
selector: "EXPERIMENTAL-ibm-choropleth-chart",
|
|
892
|
+
template: ``
|
|
893
|
+
}] }
|
|
894
|
+
];
|
|
895
|
+
|
|
866
896
|
/**
|
|
867
897
|
* @fileoverview added by tsickle
|
|
868
898
|
* Generated from: charts.module.ts
|
|
@@ -877,6 +907,7 @@ ChartsModule.decorators = [
|
|
|
877
907
|
BaseChart,
|
|
878
908
|
AlluvialChartComponent,
|
|
879
909
|
AreaChartComponent,
|
|
910
|
+
EXPERIMENTAL_ChoroplethChartComponent,
|
|
880
911
|
StackedAreaChartComponent,
|
|
881
912
|
SimpleBarChartComponent,
|
|
882
913
|
GroupedBarChartComponent,
|
|
@@ -904,6 +935,7 @@ ChartsModule.decorators = [
|
|
|
904
935
|
BaseChart,
|
|
905
936
|
AlluvialChartComponent,
|
|
906
937
|
AreaChartComponent,
|
|
938
|
+
EXPERIMENTAL_ChoroplethChartComponent,
|
|
907
939
|
StackedAreaChartComponent,
|
|
908
940
|
SimpleBarChartComponent,
|
|
909
941
|
GroupedBarChartComponent,
|
|
@@ -1686,5 +1718,5 @@ ShapeNodeModule.decorators = [
|
|
|
1686
1718
|
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
1687
1719
|
*/
|
|
1688
1720
|
|
|
1689
|
-
export { AlluvialChartComponent, AreaChartComponent, BaseChart, BoxplotChartComponent, BubbleChartComponent, BulletChartComponent, CardNodeColumnComponent, CardNodeComponent, CardNodeLabelComponent, CardNodeModule, CardNodeSubtitleComponent, CardNodeTitleComponent, ChartsModule, CirclePackChartComponent, ComboChartComponent, DonutChartComponent, EdgeComponent, EdgeModule, GaugeChartComponent, GroupedBarChartComponent, HeatmapChartComponent, HistogramChartComponent, LineChartComponent, LollipopChartComponent, MarkerArrowLeftComponent, MarkerArrowRightComponent, MarkerComponent, MarkerDiamondComponent, MarkerModule, MarkerShapeNodeComponent, MarkerSquareComponent, MarkerTeeComponent, MeterChartComponent, PieChartComponent, RadarChartComponent, ScatterChartComponent, ShapeNodeComponent, ShapeNodeModule, SimpleBarChartComponent, StackedAreaChartComponent, StackedBarChartComponent, TreeChartComponent, TreemapChartComponent, WordCloudChartComponent };
|
|
1721
|
+
export { AlluvialChartComponent, AreaChartComponent, BaseChart, BoxplotChartComponent, BubbleChartComponent, BulletChartComponent, CardNodeColumnComponent, CardNodeComponent, CardNodeLabelComponent, CardNodeModule, CardNodeSubtitleComponent, CardNodeTitleComponent, ChartsModule, CirclePackChartComponent, ComboChartComponent, DonutChartComponent, EdgeComponent, EdgeModule, GaugeChartComponent, GroupedBarChartComponent, HeatmapChartComponent, HistogramChartComponent, LineChartComponent, LollipopChartComponent, MarkerArrowLeftComponent, MarkerArrowRightComponent, MarkerComponent, MarkerDiamondComponent, MarkerModule, MarkerShapeNodeComponent, MarkerSquareComponent, MarkerTeeComponent, MeterChartComponent, PieChartComponent, RadarChartComponent, ScatterChartComponent, ShapeNodeComponent, ShapeNodeModule, SimpleBarChartComponent, StackedAreaChartComponent, StackedBarChartComponent, TreeChartComponent, TreemapChartComponent, WordCloudChartComponent, EXPERIMENTAL_ChoroplethChartComponent as ɵa };
|
|
1690
1722
|
//# sourceMappingURL=carbon-charts-angular.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"carbon-charts-angular.js","sources":["ng://@carbon/charts-angular/base-chart.component.ts","ng://@carbon/charts-angular/alluvial-chart.component.ts","ng://@carbon/charts-angular/area-chart.component.ts","ng://@carbon/charts-angular/area-chart-stacked.component.ts","ng://@carbon/charts-angular/bar-chart-simple.component.ts","ng://@carbon/charts-angular/bar-chart-grouped.component.ts","ng://@carbon/charts-angular/bar-chart-stacked.component.ts","ng://@carbon/charts-angular/boxplot-chart.component.ts","ng://@carbon/charts-angular/bubble-chart.component.ts","ng://@carbon/charts-angular/bullet-chart.component.ts","ng://@carbon/charts-angular/donut-chart.component.ts","ng://@carbon/charts-angular/gauge-chart.component.ts","ng://@carbon/charts-angular/histogram-chart.component.ts","ng://@carbon/charts-angular/line-chart.component.ts","ng://@carbon/charts-angular/lollipop-chart.component.ts","ng://@carbon/charts-angular/pie-chart.component.ts","ng://@carbon/charts-angular/scatter-chart.component.ts","ng://@carbon/charts-angular/meter-chart.component.ts","ng://@carbon/charts-angular/radar-chart.component.ts","ng://@carbon/charts-angular/combo-chart.component.ts","ng://@carbon/charts-angular/tree-chart.component.ts","ng://@carbon/charts-angular/treemap-chart.component.ts","ng://@carbon/charts-angular/circle-pack-chart.component.ts","ng://@carbon/charts-angular/wordcloud-chart.component.ts","ng://@carbon/charts-angular/heatmap-chart.component.ts","ng://@carbon/charts-angular/charts.module.ts","ng://@carbon/charts-angular/diagrams/configs.ts","ng://@carbon/charts-angular/diagrams/card-node/card-node.component.ts","ng://@carbon/charts-angular/diagrams/card-node/card-node-column.component.ts","ng://@carbon/charts-angular/diagrams/card-node/card-node-label.component.ts","ng://@carbon/charts-angular/diagrams/card-node/card-node-subtitle.component.ts","ng://@carbon/charts-angular/diagrams/card-node/card-node-title.component.ts","ng://@carbon/charts-angular/diagrams/card-node/card-node.module.ts","ng://@carbon/charts-angular/diagrams/edge/edge.component.ts","ng://@carbon/charts-angular/diagrams/edge/edge.module.ts","ng://@carbon/charts-angular/diagrams/marker/marker.component.ts","ng://@carbon/charts-angular/diagrams/marker/marker.module.ts","ng://@carbon/charts-angular/diagrams/shape-node/shape-node.component.ts","ng://@carbon/charts-angular/diagrams/shape-node/shape-node.module.ts"],"sourcesContent":["import {\n\tComponent,\n\tInput,\n\tViewChild,\n\tOnInit,\n\tAfterViewInit,\n\tElementRef\n} from \"@angular/core\";\n\n/**\n * Wrapper around `BaseChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-base-chart\",\n\ttemplate: ``\n})\nexport class BaseChart implements AfterViewInit, OnInit {\n\tconstructor(protected elementRef: ElementRef) {}\n\n\t/**\n\t * Data passed to charts library for displaying\n\t */\n\t@Input() set data(newData) {\n\t\t// If data already exists, that means the chart has been initialized\n\t\tconst dataExistsAlready = this._data !== null && this._data !== undefined;\n\n\t\tthis._data = newData;\n\n\t\tif (dataExistsAlready) {\n\t\t\tthis.chart.model.setData(newData);\n\t\t}\n\t}\n\n\tget data() {\n\t\treturn this._data;\n\t}\n\n\t/**\n\t * Options passed to charts library\n\t */\n\t@Input() set options(newOptions) {\n\t\t// If data already exists, that means the chart has been initialized\n\t\tconst optionsExistAlready = this._options !== null && this._options !== undefined;\n\n\t\tthis._options = newOptions;\n\n\t\tif (optionsExistAlready) {\n\t\t\tthis.chart.model.setOptions(newOptions);\n\t\t}\n\t}\n\n\tget options() {\n\t\treturn this._options;\n\t}\n\n\t/**\n\t * Chart width\n\t */\n\t@Input() width: any;\n\n\t/**\n\t * Chart height\n\t */\n\t@Input() height: any;\n\n\t/**\n\t * Chart container element ref\n\t */\n\t@ViewChild(\"nChart\") chartRef;\n\n\t/**\n\t * Chart object instance\n\t *\n\t * You can use this to do whatever you would normally do with a chart if you used\n\t * charts library directly.\n\t */\n\tchart;\n\n\tprivate _data: any;\n\tprivate _options: any;\n\n\tngOnInit() {\n\t\t// Width prop is mandatory for the wrappers\n\t\tif (this.width) {\n\t\t\tthis.options.width = this.width;\n\t\t}\n\n\t\t// Height prop is mandatory for the wrappers\n\t\tif (this.height) {\n\t\t\tthis.options.height = this.height;\n\t\t}\n\t}\n\n\t/**\n\t * Runs after view init to create a chart, attach it to `chartRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tconsole.log(\"You need to implement your own `ngAfterViewInit()` function\");\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { AlluvialChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `Alluvial` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-alluvial-chart\",\n\ttemplate: ``\n})\nexport class AlluvialChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new AlluvialChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { AreaChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `AreaChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-area-chart\",\n\ttemplate: `\n\t\t<div #nChart class=\"ibm-chart-container\">\n\t\t</div>\n\t`\n})\nexport class AreaChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `chartRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new AreaChart(\n\t\t\tthis.chartRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { StackedAreaChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `StackedAreaChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-stacked-area-chart\",\n\ttemplate: ``\n})\nexport class StackedAreaChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new StackedAreaChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { SimpleBarChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `SimpleBarChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-simple-bar-chart\",\n\ttemplate: ``\n})\nexport class SimpleBarChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new SimpleBarChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { GroupedBarChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `GroupedBarChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-grouped-bar-chart\",\n\ttemplate: ``\n})\nexport class GroupedBarChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new GroupedBarChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { StackedBarChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `StackedBarChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-stacked-bar-chart\",\n\ttemplate: ``\n})\nexport class StackedBarChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new StackedBarChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { BoxplotChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `BoxplotChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-boxplot-chart\",\n\ttemplate: ``\n})\nexport class BoxplotChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new BoxplotChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { BubbleChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `BubbleChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-bubble-chart\",\n\ttemplate: ``\n})\nexport class BubbleChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new BubbleChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { BulletChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `BulletChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-bullet-chart\",\n\ttemplate: ``\n})\nexport class BulletChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new BulletChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { DonutChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `DonutChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-donut-chart\",\n\ttemplate: ``\n})\nexport class DonutChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new DonutChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { GaugeChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `GaugeChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-gauge-chart\",\n\ttemplate: ``\n})\nexport class GaugeChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new GaugeChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { HistogramChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `HistogramChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-histogram-chart\",\n\ttemplate: ``\n})\nexport class HistogramChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new HistogramChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { LineChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `LineChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-line-chart\",\n\ttemplate: ``\n})\nexport class LineChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new LineChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { LollipopChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `LollipopChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-lollipop-chart\",\n\ttemplate: ``\n})\nexport class LollipopChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new LollipopChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { PieChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `PieChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-pie-chart\",\n\ttemplate: ``\n})\nexport class PieChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new PieChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { ScatterChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `ScatterChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-scatter-chart\",\n\ttemplate: ``\n})\nexport class ScatterChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new ScatterChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\nimport { MeterChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `MeterChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-meter-chart\",\n\ttemplate: ``\n})\nexport class MeterChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new MeterChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { RadarChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `RadarChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-radar-chart\",\n\ttemplate: ``\n})\nexport class RadarChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new RadarChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\nimport { ComboChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `ComboChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-combo-chart\",\n\ttemplate: ``\n})\nexport class ComboChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new ComboChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { TreeChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `TreeChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-tree-chart\",\n\ttemplate: ``\n})\nexport class TreeChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new TreeChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { TreemapChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `TreemapChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-treemap-chart\",\n\ttemplate: ``\n})\nexport class TreemapChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new TreemapChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { CirclePackChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `BubbleChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-circle-pack-chart\",\n\ttemplate: ``\n})\nexport class CirclePackChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new CirclePackChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { WordCloudChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `WordCloudChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-wordcloud-chart\",\n\ttemplate: ``\n})\nexport class WordCloudChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new WordCloudChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { HeatmapChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `Heatmap` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-heatmap-chart\",\n\ttemplate: ``\n})\nexport class HeatmapChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new HeatmapChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { BaseChart } from './base-chart.component';\nimport { AlluvialChartComponent } from './alluvial-chart.component';\nimport { AreaChartComponent } from './area-chart.component';\nimport { StackedAreaChartComponent } from './area-chart-stacked.component';\nimport { SimpleBarChartComponent } from './bar-chart-simple.component';\nimport { GroupedBarChartComponent } from './bar-chart-grouped.component';\nimport { StackedBarChartComponent } from './bar-chart-stacked.component';\nimport { BoxplotChartComponent } from './boxplot-chart.component';\nimport { BubbleChartComponent } from './bubble-chart.component';\nimport { BulletChartComponent } from './bullet-chart.component';\nimport { DonutChartComponent } from './donut-chart.component';\nimport { GaugeChartComponent } from './gauge-chart.component';\nimport { HistogramChartComponent } from './histogram-chart.component';\nimport { LineChartComponent } from './line-chart.component';\nimport { LollipopChartComponent } from './lollipop-chart.component';\nimport { PieChartComponent } from './pie-chart.component';\nimport { ScatterChartComponent } from './scatter-chart.component';\nimport { MeterChartComponent } from './meter-chart.component';\nimport { RadarChartComponent } from './radar-chart.component';\nimport { ComboChartComponent } from './combo-chart.component';\nimport { TreeChartComponent } from './tree-chart.component';\nimport { TreemapChartComponent } from './treemap-chart.component';\nimport { CirclePackChartComponent } from './circle-pack-chart.component';\nimport { WordCloudChartComponent } from './wordcloud-chart.component';\nimport { HeatmapChartComponent } from './heatmap-chart.component';\n\n@NgModule({\n\timports: [CommonModule],\n\tdeclarations: [\n\t\tBaseChart,\n\t\tAlluvialChartComponent,\n\t\tAreaChartComponent,\n\t\tStackedAreaChartComponent,\n\t\tSimpleBarChartComponent,\n\t\tGroupedBarChartComponent,\n\t\tStackedBarChartComponent,\n\t\tBoxplotChartComponent,\n\t\tBubbleChartComponent,\n\t\tBulletChartComponent,\n\t\tDonutChartComponent,\n\t\tGaugeChartComponent,\n\t\tHeatmapChartComponent,\n\t\tHistogramChartComponent,\n\t\tLineChartComponent,\n\t\tLollipopChartComponent,\n\t\tPieChartComponent,\n\t\tScatterChartComponent,\n\t\tMeterChartComponent,\n\t\tRadarChartComponent,\n\t\tComboChartComponent,\n\t\tTreeChartComponent,\n\t\tTreemapChartComponent,\n\t\tCirclePackChartComponent,\n\t\tWordCloudChartComponent,\n\t],\n\texports: [\n\t\tBaseChart,\n\t\tAlluvialChartComponent,\n\t\tAreaChartComponent,\n\t\tStackedAreaChartComponent,\n\t\tSimpleBarChartComponent,\n\t\tGroupedBarChartComponent,\n\t\tStackedBarChartComponent,\n\t\tBoxplotChartComponent,\n\t\tBubbleChartComponent,\n\t\tBulletChartComponent,\n\t\tDonutChartComponent,\n\t\tGaugeChartComponent,\n\t\tHeatmapChartComponent,\n\t\tHistogramChartComponent,\n\t\tLineChartComponent,\n\t\tLollipopChartComponent,\n\t\tPieChartComponent,\n\t\tScatterChartComponent,\n\t\tMeterChartComponent,\n\t\tRadarChartComponent,\n\t\tComboChartComponent,\n\t\tTreeChartComponent,\n\t\tTreemapChartComponent,\n\t\tCirclePackChartComponent,\n\t\tWordCloudChartComponent\n\t],\n})\nexport class ChartsModule {}\n","export const carbonPrefix = 'cds';\n","import { Component, Input, Output, EventEmitter, OnInit } from '@angular/core';\nimport { carbonPrefix } from '../configs';\n\n@Component({\n\tselector: 'ibm-diagram-card-node',\n\ttemplate: `\n\t\t<ng-container [ngSwitch]=\"component\">\n\t\t\t<xhtml:div\n\t\t\t\t*ngSwitchCase=\"'div'\"\n\t\t\t\t[ngClass]=\"[\n\t\t\t\t\tnamespace,\n\t\t\t\t\tstacked ? namespace + '--stacked' : '',\n\t\t\t\t\tnamespace + '--' + component\n\t\t\t\t]\"\n\t\t\t\t[ngStyle]=\"{\n\t\t\t\t\t'border-color': color,\n\t\t\t\t\tposition: position\n\t\t\t\t}\"\n\t\t\t\t(mouseenter)=\"mouseEnter.emit($event)\"\n\t\t\t\t(mouseover)=\"mouseOver.emit($event)\"\n\t\t\t\t(mouseout)=\"mouseOut.emit($event)\"\n\t\t\t\t(mouseleave)=\"mouseLeave.emit($event)\"\n\t\t\t\t(mousemove)=\"mouseMove.emit($event)\"\n\t\t\t\ttabindex=\"0\"\n\t\t\t>\n\t\t\t\t<ng-container *ngTemplateOutlet=\"nodeTemplate\"></ng-container>\n\t\t\t</xhtml:div>\n\n\t\t\t<xhtml:button\n\t\t\t\t*ngSwitchCase=\"'button'\"\n\t\t\t\t[ngClass]=\"[\n\t\t\t\t\tnamespace,\n\t\t\t\t\tstacked ? namespace + '--stacked' : '',\n\t\t\t\t\tnamespace + '--' + component\n\t\t\t\t]\"\n\t\t\t\t[ngStyle]=\"{\n\t\t\t\t\t'border-color': color,\n\t\t\t\t\tposition: position\n\t\t\t\t}\"\n\t\t\t\t(click)=\"click.emit($event)\"\n\t\t\t\t(mouseenter)=\"mouseEnter.emit($event)\"\n\t\t\t\t(mouseover)=\"mouseOver.emit($event)\"\n\t\t\t\t(mouseout)=\"mouseOut.emit($event)\"\n\t\t\t\t(mouseleave)=\"mouseLeave.emit($event)\"\n\t\t\t\t(mousemove)=\"mouseMove.emit($event)\"\n\t\t\t\ttabindex=\"0\"\n\t\t\t>\n\t\t\t\t<ng-container *ngTemplateOutlet=\"nodeTemplate\"></ng-container>\n\t\t\t</xhtml:button>\n\n\t\t\t<xhtml:a\n\t\t\t\t*ngSwitchCase=\"'a'\"\n\t\t\t\t[ngClass]=\"[\n\t\t\t\t\tnamespace,\n\t\t\t\t\tstacked ? namespace + '--stacked' : '',\n\t\t\t\t\tnamespace + '--' + component\n\t\t\t\t]\"\n\t\t\t\t[attr.href]=\"href\"\n\t\t\t\t[ngStyle]=\"{ 'border-color': color, position: position }\"\n\t\t\t\t(mouseenter)=\"mouseEnter.emit($event)\"\n\t\t\t\t(mouseover)=\"mouseOver.emit($event)\"\n\t\t\t\t(mouseout)=\"mouseOut.emit($event)\"\n\t\t\t\t(mouseleave)=\"mouseLeave.emit($event)\"\n\t\t\t\t(mousemove)=\"mouseMove.emit($event)\"\n\t\t\t\ttabindex=\"0\"\n\t\t\t>\n\t\t\t\t<ng-container *ngTemplateOutlet=\"nodeTemplate\"></ng-container>\n\t\t\t</xhtml:a>\n\t\t</ng-container>\n\t\t<ng-template #nodeTemplate>\n\t\t\t<ng-content></ng-content>\n\t\t</ng-template>\n\t`,\n})\nexport class CardNodeComponent implements OnInit {\n\t@Input() as = 'div';\n\t@Input() href: string = null;\n\t@Input() color;\n\t@Input() stacked;\n\t@Input() position: string = 'static';\n\n\t@Output() click: EventEmitter<any> = new EventEmitter<any>();\n\t@Output() mouseEnter: EventEmitter<any> = new EventEmitter<any>();\n\t@Output() mouseOver: EventEmitter<any> = new EventEmitter<any>();\n\t@Output() mouseOut: EventEmitter<any> = new EventEmitter<any>();\n\t@Output() mouseLeave: EventEmitter<any> = new EventEmitter<any>();\n\t@Output() mouseMove: EventEmitter<any> = new EventEmitter<any>();\n\n\tnamespace = `${carbonPrefix}--cc--card-node`;\n\n\tcomponent = 'div';\n\n\tngOnInit() {\n\t\tif (this.href) {\n\t\t\tthis.component = 'a';\n\t\t} else {\n\t\t\tthis.component = this.as;\n\t\t}\n\t}\n}\n","import { Component, Input, HostBinding } from '@angular/core';\nimport { carbonPrefix } from '../configs';\n\n@Component({\n\tselector: 'ibm-diagram-card-node-column',\n\ttemplate: `\n\t\t<xhtml:div>\n\t\t\t<ng-content></ng-content>\n\t\t</xhtml:div>\n\t`,\n})\nexport class CardNodeColumnComponent {\n\t@Input() farsideColumn = false;\n\n\t@HostBinding('class') get class() {\n\t\tconst farsideClassName = this.farsideColumn\n\t\t\t? `${carbonPrefix}--cc--card-node__column--farside`\n\t\t\t: '';\n\n\t\treturn `${carbonPrefix}--cc--card-node__column ${farsideClassName}`;\n\t}\n}\n","import { Component } from \"@angular/core\";\nimport { carbonPrefix } from '../configs';\n\n@Component({\n\tselector: \"ibm-diagram-card-node-label\",\n\ttemplate: `\n\t<xhtml:label [ngClass]=\"namespace\">\n\t\t<ng-content></ng-content>\n\t</xhtml:label>\n\t`\n})\n\nexport class CardNodeLabelComponent {\n\tnamespace = `${carbonPrefix}--cc--card-node__label`;\n}\n","import { Component } from \"@angular/core\";\nimport { carbonPrefix } from '../configs';\n\n@Component({\n\tselector: \"ibm-diagram-card-node-subtitle\",\n\ttemplate: `\n\t<xhtml:div [ngClass]=\"namespace\">\n\t\t<ng-content></ng-content>\n\t</xhtml:div>\n\t`\n})\n\nexport class CardNodeSubtitleComponent {\n\tnamespace = `${carbonPrefix}--cc--card-node__subtitle`;\n}\n","import { Component } from \"@angular/core\";\nimport { carbonPrefix } from '../configs';\n\n@Component({\n\tselector: \"ibm-diagram-card-node-title\",\n\ttemplate: `\n\t<xhtml:div [ngClass]=\"namespace\">\n\t\t<ng-content></ng-content>\n\t</xhtml:div>\n\t`\n})\n\nexport class CardNodeTitleComponent {\n\tnamespace = `${carbonPrefix}--cc--card-node__title`;\n}\n","import { NgModule } from \"@angular/core\";\nimport { CommonModule } from \"@angular/common\";\nimport { CardNodeComponent } from \"./card-node.component\";\nimport { CardNodeColumnComponent } from \"./card-node-column.component\";\nimport { CardNodeLabelComponent } from \"./card-node-label.component\";\nimport { CardNodeSubtitleComponent } from \"./card-node-subtitle.component\";\nimport { CardNodeTitleComponent } from \"./card-node-title.component\";\nexport { CardNodeComponent,\n\tCardNodeColumnComponent,\n\tCardNodeLabelComponent,\n\tCardNodeSubtitleComponent,\n\tCardNodeTitleComponent };\n@NgModule({\n\tdeclarations: [CardNodeComponent, CardNodeColumnComponent, CardNodeLabelComponent, CardNodeSubtitleComponent, CardNodeTitleComponent],\n\texports: [CardNodeComponent, CardNodeColumnComponent, CardNodeLabelComponent, CardNodeSubtitleComponent, CardNodeTitleComponent],\n\timports: [CommonModule]\n})\nexport class CardNodeModule { }\n","import { Component, Input } from \"@angular/core\";\nimport { buildStraightPathString } from \"@carbon/charts/components/diagrams/buildPaths\";\n\nimport { carbonPrefix } from '../configs';\n\ninterface Coordinates {\n\tx: number;\n\ty: number;\n}\n@Component({\n\tselector: \"[ibm-graph-edge]\",\n\ttemplate: `\n\t<svg:g [ngClass]=\"[namespace, variant ? namespace + '--' + variant : '']\">\n\t\t<svg:path\n\t\t\t[ngClass]=\"namespace + '__container'\"\n\t\t\t[attr.d]=\"path ? path : straight(source, target)\"\n\t\t/>\n\t\t<svg:path\n\t\t\t[ngClass]=\"namespace + '__outer'\"\n\t\t\t[attr.d]=\"path ? path : straight(source, target)\"\n\t\t/>\n\t\t<svg:path\n\t\t\t[ngClass]=\"namespace + '__inner'\"\n\t\t\t[attr.d]=\"path ? path : straight(source, target)\"\n\t\t\t[ngStyle]=\"{'stroke': color}\"\n\t\t\t[attr.marker-start]=\"markerStart ? 'url(#' + markerStart + ')' : ''\"\n\t\t\t[attr.marker-end]=\"markerEnd ? 'url(#' + markerEnd + ')' : ''\"\n\t\t/>\n\t</svg:g>\n\t`\n})\n\nexport class EdgeComponent {\n\t@Input() color: string;\n\t@Input() markerEnd: string;\n\t@Input() markerStart: string;\n\t@Input() source: Coordinates;\n\t@Input() target: Coordinates;\n\t@Input() variant: \"dash-sm\" | \"dash-md\" | \"dash-lg\" | \"dash-xl\" | \"double\" | \"tunnel\";\n\t@Input() path: string;\n\n\tpathClasses;\n\tnamespace = `${carbonPrefix}--cc--edge`;\n\tstraight = buildStraightPathString;\n}\n","import { NgModule } from \"@angular/core\";\nimport { CommonModule } from \"@angular/common\";\nimport { EdgeComponent } from \"./edge.component\";\nexport { EdgeComponent } from \"./edge.component\";\n\n@NgModule({\n\tdeclarations: [EdgeComponent],\n\texports: [EdgeComponent],\n\timports: [CommonModule]\n})\nexport class EdgeModule { }\n","import { Component, Input, OnInit } from \"@angular/core\";\nimport {\n\tarrowLeft,\n\tarrowRight,\n\tcircle,\n\tdiamond,\n\tsquare,\n\ttee,\n} from \"@carbon/charts/components/diagrams/markerDefinitions\";\n\nimport { carbonPrefix } from '../configs';\n\nconst template = `\n<svg:marker\n\t[ngClass]=\"namespace\"\n\t[attr.markerHeight]=\"height\"\n\t[attr.markerWidth]=\"width\"\n\t[attr.orient]=\"orient\"\n\t[attr.id]=\"id\"\n\t[attr.refX]=\"refX\"\n\t[attr.refY]=\"refY\"\n\tmarkerUnits=\"userSpaceOnUse\">\n\t<svg:path [attr.d]=\"d\" [ngStyle]=\"{'fill': color}\" ></svg:path>\n</svg:marker>\n`;\n\n@Component({\n\tselector: \"[ibm-graph-marker]\",\n\ttemplate\n})\nexport class MarkerComponent {\n\t@Input() d: string;\n\t@Input() color: string;\n\t@Input() id: string;\n\t@Input() orient: string | number = \"auto\";\n\t@Input() height: string | number;\n\t@Input() width: string | number;\n\t@Input() refX: string | number;\n\t@Input() refY: string | number;\n\t@Input() position: \"start\" | \"end\" = \"end\";\n\n\tnamespace = `${carbonPrefix}--cc--marker`;\n\n\tsetAttributes = ({d, id, height, width}) => {\n\t\tconst xPos = (this.position === \"end\") ? (width / 2) + 0.5 : 0.5;\n\t\tconst yPos = height / 2;\n\n\t\tthis.d = this.d || d;\n\t\tthis.id = this.id || id;\n\t\tthis.height = this.height || height;\n\t\tthis.width = this.width || width;\n\t\tthis.refX = this.refX || xPos;\n\t\tthis.refY = this.refY || yPos;\n\t}\n}\n\n@Component({ selector: \"[ibm-graph-marker-arrow-left]\", template})\nexport class MarkerArrowLeftComponent extends MarkerComponent implements OnInit { ngOnInit() {this.setAttributes({...arrowLeft}); } }\n@Component({ selector: \"[ibm-graph-marker-arrow-right]\", template})\nexport class MarkerArrowRightComponent extends MarkerComponent implements OnInit { ngOnInit() {this.setAttributes({...arrowRight}); } }\n@Component({ selector: \"[ibm-graph-marker-circle]\", template})\nexport class MarkerShapeNodeComponent extends MarkerComponent implements OnInit { ngOnInit() {this.setAttributes({...circle}); } }\n@Component({ selector: \"[ibm-graph-marker-diamond]\", template})\nexport class MarkerDiamondComponent extends MarkerComponent implements OnInit { ngOnInit() {this.setAttributes({...diamond}); } }\n@Component({ selector: \"[ibm-graph-marker-square]\", template})\nexport class MarkerSquareComponent extends MarkerComponent implements OnInit { ngOnInit() {this.setAttributes({...square}); } }\n@Component({ selector: \"[ibm-graph-marker-tee]\", template})\nexport class MarkerTeeComponent extends MarkerComponent implements OnInit { ngOnInit() {this.setAttributes({...tee}); } }\n","import { NgModule } from \"@angular/core\";\nimport { CommonModule } from \"@angular/common\";\nimport {\n\tMarkerComponent,\n\tMarkerArrowLeftComponent,\n\tMarkerArrowRightComponent,\n\tMarkerShapeNodeComponent,\n\tMarkerDiamondComponent,\n\tMarkerSquareComponent,\n\tMarkerTeeComponent\n} from \"./marker.component\";\n\nexport {\n\tMarkerComponent,\n\tMarkerArrowLeftComponent,\n\tMarkerArrowRightComponent,\n\tMarkerShapeNodeComponent,\n\tMarkerDiamondComponent,\n\tMarkerSquareComponent,\n\tMarkerTeeComponent\n};\n@NgModule({\n\tdeclarations: [\n\t\tMarkerComponent,\n\t\tMarkerArrowLeftComponent,\n\t\tMarkerArrowRightComponent,\n\t\tMarkerShapeNodeComponent,\n\t\tMarkerDiamondComponent,\n\t\tMarkerSquareComponent,\n\t\tMarkerTeeComponent\n\t],\n\texports: [\n\t\tMarkerComponent,\n\t\tMarkerArrowLeftComponent,\n\t\tMarkerArrowRightComponent,\n\t\tMarkerShapeNodeComponent,\n\t\tMarkerDiamondComponent,\n\t\tMarkerSquareComponent,\n\t\tMarkerTeeComponent\n\t],\n\timports: [CommonModule]\n})\nexport class MarkerModule { }\n","import {\n\tComponent,\n\tInput,\n\tOutput,\n\tEventEmitter,\n\tTemplateRef,\n\tOnInit,\n} from '@angular/core';\n\nimport { carbonPrefix } from '../configs';\n\n@Component({\n\tselector: 'ibm-diagram-shape-node',\n\ttemplate: `\n\t\t<ng-container [ngSwitch]=\"component\">\n\t\t\t<xhtml:div\n\t\t\t\t*ngSwitchCase=\"'div'\"\n\t\t\t\t[ngClass]=\"[\n\t\t\t\t\tnamespace,\n\t\t\t\t\tstacked ? namespace + '--stacked' : '',\n\t\t\t\t\tshape ? namespace + '--' + shape : '',\n\t\t\t\t\tnamespace + '--' + component\n\t\t\t\t]\"\n\t\t\t\t[ngStyle]=\"{\n\t\t\t\t\t'height.px': size,\n\t\t\t\t\t'width.px': size,\n\t\t\t\t\tposition: position\n\t\t\t\t}\"\n\t\t\t\t(mouseenter)=\"mouseEnter.emit($event)\"\n\t\t\t\t(mouseover)=\"mouseOver.emit($event)\"\n\t\t\t\t(mouseout)=\"mouseOut.emit($event)\"\n\t\t\t\t(mouseleave)=\"mouseLeave.emit($event)\"\n\t\t\t\t(mousemove)=\"mouseMove.emit($event)\"\n\t\t\t\ttabindex=\"0\"\n\t\t\t>\n\t\t\t\t<ng-container *ngTemplateOutlet=\"nodeTemplate\"></ng-container>\n\t\t\t</xhtml:div>\n\n\t\t\t<xhtml:button\n\t\t\t\t*ngSwitchCase=\"'button'\"\n\t\t\t\t[ngClass]=\"[\n\t\t\t\t\tnamespace,\n\t\t\t\t\tstacked ? namespace + '--stacked' : '',\n\t\t\t\t\tshape ? namespace + '--' + shape : '',\n\t\t\t\t\tnamespace + '--' + component\n\t\t\t\t]\"\n\t\t\t\t[ngStyle]=\"{\n\t\t\t\t\t'height.px': size,\n\t\t\t\t\t'width.px': size,\n\t\t\t\t\tposition: position\n\t\t\t\t}\"\n\t\t\t\t(click)=\"click.emit($event)\"\n\t\t\t\t(mouseenter)=\"mouseEnter.emit($event)\"\n\t\t\t\t(mouseover)=\"mouseOver.emit($event)\"\n\t\t\t\t(mouseout)=\"mouseOut.emit($event)\"\n\t\t\t\t(mouseleave)=\"mouseLeave.emit($event)\"\n\t\t\t\t(mousemove)=\"mouseMove.emit($event)\"\n\t\t\t\ttabindex=\"0\"\n\t\t\t>\n\t\t\t\t<ng-container *ngTemplateOutlet=\"nodeTemplate\"></ng-container>\n\t\t\t</xhtml:button>\n\n\t\t\t<xhtml:a\n\t\t\t\t*ngSwitchCase=\"'a'\"\n\t\t\t\t[ngClass]=\"[\n\t\t\t\t\tnamespace,\n\t\t\t\t\tstacked ? namespace + '--stacked' : '',\n\t\t\t\t\tshape ? namespace + '--' + shape : '',\n\t\t\t\t\tnamespace + '--' + component\n\t\t\t\t]\"\n\t\t\t\t[attr.href]=\"href\"\n\t\t\t\t[ngStyle]=\"{\n\t\t\t\t\t'height.px': size,\n\t\t\t\t\t'width.px': size,\n\t\t\t\t\tposition: position\n\t\t\t\t}\"\n\t\t\t\t(mouseenter)=\"mouseEnter.emit($event)\"\n\t\t\t\t(mouseover)=\"mouseOver.emit($event)\"\n\t\t\t\t(mouseout)=\"mouseOut.emit($event)\"\n\t\t\t\t(mouseleave)=\"mouseLeave.emit($event)\"\n\t\t\t\t(mousemove)=\"mouseMove.emit($event)\"\n\t\t\t\ttabindex=\"0\"\n\t\t\t>\n\t\t\t\t<ng-container *ngTemplateOutlet=\"nodeTemplate\"></ng-container>\n\t\t\t</xhtml:a>\n\t\t</ng-container>\n\n\t\t<ng-template #nodeTemplate>\n\t\t\t<div *ngIf=\"renderIcon\" attr.class=\"{{ namespace + '__icon' }}\">\n\t\t\t\t<ng-container *ngTemplateOutlet=\"renderIcon\"></ng-container>\n\t\t\t</div>\n\t\t\t<div\n\t\t\t\tattr.class=\"{{ namespace + '__body' }}\"\n\t\t\t\t[ngStyle]=\"{ position: bodyPosition }\"\n\t\t\t>\n\t\t\t\t<div attr.class=\"{{ namespace + '__title' }}\">{{ title }}</div>\n\t\t\t\t<div attr.class=\"{{ namespace + '__subtitle' }}\">\n\t\t\t\t\t{{ subtitle }}\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</ng-template>\n\t`,\n})\nexport class ShapeNodeComponent implements OnInit {\n\t@Input() as = 'div';\n\t@Input() href: string = null;\n\t@Input() renderIcon: TemplateRef<any>;\n\t@Input() size = 48;\n\t@Input() stacked: boolean;\n\t@Input() shape: 'circle' | 'square' | 'rounded-square' = 'circle';\n\t@Input() subtitle: string;\n\t@Input() title: string;\n\t@Input() position: string = 'fixed';\n\t@Input() bodyPosition: string = 'absolute';\n\n\t@Output() click: EventEmitter<any> = new EventEmitter<any>();\n\t@Output() mouseEnter: EventEmitter<any> = new EventEmitter<any>();\n\t@Output() mouseOver: EventEmitter<any> = new EventEmitter<any>();\n\t@Output() mouseOut: EventEmitter<any> = new EventEmitter<any>();\n\t@Output() mouseLeave: EventEmitter<any> = new EventEmitter<any>();\n\t@Output() mouseMove: EventEmitter<any> = new EventEmitter<any>();\n\n\tnamespace = `${carbonPrefix}--cc--shape-node`;\n\tcomponent = 'div';\n\n\tngOnInit() {\n\t\tif (this.href) {\n\t\t\tthis.component = 'a';\n\t\t} else {\n\t\t\tthis.component = this.as;\n\t\t}\n\t}\n}\n","import { NgModule } from \"@angular/core\";\nimport { CommonModule } from \"@angular/common\";\nimport { ShapeNodeComponent } from \"./shape-node.component\";\nexport { ShapeNodeComponent } from \"./shape-node.component\";\n\n@NgModule({\n\tdeclarations: [ShapeNodeComponent],\n\texports: [ShapeNodeComponent],\n\timports: [CommonModule]\n})\nexport class ShapeNodeModule { }\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"carbon-charts-angular.js","sources":["ng://@carbon/charts-angular/base-chart.component.ts","ng://@carbon/charts-angular/alluvial-chart.component.ts","ng://@carbon/charts-angular/area-chart.component.ts","ng://@carbon/charts-angular/area-chart-stacked.component.ts","ng://@carbon/charts-angular/bar-chart-simple.component.ts","ng://@carbon/charts-angular/bar-chart-grouped.component.ts","ng://@carbon/charts-angular/bar-chart-stacked.component.ts","ng://@carbon/charts-angular/boxplot-chart.component.ts","ng://@carbon/charts-angular/bubble-chart.component.ts","ng://@carbon/charts-angular/bullet-chart.component.ts","ng://@carbon/charts-angular/donut-chart.component.ts","ng://@carbon/charts-angular/gauge-chart.component.ts","ng://@carbon/charts-angular/histogram-chart.component.ts","ng://@carbon/charts-angular/line-chart.component.ts","ng://@carbon/charts-angular/lollipop-chart.component.ts","ng://@carbon/charts-angular/pie-chart.component.ts","ng://@carbon/charts-angular/scatter-chart.component.ts","ng://@carbon/charts-angular/meter-chart.component.ts","ng://@carbon/charts-angular/radar-chart.component.ts","ng://@carbon/charts-angular/combo-chart.component.ts","ng://@carbon/charts-angular/tree-chart.component.ts","ng://@carbon/charts-angular/treemap-chart.component.ts","ng://@carbon/charts-angular/circle-pack-chart.component.ts","ng://@carbon/charts-angular/wordcloud-chart.component.ts","ng://@carbon/charts-angular/heatmap-chart.component.ts","ng://@carbon/charts-angular/choropleth.component.ts","ng://@carbon/charts-angular/charts.module.ts","ng://@carbon/charts-angular/diagrams/configs.ts","ng://@carbon/charts-angular/diagrams/card-node/card-node.component.ts","ng://@carbon/charts-angular/diagrams/card-node/card-node-column.component.ts","ng://@carbon/charts-angular/diagrams/card-node/card-node-label.component.ts","ng://@carbon/charts-angular/diagrams/card-node/card-node-subtitle.component.ts","ng://@carbon/charts-angular/diagrams/card-node/card-node-title.component.ts","ng://@carbon/charts-angular/diagrams/card-node/card-node.module.ts","ng://@carbon/charts-angular/diagrams/edge/edge.component.ts","ng://@carbon/charts-angular/diagrams/edge/edge.module.ts","ng://@carbon/charts-angular/diagrams/marker/marker.component.ts","ng://@carbon/charts-angular/diagrams/marker/marker.module.ts","ng://@carbon/charts-angular/diagrams/shape-node/shape-node.component.ts","ng://@carbon/charts-angular/diagrams/shape-node/shape-node.module.ts"],"sourcesContent":["import {\n\tComponent,\n\tInput,\n\tViewChild,\n\tOnInit,\n\tAfterViewInit,\n\tElementRef\n} from \"@angular/core\";\n\n/**\n * Wrapper around `BaseChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-base-chart\",\n\ttemplate: ``\n})\nexport class BaseChart implements AfterViewInit, OnInit {\n\tconstructor(protected elementRef: ElementRef) {}\n\n\t/**\n\t * Data passed to charts library for displaying\n\t */\n\t@Input() set data(newData) {\n\t\t// If data already exists, that means the chart has been initialized\n\t\tconst dataExistsAlready = this._data !== null && this._data !== undefined;\n\n\t\tthis._data = newData;\n\n\t\tif (dataExistsAlready) {\n\t\t\tthis.chart.model.setData(newData);\n\t\t}\n\t}\n\n\tget data() {\n\t\treturn this._data;\n\t}\n\n\t/**\n\t * Options passed to charts library\n\t */\n\t@Input() set options(newOptions) {\n\t\t// If data already exists, that means the chart has been initialized\n\t\tconst optionsExistAlready = this._options !== null && this._options !== undefined;\n\n\t\tthis._options = newOptions;\n\n\t\tif (optionsExistAlready) {\n\t\t\tthis.chart.model.setOptions(newOptions);\n\t\t}\n\t}\n\n\tget options() {\n\t\treturn this._options;\n\t}\n\n\t/**\n\t * Chart width\n\t */\n\t@Input() width: any;\n\n\t/**\n\t * Chart height\n\t */\n\t@Input() height: any;\n\n\t/**\n\t * Chart container element ref\n\t */\n\t@ViewChild(\"nChart\") chartRef;\n\n\t/**\n\t * Chart object instance\n\t *\n\t * You can use this to do whatever you would normally do with a chart if you used\n\t * charts library directly.\n\t */\n\tchart;\n\n\tprivate _data: any;\n\tprivate _options: any;\n\n\tngOnInit() {\n\t\t// Width prop is mandatory for the wrappers\n\t\tif (this.width) {\n\t\t\tthis.options.width = this.width;\n\t\t}\n\n\t\t// Height prop is mandatory for the wrappers\n\t\tif (this.height) {\n\t\t\tthis.options.height = this.height;\n\t\t}\n\t}\n\n\t/**\n\t * Runs after view init to create a chart, attach it to `chartRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tconsole.log(\"You need to implement your own `ngAfterViewInit()` function\");\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { AlluvialChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `Alluvial` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-alluvial-chart\",\n\ttemplate: ``\n})\nexport class AlluvialChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new AlluvialChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { AreaChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `AreaChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-area-chart\",\n\ttemplate: `\n\t\t<div #nChart class=\"ibm-chart-container\">\n\t\t</div>\n\t`\n})\nexport class AreaChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `chartRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new AreaChart(\n\t\t\tthis.chartRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { StackedAreaChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `StackedAreaChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-stacked-area-chart\",\n\ttemplate: ``\n})\nexport class StackedAreaChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new StackedAreaChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { SimpleBarChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `SimpleBarChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-simple-bar-chart\",\n\ttemplate: ``\n})\nexport class SimpleBarChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new SimpleBarChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { GroupedBarChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `GroupedBarChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-grouped-bar-chart\",\n\ttemplate: ``\n})\nexport class GroupedBarChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new GroupedBarChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { StackedBarChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `StackedBarChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-stacked-bar-chart\",\n\ttemplate: ``\n})\nexport class StackedBarChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new StackedBarChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { BoxplotChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `BoxplotChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-boxplot-chart\",\n\ttemplate: ``\n})\nexport class BoxplotChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new BoxplotChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { BubbleChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `BubbleChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-bubble-chart\",\n\ttemplate: ``\n})\nexport class BubbleChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new BubbleChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { BulletChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `BulletChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-bullet-chart\",\n\ttemplate: ``\n})\nexport class BulletChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new BulletChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { DonutChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `DonutChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-donut-chart\",\n\ttemplate: ``\n})\nexport class DonutChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new DonutChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { GaugeChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `GaugeChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-gauge-chart\",\n\ttemplate: ``\n})\nexport class GaugeChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new GaugeChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { HistogramChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `HistogramChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-histogram-chart\",\n\ttemplate: ``\n})\nexport class HistogramChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new HistogramChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { LineChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `LineChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-line-chart\",\n\ttemplate: ``\n})\nexport class LineChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new LineChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { LollipopChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `LollipopChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-lollipop-chart\",\n\ttemplate: ``\n})\nexport class LollipopChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new LollipopChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { PieChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `PieChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-pie-chart\",\n\ttemplate: ``\n})\nexport class PieChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new PieChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { ScatterChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `ScatterChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-scatter-chart\",\n\ttemplate: ``\n})\nexport class ScatterChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new ScatterChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\nimport { MeterChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `MeterChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-meter-chart\",\n\ttemplate: ``\n})\nexport class MeterChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new MeterChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { RadarChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `RadarChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-radar-chart\",\n\ttemplate: ``\n})\nexport class RadarChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new RadarChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\nimport { ComboChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `ComboChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-combo-chart\",\n\ttemplate: ``\n})\nexport class ComboChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new ComboChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { TreeChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `TreeChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-tree-chart\",\n\ttemplate: ``\n})\nexport class TreeChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new TreeChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { TreemapChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `TreemapChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-treemap-chart\",\n\ttemplate: ``\n})\nexport class TreemapChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new TreemapChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { CirclePackChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `BubbleChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-circle-pack-chart\",\n\ttemplate: ``\n})\nexport class CirclePackChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new CirclePackChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { WordCloudChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `WordCloudChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-wordcloud-chart\",\n\ttemplate: ``\n})\nexport class WordCloudChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new WordCloudChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { HeatmapChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `Heatmap` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-heatmap-chart\",\n\ttemplate: ``\n})\nexport class HeatmapChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new HeatmapChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { EXPERIMENTAL_ChoroplethChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `Choropleth` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"EXPERIMENTAL-ibm-choropleth-chart\",\n\ttemplate: ``\n})\nexport class EXPERIMENTAL_ChoroplethChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new EXPERIMENTAL_ChoroplethChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { BaseChart } from './base-chart.component';\nimport { AlluvialChartComponent } from './alluvial-chart.component';\nimport { AreaChartComponent } from './area-chart.component';\nimport { StackedAreaChartComponent } from './area-chart-stacked.component';\nimport { SimpleBarChartComponent } from './bar-chart-simple.component';\nimport { GroupedBarChartComponent } from './bar-chart-grouped.component';\nimport { StackedBarChartComponent } from './bar-chart-stacked.component';\nimport { BoxplotChartComponent } from './boxplot-chart.component';\nimport { BubbleChartComponent } from './bubble-chart.component';\nimport { BulletChartComponent } from './bullet-chart.component';\nimport { DonutChartComponent } from './donut-chart.component';\nimport { GaugeChartComponent } from './gauge-chart.component';\nimport { HistogramChartComponent } from './histogram-chart.component';\nimport { LineChartComponent } from './line-chart.component';\nimport { LollipopChartComponent } from './lollipop-chart.component';\nimport { PieChartComponent } from './pie-chart.component';\nimport { ScatterChartComponent } from './scatter-chart.component';\nimport { MeterChartComponent } from './meter-chart.component';\nimport { RadarChartComponent } from './radar-chart.component';\nimport { ComboChartComponent } from './combo-chart.component';\nimport { TreeChartComponent } from './tree-chart.component';\nimport { TreemapChartComponent } from './treemap-chart.component';\nimport { CirclePackChartComponent } from './circle-pack-chart.component';\nimport { WordCloudChartComponent } from './wordcloud-chart.component';\nimport { HeatmapChartComponent } from './heatmap-chart.component';\nimport { EXPERIMENTAL_ChoroplethChartComponent } from './choropleth.component';\n\n@NgModule({\n\timports: [CommonModule],\n\tdeclarations: [\n\t\tBaseChart,\n\t\tAlluvialChartComponent,\n\t\tAreaChartComponent,\n\t\tEXPERIMENTAL_ChoroplethChartComponent,\n\t\tStackedAreaChartComponent,\n\t\tSimpleBarChartComponent,\n\t\tGroupedBarChartComponent,\n\t\tStackedBarChartComponent,\n\t\tBoxplotChartComponent,\n\t\tBubbleChartComponent,\n\t\tBulletChartComponent,\n\t\tDonutChartComponent,\n\t\tGaugeChartComponent,\n\t\tHeatmapChartComponent,\n\t\tHistogramChartComponent,\n\t\tLineChartComponent,\n\t\tLollipopChartComponent,\n\t\tPieChartComponent,\n\t\tScatterChartComponent,\n\t\tMeterChartComponent,\n\t\tRadarChartComponent,\n\t\tComboChartComponent,\n\t\tTreeChartComponent,\n\t\tTreemapChartComponent,\n\t\tCirclePackChartComponent,\n\t\tWordCloudChartComponent,\n\t],\n\texports: [\n\t\tBaseChart,\n\t\tAlluvialChartComponent,\n\t\tAreaChartComponent,\n\t\tEXPERIMENTAL_ChoroplethChartComponent,\n\t\tStackedAreaChartComponent,\n\t\tSimpleBarChartComponent,\n\t\tGroupedBarChartComponent,\n\t\tStackedBarChartComponent,\n\t\tBoxplotChartComponent,\n\t\tBubbleChartComponent,\n\t\tBulletChartComponent,\n\t\tDonutChartComponent,\n\t\tGaugeChartComponent,\n\t\tHeatmapChartComponent,\n\t\tHistogramChartComponent,\n\t\tLineChartComponent,\n\t\tLollipopChartComponent,\n\t\tPieChartComponent,\n\t\tScatterChartComponent,\n\t\tMeterChartComponent,\n\t\tRadarChartComponent,\n\t\tComboChartComponent,\n\t\tTreeChartComponent,\n\t\tTreemapChartComponent,\n\t\tCirclePackChartComponent,\n\t\tWordCloudChartComponent\n\t],\n})\nexport class ChartsModule {}\n","export const carbonPrefix = 'cds';\n","import { Component, Input, Output, EventEmitter, OnInit } from '@angular/core';\nimport { carbonPrefix } from '../configs';\n\n@Component({\n\tselector: 'ibm-diagram-card-node',\n\ttemplate: `\n\t\t<ng-container [ngSwitch]=\"component\">\n\t\t\t<xhtml:div\n\t\t\t\t*ngSwitchCase=\"'div'\"\n\t\t\t\t[ngClass]=\"[\n\t\t\t\t\tnamespace,\n\t\t\t\t\tstacked ? namespace + '--stacked' : '',\n\t\t\t\t\tnamespace + '--' + component\n\t\t\t\t]\"\n\t\t\t\t[ngStyle]=\"{\n\t\t\t\t\t'border-color': color,\n\t\t\t\t\tposition: position\n\t\t\t\t}\"\n\t\t\t\t(mouseenter)=\"mouseEnter.emit($event)\"\n\t\t\t\t(mouseover)=\"mouseOver.emit($event)\"\n\t\t\t\t(mouseout)=\"mouseOut.emit($event)\"\n\t\t\t\t(mouseleave)=\"mouseLeave.emit($event)\"\n\t\t\t\t(mousemove)=\"mouseMove.emit($event)\"\n\t\t\t\ttabindex=\"0\"\n\t\t\t>\n\t\t\t\t<ng-container *ngTemplateOutlet=\"nodeTemplate\"></ng-container>\n\t\t\t</xhtml:div>\n\n\t\t\t<xhtml:button\n\t\t\t\t*ngSwitchCase=\"'button'\"\n\t\t\t\t[ngClass]=\"[\n\t\t\t\t\tnamespace,\n\t\t\t\t\tstacked ? namespace + '--stacked' : '',\n\t\t\t\t\tnamespace + '--' + component\n\t\t\t\t]\"\n\t\t\t\t[ngStyle]=\"{\n\t\t\t\t\t'border-color': color,\n\t\t\t\t\tposition: position\n\t\t\t\t}\"\n\t\t\t\t(click)=\"click.emit($event)\"\n\t\t\t\t(mouseenter)=\"mouseEnter.emit($event)\"\n\t\t\t\t(mouseover)=\"mouseOver.emit($event)\"\n\t\t\t\t(mouseout)=\"mouseOut.emit($event)\"\n\t\t\t\t(mouseleave)=\"mouseLeave.emit($event)\"\n\t\t\t\t(mousemove)=\"mouseMove.emit($event)\"\n\t\t\t\ttabindex=\"0\"\n\t\t\t>\n\t\t\t\t<ng-container *ngTemplateOutlet=\"nodeTemplate\"></ng-container>\n\t\t\t</xhtml:button>\n\n\t\t\t<xhtml:a\n\t\t\t\t*ngSwitchCase=\"'a'\"\n\t\t\t\t[ngClass]=\"[\n\t\t\t\t\tnamespace,\n\t\t\t\t\tstacked ? namespace + '--stacked' : '',\n\t\t\t\t\tnamespace + '--' + component\n\t\t\t\t]\"\n\t\t\t\t[attr.href]=\"href\"\n\t\t\t\t[ngStyle]=\"{ 'border-color': color, position: position }\"\n\t\t\t\t(mouseenter)=\"mouseEnter.emit($event)\"\n\t\t\t\t(mouseover)=\"mouseOver.emit($event)\"\n\t\t\t\t(mouseout)=\"mouseOut.emit($event)\"\n\t\t\t\t(mouseleave)=\"mouseLeave.emit($event)\"\n\t\t\t\t(mousemove)=\"mouseMove.emit($event)\"\n\t\t\t\ttabindex=\"0\"\n\t\t\t>\n\t\t\t\t<ng-container *ngTemplateOutlet=\"nodeTemplate\"></ng-container>\n\t\t\t</xhtml:a>\n\t\t</ng-container>\n\t\t<ng-template #nodeTemplate>\n\t\t\t<ng-content></ng-content>\n\t\t</ng-template>\n\t`,\n})\nexport class CardNodeComponent implements OnInit {\n\t@Input() as = 'div';\n\t@Input() href: string = null;\n\t@Input() color;\n\t@Input() stacked;\n\t@Input() position: string = 'static';\n\n\t@Output() click: EventEmitter<any> = new EventEmitter<any>();\n\t@Output() mouseEnter: EventEmitter<any> = new EventEmitter<any>();\n\t@Output() mouseOver: EventEmitter<any> = new EventEmitter<any>();\n\t@Output() mouseOut: EventEmitter<any> = new EventEmitter<any>();\n\t@Output() mouseLeave: EventEmitter<any> = new EventEmitter<any>();\n\t@Output() mouseMove: EventEmitter<any> = new EventEmitter<any>();\n\n\tnamespace = `${carbonPrefix}--cc--card-node`;\n\n\tcomponent = 'div';\n\n\tngOnInit() {\n\t\tif (this.href) {\n\t\t\tthis.component = 'a';\n\t\t} else {\n\t\t\tthis.component = this.as;\n\t\t}\n\t}\n}\n","import { Component, Input, HostBinding } from '@angular/core';\nimport { carbonPrefix } from '../configs';\n\n@Component({\n\tselector: 'ibm-diagram-card-node-column',\n\ttemplate: `\n\t\t<xhtml:div>\n\t\t\t<ng-content></ng-content>\n\t\t</xhtml:div>\n\t`,\n})\nexport class CardNodeColumnComponent {\n\t@Input() farsideColumn = false;\n\n\t@HostBinding('class') get class() {\n\t\tconst farsideClassName = this.farsideColumn\n\t\t\t? `${carbonPrefix}--cc--card-node__column--farside`\n\t\t\t: '';\n\n\t\treturn `${carbonPrefix}--cc--card-node__column ${farsideClassName}`;\n\t}\n}\n","import { Component } from \"@angular/core\";\nimport { carbonPrefix } from '../configs';\n\n@Component({\n\tselector: \"ibm-diagram-card-node-label\",\n\ttemplate: `\n\t<xhtml:label [ngClass]=\"namespace\">\n\t\t<ng-content></ng-content>\n\t</xhtml:label>\n\t`\n})\n\nexport class CardNodeLabelComponent {\n\tnamespace = `${carbonPrefix}--cc--card-node__label`;\n}\n","import { Component } from \"@angular/core\";\nimport { carbonPrefix } from '../configs';\n\n@Component({\n\tselector: \"ibm-diagram-card-node-subtitle\",\n\ttemplate: `\n\t<xhtml:div [ngClass]=\"namespace\">\n\t\t<ng-content></ng-content>\n\t</xhtml:div>\n\t`\n})\n\nexport class CardNodeSubtitleComponent {\n\tnamespace = `${carbonPrefix}--cc--card-node__subtitle`;\n}\n","import { Component } from \"@angular/core\";\nimport { carbonPrefix } from '../configs';\n\n@Component({\n\tselector: \"ibm-diagram-card-node-title\",\n\ttemplate: `\n\t<xhtml:div [ngClass]=\"namespace\">\n\t\t<ng-content></ng-content>\n\t</xhtml:div>\n\t`\n})\n\nexport class CardNodeTitleComponent {\n\tnamespace = `${carbonPrefix}--cc--card-node__title`;\n}\n","import { NgModule } from \"@angular/core\";\nimport { CommonModule } from \"@angular/common\";\nimport { CardNodeComponent } from \"./card-node.component\";\nimport { CardNodeColumnComponent } from \"./card-node-column.component\";\nimport { CardNodeLabelComponent } from \"./card-node-label.component\";\nimport { CardNodeSubtitleComponent } from \"./card-node-subtitle.component\";\nimport { CardNodeTitleComponent } from \"./card-node-title.component\";\nexport { CardNodeComponent,\n\tCardNodeColumnComponent,\n\tCardNodeLabelComponent,\n\tCardNodeSubtitleComponent,\n\tCardNodeTitleComponent };\n@NgModule({\n\tdeclarations: [CardNodeComponent, CardNodeColumnComponent, CardNodeLabelComponent, CardNodeSubtitleComponent, CardNodeTitleComponent],\n\texports: [CardNodeComponent, CardNodeColumnComponent, CardNodeLabelComponent, CardNodeSubtitleComponent, CardNodeTitleComponent],\n\timports: [CommonModule]\n})\nexport class CardNodeModule { }\n","import { Component, Input } from \"@angular/core\";\nimport { buildStraightPathString } from \"@carbon/charts/components/diagrams/buildPaths\";\n\nimport { carbonPrefix } from '../configs';\n\ninterface Coordinates {\n\tx: number;\n\ty: number;\n}\n@Component({\n\tselector: \"[ibm-graph-edge]\",\n\ttemplate: `\n\t<svg:g [ngClass]=\"[namespace, variant ? namespace + '--' + variant : '']\">\n\t\t<svg:path\n\t\t\t[ngClass]=\"namespace + '__container'\"\n\t\t\t[attr.d]=\"path ? path : straight(source, target)\"\n\t\t/>\n\t\t<svg:path\n\t\t\t[ngClass]=\"namespace + '__outer'\"\n\t\t\t[attr.d]=\"path ? path : straight(source, target)\"\n\t\t/>\n\t\t<svg:path\n\t\t\t[ngClass]=\"namespace + '__inner'\"\n\t\t\t[attr.d]=\"path ? path : straight(source, target)\"\n\t\t\t[ngStyle]=\"{'stroke': color}\"\n\t\t\t[attr.marker-start]=\"markerStart ? 'url(#' + markerStart + ')' : ''\"\n\t\t\t[attr.marker-end]=\"markerEnd ? 'url(#' + markerEnd + ')' : ''\"\n\t\t/>\n\t</svg:g>\n\t`\n})\n\nexport class EdgeComponent {\n\t@Input() color: string;\n\t@Input() markerEnd: string;\n\t@Input() markerStart: string;\n\t@Input() source: Coordinates;\n\t@Input() target: Coordinates;\n\t@Input() variant: \"dash-sm\" | \"dash-md\" | \"dash-lg\" | \"dash-xl\" | \"double\" | \"tunnel\";\n\t@Input() path: string;\n\n\tpathClasses;\n\tnamespace = `${carbonPrefix}--cc--edge`;\n\tstraight = buildStraightPathString;\n}\n","import { NgModule } from \"@angular/core\";\nimport { CommonModule } from \"@angular/common\";\nimport { EdgeComponent } from \"./edge.component\";\nexport { EdgeComponent } from \"./edge.component\";\n\n@NgModule({\n\tdeclarations: [EdgeComponent],\n\texports: [EdgeComponent],\n\timports: [CommonModule]\n})\nexport class EdgeModule { }\n","import { Component, Input, OnInit } from \"@angular/core\";\nimport {\n\tarrowLeft,\n\tarrowRight,\n\tcircle,\n\tdiamond,\n\tsquare,\n\ttee,\n} from \"@carbon/charts/components/diagrams/markerDefinitions\";\n\nimport { carbonPrefix } from '../configs';\n\nconst template = `\n<svg:marker\n\t[ngClass]=\"namespace\"\n\t[attr.markerHeight]=\"height\"\n\t[attr.markerWidth]=\"width\"\n\t[attr.orient]=\"orient\"\n\t[attr.id]=\"id\"\n\t[attr.refX]=\"refX\"\n\t[attr.refY]=\"refY\"\n\tmarkerUnits=\"userSpaceOnUse\">\n\t<svg:path [attr.d]=\"d\" [ngStyle]=\"{'fill': color}\" ></svg:path>\n</svg:marker>\n`;\n\n@Component({\n\tselector: \"[ibm-graph-marker]\",\n\ttemplate\n})\nexport class MarkerComponent {\n\t@Input() d: string;\n\t@Input() color: string;\n\t@Input() id: string;\n\t@Input() orient: string | number = \"auto\";\n\t@Input() height: string | number;\n\t@Input() width: string | number;\n\t@Input() refX: string | number;\n\t@Input() refY: string | number;\n\t@Input() position: \"start\" | \"end\" = \"end\";\n\n\tnamespace = `${carbonPrefix}--cc--marker`;\n\n\tsetAttributes = ({d, id, height, width}) => {\n\t\tconst xPos = (this.position === \"end\") ? (width / 2) + 0.5 : 0.5;\n\t\tconst yPos = height / 2;\n\n\t\tthis.d = this.d || d;\n\t\tthis.id = this.id || id;\n\t\tthis.height = this.height || height;\n\t\tthis.width = this.width || width;\n\t\tthis.refX = this.refX || xPos;\n\t\tthis.refY = this.refY || yPos;\n\t}\n}\n\n@Component({ selector: \"[ibm-graph-marker-arrow-left]\", template})\nexport class MarkerArrowLeftComponent extends MarkerComponent implements OnInit { ngOnInit() {this.setAttributes({...arrowLeft}); } }\n@Component({ selector: \"[ibm-graph-marker-arrow-right]\", template})\nexport class MarkerArrowRightComponent extends MarkerComponent implements OnInit { ngOnInit() {this.setAttributes({...arrowRight}); } }\n@Component({ selector: \"[ibm-graph-marker-circle]\", template})\nexport class MarkerShapeNodeComponent extends MarkerComponent implements OnInit { ngOnInit() {this.setAttributes({...circle}); } }\n@Component({ selector: \"[ibm-graph-marker-diamond]\", template})\nexport class MarkerDiamondComponent extends MarkerComponent implements OnInit { ngOnInit() {this.setAttributes({...diamond}); } }\n@Component({ selector: \"[ibm-graph-marker-square]\", template})\nexport class MarkerSquareComponent extends MarkerComponent implements OnInit { ngOnInit() {this.setAttributes({...square}); } }\n@Component({ selector: \"[ibm-graph-marker-tee]\", template})\nexport class MarkerTeeComponent extends MarkerComponent implements OnInit { ngOnInit() {this.setAttributes({...tee}); } }\n","import { NgModule } from \"@angular/core\";\nimport { CommonModule } from \"@angular/common\";\nimport {\n\tMarkerComponent,\n\tMarkerArrowLeftComponent,\n\tMarkerArrowRightComponent,\n\tMarkerShapeNodeComponent,\n\tMarkerDiamondComponent,\n\tMarkerSquareComponent,\n\tMarkerTeeComponent\n} from \"./marker.component\";\n\nexport {\n\tMarkerComponent,\n\tMarkerArrowLeftComponent,\n\tMarkerArrowRightComponent,\n\tMarkerShapeNodeComponent,\n\tMarkerDiamondComponent,\n\tMarkerSquareComponent,\n\tMarkerTeeComponent\n};\n@NgModule({\n\tdeclarations: [\n\t\tMarkerComponent,\n\t\tMarkerArrowLeftComponent,\n\t\tMarkerArrowRightComponent,\n\t\tMarkerShapeNodeComponent,\n\t\tMarkerDiamondComponent,\n\t\tMarkerSquareComponent,\n\t\tMarkerTeeComponent\n\t],\n\texports: [\n\t\tMarkerComponent,\n\t\tMarkerArrowLeftComponent,\n\t\tMarkerArrowRightComponent,\n\t\tMarkerShapeNodeComponent,\n\t\tMarkerDiamondComponent,\n\t\tMarkerSquareComponent,\n\t\tMarkerTeeComponent\n\t],\n\timports: [CommonModule]\n})\nexport class MarkerModule { }\n","import {\n\tComponent,\n\tInput,\n\tOutput,\n\tEventEmitter,\n\tTemplateRef,\n\tOnInit,\n} from '@angular/core';\n\nimport { carbonPrefix } from '../configs';\n\n@Component({\n\tselector: 'ibm-diagram-shape-node',\n\ttemplate: `\n\t\t<ng-container [ngSwitch]=\"component\">\n\t\t\t<xhtml:div\n\t\t\t\t*ngSwitchCase=\"'div'\"\n\t\t\t\t[ngClass]=\"[\n\t\t\t\t\tnamespace,\n\t\t\t\t\tstacked ? namespace + '--stacked' : '',\n\t\t\t\t\tshape ? namespace + '--' + shape : '',\n\t\t\t\t\tnamespace + '--' + component\n\t\t\t\t]\"\n\t\t\t\t[ngStyle]=\"{\n\t\t\t\t\t'height.px': size,\n\t\t\t\t\t'width.px': size,\n\t\t\t\t\tposition: position\n\t\t\t\t}\"\n\t\t\t\t(mouseenter)=\"mouseEnter.emit($event)\"\n\t\t\t\t(mouseover)=\"mouseOver.emit($event)\"\n\t\t\t\t(mouseout)=\"mouseOut.emit($event)\"\n\t\t\t\t(mouseleave)=\"mouseLeave.emit($event)\"\n\t\t\t\t(mousemove)=\"mouseMove.emit($event)\"\n\t\t\t\ttabindex=\"0\"\n\t\t\t>\n\t\t\t\t<ng-container *ngTemplateOutlet=\"nodeTemplate\"></ng-container>\n\t\t\t</xhtml:div>\n\n\t\t\t<xhtml:button\n\t\t\t\t*ngSwitchCase=\"'button'\"\n\t\t\t\t[ngClass]=\"[\n\t\t\t\t\tnamespace,\n\t\t\t\t\tstacked ? namespace + '--stacked' : '',\n\t\t\t\t\tshape ? namespace + '--' + shape : '',\n\t\t\t\t\tnamespace + '--' + component\n\t\t\t\t]\"\n\t\t\t\t[ngStyle]=\"{\n\t\t\t\t\t'height.px': size,\n\t\t\t\t\t'width.px': size,\n\t\t\t\t\tposition: position\n\t\t\t\t}\"\n\t\t\t\t(click)=\"click.emit($event)\"\n\t\t\t\t(mouseenter)=\"mouseEnter.emit($event)\"\n\t\t\t\t(mouseover)=\"mouseOver.emit($event)\"\n\t\t\t\t(mouseout)=\"mouseOut.emit($event)\"\n\t\t\t\t(mouseleave)=\"mouseLeave.emit($event)\"\n\t\t\t\t(mousemove)=\"mouseMove.emit($event)\"\n\t\t\t\ttabindex=\"0\"\n\t\t\t>\n\t\t\t\t<ng-container *ngTemplateOutlet=\"nodeTemplate\"></ng-container>\n\t\t\t</xhtml:button>\n\n\t\t\t<xhtml:a\n\t\t\t\t*ngSwitchCase=\"'a'\"\n\t\t\t\t[ngClass]=\"[\n\t\t\t\t\tnamespace,\n\t\t\t\t\tstacked ? namespace + '--stacked' : '',\n\t\t\t\t\tshape ? namespace + '--' + shape : '',\n\t\t\t\t\tnamespace + '--' + component\n\t\t\t\t]\"\n\t\t\t\t[attr.href]=\"href\"\n\t\t\t\t[ngStyle]=\"{\n\t\t\t\t\t'height.px': size,\n\t\t\t\t\t'width.px': size,\n\t\t\t\t\tposition: position\n\t\t\t\t}\"\n\t\t\t\t(mouseenter)=\"mouseEnter.emit($event)\"\n\t\t\t\t(mouseover)=\"mouseOver.emit($event)\"\n\t\t\t\t(mouseout)=\"mouseOut.emit($event)\"\n\t\t\t\t(mouseleave)=\"mouseLeave.emit($event)\"\n\t\t\t\t(mousemove)=\"mouseMove.emit($event)\"\n\t\t\t\ttabindex=\"0\"\n\t\t\t>\n\t\t\t\t<ng-container *ngTemplateOutlet=\"nodeTemplate\"></ng-container>\n\t\t\t</xhtml:a>\n\t\t</ng-container>\n\n\t\t<ng-template #nodeTemplate>\n\t\t\t<div *ngIf=\"renderIcon\" attr.class=\"{{ namespace + '__icon' }}\">\n\t\t\t\t<ng-container *ngTemplateOutlet=\"renderIcon\"></ng-container>\n\t\t\t</div>\n\t\t\t<div\n\t\t\t\tattr.class=\"{{ namespace + '__body' }}\"\n\t\t\t\t[ngStyle]=\"{ position: bodyPosition }\"\n\t\t\t>\n\t\t\t\t<div attr.class=\"{{ namespace + '__title' }}\">{{ title }}</div>\n\t\t\t\t<div attr.class=\"{{ namespace + '__subtitle' }}\">\n\t\t\t\t\t{{ subtitle }}\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</ng-template>\n\t`,\n})\nexport class ShapeNodeComponent implements OnInit {\n\t@Input() as = 'div';\n\t@Input() href: string = null;\n\t@Input() renderIcon: TemplateRef<any>;\n\t@Input() size = 48;\n\t@Input() stacked: boolean;\n\t@Input() shape: 'circle' | 'square' | 'rounded-square' = 'circle';\n\t@Input() subtitle: string;\n\t@Input() title: string;\n\t@Input() position: string = 'fixed';\n\t@Input() bodyPosition: string = 'absolute';\n\n\t@Output() click: EventEmitter<any> = new EventEmitter<any>();\n\t@Output() mouseEnter: EventEmitter<any> = new EventEmitter<any>();\n\t@Output() mouseOver: EventEmitter<any> = new EventEmitter<any>();\n\t@Output() mouseOut: EventEmitter<any> = new EventEmitter<any>();\n\t@Output() mouseLeave: EventEmitter<any> = new EventEmitter<any>();\n\t@Output() mouseMove: EventEmitter<any> = new EventEmitter<any>();\n\n\tnamespace = `${carbonPrefix}--cc--shape-node`;\n\tcomponent = 'div';\n\n\tngOnInit() {\n\t\tif (this.href) {\n\t\t\tthis.component = 'a';\n\t\t} else {\n\t\t\tthis.component = this.as;\n\t\t}\n\t}\n}\n","import { NgModule } from \"@angular/core\";\nimport { CommonModule } from \"@angular/common\";\nimport { ShapeNodeComponent } from \"./shape-node.component\";\nexport { ShapeNodeComponent } from \"./shape-node.component\";\n\n@NgModule({\n\tdeclarations: [ShapeNodeComponent],\n\texports: [ShapeNodeComponent],\n\timports: [CommonModule]\n})\nexport class ShapeNodeModule { }\n"],"names":[],"mappings":"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"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Component, ElementRef, Input, ViewChild, NgModule, EventEmitter, Output, HostBinding } from '@angular/core';
|
|
2
2
|
import { CommonModule } from '@angular/common';
|
|
3
3
|
import { __extends, __assign } from 'tslib';
|
|
4
|
-
import { AlluvialChart, AreaChart, StackedAreaChart, SimpleBarChart, GroupedBarChart, StackedBarChart, BoxplotChart, BubbleChart, BulletChart, DonutChart, GaugeChart, HistogramChart, LineChart, LollipopChart, PieChart, ScatterChart, MeterChart, RadarChart, ComboChart, TreeChart, TreemapChart, CirclePackChart, WordCloudChart, HeatmapChart } from '@carbon/charts';
|
|
4
|
+
import { AlluvialChart, AreaChart, StackedAreaChart, SimpleBarChart, GroupedBarChart, StackedBarChart, BoxplotChart, BubbleChart, BulletChart, DonutChart, GaugeChart, HistogramChart, LineChart, LollipopChart, PieChart, ScatterChart, MeterChart, RadarChart, ComboChart, TreeChart, TreemapChart, CirclePackChart, WordCloudChart, HeatmapChart, EXPERIMENTAL_ChoroplethChart } from '@carbon/charts';
|
|
5
5
|
import { buildStraightPathString } from '@carbon/charts/components/diagrams/buildPaths';
|
|
6
6
|
import { arrowLeft, arrowRight, circle, diamond, square, tee } from '@carbon/charts/components/diagrams/markerDefinitions';
|
|
7
7
|
|
|
@@ -1171,6 +1171,48 @@ var HeatmapChartComponent = /** @class */ (function (_super) {
|
|
|
1171
1171
|
return HeatmapChartComponent;
|
|
1172
1172
|
}(BaseChart));
|
|
1173
1173
|
|
|
1174
|
+
/**
|
|
1175
|
+
* @fileoverview added by tsickle
|
|
1176
|
+
* Generated from: choropleth.component.ts
|
|
1177
|
+
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
1178
|
+
*/
|
|
1179
|
+
/**
|
|
1180
|
+
* Wrapper around `Choropleth` in carbon charts library
|
|
1181
|
+
*
|
|
1182
|
+
* Most functions just call their equivalent from the chart library.
|
|
1183
|
+
*/
|
|
1184
|
+
var EXPERIMENTAL_ChoroplethChartComponent = /** @class */ (function (_super) {
|
|
1185
|
+
__extends(EXPERIMENTAL_ChoroplethChartComponent, _super);
|
|
1186
|
+
function EXPERIMENTAL_ChoroplethChartComponent() {
|
|
1187
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
1188
|
+
}
|
|
1189
|
+
/**
|
|
1190
|
+
* Runs after view init to create a chart, attach it to `elementRef` and draw it.
|
|
1191
|
+
*/
|
|
1192
|
+
/**
|
|
1193
|
+
* Runs after view init to create a chart, attach it to `elementRef` and draw it.
|
|
1194
|
+
* @return {?}
|
|
1195
|
+
*/
|
|
1196
|
+
EXPERIMENTAL_ChoroplethChartComponent.prototype.ngAfterViewInit = /**
|
|
1197
|
+
* Runs after view init to create a chart, attach it to `elementRef` and draw it.
|
|
1198
|
+
* @return {?}
|
|
1199
|
+
*/
|
|
1200
|
+
function () {
|
|
1201
|
+
this.chart = new EXPERIMENTAL_ChoroplethChart(this.elementRef.nativeElement, {
|
|
1202
|
+
data: this.data,
|
|
1203
|
+
options: this.options
|
|
1204
|
+
});
|
|
1205
|
+
Object.assign(this, this.chart);
|
|
1206
|
+
};
|
|
1207
|
+
EXPERIMENTAL_ChoroplethChartComponent.decorators = [
|
|
1208
|
+
{ type: Component, args: [{
|
|
1209
|
+
selector: "EXPERIMENTAL-ibm-choropleth-chart",
|
|
1210
|
+
template: ""
|
|
1211
|
+
}] }
|
|
1212
|
+
];
|
|
1213
|
+
return EXPERIMENTAL_ChoroplethChartComponent;
|
|
1214
|
+
}(BaseChart));
|
|
1215
|
+
|
|
1174
1216
|
/**
|
|
1175
1217
|
* @fileoverview added by tsickle
|
|
1176
1218
|
* Generated from: charts.module.ts
|
|
@@ -1186,6 +1228,7 @@ var ChartsModule = /** @class */ (function () {
|
|
|
1186
1228
|
BaseChart,
|
|
1187
1229
|
AlluvialChartComponent,
|
|
1188
1230
|
AreaChartComponent,
|
|
1231
|
+
EXPERIMENTAL_ChoroplethChartComponent,
|
|
1189
1232
|
StackedAreaChartComponent,
|
|
1190
1233
|
SimpleBarChartComponent,
|
|
1191
1234
|
GroupedBarChartComponent,
|
|
@@ -1213,6 +1256,7 @@ var ChartsModule = /** @class */ (function () {
|
|
|
1213
1256
|
BaseChart,
|
|
1214
1257
|
AlluvialChartComponent,
|
|
1215
1258
|
AreaChartComponent,
|
|
1259
|
+
EXPERIMENTAL_ChoroplethChartComponent,
|
|
1216
1260
|
StackedAreaChartComponent,
|
|
1217
1261
|
SimpleBarChartComponent,
|
|
1218
1262
|
GroupedBarChartComponent,
|
|
@@ -1876,5 +1920,5 @@ var ShapeNodeModule = /** @class */ (function () {
|
|
|
1876
1920
|
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
1877
1921
|
*/
|
|
1878
1922
|
|
|
1879
|
-
export { AlluvialChartComponent, AreaChartComponent, BaseChart, BoxplotChartComponent, BubbleChartComponent, BulletChartComponent, CardNodeColumnComponent, CardNodeComponent, CardNodeLabelComponent, CardNodeModule, CardNodeSubtitleComponent, CardNodeTitleComponent, ChartsModule, CirclePackChartComponent, ComboChartComponent, DonutChartComponent, EdgeComponent, EdgeModule, GaugeChartComponent, GroupedBarChartComponent, HeatmapChartComponent, HistogramChartComponent, LineChartComponent, LollipopChartComponent, MarkerArrowLeftComponent, MarkerArrowRightComponent, MarkerComponent, MarkerDiamondComponent, MarkerModule, MarkerShapeNodeComponent, MarkerSquareComponent, MarkerTeeComponent, MeterChartComponent, PieChartComponent, RadarChartComponent, ScatterChartComponent, ShapeNodeComponent, ShapeNodeModule, SimpleBarChartComponent, StackedAreaChartComponent, StackedBarChartComponent, TreeChartComponent, TreemapChartComponent, WordCloudChartComponent };
|
|
1923
|
+
export { AlluvialChartComponent, AreaChartComponent, BaseChart, BoxplotChartComponent, BubbleChartComponent, BulletChartComponent, CardNodeColumnComponent, CardNodeComponent, CardNodeLabelComponent, CardNodeModule, CardNodeSubtitleComponent, CardNodeTitleComponent, ChartsModule, CirclePackChartComponent, ComboChartComponent, DonutChartComponent, EdgeComponent, EdgeModule, GaugeChartComponent, GroupedBarChartComponent, HeatmapChartComponent, HistogramChartComponent, LineChartComponent, LollipopChartComponent, MarkerArrowLeftComponent, MarkerArrowRightComponent, MarkerComponent, MarkerDiamondComponent, MarkerModule, MarkerShapeNodeComponent, MarkerSquareComponent, MarkerTeeComponent, MeterChartComponent, PieChartComponent, RadarChartComponent, ScatterChartComponent, ShapeNodeComponent, ShapeNodeModule, SimpleBarChartComponent, StackedAreaChartComponent, StackedBarChartComponent, TreeChartComponent, TreemapChartComponent, WordCloudChartComponent, EXPERIMENTAL_ChoroplethChartComponent as ɵa };
|
|
1880
1924
|
//# sourceMappingURL=carbon-charts-angular.js.map
|