@carbon/charts 1.26.0 → 1.27.0
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 +26 -0
- package/dist/{choropleth-CRH6Tnw6.mjs → choropleth-BYl1QP2B.mjs} +79 -56
- package/dist/choropleth-BYl1QP2B.mjs.map +1 -0
- package/dist/components/index.mjs +1 -1
- package/dist/index.mjs +2 -2
- package/dist/interfaces/components.d.ts +5 -0
- package/dist/styles.css +6 -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.cjs +8 -8
- package/dist/umd/bundle.umd.cjs.map +1 -1
- package/dist/umd/bundle.umd.js +8 -8
- package/package.json +2 -2
- package/scss/graphs/_scatter-stacked.scss +2 -0
- package/scss/graphs/_scatter.scss +2 -0
- package/styles.css +6 -0
- package/styles.min.css +1 -1
- package/dist/choropleth-CRH6Tnw6.mjs.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carbon/charts",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.27.0",
|
|
4
4
|
"description": "Carbon Charts component library",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -156,5 +156,5 @@
|
|
|
156
156
|
"url": "https://github.com/theiliad"
|
|
157
157
|
}
|
|
158
158
|
],
|
|
159
|
-
"gitHead": "
|
|
159
|
+
"gitHead": "a503302db410836990d07c405b0bc93f5cb86b2f"
|
|
160
160
|
}
|
package/styles.css
CHANGED
|
@@ -5070,6 +5070,9 @@ div.cds--cc--legend.clickable div.legend-item:not(.additional):hover div.checkbo
|
|
|
5070
5070
|
stroke: var(--cds-layer-inverse-absolute, #000000);
|
|
5071
5071
|
}
|
|
5072
5072
|
|
|
5073
|
+
.cds--cc--scatter {
|
|
5074
|
+
overflow: visible;
|
|
5075
|
+
}
|
|
5073
5076
|
.cds--cc--scatter circle.dot.hovered {
|
|
5074
5077
|
fill-opacity: 1;
|
|
5075
5078
|
transition: all 0.1s;
|
|
@@ -5086,6 +5089,9 @@ div.cds--cc--legend.clickable div.legend-item:not(.additional):hover div.checkbo
|
|
|
5086
5089
|
mix-blend-mode: multiply;
|
|
5087
5090
|
}
|
|
5088
5091
|
|
|
5092
|
+
.cds--cc--scatter-stacked {
|
|
5093
|
+
overflow: visible;
|
|
5094
|
+
}
|
|
5089
5095
|
.cds--cc--scatter-stacked circle.dot.unfilled {
|
|
5090
5096
|
fill: var(--cds-layer-01, #f4f4f4);
|
|
5091
5097
|
stroke-width: 1.5;
|