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