chore: bump versions
This commit is contained in:
committed by
Braks
parent
54b3f22066
commit
8e69e1d036
@@ -1,5 +0,0 @@
|
||||
---
|
||||
"@vue-flow/core": patch
|
||||
---
|
||||
|
||||
Use default cursor for nodes and use grab cursor if node is draggable
|
||||
@@ -1,23 +0,0 @@
|
||||
---
|
||||
"@vue-flow/core": minor
|
||||
---
|
||||
|
||||
Add node id and node type to return of `useNodesData`.
|
||||
|
||||
⚠️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.
|
||||
|
||||
```ts
|
||||
const nodesData = useNodesData(nodeIds);
|
||||
|
||||
// Previously
|
||||
nodesData.forEach((data) => {
|
||||
// ...
|
||||
});
|
||||
|
||||
// Now
|
||||
nodesData.forEach(({ id, type, data }) => {
|
||||
// ...
|
||||
});
|
||||
```
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
"@vue-flow/core": patch
|
||||
---
|
||||
|
||||
Prevent esc keypress triggers when keyboard a11y is disabled
|
||||
Reference in New Issue
Block a user