@carbon/charts 1.23.14 → 1.23.15
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 +13 -0
- package/dist/{choropleth-PBjldW-E.mjs → choropleth-DvuP75LI.mjs} +2 -2
- package/dist/choropleth-DvuP75LI.mjs.map +1 -0
- package/dist/components/index.mjs +1 -1
- package/dist/index.mjs +2 -2
- package/dist/umd/bundle.umd.cjs +1 -1
- package/dist/umd/bundle.umd.cjs.map +1 -1
- package/dist/umd/bundle.umd.js +1 -1
- package/package.json +2 -2
- package/dist/choropleth-PBjldW-E.mjs.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,19 @@
|
|
|
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.15 (2025-07-25)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **Legend:** add `img` role to additional items
|
|
11
|
+
([#2017](https://github.com/carbon-design-system/carbon-charts/issues/2017))
|
|
12
|
+
([f5b898f](https://github.com/carbon-design-system/carbon-charts/commit/f5b898f3f61e5600d25e60f19ccdf803a5543e62))
|
|
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
|
+
|
|
6
19
|
## 1.23.14 (2025-07-22)
|
|
7
20
|
|
|
8
21
|
### Bug Fixes
|
|
@@ -3972,7 +3972,7 @@ class Dd extends dt {
|
|
|
3972
3972
|
if (v && r.length) {
|
|
3973
3973
|
const S = this, y = h.selectAll("div.additional-item").data(v);
|
|
3974
3974
|
y.exit().remove();
|
|
3975
|
-
const E = y.enter().append("div").merge(y).classed("legend-item", !0).classed("additional", !0).attr(
|
|
3975
|
+
const E = y.enter().append("div").merge(y).classed("legend-item", !0).classed("additional", !0).attr("role", "img").attr(
|
|
3976
3976
|
"aria-labelledby",
|
|
3977
3977
|
(k, _) => this.services.domUtils.generateElementIDString(
|
|
3978
3978
|
`legend-datagroup-${m.size() + _}-title`
|
|
@@ -10767,4 +10767,4 @@ export {
|
|
|
10767
10767
|
qm as y,
|
|
10768
10768
|
Vm as z
|
|
10769
10769
|
};
|
|
10770
|
-
//# sourceMappingURL=choropleth-
|
|
10770
|
+
//# sourceMappingURL=choropleth-DvuP75LI.mjs.map
|