v1.33.0
What's Changed
Minor Changes
-
#1323
ed4ccf4
Thanks @bcakmakoglu! - Add node id and node type to return ofuseNodesData
.⚠️ This is a small breaking change from the previous implementation!Previously you would only receive the data object back, now you will receive an object with the data and the node id and type.
const nodesData = useNodesData(nodeIds); // Previously nodesData.forEach((data) => { // ... }); // Now nodesData.forEach(({ id, type, data }) => { // ... });
Patch Changes
-
#1326
78a604c
Thanks @bcakmakoglu! - Use default cursor for nodes and use grab cursor if node is draggable -
#1324
c964220
Thanks @bcakmakoglu! - Prevent esc keypress triggers when keyboard a11y is disabled
New Contributors
- @Robin-Hoodie made their first contribution in #1321
Full Changelog: v1.32.1...v1.33.0