Skip to content
Closed
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
1,683 changes: 889 additions & 794 deletions package-lock.json

Large diffs are not rendered by default.

34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
"node": "22.14.0"
},
"dependencies": {
"@blueprintjs/core": "^5.18.0",
"@blueprintjs/icons": "^5.21.0",
"@blueprintjs/core": "^5.19.0",
"@blueprintjs/icons": "^5.22.0",
"@emotion/styled": "^11.14.0",
"fifo-logger": "^1.0.0",
"filelist-utils": "^1.11.3",
"nmr-load-save": "^3.3.0",
"nmr-processing": "^17.1.3",
"nmrium": "^0.62.1",
"react-science": "^18.0.2"
"nmr-load-save": "^3.6.0",
"nmr-processing": "^18.1.0",
"nmrium": "^0.64.0",
"react-science": "^18.1.0"
},
"scripts": {
"start": "vite --host localhost --port 3000 --open",
Expand All @@ -38,29 +38,29 @@
"test-e2e-server": "serve -l tcp://localhost:3000 dist"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.26.3",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.27.0",
"@babel/plugin-transform-modules-commonjs": "^7.27.1",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@playwright/test": "^1.52.0",
"@simbathesailor/use-what-changed": "^2.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.14.1",
"@types/node": "^22.15.29",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react-swc": "^3.9.0",
"@vitejs/plugin-react-swc": "^3.10.1",
"cross-env": "^7.0.3",
"eslint": "^9.25.1",
"eslint-config-cheminfo-react": "^16.0.0",
"eslint-config-cheminfo-typescript": "^18.0.0",
"eslint": "^9.28.0",
"eslint-config-cheminfo-react": "^16.0.2",
"eslint-config-cheminfo-typescript": "^18.0.1",
"jest": "^29.7.0",
"prettier": "3.5.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^7.5.1",
"react-router-dom": "^7.6.2",
"serve": "^14.2.4",
"typescript": "^5.8.3",
"vite": "^6.3.2",
"vite": "^6.3.5",
"vite-plugin-pwa": "^1.0.0"
}
}
}
3 changes: 2 additions & 1 deletion src/allowed-origins.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,6 @@
"https://eln.rovislab.org",
"https://test1.eln.chemotion.scc.kit.edu",
"https://test.chemdev.scc.kit.edu",
"http://5.10.12.108"
"http://5.10.12.108",
"http://chemotioneln.chemie.uni-kl.de:4000"
]
1 change: 1 addition & 0 deletions src/hooks/useLoadSpectra.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ logger.addEventListener('change', handleLogger);

const PARSING_OPTIONS: Partial<ParsingOptions> = {
onLoadProcessing: { autoProcessing: true },
experimentalFeatures: true,
sourceSelector: { general: { dataSelection: 'preferFT' } },
logger,
};
Expand Down
4 changes: 4 additions & 0 deletions src/workspaces/nmrxiv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export function getNmrXivWorkspace(hidePanelOnLoad = false): InnerWorkspace {
loggingLevel: 'info',
invert: false,
popupLoggingLevel: 'error',
invertScroll: false,
},
display: {
general: {
Expand Down Expand Up @@ -73,5 +74,8 @@ export function getNmrXivWorkspace(hidePanelOnLoad = false): InnerWorkspace {
fftDimension2: true,
},
},
onLoadProcessing: {
autoProcessing: true,
},
};
}
2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const pwaSettings: Partial<Options> = {
"**/icon-*",
],
workbox: {
maximumFileSizeToCacheInBytes: 10 * 1024 * 1024
maximumFileSizeToCacheInBytes: 20 * 1024 * 1024,
},
manifest: {
theme_color: "#ea580c",
Expand Down
1,430 changes: 745 additions & 685 deletions yarn.lock

Large diffs are not rendered by default.

Loading