@appquality/unguess-design-system 2.12.28 → 2.12.29
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 +12 -0
- package/build/index.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v2.12.29 (Tue Nov 15 2022)
|
|
2
|
+
|
|
3
|
+
#### ⚠️ Pushed to `master`
|
|
4
|
+
|
|
5
|
+
- fix(halfpie): Make toplevel component relative instead of absolute ([@d-beezee](https://github.com/d-beezee))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- [@d-beezee](https://github.com/d-beezee)
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v2.12.28 (Tue Nov 15 2022)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/build/index.js
CHANGED
|
@@ -1216,7 +1216,7 @@ var HalfPieChart = function (_a) {
|
|
|
1216
1216
|
return newColors;
|
|
1217
1217
|
};
|
|
1218
1218
|
var _b = React.useState(grayOutColors(0)), currentColors = _b[0], setCurrentColors = _b[1];
|
|
1219
|
-
return (jsxRuntime.jsxs(
|
|
1219
|
+
return (jsxRuntime.jsxs("div", __assign({ style: { width: width, height: height, position: "relative" } }, { children: [jsxRuntime.jsx(HalfPieChartComponent, { theme: theme, colors: currentColors, width: "100%", height: height, data: data, onMouseEnter: function (data) {
|
|
1220
1220
|
setCurrentColors(grayOutColors(data.arc.index));
|
|
1221
1221
|
}, onMouseLeave: function () {
|
|
1222
1222
|
setCurrentColors(grayOutColors(0));
|
|
@@ -1224,7 +1224,7 @@ var HalfPieChart = function (_a) {
|
|
|
1224
1224
|
setCurrentColors(grayOutColors(data.arc.index));
|
|
1225
1225
|
}, onMouseLeave: function () {
|
|
1226
1226
|
setCurrentColors(grayOutColors(0));
|
|
1227
|
-
}, mode: "back" })] }));
|
|
1227
|
+
}, mode: "back" })] })));
|
|
1228
1228
|
};
|
|
1229
1229
|
|
|
1230
1230
|
var StreamChart = function (_a) {
|