@apexcura/ui-components 0.0.14-Beta72 → 0.0.14-Beta73
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 -0
- package/dist/index.mjs +2 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1088,6 +1088,7 @@ var import_react31 = __toESM(require("react"));
|
|
|
1088
1088
|
var import_highcharts = __toESM(require("highcharts"));
|
|
1089
1089
|
var import_highcharts_react_official = __toESM(require("highcharts-react-official"));
|
|
1090
1090
|
var Donut = (props) => {
|
|
1091
|
+
console.log(props);
|
|
1091
1092
|
const total = 100;
|
|
1092
1093
|
const girls = 20;
|
|
1093
1094
|
const girlsPercentage = girls / total * 100;
|
|
@@ -1147,6 +1148,7 @@ var Donut = (props) => {
|
|
|
1147
1148
|
}
|
|
1148
1149
|
}
|
|
1149
1150
|
};
|
|
1151
|
+
console.log(chartOptions.series);
|
|
1150
1152
|
return /* @__PURE__ */ import_react31.default.createElement(
|
|
1151
1153
|
import_highcharts_react_official.default,
|
|
1152
1154
|
{
|
package/dist/index.mjs
CHANGED
|
@@ -1027,6 +1027,7 @@ import React31 from "react";
|
|
|
1027
1027
|
import Highcharts from "highcharts";
|
|
1028
1028
|
import HighchartsReact from "highcharts-react-official";
|
|
1029
1029
|
var Donut = (props) => {
|
|
1030
|
+
console.log(props);
|
|
1030
1031
|
const total = 100;
|
|
1031
1032
|
const girls = 20;
|
|
1032
1033
|
const girlsPercentage = girls / total * 100;
|
|
@@ -1086,6 +1087,7 @@ var Donut = (props) => {
|
|
|
1086
1087
|
}
|
|
1087
1088
|
}
|
|
1088
1089
|
};
|
|
1090
|
+
console.log(chartOptions.series);
|
|
1089
1091
|
return /* @__PURE__ */ React31.createElement(
|
|
1090
1092
|
HighchartsReact,
|
|
1091
1093
|
{
|