Skip to content

Commit

Permalink
chore: bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and bcakmakoglu committed Feb 21, 2024
1 parent 54b3f22 commit 8e69e1d
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 34 deletions.
5 changes: 0 additions & 5 deletions .changeset/eleven-bulldogs-rhyme.md

This file was deleted.

23 changes: 0 additions & 23 deletions .changeset/selfish-doors-buy.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silent-pigs-swim.md

This file was deleted.

30 changes: 30 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# @vue-flow/core

## 1.33.0

### Minor Changes

- [#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`.

⚠️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 }) => {
// ...
});
```

### Patch Changes

- [#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

- [#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

## 1.32.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue-flow/core",
"version": "1.32.1",
"version": "1.33.0",
"private": false,
"license": "MIT",
"author": "Burak Cakmakoglu<78412429+bcakmakoglu@users.noreply.github.com>",
Expand Down

0 comments on commit 8e69e1d

Please sign in to comment.