@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.esm.js
CHANGED
|
@@ -32160,8 +32160,8 @@ const RemarkConfigToggle = ({ label, onChange }) => {
|
|
|
32160
32160
|
] }) });
|
|
32161
32161
|
};
|
|
32162
32162
|
|
|
32163
|
-
const clickRemarkBtn = () => {
|
|
32164
|
-
const remarkBtn = document.getElementById("remark-btn");
|
|
32163
|
+
const clickRemarkBtn = (id) => {
|
|
32164
|
+
const remarkBtn = document.getElementById("remark-btn-" + id);
|
|
32165
32165
|
if (remarkBtn) {
|
|
32166
32166
|
remarkBtn.click();
|
|
32167
32167
|
}
|
|
@@ -60050,6 +60050,7 @@ function MoreMenu(_a) {
|
|
|
60050
60050
|
const resolvedToggle = resolveDropdownButton();
|
|
60051
60051
|
return /* @__PURE__ */ jsxRuntimeExports.jsx(DropdownToggle, __spreadProps(__spreadValues({}, resolvedToggle.props), { children: resolvedToggle.children }));
|
|
60052
60052
|
};
|
|
60053
|
+
console.log(ticket);
|
|
60053
60054
|
return /* @__PURE__ */ jsxRuntimeExports.jsxs(jsxRuntimeExports.Fragment, { children: [
|
|
60054
60055
|
/* @__PURE__ */ jsxRuntimeExports.jsx(ScopeHost, { children: (container) => container && /* @__PURE__ */ jsxRuntimeExports.jsxs(UncontrolledDropdown, __spreadProps(__spreadValues({ className: "drp-user font-Hanuman" }, props), { children: [
|
|
60055
60056
|
renderDropdownToggle(),
|
|
@@ -60073,7 +60074,7 @@ function MoreMenu(_a) {
|
|
|
60073
60074
|
!isSystem && /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
60074
60075
|
DropdownItem,
|
|
60075
60076
|
{
|
|
60076
|
-
id:
|
|
60077
|
+
id: `remark-btn-${ticket == null ? void 0 : ticket.ticketNumber}`,
|
|
60077
60078
|
type: "button",
|
|
60078
60079
|
onClick: () => openModal("remark"),
|
|
60079
60080
|
disabled: !object,
|