From d9a133bd0169be8c4d5fb4ea5807d83b24df291e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 15 Jul 2024 13:08:02 +0000 Subject: [PATCH] chore: bump versions --- .changeset/four-deers-judge.md | 5 ----- .changeset/good-turtles-accept.md | 5 ----- .changeset/moody-apricots-rhyme.md | 5 ----- .changeset/silly-days-sniff.md | 5 ----- .changeset/tiny-peaches-dance.md | 5 ----- packages/core/CHANGELOG.md | 16 ++++++++++++++++ packages/core/package.json | 2 +- 7 files changed, 17 insertions(+), 26 deletions(-) delete mode 100644 .changeset/four-deers-judge.md delete mode 100644 .changeset/good-turtles-accept.md delete mode 100644 .changeset/moody-apricots-rhyme.md delete mode 100644 .changeset/silly-days-sniff.md delete mode 100644 .changeset/tiny-peaches-dance.md diff --git a/.changeset/four-deers-judge.md b/.changeset/four-deers-judge.md deleted file mode 100644 index 267a02db..00000000 --- a/.changeset/four-deers-judge.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@vue-flow/core": minor ---- - -Add `paneClickDistance` option. Allows specifying the distance between mousedown and mouseup in which a click would still be registered (by default `0`) diff --git a/.changeset/good-turtles-accept.md b/.changeset/good-turtles-accept.md deleted file mode 100644 index dd01c763..00000000 --- a/.changeset/good-turtles-accept.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@vue-flow/core": minor ---- - -Add `autoPanSpeed` prop. Allows specifying at what speed the pane moves when auto-panning via node-drag, selection-drag or connection-drag diff --git a/.changeset/moody-apricots-rhyme.md b/.changeset/moody-apricots-rhyme.md deleted file mode 100644 index 43b18fab..00000000 --- a/.changeset/moody-apricots-rhyme.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@vue-flow/core": patch ---- - -Dispatch click if drag move was attempted and threshold was not crossed, ignoring any movement that's too small to be considered a drag at all diff --git a/.changeset/silly-days-sniff.md b/.changeset/silly-days-sniff.md deleted file mode 100644 index 7df05156..00000000 --- a/.changeset/silly-days-sniff.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@vue-flow/core": patch ---- - -Prevent calling `onSelectionEnd` when clicking a selection diff --git a/.changeset/tiny-peaches-dance.md b/.changeset/tiny-peaches-dance.md deleted file mode 100644 index 5c88bb18..00000000 --- a/.changeset/tiny-peaches-dance.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@vue-flow/core": patch ---- - -Handle pointer capture for selection on drag diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index b4cc3b45..eba93e2f 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,21 @@ # @vue-flow/core +## 1.39.0 + +### Minor Changes + +- [#1542](https://github.com/bcakmakoglu/vue-flow/pull/1542) [`de75620`](https://github.com/bcakmakoglu/vue-flow/commit/de756206ccdbfa364d8382c7fef51104aceb1c4d) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Add `paneClickDistance` option. Allows specifying the distance between mousedown and mouseup in which a click would still be registered (by default `0`) + +- [#1535](https://github.com/bcakmakoglu/vue-flow/pull/1535) [`1a812f3`](https://github.com/bcakmakoglu/vue-flow/commit/1a812f31ddafd008082fc8d0378ec880a1b57a33) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Add `autoPanSpeed` prop. Allows specifying at what speed the pane moves when auto-panning via node-drag, selection-drag or connection-drag + +### Patch Changes + +- [#1536](https://github.com/bcakmakoglu/vue-flow/pull/1536) [`235d564`](https://github.com/bcakmakoglu/vue-flow/commit/235d564fcf2bcd7036f9f0bb40c9f32d4d5af014) Thanks [@github-actions](https://github.com/apps/github-actions)! - Dispatch click if drag move was attempted and threshold was not crossed, ignoring any movement that's too small to be considered a drag at all + +- [#1545](https://github.com/bcakmakoglu/vue-flow/pull/1545) [`2910992`](https://github.com/bcakmakoglu/vue-flow/commit/2910992c2d59789c5c8cf537655d2d6032471aa7) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Prevent calling `onSelectionEnd` when clicking a selection + +- [#1543](https://github.com/bcakmakoglu/vue-flow/pull/1543) [`85c8d2d`](https://github.com/bcakmakoglu/vue-flow/commit/85c8d2ddc0612f9831d55f074c1e0d4a4ceca814) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Handle pointer capture for selection on drag + ## 1.38.5 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index 1ba55550..76135d0e 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@vue-flow/core", - "version": "1.38.5", + "version": "1.39.0", "private": false, "license": "MIT", "author": "Burak Cakmakoglu<78412429+bcakmakoglu@users.noreply.github.com>",