@apexcura/ui-components 0.0.14-Beta131 → 0.0.14-Beta133
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 +5 -7
- package/dist/index.mjs +5 -7
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1241,13 +1241,13 @@ 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";
|
|
1248
|
-
ctx.fillText(
|
|
1248
|
+
ctx.fillText(props.fillText1, centerX, centerY - 10);
|
|
1249
1249
|
ctx.font = "12px Arial";
|
|
1250
|
-
ctx.fillText(
|
|
1250
|
+
ctx.fillText(props.fillText2, centerX, centerY + 20);
|
|
1251
1251
|
ctx.restore();
|
|
1252
1252
|
}
|
|
1253
1253
|
};
|
|
@@ -1352,7 +1352,7 @@ var LineChart = (props) => {
|
|
|
1352
1352
|
scales: {
|
|
1353
1353
|
x: {
|
|
1354
1354
|
grid: {
|
|
1355
|
-
display:
|
|
1355
|
+
display: false
|
|
1356
1356
|
}
|
|
1357
1357
|
},
|
|
1358
1358
|
y: {
|
|
@@ -1365,7 +1365,6 @@ var LineChart = (props) => {
|
|
|
1365
1365
|
},
|
|
1366
1366
|
grid: {
|
|
1367
1367
|
display: true
|
|
1368
|
-
// Display y-axis grid lines
|
|
1369
1368
|
}
|
|
1370
1369
|
}
|
|
1371
1370
|
}
|
|
@@ -1423,7 +1422,7 @@ var DoubleBarChart = (props) => {
|
|
|
1423
1422
|
scales: {
|
|
1424
1423
|
x: {
|
|
1425
1424
|
grid: {
|
|
1426
|
-
display:
|
|
1425
|
+
display: false
|
|
1427
1426
|
// Display x-axis grid lines
|
|
1428
1427
|
}
|
|
1429
1428
|
},
|
|
@@ -1437,7 +1436,6 @@ var DoubleBarChart = (props) => {
|
|
|
1437
1436
|
},
|
|
1438
1437
|
grid: {
|
|
1439
1438
|
display: true
|
|
1440
|
-
// Remove y-axis grid lines
|
|
1441
1439
|
}
|
|
1442
1440
|
}
|
|
1443
1441
|
},
|
package/dist/index.mjs
CHANGED
|
@@ -1187,13 +1187,13 @@ 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";
|
|
1194
|
-
ctx.fillText(
|
|
1194
|
+
ctx.fillText(props.fillText1, centerX, centerY - 10);
|
|
1195
1195
|
ctx.font = "12px Arial";
|
|
1196
|
-
ctx.fillText(
|
|
1196
|
+
ctx.fillText(props.fillText2, centerX, centerY + 20);
|
|
1197
1197
|
ctx.restore();
|
|
1198
1198
|
}
|
|
1199
1199
|
};
|
|
@@ -1304,7 +1304,7 @@ var LineChart = (props) => {
|
|
|
1304
1304
|
scales: {
|
|
1305
1305
|
x: {
|
|
1306
1306
|
grid: {
|
|
1307
|
-
display:
|
|
1307
|
+
display: false
|
|
1308
1308
|
}
|
|
1309
1309
|
},
|
|
1310
1310
|
y: {
|
|
@@ -1317,7 +1317,6 @@ var LineChart = (props) => {
|
|
|
1317
1317
|
},
|
|
1318
1318
|
grid: {
|
|
1319
1319
|
display: true
|
|
1320
|
-
// Display y-axis grid lines
|
|
1321
1320
|
}
|
|
1322
1321
|
}
|
|
1323
1322
|
}
|
|
@@ -1375,7 +1374,7 @@ var DoubleBarChart = (props) => {
|
|
|
1375
1374
|
scales: {
|
|
1376
1375
|
x: {
|
|
1377
1376
|
grid: {
|
|
1378
|
-
display:
|
|
1377
|
+
display: false
|
|
1379
1378
|
// Display x-axis grid lines
|
|
1380
1379
|
}
|
|
1381
1380
|
},
|
|
@@ -1389,7 +1388,6 @@ var DoubleBarChart = (props) => {
|
|
|
1389
1388
|
},
|
|
1390
1389
|
grid: {
|
|
1391
1390
|
display: true
|
|
1392
|
-
// Remove y-axis grid lines
|
|
1393
1391
|
}
|
|
1394
1392
|
}
|
|
1395
1393
|
},
|