sevago-sso-fe 1.0.75 → 1.0.77

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.esm.js CHANGED
@@ -6636,9 +6636,9 @@ const IconLeft = (props) => /* @__PURE__ */ jsx("svg", { width: "20", height: "1
6636
6636
  {
6637
6637
  d: "M8 15L1 8M1 8L8 1M1 8L19 8",
6638
6638
  stroke: "currentColor",
6639
- "stroke-width": "2",
6640
- "stroke-linecap": "round",
6641
- "stroke-linejoin": "round"
6639
+ strokeWidth: "2",
6640
+ strokeLinecap: "round",
6641
+ strokeLinejoin: "round"
6642
6642
  }
6643
6643
  ) });
6644
6644
  const IconRight = (props) => /* @__PURE__ */ jsx("svg", { width: "20", height: "16", viewBox: "0 0 20 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: /* @__PURE__ */ jsx(
@@ -6646,9 +6646,9 @@ const IconRight = (props) => /* @__PURE__ */ jsx("svg", { width: "20", height: "
6646
6646
  {
6647
6647
  d: "M12 1L19 8M19 8L12 15M19 8L1 8",
6648
6648
  stroke: "currentColor",
6649
- "stroke-width": "2",
6650
- "stroke-linecap": "round",
6651
- "stroke-linejoin": "round"
6649
+ strokeWidth: "2",
6650
+ strokeLinecap: "round",
6651
+ strokeLinejoin: "round"
6652
6652
  }
6653
6653
  ) });
6654
6654
  const StackRow = styled(Stack)(() => ({
@@ -7245,7 +7245,8 @@ const AppGrid = ({
7245
7245
  ),
7246
7246
  /* @__PURE__ */ jsx(Typography, { variant: titleVariant, sx: { color: titleColor ?? theme.palette.common.white }, children: app.content })
7247
7247
  ]
7248
- }
7248
+ },
7249
+ index
7249
7250
  );
7250
7251
  })
7251
7252
  }
@@ -9604,15 +9605,12 @@ const AppsSidebar = ({
9604
9605
  }) => {
9605
9606
  if (!isOpen) return null;
9606
9607
  const theme = useTheme();
9607
- const appsGroupObj = Object.values(APP_OBJ).reduce(
9608
- (r, e) => {
9609
- if (blacklist.includes(e.path[env])) return r;
9610
- if (r[e.group]) r[e.group].push(e);
9611
- else r[e.group] = [e];
9612
- return r;
9613
- },
9614
- {}
9615
- );
9608
+ const appsGroupObj = Object.values(APP_OBJ).reduce((r, e) => {
9609
+ if (blacklist.includes(e.path[env])) return r;
9610
+ if (r[e.group]) r[e.group].push(e);
9611
+ else r[e.group] = [e];
9612
+ return r;
9613
+ }, {});
9616
9614
  return /* @__PURE__ */ jsxs(Fragment, { children: [
9617
9615
  /* @__PURE__ */ jsx(
9618
9616
  Box,