@apexcura/ui-components 0.0.14-Beta137 → 0.0.14-Beta139
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 +14 -3
- package/dist/index.mjs +14 -3
- package/package.json +3 -1
package/dist/index.js
CHANGED
|
@@ -1484,8 +1484,8 @@ var BarChart = (props) => {
|
|
|
1484
1484
|
],
|
|
1485
1485
|
datasets: [
|
|
1486
1486
|
{
|
|
1487
|
-
data: [30,
|
|
1488
|
-
backgroundColor: "#
|
|
1487
|
+
data: [30, 100, 270, 140, 120, 240],
|
|
1488
|
+
backgroundColor: "#1565C0",
|
|
1489
1489
|
barThickness: 15
|
|
1490
1490
|
}
|
|
1491
1491
|
]
|
|
@@ -1499,11 +1499,22 @@ var BarChart = (props) => {
|
|
|
1499
1499
|
callback: function(value) {
|
|
1500
1500
|
return `${value}%`;
|
|
1501
1501
|
}
|
|
1502
|
+
},
|
|
1503
|
+
grid: {
|
|
1504
|
+
display: false
|
|
1502
1505
|
}
|
|
1503
1506
|
},
|
|
1504
1507
|
y: {
|
|
1505
1508
|
grid: {
|
|
1506
|
-
display:
|
|
1509
|
+
display: true
|
|
1510
|
+
},
|
|
1511
|
+
ticks: {
|
|
1512
|
+
min: 0,
|
|
1513
|
+
max: 400,
|
|
1514
|
+
stepSize: 200,
|
|
1515
|
+
callback: function(value) {
|
|
1516
|
+
return `${value}`;
|
|
1517
|
+
}
|
|
1507
1518
|
}
|
|
1508
1519
|
}
|
|
1509
1520
|
},
|
package/dist/index.mjs
CHANGED
|
@@ -1442,8 +1442,8 @@ var BarChart = (props) => {
|
|
|
1442
1442
|
],
|
|
1443
1443
|
datasets: [
|
|
1444
1444
|
{
|
|
1445
|
-
data: [30,
|
|
1446
|
-
backgroundColor: "#
|
|
1445
|
+
data: [30, 100, 270, 140, 120, 240],
|
|
1446
|
+
backgroundColor: "#1565C0",
|
|
1447
1447
|
barThickness: 15
|
|
1448
1448
|
}
|
|
1449
1449
|
]
|
|
@@ -1457,11 +1457,22 @@ var BarChart = (props) => {
|
|
|
1457
1457
|
callback: function(value) {
|
|
1458
1458
|
return `${value}%`;
|
|
1459
1459
|
}
|
|
1460
|
+
},
|
|
1461
|
+
grid: {
|
|
1462
|
+
display: false
|
|
1460
1463
|
}
|
|
1461
1464
|
},
|
|
1462
1465
|
y: {
|
|
1463
1466
|
grid: {
|
|
1464
|
-
display:
|
|
1467
|
+
display: true
|
|
1468
|
+
},
|
|
1469
|
+
ticks: {
|
|
1470
|
+
min: 0,
|
|
1471
|
+
max: 400,
|
|
1472
|
+
stepSize: 200,
|
|
1473
|
+
callback: function(value) {
|
|
1474
|
+
return `${value}`;
|
|
1475
|
+
}
|
|
1465
1476
|
}
|
|
1466
1477
|
}
|
|
1467
1478
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apexcura/ui-components",
|
|
3
|
-
"version": "0.0.14-
|
|
3
|
+
"version": "0.0.14-Beta139",
|
|
4
4
|
"description": "Apex cura React components library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"apex cura",
|
|
@@ -52,6 +52,8 @@
|
|
|
52
52
|
"autoprefixer": "^10.4.19",
|
|
53
53
|
"chart.js": "^4.4.3",
|
|
54
54
|
"date-fns": "^3.6.0",
|
|
55
|
+
"devextreme": "^24.1.3",
|
|
56
|
+
"devextreme-react": "^24.1.3",
|
|
55
57
|
"esbuild": "^0.21.4",
|
|
56
58
|
"highcharts": "^11.4.3",
|
|
57
59
|
"highcharts-react-official": "^3.2.1",
|