sixseconds-modules 1.6.19 → 1.6.21
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 +23 -23
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +23 -23
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -2474,7 +2474,7 @@ function createEnv(opts) {
|
|
|
2474
2474
|
}
|
|
2475
2475
|
return runtimeEnv;
|
|
2476
2476
|
}
|
|
2477
|
-
const __vite_import_meta_env__ = { "BASE_URL": "/", "DEV": false, "MODE": "
|
|
2477
|
+
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" };
|
|
2478
2478
|
const env = createEnv({
|
|
2479
2479
|
runtimeEnv: __vite_import_meta_env__
|
|
2480
2480
|
});
|
|
@@ -9501,19 +9501,19 @@ function ViewProfileDialog({ userData, setInitialState, isOpen }) {
|
|
|
9501
9501
|
) }),
|
|
9502
9502
|
/* @__PURE__ */ jsxs(Box, { sx: { pl: { md: 3, lg: 3, xs: 0 } }, children: [
|
|
9503
9503
|
/* @__PURE__ */ jsxs(Stack$1, { direction: "column", spacing: 1.5, sx: { fontSize: "14px" }, children: [
|
|
9504
|
-
/* @__PURE__ */ jsxs(Stack$1, { direction: "row", alignItems: "center", flexWrap: "wrap", spacing: 0.5, useFlexGap: true, children: [
|
|
9504
|
+
Boolean(userData?.certification.length) && /* @__PURE__ */ jsxs(Stack$1, { direction: "row", alignItems: "center", flexWrap: "wrap", spacing: 0.5, useFlexGap: true, children: [
|
|
9505
9505
|
"Certification:",
|
|
9506
9506
|
userData?.certification?.map((itm, idx) => /* @__PURE__ */ jsx(Chip, { sx: { mr: 0.5, mb: 0.5 }, label: `${itm}` }, idx))
|
|
9507
9507
|
] }),
|
|
9508
|
-
/* @__PURE__ */ jsxs(Box, { children: [
|
|
9508
|
+
Boolean(userData?.country) && /* @__PURE__ */ jsxs(Box, { children: [
|
|
9509
9509
|
"Location: ",
|
|
9510
9510
|
userData?.country
|
|
9511
9511
|
] }),
|
|
9512
|
-
/* @__PURE__ */ jsxs(Box, { children: [
|
|
9512
|
+
Boolean(userData?.languages?.length) && /* @__PURE__ */ jsxs(Box, { children: [
|
|
9513
9513
|
"Languages:",
|
|
9514
9514
|
userData?.languages?.map((itm, idx) => /* @__PURE__ */ jsx(Chip, { sx: { ml: 0.5, mr: 0.5, mb: 0.5 }, label: `${itm}` }, idx))
|
|
9515
9515
|
] }),
|
|
9516
|
-
/* @__PURE__ */ jsxs(Box, { children: [
|
|
9516
|
+
Boolean(userData?.areaOfWork?.length) && /* @__PURE__ */ jsxs(Box, { children: [
|
|
9517
9517
|
"Areas Of Work:",
|
|
9518
9518
|
userData?.areaOfWork?.map((itm, idx) => /* @__PURE__ */ jsx(Chip, { sx: { ml: 0.5, mr: 0.5, mb: 0.5 }, label: `${itm}` }, idx))
|
|
9519
9519
|
] })
|
|
@@ -9586,15 +9586,15 @@ function ViewProfileDialog({ userData, setInitialState, isOpen }) {
|
|
|
9586
9586
|
/* @__PURE__ */ jsxs(Stack$1, { direction: "column", spacing: 1, sx: { color: "#222222", fontSize: "14px", lineHeight: "24px" }, children: [
|
|
9587
9587
|
/* @__PURE__ */ jsx(Typography, { variant: "h3", sx: { fontSize: "30px", fontWeight: "500", color: "black" }, children: userData?.fullName }),
|
|
9588
9588
|
/* @__PURE__ */ jsx(Box, { children: userData?.bio }),
|
|
9589
|
-
/* @__PURE__ */ jsxs(Box, { children: [
|
|
9589
|
+
Boolean(userData?.title) && /* @__PURE__ */ jsxs(Box, { children: [
|
|
9590
9590
|
"Title: ",
|
|
9591
9591
|
userData?.title
|
|
9592
9592
|
] }),
|
|
9593
|
-
/* @__PURE__ */ jsxs(Box, { children: [
|
|
9593
|
+
Boolean(userData?.company) && /* @__PURE__ */ jsxs(Box, { children: [
|
|
9594
9594
|
"Company: ",
|
|
9595
9595
|
userData?.company
|
|
9596
9596
|
] }),
|
|
9597
|
-
/* @__PURE__ */ jsxs(Box, { children: [
|
|
9597
|
+
Boolean(userData?.email) && /* @__PURE__ */ jsxs(Box, { children: [
|
|
9598
9598
|
"Email: ",
|
|
9599
9599
|
userData?.email
|
|
9600
9600
|
] }),
|
|
@@ -10984,17 +10984,17 @@ const App = () => {
|
|
|
10984
10984
|
],
|
|
10985
10985
|
userData: {
|
|
10986
10986
|
userprofile: "",
|
|
10987
|
-
email: "
|
|
10988
|
-
role: "
|
|
10989
|
-
fullName: "
|
|
10990
|
-
bio: "
|
|
10991
|
-
title: "
|
|
10987
|
+
email: "sdf",
|
|
10988
|
+
role: "",
|
|
10989
|
+
fullName: "sadf",
|
|
10990
|
+
bio: "",
|
|
10991
|
+
title: "",
|
|
10992
10992
|
certId: 1,
|
|
10993
|
-
certProfileUrl: "
|
|
10994
|
-
company: "
|
|
10995
|
-
certBio: "
|
|
10996
|
-
certOfferToHelp: "
|
|
10997
|
-
appName:
|
|
10993
|
+
certProfileUrl: "",
|
|
10994
|
+
company: "",
|
|
10995
|
+
certBio: "",
|
|
10996
|
+
certOfferToHelp: "",
|
|
10997
|
+
appName: APP_NAMES.sso,
|
|
10998
10998
|
appAccess: [
|
|
10999
10999
|
{
|
|
11000
11000
|
name: "Tools",
|
|
@@ -11021,11 +11021,11 @@ const App = () => {
|
|
|
11021
11021
|
type: "app"
|
|
11022
11022
|
}
|
|
11023
11023
|
],
|
|
11024
|
-
certification: [
|
|
11025
|
-
country: "
|
|
11026
|
-
languages: [
|
|
11027
|
-
areaOfWork: [
|
|
11028
|
-
linkedInUrl: "
|
|
11024
|
+
certification: [],
|
|
11025
|
+
country: "",
|
|
11026
|
+
languages: [],
|
|
11027
|
+
areaOfWork: [],
|
|
11028
|
+
linkedInUrl: "",
|
|
11029
11029
|
notificationCount: 10
|
|
11030
11030
|
},
|
|
11031
11031
|
interFaceLangList: [
|