Skip to content

Commit

Permalink
Merge pull request #7 from Clubs-Council-IIITH/package_updates
Browse files Browse the repository at this point in the history
Package updates
  • Loading branch information
abhiramtilakiiit authored Nov 6, 2024
2 parents c61a93d + 36f12c3 commit 66341b9
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 34 deletions.
64 changes: 32 additions & 32 deletions web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,45 +9,45 @@
"lint": "next lint"
},
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@fullcalendar/core": "^6.1.10",
"@fullcalendar/daygrid": "^6.1.10",
"@fullcalendar/react": "^6.1.10",
"@iconify/react": "^4.1.1",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@mui/icons-material": "^5.15.10",
"@mui/lab": "^5.0.0-alpha.165",
"@mui/material": "^5.15.10",
"@mui/x-data-grid": "^6.19.4",
"@mui/x-date-pickers": "^6.19.4",
"@next/mdx": "^14.1.0",
"@urql/next": "^1.1.1",
"cookies-next": "^4.1.1",
"dayjs": "^1.11.10",
"framer-motion": "^11.0.5",
"graphql": "^16.8.1",
"@emotion/cache": "^11.13.1",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@fullcalendar/core": "^6.1.15",
"@fullcalendar/daygrid": "^6.1.15",
"@fullcalendar/react": "^6.1.15",
"@iconify/react": "^5.0.2",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@mui/icons-material": "^6.1.6",
"@mui/lab": "^6.0.0-beta.14",
"@mui/material": "^6.1.6",
"@mui/x-data-grid": "^7.22.1",
"@mui/x-date-pickers": "^7.22.1",
"@next/mdx": "^14.2.15",
"@urql/next": "^1.1.2",
"cookies-next": "^4.3.0",
"dayjs": "^1.11.13",
"framer-motion": "^11.11.11",
"graphql": "^16.9.0",
"graphql-tag": "^2.12.6",
"jwt-decode": "^4.0.0",
"libphonenumber-js": "^1.10.58",
"next": "^14.1.0",
"next-mdx-remote": "^4.4.1",
"libphonenumber-js": "^1.11.12",
"next": "^14.2.15",
"next-mdx-remote": "^5.0.0",
"nprogress": "^0.2.0",
"path-to-regexp": "^6.2.1",
"path-to-regexp": "^8.2.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react": "^18.3.1",
"react-custom-scrollbars-2": "^4.5.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.50.1",
"react-is": "^18.2.0",
"react-dom": "^18.3.1",
"react-dropzone": "^14.3.5",
"react-hook-form": "^7.53.1",
"react-is": "^18.3.1",
"react-nice-avatar": "^1.5.0",
"react-slick": "^0.30.1",
"sharp": "^0.33.2",
"react-slick": "^0.30.2",
"sharp": "^0.33.5",
"slick-carousel": "^1.8.1",
"string-to-color": "^2.2.2",
"urql": "^4.0.6"
"urql": "^4.2.0"
}
}
6 changes: 4 additions & 2 deletions web/src/components/profile/UserMemberships.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ export default function UserMemberships({ rows = [] }) {
</Typography>
);
},
display: "flex",
},
{
field: "cid",
Expand All @@ -87,6 +88,7 @@ export default function UserMemberships({ rows = [] }) {
</Typography>
);
},
display: "flex",
},
{
field: "startYear",
Expand All @@ -100,7 +102,7 @@ export default function UserMemberships({ rows = [] }) {
headerName: "End Year",
headerAlign: "center",
align: "center",
valueGetter: ({ row }) => row.endYear || "-",
valueGetter: (value, row, column, apiRef) => row.endYear || "-",
flex: isMobile ? null : 3,
},
];
Expand All @@ -122,7 +124,7 @@ export default function UserMemberships({ rows = [] }) {
pagination: { paginationModel: { pageSize: 5 } },
}}
disableColumnMenu={true}
pageSizeOptions={[5, 10, 25]}
pageSizeOptions={[5, 10]}
sx={{
// disable cell selection style
".MuiDataGrid-cell:focus": {
Expand Down

0 comments on commit 66341b9

Please sign in to comment.