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.mjs CHANGED
@@ -2343,14 +2343,11 @@ var CONTENT = {
2343
2343
  var Modal = ({ showModal: isOpen, activatedLanguage = "" }) => {
2344
2344
  const currentContent = activatedLanguage === "en" ? CONTENT.en : CONTENT.sv;
2345
2345
  if (!isOpen) return null;
2346
- return /* @__PURE__ */ jsxs15("div", { className: "pts-modal-overlay", children: [
2347
- /* @__PURE__ */ jsxs15("div", { "aria-hidden": true, className: "pts-modal-content", children: [
2348
- /* @__PURE__ */ jsx17("h1", { children: currentContent.heading }),
2349
- /* @__PURE__ */ jsx17("p", { children: currentContent.message }),
2350
- /* @__PURE__ */ jsx17("div", { className: "pts-spinner-border" })
2351
- ] }),
2352
- /* @__PURE__ */ jsx17("span", { "aria-live": "assertive", className: "visually-hidden", children: "Skickar in... V\xE4nligen v\xE4nta." })
2353
- ] });
2346
+ return /* @__PURE__ */ jsx17("div", { className: "pts-modal-overlay", children: /* @__PURE__ */ jsxs15("div", { "aria-hidden": true, className: "pts-modal-content", children: [
2347
+ /* @__PURE__ */ jsx17("h1", { children: currentContent.heading }),
2348
+ /* @__PURE__ */ jsx17("p", { children: currentContent.message }),
2349
+ /* @__PURE__ */ jsx17("div", { className: "pts-spinner-border" })
2350
+ ] }) });
2354
2351
  };
2355
2352
  var ModalStandard_default = Modal;
2356
2353