Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 0 additions & 64 deletions .changeset/eight-pears-peel.md

This file was deleted.

28 changes: 0 additions & 28 deletions .changeset/healthy-houses-drum.md

This file was deleted.

20 changes: 0 additions & 20 deletions .changeset/poor-chairs-march.md

This file was deleted.

60 changes: 0 additions & 60 deletions .changeset/six-dogs-return.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/violet-mugs-attend.md

This file was deleted.

48 changes: 48 additions & 0 deletions packages/additional-components/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/additional-components/package.json
Original file line number Diff line number Diff line change
@@ -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>",
Expand Down
Loading