Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions client/.yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1 +1,17 @@
nodeLinker: node-modules

logFilters:
- text: "@tanstack/eslint-plugin-query"
code: YN0060
level: discard
- text: "@rolldown/plugin-babel"
code: YN0002
level: discard

packageExtensions:
"@napi-rs/wasm-runtime@*":
peerDependenciesMeta:
"@emnapi/core":
optional: true
"@emnapi/runtime":
optional: true
51 changes: 28 additions & 23 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,44 +13,49 @@
"@dnd-kit/helpers": "^0.3.2",
"@dnd-kit/react": "^0.3.2",
"@icons-pack/react-simple-icons": "^13.13.0",
"@mantine/carousel": "^8.3.18",
"@mantine/charts": "^8.3.18",
"@mantine/code-highlight": "^8.3.18",
"@mantine/core": "^8.3.18",
"@mantine/dates": "^8.3.18",
"@mantine/dropzone": "^8.3.18",
"@mantine/form": "^8.3.18",
"@mantine/hooks": "^8.3.18",
"@mantine/modals": "^8.3.18",
"@mantine/notifications": "^8.3.18",
"@mantine/nprogress": "^8.3.18",
"@mantine/spotlight": "^8.3.18",
"@tanstack/react-query": "^5.96.1",
"@mantine/carousel": "^9.0.1",
"@mantine/charts": "^9.0.1",
"@mantine/code-highlight": "^9.0.1",
"@mantine/core": "^9.0.1",
"@mantine/dates": "^9.0.1",
"@mantine/dropzone": "^9.0.1",
"@mantine/form": "^9.0.1",
"@mantine/hooks": "^9.0.1",
"@mantine/modals": "^9.0.1",
"@mantine/notifications": "^9.0.1",
"@mantine/nprogress": "^9.0.1",
"@mantine/spotlight": "^9.0.1",
"@tanstack/react-query": "^5.96.2",
"@types/papaparse": "^5.5.2",
"axios": "^1.14.0",
"dayjs": "^1.11.20",
"embla-carousel": "8.6.0",
"embla-carousel-react": "8.6.0",
"i18next": "^25.10.10",
"i18next": "^26.0.3",
"i18next-http-backend": "^3.0.4",
"lucide-react": "^0.577.0",
"papaparse": "^5.5.3",
"qrcode.react": "^4.2.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-i18next": "^16.6.6",
"react-i18next": "^17.0.2",
"react-is": "^19.0.0",
"react-router": "^7.14.0",
"recharts": "3.8.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tanstack/eslint-plugin-query": "^5.96.1",
"@tanstack/react-query-devtools": "^5.96.1",
"@types/node": "^25.5.0",
"@babel/core": "^7.29.0",
"@eslint/js": "^9.9.1",
"@rolldown/plugin-babel": "^0.2.2",
"@tanstack/eslint-plugin-query": "^5.96.2",
"@tanstack/react-query-devtools": "^5.96.2",
"@types/babel__core": "^7",
"@types/node": "^25.5.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"@vitejs/plugin-react": "^6.0.1",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^10.1.0",
"eslint": "^9.9.1",
"eslint-config-mantine": "^4.0.3",
"eslint-plugin-i18n-json": "^4.0.1",
"eslint-plugin-jsonc": "^3.1.2",
Expand All @@ -64,9 +69,9 @@
"postcss-preset-mantine": "^1.18.0",
"postcss-simple-vars": "^7.0.1",
"react-scan": "^0.5.3",
"typescript": "^5.9.3",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"vite": "^7.3.1"
"vite": "^8.0.5"
},
"resolutions": {
"react-is": "^19.0.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const TransactionsHeader = (
<TransactionsSettings modalOpened={settingsOpen} closeModal={close} />
</Group>
</Flex>
<Collapse in={isFiltersPanelOpen} transitionDuration={100}>
<Collapse expanded={isFiltersPanelOpen} transitionDuration={100}>
<FilterCard />
</Collapse>
</Stack>
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/BulkActionBar/BulkActionBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ const BulkActionBar = (props: BulkActionBarProps): React.ReactNode => {
</Flex>

{/* Inline delete confirmation */}
<Collapse in={showDeleteConfirm}>
<Collapse expanded={showDeleteConfirm}>
<Group gap="0.5rem" align="center">
<Text size="sm">
{t("confirm_delete_transactions_message", {
Expand Down
11 changes: 3 additions & 8 deletions client/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import react, { reactCompilerPreset } from "@vitejs/plugin-react";
import babel from "@rolldown/plugin-babel";
import path from "path";

// https://vite.dev/config/
export default defineConfig({
plugins: [
react({
babel: {
plugins: [["babel-plugin-react-compiler", { target: "19" }]],
},
}),
],
plugins: [react(), babel({ presets: [reactCompilerPreset()] })],
build: {
rollupOptions: {
output: {
Expand Down
Loading
Loading