optimized-react-component-library-xyz123 0.1.140 → 0.1.142

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 CHANGED
@@ -2420,14 +2420,11 @@ var CONTENT = {
2420
2420
  var Modal = ({ showModal: isOpen, activatedLanguage = "" }) => {
2421
2421
  const currentContent = activatedLanguage === "en" ? CONTENT.en : CONTENT.sv;
2422
2422
  if (!isOpen) return null;
2423
- return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "pts-modal-overlay", children: [
2424
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { "aria-hidden": true, className: "pts-modal-content", children: [
2425
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h1", { children: currentContent.heading }),
2426
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { children: currentContent.message }),
2427
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "pts-spinner-border" })
2428
- ] }),
2429
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { "aria-live": "assertive", className: "visually-hidden", children: "Skickar in... V\xE4nligen v\xE4nta." })
2430
- ] });
2423
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "pts-modal-overlay", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { "aria-hidden": true, className: "pts-modal-content", children: [
2424
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h1", { children: currentContent.heading }),
2425
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { children: currentContent.message }),
2426
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "pts-spinner-border" })
2427
+ ] }) });
2431
2428
  };
2432
2429
  var ModalStandard_default = Modal;
2433
2430