@cullsin/lnc-menu 4.5.0 → 5.1.0

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.
@@ -1,6 +1,5 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import RecentActorsOutlinedIcon from "@mui/icons-material/RecentActorsOutlined";
3
- import GroupAddOutlinedIcon from "@mui/icons-material/GroupAddOutlined";
4
3
  import Box from "@mui/material/Box";
5
4
  import Drawer from "@mui/material/Drawer";
6
5
  import List from "@mui/material/List";
@@ -24,8 +23,7 @@ function SideMenu({ useDrawer, SampleMgmtIcon, location, language = 'en' }) {
24
23
  text: t.menu.patientManagement,
25
24
  icon: _jsx(RecentActorsOutlinedIcon, {}),
26
25
  subMenu: [
27
- { text: t.menu.patient, path: `/patient/${language}/patient-listing` },
28
- { text: t.menu.family, path: `/family/${language}/family-listing` },
26
+ { text: t.menu.patient, path: `/patient/${language}/patient-listing` }
29
27
  ],
30
28
  },
31
29
  {
@@ -35,11 +33,6 @@ function SideMenu({ useDrawer, SampleMgmtIcon, location, language = 'en' }) {
35
33
  { text: t.menu.sampleListing, path: `/sample/${language}/sample-listing` }
36
34
  ],
37
35
  },
38
- {
39
- text: t.menu.carrierDuoTrio,
40
- icon: _jsx(GroupAddOutlinedIcon, {}),
41
- path: `/carrier-duo-trio/${language}/`,
42
- },
43
36
  ], [SampleMgmtIcon, t, language]);
44
37
  // 🔁 Sync selection with current path
45
38
  React.useEffect(() => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cullsin/lnc-menu",
3
- "version": "4.5.0",
3
+ "version": "5.1.0",
4
4
  "description": "Reusable SideMenu component for MedGenome LNC platform using MUI",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",