sixseconds-modules 1.6.20 → 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 +22 -22
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +22 -22
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -9519,19 +9519,19 @@ function ViewProfileDialog({ userData, setInitialState, isOpen }) {
|
|
|
9519
9519
|
) }),
|
|
9520
9520
|
/* @__PURE__ */ jsxRuntime.jsxs(material.Box, { sx: { pl: { md: 3, lg: 3, xs: 0 } }, children: [
|
|
9521
9521
|
/* @__PURE__ */ jsxRuntime.jsxs(material.Stack, { direction: "column", spacing: 1.5, sx: { fontSize: "14px" }, children: [
|
|
9522
|
-
/* @__PURE__ */ jsxRuntime.jsxs(material.Stack, { direction: "row", alignItems: "center", flexWrap: "wrap", spacing: 0.5, useFlexGap: true, children: [
|
|
9522
|
+
Boolean(userData?.certification.length) && /* @__PURE__ */ jsxRuntime.jsxs(material.Stack, { direction: "row", alignItems: "center", flexWrap: "wrap", spacing: 0.5, useFlexGap: true, children: [
|
|
9523
9523
|
"Certification:",
|
|
9524
9524
|
userData?.certification?.map((itm, idx) => /* @__PURE__ */ jsxRuntime.jsx(material.Chip, { sx: { mr: 0.5, mb: 0.5 }, label: `${itm}` }, idx))
|
|
9525
9525
|
] }),
|
|
9526
|
-
/* @__PURE__ */ jsxRuntime.jsxs(material.Box, { children: [
|
|
9526
|
+
Boolean(userData?.country) && /* @__PURE__ */ jsxRuntime.jsxs(material.Box, { children: [
|
|
9527
9527
|
"Location: ",
|
|
9528
9528
|
userData?.country
|
|
9529
9529
|
] }),
|
|
9530
|
-
/* @__PURE__ */ jsxRuntime.jsxs(material.Box, { children: [
|
|
9530
|
+
Boolean(userData?.languages?.length) && /* @__PURE__ */ jsxRuntime.jsxs(material.Box, { children: [
|
|
9531
9531
|
"Languages:",
|
|
9532
9532
|
userData?.languages?.map((itm, idx) => /* @__PURE__ */ jsxRuntime.jsx(material.Chip, { sx: { ml: 0.5, mr: 0.5, mb: 0.5 }, label: `${itm}` }, idx))
|
|
9533
9533
|
] }),
|
|
9534
|
-
/* @__PURE__ */ jsxRuntime.jsxs(material.Box, { children: [
|
|
9534
|
+
Boolean(userData?.areaOfWork?.length) && /* @__PURE__ */ jsxRuntime.jsxs(material.Box, { children: [
|
|
9535
9535
|
"Areas Of Work:",
|
|
9536
9536
|
userData?.areaOfWork?.map((itm, idx) => /* @__PURE__ */ jsxRuntime.jsx(material.Chip, { sx: { ml: 0.5, mr: 0.5, mb: 0.5 }, label: `${itm}` }, idx))
|
|
9537
9537
|
] })
|
|
@@ -9604,15 +9604,15 @@ function ViewProfileDialog({ userData, setInitialState, isOpen }) {
|
|
|
9604
9604
|
/* @__PURE__ */ jsxRuntime.jsxs(material.Stack, { direction: "column", spacing: 1, sx: { color: "#222222", fontSize: "14px", lineHeight: "24px" }, children: [
|
|
9605
9605
|
/* @__PURE__ */ jsxRuntime.jsx(material.Typography, { variant: "h3", sx: { fontSize: "30px", fontWeight: "500", color: "black" }, children: userData?.fullName }),
|
|
9606
9606
|
/* @__PURE__ */ jsxRuntime.jsx(material.Box, { children: userData?.bio }),
|
|
9607
|
-
/* @__PURE__ */ jsxRuntime.jsxs(material.Box, { children: [
|
|
9607
|
+
Boolean(userData?.title) && /* @__PURE__ */ jsxRuntime.jsxs(material.Box, { children: [
|
|
9608
9608
|
"Title: ",
|
|
9609
9609
|
userData?.title
|
|
9610
9610
|
] }),
|
|
9611
|
-
/* @__PURE__ */ jsxRuntime.jsxs(material.Box, { children: [
|
|
9611
|
+
Boolean(userData?.company) && /* @__PURE__ */ jsxRuntime.jsxs(material.Box, { children: [
|
|
9612
9612
|
"Company: ",
|
|
9613
9613
|
userData?.company
|
|
9614
9614
|
] }),
|
|
9615
|
-
/* @__PURE__ */ jsxRuntime.jsxs(material.Box, { children: [
|
|
9615
|
+
Boolean(userData?.email) && /* @__PURE__ */ jsxRuntime.jsxs(material.Box, { children: [
|
|
9616
9616
|
"Email: ",
|
|
9617
9617
|
userData?.email
|
|
9618
9618
|
] }),
|
|
@@ -11002,17 +11002,17 @@ const App = () => {
|
|
|
11002
11002
|
],
|
|
11003
11003
|
userData: {
|
|
11004
11004
|
userprofile: "",
|
|
11005
|
-
email: "
|
|
11006
|
-
role: "
|
|
11007
|
-
fullName: "
|
|
11008
|
-
bio: "
|
|
11009
|
-
title: "
|
|
11005
|
+
email: "sdf",
|
|
11006
|
+
role: "",
|
|
11007
|
+
fullName: "sadf",
|
|
11008
|
+
bio: "",
|
|
11009
|
+
title: "",
|
|
11010
11010
|
certId: 1,
|
|
11011
|
-
certProfileUrl: "
|
|
11012
|
-
company: "
|
|
11013
|
-
certBio: "
|
|
11014
|
-
certOfferToHelp: "
|
|
11015
|
-
appName:
|
|
11011
|
+
certProfileUrl: "",
|
|
11012
|
+
company: "",
|
|
11013
|
+
certBio: "",
|
|
11014
|
+
certOfferToHelp: "",
|
|
11015
|
+
appName: APP_NAMES.sso,
|
|
11016
11016
|
appAccess: [
|
|
11017
11017
|
{
|
|
11018
11018
|
name: "Tools",
|
|
@@ -11039,11 +11039,11 @@ const App = () => {
|
|
|
11039
11039
|
type: "app"
|
|
11040
11040
|
}
|
|
11041
11041
|
],
|
|
11042
|
-
certification: [
|
|
11043
|
-
country: "
|
|
11044
|
-
languages: [
|
|
11045
|
-
areaOfWork: [
|
|
11046
|
-
linkedInUrl: "
|
|
11042
|
+
certification: [],
|
|
11043
|
+
country: "",
|
|
11044
|
+
languages: [],
|
|
11045
|
+
areaOfWork: [],
|
|
11046
|
+
linkedInUrl: "",
|
|
11047
11047
|
notificationCount: 10
|
|
11048
11048
|
},
|
|
11049
11049
|
interFaceLangList: [
|