@apexcura/ui-components 0.0.14-Beta112 → 0.0.14-Beta113
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 +4 -1
- package/dist/index.mjs +4 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1134,7 +1134,10 @@ var DonutGraph = () => {
|
|
|
1134
1134
|
},
|
|
1135
1135
|
series: seriesData
|
|
1136
1136
|
};
|
|
1137
|
-
|
|
1137
|
+
if (!import_highcharts_react_official.default || Object.keys(import_highcharts_react_official.default).length === 0) {
|
|
1138
|
+
return /* @__PURE__ */ import_react31.default.createElement("div", null, "Error: HighchartsReact is not loaded properly.");
|
|
1139
|
+
}
|
|
1140
|
+
return /* @__PURE__ */ import_react31.default.createElement("div", null, /* @__PURE__ */ import_react31.default.createElement(
|
|
1138
1141
|
import_highcharts_react_official.default,
|
|
1139
1142
|
{
|
|
1140
1143
|
highcharts: import_highcharts.default,
|
package/dist/index.mjs
CHANGED
|
@@ -1073,7 +1073,10 @@ var DonutGraph = () => {
|
|
|
1073
1073
|
},
|
|
1074
1074
|
series: seriesData
|
|
1075
1075
|
};
|
|
1076
|
-
|
|
1076
|
+
if (!HighchartsReact || Object.keys(HighchartsReact).length === 0) {
|
|
1077
|
+
return /* @__PURE__ */ React31.createElement("div", null, "Error: HighchartsReact is not loaded properly.");
|
|
1078
|
+
}
|
|
1079
|
+
return /* @__PURE__ */ React31.createElement("div", null, /* @__PURE__ */ React31.createElement(
|
|
1077
1080
|
HighchartsReact,
|
|
1078
1081
|
{
|
|
1079
1082
|
highcharts: Highcharts,
|