sixseconds-modules 1.6.87 → 1.6.89
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 +8 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +8 -1
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -2659,7 +2659,7 @@ function createEnv(opts) {
|
|
|
2659
2659
|
}
|
|
2660
2660
|
return runtimeEnv;
|
|
2661
2661
|
}
|
|
2662
|
-
const __vite_import_meta_env__ = { "BASE_URL": "/", "DEV": false, "MODE": "
|
|
2662
|
+
const __vite_import_meta_env__ = { "BASE_URL": "/", "DEV": false, "MODE": "qa", "PROD": true, "SSR": false, "VITE_MODULES_CARDS_ADMIN_FRONTEND_BASE_URL": "https://qa-sso.6seconds.org", "VITE_MODULES_CARDS_HOME_FRONTEND_BASE_URL": "https://qa-sso.6seconds.org", "VITE_MODULES_CERT_FRONTEND_BASE_URL": "https://qa-sso.6seconds.org", "VITE_MODULES_EVENTS_FRONTEND_BASE_URL": "https://qa-sso.6seconds.org", "VITE_MODULES_SSO_BACKEND_BASE_URL": "https://qa-ssoapi.6seconds.org", "VITE_MODULES_SSO_FRONTEND_BASE_URL": "https://qa-sso.6seconds.org", "VITE_MODULES_TOOLS_FRONTEND_BASE_URL": "https://qa-sso.6seconds.org" };
|
|
2663
2663
|
const env = createEnv({
|
|
2664
2664
|
runtimeEnv: __vite_import_meta_env__
|
|
2665
2665
|
});
|
|
@@ -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
|
{
|