chore: next release
This commit is contained in:
committed by
Braks
parent
7140beb799
commit
4425faf923
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
'@vue-flow/minimap': major
|
|
||||||
---
|
|
||||||
|
|
||||||
Move minimap to separate package (`@vue-flow/minimap`)
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
'@vue-flow/node-resizer': major
|
|
||||||
---
|
|
||||||
|
|
||||||
Add node-resizer package
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
'@vue-flow/core': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Make `dragging` flag optional in position change type
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
'@vue-flow/background': major
|
|
||||||
---
|
|
||||||
|
|
||||||
Move Background component into separate package (`@vue-flow/background`)
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
'@vue-flow/core': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Make dimensions optional in dimensions change type
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
'@vue-flow/core': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Remove Controls component styles from default theme
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
'@vue-flow/core': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Add `dragging`, `selected` and `resizing` flags to `GraphNode` type
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
'@vue-flow/core': minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Add `useGetPointerPosition` composable
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
'@vue-flow/core': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Allow multiple changes to be applied to element at once
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
'@vue-flow/controls': major
|
|
||||||
---
|
|
||||||
|
|
||||||
Move Controls component into separate package (`@vue-flow/controls`)
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
'@vue-flow/core': minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Move Panel component to core package
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
'@vue-flow/core': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Remove minimap styles from core package default-theme
|
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# @vue-flow/background
|
||||||
|
|
||||||
|
## 1.0.0
|
||||||
|
|
||||||
|
### Major Changes
|
||||||
|
|
||||||
|
- [#519](https://github.com/bcakmakoglu/vue-flow/pull/519) [`cbdd8cc9`](https://github.com/bcakmakoglu/vue-flow/commit/cbdd8cc99867a10ed7f6d82dd83c7f6f8574d865) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Move Background component into separate package (`@vue-flow/background`)
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@vue-flow/background",
|
"name": "@vue-flow/background",
|
||||||
"version": "0.0.1",
|
"version": "1.0.0",
|
||||||
"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>",
|
||||||
|
|||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# @vue-flow/controls
|
||||||
|
|
||||||
|
## 1.0.0
|
||||||
|
|
||||||
|
### Major Changes
|
||||||
|
|
||||||
|
- [#521](https://github.com/bcakmakoglu/vue-flow/pull/521) [`f50644ff`](https://github.com/bcakmakoglu/vue-flow/commit/f50644ffd2237b50bd519c6eb5f0c86dbdaf010a) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Move Controls component into separate package (`@vue-flow/controls`)
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@vue-flow/controls",
|
"name": "@vue-flow/controls",
|
||||||
"version": "0.0.1",
|
"version": "1.0.0",
|
||||||
"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>",
|
||||||
|
|||||||
@@ -1,5 +1,27 @@
|
|||||||
# @vue-flow/core
|
# @vue-flow/core
|
||||||
|
|
||||||
|
## 1.6.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- [#498](https://github.com/bcakmakoglu/vue-flow/pull/498) [`1739797c`](https://github.com/bcakmakoglu/vue-flow/commit/1739797cfebca2d0f9a5d6864dc75c2e1f6ee722) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Add `useGetPointerPosition` composable
|
||||||
|
|
||||||
|
- [#519](https://github.com/bcakmakoglu/vue-flow/pull/519) [`306cd3da`](https://github.com/bcakmakoglu/vue-flow/commit/306cd3dabfc57f730eb6f8939bf05369dadc31a5) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Move Panel component to core package
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#498](https://github.com/bcakmakoglu/vue-flow/pull/498) [`1739797c`](https://github.com/bcakmakoglu/vue-flow/commit/1739797cfebca2d0f9a5d6864dc75c2e1f6ee722) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Make `dragging` flag optional in position change type
|
||||||
|
|
||||||
|
- [#498](https://github.com/bcakmakoglu/vue-flow/pull/498) [`1739797c`](https://github.com/bcakmakoglu/vue-flow/commit/1739797cfebca2d0f9a5d6864dc75c2e1f6ee722) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Make dimensions optional in dimensions change type
|
||||||
|
|
||||||
|
- [#521](https://github.com/bcakmakoglu/vue-flow/pull/521) [`f50644ff`](https://github.com/bcakmakoglu/vue-flow/commit/f50644ffd2237b50bd519c6eb5f0c86dbdaf010a) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Remove Controls component styles from default theme
|
||||||
|
|
||||||
|
- [#498](https://github.com/bcakmakoglu/vue-flow/pull/498) [`1739797c`](https://github.com/bcakmakoglu/vue-flow/commit/1739797cfebca2d0f9a5d6864dc75c2e1f6ee722) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Add `dragging`, `selected` and `resizing` flags to `GraphNode` type
|
||||||
|
|
||||||
|
- [#498](https://github.com/bcakmakoglu/vue-flow/pull/498) [`1739797c`](https://github.com/bcakmakoglu/vue-flow/commit/1739797cfebca2d0f9a5d6864dc75c2e1f6ee722) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Allow multiple changes to be applied to element at once
|
||||||
|
|
||||||
|
- [#519](https://github.com/bcakmakoglu/vue-flow/pull/519) [`e5829e8d`](https://github.com/bcakmakoglu/vue-flow/commit/e5829e8d7327ab2a36655b56389a882b839c95c5) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Remove minimap styles from core package default-theme
|
||||||
|
|
||||||
## 1.5.11
|
## 1.5.11
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@vue-flow/core",
|
"name": "@vue-flow/core",
|
||||||
"version": "1.5.11",
|
"version": "1.6.0",
|
||||||
"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>",
|
||||||
|
|||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# @vue-flow/minimap
|
||||||
|
|
||||||
|
## 1.0.0
|
||||||
|
|
||||||
|
### Major Changes
|
||||||
|
|
||||||
|
- [#519](https://github.com/bcakmakoglu/vue-flow/pull/519) [`e5829e8d`](https://github.com/bcakmakoglu/vue-flow/commit/e5829e8d7327ab2a36655b56389a882b839c95c5) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Move minimap to separate package (`@vue-flow/minimap`)
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@vue-flow/minimap",
|
"name": "@vue-flow/minimap",
|
||||||
"version": "0.0.1",
|
"version": "1.0.0",
|
||||||
"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>",
|
||||||
|
|||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# @vue-flow/node-resizer
|
||||||
|
|
||||||
|
## 1.0.0
|
||||||
|
|
||||||
|
### Major Changes
|
||||||
|
|
||||||
|
- [#498](https://github.com/bcakmakoglu/vue-flow/pull/498) [`1739797c`](https://github.com/bcakmakoglu/vue-flow/commit/1739797cfebca2d0f9a5d6864dc75c2e1f6ee722) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Add node-resizer package
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@vue-flow/node-resizer",
|
"name": "@vue-flow/node-resizer",
|
||||||
"version": "0.0.1",
|
"version": "1.0.0",
|
||||||
"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>",
|
||||||
|
|||||||
Reference in New Issue
Block a user