From 16d9bb138b605c3b0ef958dba31d82e67961e6db Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 30 Dec 2022 00:08:11 +0000 Subject: [PATCH] chore: next release --- .changeset/large-actors-tap.md | 5 ----- .changeset/sixty-lions-tell.md | 5 ----- packages/core/CHANGELOG.md | 24 ++++++++++++++++-------- packages/core/package.json | 2 +- 4 files changed, 17 insertions(+), 19 deletions(-) delete mode 100644 .changeset/large-actors-tap.md delete mode 100644 .changeset/sixty-lions-tell.md diff --git a/.changeset/large-actors-tap.md b/.changeset/large-actors-tap.md deleted file mode 100644 index 8967c09e..00000000 --- a/.changeset/large-actors-tap.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@vue-flow/core': patch ---- - -Fix props being undefined on first render of custom node and edge components diff --git a/.changeset/sixty-lions-tell.md b/.changeset/sixty-lions-tell.md deleted file mode 100644 index c5f86e56..00000000 --- a/.changeset/sixty-lions-tell.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@vue-flow/core': patch ---- - -Remove `nodes` property from `ConnectionLineProps` - use `getNodes` inside the component instead ⚠️ diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 5ac6edb5..91a4edb2 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,13 @@ # @vue-flow/core +## 1.9.4 + +### Patch Changes + +- [#574](https://github.com/bcakmakoglu/vue-flow/pull/574) [`1160d3d`](https://github.com/bcakmakoglu/vue-flow/commit/1160d3d2fbbae1988c7d72c56a1adcab4b1a53dd) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Fix props being undefined on first render of custom node and edge components + +- [#574](https://github.com/bcakmakoglu/vue-flow/pull/574) [`1160d3d`](https://github.com/bcakmakoglu/vue-flow/commit/1160d3d2fbbae1988c7d72c56a1adcab4b1a53dd) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Remove `nodes` property from `ConnectionLineProps` - use `getNodes` inside the component instead ⚠️ + ## 1.9.3 ### Patch Changes @@ -146,17 +154,17 @@ This release brings A11y support to Vue Flow. All nodes and edges can now receive a `focusable` and `ariaLabel` prop, which can be used to enhance A11y experience. You can also enable focusable globally by using `nodesFocusable` or `edgesFocusable`. Additionally, nodes can be moved using keyboard controls (Arrow-Keys). - #### Props +#### Props - - `disableKeyboardA11y`: Use this prop to disable Keyboard controls on the graph. - - `defaultViewport`: The old `defaultZoom` and `defaultPosition` props have been merged into a single object called `defaultViewport`. - - `nodesFocusable`: Globally enable that nodes can be focused. - - `edgesFocusable`: Globally enable that edges can be focused. +- `disableKeyboardA11y`: Use this prop to disable Keyboard controls on the graph. +- `defaultViewport`: The old `defaultZoom` and `defaultPosition` props have been merged into a single object called `defaultViewport`. +- `nodesFocusable`: Globally enable that nodes can be focused. +- `edgesFocusable`: Globally enable that edges can be focused. - #### Elements +#### Elements - - `focusable`: Enable focusing for a single node/edge by setting this option. - - `ariaLabel`: Specify an aria label for a node/edge +- `focusable`: Enable focusing for a single node/edge by setting this option. +- `ariaLabel`: Specify an aria label for a node/edge ## 1.7.2 diff --git a/packages/core/package.json b/packages/core/package.json index 37c912cb..7934fa8f 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@vue-flow/core", - "version": "1.9.3", + "version": "1.9.4", "private": false, "license": "MIT", "author": "Burak Cakmakoglu<78412429+bcakmakoglu@users.noreply.github.com>",