@apexcura/ui-components 0.0.14-Beta267 → 0.0.14-Beta268
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 +1 -4
- package/dist/index.mjs +1 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1616,10 +1616,7 @@ var BarChart = (props) => {
|
|
|
1616
1616
|
// src/Components/DivContainer.tsx
|
|
1617
1617
|
var import_react36 = __toESM(require("react"));
|
|
1618
1618
|
var DivContainer = (props) => {
|
|
1619
|
-
|
|
1620
|
-
props.onChange && props.onChange(props);
|
|
1621
|
-
};
|
|
1622
|
-
return /* @__PURE__ */ import_react36.default.createElement("div", { className: props.className, onChange: handleChange }, props.label);
|
|
1619
|
+
return /* @__PURE__ */ import_react36.default.createElement("div", { className: props.className, onClick: props.onClick }, props.label);
|
|
1623
1620
|
};
|
|
1624
1621
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1625
1622
|
0 && (module.exports = {
|
package/dist/index.mjs
CHANGED
|
@@ -1573,10 +1573,7 @@ var BarChart = (props) => {
|
|
|
1573
1573
|
// src/Components/DivContainer.tsx
|
|
1574
1574
|
import React36 from "react";
|
|
1575
1575
|
var DivContainer = (props) => {
|
|
1576
|
-
|
|
1577
|
-
props.onChange && props.onChange(props);
|
|
1578
|
-
};
|
|
1579
|
-
return /* @__PURE__ */ React36.createElement("div", { className: props.className, onChange: handleChange }, props.label);
|
|
1576
|
+
return /* @__PURE__ */ React36.createElement("div", { className: props.className, onClick: props.onClick }, props.label);
|
|
1580
1577
|
};
|
|
1581
1578
|
export {
|
|
1582
1579
|
AddMoreTable,
|