sixseconds-modules 1.6.20 → 1.6.22

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
@@ -2492,7 +2492,7 @@ function createEnv(opts) {
2492
2492
  }
2493
2493
  return runtimeEnv;
2494
2494
  }
2495
- const __vite_import_meta_env__ = { "BASE_URL": "/", "DEV": false, "MODE": "development", "PROD": true, "SSR": false, "VITE_MODULES_CARDS_ADMIN_FRONTEND_BASE_URL": "https://dev-sso.6seconds.org", "VITE_MODULES_CARDS_HOME_FRONTEND_BASE_URL": "https://dev-sso.6seconds.org", "VITE_MODULES_CERT_FRONTEND_BASE_URL": "https://dev-sso.6seconds.org", "VITE_MODULES_EVENTS_FRONTEND_BASE_URL": "https://dev-sso.6seconds.org", "VITE_MODULES_SSO_BACKEND_BASE_URL": "https://dev-ssoapi.6seconds.org", "VITE_MODULES_SSO_FRONTEND_BASE_URL": "https://dev-sso.6seconds.org", "VITE_MODULES_TOOLS_FRONTEND_BASE_URL": "https://dev-sso.6seconds.org" };
2495
+ const __vite_import_meta_env__ = { "BASE_URL": "/", "DEV": false, "MODE": "qa", "PROD": true, "SSR": false, "VITE_MODULES_CARDS_ADMIN_FRONTEND_BASE_URL": "https://qa-sso.6seconds.org", "VITE_MODULES_CARDS_HOME_FRONTEND_BASE_URL": "https://qa-sso.6seconds.org", "VITE_MODULES_CERT_FRONTEND_BASE_URL": "https://qa-sso.6seconds.org", "VITE_MODULES_EVENTS_FRONTEND_BASE_URL": "https://qa-sso.6seconds.org", "VITE_MODULES_SSO_BACKEND_BASE_URL": "https://qa-ssoapi.6seconds.org", "VITE_MODULES_SSO_FRONTEND_BASE_URL": "https://qa-sso.6seconds.org", "VITE_MODULES_TOOLS_FRONTEND_BASE_URL": "https://qa-sso.6seconds.org" };
2496
2496
  const env = createEnv({
2497
2497
  runtimeEnv: __vite_import_meta_env__
2498
2498
  });
@@ -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: "sanskar.sahu@digimonk.in",
11006
- role: "Master",
11007
- fullName: "sanskar sahu",
11008
- bio: "this is my bio",
11009
- title: "MR.",
11005
+ email: "sdf",
11006
+ role: "",
11007
+ fullName: "sadf",
11008
+ bio: "",
11009
+ title: "",
11010
11010
  certId: 1,
11011
- certProfileUrl: "sf",
11012
- company: "6seconds",
11013
- certBio: "this is my bio",
11014
- certOfferToHelp: "this is my bio",
11015
- appName: "Tools",
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: ["code", "design", "product", "ux", "uxui"],
11043
- country: "United States",
11044
- languages: ["English (US)", "Spanish"],
11045
- areaOfWork: ["English (US)", "Spanish"],
11046
- linkedInUrl: "https://www.linkedin.com/in/sanskar-sahu-8a7b1a1b4/",
11042
+ certification: [],
11043
+ country: "",
11044
+ languages: [],
11045
+ areaOfWork: [],
11046
+ linkedInUrl: "",
11047
11047
  notificationCount: 10
11048
11048
  },
11049
11049
  interFaceLangList: [