Skip to content

Commit 26f5351

Browse files
update deps (#165)
1 parent d24ba1e commit 26f5351

File tree

9 files changed

+2558
-2081
lines changed

9 files changed

+2558
-2081
lines changed

Dockerfile.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/playwright:v1.55.0
1+
FROM mcr.microsoft.com/playwright:v1.58.0
22
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
33
RUN apt-get update && apt-get install -y make
44

example/fava-dashboards.d.ts

Lines changed: 254 additions & 127 deletions
Large diffs are not rendered by default.

frontend/eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default defineConfig(
99
eslint.configs.recommended,
1010
eslintPluginReact.configs.flat.recommended,
1111
eslintPluginReact.configs.flat["jsx-runtime"],
12-
eslintPluginReactHooks.configs["recommended-latest"],
12+
eslintPluginReactHooks.configs.flat["recommended-latest"],
1313
tseslint.configs.recommended,
1414
eslintPluginPrettierRecommended,
1515
{

frontend/package-lock.json

Lines changed: 1081 additions & 954 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -12,42 +12,42 @@
1212
"lint:fix": "eslint --fix ."
1313
},
1414
"devDependencies": {
15-
"@eslint/js": "^9.35.0",
15+
"@eslint/js": "^9.39.2",
1616
"@microsoft/api-extractor": "^7.55.2",
17-
"@playwright/test": "^1.55.0",
18-
"@tanstack/react-router-devtools": "^1.145.11",
17+
"@playwright/test": "^1.58.0",
18+
"@tanstack/react-router-devtools": "^1.155.0",
1919
"@types/babel__standalone": "^7.1.9",
2020
"@types/d3": "^7.4.3",
21-
"@types/d3-sankey": "^0.12.4",
22-
"@types/node": "^24.0.1",
23-
"@types/react": "^19.1.13",
24-
"@types/react-dom": "^19.1.9",
25-
"esbuild": "^0.25.0",
26-
"eslint": "^9.35.0",
27-
"eslint-config-prettier": "^10.0.1",
28-
"eslint-plugin-prettier": "^5.2.3",
21+
"@types/d3-sankey": "^0.12.5",
22+
"@types/node": "^25.0.10",
23+
"@types/react": "^19.2.9",
24+
"@types/react-dom": "^19.2.3",
25+
"esbuild": "^0.27.2",
26+
"eslint": "^9.39.2",
27+
"eslint-config-prettier": "^10.1.8",
28+
"eslint-plugin-prettier": "^5.5.5",
2929
"eslint-plugin-react": "^7.37.5",
30-
"eslint-plugin-react-hooks": "^5.1.0",
31-
"prettier": "^3.4.2",
32-
"prettier-plugin-organize-imports": "^4.1.0",
30+
"eslint-plugin-react-hooks": "^7.0.1",
31+
"prettier": "^3.8.1",
32+
"prettier-plugin-organize-imports": "^4.3.0",
3333
"typescript": "5.8.2",
34-
"typescript-eslint": "^8.43.0"
34+
"typescript-eslint": "^8.53.1"
3535
},
3636
"dependencies": {
37-
"@babel/standalone": "^7.28.4",
37+
"@babel/standalone": "^7.28.6",
3838
"@emotion/react": "^11.14.0",
39-
"@emotion/styled": "^11.14.0",
40-
"@mui/icons-material": "^7.3.2",
41-
"@mui/material": "^7.3.2",
42-
"@mui/x-data-grid": "^8.15.0",
43-
"@tanstack/react-query": "^5.66.0",
44-
"@tanstack/react-router": "^1.144.0",
39+
"@emotion/styled": "^11.14.1",
40+
"@mui/icons-material": "^7.3.7",
41+
"@mui/material": "^7.3.7",
42+
"@mui/x-data-grid": "^8.26.0",
43+
"@tanstack/react-query": "^5.90.20",
44+
"@tanstack/react-router": "^1.155.0",
4545
"d3": "^7.9.0",
4646
"d3-sankey": "^0.12.3",
4747
"echarts": "^6.0.0",
48-
"react": "^19.1.1",
49-
"react-dom": "^19.1.1",
50-
"react-error-boundary": "^6.0.3",
51-
"zod": "^4.1.12"
48+
"react": "^19.2.3",
49+
"react-dom": "^19.2.3",
50+
"react-error-boundary": "^6.1.0",
51+
"zod": "^4.3.6"
5252
}
5353
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import { Alert } from "@mui/material";
22

33
export interface ErrorAlertProps {
4-
error: Error;
4+
error: unknown;
55
}
66

77
export function ErrorAlert({ error }: ErrorAlertProps) {
88
return (
99
<Alert severity="error" slotProps={{ message: { sx: { whiteSpace: "pre-wrap" } } }}>
10-
{error.message}
10+
{String(error)}
1111
</Alert>
1212
);
1313
}

frontend/src/components/Header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export function Header() {
1313
<Box className="headerline" sx={{ ".active": { color: "inherit" } }}>
1414
{dashboards.map((dashboard, i) => (
1515
<h3 key={i}>
16-
<Link to="." search={(prev) => ({ ...retainSearchParams(prev), dashboard: slugify(dashboard.name) })}>
16+
<Link to="/" search={(prev) => ({ ...retainSearchParams(prev), dashboard: slugify(dashboard.name) })}>
1717
{dashboard.name}
1818
</Link>
1919
</h3>

src/fava_dashboards/FavaDashboards.js

Lines changed: 392 additions & 373 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

uv.lock

Lines changed: 800 additions & 596 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)