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.cjs.js CHANGED
@@ -6654,9 +6654,9 @@ const IconLeft = (props) => /* @__PURE__ */ jsxRuntime.jsx("svg", { width: "20",
6654
6654
  {
6655
6655
  d: "M8 15L1 8M1 8L8 1M1 8L19 8",
6656
6656
  stroke: "currentColor",
6657
- "stroke-width": "2",
6658
- "stroke-linecap": "round",
6659
- "stroke-linejoin": "round"
6657
+ strokeWidth: "2",
6658
+ strokeLinecap: "round",
6659
+ strokeLinejoin: "round"
6660
6660
  }
6661
6661
  ) });
6662
6662
  const IconRight = (props) => /* @__PURE__ */ jsxRuntime.jsx("svg", { width: "20", height: "16", viewBox: "0 0 20 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: /* @__PURE__ */ jsxRuntime.jsx(
@@ -6664,9 +6664,9 @@ const IconRight = (props) => /* @__PURE__ */ jsxRuntime.jsx("svg", { width: "20"
6664
6664
  {
6665
6665
  d: "M12 1L19 8M19 8L12 15M19 8L1 8",
6666
6666
  stroke: "currentColor",
6667
- "stroke-width": "2",
6668
- "stroke-linecap": "round",
6669
- "stroke-linejoin": "round"
6667
+ strokeWidth: "2",
6668
+ strokeLinecap: "round",
6669
+ strokeLinejoin: "round"
6670
6670
  }
6671
6671
  ) });
6672
6672
  const StackRow = styled(material.Stack)(() => ({
@@ -7263,7 +7263,8 @@ const AppGrid = ({
7263
7263
  ),
7264
7264
  /* @__PURE__ */ jsxRuntime.jsx(material.Typography, { variant: titleVariant, sx: { color: titleColor ?? theme.palette.common.white }, children: app.content })
7265
7265
  ]
7266
- }
7266
+ },
7267
+ index
7267
7268
  );
7268
7269
  })
7269
7270
  }
@@ -9622,15 +9623,12 @@ const AppsSidebar = ({
9622
9623
  }) => {
9623
9624
  if (!isOpen) return null;
9624
9625
  const theme = useTheme();
9625
- const appsGroupObj = Object.values(APP_OBJ).reduce(
9626
- (r, e) => {
9627
- if (blacklist.includes(e.path[env])) return r;
9628
- if (r[e.group]) r[e.group].push(e);
9629
- else r[e.group] = [e];
9630
- return r;
9631
- },
9632
- {}
9633
- );
9626
+ const appsGroupObj = Object.values(APP_OBJ).reduce((r, e) => {
9627
+ if (blacklist.includes(e.path[env])) return r;
9628
+ if (r[e.group]) r[e.group].push(e);
9629
+ else r[e.group] = [e];
9630
+ return r;
9631
+ }, {});
9634
9632
  return /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
9635
9633
  /* @__PURE__ */ jsxRuntime.jsx(
9636
9634
  material.Box,