@carbon/charts-angular 0.58.1 → 1.0.1
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 +32 -0
- package/README.md +23 -8
- package/bundles/carbon-charts-angular.umd.js +21 -23
- package/bundles/carbon-charts-angular.umd.js.map +1 -1
- package/bundles/carbon-charts-angular.umd.min.js +2 -3
- package/bundles/carbon-charts-angular.umd.min.js.map +1 -1
- package/carbon-charts-angular.metadata.json +1 -1
- package/diagrams/configs.d.ts +1 -0
- package/esm2015/diagrams/card-node/card-node-column.component.js +4 -5
- package/esm2015/diagrams/card-node/card-node-label.component.js +3 -4
- package/esm2015/diagrams/card-node/card-node-subtitle.component.js +3 -4
- package/esm2015/diagrams/card-node/card-node-title.component.js +3 -4
- package/esm2015/diagrams/card-node/card-node.component.js +3 -4
- package/esm2015/diagrams/configs.js +8 -0
- package/esm2015/diagrams/edge/edge.component.js +3 -4
- package/esm2015/diagrams/marker/marker.component.js +3 -4
- package/esm2015/diagrams/shape-node/shape-node.component.js +3 -4
- package/esm5/diagrams/card-node/card-node-column.component.js +4 -5
- package/esm5/diagrams/card-node/card-node-label.component.js +3 -4
- package/esm5/diagrams/card-node/card-node-subtitle.component.js +3 -4
- package/esm5/diagrams/card-node/card-node-title.component.js +3 -4
- package/esm5/diagrams/card-node/card-node.component.js +3 -4
- package/esm5/diagrams/configs.js +8 -0
- package/esm5/diagrams/edge/edge.component.js +3 -4
- package/esm5/diagrams/marker/marker.component.js +3 -4
- package/esm5/diagrams/shape-node/shape-node.component.js +3 -4
- package/fesm2015/carbon-charts-angular.js +17 -18
- package/fesm2015/carbon-charts-angular.js.map +1 -1
- package/fesm5/carbon-charts-angular.js +17 -18
- package/fesm5/carbon-charts-angular.js.map +1 -1
- package/package.json +2 -2
|
@@ -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/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","import { Component, Input, Output, EventEmitter, OnInit } from '@angular/core';\nimport settings from 'carbon-components/src/globals/js/settings';\n\nconst { prefix } = settings;\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 = `${prefix}--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 settings from 'carbon-components/src/globals/js/settings';\n\nconst { prefix } = settings;\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? `${prefix}--cc--card-node__column--farside`\n\t\t\t: '';\n\n\t\treturn `${prefix}--cc--card-node__column ${farsideClassName}`;\n\t}\n}\n","import { Component } from \"@angular/core\";\nimport settings from \"carbon-components/src/globals/js/settings\";\n\nconst { prefix } = settings;\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 = `${prefix}--cc--card-node__label`;\n}\n","import { Component } from \"@angular/core\";\nimport settings from \"carbon-components/src/globals/js/settings\";\n\nconst { prefix } = settings;\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 = `${prefix}--cc--card-node__subtitle`;\n}\n","import { Component } from \"@angular/core\";\nimport settings from \"carbon-components/src/globals/js/settings\";\n\nconst { prefix } = settings;\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 = `${prefix}--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 settings from \"carbon-components/src/globals/js/settings\";\nimport { buildStraightPathString } from \"@carbon/charts/components/diagrams/buildPaths\";\n\nconst { prefix } = settings;\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 = `${prefix}--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 settings from \"carbon-components/src/globals/js/settings\";\nimport {\n\tarrowLeft,\n\tarrowRight,\n\tcircle,\n\tdiamond,\n\tsquare,\n\ttee,\n} from \"@carbon/charts/components/diagrams/markerDefinitions\";\n\nconst { prefix } = settings;\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 = `${prefix}--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';\nimport settings from 'carbon-components/src/globals/js/settings';\n\nconst { prefix } = settings;\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 = `${prefix}--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":["prefix"],"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/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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"}
|
|
@@ -2,7 +2,6 @@ import { Component, ElementRef, Input, ViewChild, NgModule, EventEmitter, Output
|
|
|
2
2
|
import { CommonModule } from '@angular/common';
|
|
3
3
|
import { __extends, __assign } from 'tslib';
|
|
4
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';
|
|
5
|
-
import settings from 'carbon-components/src/globals/js/settings';
|
|
6
5
|
import { buildStraightPathString } from '@carbon/charts/components/diagrams/buildPaths';
|
|
7
6
|
import { arrowLeft, arrowRight, circle, diamond, square, tee } from '@carbon/charts/components/diagrams/markerDefinitions';
|
|
8
7
|
|
|
@@ -1242,12 +1241,19 @@ var ChartsModule = /** @class */ (function () {
|
|
|
1242
1241
|
return ChartsModule;
|
|
1243
1242
|
}());
|
|
1244
1243
|
|
|
1244
|
+
/**
|
|
1245
|
+
* @fileoverview added by tsickle
|
|
1246
|
+
* Generated from: diagrams/configs.ts
|
|
1247
|
+
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
1248
|
+
*/
|
|
1249
|
+
/** @type {?} */
|
|
1250
|
+
var carbonPrefix = 'cds';
|
|
1251
|
+
|
|
1245
1252
|
/**
|
|
1246
1253
|
* @fileoverview added by tsickle
|
|
1247
1254
|
* Generated from: diagrams/card-node/card-node.component.ts
|
|
1248
1255
|
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
1249
1256
|
*/
|
|
1250
|
-
var prefix = settings.prefix;
|
|
1251
1257
|
var CardNodeComponent = /** @class */ (function () {
|
|
1252
1258
|
function CardNodeComponent() {
|
|
1253
1259
|
this.as = 'div';
|
|
@@ -1259,7 +1265,7 @@ var CardNodeComponent = /** @class */ (function () {
|
|
|
1259
1265
|
this.mouseOut = new EventEmitter();
|
|
1260
1266
|
this.mouseLeave = new EventEmitter();
|
|
1261
1267
|
this.mouseMove = new EventEmitter();
|
|
1262
|
-
this.namespace =
|
|
1268
|
+
this.namespace = carbonPrefix + "--cc--card-node";
|
|
1263
1269
|
this.component = 'div';
|
|
1264
1270
|
}
|
|
1265
1271
|
/**
|
|
@@ -1331,7 +1337,6 @@ if (false) {
|
|
|
1331
1337
|
* Generated from: diagrams/card-node/card-node-column.component.ts
|
|
1332
1338
|
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
1333
1339
|
*/
|
|
1334
|
-
var prefix$1 = settings.prefix;
|
|
1335
1340
|
var CardNodeColumnComponent = /** @class */ (function () {
|
|
1336
1341
|
function CardNodeColumnComponent() {
|
|
1337
1342
|
this.farsideColumn = false;
|
|
@@ -1343,9 +1348,9 @@ var CardNodeColumnComponent = /** @class */ (function () {
|
|
|
1343
1348
|
function () {
|
|
1344
1349
|
/** @type {?} */
|
|
1345
1350
|
var farsideClassName = this.farsideColumn
|
|
1346
|
-
?
|
|
1351
|
+
? carbonPrefix + "--cc--card-node__column--farside"
|
|
1347
1352
|
: '';
|
|
1348
|
-
return
|
|
1353
|
+
return carbonPrefix + "--cc--card-node__column " + farsideClassName;
|
|
1349
1354
|
},
|
|
1350
1355
|
enumerable: true,
|
|
1351
1356
|
configurable: true
|
|
@@ -1372,10 +1377,9 @@ if (false) {
|
|
|
1372
1377
|
* Generated from: diagrams/card-node/card-node-label.component.ts
|
|
1373
1378
|
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
1374
1379
|
*/
|
|
1375
|
-
var prefix$2 = settings.prefix;
|
|
1376
1380
|
var CardNodeLabelComponent = /** @class */ (function () {
|
|
1377
1381
|
function CardNodeLabelComponent() {
|
|
1378
|
-
this.namespace =
|
|
1382
|
+
this.namespace = carbonPrefix + "--cc--card-node__label";
|
|
1379
1383
|
}
|
|
1380
1384
|
CardNodeLabelComponent.decorators = [
|
|
1381
1385
|
{ type: Component, args: [{
|
|
@@ -1395,10 +1399,9 @@ if (false) {
|
|
|
1395
1399
|
* Generated from: diagrams/card-node/card-node-subtitle.component.ts
|
|
1396
1400
|
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
1397
1401
|
*/
|
|
1398
|
-
var prefix$3 = settings.prefix;
|
|
1399
1402
|
var CardNodeSubtitleComponent = /** @class */ (function () {
|
|
1400
1403
|
function CardNodeSubtitleComponent() {
|
|
1401
|
-
this.namespace =
|
|
1404
|
+
this.namespace = carbonPrefix + "--cc--card-node__subtitle";
|
|
1402
1405
|
}
|
|
1403
1406
|
CardNodeSubtitleComponent.decorators = [
|
|
1404
1407
|
{ type: Component, args: [{
|
|
@@ -1418,10 +1421,9 @@ if (false) {
|
|
|
1418
1421
|
* Generated from: diagrams/card-node/card-node-title.component.ts
|
|
1419
1422
|
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
1420
1423
|
*/
|
|
1421
|
-
var prefix$4 = settings.prefix;
|
|
1422
1424
|
var CardNodeTitleComponent = /** @class */ (function () {
|
|
1423
1425
|
function CardNodeTitleComponent() {
|
|
1424
|
-
this.namespace =
|
|
1426
|
+
this.namespace = carbonPrefix + "--cc--card-node__title";
|
|
1425
1427
|
}
|
|
1426
1428
|
CardNodeTitleComponent.decorators = [
|
|
1427
1429
|
{ type: Component, args: [{
|
|
@@ -1459,7 +1461,6 @@ var CardNodeModule = /** @class */ (function () {
|
|
|
1459
1461
|
* Generated from: diagrams/edge/edge.component.ts
|
|
1460
1462
|
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
1461
1463
|
*/
|
|
1462
|
-
var prefix$5 = settings.prefix;
|
|
1463
1464
|
/**
|
|
1464
1465
|
* @record
|
|
1465
1466
|
*/
|
|
@@ -1472,7 +1473,7 @@ if (false) {
|
|
|
1472
1473
|
}
|
|
1473
1474
|
var EdgeComponent = /** @class */ (function () {
|
|
1474
1475
|
function EdgeComponent() {
|
|
1475
|
-
this.namespace =
|
|
1476
|
+
this.namespace = carbonPrefix + "--cc--edge";
|
|
1476
1477
|
this.straight = buildStraightPathString;
|
|
1477
1478
|
}
|
|
1478
1479
|
EdgeComponent.decorators = [
|
|
@@ -1538,7 +1539,6 @@ var EdgeModule = /** @class */ (function () {
|
|
|
1538
1539
|
* Generated from: diagrams/marker/marker.component.ts
|
|
1539
1540
|
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
1540
1541
|
*/
|
|
1541
|
-
var prefix$6 = settings.prefix;
|
|
1542
1542
|
/** @type {?} */
|
|
1543
1543
|
var 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";
|
|
1544
1544
|
var MarkerComponent = /** @class */ (function () {
|
|
@@ -1546,7 +1546,7 @@ var MarkerComponent = /** @class */ (function () {
|
|
|
1546
1546
|
var _this = this;
|
|
1547
1547
|
this.orient = "auto";
|
|
1548
1548
|
this.position = "end";
|
|
1549
|
-
this.namespace =
|
|
1549
|
+
this.namespace = carbonPrefix + "--cc--marker";
|
|
1550
1550
|
this.setAttributes = (/**
|
|
1551
1551
|
* @param {?} __0
|
|
1552
1552
|
* @return {?}
|
|
@@ -1750,7 +1750,6 @@ var MarkerModule = /** @class */ (function () {
|
|
|
1750
1750
|
* Generated from: diagrams/shape-node/shape-node.component.ts
|
|
1751
1751
|
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
1752
1752
|
*/
|
|
1753
|
-
var prefix$7 = settings.prefix;
|
|
1754
1753
|
var ShapeNodeComponent = /** @class */ (function () {
|
|
1755
1754
|
function ShapeNodeComponent() {
|
|
1756
1755
|
this.as = 'div';
|
|
@@ -1765,7 +1764,7 @@ var ShapeNodeComponent = /** @class */ (function () {
|
|
|
1765
1764
|
this.mouseOut = new EventEmitter();
|
|
1766
1765
|
this.mouseLeave = new EventEmitter();
|
|
1767
1766
|
this.mouseMove = new EventEmitter();
|
|
1768
|
-
this.namespace =
|
|
1767
|
+
this.namespace = carbonPrefix + "--cc--shape-node";
|
|
1769
1768
|
this.component = 'div';
|
|
1770
1769
|
}
|
|
1771
1770
|
/**
|