@apexcura/ui-components 0.0.14-Beta88 → 0.0.14-Beta89
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 = __toESM(require("highcharts"));
|
|
1089
1090
|
var import_highcharts_react_official = __toESM(require("highcharts-react-official"));
|
|
1090
1091
|
var Donut = (props) => {
|
|
1091
1092
|
console.log(props);
|
|
@@ -1131,7 +1132,7 @@ var Donut = (props) => {
|
|
|
1131
1132
|
]
|
|
1132
1133
|
};
|
|
1133
1134
|
console.log(chartOptions);
|
|
1134
|
-
return /* @__PURE__ */ import_react31.default.createElement("div", null, /* @__PURE__ */ import_react31.default.createElement(import_highcharts_react_official.default,
|
|
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 }));
|
|
1135
1136
|
};
|
|
1136
1137
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1137
1138
|
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 Highcharts from "highcharts";
|
|
1028
1029
|
import HighchartsReact from "highcharts-react-official";
|
|
1029
1030
|
var Donut = (props) => {
|
|
1030
1031
|
console.log(props);
|
|
@@ -1070,7 +1071,7 @@ var Donut = (props) => {
|
|
|
1070
1071
|
]
|
|
1071
1072
|
};
|
|
1072
1073
|
console.log(chartOptions);
|
|
1073
|
-
return /* @__PURE__ */ React31.createElement("div", null, /* @__PURE__ */ React31.createElement(HighchartsReact,
|
|
1074
|
+
return /* @__PURE__ */ React31.createElement("div", null, /* @__PURE__ */ React31.createElement(HighchartsReact, { highcharts: Highcharts, options: chartOptions }));
|
|
1074
1075
|
};
|
|
1075
1076
|
export {
|
|
1076
1077
|
AddMoreTable,
|