@apexcura/ui-components 0.0.14-Beta131 → 0.0.14-Beta132
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.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +3 -5
- package/dist/index.mjs +3 -5
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1241,7 +1241,7 @@ var SemiCircleDonut = (props) => {
|
|
|
1241
1241
|
const centerX = left + width / 2;
|
|
1242
1242
|
const centerY = top + height / 1.5;
|
|
1243
1243
|
ctx.save();
|
|
1244
|
-
ctx.font = "
|
|
1244
|
+
ctx.font = "16px Arial";
|
|
1245
1245
|
ctx.fillStyle = "black";
|
|
1246
1246
|
ctx.textAlign = "center";
|
|
1247
1247
|
ctx.textBaseline = "middle";
|
|
@@ -1364,8 +1364,7 @@ var LineChart = (props) => {
|
|
|
1364
1364
|
}
|
|
1365
1365
|
},
|
|
1366
1366
|
grid: {
|
|
1367
|
-
display:
|
|
1368
|
-
// Display y-axis grid lines
|
|
1367
|
+
display: false
|
|
1369
1368
|
}
|
|
1370
1369
|
}
|
|
1371
1370
|
}
|
|
@@ -1436,8 +1435,7 @@ var DoubleBarChart = (props) => {
|
|
|
1436
1435
|
}
|
|
1437
1436
|
},
|
|
1438
1437
|
grid: {
|
|
1439
|
-
display:
|
|
1440
|
-
// Remove y-axis grid lines
|
|
1438
|
+
display: false
|
|
1441
1439
|
}
|
|
1442
1440
|
}
|
|
1443
1441
|
},
|
package/dist/index.mjs
CHANGED
|
@@ -1187,7 +1187,7 @@ var SemiCircleDonut = (props) => {
|
|
|
1187
1187
|
const centerX = left + width / 2;
|
|
1188
1188
|
const centerY = top + height / 1.5;
|
|
1189
1189
|
ctx.save();
|
|
1190
|
-
ctx.font = "
|
|
1190
|
+
ctx.font = "16px Arial";
|
|
1191
1191
|
ctx.fillStyle = "black";
|
|
1192
1192
|
ctx.textAlign = "center";
|
|
1193
1193
|
ctx.textBaseline = "middle";
|
|
@@ -1316,8 +1316,7 @@ var LineChart = (props) => {
|
|
|
1316
1316
|
}
|
|
1317
1317
|
},
|
|
1318
1318
|
grid: {
|
|
1319
|
-
display:
|
|
1320
|
-
// Display y-axis grid lines
|
|
1319
|
+
display: false
|
|
1321
1320
|
}
|
|
1322
1321
|
}
|
|
1323
1322
|
}
|
|
@@ -1388,8 +1387,7 @@ var DoubleBarChart = (props) => {
|
|
|
1388
1387
|
}
|
|
1389
1388
|
},
|
|
1390
1389
|
grid: {
|
|
1391
|
-
display:
|
|
1392
|
-
// Remove y-axis grid lines
|
|
1390
|
+
display: false
|
|
1393
1391
|
}
|
|
1394
1392
|
}
|
|
1395
1393
|
},
|