sixseconds-modules 1.6.87 → 1.6.88
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 +7 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +7 -0
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -9987,6 +9987,13 @@ function Language({
|
|
|
9987
9987
|
setInitialState,
|
|
9988
9988
|
t: t2
|
|
9989
9989
|
}) {
|
|
9990
|
+
React.useEffect(() => {
|
|
9991
|
+
if (typeof window !== "undefined") {
|
|
9992
|
+
document.querySelectorAll('img[data-src][data-cookiecategory="essential"]').forEach((img) => {
|
|
9993
|
+
img.src = img.getAttribute("data-src");
|
|
9994
|
+
});
|
|
9995
|
+
}
|
|
9996
|
+
}, [typeof window !== "undefined"]);
|
|
9990
9997
|
return /* @__PURE__ */ jsxRuntime.jsx(material.ClickAwayListener, { onClickAway: () => handleCloseUtil(setInitialState), children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
9991
9998
|
material.Box,
|
|
9992
9999
|
{
|