@apexcura/ui-components 0.0.14-Beta86 → 0.0.14-Beta87
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 +3 -1
- package/dist/index.mjs +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1086,6 +1086,8 @@ var OtpElement = (props) => {
|
|
|
1086
1086
|
|
|
1087
1087
|
// src/Components/Donut.tsx
|
|
1088
1088
|
var import_react31 = __toESM(require("react"));
|
|
1089
|
+
var import_highcharts = __toESM(require("highcharts"));
|
|
1090
|
+
var import_highcharts_react_official = __toESM(require("highcharts-react-official"));
|
|
1089
1091
|
var Donut = (props) => {
|
|
1090
1092
|
console.log(props);
|
|
1091
1093
|
const chartOptions = {
|
|
@@ -1130,7 +1132,7 @@ var Donut = (props) => {
|
|
|
1130
1132
|
]
|
|
1131
1133
|
};
|
|
1132
1134
|
console.log(chartOptions);
|
|
1133
|
-
return /* @__PURE__ */ import_react31.default.createElement("
|
|
1135
|
+
return /* @__PURE__ */ import_react31.default.createElement("div", null, /* @__PURE__ */ import_react31.default.createElement(import_highcharts_react_official.default, { highcharts: import_highcharts.default, options: chartOptions }));
|
|
1134
1136
|
};
|
|
1135
1137
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1136
1138
|
0 && (module.exports = {
|
package/dist/index.mjs
CHANGED
|
@@ -1025,6 +1025,8 @@ var OtpElement = (props) => {
|
|
|
1025
1025
|
|
|
1026
1026
|
// src/Components/Donut.tsx
|
|
1027
1027
|
import React31 from "react";
|
|
1028
|
+
import Highcharts from "highcharts";
|
|
1029
|
+
import HighchartsReact from "highcharts-react-official";
|
|
1028
1030
|
var Donut = (props) => {
|
|
1029
1031
|
console.log(props);
|
|
1030
1032
|
const chartOptions = {
|
|
@@ -1069,7 +1071,7 @@ var Donut = (props) => {
|
|
|
1069
1071
|
]
|
|
1070
1072
|
};
|
|
1071
1073
|
console.log(chartOptions);
|
|
1072
|
-
return /* @__PURE__ */ React31.createElement("
|
|
1074
|
+
return /* @__PURE__ */ React31.createElement("div", null, /* @__PURE__ */ React31.createElement(HighchartsReact, { highcharts: Highcharts, options: chartOptions }));
|
|
1073
1075
|
};
|
|
1074
1076
|
export {
|
|
1075
1077
|
AddMoreTable,
|