chore: bump versions
This commit is contained in:
committed by
Braks
parent
756b36b40b
commit
6f5f5c8a36
@@ -1,36 +0,0 @@
|
|||||||
---
|
|
||||||
'@vue-flow/additional-components': major
|
|
||||||
'@vue-flow/pathfinding-edge': major
|
|
||||||
'@vue-flow/resize-rotate-node': major
|
|
||||||
'@vue-flow/core': major
|
|
||||||
---
|
|
||||||
|
|
||||||
# What's changed?
|
|
||||||
|
|
||||||
- Simplify edge path calculations
|
|
||||||
- remove `getEdgeCenter` and `getSimpleEdgeCenter`
|
|
||||||
|
|
||||||
# Breaking Changes
|
|
||||||
|
|
||||||
- `getEdgeCenter` has been removed
|
|
||||||
- Edge center positions can now be accessed from `getBezierPath` or `getSmoothStepPath` functions
|
|
||||||
|
|
||||||
Before:
|
|
||||||
```js
|
|
||||||
import { getBezierPath, getEdgeCenter } from '@braks/vue-flow'
|
|
||||||
|
|
||||||
// used to return the path string only
|
|
||||||
const edgePath = computed(() => getBezierPath(pathParams),)
|
|
||||||
|
|
||||||
// was necessary to get the centerX, centerY of an edge
|
|
||||||
const centered = computed(() => getEdgeCenter(centerParams))
|
|
||||||
```
|
|
||||||
|
|
||||||
After:
|
|
||||||
```js
|
|
||||||
import { getBezierPath } from '@vue-flow/core'
|
|
||||||
|
|
||||||
// returns the path string and the center positions
|
|
||||||
const [path, centerX, centerY] = computed(() => getBezierPath(pathParams),)
|
|
||||||
```
|
|
||||||
|
|
||||||
@@ -1,46 +0,0 @@
|
|||||||
---
|
|
||||||
'@vue-flow/additional-components': major
|
|
||||||
'@vue-flow/pathfinding-edge': major
|
|
||||||
'@vue-flow/resize-rotate-node': major
|
|
||||||
'@vue-flow/core': major
|
|
||||||
---
|
|
||||||
|
|
||||||
# What's changed?
|
|
||||||
|
|
||||||
- Change pkg scope from 'braks' to 'vue-flow'
|
|
||||||
- Add `@vue-flow/core` package
|
|
||||||
- Add `@vue-flow/additional-components` package
|
|
||||||
- Add `@vue-flow/pathfinding-edge` package
|
|
||||||
- Add `@vue-flow/resize-rotate-node` package
|
|
||||||
|
|
||||||
# Features
|
|
||||||
|
|
||||||
- `useNode` and `useEdge` composables
|
|
||||||
- can be used to access current node/edge (or by id) and their respective element refs (if used inside the elements' context, i.e. a custom node/edge)
|
|
||||||
- `selectionKeyCode` as `true`
|
|
||||||
- allows for figma style selection (i.e. create a selection rect without holding shift or any other key)
|
|
||||||
- Handles to trigger handle bounds calculation on mount
|
|
||||||
- if no handle bounds are found, a Handle will try to calculate its bounds on mount
|
|
||||||
- should remove the need for `updateNodeInternals` on dynamic handles
|
|
||||||
- Testing for various features using Cypress 10
|
|
||||||
|
|
||||||
# Bugfixes
|
|
||||||
|
|
||||||
- Fix `removeSelectedEdges` and `removeSelectedNodes` actions not properly removing elements from store
|
|
||||||
|
|
||||||
# Breaking Changes
|
|
||||||
|
|
||||||
- `@vue-flow/core` package is now required to use vue-flow
|
|
||||||
- `@vue-flow/additional-components` package contains `Background`, `MiniMap` and `Controls` components and related types
|
|
||||||
- When switching to the new pkg scope, you need to change the import path.
|
|
||||||
|
|
||||||
Before:
|
|
||||||
```js
|
|
||||||
import { VueFlow, Background, MiniMap, Controls } from '@braks/vue-flow'
|
|
||||||
```
|
|
||||||
|
|
||||||
After
|
|
||||||
```js
|
|
||||||
import { VueFlow } from '@vue-flow/core'
|
|
||||||
import { Background, MiniMap, Controls } from '@vue-flow/additional-components'
|
|
||||||
```
|
|
||||||
@@ -0,0 +1,83 @@
|
|||||||
|
# @vue-flow/additional-components
|
||||||
|
|
||||||
|
## 1.0.0
|
||||||
|
|
||||||
|
### Major Changes
|
||||||
|
|
||||||
|
- [#305](https://github.com/bcakmakoglu/vue-flow/pull/305) [`939bff50`](https://github.com/bcakmakoglu/vue-flow/commit/939bff503039af3b790160640548ddde984cf2bc) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - # What's changed?
|
||||||
|
|
||||||
|
- Simplify edge path calculations
|
||||||
|
- remove `getEdgeCenter` and `getSimpleEdgeCenter`
|
||||||
|
|
||||||
|
# Breaking Changes
|
||||||
|
|
||||||
|
- `getEdgeCenter` has been removed
|
||||||
|
- Edge center positions can now be accessed from `getBezierPath` or `getSmoothStepPath` functions
|
||||||
|
|
||||||
|
Before:
|
||||||
|
|
||||||
|
```js
|
||||||
|
import { getBezierPath, getEdgeCenter } from '@braks/vue-flow'
|
||||||
|
|
||||||
|
// used to return the path string only
|
||||||
|
const edgePath = computed(() => getBezierPath(pathParams))
|
||||||
|
|
||||||
|
// was necessary to get the centerX, centerY of an edge
|
||||||
|
const centered = computed(() => getEdgeCenter(centerParams))
|
||||||
|
```
|
||||||
|
|
||||||
|
After:
|
||||||
|
|
||||||
|
```js
|
||||||
|
import { getBezierPath } from '@vue-flow/core'
|
||||||
|
|
||||||
|
// returns the path string and the center positions
|
||||||
|
const [path, centerX, centerY] = computed(() => getBezierPath(pathParams))
|
||||||
|
```
|
||||||
|
|
||||||
|
- [#305](https://github.com/bcakmakoglu/vue-flow/pull/305) [`47d837aa`](https://github.com/bcakmakoglu/vue-flow/commit/47d837aac096e59e7f55213990dff2cc7eba0c01) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - # What's changed?
|
||||||
|
|
||||||
|
- Change pkg scope from 'braks' to 'vue-flow'
|
||||||
|
- Add `@vue-flow/core` package
|
||||||
|
- Add `@vue-flow/additional-components` package
|
||||||
|
- Add `@vue-flow/pathfinding-edge` package
|
||||||
|
- Add `@vue-flow/resize-rotate-node` package
|
||||||
|
|
||||||
|
# Features
|
||||||
|
|
||||||
|
- `useNode` and `useEdge` composables
|
||||||
|
- can be used to access current node/edge (or by id) and their respective element refs (if used inside the elements' context, i.e. a custom node/edge)
|
||||||
|
- `selectionKeyCode` as `true`
|
||||||
|
- allows for figma style selection (i.e. create a selection rect without holding shift or any other key)
|
||||||
|
- Handles to trigger handle bounds calculation on mount
|
||||||
|
- if no handle bounds are found, a Handle will try to calculate its bounds on mount
|
||||||
|
- should remove the need for `updateNodeInternals` on dynamic handles
|
||||||
|
- Testing for various features using Cypress 10
|
||||||
|
|
||||||
|
# Bugfixes
|
||||||
|
|
||||||
|
- Fix `removeSelectedEdges` and `removeSelectedNodes` actions not properly removing elements from store
|
||||||
|
|
||||||
|
# Breaking Changes
|
||||||
|
|
||||||
|
- `@vue-flow/core` package is now required to use vue-flow
|
||||||
|
- `@vue-flow/additional-components` package contains `Background`, `MiniMap` and `Controls` components and related types
|
||||||
|
- When switching to the new pkg scope, you need to change the import path.
|
||||||
|
|
||||||
|
Before:
|
||||||
|
|
||||||
|
```js
|
||||||
|
import { VueFlow, Background, MiniMap, Controls } from '@braks/vue-flow'
|
||||||
|
```
|
||||||
|
|
||||||
|
After
|
||||||
|
|
||||||
|
```js
|
||||||
|
import { VueFlow } from '@vue-flow/core'
|
||||||
|
import { Background, MiniMap, Controls } from '@vue-flow/additional-components'
|
||||||
|
```
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [[`939bff50`](https://github.com/bcakmakoglu/vue-flow/commit/939bff503039af3b790160640548ddde984cf2bc), [`47d837aa`](https://github.com/bcakmakoglu/vue-flow/commit/47d837aac096e59e7f55213990dff2cc7eba0c01)]:
|
||||||
|
- @vue-flow/core@1.0.0
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@vue-flow/additional-components",
|
"name": "@vue-flow/additional-components",
|
||||||
"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>",
|
||||||
@@ -30,7 +30,7 @@
|
|||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"vue": "^3.2.37",
|
"vue": "^3.2.37",
|
||||||
"@vue-flow/core": "^0.4.41"
|
"@vue-flow/core": "^1.0.0"
|
||||||
},
|
},
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|||||||
@@ -0,0 +1,83 @@
|
|||||||
|
# @vue-flow/pathfinding-edge
|
||||||
|
|
||||||
|
## 1.0.0
|
||||||
|
|
||||||
|
### Major Changes
|
||||||
|
|
||||||
|
- [#305](https://github.com/bcakmakoglu/vue-flow/pull/305) [`939bff50`](https://github.com/bcakmakoglu/vue-flow/commit/939bff503039af3b790160640548ddde984cf2bc) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - # What's changed?
|
||||||
|
|
||||||
|
- Simplify edge path calculations
|
||||||
|
- remove `getEdgeCenter` and `getSimpleEdgeCenter`
|
||||||
|
|
||||||
|
# Breaking Changes
|
||||||
|
|
||||||
|
- `getEdgeCenter` has been removed
|
||||||
|
- Edge center positions can now be accessed from `getBezierPath` or `getSmoothStepPath` functions
|
||||||
|
|
||||||
|
Before:
|
||||||
|
|
||||||
|
```js
|
||||||
|
import { getBezierPath, getEdgeCenter } from '@braks/vue-flow'
|
||||||
|
|
||||||
|
// used to return the path string only
|
||||||
|
const edgePath = computed(() => getBezierPath(pathParams))
|
||||||
|
|
||||||
|
// was necessary to get the centerX, centerY of an edge
|
||||||
|
const centered = computed(() => getEdgeCenter(centerParams))
|
||||||
|
```
|
||||||
|
|
||||||
|
After:
|
||||||
|
|
||||||
|
```js
|
||||||
|
import { getBezierPath } from '@vue-flow/core'
|
||||||
|
|
||||||
|
// returns the path string and the center positions
|
||||||
|
const [path, centerX, centerY] = computed(() => getBezierPath(pathParams))
|
||||||
|
```
|
||||||
|
|
||||||
|
- [#305](https://github.com/bcakmakoglu/vue-flow/pull/305) [`47d837aa`](https://github.com/bcakmakoglu/vue-flow/commit/47d837aac096e59e7f55213990dff2cc7eba0c01) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - # What's changed?
|
||||||
|
|
||||||
|
- Change pkg scope from 'braks' to 'vue-flow'
|
||||||
|
- Add `@vue-flow/core` package
|
||||||
|
- Add `@vue-flow/additional-components` package
|
||||||
|
- Add `@vue-flow/pathfinding-edge` package
|
||||||
|
- Add `@vue-flow/resize-rotate-node` package
|
||||||
|
|
||||||
|
# Features
|
||||||
|
|
||||||
|
- `useNode` and `useEdge` composables
|
||||||
|
- can be used to access current node/edge (or by id) and their respective element refs (if used inside the elements' context, i.e. a custom node/edge)
|
||||||
|
- `selectionKeyCode` as `true`
|
||||||
|
- allows for figma style selection (i.e. create a selection rect without holding shift or any other key)
|
||||||
|
- Handles to trigger handle bounds calculation on mount
|
||||||
|
- if no handle bounds are found, a Handle will try to calculate its bounds on mount
|
||||||
|
- should remove the need for `updateNodeInternals` on dynamic handles
|
||||||
|
- Testing for various features using Cypress 10
|
||||||
|
|
||||||
|
# Bugfixes
|
||||||
|
|
||||||
|
- Fix `removeSelectedEdges` and `removeSelectedNodes` actions not properly removing elements from store
|
||||||
|
|
||||||
|
# Breaking Changes
|
||||||
|
|
||||||
|
- `@vue-flow/core` package is now required to use vue-flow
|
||||||
|
- `@vue-flow/additional-components` package contains `Background`, `MiniMap` and `Controls` components and related types
|
||||||
|
- When switching to the new pkg scope, you need to change the import path.
|
||||||
|
|
||||||
|
Before:
|
||||||
|
|
||||||
|
```js
|
||||||
|
import { VueFlow, Background, MiniMap, Controls } from '@braks/vue-flow'
|
||||||
|
```
|
||||||
|
|
||||||
|
After
|
||||||
|
|
||||||
|
```js
|
||||||
|
import { VueFlow } from '@vue-flow/core'
|
||||||
|
import { Background, MiniMap, Controls } from '@vue-flow/additional-components'
|
||||||
|
```
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [[`939bff50`](https://github.com/bcakmakoglu/vue-flow/commit/939bff503039af3b790160640548ddde984cf2bc), [`47d837aa`](https://github.com/bcakmakoglu/vue-flow/commit/47d837aac096e59e7f55213990dff2cc7eba0c01)]:
|
||||||
|
- @vue-flow/core@1.0.0
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@vue-flow/pathfinding-edge",
|
"name": "@vue-flow/pathfinding-edge",
|
||||||
"version": "0.2.2",
|
"version": "1.0.0",
|
||||||
"private": false,
|
"private": false,
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
@@ -45,7 +45,7 @@
|
|||||||
"vue-tsc": "^0.40.13"
|
"vue-tsc": "^0.40.13"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@vue-flow/core": "^0.4.41",
|
"@vue-flow/core": "^1.0.0",
|
||||||
"vue": "^3.2.25"
|
"vue": "^3.2.25"
|
||||||
},
|
},
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
|
|||||||
@@ -0,0 +1,83 @@
|
|||||||
|
# @vue-flow/resize-rotate-node
|
||||||
|
|
||||||
|
## 1.0.0
|
||||||
|
|
||||||
|
### Major Changes
|
||||||
|
|
||||||
|
- [#305](https://github.com/bcakmakoglu/vue-flow/pull/305) [`939bff50`](https://github.com/bcakmakoglu/vue-flow/commit/939bff503039af3b790160640548ddde984cf2bc) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - # What's changed?
|
||||||
|
|
||||||
|
- Simplify edge path calculations
|
||||||
|
- remove `getEdgeCenter` and `getSimpleEdgeCenter`
|
||||||
|
|
||||||
|
# Breaking Changes
|
||||||
|
|
||||||
|
- `getEdgeCenter` has been removed
|
||||||
|
- Edge center positions can now be accessed from `getBezierPath` or `getSmoothStepPath` functions
|
||||||
|
|
||||||
|
Before:
|
||||||
|
|
||||||
|
```js
|
||||||
|
import { getBezierPath, getEdgeCenter } from '@braks/vue-flow'
|
||||||
|
|
||||||
|
// used to return the path string only
|
||||||
|
const edgePath = computed(() => getBezierPath(pathParams))
|
||||||
|
|
||||||
|
// was necessary to get the centerX, centerY of an edge
|
||||||
|
const centered = computed(() => getEdgeCenter(centerParams))
|
||||||
|
```
|
||||||
|
|
||||||
|
After:
|
||||||
|
|
||||||
|
```js
|
||||||
|
import { getBezierPath } from '@vue-flow/core'
|
||||||
|
|
||||||
|
// returns the path string and the center positions
|
||||||
|
const [path, centerX, centerY] = computed(() => getBezierPath(pathParams))
|
||||||
|
```
|
||||||
|
|
||||||
|
- [#305](https://github.com/bcakmakoglu/vue-flow/pull/305) [`47d837aa`](https://github.com/bcakmakoglu/vue-flow/commit/47d837aac096e59e7f55213990dff2cc7eba0c01) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - # What's changed?
|
||||||
|
|
||||||
|
- Change pkg scope from 'braks' to 'vue-flow'
|
||||||
|
- Add `@vue-flow/core` package
|
||||||
|
- Add `@vue-flow/additional-components` package
|
||||||
|
- Add `@vue-flow/pathfinding-edge` package
|
||||||
|
- Add `@vue-flow/resize-rotate-node` package
|
||||||
|
|
||||||
|
# Features
|
||||||
|
|
||||||
|
- `useNode` and `useEdge` composables
|
||||||
|
- can be used to access current node/edge (or by id) and their respective element refs (if used inside the elements' context, i.e. a custom node/edge)
|
||||||
|
- `selectionKeyCode` as `true`
|
||||||
|
- allows for figma style selection (i.e. create a selection rect without holding shift or any other key)
|
||||||
|
- Handles to trigger handle bounds calculation on mount
|
||||||
|
- if no handle bounds are found, a Handle will try to calculate its bounds on mount
|
||||||
|
- should remove the need for `updateNodeInternals` on dynamic handles
|
||||||
|
- Testing for various features using Cypress 10
|
||||||
|
|
||||||
|
# Bugfixes
|
||||||
|
|
||||||
|
- Fix `removeSelectedEdges` and `removeSelectedNodes` actions not properly removing elements from store
|
||||||
|
|
||||||
|
# Breaking Changes
|
||||||
|
|
||||||
|
- `@vue-flow/core` package is now required to use vue-flow
|
||||||
|
- `@vue-flow/additional-components` package contains `Background`, `MiniMap` and `Controls` components and related types
|
||||||
|
- When switching to the new pkg scope, you need to change the import path.
|
||||||
|
|
||||||
|
Before:
|
||||||
|
|
||||||
|
```js
|
||||||
|
import { VueFlow, Background, MiniMap, Controls } from '@braks/vue-flow'
|
||||||
|
```
|
||||||
|
|
||||||
|
After
|
||||||
|
|
||||||
|
```js
|
||||||
|
import { VueFlow } from '@vue-flow/core'
|
||||||
|
import { Background, MiniMap, Controls } from '@vue-flow/additional-components'
|
||||||
|
```
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [[`939bff50`](https://github.com/bcakmakoglu/vue-flow/commit/939bff503039af3b790160640548ddde984cf2bc), [`47d837aa`](https://github.com/bcakmakoglu/vue-flow/commit/47d837aac096e59e7f55213990dff2cc7eba0c01)]:
|
||||||
|
- @vue-flow/core@1.0.0
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@vue-flow/resize-rotate-node",
|
"name": "@vue-flow/resize-rotate-node",
|
||||||
"version": "0.0.3",
|
"version": "1.0.0",
|
||||||
"private": false,
|
"private": false,
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
@@ -44,7 +44,7 @@
|
|||||||
"vue-tsc": "^0.40.13"
|
"vue-tsc": "^0.40.13"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@vue-flow/core": "^0.4.41",
|
"@vue-flow/core": "^1.0.0",
|
||||||
"vue": "^3.2.25"
|
"vue": "^3.2.25"
|
||||||
},
|
},
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
|
|||||||
@@ -0,0 +1,78 @@
|
|||||||
|
# @vue-flow/core
|
||||||
|
|
||||||
|
## 1.0.0
|
||||||
|
|
||||||
|
### Major Changes
|
||||||
|
|
||||||
|
- [#305](https://github.com/bcakmakoglu/vue-flow/pull/305) [`939bff50`](https://github.com/bcakmakoglu/vue-flow/commit/939bff503039af3b790160640548ddde984cf2bc) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - # What's changed?
|
||||||
|
|
||||||
|
- Simplify edge path calculations
|
||||||
|
- remove `getEdgeCenter` and `getSimpleEdgeCenter`
|
||||||
|
|
||||||
|
# Breaking Changes
|
||||||
|
|
||||||
|
- `getEdgeCenter` has been removed
|
||||||
|
- Edge center positions can now be accessed from `getBezierPath` or `getSmoothStepPath` functions
|
||||||
|
|
||||||
|
Before:
|
||||||
|
|
||||||
|
```js
|
||||||
|
import { getBezierPath, getEdgeCenter } from '@braks/vue-flow'
|
||||||
|
|
||||||
|
// used to return the path string only
|
||||||
|
const edgePath = computed(() => getBezierPath(pathParams))
|
||||||
|
|
||||||
|
// was necessary to get the centerX, centerY of an edge
|
||||||
|
const centered = computed(() => getEdgeCenter(centerParams))
|
||||||
|
```
|
||||||
|
|
||||||
|
After:
|
||||||
|
|
||||||
|
```js
|
||||||
|
import { getBezierPath } from '@vue-flow/core'
|
||||||
|
|
||||||
|
// returns the path string and the center positions
|
||||||
|
const [path, centerX, centerY] = computed(() => getBezierPath(pathParams))
|
||||||
|
```
|
||||||
|
|
||||||
|
- [#305](https://github.com/bcakmakoglu/vue-flow/pull/305) [`47d837aa`](https://github.com/bcakmakoglu/vue-flow/commit/47d837aac096e59e7f55213990dff2cc7eba0c01) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - # What's changed?
|
||||||
|
|
||||||
|
- Change pkg scope from 'braks' to 'vue-flow'
|
||||||
|
- Add `@vue-flow/core` package
|
||||||
|
- Add `@vue-flow/additional-components` package
|
||||||
|
- Add `@vue-flow/pathfinding-edge` package
|
||||||
|
- Add `@vue-flow/resize-rotate-node` package
|
||||||
|
|
||||||
|
# Features
|
||||||
|
|
||||||
|
- `useNode` and `useEdge` composables
|
||||||
|
- can be used to access current node/edge (or by id) and their respective element refs (if used inside the elements' context, i.e. a custom node/edge)
|
||||||
|
- `selectionKeyCode` as `true`
|
||||||
|
- allows for figma style selection (i.e. create a selection rect without holding shift or any other key)
|
||||||
|
- Handles to trigger handle bounds calculation on mount
|
||||||
|
- if no handle bounds are found, a Handle will try to calculate its bounds on mount
|
||||||
|
- should remove the need for `updateNodeInternals` on dynamic handles
|
||||||
|
- Testing for various features using Cypress 10
|
||||||
|
|
||||||
|
# Bugfixes
|
||||||
|
|
||||||
|
- Fix `removeSelectedEdges` and `removeSelectedNodes` actions not properly removing elements from store
|
||||||
|
|
||||||
|
# Breaking Changes
|
||||||
|
|
||||||
|
- `@vue-flow/core` package is now required to use vue-flow
|
||||||
|
- `@vue-flow/additional-components` package contains `Background`, `MiniMap` and `Controls` components and related types
|
||||||
|
- When switching to the new pkg scope, you need to change the import path.
|
||||||
|
|
||||||
|
Before:
|
||||||
|
|
||||||
|
```js
|
||||||
|
import { VueFlow, Background, MiniMap, Controls } from '@braks/vue-flow'
|
||||||
|
```
|
||||||
|
|
||||||
|
After
|
||||||
|
|
||||||
|
```js
|
||||||
|
import { VueFlow } from '@vue-flow/core'
|
||||||
|
import { Background, MiniMap, Controls } from '@vue-flow/additional-components'
|
||||||
|
```
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@vue-flow/core",
|
"name": "@vue-flow/core",
|
||||||
"version": "0.4.41",
|
"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