@carbon/charts 1.13.17 → 1.13.18
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/dist/{choropleth-EFcahG_A.mjs → choropleth-bEh4R3-F.mjs} +10 -4
- package/dist/choropleth-bEh4R3-F.mjs.map +1 -0
- package/dist/color-scale-utils-GLd1MML3.mjs.map +1 -1
- package/dist/components/index.mjs +1 -1
- package/dist/demo/index.mjs +197 -195
- package/dist/demo/index.mjs.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/umd/bundle.umd.js.map +1 -1
- package/package.json +7 -7
- package/dist/choropleth-EFcahG_A.mjs.map +0 -1
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.13.18 (2024-01-03)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @carbon/charts
|
|
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.13.17 (2023-12-29)
|
|
7
16
|
|
|
8
17
|
**Note:** Version bump only for package @carbon/charts
|
|
@@ -2374,7 +2374,9 @@ class hh extends Y {
|
|
|
2374
2374
|
<div class="cds--modal-header cds--modal-header">
|
|
2375
2375
|
<p class="cds--modal-header__label cds--type-delta cds--modal-header__label cds--type-delta" id="modal-title">Tabular representation</p>
|
|
2376
2376
|
|
|
2377
|
-
<p class="cds--modal-header__heading cds--type-beta cds--modal-header__heading cds--type-beta" id="modal-description">${ke(
|
|
2377
|
+
<p class="cds--modal-header__heading cds--type-beta cds--modal-header__heading cds--type-beta" id="modal-description">${ke(
|
|
2378
|
+
e.title
|
|
2379
|
+
)}</p>
|
|
2378
2380
|
|
|
2379
2381
|
<button class="cds--modal-close cds--modal-close" type="button" data-modal-close aria-label="close modal" data-modal-primary-focus>
|
|
2380
2382
|
<svg focusable="false" preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg" fill="currentColor" aria-label="Close" width="20" height="20" viewBox="0 0 32 32" role="img" class="cds--modal-close__icon cds--modal-close__icon">
|
|
@@ -2823,11 +2825,15 @@ class pl extends Y {
|
|
|
2823
2825
|
const l = S.appendOrSelect(this.tooltip, "div.content-box");
|
|
2824
2826
|
if (y(this.getOptions(), "tooltip", "customHTML"))
|
|
2825
2827
|
if (s.detail.content) {
|
|
2826
|
-
const c = `<div class="title-tooltip"><p>${Nt(
|
|
2828
|
+
const c = `<div class="title-tooltip"><p>${Nt(
|
|
2829
|
+
s.detail.content
|
|
2830
|
+
)}</p></div>`;
|
|
2827
2831
|
l.html(c);
|
|
2828
2832
|
} else
|
|
2829
2833
|
l.html(
|
|
2830
|
-
`<div class="title-tooltip"><p>${Nt(
|
|
2834
|
+
`<div class="title-tooltip"><p>${Nt(
|
|
2835
|
+
this.model.getOptions().tooltip.customHTML(a, i)
|
|
2836
|
+
)}</p></div>`
|
|
2831
2837
|
);
|
|
2832
2838
|
else
|
|
2833
2839
|
l.html(i);
|
|
@@ -8555,4 +8561,4 @@ export {
|
|
|
8555
8561
|
Oh as y,
|
|
8556
8562
|
Th as z
|
|
8557
8563
|
};
|
|
8558
|
-
//# sourceMappingURL=choropleth-
|
|
8564
|
+
//# sourceMappingURL=choropleth-bEh4R3-F.mjs.map
|