Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
102e931
Update redux state on layout change
GregJHarris Jun 9, 2026
e3d4027
Add callback to dynamic page to return display and file id
GregJHarris Jun 10, 2026
39c0e35
Merge branch 'master' into rgl-action-to-get-component
GregJHarris Jun 10, 2026
25e0359
Removing dependency on UUID.
GregJHarris Jun 10, 2026
4c1cec7
Dropping UUID from package.json
GregJHarris Jun 10, 2026
5c6fc7e
Create a display instance cache in the FileCache slice, use it to sto…
GregJHarris Jun 11, 2026
19ecce7
Overhaul tests for embedded display, dynamic page and use file, add a…
GregJHarris Jun 12, 2026
ee1a5b6
Merge branch 'master' into rgl-action-to-get-component
GregJHarris Jun 12, 2026
c66f7b1
Post merge test fixes
GregJHarris Jun 12, 2026
6cc7783
Lint fix
GregJHarris Jun 12, 2026
f5611d9
Stop responsive screen clustering on the top left on initialisation.
GregJHarris Jun 12, 2026
d8b7465
Switch makeSelectWidgetPosition to use the display instance cache
GregJHarris Jun 17, 2026
afc94eb
Bump package version and upgrade Vite to resolve vulnerabilities
GregJHarris Jun 17, 2026
7e22296
Drop plotly dependency
GregJHarris Jun 17, 2026
af6f98a
Ensure grid display changes are reflected in the file cache slice
GregJHarris Jun 17, 2026
129e25e
Simplify use of the ReactGridLayout callbacks
GregJHarris Jun 17, 2026
8aa04f6
Adding x-charts and material to the peer dependencies
GregJHarris Jun 17, 2026
1dc869d
Merge branch 'master' into rgl-action-to-get-component
GregJHarris Jun 18, 2026
6305bc8
Fix for CI failing test
GregJHarris Jun 18, 2026
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
3,771 changes: 980 additions & 2,791 deletions package-lock.json

Large diffs are not rendered by default.

16 changes: 9 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@diamondlightsource/cs-web-lib",
"version": "0.10.16",
"version": "0.10.17",
"description": "Control system web library",
"main": "./dist/index.cjs",
"scripts": {
Expand All @@ -26,10 +26,9 @@
"bufferutil": "^4.0.8",
"loglevel": "^1.9.2",
"react-grid-layout": "^2.2.3",
"react-plotly.js": "^2.6.0",
"react-toastify": "^11.0.5",
"utf-8-validate": "^5.0.10",
"uuid": "^9.0.1"
"safe-stable-stringify": "^2.5.0",
"utf-8-validate": "^5.0.10"
},
"devDependencies": {
"@apollo/client": "^3.11.8",
Expand All @@ -48,7 +47,7 @@
"@types/react-test-renderer": "^18.3.0",
"@types/uuid": "^9.0.8",
"@typescript-eslint/typescript-estree": "^8.13.0",
"@vitejs/plugin-react": "^4.7.0",
"@vitejs/plugin-react": "^6.0.2",
"base64-js": "^1.5.1",
"clipboard-copy": "^4.0.1",
"d3": "^7.9.0",
Expand All @@ -72,7 +71,7 @@
"rollup-preserve-directives": "^1.1.3",
"tslib": "^2.8.1",
"typescript": "^5.6.3",
"vite": "^7.2.2",
"vite": "^8.0.16",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-node-polyfills": "^0.26.0",
"vitest": "^4.0.8",
Expand All @@ -86,7 +85,10 @@
"react-dom": "^18.3.1",
"react-gauge-component": "^2.0.26",
"react-redux": "^7.2.9",
"react-router": "^7.13.0"
"react-router": "^7.13.0",
"d3": "^7.9.0",
"@mui/material": "^7.3.2",
"@mui/x-charts": "^9.3.0"
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
Loading
Loading