@jingx/lottery-components-react-jsx 1.0.35 → 1.0.37
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 +12 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +12 -2
- package/dist/index.esm.js.map +1 -1
- package/package.json +2 -2
- package/readme.md +2 -2
package/dist/index.cjs.js
CHANGED
|
@@ -32157,7 +32157,10 @@ const RemarkConfigToggle = ({ label, onChange }) => {
|
|
|
32157
32157
|
}
|
|
32158
32158
|
};
|
|
32159
32159
|
return /* @__PURE__ */ jsxRuntimeExports.jsx(ScopeHost, { children: /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "d-flex align-items-center", children: [
|
|
32160
|
-
/* @__PURE__ */ jsxRuntimeExports.jsxs("span", {
|
|
32160
|
+
/* @__PURE__ */ jsxRuntimeExports.jsxs("span", { style: {
|
|
32161
|
+
color: "#686c71",
|
|
32162
|
+
fontSize: "14px"
|
|
32163
|
+
}, className: "mr-3", children: [
|
|
32161
32164
|
" ",
|
|
32162
32165
|
label
|
|
32163
32166
|
] }),
|
|
@@ -32177,6 +32180,13 @@ const RemarkConfigToggle = ({ label, onChange }) => {
|
|
|
32177
32180
|
] }) });
|
|
32178
32181
|
};
|
|
32179
32182
|
|
|
32183
|
+
const clickRemarkBtn = () => {
|
|
32184
|
+
const remarkBtn = document.getElementById("remark-btn");
|
|
32185
|
+
if (remarkBtn) {
|
|
32186
|
+
remarkBtn.click();
|
|
32187
|
+
}
|
|
32188
|
+
};
|
|
32189
|
+
|
|
32180
32190
|
var __defProp$a = Object.defineProperty;
|
|
32181
32191
|
var __defProps$3 = Object.defineProperties;
|
|
32182
32192
|
var __getOwnPropDescs$3 = Object.getOwnPropertyDescriptors;
|
|
@@ -60199,6 +60209,7 @@ exports.THLabel = THLabel;
|
|
|
60199
60209
|
exports.Ticket = Ticket;
|
|
60200
60210
|
exports.TicketModal = TicketModal;
|
|
60201
60211
|
exports.TransferTicket = TransferTicket;
|
|
60212
|
+
exports.clickRemarkBtn = clickRemarkBtn;
|
|
60202
60213
|
exports.getS3ImgPrint = getS3ImgPrint;
|
|
60203
60214
|
exports.getStoredIsRemark = getStoredIsRemark;
|
|
60204
60215
|
exports.isVNType = isVNType;
|