sixseconds-modules 1.6.191 → 1.6.192
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 +92 -57
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +92 -57
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -13380,7 +13380,7 @@ function ViewProfileDialog({ userData, setInitialState, isOpen }) {
|
|
|
13380
13380
|
) }),
|
|
13381
13381
|
/* @__PURE__ */ jsx(Box, { sx: { px: { xs: 3, sm: 5, md: 6 }, pb: { xs: 5, sm: 6 }, mt: 3 }, children: /* @__PURE__ */ jsxs(Grid, { container: true, spacing: { xs: 4, md: 6 }, children: [
|
|
13382
13382
|
/* @__PURE__ */ jsxs(Grid, { item: true, xs: 12, md: 5, lg: 4, children: [
|
|
13383
|
-
/* @__PURE__ */ jsx(Box, { sx: { textAlign: "
|
|
13383
|
+
/* @__PURE__ */ jsx(Box, { sx: { textAlign: "flex-start", mb: 4 }, children: /* @__PURE__ */ jsx(
|
|
13384
13384
|
Avatar,
|
|
13385
13385
|
{
|
|
13386
13386
|
src: userData?.userprofile,
|
|
@@ -13407,7 +13407,7 @@ function ViewProfileDialog({ userData, setInitialState, isOpen }) {
|
|
|
13407
13407
|
textTransform: "uppercase",
|
|
13408
13408
|
letterSpacing: "0.5px"
|
|
13409
13409
|
},
|
|
13410
|
-
children: "Certifications"
|
|
13410
|
+
children: "Certifications:"
|
|
13411
13411
|
}
|
|
13412
13412
|
),
|
|
13413
13413
|
/* @__PURE__ */ jsx(Box, { sx: { display: "flex", flexWrap: "wrap", gap: 1 }, children: userData?.certification?.map((itm, idx) => /* @__PURE__ */ jsx(
|
|
@@ -13420,58 +13420,93 @@ function ViewProfileDialog({ userData, setInitialState, isOpen }) {
|
|
|
13420
13420
|
idx
|
|
13421
13421
|
)) })
|
|
13422
13422
|
] }),
|
|
13423
|
-
Boolean(userData?.country) && /* @__PURE__ */ jsxs(
|
|
13424
|
-
|
|
13425
|
-
|
|
13426
|
-
{
|
|
13427
|
-
|
|
13428
|
-
|
|
13429
|
-
|
|
13430
|
-
|
|
13431
|
-
|
|
13432
|
-
|
|
13433
|
-
|
|
13434
|
-
|
|
13435
|
-
|
|
13436
|
-
|
|
13437
|
-
|
|
13438
|
-
|
|
13439
|
-
|
|
13440
|
-
|
|
13441
|
-
|
|
13442
|
-
|
|
13443
|
-
|
|
13444
|
-
|
|
13445
|
-
|
|
13446
|
-
|
|
13447
|
-
|
|
13448
|
-
|
|
13449
|
-
|
|
13450
|
-
|
|
13451
|
-
|
|
13452
|
-
|
|
13453
|
-
|
|
13454
|
-
|
|
13455
|
-
|
|
13456
|
-
|
|
13457
|
-
|
|
13458
|
-
|
|
13459
|
-
|
|
13460
|
-
|
|
13461
|
-
|
|
13462
|
-
|
|
13463
|
-
|
|
13464
|
-
|
|
13465
|
-
|
|
13466
|
-
|
|
13467
|
-
|
|
13468
|
-
|
|
13469
|
-
|
|
13470
|
-
|
|
13471
|
-
|
|
13472
|
-
|
|
13423
|
+
Boolean(userData?.country) && /* @__PURE__ */ jsxs(
|
|
13424
|
+
Box,
|
|
13425
|
+
{
|
|
13426
|
+
sx: {
|
|
13427
|
+
display: "flex",
|
|
13428
|
+
alignItems: "center",
|
|
13429
|
+
justifyContent: "flex-start",
|
|
13430
|
+
gap: 1
|
|
13431
|
+
},
|
|
13432
|
+
children: [
|
|
13433
|
+
/* @__PURE__ */ jsx(
|
|
13434
|
+
Typography,
|
|
13435
|
+
{
|
|
13436
|
+
sx: {
|
|
13437
|
+
fontWeight: 700,
|
|
13438
|
+
color: "#1a1c1e",
|
|
13439
|
+
fontSize: "14px",
|
|
13440
|
+
textTransform: "uppercase",
|
|
13441
|
+
letterSpacing: "0.5px"
|
|
13442
|
+
},
|
|
13443
|
+
children: "Location:"
|
|
13444
|
+
}
|
|
13445
|
+
),
|
|
13446
|
+
/* @__PURE__ */ jsx(Typography, { sx: { color: "#5f6368", fontSize: "15px" }, children: userData?.country })
|
|
13447
|
+
]
|
|
13448
|
+
}
|
|
13449
|
+
),
|
|
13450
|
+
Boolean(userData?.languages?.length) && /* @__PURE__ */ jsxs(
|
|
13451
|
+
Box,
|
|
13452
|
+
{
|
|
13453
|
+
sx: {
|
|
13454
|
+
display: "flex",
|
|
13455
|
+
alignItems: "flex-start",
|
|
13456
|
+
justifyContent: "flex-start",
|
|
13457
|
+
flexDirection: "column",
|
|
13458
|
+
gap: 1
|
|
13459
|
+
},
|
|
13460
|
+
children: [
|
|
13461
|
+
/* @__PURE__ */ jsx(
|
|
13462
|
+
Typography,
|
|
13463
|
+
{
|
|
13464
|
+
sx: {
|
|
13465
|
+
fontWeight: 700,
|
|
13466
|
+
color: "#1a1c1e",
|
|
13467
|
+
mb: 1,
|
|
13468
|
+
fontSize: "14px",
|
|
13469
|
+
textTransform: "uppercase",
|
|
13470
|
+
letterSpacing: "0.5px"
|
|
13471
|
+
},
|
|
13472
|
+
children: "Languages:"
|
|
13473
|
+
}
|
|
13474
|
+
),
|
|
13475
|
+
/* @__PURE__ */ jsx(Box, { sx: { display: "flex", flexWrap: "wrap", gap: 1 }, children: userData?.languages?.map((itm, idx) => /* @__PURE__ */ jsx(Chip, { size: "small", variant: "outlined", sx: { borderRadius: "4px" }, label: itm }, idx)) })
|
|
13476
|
+
]
|
|
13477
|
+
}
|
|
13478
|
+
),
|
|
13479
|
+
Boolean(userData?.areaOfWork?.length) && /* @__PURE__ */ jsxs(
|
|
13480
|
+
Box,
|
|
13481
|
+
{
|
|
13482
|
+
sx: {
|
|
13483
|
+
display: "flex",
|
|
13484
|
+
alignItems: "flex-start",
|
|
13485
|
+
justifyContent: "flex-start",
|
|
13486
|
+
flexDirection: "column",
|
|
13487
|
+
gap: 1
|
|
13488
|
+
},
|
|
13489
|
+
children: [
|
|
13490
|
+
/* @__PURE__ */ jsx(
|
|
13491
|
+
Typography,
|
|
13492
|
+
{
|
|
13493
|
+
sx: {
|
|
13494
|
+
fontWeight: 700,
|
|
13495
|
+
color: "#1a1c1e",
|
|
13496
|
+
mb: 1,
|
|
13497
|
+
fontSize: "14px",
|
|
13498
|
+
textTransform: "uppercase",
|
|
13499
|
+
letterSpacing: "0.5px"
|
|
13500
|
+
},
|
|
13501
|
+
children: "Areas Of Work:"
|
|
13502
|
+
}
|
|
13503
|
+
),
|
|
13504
|
+
/* @__PURE__ */ jsx(Box, { sx: { display: "flex", flexWrap: "wrap", gap: 1 }, children: userData?.areaOfWork?.map((itm, idx) => /* @__PURE__ */ jsx(Chip, { size: "small", variant: "outlined", sx: { borderRadius: "4px" }, label: itm }, idx)) })
|
|
13505
|
+
]
|
|
13506
|
+
}
|
|
13507
|
+
)
|
|
13473
13508
|
] }),
|
|
13474
|
-
/* @__PURE__ */ jsx(Stack$1, { direction: "row", spacing: 1.5, justifyContent: { xs: "
|
|
13509
|
+
/* @__PURE__ */ jsx(Stack$1, { direction: "row", spacing: 1.5, justifyContent: { xs: "flex-start" }, children: [
|
|
13475
13510
|
{
|
|
13476
13511
|
icon: /* @__PURE__ */ jsx(ContentCopyIcon, { sx: { fontSize: "18px" } }),
|
|
13477
13512
|
href: `https://cert.6seconds.org/cert-directory?id=${userData?.certId}`
|
|
@@ -15337,11 +15372,11 @@ const App = () => {
|
|
|
15337
15372
|
type: "app"
|
|
15338
15373
|
}
|
|
15339
15374
|
],
|
|
15340
|
-
certification: [],
|
|
15375
|
+
certification: ["dsf", "sfeicwe", "sdfwe908", "fw30uvewl", "dfj30ujoidk"],
|
|
15341
15376
|
country: "India",
|
|
15342
|
-
languages: [],
|
|
15343
|
-
areaOfWork: [],
|
|
15344
|
-
linkedInUrl: "",
|
|
15377
|
+
languages: ["English", "Hindi", "Marathi"],
|
|
15378
|
+
areaOfWork: ["HR", "Education", "Healthcare"],
|
|
15379
|
+
linkedInUrl: "https://www.linkedin.com/in/sanskar-digimon/",
|
|
15345
15380
|
notificationCount: 10
|
|
15346
15381
|
},
|
|
15347
15382
|
interFaceLangList: [
|