Skip to content

Commit

Permalink
Fix dotplot tooltip following mouse cursor after mouse up after
Browse files Browse the repository at this point in the history
floating-ui change
  • Loading branch information
cmdcolin committed Dec 14, 2023
1 parent 08527fa commit 6e061fe
Show file tree
Hide file tree
Showing 3 changed files with 118 additions and 104 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,12 @@ type Coord = [number, number] | undefined
export const TooltipWhereMouseovered = observer(function ({
model,
mouserect,
mouserectClient,
xdistance,
}: {
model: DotplotViewModel
mouserect: Coord
mouserectClient: Coord
xdistance: number
}) {
const { classes } = useStyles()
Expand All @@ -52,7 +54,15 @@ export const TooltipWhereMouseovered = observer(function ({
placement: xdistance < 0 ? 'left' : 'right',
})

const clientPoint = useClientPoint(context)
const clientPoint = useClientPoint(
context,
mouserectClient
? {
x: mouserectClient[0],
y: mouserectClient[1],
}
: undefined,
)
const { getFloatingProps } = useInteractions([clientPoint])

const popperTheme = theme?.components?.MuiPopper
Expand Down
28 changes: 16 additions & 12 deletions plugins/dotplot-view/src/DotplotView/components/DotplotView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ const DotplotViewInternal = observer(function ({
const mousecurr = getOffset(mousecurrClient, svg)
const mouseup = getOffset(mouseupClient, svg)
const mouserect = mouseup || mousecurr
const mouserectClient = mouseupClient || mousecurrClient
const xdistance = mousedown && mouserect ? mouserect[0] - mousedown[0] : 0
const ydistance = mousedown && mouserect ? mouserect[1] - mousedown[1] : 0
const { hview, vview, wheelMode, cursorMode } = model
Expand Down Expand Up @@ -190,22 +191,24 @@ const DotplotViewInternal = observer(function ({
vview,
])

// detect a mouseup after a mousedown was submitted, autoremoves mouseup
// once that single mouseup is set
// detect a mouseup after a mousedown was submitted, autoremoves mouseup once
// that single mouseup is set
useEffect(() => {
function globalMouseUp(event: MouseEvent) {
if (Math.abs(xdistance) > 3 && Math.abs(ydistance) > 3 && validSelect) {
setMouseUpClient([event.clientX, event.clientY])
} else {
setMouseDownClient(undefined)
}
}

if (mousedown && !mouseup) {
function globalMouseUp(event: MouseEvent) {
if (Math.abs(xdistance) > 3 && Math.abs(ydistance) > 3 && validSelect) {
setMouseUpClient([event.clientX, event.clientY])
} else {
setMouseDownClient(undefined)
}
}
window.addEventListener('mouseup', globalMouseUp, true)
return () => window.removeEventListener('mouseup', globalMouseUp, true)
return () => {
window.removeEventListener('mouseup', globalMouseUp, true)
}
} else {
return () => {}
}
return () => {}
}, [
validSelect,
mousedown,
Expand Down Expand Up @@ -244,6 +247,7 @@ const DotplotViewInternal = observer(function ({
<TooltipWhereMouseovered
model={model}
mouserect={mouserect}
mouserectClient={mouserectClient}
xdistance={xdistance}
/>
) : null}
Expand Down
182 changes: 91 additions & 91 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2426,83 +2426,83 @@
node-gyp "^8.2.0"
read-package-json-fast "^2.0.1"

"@nrwl/devkit@17.2.3":
version "17.2.3"
resolved "https://registry.yarnpkg.com/@nrwl/devkit/-/devkit-17.2.3.tgz#4d49db452e4d136ce366197799b0d79dce169d0e"
integrity sha512-EG08AaA/kP/nam1Bt8dEJ2raftHedOvJIuEyh4mXXSdioA+H4ILU/m0/51cTwjjkv4wfoe/gxKCwqbei5VK1oQ==
"@nrwl/devkit@17.2.4":
version "17.2.4"
resolved "https://registry.yarnpkg.com/@nrwl/devkit/-/devkit-17.2.4.tgz#a1061d85d3ea3b8a9530cc75d8a6c7551d840483"
integrity sha512-xbdjv/Bo3IjeShbcp5JNrppM2Q0Bd8dnWXV8CUCOvqW4vis0Wcskm1BO18PFHOjbOcas6R5QnFI8qt1LHKCjjw==
dependencies:
"@nx/devkit" "17.2.3"
"@nx/devkit" "17.2.4"

"@nrwl/tao@17.2.3":
version "17.2.3"
resolved "https://registry.yarnpkg.com/@nrwl/tao/-/tao-17.2.3.tgz#734eeeeead720b74e1435c1b1311c849d73ddf19"
integrity sha512-tbSgRw/Yda+5XAt2swhZv37f8YqWEa0Qn8lch+BhHZmRq4EamG1wUKNF+YjQH51RFODmaB/U0gU6ZBehNMe++A==
"@nrwl/tao@17.2.4":
version "17.2.4"
resolved "https://registry.yarnpkg.com/@nrwl/tao/-/tao-17.2.4.tgz#0385086ff0cfdef1aa0b3abd534129d63bfcae8f"
integrity sha512-uvzHtCTu2JWEcu1EqsMEsQydE5ZmYaQ+QQQTHI7H0jlY62WjU63Nk4jbXDQ5EmBvhCBY/rQAQbYM8r0BXQEBtg==
dependencies:
nx "17.2.3"
nx "17.2.4"
tslib "^2.3.0"

"@nx/devkit@17.2.3", "@nx/devkit@>=17.1.2 < 18":
version "17.2.3"
resolved "https://registry.yarnpkg.com/@nx/devkit/-/devkit-17.2.3.tgz#d8de7e45d90bd1dfc1ae09a34dd052a0d9ac980f"
integrity sha512-fi43oakI6aefCQAQon+fOkzUGHUdzYPWNVFuOAmD+7Wt2bpbr+OkynFAJjlMM8iu1k6uE0yONaoqYLzEnzxunQ==
"@nx/devkit@17.2.4", "@nx/devkit@>=17.1.2 < 18":
version "17.2.4"
resolved "https://registry.yarnpkg.com/@nx/devkit/-/devkit-17.2.4.tgz#be50bed63f0fbb3c524c91f648f5fea48056851b"
integrity sha512-oRRGbYaZqpuYc45cYyRTSKmWtkRiZhieRKatVf01pe+lJBwuR1OMKrK6wD89ToRfgXXfkP7ZoTmMMcSvEq8yoA==
dependencies:
"@nrwl/devkit" "17.2.3"
"@nrwl/devkit" "17.2.4"
ejs "^3.1.7"
enquirer "~2.3.6"
ignore "^5.0.4"
semver "7.5.3"
tmp "~0.2.1"
tslib "^2.3.0"

"@nx/nx-darwin-arm64@17.2.3":
version "17.2.3"
resolved "https://registry.yarnpkg.com/@nx/nx-darwin-arm64/-/nx-darwin-arm64-17.2.3.tgz#838a15528ca9b62d8489eed9c1ec9d95c3fd4b01"
integrity sha512-hBVZPL7fXGr9GkEs3Y+CzRhmgC5L5eOjw3jzLyBRtfngoskeVsfzYzJLvMiJWiW6uwDqCUpsNDxpHcXTKAbalg==

"@nx/nx-darwin-x64@17.2.3":
version "17.2.3"
resolved "https://registry.yarnpkg.com/@nx/nx-darwin-x64/-/nx-darwin-x64-17.2.3.tgz#297c33a3bf4fc952e21833c15fcaba6e7cdfc4fc"
integrity sha512-oabtuc8j9pzCUI1RPihyKCVvZL1gLZa+n9M0w6nkHLYBu+D+Ot1NxW2m+AT5+H8euKhr9ozk+A4BySuq+Wr+Yg==

"@nx/nx-freebsd-x64@17.2.3":
version "17.2.3"
resolved "https://registry.yarnpkg.com/@nx/nx-freebsd-x64/-/nx-freebsd-x64-17.2.3.tgz#cde6a9f1d1eefe5a52188c714c4a22a499e5c849"
integrity sha512-2hKiqLwBJwZT5lZ2hO/MVhCqfre746zy+QhMptwK4b6lVVdC/4x75bkQA7VoInIg7357DTem2PSyB4/0d90TaQ==

"@nx/nx-linux-arm-gnueabihf@17.2.3":
version "17.2.3"
resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-17.2.3.tgz#7ef1938ed5ac84b057c7b5db8ab05aef016d2637"
integrity sha512-mG1QNFRvN4BnYbQwLhKH5ewvF70tYYsijPR40opptrJYdi0jBjv50yRgRUzrrDjkyYiBW2ARzcEPVYqP39Rltw==

"@nx/nx-linux-arm64-gnu@17.2.3":
version "17.2.3"
resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-17.2.3.tgz#b9c473da788835aa60508da53c3081e19d0233b3"
integrity sha512-w5fbbS9wxiFG/mUd9bm3doHautyzRTk16K8a3M4t/M6c+JciTunTIivUC/rQpclyFhq0T8oKx2n7ZPHrxHIbFQ==

"@nx/nx-linux-arm64-musl@17.2.3":
version "17.2.3"
resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-17.2.3.tgz#6e41984faad33535e7d4ebbfb801d77e7044baac"
integrity sha512-1jupF1CJGw5DsO03/zkqhsk8vbOijf4ldpe4OrGJimKomIvtlvbUikjy7QupGBsHfg2MEs5wWa/1W5W9nYWocA==

"@nx/nx-linux-x64-gnu@17.2.3":
version "17.2.3"
resolved "https://registry.yarnpkg.com/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-17.2.3.tgz#2d0513eebd5c68dbfbc5b59294626a87a00e27d1"
integrity sha512-S5eJpbUHrmQNxGmdUg2trwtajBhablyV7fArWsI/Nvhe75aVZLAVHLDuEKJgt1U9GtBU65qx+Ne25zlGC9xEQg==

"@nx/nx-linux-x64-musl@17.2.3":
version "17.2.3"
resolved "https://registry.yarnpkg.com/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-17.2.3.tgz#21820f5033d19255ee80185ea047bdfdf4de8d61"
integrity sha512-abLPQi1egb3/SM3HwbJkHX1Z9Mvvmf0i2FQ4/tPJFSffJhfogEBGhcP5jtrVSn5dtPwFRQgrA2zcCUVtzoxA3w==

"@nx/nx-win32-arm64-msvc@17.2.3":
version "17.2.3"
resolved "https://registry.yarnpkg.com/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-17.2.3.tgz#dc69f75a142cd508c5f48770a31ada1bce21fe11"
integrity sha512-dIIKVRBjz6DXpZGbljJ7g3jd2T1tkCl7xnqHARpvrBvOPHucKbmm2aK43AdM/uEorfGHR0J+SqDb8uVUVeE9CQ==

"@nx/nx-win32-x64-msvc@17.2.3":
version "17.2.3"
resolved "https://registry.yarnpkg.com/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-17.2.3.tgz#07e10e94dc4ce68840b20c3f637c8838a60b21f7"
integrity sha512-E9nNdHHQLhyZd/sOewAko3ZIgK4mrAmNKVcb1bVVYMgKad786OjMoUkQbDobgEV6pO4hKvQXGDFXg4bNwpT6Qw==
"@nx/nx-darwin-arm64@17.2.4":
version "17.2.4"
resolved "https://registry.yarnpkg.com/@nx/nx-darwin-arm64/-/nx-darwin-arm64-17.2.4.tgz#e9678b6dcc8101577a0341e9c131962ec05f1e6d"
integrity sha512-sfwNNwhnfYzPSSLinBEJcY2saeMcUunZotd5An0VXLgrb0sru6llzXpEQFJwVUhdyj4lwPdxbT4O7Z7mNCnelQ==

"@nx/nx-darwin-x64@17.2.4":
version "17.2.4"
resolved "https://registry.yarnpkg.com/@nx/nx-darwin-x64/-/nx-darwin-x64-17.2.4.tgz#ade722454ead9167c63c938f2d43fc8fb793e7ac"
integrity sha512-N47eidRXcibYxvUHe+CrVTIH5pUcEflDSkBaYAQphu0Bw9Cyrsrs3dHjLQ1UWB+SRkIxzcKAEd4/fmMjauFa4A==

"@nx/nx-freebsd-x64@17.2.4":
version "17.2.4"
resolved "https://registry.yarnpkg.com/@nx/nx-freebsd-x64/-/nx-freebsd-x64-17.2.4.tgz#38e8655d9dc14b11319d0ad6002d7255ddc91f22"
integrity sha512-rVnjutfZqZpH+ELXwBciFCwlcM0mAgiThwDl6crrs5QWEFTnY3em7mDau32bk0qQEmA2NO2ZF6EBhUw2H01wsg==

"@nx/nx-linux-arm-gnueabihf@17.2.4":
version "17.2.4"
resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-17.2.4.tgz#7044691cb864ca89173d091b79ba109dbde8fcac"
integrity sha512-sFO9cT7RioMkZRKZ+9PYw7Kwdb3ieTLXr8/xprE/NwCPzGIUf+ErGyQPW2LynQLXXfUW2/QuzWJY3CCP0+dXrg==

"@nx/nx-linux-arm64-gnu@17.2.4":
version "17.2.4"
resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-17.2.4.tgz#2288f3dbe2659d42ec66f683da08afae827c85c1"
integrity sha512-QG7B5ULpj7uyDAvRAx9XHHIKRzrOkAvjBeArSqhiaKRFt/ZO3sfqh80xe4piyLc5l85vnkd2IAgXUsSqZbKwGg==

"@nx/nx-linux-arm64-musl@17.2.4":
version "17.2.4"
resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-17.2.4.tgz#26fe1360d79615145d027b76e968f81548bc221d"
integrity sha512-rqqsgRBwjmA4abOMK4ccG8q9abNWomst1Ypc/a8wxNLQIoH1jKI3Qb9wjekWwiuWbh+uA6maRxDiEMTkdI+NXQ==

"@nx/nx-linux-x64-gnu@17.2.4":
version "17.2.4"
resolved "https://registry.yarnpkg.com/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-17.2.4.tgz#10bc8c8104498c7ae75949a8c02ee5d807200105"
integrity sha512-FOYIUNDp0KmV6/OPxZCUc6T9hPEGwzYir16wcHnEgZ5BKa+c1me5aqE9NiTHBPUQHS+efthsgB+kBT1fC/8Tjw==

"@nx/nx-linux-x64-musl@17.2.4":
version "17.2.4"
resolved "https://registry.yarnpkg.com/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-17.2.4.tgz#fbbfc8b4990a5412ad1d8c0c87894b1de6b9df81"
integrity sha512-IpcKkJOkdIfgmGz4En3IRf5+idmsTcDG9fRPnqdDhKfSNAJBrb6TbBaNKFFbFPhHjkpLurjaRtj+0VNMkLRATQ==

"@nx/nx-win32-arm64-msvc@17.2.4":
version "17.2.4"
resolved "https://registry.yarnpkg.com/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-17.2.4.tgz#3ce1d4fa9bc6cd3d522ae97016419b472ef4fd62"
integrity sha512-4w8PwDisYHe1eRhs7FAmsKKSvrvlz5cjJPvmeTy8YRzQ3SJrlGxpSRtXl/RjBe2HBn2/1zhg8nqLfrUtcbZUAw==

"@nx/nx-win32-x64-msvc@17.2.4":
version "17.2.4"
resolved "https://registry.yarnpkg.com/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-17.2.4.tgz#149e9bb2a311bbb7a1aa451ce1fb7e358b38cc2c"
integrity sha512-sDSUzWDLgHeLE+iqaXbZzweRSGiPurapC/VltXidVlGdLfFP3SEvAqo/Ym+zkTDlHy2+D+fBfXt1GURDrrZEkw==

"@oclif/core@^2.12.0", "@oclif/core@^2.15.0":
version "2.15.0"
Expand Down Expand Up @@ -5608,9 +5608,9 @@ available-typed-arrays@^1.0.5:
integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==

aws-sdk@^2.1231.0:
version "2.1517.0"
resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.1517.0.tgz#ab7127a6f4291fb8be465830b00ee91eb10a6b9d"
integrity sha512-k8TXd7t6BFUheOoGXpBRVOCwU4nmmWn1LFRS5WLRR0MUxbkvvJqeNArn+ktiod/t7p4hDSmd48cVLGi3eoyX9g==
version "2.1518.0"
resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.1518.0.tgz#e8c30d0be0ca0bca5edcea1fb5fd467b57f60221"
integrity sha512-SknaBH0kvDNsdjGyt8wsAfVky688azgEoLKlPqnLWiA/tJPIpdZ3qUfSFXLO6O9s2aolM8JVAULRSEgBMy57iw==
dependencies:
buffer "4.9.2"
events "1.1.1"
Expand Down Expand Up @@ -5761,9 +5761,9 @@ basic-auth@2.0.1, basic-auth@^2.0.1:
safe-buffer "5.1.2"

basic-ftp@^5.0.2:
version "5.0.3"
resolved "https://registry.yarnpkg.com/basic-ftp/-/basic-ftp-5.0.3.tgz#b14c0fe8111ce001ec913686434fe0c2fb461228"
integrity sha512-QHX8HLlncOLpy54mh+k/sWIFd0ThmRqwe9ZjELybGZK+tZ8rUb9VO0saKJUROTbE+KhzDUT7xziGpGrW8Kmd+g==
version "5.0.4"
resolved "https://registry.yarnpkg.com/basic-ftp/-/basic-ftp-5.0.4.tgz#28aeab7bfbbde5f5d0159cd8bb3b8e633bbb091d"
integrity sha512-8PzkB0arJFV4jJWSGOYR+OEic6aeKMu/osRhBULN6RY0ykby6LKhbmuQ5ublvaas5BOwboah5D87nrHyuh8PPA==

batch@0.6.1:
version "0.6.1"
Expand Down Expand Up @@ -8205,9 +8205,9 @@ electron-publish@24.8.1:
mime "^2.5.2"

electron-to-chromium@^1.4.601:
version "1.4.611"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.611.tgz#92d3a8f03110fbf5f99b054da97825f994fa480a"
integrity sha512-ZtRpDxrjHapOwxtv+nuth5ByB8clyn8crVynmRNGO3wG3LOp8RTcyZDqwaI6Ng6y8FCK2hVZmJoqwCskKbNMaw==
version "1.4.612"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.612.tgz#350c6fd4201d677307519b931949fa64dae6a5cc"
integrity sha512-dM8BMtXtlH237ecSMnYdYuCkib2QHq0kpWfUnavjdYsyr/6OsAwg5ZGUfnQ9KD1Ga4QgB2sqXlB2NT8zy2GnVg==

electron-updater@^6.1.1:
version "6.1.7"
Expand Down Expand Up @@ -9246,9 +9246,9 @@ flatted@^3.2.9:
integrity sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==

flow-parser@0.*:
version "0.223.3"
resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.223.3.tgz#9e331f635b3d4b5e0875bfc4f5dd79bf9c42c795"
integrity sha512-9KxxDKSB22ovMpSULbOL/QAQGPN6M0YMS3PubQvB0jVc4W7QP6VhasIVic7MzKcJSh0BAVs4J6SZjoH0lDDNlg==
version "0.224.0"
resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.224.0.tgz#02a6dd52e245691233a2cc49021ffd5563550652"
integrity sha512-S1P78o0VLB1FZvkoGSIpaRiiTUQ3xDhm9I4Z1qc3lglmkjehfR2sjM0vhwKS7UC1G12VT4Leb/GGV/KlactqjA==

follow-redirects@^1.0.0, follow-redirects@^1.15.0:
version "1.15.3"
Expand Down Expand Up @@ -13118,12 +13118,12 @@ nwsapi@^2.2.2, nwsapi@^2.2.7:
resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.7.tgz#738e0707d3128cb750dddcfe90e4610482df0f30"
integrity sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==

nx@17.2.3, "nx@>=17.1.2 < 18":
version "17.2.3"
resolved "https://registry.yarnpkg.com/nx/-/nx-17.2.3.tgz#17a7777f08e40c3e2571dc524421ae402e32ad30"
integrity sha512-B/d8VCs/i5Ho5c42pZSleqUWsohYBN0iy4zRyGLA2Vl0qG2c4Q8z8NHVO1PFJ5qZmH3xKHN0Ziu6q1JGmmA14Q==
nx@17.2.4, "nx@>=17.1.2 < 18":
version "17.2.4"
resolved "https://registry.yarnpkg.com/nx/-/nx-17.2.4.tgz#7fe96571c1ebc2c900a70e2e14c021c4a0fd6c09"
integrity sha512-1O/Kju2SbOh7U+3CStVP2vYId7PlHRi+V6IJVdXkQVl/Ulgnqlg1TVGR518hIg6Ft6qay2oGed9mEl3LH2afYA==
dependencies:
"@nrwl/tao" "17.2.3"
"@nrwl/tao" "17.2.4"
"@yarnpkg/lockfile" "^1.1.0"
"@yarnpkg/parsers" "3.0.0-rc.46"
"@zkochan/js-yaml" "0.0.6"
Expand Down Expand Up @@ -13158,16 +13158,16 @@ nx@17.2.3, "nx@>=17.1.2 < 18":
yargs "^17.6.2"
yargs-parser "21.1.1"
optionalDependencies:
"@nx/nx-darwin-arm64" "17.2.3"
"@nx/nx-darwin-x64" "17.2.3"
"@nx/nx-freebsd-x64" "17.2.3"
"@nx/nx-linux-arm-gnueabihf" "17.2.3"
"@nx/nx-linux-arm64-gnu" "17.2.3"
"@nx/nx-linux-arm64-musl" "17.2.3"
"@nx/nx-linux-x64-gnu" "17.2.3"
"@nx/nx-linux-x64-musl" "17.2.3"
"@nx/nx-win32-arm64-msvc" "17.2.3"
"@nx/nx-win32-x64-msvc" "17.2.3"
"@nx/nx-darwin-arm64" "17.2.4"
"@nx/nx-darwin-x64" "17.2.4"
"@nx/nx-freebsd-x64" "17.2.4"
"@nx/nx-linux-arm-gnueabihf" "17.2.4"
"@nx/nx-linux-arm64-gnu" "17.2.4"
"@nx/nx-linux-arm64-musl" "17.2.4"
"@nx/nx-linux-x64-gnu" "17.2.4"
"@nx/nx-linux-x64-musl" "17.2.4"
"@nx/nx-win32-arm64-msvc" "17.2.4"
"@nx/nx-win32-x64-msvc" "17.2.4"

object-assign@^4, object-assign@^4.0.1, object-assign@^4.1.1:
version "4.1.1"
Expand Down

0 comments on commit 6e061fe

Please sign in to comment.