Skip to content

Commit 4bbeb49

Browse files
batch fix ui issues (#2834)
1 parent b6ba9dd commit 4bbeb49

12 files changed

Lines changed: 436 additions & 402 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/defguard_generator/Cargo.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,17 @@ rust-version = "1.87.0"
99

1010
[dependencies]
1111
anyhow = { workspace = true }
12+
dotenvy = "0.15"
1213
chrono = { workspace = true }
1314
clap = { workspace = true, features = ["derive"] }
1415
defguard_common = { workspace = true }
1516
defguard_core = { workspace = true }
1617
rand = { workspace = true }
17-
sqlx = { workspace = true, features = ["postgres", "runtime-tokio-native-tls", "chrono"] }
18+
sqlx = { workspace = true, features = [
19+
"postgres",
20+
"runtime-tokio-native-tls",
21+
"chrono",
22+
] }
1823
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
1924
tracing = { workspace = true }
2025
tracing-subscriber = { workspace = true, features = ["env-filter"] }

tools/defguard_generator/src/main.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,9 @@ async fn main() -> Result<()> {
6464
)
6565
.init();
6666

67+
// load .env file if present
68+
let _ = dotenvy::dotenv();
69+
6770
// parse CLI options
6871
let cli = Cli::parse();
6972

web/biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.4.12/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.4.13/schema.json",
33
"vcs": {
44
"enabled": false,
55
"clientKind": "git",

web/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@
1818
"dependencies": {
1919
"@axa-ch/react-polymorphic-types": "^1.4.1",
2020
"@floating-ui/react": "^0.27.19",
21-
"@inlang/paraglide-js": "^2.16.0",
21+
"@inlang/paraglide-js": "^2.17.0",
2222
"@react-hook/resize-observer": "^2.0.2",
2323
"@shortercode/webzip": "1.1.1-0",
2424
"@stablelib/base64": "^2.0.1",
2525
"@stablelib/x25519": "^2.0.1",
2626
"@tanstack/react-form": "^1.29.1",
27-
"@tanstack/react-query": "^5.99.2",
28-
"@tanstack/react-router": "^1.168.23",
27+
"@tanstack/react-query": "^5.100.5",
28+
"@tanstack/react-router": "^1.168.25",
2929
"@tanstack/react-table": "^8.21.3",
3030
"@tanstack/react-virtual": "^3.13.24",
3131
"@uidotdev/usehooks": "^2.4.1",
@@ -54,13 +54,13 @@
5454
"zustand": "^5.0.12"
5555
},
5656
"devDependencies": {
57-
"@biomejs/biome": "2.4.12",
58-
"@inlang/paraglide-js": "2.16.0",
57+
"@biomejs/biome": "2.4.13",
58+
"@inlang/paraglide-js": "2.17.0",
5959
"@tanstack/devtools-vite": "^0.6.0",
6060
"@tanstack/react-devtools": "^0.10.2",
61-
"@tanstack/react-query-devtools": "^5.99.2",
61+
"@tanstack/react-query-devtools": "^5.100.5",
6262
"@tanstack/react-router-devtools": "^1.166.13",
63-
"@tanstack/router-plugin": "^1.167.22",
63+
"@tanstack/router-plugin": "^1.167.28",
6464
"@types/byte-size": "^8.1.2",
6565
"@types/humanize-duration": "^3.27.4",
6666
"@types/lodash-es": "^4.17.12",
@@ -75,7 +75,7 @@
7575
"prettier": "^3.8.3",
7676
"sass": "^1.99.0",
7777
"sharp": "^0.34.5",
78-
"stylelint": "^17.9.0",
78+
"stylelint": "^17.9.1",
7979
"stylelint-config-standard-scss": "^17.0.0",
8080
"stylelint-scss": "^7.0.0",
8181
"typescript": "~5.9.3",

0 commit comments

Comments
 (0)