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.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: "center", mb: 4 }, children: /* @__PURE__ */ jsx(
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(Box, { sx: { display: "flex", alignItems: "center", justifyContent: "center", gap: 1 }, children: [
13424
- /* @__PURE__ */ jsx(
13425
- Typography,
13426
- {
13427
- sx: {
13428
- fontWeight: 700,
13429
- color: "#1a1c1e",
13430
- fontSize: "14px",
13431
- textTransform: "uppercase",
13432
- letterSpacing: "0.5px"
13433
- },
13434
- children: "Location"
13435
- }
13436
- ),
13437
- /* @__PURE__ */ jsx(Typography, { sx: { color: "#5f6368", fontSize: "15px" }, children: userData?.country })
13438
- ] }),
13439
- Boolean(userData?.languages?.length) && /* @__PURE__ */ jsxs(Box, { sx: { display: "flex", alignItems: "center", justifyContent: "center", gap: 1 }, children: [
13440
- /* @__PURE__ */ jsx(
13441
- Typography,
13442
- {
13443
- sx: {
13444
- fontWeight: 700,
13445
- color: "#1a1c1e",
13446
- mb: 1,
13447
- fontSize: "14px",
13448
- textTransform: "uppercase",
13449
- letterSpacing: "0.5px"
13450
- },
13451
- children: "Languages"
13452
- }
13453
- ),
13454
- /* @__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)) })
13455
- ] }),
13456
- Boolean(userData?.areaOfWork?.length) && /* @__PURE__ */ jsxs(Box, { sx: { display: "flex", alignItems: "center", justifyContent: "center", gap: 1 }, children: [
13457
- /* @__PURE__ */ jsx(
13458
- Typography,
13459
- {
13460
- sx: {
13461
- fontWeight: 700,
13462
- color: "#1a1c1e",
13463
- mb: 1,
13464
- fontSize: "14px",
13465
- textTransform: "uppercase",
13466
- letterSpacing: "0.5px"
13467
- },
13468
- children: "Areas Of Work"
13469
- }
13470
- ),
13471
- /* @__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)) })
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: "center", md: "center" }, children: [
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: [