@carbon/charts-angular 1.7.6 → 1.9.0-rc.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.
Files changed (229) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/README.md +0 -2
  3. package/esm2022/carbon-charts-angular.mjs +5 -0
  4. package/esm2022/index.mjs +14 -0
  5. package/esm2022/lib/charts/alluvial-chart.component.mjs +32 -0
  6. package/esm2022/lib/charts/area-chart-stacked.component.mjs +32 -0
  7. package/esm2022/lib/charts/area-chart.component.mjs +32 -0
  8. package/esm2022/lib/charts/bar-chart-grouped.component.mjs +32 -0
  9. package/esm2022/lib/charts/bar-chart-simple.component.mjs +32 -0
  10. package/esm2022/lib/charts/bar-chart-stacked.component.mjs +32 -0
  11. package/esm2022/lib/charts/base-chart.component.mjs +75 -0
  12. package/esm2022/lib/charts/boxplot-chart.component.mjs +32 -0
  13. package/esm2022/lib/charts/bubble-chart.component.mjs +32 -0
  14. package/esm2022/lib/charts/bullet-chart.component.mjs +32 -0
  15. package/esm2022/lib/charts/charts.module.mjs +123 -0
  16. package/esm2022/lib/charts/choropleth.component.mjs +32 -0
  17. package/esm2022/lib/charts/circle-pack-chart.component.mjs +32 -0
  18. package/esm2022/lib/charts/combo-chart.component.mjs +32 -0
  19. package/esm2022/lib/charts/donut-chart.component.mjs +32 -0
  20. package/esm2022/lib/charts/gauge-chart.component.mjs +32 -0
  21. package/esm2022/lib/charts/heatmap-chart.component.mjs +32 -0
  22. package/esm2022/lib/charts/histogram-chart.component.mjs +32 -0
  23. package/esm2022/lib/charts/index.mjs +28 -0
  24. package/esm2022/lib/charts/line-chart.component.mjs +32 -0
  25. package/esm2022/lib/charts/lollipop-chart.component.mjs +32 -0
  26. package/esm2022/lib/charts/meter-chart.component.mjs +32 -0
  27. package/esm2022/lib/charts/pie-chart.component.mjs +32 -0
  28. package/esm2022/lib/charts/radar-chart.component.mjs +32 -0
  29. package/esm2022/lib/charts/scatter-chart.component.mjs +32 -0
  30. package/esm2022/lib/charts/tree-chart.component.mjs +32 -0
  31. package/esm2022/lib/charts/treemap-chart.component.mjs +32 -0
  32. package/esm2022/lib/charts/wordcloud-chart.component.mjs +32 -0
  33. package/esm2022/lib/diagrams/config.mjs +2 -0
  34. package/esm2022/lib/diagrams/edges/edge.component.mjs +73 -0
  35. package/esm2022/lib/diagrams/edges/edge.module.mjs +20 -0
  36. package/esm2022/lib/diagrams/edges/marker/marker.component.mjs +161 -0
  37. package/esm2022/lib/diagrams/edges/marker/marker.module.mjs +48 -0
  38. package/esm2022/lib/diagrams/index.mjs +5 -0
  39. package/esm2022/lib/diagrams/nodes/cards/card-node-column.component.mjs +38 -0
  40. package/esm2022/lib/diagrams/nodes/cards/card-node-label.component.mjs +28 -0
  41. package/esm2022/lib/diagrams/nodes/cards/card-node-subtitle.component.mjs +28 -0
  42. package/esm2022/lib/diagrams/nodes/cards/card-node-title.component.mjs +28 -0
  43. package/esm2022/lib/diagrams/nodes/cards/card-node.component.mjs +191 -0
  44. package/esm2022/lib/diagrams/nodes/cards/card-node.module.mjs +44 -0
  45. package/esm2022/lib/diagrams/nodes/shape/shape-node.component.mjs +241 -0
  46. package/esm2022/lib/diagrams/nodes/shape/shape-node.module.mjs +20 -0
  47. package/esm2022/lib/index.mjs +3 -0
  48. package/fesm2022/carbon-charts-angular.mjs +1728 -0
  49. package/fesm2022/carbon-charts-angular.mjs.map +1 -0
  50. package/index.d.ts +5 -38
  51. package/lib/charts/alluvial-chart.component.d.ts +16 -0
  52. package/lib/charts/area-chart-stacked.component.d.ts +16 -0
  53. package/lib/charts/area-chart.component.d.ts +16 -0
  54. package/lib/charts/bar-chart-grouped.component.d.ts +16 -0
  55. package/lib/charts/bar-chart-simple.component.d.ts +16 -0
  56. package/lib/charts/bar-chart-stacked.component.d.ts +16 -0
  57. package/lib/charts/base-chart.component.d.ts +46 -0
  58. package/lib/charts/boxplot-chart.component.d.ts +16 -0
  59. package/lib/charts/bubble-chart.component.d.ts +16 -0
  60. package/lib/charts/bullet-chart.component.d.ts +16 -0
  61. package/lib/charts/charts.module.d.ts +33 -0
  62. package/lib/charts/choropleth.component.d.ts +16 -0
  63. package/lib/charts/circle-pack-chart.component.d.ts +16 -0
  64. package/lib/charts/combo-chart.component.d.ts +16 -0
  65. package/lib/charts/donut-chart.component.d.ts +16 -0
  66. package/lib/charts/gauge-chart.component.d.ts +16 -0
  67. package/lib/charts/heatmap-chart.component.d.ts +16 -0
  68. package/lib/charts/histogram-chart.component.d.ts +16 -0
  69. package/lib/charts/index.d.ts +27 -0
  70. package/lib/charts/line-chart.component.d.ts +16 -0
  71. package/lib/charts/lollipop-chart.component.d.ts +16 -0
  72. package/lib/charts/meter-chart.component.d.ts +16 -0
  73. package/lib/charts/pie-chart.component.d.ts +16 -0
  74. package/lib/charts/radar-chart.component.d.ts +16 -0
  75. package/lib/charts/scatter-chart.component.d.ts +16 -0
  76. package/lib/charts/tree-chart.component.d.ts +16 -0
  77. package/lib/charts/treemap-chart.component.d.ts +16 -0
  78. package/lib/charts/wordcloud-chart.component.d.ts +16 -0
  79. package/lib/diagrams/edges/edge.component.d.ts +20 -0
  80. package/lib/diagrams/edges/edge.module.d.ts +9 -0
  81. package/lib/diagrams/edges/marker/marker.component.d.ts +52 -0
  82. package/lib/diagrams/edges/marker/marker.module.d.ts +10 -0
  83. package/lib/diagrams/index.d.ts +4 -0
  84. package/lib/diagrams/nodes/cards/card-node-column.component.d.ts +7 -0
  85. package/lib/diagrams/nodes/cards/card-node-label.component.d.ts +6 -0
  86. package/lib/diagrams/nodes/cards/card-node-subtitle.component.d.ts +6 -0
  87. package/lib/diagrams/nodes/cards/card-node-title.component.d.ts +6 -0
  88. package/lib/diagrams/nodes/cards/card-node.component.d.ts +20 -0
  89. package/lib/diagrams/nodes/cards/card-node.module.d.ts +18 -0
  90. package/lib/diagrams/nodes/shape/shape-node.component.d.ts +25 -0
  91. package/lib/diagrams/nodes/shape/shape-node.module.d.ts +9 -0
  92. package/lib/index.d.ts +2 -0
  93. package/package.json +33 -61
  94. package/styles.css +28264 -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/LICENSE.md +0 -201
  99. package/alluvial-chart.component.d.ts +0 -13
  100. package/area-chart-stacked.component.d.ts +0 -13
  101. package/area-chart.component.d.ts +0 -13
  102. package/bar-chart-grouped.component.d.ts +0 -13
  103. package/bar-chart-simple.component.d.ts +0 -13
  104. package/bar-chart-stacked.component.d.ts +0 -13
  105. package/base-chart.component.d.ts +0 -44
  106. package/boxplot-chart.component.d.ts +0 -13
  107. package/bubble-chart.component.d.ts +0 -13
  108. package/bullet-chart.component.d.ts +0 -13
  109. package/bundles/carbon-charts-angular.umd.js +0 -2111
  110. package/bundles/carbon-charts-angular.umd.js.map +0 -1
  111. package/bundles/carbon-charts-angular.umd.min.js +0 -16
  112. package/bundles/carbon-charts-angular.umd.min.js.map +0 -1
  113. package/carbon-charts-angular.d.ts +0 -4
  114. package/carbon-charts-angular.metadata.json +0 -1
  115. package/charts.module.d.ts +0 -2
  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 -10
  142. package/esm2015/charts.module.js +0 -94
  143. package/esm2015/circle-pack-chart.component.js +0 -33
  144. package/esm2015/combo-chart.component.js +0 -33
  145. package/esm2015/diagrams/card-node/card-node-column.component.js +0 -41
  146. package/esm2015/diagrams/card-node/card-node-label.component.js +0 -27
  147. package/esm2015/diagrams/card-node/card-node-subtitle.component.js +0 -27
  148. package/esm2015/diagrams/card-node/card-node-title.component.js +0 -27
  149. package/esm2015/diagrams/card-node/card-node.component.js +0 -148
  150. package/esm2015/diagrams/card-node/card-node.module.js +0 -23
  151. package/esm2015/diagrams/configs.js +0 -8
  152. package/esm2015/diagrams/edge/edge.component.js +0 -80
  153. package/esm2015/diagrams/edge/edge.module.js +0 -19
  154. package/esm2015/diagrams/marker/marker.component.js +0 -141
  155. package/esm2015/diagrams/marker/marker.module.js +0 -35
  156. package/esm2015/diagrams/shape-node/shape-node.component.js +0 -187
  157. package/esm2015/diagrams/shape-node/shape-node.module.js +0 -19
  158. package/esm2015/donut-chart.component.js +0 -33
  159. package/esm2015/gauge-chart.component.js +0 -33
  160. package/esm2015/heatmap-chart.component.js +0 -33
  161. package/esm2015/histogram-chart.component.js +0 -33
  162. package/esm2015/index.js +0 -45
  163. package/esm2015/line-chart.component.js +0 -33
  164. package/esm2015/lollipop-chart.component.js +0 -33
  165. package/esm2015/meter-chart.component.js +0 -33
  166. package/esm2015/pie-chart.component.js +0 -33
  167. package/esm2015/radar-chart.component.js +0 -33
  168. package/esm2015/scatter-chart.component.js +0 -33
  169. package/esm2015/tree-chart.component.js +0 -33
  170. package/esm2015/treemap-chart.component.js +0 -33
  171. package/esm2015/wordcloud-chart.component.js +0 -33
  172. package/esm5/alluvial-chart.component.js +0 -47
  173. package/esm5/area-chart-stacked.component.js +0 -47
  174. package/esm5/area-chart.component.js +0 -47
  175. package/esm5/bar-chart-grouped.component.js +0 -47
  176. package/esm5/bar-chart-simple.component.js +0 -47
  177. package/esm5/bar-chart-stacked.component.js +0 -47
  178. package/esm5/base-chart.component.js +0 -160
  179. package/esm5/boxplot-chart.component.js +0 -47
  180. package/esm5/bubble-chart.component.js +0 -47
  181. package/esm5/bullet-chart.component.js +0 -47
  182. package/esm5/carbon-charts-angular.js +0 -10
  183. package/esm5/charts.module.js +0 -98
  184. package/esm5/circle-pack-chart.component.js +0 -47
  185. package/esm5/combo-chart.component.js +0 -47
  186. package/esm5/diagrams/card-node/card-node-column.component.js +0 -43
  187. package/esm5/diagrams/card-node/card-node-label.component.js +0 -25
  188. package/esm5/diagrams/card-node/card-node-subtitle.component.js +0 -25
  189. package/esm5/diagrams/card-node/card-node-title.component.js +0 -25
  190. package/esm5/diagrams/card-node/card-node.component.js +0 -86
  191. package/esm5/diagrams/card-node/card-node.module.js +0 -27
  192. package/esm5/diagrams/configs.js +0 -8
  193. package/esm5/diagrams/edge/edge.component.js +0 -64
  194. package/esm5/diagrams/edge/edge.module.js +0 -23
  195. package/esm5/diagrams/marker/marker.component.js +0 -188
  196. package/esm5/diagrams/marker/marker.module.js +0 -39
  197. package/esm5/diagrams/shape-node/shape-node.component.js +0 -104
  198. package/esm5/diagrams/shape-node/shape-node.module.js +0 -23
  199. package/esm5/donut-chart.component.js +0 -47
  200. package/esm5/gauge-chart.component.js +0 -47
  201. package/esm5/heatmap-chart.component.js +0 -47
  202. package/esm5/histogram-chart.component.js +0 -47
  203. package/esm5/index.js +0 -45
  204. package/esm5/line-chart.component.js +0 -47
  205. package/esm5/lollipop-chart.component.js +0 -47
  206. package/esm5/meter-chart.component.js +0 -47
  207. package/esm5/pie-chart.component.js +0 -47
  208. package/esm5/radar-chart.component.js +0 -47
  209. package/esm5/scatter-chart.component.js +0 -47
  210. package/esm5/tree-chart.component.js +0 -47
  211. package/esm5/treemap-chart.component.js +0 -47
  212. package/esm5/wordcloud-chart.component.js +0 -47
  213. package/fesm2015/carbon-charts-angular.js +0 -1690
  214. package/fesm2015/carbon-charts-angular.js.map +0 -1
  215. package/fesm5/carbon-charts-angular.js +0 -1880
  216. package/fesm5/carbon-charts-angular.js.map +0 -1
  217. package/gauge-chart.component.d.ts +0 -13
  218. package/heatmap-chart.component.d.ts +0 -13
  219. package/histogram-chart.component.d.ts +0 -13
  220. package/line-chart.component.d.ts +0 -13
  221. package/lollipop-chart.component.d.ts +0 -13
  222. package/meter-chart.component.d.ts +0 -13
  223. package/pie-chart.component.d.ts +0 -13
  224. package/radar-chart.component.d.ts +0 -13
  225. package/scatter-chart.component.d.ts +0 -13
  226. package/tree-chart.component.d.ts +0 -13
  227. package/treemap-chart.component.d.ts +0 -13
  228. package/wordcloud-chart.component.d.ts +0 -13
  229. /package/{diagrams/configs.d.ts → lib/diagrams/config.d.ts} +0 -0
@@ -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
+ }
@@ -0,0 +1,20 @@
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, { "color": { "alias": "color"; "required": false; }; "markerEnd": { "alias": "markerEnd"; "required": false; }; "markerStart": { "alias": "markerStart"; "required": false; }; "source": { "alias": "source"; "required": false; }; "target": { "alias": "target"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "path": { "alias": "path"; "required": false; }; }, {}, never, never, false, never>;
19
+ }
20
+ export {};
@@ -0,0 +1,9 @@
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, [typeof i1.EdgeComponent], [typeof i2.CommonModule], [typeof i1.EdgeComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<EdgeModule>;
9
+ }
@@ -0,0 +1,52 @@
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, { "d": { "alias": "d"; "required": false; }; "color": { "alias": "color"; "required": false; }; "id": { "alias": "id"; "required": false; }; "orient": { "alias": "orient"; "required": false; }; "height": { "alias": "height"; "required": false; }; "width": { "alias": "width"; "required": false; }; "refX": { "alias": "refX"; "required": false; }; "refY": { "alias": "refY"; "required": false; }; "position": { "alias": "position"; "required": false; }; }, {}, never, never, false, never>;
22
+ }
23
+ export declare class MarkerArrowLeftComponent extends MarkerComponent implements OnInit {
24
+ ngOnInit(): void;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<MarkerArrowLeftComponent, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<MarkerArrowLeftComponent, "ibm-graph-marker-arrow-left,[ibm-graph-marker-arrow-left]", never, {}, {}, never, never, false, never>;
27
+ }
28
+ export declare class MarkerArrowRightComponent extends MarkerComponent implements OnInit {
29
+ ngOnInit(): void;
30
+ static ɵfac: i0.ɵɵFactoryDeclaration<MarkerArrowRightComponent, never>;
31
+ static ɵcmp: i0.ɵɵComponentDeclaration<MarkerArrowRightComponent, "ibm-graph-marker-arrow-right,[ibm-graph-marker-arrow-right]", never, {}, {}, never, never, false, never>;
32
+ }
33
+ export declare class MarkerShapeNodeComponent extends MarkerComponent implements OnInit {
34
+ ngOnInit(): void;
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<MarkerShapeNodeComponent, never>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<MarkerShapeNodeComponent, "ibm-graph-marker-circle,[ibm-graph-marker-circle]", never, {}, {}, never, never, false, never>;
37
+ }
38
+ export declare class MarkerDiamondComponent extends MarkerComponent implements OnInit {
39
+ ngOnInit(): void;
40
+ static ɵfac: i0.ɵɵFactoryDeclaration<MarkerDiamondComponent, never>;
41
+ static ɵcmp: i0.ɵɵComponentDeclaration<MarkerDiamondComponent, "ibm-graph-marker-diamond,[ibm-graph-marker-diamond]", never, {}, {}, never, never, false, never>;
42
+ }
43
+ export declare class MarkerSquareComponent extends MarkerComponent implements OnInit {
44
+ ngOnInit(): void;
45
+ static ɵfac: i0.ɵɵFactoryDeclaration<MarkerSquareComponent, never>;
46
+ static ɵcmp: i0.ɵɵComponentDeclaration<MarkerSquareComponent, "ibm-graph-marker-square,[ibm-graph-marker-square]", never, {}, {}, never, never, false, never>;
47
+ }
48
+ export declare class MarkerTeeComponent extends MarkerComponent implements OnInit {
49
+ ngOnInit(): void;
50
+ static ɵfac: i0.ɵɵFactoryDeclaration<MarkerTeeComponent, never>;
51
+ static ɵcmp: i0.ɵɵComponentDeclaration<MarkerTeeComponent, "ibm-graph-marker-tee,[ibm-graph-marker-tee]", never, {}, {}, never, never, false, never>;
52
+ }
@@ -0,0 +1,10 @@
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, [typeof i1.MarkerComponent, typeof i1.MarkerArrowLeftComponent, typeof i1.MarkerArrowRightComponent, typeof i1.MarkerShapeNodeComponent, typeof i1.MarkerDiamondComponent, typeof i1.MarkerSquareComponent, typeof i1.MarkerTeeComponent], [typeof i2.CommonModule], [typeof i1.MarkerComponent, typeof i1.MarkerArrowLeftComponent, typeof i1.MarkerArrowRightComponent, typeof i1.MarkerShapeNodeComponent, typeof i1.MarkerDiamondComponent, typeof i1.MarkerSquareComponent, typeof i1.MarkerTeeComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<MarkerModule>;
10
+ }
@@ -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,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class CardNodeColumnComponent {
3
+ farsideColumn: boolean;
4
+ get class(): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<CardNodeColumnComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<CardNodeColumnComponent, "ibm-diagram-card-node-column", never, { "farsideColumn": { "alias": "farsideColumn"; "required": false; }; }, {}, never, ["*"], false, never>;
7
+ }
@@ -0,0 +1,6 @@
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, ["*"], false, never>;
6
+ }
@@ -0,0 +1,6 @@
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, ["*"], false, never>;
6
+ }
@@ -0,0 +1,6 @@
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, ["*"], false, never>;
6
+ }
@@ -0,0 +1,20 @@
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, { "as": { "alias": "as"; "required": false; }; "href": { "alias": "href"; "required": false; }; "color": { "alias": "color"; "required": false; }; "stacked": { "alias": "stacked"; "required": false; }; "position": { "alias": "position"; "required": false; }; }, { "click": "click"; "mouseEnter": "mouseEnter"; "mouseOver": "mouseOver"; "mouseOut": "mouseOut"; "mouseLeave": "mouseLeave"; "mouseMove": "mouseMove"; }, never, ["*"], false, never>;
20
+ }
@@ -0,0 +1,18 @@
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, [typeof i1.CardNodeComponent, typeof i2.CardNodeColumnComponent, typeof i3.CardNodeLabelComponent, typeof i4.CardNodeSubtitleComponent, typeof i5.CardNodeTitleComponent], [typeof i6.CommonModule], [typeof i1.CardNodeComponent, typeof i2.CardNodeColumnComponent, typeof i3.CardNodeLabelComponent, typeof i4.CardNodeSubtitleComponent, typeof i5.CardNodeTitleComponent]>;
17
+ static ɵinj: i0.ɵɵInjectorDeclaration<CardNodeModule>;
18
+ }
@@ -0,0 +1,25 @@
1
+ import { EventEmitter, TemplateRef, OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ShapeNodeComponent implements OnInit {
4
+ as: string;
5
+ href: string;
6
+ renderIcon?: TemplateRef<void>;
7
+ size: number;
8
+ stacked: boolean;
9
+ shape: 'circle' | 'square' | 'rounded-square';
10
+ subtitle: string;
11
+ title: string;
12
+ position: string;
13
+ bodyPosition: string;
14
+ click: EventEmitter<MouseEvent>;
15
+ mouseEnter: EventEmitter<MouseEvent>;
16
+ mouseOver: EventEmitter<MouseEvent>;
17
+ mouseOut: EventEmitter<MouseEvent>;
18
+ mouseLeave: EventEmitter<MouseEvent>;
19
+ mouseMove: EventEmitter<MouseEvent>;
20
+ namespace: string;
21
+ component: string;
22
+ ngOnInit(): void;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<ShapeNodeComponent, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<ShapeNodeComponent, "ibm-diagram-shape-node", never, { "as": { "alias": "as"; "required": false; }; "href": { "alias": "href"; "required": false; }; "renderIcon": { "alias": "renderIcon"; "required": false; }; "size": { "alias": "size"; "required": false; }; "stacked": { "alias": "stacked"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "title": { "alias": "title"; "required": false; }; "position": { "alias": "position"; "required": false; }; "bodyPosition": { "alias": "bodyPosition"; "required": false; }; }, { "click": "click"; "mouseEnter": "mouseEnter"; "mouseOver": "mouseOver"; "mouseOut": "mouseOut"; "mouseLeave": "mouseLeave"; "mouseMove": "mouseMove"; }, never, never, false, never>;
25
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./shape-node.component";
3
+ import * as i2 from "@angular/common";
4
+ export { ShapeNodeComponent } from './shape-node.component';
5
+ export declare class ShapeNodeModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<ShapeNodeModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ShapeNodeModule, [typeof i1.ShapeNodeComponent], [typeof i2.CommonModule], [typeof i1.ShapeNodeComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<ShapeNodeModule>;
9
+ }
package/lib/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export { AlluvialChartComponent, AreaChartComponent, BaseChartComponent, BoxplotChartComponent, BubbleChartComponent, BulletChartComponent, ChartsModule, CirclePackChartComponent, ComboChartComponent, DonutChartComponent, ExperimentalChoroplethChartComponent, GaugeChartComponent, GroupedBarChartComponent, HeatmapChartComponent, HistogramChartComponent, LineChartComponent, LollipopChartComponent, MeterChartComponent, PieChartComponent, RadarChartComponent, ScatterChartComponent, SimpleBarChartComponent, StackedAreaChartComponent, StackedBarChartComponent, TreeChartComponent, TreemapChartComponent, WordCloudChartComponent } from './charts';
2
+ export { CardNodeColumnComponent, CardNodeComponent, CardNodeLabelComponent, CardNodeSubtitleComponent, CardNodeTitleComponent, CardNodeModule, EdgeComponent, EdgeModule, MarkerArrowLeftComponent, MarkerArrowRightComponent, MarkerComponent, MarkerDiamondComponent, MarkerModule, MarkerShapeNodeComponent, MarkerSquareComponent, MarkerTeeComponent, ShapeNodeComponent, ShapeNodeModule } from './diagrams';
package/package.json CHANGED
@@ -1,8 +1,36 @@
1
1
  {
2
2
  "name": "@carbon/charts-angular",
3
- "version": "1.7.6",
3
+ "version": "1.9.0-rc.1",
4
4
  "description": "Carbon charting components for Angular",
5
- "main": "bundles/carbon-charts-angular.umd.js",
5
+ "exports": {
6
+ "./styles.min.css": "./dist/styles.min.css",
7
+ "./styles.css": "./dist/styles.css",
8
+ "./package.json": {
9
+ "default": "./package.json"
10
+ },
11
+ ".": {
12
+ "types": "./index.d.ts",
13
+ "esm2022": "./esm2022/carbon-charts-angular.mjs",
14
+ "esm": "./esm2022/carbon-charts-angular.mjs",
15
+ "default": "./fesm2022/carbon-charts-angular.mjs"
16
+ }
17
+ },
18
+ "peerDependencies": {
19
+ "@angular/common": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0",
20
+ "@angular/core": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
21
+ },
22
+ "dependencies": {
23
+ "@angular/common": "^16.0.4",
24
+ "@angular/core": "^16.0.4",
25
+ "@carbon/charts": "workspace:*",
26
+ "@carbon/icons-angular": "^11.2.2",
27
+ "@carbon/telemetry": "~0.1.0",
28
+ "tslib": "^2.5.3"
29
+ },
30
+ "publishConfig": {
31
+ "directory": "dist",
32
+ "access": "public"
33
+ },
6
34
  "repository": {
7
35
  "type": "git",
8
36
  "url": "git@github.com:carbon-design-system/carbon-charts.git",
@@ -33,53 +61,6 @@
33
61
  "sass",
34
62
  "scss"
35
63
  ],
36
- "dependencies": {
37
- "@carbon/charts": "^1.7.6",
38
- "@carbon/telemetry": "0.1.0",
39
- "tslib": "^1.9.0"
40
- },
41
- "peerDependencies": {
42
- "@angular/common": ">= 6.0.0 && < 16.0.0",
43
- "@angular/compiler": ">= 6.0.0 && < 16.0.0",
44
- "@angular/core": ">= 6.0.0 && < 16.0.0",
45
- "rxjs": ">= 6.0.0 && < 7.9.0",
46
- "zone.js": ">= 0.8.29 && < 0.13.0"
47
- },
48
- "devDependencies": {
49
- "@angular-devkit/build-angular": "0.13.9",
50
- "@angular-devkit/build-ng-packagr": "0.13.9",
51
- "@angular-devkit/core": "8.2.2",
52
- "@angular/animations": "7.2.15",
53
- "@angular/cli": "~7.3.9",
54
- "@angular/common": "7.2.15",
55
- "@angular/compiler": "7.2.15",
56
- "@angular/compiler-cli": "7.2.15",
57
- "@angular/core": "7.2.15",
58
- "@angular/forms": "7.2.15",
59
- "@angular/platform-browser": "7.2.15",
60
- "@angular/platform-browser-dynamic": "7.2.15",
61
- "@babel/core": "7.3.4",
62
- "@carbon/icons-angular": "11.2.1",
63
- "@storybook/addon-knobs": "5.3.12",
64
- "@storybook/addon-options": "5.3.12",
65
- "@storybook/angular": "5.3.12",
66
- "@types/node": "^12.0.0",
67
- "babel-loader": "8.0.5",
68
- "core-js": "3.0.0",
69
- "karma-webpack": "4.0.2",
70
- "ng-packagr": "5.7.1",
71
- "rxjs": "6.3.3",
72
- "sass-loader": "8.0.0",
73
- "tsickle": "0.37.1",
74
- "tslib": "1.10.0",
75
- "tslint": "5.20.1",
76
- "typescript": "3.2.2",
77
- "zone.js": "0.8.29"
78
- },
79
- "publishConfig": {
80
- "directory": "dist",
81
- "access": "public"
82
- },
83
64
  "maintainers": [
84
65
  {
85
66
  "name": "Eliad Moosavi",
@@ -94,16 +75,7 @@
94
75
  "url": "https://github.com/theiliad"
95
76
  }
96
77
  ],
97
- "module": "fesm5/carbon-charts-angular.js",
98
- "es2015": "fesm2015/carbon-charts-angular.js",
99
- "esm5": "esm5/carbon-charts-angular.js",
100
- "esm2015": "esm2015/carbon-charts-angular.js",
101
- "fesm5": "fesm5/carbon-charts-angular.js",
102
- "fesm2015": "fesm2015/carbon-charts-angular.js",
103
- "typings": "carbon-charts-angular.d.ts",
104
- "metadata": "carbon-charts-angular.metadata.json",
105
- "sideEffects": false,
106
- "scripts": {
107
- "postinstall": "carbon-telemetry collect --install"
108
- }
78
+ "module": "fesm2022/carbon-charts-angular.mjs",
79
+ "typings": "index.d.ts",
80
+ "sideEffects": false
109
81
  }