@carbon/charts-angular 1.23.15 → 1.23.16
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 +9 -0
- package/README.md +4 -1
- package/fesm2022/carbon-charts-angular.mjs +169 -169
- package/fesm2022/carbon-charts-angular.mjs.map +1 -1
- package/index.d.ts +581 -11
- package/package.json +4 -4
- package/styles.css +96 -0
- package/styles.css.map +1 -1
- package/styles.min.css +1 -1
- package/styles.min.css.map +1 -1
- package/lib/charts/alluvial-chart.component.d.ts +0 -16
- package/lib/charts/area-chart-stacked.component.d.ts +0 -16
- package/lib/charts/area-chart.component.d.ts +0 -16
- package/lib/charts/bar-chart-grouped.component.d.ts +0 -16
- package/lib/charts/bar-chart-simple.component.d.ts +0 -16
- package/lib/charts/bar-chart-stacked.component.d.ts +0 -16
- package/lib/charts/base-chart.component.d.ts +0 -46
- package/lib/charts/boxplot-chart.component.d.ts +0 -16
- package/lib/charts/bubble-chart.component.d.ts +0 -16
- package/lib/charts/bullet-chart.component.d.ts +0 -16
- package/lib/charts/charts.module.d.ts +0 -33
- package/lib/charts/choropleth.component.d.ts +0 -16
- package/lib/charts/circle-pack-chart.component.d.ts +0 -16
- package/lib/charts/combo-chart.component.d.ts +0 -16
- package/lib/charts/donut-chart.component.d.ts +0 -16
- package/lib/charts/experimental-choropleth-chart-component.d.ts +0 -17
- package/lib/charts/gauge-chart.component.d.ts +0 -16
- package/lib/charts/heatmap-chart.component.d.ts +0 -16
- package/lib/charts/histogram-chart.component.d.ts +0 -16
- package/lib/charts/index.d.ts +0 -28
- package/lib/charts/line-chart.component.d.ts +0 -16
- package/lib/charts/lollipop-chart.component.d.ts +0 -16
- package/lib/charts/meter-chart.component.d.ts +0 -16
- package/lib/charts/pie-chart.component.d.ts +0 -16
- package/lib/charts/radar-chart.component.d.ts +0 -16
- package/lib/charts/scatter-chart.component.d.ts +0 -16
- package/lib/charts/tree-chart.component.d.ts +0 -16
- package/lib/charts/treemap-chart.component.d.ts +0 -16
- package/lib/charts/wordcloud-chart.component.d.ts +0 -16
- package/lib/diagrams/config.d.ts +0 -1
- package/lib/diagrams/edges/edge.component.d.ts +0 -20
- package/lib/diagrams/edges/edge.module.d.ts +0 -9
- package/lib/diagrams/edges/marker/marker.component.d.ts +0 -52
- package/lib/diagrams/edges/marker/marker.module.d.ts +0 -10
- package/lib/diagrams/index.d.ts +0 -4
- package/lib/diagrams/nodes/cards/card-node-column.component.d.ts +0 -7
- package/lib/diagrams/nodes/cards/card-node-label.component.d.ts +0 -6
- package/lib/diagrams/nodes/cards/card-node-subtitle.component.d.ts +0 -6
- package/lib/diagrams/nodes/cards/card-node-title.component.d.ts +0 -6
- package/lib/diagrams/nodes/cards/card-node.component.d.ts +0 -20
- package/lib/diagrams/nodes/cards/card-node.module.d.ts +0 -18
- package/lib/diagrams/nodes/shape/shape-node.component.d.ts +0 -25
- package/lib/diagrams/nodes/shape/shape-node.module.d.ts +0 -9
- package/lib/index.d.ts +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See
|
|
4
4
|
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## 1.23.16 (2025-08-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @carbon/charts-angular
|
|
9
|
+
|
|
10
|
+
# Change Log
|
|
11
|
+
|
|
12
|
+
All notable changes to this project will be documented in this file. See
|
|
13
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
14
|
+
|
|
6
15
|
## 1.23.15 (2025-07-25)
|
|
7
16
|
|
|
8
17
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
</a>
|
|
5
5
|
<h3 align="center">Carbon Charts Angular</h3>
|
|
6
6
|
<p align="center">
|
|
7
|
-
A component library of 26 charts for Angular
|
|
7
|
+
A component library of 26 charts for Angular 20.
|
|
8
8
|
<br /><br />
|
|
9
9
|
<a href="https://www.npmjs.com/package/@carbon/charts">
|
|
10
10
|
<img src="https://img.shields.io/npm/v/@carbon/charts.svg" />
|
|
@@ -22,6 +22,9 @@ revert to `@carbon/charts-angular@latest`. Distribution tags have been added for
|
|
|
22
22
|
versions such as: `@carbon/charts-angular@angular12`, `@carbon/charts-angular@angular16`,
|
|
23
23
|
`@carbon/charts-angular@angular17`, etc.
|
|
24
24
|
|
|
25
|
+
Please direct all questions regarding support and bug fixes for the `@carbon/charts-angular` library to
|
|
26
|
+
[@nstuyvesant](https://github.com/nstuyvesant).
|
|
27
|
+
|
|
25
28
|
## [Documentation with StackBlitz examples](https://charts.carbondesignsystem.com/)
|
|
26
29
|
|
|
27
30
|
## Getting started
|