Update frontend dependencies

This commit is contained in:
RunasSudo 2025-06-02 17:23:49 +10:00
parent 1d6c6e1da3
commit 1ca9c3cbe8
Signed by: RunasSudo
GPG Key ID: 7234E476BF21C61A
3 changed files with 458 additions and 443 deletions

View File

@ -10,28 +10,28 @@
"tauri": "tauri"
},
"dependencies": {
"@heroicons/vue": "^2.1.5",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "~2",
"@tauri-apps/plugin-shell": "^2",
"@tauri-apps/plugin-sql": "~2",
"@tauri-apps/plugin-store": "~2",
"@heroicons/vue": "^2.2.0",
"@tauri-apps/api": "^2.5.0",
"@tauri-apps/plugin-dialog": "~2.2.2",
"@tauri-apps/plugin-shell": "^2.2.1",
"@tauri-apps/plugin-sql": "~2.2.0",
"@tauri-apps/plugin-store": "~2.2.0",
"clusterize.js": "^1.0.0",
"csv-parse": "^5.6.0",
"dayjs": "^1.11.13",
"vue": "^3.3.4",
"vue-router": "4"
"vue": "^3.5.16",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.9",
"@tauri-apps/cli": "^2",
"@tailwindcss/forms": "^0.5.10",
"@tauri-apps/cli": "^2.5.0",
"@types/clusterize.js": "^0.18.3",
"@vitejs/plugin-vue": "^5.0.5",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.15",
"typescript": "^5.2.2",
"vite": "^5.3.1",
"vue-tsc": "^2.0.22"
"@vitejs/plugin-vue": "^5.2.4",
"autoprefixer": "^10.4.21",
"postcss": "^8.5.4",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3",
"vite": "^5.4.19",
"vue-tsc": "^2.2.10"
}
}

865
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -213,7 +213,7 @@
VALUES ($1, $2)`,
[newTransaction.dt, newTransaction.description]
);
newTransaction.id = result.lastInsertId;
newTransaction.id = result.lastInsertId!;
} else {
// Update existing transaction
await dbTransaction.execute(