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.es.js CHANGED
@@ -296,7 +296,7 @@ const SVG = {
296
296
  RightArrow: SvgRightArrow,
297
297
  SmallLogo: SvgSmallLogoProd
298
298
  };
299
- const __vite_import_meta_env__ = { "BASE_URL": "/", "DEV": false, "MODE": "production", "PROD": true, "SSR": false, "VITE_MODULES_CARDS_ADMIN_FRONTEND_BASE_URL": "https://admin-cards.6seconds.org", "VITE_MODULES_CARDS_HOME_FRONTEND_BASE_URL": "https://cards.6seconds.org", "VITE_MODULES_CERT_FRONTEND_BASE_URL": "https://cert.6seconds.org", "VITE_MODULES_ENV": "prod", "VITE_MODULES_EVENTS_FRONTEND_BASE_URL": "https://events.6seconds.org", "VITE_MODULES_SSO_BACKEND_BASE_URL": "https://ssoapi.6seconds.org", "VITE_MODULES_SSO_FRONTEND_BASE_URL": "https://sso.6seconds.org", "VITE_MODULES_TOOLS_FRONTEND_BASE_URL": "https://newtools.6seconds.org" };
299
+ 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" };
300
300
  const commonValidation = {
301
301
  envUrl: z.string().url().min(1).regex(/[^\/]$/, { message: "Must not end with `/`" })
302
302
  };
@@ -1248,19 +1248,19 @@ function UserProfile({ t: t2, userData, setInitialState, extraMenuOptions, route
1248
1248
  /* @__PURE__ */ jsxs("ul", { className: "ssh-profile__menu", children: [
1249
1249
  extraMenuOptions?.components,
1250
1250
  extraMenuOptions?.isViewProfile && /* @__PURE__ */ jsxs("li", { className: "ssh-profile__item", onClick: () => setToggle("viewProfile"), children: [
1251
- /* @__PURE__ */ jsx(SVG.CheckedPerson, { className: "ssh-profile__item-icon" }),
1251
+ /* @__PURE__ */ jsx(SVG.CheckedPerson, { className: "ssh-profile__item-icon", style: { opacity: 0.5 } }),
1252
1252
  /* @__PURE__ */ jsx("span", { className: "ssh-profile__item-label", children: t2("View Profile") })
1253
1253
  ] }),
1254
1254
  extraMenuOptions?.isEditProfile && /* @__PURE__ */ jsxs("li", { className: "ssh-profile__item", onClick: goEdit, children: [
1255
- /* @__PURE__ */ jsx(SVG.UserEdit, { className: "ssh-profile__item-icon" }),
1255
+ /* @__PURE__ */ jsx(SVG.UserEdit, { className: "ssh-profile__item-icon", style: { opacity: 0.5 } }),
1256
1256
  /* @__PURE__ */ jsx("span", { className: "ssh-profile__item-label", children: t2("Edit Profile") })
1257
1257
  ] }),
1258
1258
  extraMenuOptions?.isChangePassword && /* @__PURE__ */ jsxs("li", { className: "ssh-profile__item", onClick: () => setToggle("changePassword"), children: [
1259
- /* @__PURE__ */ jsx(SVG.CheckedPerson, { className: "ssh-profile__item-icon" }),
1259
+ /* @__PURE__ */ jsx(SVG.CheckedPerson, { className: "ssh-profile__item-icon", style: { opacity: 0.5 } }),
1260
1260
  /* @__PURE__ */ jsx("span", { className: "ssh-profile__item-label", children: t2("Change Password") })
1261
1261
  ] }),
1262
1262
  /* @__PURE__ */ jsxs("li", { className: "ssh-profile__item ssh-profile__item--danger", onClick: () => setToggle("logout"), children: [
1263
- /* @__PURE__ */ jsx(SVG.Logout, { className: "ssh-profile__item-icon" }),
1263
+ /* @__PURE__ */ jsx(SVG.Logout, { className: "ssh-profile__item-icon", style: { opacity: 0.5 } }),
1264
1264
  /* @__PURE__ */ jsx("span", { className: "ssh-profile__item-label", children: t2("Logout") })
1265
1265
  ] })
1266
1266
  ] })