chore: bump versions

This commit is contained in:
github-actions[bot]
2022-10-25 19:21:42 +02:00
committed by Braks
parent 2c3ea836f1
commit fbfa2efbd2
5 changed files with 16 additions and 21 deletions
-5
View File
@@ -1,5 +0,0 @@
---
'@vue-flow/core': patch
---
Disable user selection if `elementsSelectable` is false
-5
View File
@@ -1,5 +0,0 @@
---
'@vue-flow/core': patch
---
Prevent node selection box from appearing before mouseup
-5
View File
@@ -1,5 +0,0 @@
---
'@vue-flow/core': patch
---
Use shallowRef for node/edge data and event objects so they trigger a re-render on custom nodes/edges
+15 -5
View File
@@ -1,5 +1,15 @@
# @vue-flow/core # @vue-flow/core
## 1.2.1
### Patch Changes
- [#378](https://github.com/bcakmakoglu/vue-flow/pull/378) [`9089861c`](https://github.com/bcakmakoglu/vue-flow/commit/9089861ce78584cb524c3da178cd1c0252ccee30) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Disable user selection if `elementsSelectable` is false
- [#378](https://github.com/bcakmakoglu/vue-flow/pull/378) [`9089861c`](https://github.com/bcakmakoglu/vue-flow/commit/9089861ce78584cb524c3da178cd1c0252ccee30) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Prevent node selection box from appearing before mouseup
- [#380](https://github.com/bcakmakoglu/vue-flow/pull/380) [`2c3ea836`](https://github.com/bcakmakoglu/vue-flow/commit/2c3ea836f1b62fb808f1f7a00bae5b2e917381bb) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Use shallowRef for node/edge data and event objects so they trigger a re-render on custom nodes/edges
## 1.2.0 ## 1.2.0
### Minor Changes ### Minor Changes
@@ -72,12 +82,12 @@
```vue ```vue
<script lang="ts" setup> <script lang="ts" setup>
import { Handle, HandleConnectable } from '@vue-flow/core' import { Handle, HandleConnectable } from '@vue-flow/core'
const handleConnectable: HandleConnectable = (node, connectedEdges) => { const handleConnectable: HandleConnectable = (node, connectedEdges) => {
console.log(node, connectedEdges) console.log(node, connectedEdges)
return true return true
} }
</script> </script>
<template> <template>
<!-- single connection --> <!-- single connection -->
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "@vue-flow/core", "name": "@vue-flow/core",
"version": "1.2.0", "version": "1.2.1",
"private": false, "private": false,
"license": "MIT", "license": "MIT",
"author": "Burak Cakmakoglu<78412429+bcakmakoglu@users.noreply.github.com>", "author": "Burak Cakmakoglu<78412429+bcakmakoglu@users.noreply.github.com>",