@carbon/charts-angular 1.8.0 → 1.9.0-next.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (230) hide show
  1. package/README.md +0 -2
  2. package/esm2022/carbon-charts-angular.mjs +5 -0
  3. package/esm2022/index.mjs +14 -0
  4. package/esm2022/lib/charts/alluvial-chart.component.mjs +32 -0
  5. package/esm2022/lib/charts/area-chart-stacked.component.mjs +32 -0
  6. package/esm2022/lib/charts/area-chart.component.mjs +32 -0
  7. package/esm2022/lib/charts/bar-chart-grouped.component.mjs +32 -0
  8. package/esm2022/lib/charts/bar-chart-simple.component.mjs +32 -0
  9. package/esm2022/lib/charts/bar-chart-stacked.component.mjs +32 -0
  10. package/esm2022/lib/charts/base-chart.component.mjs +75 -0
  11. package/esm2022/lib/charts/boxplot-chart.component.mjs +32 -0
  12. package/esm2022/lib/charts/bubble-chart.component.mjs +32 -0
  13. package/esm2022/lib/charts/bullet-chart.component.mjs +32 -0
  14. package/esm2022/lib/charts/charts.module.mjs +123 -0
  15. package/esm2022/lib/charts/choropleth.component.mjs +32 -0
  16. package/esm2022/lib/charts/circle-pack-chart.component.mjs +32 -0
  17. package/esm2022/lib/charts/combo-chart.component.mjs +32 -0
  18. package/esm2022/lib/charts/donut-chart.component.mjs +32 -0
  19. package/esm2022/lib/charts/gauge-chart.component.mjs +32 -0
  20. package/esm2022/lib/charts/heatmap-chart.component.mjs +32 -0
  21. package/esm2022/lib/charts/histogram-chart.component.mjs +32 -0
  22. package/esm2022/lib/charts/index.mjs +28 -0
  23. package/esm2022/lib/charts/line-chart.component.mjs +32 -0
  24. package/esm2022/lib/charts/lollipop-chart.component.mjs +32 -0
  25. package/esm2022/lib/charts/meter-chart.component.mjs +32 -0
  26. package/esm2022/lib/charts/pie-chart.component.mjs +32 -0
  27. package/esm2022/lib/charts/radar-chart.component.mjs +32 -0
  28. package/esm2022/lib/charts/scatter-chart.component.mjs +32 -0
  29. package/esm2022/lib/charts/tree-chart.component.mjs +32 -0
  30. package/esm2022/lib/charts/treemap-chart.component.mjs +32 -0
  31. package/esm2022/lib/charts/wordcloud-chart.component.mjs +32 -0
  32. package/esm2022/lib/diagrams/config.mjs +2 -0
  33. package/esm2022/lib/diagrams/edges/edge.component.mjs +73 -0
  34. package/esm2022/lib/diagrams/edges/edge.module.mjs +20 -0
  35. package/esm2022/lib/diagrams/edges/marker/marker.component.mjs +161 -0
  36. package/esm2022/lib/diagrams/edges/marker/marker.module.mjs +48 -0
  37. package/esm2022/lib/diagrams/index.mjs +5 -0
  38. package/esm2022/lib/diagrams/nodes/cards/card-node-column.component.mjs +38 -0
  39. package/esm2022/lib/diagrams/nodes/cards/card-node-label.component.mjs +28 -0
  40. package/esm2022/lib/diagrams/nodes/cards/card-node-subtitle.component.mjs +28 -0
  41. package/esm2022/lib/diagrams/nodes/cards/card-node-title.component.mjs +28 -0
  42. package/esm2022/lib/diagrams/nodes/cards/card-node.component.mjs +191 -0
  43. package/esm2022/lib/diagrams/nodes/cards/card-node.module.mjs +44 -0
  44. package/esm2022/lib/diagrams/nodes/shape/shape-node.component.mjs +241 -0
  45. package/esm2022/lib/diagrams/nodes/shape/shape-node.module.mjs +20 -0
  46. package/esm2022/lib/index.mjs +3 -0
  47. package/fesm2022/carbon-charts-angular.mjs +1728 -0
  48. package/fesm2022/carbon-charts-angular.mjs.map +1 -0
  49. package/index.d.ts +5 -38
  50. package/lib/charts/alluvial-chart.component.d.ts +16 -0
  51. package/lib/charts/area-chart-stacked.component.d.ts +16 -0
  52. package/lib/charts/area-chart.component.d.ts +16 -0
  53. package/lib/charts/bar-chart-grouped.component.d.ts +16 -0
  54. package/lib/charts/bar-chart-simple.component.d.ts +16 -0
  55. package/lib/charts/bar-chart-stacked.component.d.ts +16 -0
  56. package/lib/charts/base-chart.component.d.ts +61 -0
  57. package/lib/charts/boxplot-chart.component.d.ts +16 -0
  58. package/lib/charts/bubble-chart.component.d.ts +16 -0
  59. package/lib/charts/bullet-chart.component.d.ts +16 -0
  60. package/lib/charts/charts.module.d.ts +89 -0
  61. package/lib/charts/choropleth.component.d.ts +16 -0
  62. package/lib/charts/circle-pack-chart.component.d.ts +16 -0
  63. package/lib/charts/combo-chart.component.d.ts +16 -0
  64. package/lib/charts/donut-chart.component.d.ts +16 -0
  65. package/lib/charts/gauge-chart.component.d.ts +16 -0
  66. package/lib/charts/heatmap-chart.component.d.ts +16 -0
  67. package/lib/charts/histogram-chart.component.d.ts +16 -0
  68. package/lib/charts/index.d.ts +27 -0
  69. package/lib/charts/line-chart.component.d.ts +16 -0
  70. package/lib/charts/lollipop-chart.component.d.ts +16 -0
  71. package/lib/charts/meter-chart.component.d.ts +16 -0
  72. package/lib/charts/pie-chart.component.d.ts +16 -0
  73. package/lib/charts/radar-chart.component.d.ts +16 -0
  74. package/lib/charts/scatter-chart.component.d.ts +16 -0
  75. package/lib/charts/tree-chart.component.d.ts +16 -0
  76. package/lib/charts/treemap-chart.component.d.ts +16 -0
  77. package/lib/charts/wordcloud-chart.component.d.ts +16 -0
  78. package/{diagrams/configs.d.ts → lib/diagrams/config.d.ts} +1 -1
  79. package/lib/diagrams/edges/edge.component.d.ts +49 -0
  80. package/lib/diagrams/edges/edge.module.d.ts +15 -0
  81. package/lib/diagrams/edges/marker/marker.component.d.ts +89 -0
  82. package/lib/diagrams/edges/marker/marker.module.d.ts +28 -0
  83. package/lib/diagrams/index.d.ts +4 -0
  84. package/lib/diagrams/nodes/cards/card-node-column.component.d.ts +14 -0
  85. package/lib/diagrams/nodes/cards/card-node-label.component.d.ts +8 -0
  86. package/lib/diagrams/nodes/cards/card-node-subtitle.component.d.ts +8 -0
  87. package/lib/diagrams/nodes/cards/card-node-title.component.d.ts +8 -0
  88. package/lib/diagrams/nodes/cards/card-node.component.d.ts +50 -0
  89. package/lib/diagrams/nodes/cards/card-node.module.d.ts +32 -0
  90. package/lib/diagrams/nodes/shape/shape-node.component.d.ts +73 -0
  91. package/lib/diagrams/nodes/shape/shape-node.module.d.ts +15 -0
  92. package/lib/index.d.ts +2 -0
  93. package/package.json +33 -61
  94. package/styles.css +28463 -0
  95. package/styles.css.map +1 -0
  96. package/styles.min.css +1 -0
  97. package/styles.min.css.map +1 -0
  98. package/alluvial-chart.component.d.ts +0 -13
  99. package/area-chart-stacked.component.d.ts +0 -13
  100. package/area-chart.component.d.ts +0 -13
  101. package/bar-chart-grouped.component.d.ts +0 -13
  102. package/bar-chart-simple.component.d.ts +0 -13
  103. package/bar-chart-stacked.component.d.ts +0 -13
  104. package/base-chart.component.d.ts +0 -44
  105. package/boxplot-chart.component.d.ts +0 -13
  106. package/bubble-chart.component.d.ts +0 -13
  107. package/bullet-chart.component.d.ts +0 -13
  108. package/bundles/carbon-charts-angular.umd.js +0 -2156
  109. package/bundles/carbon-charts-angular.umd.js.map +0 -1
  110. package/bundles/carbon-charts-angular.umd.min.js +0 -16
  111. package/bundles/carbon-charts-angular.umd.min.js.map +0 -1
  112. package/carbon-charts-angular.d.ts +0 -5
  113. package/carbon-charts-angular.metadata.json +0 -1
  114. package/charts.module.d.ts +0 -2
  115. package/choropleth.component.d.ts +0 -13
  116. package/circle-pack-chart.component.d.ts +0 -13
  117. package/combo-chart.component.d.ts +0 -13
  118. package/diagrams/card-node/card-node-column.component.d.ts +0 -4
  119. package/diagrams/card-node/card-node-label.component.d.ts +0 -3
  120. package/diagrams/card-node/card-node-subtitle.component.d.ts +0 -3
  121. package/diagrams/card-node/card-node-title.component.d.ts +0 -3
  122. package/diagrams/card-node/card-node.component.d.ts +0 -17
  123. package/diagrams/card-node/card-node.module.d.ts +0 -8
  124. package/diagrams/edge/edge.component.d.ts +0 -17
  125. package/diagrams/edge/edge.module.d.ts +0 -3
  126. package/diagrams/marker/marker.component.d.ts +0 -37
  127. package/diagrams/marker/marker.module.d.ts +0 -4
  128. package/diagrams/shape-node/shape-node.component.d.ts +0 -22
  129. package/diagrams/shape-node/shape-node.module.d.ts +0 -3
  130. package/donut-chart.component.d.ts +0 -13
  131. package/esm2015/alluvial-chart.component.js +0 -33
  132. package/esm2015/area-chart-stacked.component.js +0 -33
  133. package/esm2015/area-chart.component.js +0 -36
  134. package/esm2015/bar-chart-grouped.component.js +0 -33
  135. package/esm2015/bar-chart-simple.component.js +0 -33
  136. package/esm2015/bar-chart-stacked.component.js +0 -33
  137. package/esm2015/base-chart.component.js +0 -137
  138. package/esm2015/boxplot-chart.component.js +0 -33
  139. package/esm2015/bubble-chart.component.js +0 -33
  140. package/esm2015/bullet-chart.component.js +0 -33
  141. package/esm2015/carbon-charts-angular.js +0 -11
  142. package/esm2015/charts.module.js +0 -97
  143. package/esm2015/choropleth.component.js +0 -33
  144. package/esm2015/circle-pack-chart.component.js +0 -33
  145. package/esm2015/combo-chart.component.js +0 -33
  146. package/esm2015/diagrams/card-node/card-node-column.component.js +0 -41
  147. package/esm2015/diagrams/card-node/card-node-label.component.js +0 -27
  148. package/esm2015/diagrams/card-node/card-node-subtitle.component.js +0 -27
  149. package/esm2015/diagrams/card-node/card-node-title.component.js +0 -27
  150. package/esm2015/diagrams/card-node/card-node.component.js +0 -148
  151. package/esm2015/diagrams/card-node/card-node.module.js +0 -23
  152. package/esm2015/diagrams/configs.js +0 -8
  153. package/esm2015/diagrams/edge/edge.component.js +0 -80
  154. package/esm2015/diagrams/edge/edge.module.js +0 -19
  155. package/esm2015/diagrams/marker/marker.component.js +0 -141
  156. package/esm2015/diagrams/marker/marker.module.js +0 -35
  157. package/esm2015/diagrams/shape-node/shape-node.component.js +0 -187
  158. package/esm2015/diagrams/shape-node/shape-node.module.js +0 -19
  159. package/esm2015/donut-chart.component.js +0 -33
  160. package/esm2015/gauge-chart.component.js +0 -33
  161. package/esm2015/heatmap-chart.component.js +0 -33
  162. package/esm2015/histogram-chart.component.js +0 -33
  163. package/esm2015/index.js +0 -45
  164. package/esm2015/line-chart.component.js +0 -33
  165. package/esm2015/lollipop-chart.component.js +0 -33
  166. package/esm2015/meter-chart.component.js +0 -33
  167. package/esm2015/pie-chart.component.js +0 -33
  168. package/esm2015/radar-chart.component.js +0 -33
  169. package/esm2015/scatter-chart.component.js +0 -33
  170. package/esm2015/tree-chart.component.js +0 -33
  171. package/esm2015/treemap-chart.component.js +0 -33
  172. package/esm2015/wordcloud-chart.component.js +0 -33
  173. package/esm5/alluvial-chart.component.js +0 -47
  174. package/esm5/area-chart-stacked.component.js +0 -47
  175. package/esm5/area-chart.component.js +0 -47
  176. package/esm5/bar-chart-grouped.component.js +0 -47
  177. package/esm5/bar-chart-simple.component.js +0 -47
  178. package/esm5/bar-chart-stacked.component.js +0 -47
  179. package/esm5/base-chart.component.js +0 -160
  180. package/esm5/boxplot-chart.component.js +0 -47
  181. package/esm5/bubble-chart.component.js +0 -47
  182. package/esm5/bullet-chart.component.js +0 -47
  183. package/esm5/carbon-charts-angular.js +0 -11
  184. package/esm5/charts.module.js +0 -101
  185. package/esm5/choropleth.component.js +0 -47
  186. package/esm5/circle-pack-chart.component.js +0 -47
  187. package/esm5/combo-chart.component.js +0 -47
  188. package/esm5/diagrams/card-node/card-node-column.component.js +0 -43
  189. package/esm5/diagrams/card-node/card-node-label.component.js +0 -25
  190. package/esm5/diagrams/card-node/card-node-subtitle.component.js +0 -25
  191. package/esm5/diagrams/card-node/card-node-title.component.js +0 -25
  192. package/esm5/diagrams/card-node/card-node.component.js +0 -86
  193. package/esm5/diagrams/card-node/card-node.module.js +0 -27
  194. package/esm5/diagrams/configs.js +0 -8
  195. package/esm5/diagrams/edge/edge.component.js +0 -64
  196. package/esm5/diagrams/edge/edge.module.js +0 -23
  197. package/esm5/diagrams/marker/marker.component.js +0 -188
  198. package/esm5/diagrams/marker/marker.module.js +0 -39
  199. package/esm5/diagrams/shape-node/shape-node.component.js +0 -104
  200. package/esm5/diagrams/shape-node/shape-node.module.js +0 -23
  201. package/esm5/donut-chart.component.js +0 -47
  202. package/esm5/gauge-chart.component.js +0 -47
  203. package/esm5/heatmap-chart.component.js +0 -47
  204. package/esm5/histogram-chart.component.js +0 -47
  205. package/esm5/index.js +0 -45
  206. package/esm5/line-chart.component.js +0 -47
  207. package/esm5/lollipop-chart.component.js +0 -47
  208. package/esm5/meter-chart.component.js +0 -47
  209. package/esm5/pie-chart.component.js +0 -47
  210. package/esm5/radar-chart.component.js +0 -47
  211. package/esm5/scatter-chart.component.js +0 -47
  212. package/esm5/tree-chart.component.js +0 -47
  213. package/esm5/treemap-chart.component.js +0 -47
  214. package/esm5/wordcloud-chart.component.js +0 -47
  215. package/fesm2015/carbon-charts-angular.js +0 -1722
  216. package/fesm2015/carbon-charts-angular.js.map +0 -1
  217. package/fesm5/carbon-charts-angular.js +0 -1924
  218. package/fesm5/carbon-charts-angular.js.map +0 -1
  219. package/gauge-chart.component.d.ts +0 -13
  220. package/heatmap-chart.component.d.ts +0 -13
  221. package/histogram-chart.component.d.ts +0 -13
  222. package/line-chart.component.d.ts +0 -13
  223. package/lollipop-chart.component.d.ts +0 -13
  224. package/meter-chart.component.d.ts +0 -13
  225. package/pie-chart.component.d.ts +0 -13
  226. package/radar-chart.component.d.ts +0 -13
  227. package/scatter-chart.component.d.ts +0 -13
  228. package/tree-chart.component.d.ts +0 -13
  229. package/treemap-chart.component.d.ts +0 -13
  230. package/wordcloud-chart.component.d.ts +0 -13
@@ -0,0 +1,16 @@
1
+ import { AfterViewInit } from '@angular/core';
2
+ import { BaseChartComponent } from './base-chart.component';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Wrapper around `ComboChart` in carbon charts library
6
+ *
7
+ * Most functions just call their equivalent from the chart library.
8
+ */
9
+ export declare class ComboChartComponent extends BaseChartComponent implements AfterViewInit {
10
+ /**
11
+ * Runs after view init to create a chart, attach it to `elementRef` and draw it.
12
+ */
13
+ ngAfterViewInit(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<ComboChartComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<ComboChartComponent, "ibm-combo-chart", never, {}, {}, never, never, false, never>;
16
+ }
@@ -0,0 +1,16 @@
1
+ import { AfterViewInit } from '@angular/core';
2
+ import { BaseChartComponent } from './base-chart.component';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Wrapper around `DonutChart` in carbon charts library
6
+ *
7
+ * Most functions just call their equivalent from the chart library.
8
+ */
9
+ export declare class DonutChartComponent extends BaseChartComponent implements AfterViewInit {
10
+ /**
11
+ * Runs after view init to create a chart, attach it to `elementRef` and draw it.
12
+ */
13
+ ngAfterViewInit(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<DonutChartComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<DonutChartComponent, "ibm-donut-chart", never, {}, {}, never, never, false, never>;
16
+ }
@@ -0,0 +1,16 @@
1
+ import { AfterViewInit } from '@angular/core';
2
+ import { BaseChartComponent } from './base-chart.component';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Wrapper around `GaugeChart` in carbon charts library
6
+ *
7
+ * Most functions just call their equivalent from the chart library.
8
+ */
9
+ export declare class GaugeChartComponent extends BaseChartComponent implements AfterViewInit {
10
+ /**
11
+ * Runs after view init to create a chart, attach it to `elementRef` and draw it.
12
+ */
13
+ ngAfterViewInit(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<GaugeChartComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<GaugeChartComponent, "ibm-gauge-chart", never, {}, {}, never, never, false, never>;
16
+ }
@@ -0,0 +1,16 @@
1
+ import { AfterViewInit } from '@angular/core';
2
+ import { BaseChartComponent } from './base-chart.component';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Wrapper around `Heatmap` in carbon charts library
6
+ *
7
+ * Most functions just call their equivalent from the chart library.
8
+ */
9
+ export declare class HeatmapChartComponent extends BaseChartComponent implements AfterViewInit {
10
+ /**
11
+ * Runs after view init to create a chart, attach it to `elementRef` and draw it.
12
+ */
13
+ ngAfterViewInit(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<HeatmapChartComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<HeatmapChartComponent, "ibm-heatmap-chart", never, {}, {}, never, never, false, never>;
16
+ }
@@ -0,0 +1,16 @@
1
+ import { AfterViewInit } from '@angular/core';
2
+ import { BaseChartComponent } from './base-chart.component';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Wrapper around `HistogramChart` in carbon charts library
6
+ *
7
+ * Most functions just call their equivalent from the chart library.
8
+ */
9
+ export declare class HistogramChartComponent extends BaseChartComponent implements AfterViewInit {
10
+ /**
11
+ * Runs after view init to create a chart, attach it to `elementRef` and draw it.
12
+ */
13
+ ngAfterViewInit(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<HistogramChartComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<HistogramChartComponent, "ibm-histogram-chart", never, {}, {}, never, never, false, never>;
16
+ }
@@ -0,0 +1,27 @@
1
+ export { AlluvialChartComponent } from './alluvial-chart.component';
2
+ export { AreaChartComponent } from './area-chart.component';
3
+ export { BaseChartComponent } from './base-chart.component';
4
+ export { BoxplotChartComponent } from './boxplot-chart.component';
5
+ export { BubbleChartComponent } from './bubble-chart.component';
6
+ export { BulletChartComponent } from './bullet-chart.component';
7
+ export { CirclePackChartComponent } from './circle-pack-chart.component';
8
+ export { ComboChartComponent } from './combo-chart.component';
9
+ export { DonutChartComponent } from './donut-chart.component';
10
+ export { ExperimentalChoroplethChartComponent } from './choropleth.component';
11
+ export { GaugeChartComponent } from './gauge-chart.component';
12
+ export { GroupedBarChartComponent } from './bar-chart-grouped.component';
13
+ export { HeatmapChartComponent } from './heatmap-chart.component';
14
+ export { HistogramChartComponent } from './histogram-chart.component';
15
+ export { LineChartComponent } from './line-chart.component';
16
+ export { LollipopChartComponent } from './lollipop-chart.component';
17
+ export { MeterChartComponent } from './meter-chart.component';
18
+ export { PieChartComponent } from './pie-chart.component';
19
+ export { RadarChartComponent } from './radar-chart.component';
20
+ export { ScatterChartComponent } from './scatter-chart.component';
21
+ export { SimpleBarChartComponent } from './bar-chart-simple.component';
22
+ export { StackedAreaChartComponent } from './area-chart-stacked.component';
23
+ export { StackedBarChartComponent } from './bar-chart-stacked.component';
24
+ export { TreeChartComponent } from './tree-chart.component';
25
+ export { TreemapChartComponent } from './treemap-chart.component';
26
+ export { WordCloudChartComponent } from './wordcloud-chart.component';
27
+ export { ChartsModule } from './charts.module';
@@ -0,0 +1,16 @@
1
+ import { AfterViewInit } from '@angular/core';
2
+ import { BaseChartComponent } from './base-chart.component';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Wrapper around `LineChart` in carbon charts library
6
+ *
7
+ * Most functions just call their equivalent from the chart library.
8
+ */
9
+ export declare class LineChartComponent extends BaseChartComponent implements AfterViewInit {
10
+ /**
11
+ * Runs after view init to create a chart, attach it to `elementRef` and draw it.
12
+ */
13
+ ngAfterViewInit(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<LineChartComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<LineChartComponent, "ibm-line-chart", never, {}, {}, never, never, false, never>;
16
+ }
@@ -0,0 +1,16 @@
1
+ import { AfterViewInit } from '@angular/core';
2
+ import { BaseChartComponent } from './base-chart.component';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Wrapper around `LollipopChart` in carbon charts library
6
+ *
7
+ * Most functions just call their equivalent from the chart library.
8
+ */
9
+ export declare class LollipopChartComponent extends BaseChartComponent implements AfterViewInit {
10
+ /**
11
+ * Runs after view init to create a chart, attach it to `elementRef` and draw it.
12
+ */
13
+ ngAfterViewInit(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<LollipopChartComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<LollipopChartComponent, "ibm-lollipop-chart", never, {}, {}, never, never, false, never>;
16
+ }
@@ -0,0 +1,16 @@
1
+ import { AfterViewInit } from '@angular/core';
2
+ import { BaseChartComponent } from './base-chart.component';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Wrapper around `MeterChart` in carbon charts library
6
+ *
7
+ * Most functions just call their equivalent from the chart library.
8
+ */
9
+ export declare class MeterChartComponent extends BaseChartComponent implements AfterViewInit {
10
+ /**
11
+ * Runs after view init to create a chart, attach it to `elementRef` and draw it.
12
+ */
13
+ ngAfterViewInit(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<MeterChartComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<MeterChartComponent, "ibm-meter-chart", never, {}, {}, never, never, false, never>;
16
+ }
@@ -0,0 +1,16 @@
1
+ import { AfterViewInit } from '@angular/core';
2
+ import { BaseChartComponent } from './base-chart.component';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Wrapper around `PieChart` in carbon charts library
6
+ *
7
+ * Most functions just call their equivalent from the chart library.
8
+ */
9
+ export declare class PieChartComponent extends BaseChartComponent implements AfterViewInit {
10
+ /**
11
+ * Runs after view init to create a chart, attach it to `elementRef` and draw it.
12
+ */
13
+ ngAfterViewInit(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<PieChartComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<PieChartComponent, "ibm-pie-chart", never, {}, {}, never, never, false, never>;
16
+ }
@@ -0,0 +1,16 @@
1
+ import { AfterViewInit } from '@angular/core';
2
+ import { BaseChartComponent } from './base-chart.component';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Wrapper around `RadarChart` in carbon charts library
6
+ *
7
+ * Most functions just call their equivalent from the chart library.
8
+ */
9
+ export declare class RadarChartComponent extends BaseChartComponent implements AfterViewInit {
10
+ /**
11
+ * Runs after view init to create a chart, attach it to `elementRef` and draw it.
12
+ */
13
+ ngAfterViewInit(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<RadarChartComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<RadarChartComponent, "ibm-radar-chart", never, {}, {}, never, never, false, never>;
16
+ }
@@ -0,0 +1,16 @@
1
+ import { AfterViewInit } from '@angular/core';
2
+ import { BaseChartComponent } from './base-chart.component';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Wrapper around `ScatterChart` in carbon charts library
6
+ *
7
+ * Most functions just call their equivalent from the chart library.
8
+ */
9
+ export declare class ScatterChartComponent extends BaseChartComponent implements AfterViewInit {
10
+ /**
11
+ * Runs after view init to create a chart, attach it to `elementRef` and draw it.
12
+ */
13
+ ngAfterViewInit(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScatterChartComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScatterChartComponent, "ibm-scatter-chart", never, {}, {}, never, never, false, never>;
16
+ }
@@ -0,0 +1,16 @@
1
+ import { AfterViewInit } from '@angular/core';
2
+ import { BaseChartComponent } from './base-chart.component';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Wrapper around `TreeChart` in carbon charts library
6
+ *
7
+ * Most functions just call their equivalent from the chart library.
8
+ */
9
+ export declare class TreeChartComponent extends BaseChartComponent implements AfterViewInit {
10
+ /**
11
+ * Runs after view init to create a chart, attach it to `elementRef` and draw it.
12
+ */
13
+ ngAfterViewInit(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<TreeChartComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<TreeChartComponent, "ibm-tree-chart", never, {}, {}, never, never, false, never>;
16
+ }
@@ -0,0 +1,16 @@
1
+ import { AfterViewInit } from '@angular/core';
2
+ import { BaseChartComponent } from './base-chart.component';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Wrapper around `TreemapChart` in carbon charts library
6
+ *
7
+ * Most functions just call their equivalent from the chart library.
8
+ */
9
+ export declare class TreemapChartComponent extends BaseChartComponent implements AfterViewInit {
10
+ /**
11
+ * Runs after view init to create a chart, attach it to `elementRef` and draw it.
12
+ */
13
+ ngAfterViewInit(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<TreemapChartComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<TreemapChartComponent, "ibm-treemap-chart", never, {}, {}, never, never, false, never>;
16
+ }
@@ -0,0 +1,16 @@
1
+ import { AfterViewInit } from '@angular/core';
2
+ import { BaseChartComponent } from './base-chart.component';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Wrapper around `WordCloudChart` in carbon charts library
6
+ *
7
+ * Most functions just call their equivalent from the chart library.
8
+ */
9
+ export declare class WordCloudChartComponent extends BaseChartComponent implements AfterViewInit {
10
+ /**
11
+ * Runs after view init to create a chart, attach it to `elementRef` and draw it.
12
+ */
13
+ ngAfterViewInit(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<WordCloudChartComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<WordCloudChartComponent, "ibm-wordcloud-chart", never, {}, {}, never, never, false, never>;
16
+ }
@@ -1 +1 @@
1
- export declare const carbonPrefix = "cds";
1
+ export declare const carbonPrefix = "cds";
@@ -0,0 +1,49 @@
1
+ import * as i0 from "@angular/core";
2
+ interface Coordinates {
3
+ x: number;
4
+ y: number;
5
+ }
6
+ export declare class EdgeComponent {
7
+ color: string;
8
+ markerEnd: string;
9
+ markerStart: string;
10
+ source: Coordinates;
11
+ target: Coordinates;
12
+ variant?: 'dash-sm' | 'dash-md' | 'dash-lg' | 'dash-xl' | 'double' | 'tunnel';
13
+ path: string;
14
+ pathClasses: string;
15
+ namespace: string;
16
+ straight: (source: import("@carbon/charts").Coordinates, target: import("@carbon/charts").Coordinates) => string;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<EdgeComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<EdgeComponent, "ibm-graph-edge, [ibm-graph-edge]", never, {
19
+ "color": {
20
+ "alias": "color";
21
+ "required": false;
22
+ };
23
+ "markerEnd": {
24
+ "alias": "markerEnd";
25
+ "required": false;
26
+ };
27
+ "markerStart": {
28
+ "alias": "markerStart";
29
+ "required": false;
30
+ };
31
+ "source": {
32
+ "alias": "source";
33
+ "required": false;
34
+ };
35
+ "target": {
36
+ "alias": "target";
37
+ "required": false;
38
+ };
39
+ "variant": {
40
+ "alias": "variant";
41
+ "required": false;
42
+ };
43
+ "path": {
44
+ "alias": "path";
45
+ "required": false;
46
+ };
47
+ }, {}, never, never, false, never>;
48
+ }
49
+ export {};
@@ -0,0 +1,15 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./edge.component";
3
+ import * as i2 from "@angular/common";
4
+ export { EdgeComponent } from './edge.component';
5
+ export declare class EdgeModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<EdgeModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<EdgeModule, [
8
+ typeof i1.EdgeComponent
9
+ ], [
10
+ typeof i2.CommonModule
11
+ ], [
12
+ typeof i1.EdgeComponent
13
+ ]>;
14
+ static ɵinj: i0.ɵɵInjectorDeclaration<EdgeModule>;
15
+ }
@@ -0,0 +1,89 @@
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class MarkerComponent {
4
+ d: string;
5
+ color: string;
6
+ id: string;
7
+ orient: string | number;
8
+ height: string | number;
9
+ width: string | number;
10
+ refX: string | number;
11
+ refY: string | number;
12
+ position: 'start' | 'end';
13
+ namespace: string;
14
+ setAttributes: ({ d, id, height, width }: {
15
+ d: string;
16
+ id: string;
17
+ height: number;
18
+ width: number;
19
+ }) => void;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<MarkerComponent, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<MarkerComponent, "ibm-graph-marker,[ibm-graph-marker]", never, {
22
+ "d": {
23
+ "alias": "d";
24
+ "required": false;
25
+ };
26
+ "color": {
27
+ "alias": "color";
28
+ "required": false;
29
+ };
30
+ "id": {
31
+ "alias": "id";
32
+ "required": false;
33
+ };
34
+ "orient": {
35
+ "alias": "orient";
36
+ "required": false;
37
+ };
38
+ "height": {
39
+ "alias": "height";
40
+ "required": false;
41
+ };
42
+ "width": {
43
+ "alias": "width";
44
+ "required": false;
45
+ };
46
+ "refX": {
47
+ "alias": "refX";
48
+ "required": false;
49
+ };
50
+ "refY": {
51
+ "alias": "refY";
52
+ "required": false;
53
+ };
54
+ "position": {
55
+ "alias": "position";
56
+ "required": false;
57
+ };
58
+ }, {}, never, never, false, never>;
59
+ }
60
+ export declare class MarkerArrowLeftComponent extends MarkerComponent implements OnInit {
61
+ ngOnInit(): void;
62
+ static ɵfac: i0.ɵɵFactoryDeclaration<MarkerArrowLeftComponent, never>;
63
+ static ɵcmp: i0.ɵɵComponentDeclaration<MarkerArrowLeftComponent, "ibm-graph-marker-arrow-left,[ibm-graph-marker-arrow-left]", never, {}, {}, never, never, false, never>;
64
+ }
65
+ export declare class MarkerArrowRightComponent extends MarkerComponent implements OnInit {
66
+ ngOnInit(): void;
67
+ static ɵfac: i0.ɵɵFactoryDeclaration<MarkerArrowRightComponent, never>;
68
+ static ɵcmp: i0.ɵɵComponentDeclaration<MarkerArrowRightComponent, "ibm-graph-marker-arrow-right,[ibm-graph-marker-arrow-right]", never, {}, {}, never, never, false, never>;
69
+ }
70
+ export declare class MarkerShapeNodeComponent extends MarkerComponent implements OnInit {
71
+ ngOnInit(): void;
72
+ static ɵfac: i0.ɵɵFactoryDeclaration<MarkerShapeNodeComponent, never>;
73
+ static ɵcmp: i0.ɵɵComponentDeclaration<MarkerShapeNodeComponent, "ibm-graph-marker-circle,[ibm-graph-marker-circle]", never, {}, {}, never, never, false, never>;
74
+ }
75
+ export declare class MarkerDiamondComponent extends MarkerComponent implements OnInit {
76
+ ngOnInit(): void;
77
+ static ɵfac: i0.ɵɵFactoryDeclaration<MarkerDiamondComponent, never>;
78
+ static ɵcmp: i0.ɵɵComponentDeclaration<MarkerDiamondComponent, "ibm-graph-marker-diamond,[ibm-graph-marker-diamond]", never, {}, {}, never, never, false, never>;
79
+ }
80
+ export declare class MarkerSquareComponent extends MarkerComponent implements OnInit {
81
+ ngOnInit(): void;
82
+ static ɵfac: i0.ɵɵFactoryDeclaration<MarkerSquareComponent, never>;
83
+ static ɵcmp: i0.ɵɵComponentDeclaration<MarkerSquareComponent, "ibm-graph-marker-square,[ibm-graph-marker-square]", never, {}, {}, never, never, false, never>;
84
+ }
85
+ export declare class MarkerTeeComponent extends MarkerComponent implements OnInit {
86
+ ngOnInit(): void;
87
+ static ɵfac: i0.ɵɵFactoryDeclaration<MarkerTeeComponent, never>;
88
+ static ɵcmp: i0.ɵɵComponentDeclaration<MarkerTeeComponent, "ibm-graph-marker-tee,[ibm-graph-marker-tee]", never, {}, {}, never, never, false, never>;
89
+ }
@@ -0,0 +1,28 @@
1
+ import { MarkerComponent, MarkerArrowLeftComponent, MarkerArrowRightComponent, MarkerShapeNodeComponent, MarkerDiamondComponent, MarkerSquareComponent, MarkerTeeComponent } from './marker.component';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./marker.component";
4
+ import * as i2 from "@angular/common";
5
+ export { MarkerComponent, MarkerArrowLeftComponent, MarkerArrowRightComponent, MarkerShapeNodeComponent, MarkerDiamondComponent, MarkerSquareComponent, MarkerTeeComponent };
6
+ export declare class MarkerModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<MarkerModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MarkerModule, [
9
+ typeof i1.MarkerComponent,
10
+ typeof i1.MarkerArrowLeftComponent,
11
+ typeof i1.MarkerArrowRightComponent,
12
+ typeof i1.MarkerShapeNodeComponent,
13
+ typeof i1.MarkerDiamondComponent,
14
+ typeof i1.MarkerSquareComponent,
15
+ typeof i1.MarkerTeeComponent
16
+ ], [
17
+ typeof i2.CommonModule
18
+ ], [
19
+ typeof i1.MarkerComponent,
20
+ typeof i1.MarkerArrowLeftComponent,
21
+ typeof i1.MarkerArrowRightComponent,
22
+ typeof i1.MarkerShapeNodeComponent,
23
+ typeof i1.MarkerDiamondComponent,
24
+ typeof i1.MarkerSquareComponent,
25
+ typeof i1.MarkerTeeComponent
26
+ ]>;
27
+ static ɵinj: i0.ɵɵInjectorDeclaration<MarkerModule>;
28
+ }
@@ -0,0 +1,4 @@
1
+ export { MarkerComponent, MarkerArrowLeftComponent, MarkerArrowRightComponent, MarkerShapeNodeComponent, MarkerDiamondComponent, MarkerSquareComponent, MarkerTeeComponent, MarkerModule } from './edges/marker/marker.module';
2
+ export { EdgeComponent, EdgeModule } from './edges/edge.module';
3
+ export { CardNodeComponent, CardNodeColumnComponent, CardNodeLabelComponent, CardNodeSubtitleComponent, CardNodeTitleComponent, CardNodeModule } from './nodes/cards/card-node.module';
4
+ export { ShapeNodeComponent, ShapeNodeModule } from './nodes/shape/shape-node.module';
@@ -0,0 +1,14 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class CardNodeColumnComponent {
3
+ farsideColumn: boolean;
4
+ readonly class: string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<CardNodeColumnComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<CardNodeColumnComponent, "ibm-diagram-card-node-column", never, {
7
+ "farsideColumn": {
8
+ "alias": "farsideColumn";
9
+ "required": false;
10
+ };
11
+ }, {}, never, [
12
+ "*"
13
+ ], false, never>;
14
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class CardNodeLabelComponent {
3
+ namespace: string;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<CardNodeLabelComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<CardNodeLabelComponent, "ibm-diagram-card-node-label", never, {}, {}, never, [
6
+ "*"
7
+ ], false, never>;
8
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class CardNodeSubtitleComponent {
3
+ namespace: string;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<CardNodeSubtitleComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<CardNodeSubtitleComponent, "ibm-diagram-card-node-subtitle", never, {}, {}, never, [
6
+ "*"
7
+ ], false, never>;
8
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class CardNodeTitleComponent {
3
+ namespace: string;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<CardNodeTitleComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<CardNodeTitleComponent, "ibm-diagram-card-node-title", never, {}, {}, never, [
6
+ "*"
7
+ ], false, never>;
8
+ }
@@ -0,0 +1,50 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CardNodeComponent implements OnInit {
4
+ as: string;
5
+ href: string;
6
+ color: string;
7
+ stacked: boolean;
8
+ position: string;
9
+ click: EventEmitter<MouseEvent>;
10
+ mouseEnter: EventEmitter<MouseEvent>;
11
+ mouseOver: EventEmitter<MouseEvent>;
12
+ mouseOut: EventEmitter<MouseEvent>;
13
+ mouseLeave: EventEmitter<MouseEvent>;
14
+ mouseMove: EventEmitter<MouseEvent>;
15
+ namespace: string;
16
+ component: string;
17
+ ngOnInit(): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<CardNodeComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<CardNodeComponent, "ibm-diagram-card-node", never, {
20
+ "as": {
21
+ "alias": "as";
22
+ "required": false;
23
+ };
24
+ "href": {
25
+ "alias": "href";
26
+ "required": false;
27
+ };
28
+ "color": {
29
+ "alias": "color";
30
+ "required": false;
31
+ };
32
+ "stacked": {
33
+ "alias": "stacked";
34
+ "required": false;
35
+ };
36
+ "position": {
37
+ "alias": "position";
38
+ "required": false;
39
+ };
40
+ }, {
41
+ "click": "click";
42
+ "mouseEnter": "mouseEnter";
43
+ "mouseOver": "mouseOver";
44
+ "mouseOut": "mouseOut";
45
+ "mouseLeave": "mouseLeave";
46
+ "mouseMove": "mouseMove";
47
+ }, never, [
48
+ "*"
49
+ ], false, never>;
50
+ }
@@ -0,0 +1,32 @@
1
+ import { CardNodeComponent } from './card-node.component';
2
+ import { CardNodeColumnComponent } from './card-node-column.component';
3
+ import { CardNodeLabelComponent } from './card-node-label.component';
4
+ import { CardNodeSubtitleComponent } from './card-node-subtitle.component';
5
+ import { CardNodeTitleComponent } from './card-node-title.component';
6
+ import * as i0 from "@angular/core";
7
+ import * as i1 from "./card-node.component";
8
+ import * as i2 from "./card-node-column.component";
9
+ import * as i3 from "./card-node-label.component";
10
+ import * as i4 from "./card-node-subtitle.component";
11
+ import * as i5 from "./card-node-title.component";
12
+ import * as i6 from "@angular/common";
13
+ export { CardNodeComponent, CardNodeColumnComponent, CardNodeLabelComponent, CardNodeSubtitleComponent, CardNodeTitleComponent };
14
+ export declare class CardNodeModule {
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<CardNodeModule, never>;
16
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CardNodeModule, [
17
+ typeof i1.CardNodeComponent,
18
+ typeof i2.CardNodeColumnComponent,
19
+ typeof i3.CardNodeLabelComponent,
20
+ typeof i4.CardNodeSubtitleComponent,
21
+ typeof i5.CardNodeTitleComponent
22
+ ], [
23
+ typeof i6.CommonModule
24
+ ], [
25
+ typeof i1.CardNodeComponent,
26
+ typeof i2.CardNodeColumnComponent,
27
+ typeof i3.CardNodeLabelComponent,
28
+ typeof i4.CardNodeSubtitleComponent,
29
+ typeof i5.CardNodeTitleComponent
30
+ ]>;
31
+ static ɵinj: i0.ɵɵInjectorDeclaration<CardNodeModule>;
32
+ }