sixseconds-modules 1.6.190 → 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 +93 -58
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +93 -58
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
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: "
|
|
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(
|
|
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
|
-
|
|
13473
|
-
|
|
13474
|
-
|
|
13475
|
-
|
|
13476
|
-
|
|
13477
|
-
|
|
13478
|
-
|
|
13479
|
-
|
|
13480
|
-
|
|
13481
|
-
|
|
13482
|
-
|
|
13483
|
-
|
|
13484
|
-
|
|
13485
|
-
|
|
13486
|
-
|
|
13487
|
-
|
|
13488
|
-
|
|
13489
|
-
|
|
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: "
|
|
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: [
|
|
@@ -15422,7 +15457,7 @@ exports.default = App;
|
|
|
15422
15457
|
try {
|
|
15423
15458
|
if (typeof document != "undefined") {
|
|
15424
15459
|
var elementStyle = document.createElement("style");
|
|
15425
|
-
elementStyle.appendChild(document.createTextNode('@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");\n\n.sixseconds-header-root blockquote,\n.sixseconds-header-root dl,\n.sixseconds-header-root dd,\n.sixseconds-header-root h1,\n.sixseconds-header-root h2,\n.sixseconds-header-root h3,\n.sixseconds-header-root h4,\n.sixseconds-header-root h5,\n.sixseconds-header-root h6,\n.sixseconds-header-root hr,\n.sixseconds-header-root figure,\n.sixseconds-header-root p,\n.sixseconds-header-root pre,\n.sixseconds-header-root span,\n.sixseconds-header-root a,\n.sixseconds-header-root div,\n.sixseconds-header-root li,\n.sixseconds-header-root button {\n font-family: "Inter", sans-serif !important;\n}\n\n.sixseconds-header-main-list-menu {\n display: flex;\n}\n\n.sixseconds-header-main-list-menu li {\n padding: 0.5rem 0.5rem;\n}\n\n.sixseconds-header-main-list-menu li a {\n padding: 0 0.25rem;\n font-weight: 500;\n font-size: 12px;\n}\n\n.sixseconds-header-main-list-menu .sixseconds-header-menu-item {\n position: relative;\n padding: 0 16px;\n display: flex;\n align-items: center;\n height: 100%;\n}\n\n.sixseconds-header-main-list-menu .sixseconds-header-menu-link {\n text-decoration: none;\n color: #2a2a2a;\n /* Closer to 6seconds */\n font-weight: 500;\n font-size: 15px;\n padding: 8px 4px;\n transition: color 0.2s ease;\n font-family: "Inter", sans-serif;\n display: flex;\n align-items: center;\n gap: 4px;\n}\n\n.sixseconds-header-main-list-menu .sixseconds-header-menu-link:hover {\n color: #0073b1;\n}\n\n/* Submenu (Dropdown) */\n\n.sixseconds-header-main-list-menu .sixseconds-header-submenu-data {\n position: absolute;\n top: 150%;\n left: 0;\n background: white;\n border: 1px solid #e2e8f0;\n border-top: 3px solid #0073b1;\n box-shadow:\n 0px 12px 48px rgba(0, 0, 0, 0.12),\n 0 4px 16px rgba(0, 0, 0, 0.08);\n /* Even more premium shadow */\n display: block;\n opacity: 0;\n visibility: hidden;\n transform: translateY(12px);\n
|
|
15460
|
+
elementStyle.appendChild(document.createTextNode('@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");\n\n.sixseconds-header-root blockquote,\n.sixseconds-header-root dl,\n.sixseconds-header-root dd,\n.sixseconds-header-root h1,\n.sixseconds-header-root h2,\n.sixseconds-header-root h3,\n.sixseconds-header-root h4,\n.sixseconds-header-root h5,\n.sixseconds-header-root h6,\n.sixseconds-header-root hr,\n.sixseconds-header-root figure,\n.sixseconds-header-root p,\n.sixseconds-header-root pre,\n.sixseconds-header-root span,\n.sixseconds-header-root a,\n.sixseconds-header-root div,\n.sixseconds-header-root li,\n.sixseconds-header-root button {\n font-family: "Inter", sans-serif !important;\n}\n\n.sixseconds-header-main-list-menu {\n display: flex;\n}\n\n.sixseconds-header-main-list-menu li {\n padding: 0.5rem 0.5rem;\n}\n\n.sixseconds-header-main-list-menu li a {\n padding: 0 0.25rem;\n font-weight: 500;\n font-size: 12px;\n}\n\n.sixseconds-header-main-list-menu .sixseconds-header-menu-item {\n position: relative;\n padding: 0 16px;\n display: flex;\n align-items: center;\n height: 100%;\n}\n\n.sixseconds-header-main-list-menu .sixseconds-header-menu-link {\n text-decoration: none;\n color: #2a2a2a;\n /* Closer to 6seconds */\n font-weight: 500;\n font-size: 15px;\n padding: 8px 4px;\n transition: color 0.2s ease;\n font-family: "Inter", sans-serif;\n display: flex;\n align-items: center;\n gap: 4px;\n}\n\n.sixseconds-header-main-list-menu .sixseconds-header-menu-link:hover {\n color: #0073b1;\n}\n\n/* Submenu (Dropdown) */\n\n.sixseconds-header-main-list-menu .sixseconds-header-submenu-data {\n position: absolute;\n top: 150%;\n left: 0;\n background: white;\n border: 1px solid #e2e8f0;\n border-top: 3px solid #0073b1;\n box-shadow:\n 0px 12px 48px rgba(0, 0, 0, 0.12),\n 0 4px 16px rgba(0, 0, 0, 0.08);\n /* Even more premium shadow */\n display: block;\n opacity: 0;\n visibility: hidden;\n transform: translateY(12px);\n width: 200px;\n z-index: 1000;\n border-radius: 4px;\n /* More angular per 6seconds style */\n padding: 8px 0;\n transition:\n opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),\n transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),\n visibility 0.25s;\n}\n\n.sixseconds-header-main-list-menu .sixseconds-header-submenu-data li {\n list-style: none;\n padding: 0;\n}\n\n.sixseconds-header-main-list-menu .sixseconds-header-submenu-link {\n display: block;\n padding: 12px 28px;\n text-decoration: none;\n color: #2a2a2a;\n /* Darker grey */\n font-weight: 400;\n font-size: 14.5px;\n line-height: 1.4;\n white-space: normal;\n transition: all 0.2s ease;\n}\n\n.sixseconds-header-main-list-menu .sixseconds-header-submenu-link:hover {\n background: #f0f7fb;\n color: #0073b1;\n padding-left: 32px;\n /* Slight nudge */\n}\n\n/* Caret rotation on hover */\n\n.sixseconds-header-main-list-menu .sixseconds-header-menu-item:hover .sixseconds-header-desktop-caret {\n transform: rotate(180deg);\n}\n\n/* Show dropdown on hover */\n\n.sixseconds-header-main-list-menu .sixseconds-header-menu-item:hover .sixseconds-header-submenu-data {\n opacity: 1;\n visibility: visible;\n transform: translateY(0);\n}\n\n.sixseconds-header-small-device-menu {\n display: none;\n width: 100%;\n left: 0;\n top: 64px;\n background-color: #fff;\n position: fixed;\n overflow-y: auto;\n height: 95vh;\n box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);\n}\n\n.sixseconds-header-small-device-menu a.sixseconds-header-bg-main-menu {\n display: block;\n text-decoration: none;\n}\n\n.sixseconds-header-submenu-child li {\n padding: 0.5rem 0;\n}\n\n.sixseconds-header-submenu-child li a {\n text-decoration: none;\n}\n\n.sixseconds-header-layout-mobile-menu {\n padding-bottom: 12px;\n padding-inline: 0;\n height: 95vh;\n overflow-y: auto;\n padding-top: 8px;\n}\n\n.sixseconds-header-small-device-menu a {\n background-color: transparent;\n font-size: 16px;\n /* Slightly larger */\n font-weight: 600;\n /* Bolder for parent items */\n color: #1a1c1e;\n margin-bottom: 4px;\n padding: 16px 20px;\n border-bottom: 1px solid #f1f3f4;\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n\n.sixseconds-header-small-device-menu .sixseconds-header-submenu-child {\n padding-left: 0px;\n min-width: 100%;\n max-width: 100%;\n margin-top: 0;\n background-color: #fbfbfc;\n /* Slightly different background for sub-items */\n color: #1a1c1e;\n}\n\n.sixseconds-header-small-device-menu ul li .sixseconds-header-submenu-child-link {\n padding: 12px 32px;\n /* Indent more */\n font-weight: 400;\n /* Regular weight for sub-links */\n font-size: 14px;\n}\n\n.sixseconds-header-small-device-menu ul li a {\n background-color: transparent;\n color: #4a4d50;\n}\n\n.sixseconds-header-small-device-menu ul {\n padding-left: 15px;\n}\n\n.sixseconds-header-desktop-menu {\n display: flex;\n}\n\n.sixseconds-header-button-hamburger {\n display: none;\n position: absolute;\n right: 20px;\n top: 18px;\n z-index: 9;\n}\n\n.sixseconds-header-root .tox-editor-header {\n background-color: transparent;\n}\n\n.sixseconds-header-hamburger-icon-btn {\n padding: 8px;\n color: #5f6368;\n}\n\n.sixseconds-header-desktop-menu .sixseconds-header-menu-item .sixseconds-header-menu-link {\n font-size: 14px;\n font-weight: 500;\n}\n\n.sixseconds-header-small-device-menu {\n padding-inline: 20px;\n}\n\n@media screen and (max-width: 600px) and (min-width: 320px) {\n .sixseconds-header-notification-icon-error .MuiBadge-badge {\n font-size: 10px;\n padding: 0 4px;\n min-width: 16px;\n right: 5px;\n background-color: #d32f2f;\n }\n\n .sixseconds-header-submenu nav {\n padding: 0 !important;\n }\n\n .sixseconds-header-root .MuiPagination-root.MuiPagination-outlined {\n display: flex;\n justify-content: center;\n margin-left: 0;\n }\n\n .sixseconds-header-toggle-btn-menu {\n position: absolute;\n right: 20px;\n top: 12px;\n z-index: 99;\n }\n\n .sixseconds-header-right-icons {\n padding-right: 25px;\n }\n\n .sixseconds-header-button-hamburger {\n display: block;\n }\n\n .sixseconds-header-desktop-menu {\n display: none;\n }\n\n .sixseconds-header-small-device-menu {\n display: block;\n width: 100%;\n position: fixed;\n left: 0;\n background: #fff;\n top: 64px;\n }\n\n .main.sixseconds-header-login-page .sixseconds-header-login-body {\n width: 90% !important;\n }\n\n .sixseconds-header-submenu {\n width: 100%;\n max-width: 100% !important;\n }\n\n .sixseconds-header-sidebar {\n width: 280px !important;\n background-color: #f9fafb;\n z-index: 99;\n border-right: 1px solid #e0e0e0;\n }\n\n .sixseconds-header-sidemenu {\n width: 280px;\n background-color: #f9fafb;\n }\n\n .sixseconds-header-logo {\n opacity: 1;\n }\n\n .sixseconds-header-profile .sixseconds-header-menu {\n min-width: 280px;\n width: 100% !important;\n }\n}\n\n@media screen and (max-width: 1024px) and (min-width: 600px) {\n .sixseconds-header-toggle-btn-menu {\n position: absolute;\n right: 20px;\n top: 12px;\n }\n\n .sixseconds-header-right-icons {\n padding-right: 25px;\n }\n\n .sixseconds-header-button-hamburger {\n display: block;\n }\n\n .sixseconds-header-desktop-menu {\n display: none;\n }\n\n .sixseconds-header-small-device-menu {\n display: block;\n }\n\n .main.sixseconds-header-login-page .sixseconds-header-login-body {\n width: 450px !important;\n }\n\n .sixseconds-header-banner {\n margin-left: 0 !important;\n }\n\n .sixseconds-header-submenu {\n width: 100%;\n max-width: 100% !important;\n }\n\n .sixseconds-header-sidebar {\n width: 280px !important;\n background-color: #f9fafb;\n z-index: 99;\n }\n\n .sixseconds-header-sidemenu {\n width: 280px;\n background-color: #f9fafb;\n }\n\n .sixseconds-header-logo {\n opacity: 1;\n }\n\n .sixseconds-header-profile .sixseconds-header-menu {\n min-width: 280px;\n width: 100% !important;\n }\n}\n\n@media screen and (max-width: 1380px) and (min-width: 1024px) {\n .sixseconds-header-right-icons {\n padding-right: 25px;\n }\n\n .sixseconds-header-button-hamburger {\n display: block;\n }\n\n .sixseconds-header-desktop-menu {\n display: none;\n }\n\n .sixseconds-header-small-device-menu {\n display: block;\n width: 100%;\n position: fixed;\n left: 0;\n background: #fff;\n top: 64px;\n }\n\n .sixseconds-header-button-hamburger {\n display: block;\n }\n\n .sixseconds-header-right-icons {\n padding-right: 25px;\n }\n}'));
|
|
15426
15461
|
document.head.appendChild(elementStyle);
|
|
15427
15462
|
}
|
|
15428
15463
|
} catch (e) {
|