@jingx/lottery-components-react-jsx 1.0.37 → 1.0.38
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.cjs.js +4 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +4 -3
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -32180,8 +32180,8 @@ const RemarkConfigToggle = ({ label, onChange }) => {
|
|
|
32180
32180
|
] }) });
|
|
32181
32181
|
};
|
|
32182
32182
|
|
|
32183
|
-
const clickRemarkBtn = () => {
|
|
32184
|
-
const remarkBtn = document.getElementById("remark-btn");
|
|
32183
|
+
const clickRemarkBtn = (id) => {
|
|
32184
|
+
const remarkBtn = document.getElementById("remark-btn-" + id);
|
|
32185
32185
|
if (remarkBtn) {
|
|
32186
32186
|
remarkBtn.click();
|
|
32187
32187
|
}
|
|
@@ -60070,6 +60070,7 @@ function MoreMenu(_a) {
|
|
|
60070
60070
|
const resolvedToggle = resolveDropdownButton();
|
|
60071
60071
|
return /* @__PURE__ */ jsxRuntimeExports.jsx(DropdownToggle, __spreadProps(__spreadValues({}, resolvedToggle.props), { children: resolvedToggle.children }));
|
|
60072
60072
|
};
|
|
60073
|
+
console.log(ticket);
|
|
60073
60074
|
return /* @__PURE__ */ jsxRuntimeExports.jsxs(jsxRuntimeExports.Fragment, { children: [
|
|
60074
60075
|
/* @__PURE__ */ jsxRuntimeExports.jsx(ScopeHost, { children: (container) => container && /* @__PURE__ */ jsxRuntimeExports.jsxs(UncontrolledDropdown, __spreadProps(__spreadValues({ className: "drp-user font-Hanuman" }, props), { children: [
|
|
60075
60076
|
renderDropdownToggle(),
|
|
@@ -60093,7 +60094,7 @@ function MoreMenu(_a) {
|
|
|
60093
60094
|
!isSystem && /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
60094
60095
|
DropdownItem,
|
|
60095
60096
|
{
|
|
60096
|
-
id:
|
|
60097
|
+
id: `remark-btn-${ticket == null ? void 0 : ticket.ticketNumber}`,
|
|
60097
60098
|
type: "button",
|
|
60098
60099
|
onClick: () => openModal("remark"),
|
|
60099
60100
|
disabled: !object,
|