chore: bump versions
This commit is contained in:
committed by
Braks
parent
b8b325e316
commit
d224d59b4d
@@ -1,5 +1,53 @@
|
||||
# @vue-flow/additional-components
|
||||
|
||||
## 1.1.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- [#311](https://github.com/bcakmakoglu/vue-flow/pull/311) [`2e2c449b`](https://github.com/bcakmakoglu/vue-flow/commit/2e2c449bf60efed7152930962df2f9b5c0037386) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - # What's changed?
|
||||
|
||||
- Add `Panel` component
|
||||
- Wrap `MiniMap` and `Controls` with `Panel`
|
||||
- Add `position` prop to `MiniMap` and `Controls`
|
||||
Example:
|
||||
|
||||
```vue
|
||||
<VueFlow v-model="elements">
|
||||
<MiniMap position="top-right" />
|
||||
<Controls position="top-left" />
|
||||
</VueFlow>
|
||||
```
|
||||
|
||||
# Bugfixes
|
||||
|
||||
- Fix `MiniMap` and `Controls` cancelling selections
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#311](https://github.com/bcakmakoglu/vue-flow/pull/311) [`e175cf81`](https://github.com/bcakmakoglu/vue-flow/commit/e175cf8157be1851651d6df0a9e87f732b53de59) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - # What's changed?
|
||||
|
||||
- Add `vueflow` pkg that exports all features
|
||||
|
||||
```vue
|
||||
<script setup>
|
||||
// `vueflow` pkg exports all features, i.e. core + additional components
|
||||
import { VueFlow, Background, MiniMap, Controls } from 'vueflow'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<VueFlow>
|
||||
<Background />
|
||||
<MiniMap />
|
||||
<Controls />
|
||||
</VueFlow>
|
||||
</template>
|
||||
```
|
||||
|
||||
### Chores
|
||||
|
||||
- Rename `core` pkg directory to `core` from `vue-flow`
|
||||
- Rename bundle outputs
|
||||
|
||||
## 1.0.0
|
||||
|
||||
### Major Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue-flow/additional-components",
|
||||
"version": "1.0.0",
|
||||
"version": "1.1.0",
|
||||
"private": false,
|
||||
"license": "MIT",
|
||||
"author": "Burak Cakmakoglu<78412429+bcakmakoglu@users.noreply.github.com>",
|
||||
|
||||
Reference in New Issue
Block a user