@apexcura/ui-components 0.0.14-Beta139 → 0.0.14-Beta140
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 +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1497,7 +1497,7 @@ var BarChart = (props) => {
|
|
|
1497
1497
|
beginAtZero: true,
|
|
1498
1498
|
ticks: {
|
|
1499
1499
|
callback: function(value) {
|
|
1500
|
-
return `${value}
|
|
1500
|
+
return `${value}`;
|
|
1501
1501
|
}
|
|
1502
1502
|
},
|
|
1503
1503
|
grid: {
|
|
@@ -1525,7 +1525,7 @@ var BarChart = (props) => {
|
|
|
1525
1525
|
label: function(context) {
|
|
1526
1526
|
const label = context.label || "";
|
|
1527
1527
|
const value = context.raw || 0;
|
|
1528
|
-
return
|
|
1528
|
+
return ` ${label}: ${value}`;
|
|
1529
1529
|
}
|
|
1530
1530
|
}
|
|
1531
1531
|
},
|
package/dist/index.mjs
CHANGED
|
@@ -1455,7 +1455,7 @@ var BarChart = (props) => {
|
|
|
1455
1455
|
beginAtZero: true,
|
|
1456
1456
|
ticks: {
|
|
1457
1457
|
callback: function(value) {
|
|
1458
|
-
return `${value}
|
|
1458
|
+
return `${value}`;
|
|
1459
1459
|
}
|
|
1460
1460
|
},
|
|
1461
1461
|
grid: {
|
|
@@ -1483,7 +1483,7 @@ var BarChart = (props) => {
|
|
|
1483
1483
|
label: function(context) {
|
|
1484
1484
|
const label = context.label || "";
|
|
1485
1485
|
const value = context.raw || 0;
|
|
1486
|
-
return
|
|
1486
|
+
return ` ${label}: ${value}`;
|
|
1487
1487
|
}
|
|
1488
1488
|
}
|
|
1489
1489
|
},
|