Skip to content

Commit 8e69e1d

Browse files
github-actions[bot]bcakmakoglu
authored andcommitted
chore: bump versions
1 parent 54b3f22 commit 8e69e1d

File tree

5 files changed

+31
-34
lines changed

5 files changed

+31
-34
lines changed

.changeset/eleven-bulldogs-rhyme.md

-5
This file was deleted.

.changeset/selfish-doors-buy.md

-23
This file was deleted.

.changeset/silent-pigs-swim.md

-5
This file was deleted.

packages/core/CHANGELOG.md

+30
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# @vue-flow/core
22

3+
## 1.33.0
4+
5+
### Minor Changes
6+
7+
- [#1323](https://github.com/bcakmakoglu/vue-flow/pull/1323) [`ed4ccf4`](https://github.com/bcakmakoglu/vue-flow/commit/ed4ccf434ee8c8fcf47b43ebc5b4e25175009680) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Add node id and node type to return of `useNodesData`.
8+
9+
⚠️This is a small breaking change from the previous implementation!
10+
11+
Previously you would only receive the data object back, now you will receive an object with the data and the node id and type.
12+
13+
```ts
14+
const nodesData = useNodesData(nodeIds);
15+
16+
// Previously
17+
nodesData.forEach((data) => {
18+
// ...
19+
});
20+
21+
// Now
22+
nodesData.forEach(({ id, type, data }) => {
23+
// ...
24+
});
25+
```
26+
27+
### Patch Changes
28+
29+
- [#1326](https://github.com/bcakmakoglu/vue-flow/pull/1326) [`78a604c`](https://github.com/bcakmakoglu/vue-flow/commit/78a604c35aa908dc7453a70c636fb0e6f9ec4242) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Use default cursor for nodes and use grab cursor if node is draggable
30+
31+
- [#1324](https://github.com/bcakmakoglu/vue-flow/pull/1324) [`c964220`](https://github.com/bcakmakoglu/vue-flow/commit/c964220e955b7e2a7c09f8607c683dada59c4827) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Prevent esc keypress triggers when keyboard a11y is disabled
32+
333
## 1.32.1
434

535
### Patch Changes

packages/core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue-flow/core",
3-
"version": "1.32.1",
3+
"version": "1.33.0",
44
"private": false,
55
"license": "MIT",
66
"author": "Burak Cakmakoglu<[email protected]>",

0 commit comments

Comments
 (0)