@apexcura/ui-components 0.0.15-Beta6 → 0.0.15-Beta7
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 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -410,7 +410,7 @@ var ButtonElement = (props) => {
|
|
|
410
410
|
}
|
|
411
411
|
svgElement.setAttribute(
|
|
412
412
|
"class",
|
|
413
|
-
`${props.
|
|
413
|
+
`${props.className ? props.className : ""}`
|
|
414
414
|
);
|
|
415
415
|
setSvgContent(tempDiv.innerHTML);
|
|
416
416
|
setOriginalSvgContent(tempDiv.innerHTML);
|
|
@@ -1137,7 +1137,7 @@ var Donut = (props) => {
|
|
|
1137
1137
|
}
|
|
1138
1138
|
]
|
|
1139
1139
|
};
|
|
1140
|
-
return /* @__PURE__ */ import_react31.default.createElement(import_react31.default.Fragment, null, /* @__PURE__ */ import_react31.default.createElement(HighchartsChart, {
|
|
1140
|
+
return /* @__PURE__ */ import_react31.default.createElement(import_react31.default.Fragment, null, /* @__PURE__ */ import_react31.default.createElement(HighchartsChart, { options: chartOptions }));
|
|
1141
1141
|
};
|
|
1142
1142
|
var Donut_default = Donut;
|
|
1143
1143
|
// Annotate the CommonJS export names for ESM import in node:
|
package/dist/index.mjs
CHANGED
|
@@ -349,7 +349,7 @@ var ButtonElement = (props) => {
|
|
|
349
349
|
}
|
|
350
350
|
svgElement.setAttribute(
|
|
351
351
|
"class",
|
|
352
|
-
`${props.
|
|
352
|
+
`${props.className ? props.className : ""}`
|
|
353
353
|
);
|
|
354
354
|
setSvgContent(tempDiv.innerHTML);
|
|
355
355
|
setOriginalSvgContent(tempDiv.innerHTML);
|
|
@@ -1076,7 +1076,7 @@ var Donut = (props) => {
|
|
|
1076
1076
|
}
|
|
1077
1077
|
]
|
|
1078
1078
|
};
|
|
1079
|
-
return /* @__PURE__ */ React31.createElement(React31.Fragment, null, /* @__PURE__ */ React31.createElement(HighchartsChart, {
|
|
1079
|
+
return /* @__PURE__ */ React31.createElement(React31.Fragment, null, /* @__PURE__ */ React31.createElement(HighchartsChart, { options: chartOptions }));
|
|
1080
1080
|
};
|
|
1081
1081
|
var Donut_default = Donut;
|
|
1082
1082
|
export {
|