sixseconds-modules 3.0.27 → 3.0.28
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 +5 -5
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +5 -5
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -314,7 +314,7 @@ const SVG = {
|
|
|
314
314
|
RightArrow: SvgRightArrow,
|
|
315
315
|
SmallLogo: SvgSmallLogoProd
|
|
316
316
|
};
|
|
317
|
-
const __vite_import_meta_env__ = { "BASE_URL": "/", "DEV": false, "MODE": "
|
|
317
|
+
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_ENV": "qa", "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" };
|
|
318
318
|
const commonValidation = {
|
|
319
319
|
envUrl: zod.z.string().url().min(1).regex(/[^\/]$/, { message: "Must not end with `/`" })
|
|
320
320
|
};
|
|
@@ -1266,19 +1266,19 @@ function UserProfile({ t: t2, userData, setInitialState, extraMenuOptions, route
|
|
|
1266
1266
|
/* @__PURE__ */ jsxRuntime.jsxs("ul", { className: "ssh-profile__menu", children: [
|
|
1267
1267
|
extraMenuOptions?.components,
|
|
1268
1268
|
extraMenuOptions?.isViewProfile && /* @__PURE__ */ jsxRuntime.jsxs("li", { className: "ssh-profile__item", onClick: () => setToggle("viewProfile"), children: [
|
|
1269
|
-
/* @__PURE__ */ jsxRuntime.jsx(SVG.CheckedPerson, { className: "ssh-profile__item-icon" }),
|
|
1269
|
+
/* @__PURE__ */ jsxRuntime.jsx(SVG.CheckedPerson, { className: "ssh-profile__item-icon", style: { opacity: 0.5 } }),
|
|
1270
1270
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "ssh-profile__item-label", children: t2("View Profile") })
|
|
1271
1271
|
] }),
|
|
1272
1272
|
extraMenuOptions?.isEditProfile && /* @__PURE__ */ jsxRuntime.jsxs("li", { className: "ssh-profile__item", onClick: goEdit, children: [
|
|
1273
|
-
/* @__PURE__ */ jsxRuntime.jsx(SVG.UserEdit, { className: "ssh-profile__item-icon" }),
|
|
1273
|
+
/* @__PURE__ */ jsxRuntime.jsx(SVG.UserEdit, { className: "ssh-profile__item-icon", style: { opacity: 0.5 } }),
|
|
1274
1274
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "ssh-profile__item-label", children: t2("Edit Profile") })
|
|
1275
1275
|
] }),
|
|
1276
1276
|
extraMenuOptions?.isChangePassword && /* @__PURE__ */ jsxRuntime.jsxs("li", { className: "ssh-profile__item", onClick: () => setToggle("changePassword"), children: [
|
|
1277
|
-
/* @__PURE__ */ jsxRuntime.jsx(SVG.CheckedPerson, { className: "ssh-profile__item-icon" }),
|
|
1277
|
+
/* @__PURE__ */ jsxRuntime.jsx(SVG.CheckedPerson, { className: "ssh-profile__item-icon", style: { opacity: 0.5 } }),
|
|
1278
1278
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "ssh-profile__item-label", children: t2("Change Password") })
|
|
1279
1279
|
] }),
|
|
1280
1280
|
/* @__PURE__ */ jsxRuntime.jsxs("li", { className: "ssh-profile__item ssh-profile__item--danger", onClick: () => setToggle("logout"), children: [
|
|
1281
|
-
/* @__PURE__ */ jsxRuntime.jsx(SVG.Logout, { className: "ssh-profile__item-icon" }),
|
|
1281
|
+
/* @__PURE__ */ jsxRuntime.jsx(SVG.Logout, { className: "ssh-profile__item-icon", style: { opacity: 0.5 } }),
|
|
1282
1282
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "ssh-profile__item-label", children: t2("Logout") })
|
|
1283
1283
|
] })
|
|
1284
1284
|
] })
|