sixseconds-modules 1.4.4 → 1.4.6
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 +2 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +2 -2
- package/dist/index.es.js.map +1 -1
- package/package.json +4 -3
package/dist/index.es.js
CHANGED
|
@@ -130,7 +130,7 @@ function createEnv(opts) {
|
|
|
130
130
|
}
|
|
131
131
|
return runtimeEnv;
|
|
132
132
|
}
|
|
133
|
-
const __vite_import_meta_env__ = { "BASE_URL": "/", "DEV": false, "MODE": "
|
|
133
|
+
const __vite_import_meta_env__ = { "BASE_URL": "/", "DEV": false, "MODE": "development", "PROD": true, "SSR": false, "VITE_MODULES_CARDS_ADMIN_FRONTEND_BASE_URL": "https://dev-sso.6seconds.org", "VITE_MODULES_CARDS_HOME_FRONTEND_BASE_URL": "https://dev-sso.6seconds.org", "VITE_MODULES_CERT_FRONTEND_BASE_URL": "https://dev-sso.6seconds.org", "VITE_MODULES_EVENTS_FRONTEND_BASE_URL": "https://dev-sso.6seconds.org", "VITE_MODULES_SSO_BACKEND_BASE_URL": "https://dev-ssoapi.6seconds.org", "VITE_MODULES_SSO_FRONTEND_BASE_URL": "https://dev-sso.6seconds.org", "VITE_MODULES_TOOLS_FRONTEND_BASE_URL": "https://dev-sso.6seconds.org" };
|
|
134
134
|
const env = createEnv({
|
|
135
135
|
runtimeEnv: __vite_import_meta_env__
|
|
136
136
|
});
|
|
@@ -4288,7 +4288,7 @@ const UserProfile = ({ userData, setInitialState, extraMenuOptions }) => {
|
|
|
4288
4288
|
),
|
|
4289
4289
|
state.toggles.userProfile && /* @__PURE__ */ jsx(ClickAwayListener, { onClickAway: () => handleCloseUtil(setState), children: /* @__PURE__ */ jsxs(Box, { className: "profile", children: [
|
|
4290
4290
|
/* @__PURE__ */ jsxs(Stack, { direction: "row", spacing: 1, alignItems: "center", sx: { borderBottom: "1px solid #EDEDED", p: 2 }, children: [
|
|
4291
|
-
/* @__PURE__ */ jsx(Avatar, { src: userData?.userprofile, sx: { width: "55px", height: "55px" } }),
|
|
4291
|
+
/* @__PURE__ */ jsx(Avatar, { src: userData?.userprofile, sx: { width: "55px", height: "55px" }, children: userData?.fullName.trim().split(/\s+/).map((part) => part[0].toUpperCase()).join("") }),
|
|
4292
4292
|
/* @__PURE__ */ jsxs(
|
|
4293
4293
|
Box,
|
|
4294
4294
|
{
|