@carbon/charts-react 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/dist/index.js +115 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +9 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +10 -8
package/dist/index.mjs
CHANGED
|
@@ -14778,7 +14778,9 @@ class Yo extends bt {
|
|
|
14778
14778
|
<div class="cds--modal-header cds--modal-header">
|
|
14779
14779
|
<p class="cds--modal-header__label cds--type-delta cds--modal-header__label cds--type-delta" id="modal-title">Tabular representation</p>
|
|
14780
14780
|
|
|
14781
|
-
<p class="cds--modal-header__heading cds--type-beta cds--modal-header__heading cds--type-beta" id="modal-description">${ln(
|
|
14781
|
+
<p class="cds--modal-header__heading cds--type-beta cds--modal-header__heading cds--type-beta" id="modal-description">${ln(
|
|
14782
|
+
t.title
|
|
14783
|
+
)}</p>
|
|
14782
14784
|
|
|
14783
14785
|
<button class="cds--modal-close cds--modal-close" type="button" data-modal-close aria-label="close modal" data-modal-primary-focus>
|
|
14784
14786
|
<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">
|
|
@@ -15227,11 +15229,15 @@ class nh extends bt {
|
|
|
15227
15229
|
const l = D.appendOrSelect(this.tooltip, "div.content-box");
|
|
15228
15230
|
if (b(this.getOptions(), "tooltip", "customHTML"))
|
|
15229
15231
|
if (i.detail.content) {
|
|
15230
|
-
const c = `<div class="title-tooltip"><p>${ua(
|
|
15232
|
+
const c = `<div class="title-tooltip"><p>${ua(
|
|
15233
|
+
i.detail.content
|
|
15234
|
+
)}</p></div>`;
|
|
15231
15235
|
l.html(c);
|
|
15232
15236
|
} else
|
|
15233
15237
|
l.html(
|
|
15234
|
-
`<div class="title-tooltip"><p>${ua(
|
|
15238
|
+
`<div class="title-tooltip"><p>${ua(
|
|
15239
|
+
this.model.getOptions().tooltip.customHTML(s, a)
|
|
15240
|
+
)}</p></div>`
|
|
15235
15241
|
);
|
|
15236
15242
|
else
|
|
15237
15243
|
l.html(a);
|