Skip to content

Commit da9d8d6

Browse files
committed
chore(website): upgrade dependencies
1 parent e8b1ade commit da9d8d6

File tree

6 files changed

+2191
-3177
lines changed

6 files changed

+2191
-3177
lines changed

apps/website/package.json

Lines changed: 26 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -13,35 +13,36 @@
1313
"deploy": "netlify deploy --dir dist/apps/website"
1414
},
1515
"dependencies": {
16-
"@emotion/react": "^11.11.1",
17-
"@emotion/styled": "^11.11.0",
18-
"@mui/icons-material": "^5.14.13",
19-
"@mui/lab": "^5.0.0-alpha.148",
20-
"@mui/material": "^5.14.13",
16+
"@emotion/react": "^11.14.0",
17+
"@emotion/styled": "^11.14.0",
18+
"@mui/icons-material": "^6.4.8",
19+
"@mui/lab": "^6.0.0-beta.31",
20+
"@mui/material": "^6.4.8",
21+
"@mui/x-date-pickers": "^7.28.0",
2122
"bundlemon-utils": "^2.0.1",
22-
"material-react-table": "^1.15.0",
23-
"mobx": "^6.10.2",
24-
"mobx-react-lite": "^4.0.5",
25-
"notistack": "^3.0.1",
26-
"react": "^18.2.0",
27-
"react-dom": "^18.2.0",
23+
"material-react-table": "^3.2.1",
24+
"mobx": "^6.13.7",
25+
"mobx-react-lite": "^4.1.0",
26+
"notistack": "^3.0.2",
27+
"react": "^19.0.0",
28+
"react-dom": "^19.0.0",
2829
"react-query": "^3.39.3",
29-
"react-router": "^6.16.0",
30-
"react-router-dom": "^6.16.0",
31-
"recharts": "^2.8.0"
30+
"react-router": "^7.4.0",
31+
"react-router-dom": "^7.4.0",
32+
"recharts": "^2.15.1"
3233
},
3334
"devDependencies": {
34-
"@types/react": "^18.2.28",
35-
"@types/react-dom": "^18.2.13",
35+
"@types/react": "^19.0.12",
36+
"@types/react-dom": "^19.0.4",
3637
"@types/react-router-dom": "^5.3.3",
37-
"@types/recharts": "^1.8.25",
38-
"@vitejs/plugin-basic-ssl": "^1.1.0",
39-
"eslint-plugin-jsx-a11y": "^6.8.0",
40-
"eslint-plugin-react": "^7.33.2",
41-
"eslint-plugin-react-hooks": "^4.6.0",
42-
"netlify-cli": "^17.23.5",
43-
"vite": "^5.4.12",
44-
"vite-bundle-analyzer": "^0.17.0",
45-
"vite-tsconfig-paths": "^4.3.2"
38+
"@types/recharts": "^1.8.29",
39+
"@vitejs/plugin-basic-ssl": "^2.0.0",
40+
"eslint-plugin-jsx-a11y": "^6.10.2",
41+
"eslint-plugin-react": "^7.37.4",
42+
"eslint-plugin-react-hooks": "^5.2.0",
43+
"netlify-cli": "^19.0.3",
44+
"vite": "^6.2.2",
45+
"vite-bundle-analyzer": "^0.18.1",
46+
"vite-tsconfig-paths": "^5.1.4"
4647
}
4748
}

apps/website/src/components/Layout/components/UserSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const UserSection = observer(() => {
5656
</List>
5757
<Divider />
5858
<List component="nav">
59-
<ListItem button onClick={handleLogout}>
59+
<ListItem onClick={handleLogout}>
6060
<ListItemIcon>
6161
<LogoutIcon />
6262
</ListItemIcon>

apps/website/src/components/Table/Table.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { observer } from 'mobx-react-lite';
2-
import MaterialReactTable, { MaterialReactTableProps } from 'material-react-table';
2+
import { MaterialReactTable, MRT_TableOptions } from 'material-react-table';
33

4-
interface TableProps<D extends Record<string, any> = Record<string, any>> extends MaterialReactTableProps<D> {
4+
interface TableProps<D extends Record<string, any> = Record<string, any>> extends MRT_TableOptions<D> {
55
maxHeight?: number;
66
}
77

apps/website/tsconfig.spec.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"types": ["vite/client", "node", "@nx/react/typings/cssmodule.d.ts", "@nx/react/typings/image.d.ts"]
66
},
77
"include": [
8-
"vite.config.ts",
8+
"vite.config.mts",
99
"src/**/*.test.ts",
1010
"src/**/*.spec.ts",
1111
"src/**/*.test.tsx",

0 commit comments

Comments
 (0)