@carbon/charts 1.13.26 → 1.13.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -0
- package/dist/{choropleth-GJJ8-QuT.mjs → choropleth-5mgcLFan.mjs} +2 -2
- package/dist/choropleth-5mgcLFan.mjs.map +1 -0
- package/dist/components/index.mjs +1 -1
- package/dist/demo/charts/alluvial.d.ts +2 -1
- package/dist/demo/charts/area.d.ts +18 -17
- package/dist/demo/charts/bar.d.ts +45 -44
- package/dist/demo/charts/boxplot.d.ts +3 -2
- package/dist/demo/charts/bubble.d.ts +5 -4
- package/dist/demo/charts/bullet.d.ts +3 -2
- package/dist/demo/charts/combo.d.ts +22 -21
- package/dist/demo/charts/donut.d.ts +3 -2
- package/dist/demo/charts/heatmap.d.ts +11 -10
- package/dist/demo/charts/hightlight.d.ts +3 -2
- package/dist/demo/charts/histogram.d.ts +4 -3
- package/dist/demo/charts/line.d.ts +32 -31
- package/dist/demo/charts/lollipop.d.ts +3 -2
- package/dist/demo/charts/pie.d.ts +3 -2
- package/dist/demo/charts/radar.d.ts +3 -2
- package/dist/demo/charts/scatter.d.ts +10 -9
- package/dist/demo/charts/step.d.ts +8 -8
- package/dist/demo/charts/time-series-axis.d.ts +18 -17
- package/dist/demo/index.mjs +1751 -1716
- package/dist/demo/index.mjs.map +1 -1
- package/dist/demo/styles.css +177 -13
- package/dist/demo/styles.css.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/interfaces/charts.d.ts +16 -16
- package/dist/interfaces/components.d.ts +5 -5
- package/dist/interfaces/layout.d.ts +3 -3
- package/dist/styles.css +48 -0
- package/dist/styles.css.map +1 -1
- package/dist/styles.min.css +1 -1
- package/dist/styles.min.css.map +1 -1
- package/dist/umd/bundle.umd.js +1 -1
- package/dist/umd/bundle.umd.js.map +1 -1
- package/package.json +4 -4
- package/styles.css +48 -0
- package/styles.min.css +1 -1
- package/dist/choropleth-GJJ8-QuT.mjs.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
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.13.28 (2024-02-03)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **stackblitz:** env changes for angular examples to match latest StackBlitz Angular TypeScript
|
|
11
|
+
template ([#1738](https://github.com/carbon-design-system/carbon-charts/issues/1738))
|
|
12
|
+
([2b62be8](https://github.com/carbon-design-system/carbon-charts/commit/2b62be8d329f52ae7a0ae525d54c81622fb71d22))
|
|
13
|
+
|
|
14
|
+
# Change Log
|
|
15
|
+
|
|
16
|
+
All notable changes to this project will be documented in this file. See
|
|
17
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
18
|
+
|
|
19
|
+
## 1.13.27 (2024-02-02)
|
|
20
|
+
|
|
21
|
+
**Note:** Version bump only for package @carbon/charts
|
|
22
|
+
|
|
23
|
+
# Change Log
|
|
24
|
+
|
|
25
|
+
All notable changes to this project will be documented in this file. See
|
|
26
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
27
|
+
|
|
6
28
|
## 1.13.26 (2024-02-02)
|
|
7
29
|
|
|
8
30
|
**Note:** Version bump only for package @carbon/charts
|
|
@@ -875,7 +875,7 @@ const Dt = (o) => Un.sanitize(o, {
|
|
|
875
875
|
// @ts-ignore
|
|
876
876
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
877
877
|
render(e = !0) {
|
|
878
|
-
const t = this.getComponentContainer().attr("role", "toolbar").attr("aria-label",
|
|
878
|
+
const t = this.getComponentContainer().attr("role", "toolbar").attr("aria-label", "chart toolbar");
|
|
879
879
|
if (y(this.getOptions(), "data", "loading"))
|
|
880
880
|
t.html(""), this.overflowMenu = null;
|
|
881
881
|
else {
|
|
@@ -8563,4 +8563,4 @@ export {
|
|
|
8563
8563
|
xh as y,
|
|
8564
8564
|
Lh as z
|
|
8565
8565
|
};
|
|
8566
|
-
//# sourceMappingURL=choropleth-
|
|
8566
|
+
//# sourceMappingURL=choropleth-5mgcLFan.mjs.map
|