@appquality/unguess-design-system 2.12.35 → 2.12.36
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.36 (Mon Nov 21 2022)
|
|
2
|
+
|
|
3
|
+
#### ⚠️ Pushed to `master`
|
|
4
|
+
|
|
5
|
+
- feat(bullet chart): adjust margins ([@iacopolea](https://github.com/iacopolea))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Iacopo Leardini ([@iacopolea](https://github.com/iacopolea))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v2.12.35 (Mon Nov 21 2022)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/build/index.js
CHANGED
|
@@ -1144,7 +1144,7 @@ var CustomTooltip = function (_a) {
|
|
|
1144
1144
|
var UgBulletChart = styled__default["default"](bullet.ResponsiveBullet)(templateObject_1$15 || (templateObject_1$15 = __makeTemplateObject(["\n width: 100%;\n height: 100%;\n"], ["\n width: 100%;\n height: 100%;\n"])));
|
|
1145
1145
|
var BulletChart = function (_a) {
|
|
1146
1146
|
var width = _a.width, height = _a.height, ranges = _a.ranges, values = _a.values;
|
|
1147
|
-
return (jsxRuntime.jsx(ChartContainer, __assign({ width: width, height: height
|
|
1147
|
+
return (jsxRuntime.jsx(ChartContainer, __assign({ width: width, height: height }, { children: jsxRuntime.jsx(UgBulletChart, { theme: DEFAULT_CHARTS_THEME, data: [
|
|
1148
1148
|
{
|
|
1149
1149
|
id: "",
|
|
1150
1150
|
title: "",
|
|
@@ -1155,7 +1155,7 @@ var BulletChart = function (_a) {
|
|
|
1155
1155
|
], measureComponent: CustomMeasure, markerColors: chartColors.darkPine, markerComponent: function (_a) {
|
|
1156
1156
|
_a.size; var markerProps = __rest(_a, ["size"]);
|
|
1157
1157
|
return (jsxRuntime.jsx(CustomBulletChartMarkers, __assign({}, markerProps, { size: 4 })));
|
|
1158
|
-
}, tooltip: CustomTooltip, rangeColors: chartColors.lightGrey, rangeBorderColor: "white", rangeBorderWidth: 2, margin: { top: 0, right:
|
|
1158
|
+
}, tooltip: CustomTooltip, rangeColors: chartColors.lightGrey, rangeBorderColor: "white", rangeBorderWidth: 2, margin: { top: 0, right: 5, bottom: -1, left: 0 } }) })));
|
|
1159
1159
|
};
|
|
1160
1160
|
var templateObject_1$15;
|
|
1161
1161
|
|