chore: bump versions
This commit is contained in:
committed by
Braks
parent
1e786a9b08
commit
a16b7ca3d0
@@ -1,5 +0,0 @@
|
||||
---
|
||||
"@vue-flow/core": patch
|
||||
---
|
||||
|
||||
Fetch current node in drag handler, fixes drag handler using outdated node obj when it has been overwritten
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
"@vue-flow/core": patch
|
||||
---
|
||||
|
||||
Avoid inserting invalid nodes into state and throw error msg if invalid node is passed
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
"@vue-flow/core": patch
|
||||
---
|
||||
|
||||
Allow passing a MaybeComputedRef type as `isValidConnection` arg for `useHandle` composable
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
"@vue-flow/controls": minor
|
||||
---
|
||||
|
||||
Disable zoom-in / zoom-out btns when max or min zoom is reached
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
"@vue-flow/core": patch
|
||||
---
|
||||
|
||||
Use all handles in connection radius and select closest one that is valid
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
"@vue-flow/node-toolbar": minor
|
||||
---
|
||||
|
||||
Add `align` prop to node toolbar
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
"@vue-flow/controls": patch
|
||||
---
|
||||
|
||||
use OR operator to determine `isInteractive` state in controls component
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
"@vue-flow/core": patch
|
||||
---
|
||||
|
||||
Set default viewport type as partial
|
||||
@@ -1,5 +1,15 @@
|
||||
# @vue-flow/controls
|
||||
|
||||
## 1.1.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- [#957](https://github.com/bcakmakoglu/vue-flow/pull/957) [`ee1ab495`](https://github.com/bcakmakoglu/vue-flow/commit/ee1ab495f9c33dcee71d6912c02bff1a41b44e6a) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Disable zoom-in / zoom-out btns when max or min zoom is reached
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#952](https://github.com/bcakmakoglu/vue-flow/pull/952) [`095ab6af`](https://github.com/bcakmakoglu/vue-flow/commit/095ab6aff4c4c24f03d1d73987a19894a8d580b1) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - use OR operator to determine `isInteractive` state in controls component
|
||||
|
||||
## 1.0.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue-flow/controls",
|
||||
"version": "1.0.6",
|
||||
"version": "1.1.0",
|
||||
"private": false,
|
||||
"license": "MIT",
|
||||
"author": "Burak Cakmakoglu<78412429+bcakmakoglu@users.noreply.github.com>",
|
||||
|
||||
@@ -1,5 +1,19 @@
|
||||
# @vue-flow/core
|
||||
|
||||
## 1.20.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#943](https://github.com/bcakmakoglu/vue-flow/pull/943) [`22b53569`](https://github.com/bcakmakoglu/vue-flow/commit/22b53569619628006470747a8bb206b034719864) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Fetch current node in drag handler, fixes drag handler using outdated node obj when it has been overwritten
|
||||
|
||||
- [#961](https://github.com/bcakmakoglu/vue-flow/pull/961) [`2f75b31c`](https://github.com/bcakmakoglu/vue-flow/commit/2f75b31c388368aede2e249b38dd3f1409942c8d) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Avoid inserting invalid nodes into state and throw error msg if invalid node is passed
|
||||
|
||||
- [#956](https://github.com/bcakmakoglu/vue-flow/pull/956) [`90e4cf99`](https://github.com/bcakmakoglu/vue-flow/commit/90e4cf99f1fc082808f11389917d0f86e0f66d1c) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Allow passing a MaybeComputedRef type as `isValidConnection` arg for `useHandle` composable
|
||||
|
||||
- [#954](https://github.com/bcakmakoglu/vue-flow/pull/954) [`402da363`](https://github.com/bcakmakoglu/vue-flow/commit/402da3630b83fca664ff2dba6625538b4de5bb9e) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Use all handles in connection radius and select closest one that is valid
|
||||
|
||||
- [#951](https://github.com/bcakmakoglu/vue-flow/pull/951) [`b81069e5`](https://github.com/bcakmakoglu/vue-flow/commit/b81069e5473e56c82cdf96c0607cdedae7fc4d78) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Set default viewport type as partial
|
||||
|
||||
## 1.20.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue-flow/core",
|
||||
"version": "1.20.0",
|
||||
"version": "1.20.1",
|
||||
"private": false,
|
||||
"license": "MIT",
|
||||
"author": "Burak Cakmakoglu<78412429+bcakmakoglu@users.noreply.github.com>",
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @vue-flow/node-toolbar
|
||||
|
||||
## 1.1.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- [#953](https://github.com/bcakmakoglu/vue-flow/pull/953) [`bda15cfa`](https://github.com/bcakmakoglu/vue-flow/commit/bda15cfa790ae479e95827b940c0043448f7f89c) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Add `align` prop to node toolbar
|
||||
|
||||
## 1.0.7
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue-flow/node-toolbar",
|
||||
"version": "1.0.7",
|
||||
"version": "1.1.0",
|
||||
"private": false,
|
||||
"license": "MIT",
|
||||
"author": "Burak Cakmakoglu<78412429+bcakmakoglu@users.noreply.github.com>",
|
||||
|
||||
Reference in New Issue
Block a user