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 CHANGED
@@ -13398,7 +13398,7 @@ function ViewProfileDialog({ userData, setInitialState, isOpen }) {
13398
13398
  ) }),
13399
13399
  /* @__PURE__ */ jsxRuntime.jsx(material.Box, { sx: { px: { xs: 3, sm: 5, md: 6 }, pb: { xs: 5, sm: 6 }, mt: 3 }, children: /* @__PURE__ */ jsxRuntime.jsxs(material.Grid, { container: true, spacing: { xs: 4, md: 6 }, children: [
13400
13400
  /* @__PURE__ */ jsxRuntime.jsxs(material.Grid, { item: true, xs: 12, md: 5, lg: 4, children: [
13401
- /* @__PURE__ */ jsxRuntime.jsx(material.Box, { sx: { textAlign: "center", mb: 4 }, children: /* @__PURE__ */ jsxRuntime.jsx(
13401
+ /* @__PURE__ */ jsxRuntime.jsx(material.Box, { sx: { textAlign: "flex-start", mb: 4 }, children: /* @__PURE__ */ jsxRuntime.jsx(
13402
13402
  material.Avatar,
13403
13403
  {
13404
13404
  src: userData?.userprofile,
@@ -13425,7 +13425,7 @@ function ViewProfileDialog({ userData, setInitialState, isOpen }) {
13425
13425
  textTransform: "uppercase",
13426
13426
  letterSpacing: "0.5px"
13427
13427
  },
13428
- children: "Certifications"
13428
+ children: "Certifications:"
13429
13429
  }
13430
13430
  ),
13431
13431
  /* @__PURE__ */ jsxRuntime.jsx(material.Box, { sx: { display: "flex", flexWrap: "wrap", gap: 1 }, children: userData?.certification?.map((itm, idx) => /* @__PURE__ */ jsxRuntime.jsx(
@@ -13438,58 +13438,93 @@ function ViewProfileDialog({ userData, setInitialState, isOpen }) {
13438
13438
  idx
13439
13439
  )) })
13440
13440
  ] }),
13441
- Boolean(userData?.country) && /* @__PURE__ */ jsxRuntime.jsxs(material.Box, { sx: { display: "flex", alignItems: "center", justifyContent: "center", gap: 1 }, children: [
13442
- /* @__PURE__ */ jsxRuntime.jsx(
13443
- material.Typography,
13444
- {
13445
- sx: {
13446
- fontWeight: 700,
13447
- color: "#1a1c1e",
13448
- fontSize: "14px",
13449
- textTransform: "uppercase",
13450
- letterSpacing: "0.5px"
13451
- },
13452
- children: "Location"
13453
- }
13454
- ),
13455
- /* @__PURE__ */ jsxRuntime.jsx(material.Typography, { sx: { color: "#5f6368", fontSize: "15px" }, children: userData?.country })
13456
- ] }),
13457
- Boolean(userData?.languages?.length) && /* @__PURE__ */ jsxRuntime.jsxs(material.Box, { sx: { display: "flex", alignItems: "center", justifyContent: "center", gap: 1 }, children: [
13458
- /* @__PURE__ */ jsxRuntime.jsx(
13459
- material.Typography,
13460
- {
13461
- sx: {
13462
- fontWeight: 700,
13463
- color: "#1a1c1e",
13464
- mb: 1,
13465
- fontSize: "14px",
13466
- textTransform: "uppercase",
13467
- letterSpacing: "0.5px"
13468
- },
13469
- children: "Languages"
13470
- }
13471
- ),
13472
- /* @__PURE__ */ jsxRuntime.jsx(material.Box, { sx: { display: "flex", flexWrap: "wrap", gap: 1 }, children: userData?.languages?.map((itm, idx) => /* @__PURE__ */ jsxRuntime.jsx(material.Chip, { size: "small", variant: "outlined", sx: { borderRadius: "4px" }, label: itm }, idx)) })
13473
- ] }),
13474
- Boolean(userData?.areaOfWork?.length) && /* @__PURE__ */ jsxRuntime.jsxs(material.Box, { sx: { display: "flex", alignItems: "center", justifyContent: "center", gap: 1 }, children: [
13475
- /* @__PURE__ */ jsxRuntime.jsx(
13476
- material.Typography,
13477
- {
13478
- sx: {
13479
- fontWeight: 700,
13480
- color: "#1a1c1e",
13481
- mb: 1,
13482
- fontSize: "14px",
13483
- textTransform: "uppercase",
13484
- letterSpacing: "0.5px"
13485
- },
13486
- children: "Areas Of Work"
13487
- }
13488
- ),
13489
- /* @__PURE__ */ jsxRuntime.jsx(material.Box, { sx: { display: "flex", flexWrap: "wrap", gap: 1 }, children: userData?.areaOfWork?.map((itm, idx) => /* @__PURE__ */ jsxRuntime.jsx(material.Chip, { size: "small", variant: "outlined", sx: { borderRadius: "4px" }, label: itm }, idx)) })
13490
- ] })
13441
+ Boolean(userData?.country) && /* @__PURE__ */ jsxRuntime.jsxs(
13442
+ material.Box,
13443
+ {
13444
+ sx: {
13445
+ display: "flex",
13446
+ alignItems: "center",
13447
+ justifyContent: "flex-start",
13448
+ gap: 1
13449
+ },
13450
+ children: [
13451
+ /* @__PURE__ */ jsxRuntime.jsx(
13452
+ material.Typography,
13453
+ {
13454
+ sx: {
13455
+ fontWeight: 700,
13456
+ color: "#1a1c1e",
13457
+ fontSize: "14px",
13458
+ textTransform: "uppercase",
13459
+ letterSpacing: "0.5px"
13460
+ },
13461
+ children: "Location:"
13462
+ }
13463
+ ),
13464
+ /* @__PURE__ */ jsxRuntime.jsx(material.Typography, { sx: { color: "#5f6368", fontSize: "15px" }, children: userData?.country })
13465
+ ]
13466
+ }
13467
+ ),
13468
+ Boolean(userData?.languages?.length) && /* @__PURE__ */ jsxRuntime.jsxs(
13469
+ material.Box,
13470
+ {
13471
+ sx: {
13472
+ display: "flex",
13473
+ alignItems: "flex-start",
13474
+ justifyContent: "flex-start",
13475
+ flexDirection: "column",
13476
+ gap: 1
13477
+ },
13478
+ children: [
13479
+ /* @__PURE__ */ jsxRuntime.jsx(
13480
+ material.Typography,
13481
+ {
13482
+ sx: {
13483
+ fontWeight: 700,
13484
+ color: "#1a1c1e",
13485
+ mb: 1,
13486
+ fontSize: "14px",
13487
+ textTransform: "uppercase",
13488
+ letterSpacing: "0.5px"
13489
+ },
13490
+ children: "Languages:"
13491
+ }
13492
+ ),
13493
+ /* @__PURE__ */ jsxRuntime.jsx(material.Box, { sx: { display: "flex", flexWrap: "wrap", gap: 1 }, children: userData?.languages?.map((itm, idx) => /* @__PURE__ */ jsxRuntime.jsx(material.Chip, { size: "small", variant: "outlined", sx: { borderRadius: "4px" }, label: itm }, idx)) })
13494
+ ]
13495
+ }
13496
+ ),
13497
+ Boolean(userData?.areaOfWork?.length) && /* @__PURE__ */ jsxRuntime.jsxs(
13498
+ material.Box,
13499
+ {
13500
+ sx: {
13501
+ display: "flex",
13502
+ alignItems: "flex-start",
13503
+ justifyContent: "flex-start",
13504
+ flexDirection: "column",
13505
+ gap: 1
13506
+ },
13507
+ children: [
13508
+ /* @__PURE__ */ jsxRuntime.jsx(
13509
+ material.Typography,
13510
+ {
13511
+ sx: {
13512
+ fontWeight: 700,
13513
+ color: "#1a1c1e",
13514
+ mb: 1,
13515
+ fontSize: "14px",
13516
+ textTransform: "uppercase",
13517
+ letterSpacing: "0.5px"
13518
+ },
13519
+ children: "Areas Of Work:"
13520
+ }
13521
+ ),
13522
+ /* @__PURE__ */ jsxRuntime.jsx(material.Box, { sx: { display: "flex", flexWrap: "wrap", gap: 1 }, children: userData?.areaOfWork?.map((itm, idx) => /* @__PURE__ */ jsxRuntime.jsx(material.Chip, { size: "small", variant: "outlined", sx: { borderRadius: "4px" }, label: itm }, idx)) })
13523
+ ]
13524
+ }
13525
+ )
13491
13526
  ] }),
13492
- /* @__PURE__ */ jsxRuntime.jsx(material.Stack, { direction: "row", spacing: 1.5, justifyContent: { xs: "center", md: "center" }, children: [
13527
+ /* @__PURE__ */ jsxRuntime.jsx(material.Stack, { direction: "row", spacing: 1.5, justifyContent: { xs: "flex-start" }, children: [
13493
13528
  {
13494
13529
  icon: /* @__PURE__ */ jsxRuntime.jsx(ContentCopyIcon, { sx: { fontSize: "18px" } }),
13495
13530
  href: `https://cert.6seconds.org/cert-directory?id=${userData?.certId}`
@@ -15355,11 +15390,11 @@ const App = () => {
15355
15390
  type: "app"
15356
15391
  }
15357
15392
  ],
15358
- certification: [],
15393
+ certification: ["dsf", "sfeicwe", "sdfwe908", "fw30uvewl", "dfj30ujoidk"],
15359
15394
  country: "India",
15360
- languages: [],
15361
- areaOfWork: [],
15362
- linkedInUrl: "",
15395
+ languages: ["English", "Hindi", "Marathi"],
15396
+ areaOfWork: ["HR", "Education", "Healthcare"],
15397
+ linkedInUrl: "https://www.linkedin.com/in/sanskar-digimon/",
15363
15398
  notificationCount: 10
15364
15399
  },
15365
15400
  interFaceLangList: [