diff --git a/.changeset/big-dancers-decide.md b/.changeset/big-dancers-decide.md deleted file mode 100644 index 6a9b6ea8..00000000 --- a/.changeset/big-dancers-decide.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@xyflow/system': patch ---- - -Fix an issue that appeared when user deleted node while dragging. diff --git a/.changeset/curly-cows-repeat.md b/.changeset/curly-cows-repeat.md deleted file mode 100644 index 87b3935f..00000000 --- a/.changeset/curly-cows-repeat.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@xyflow/svelte': patch -'@xyflow/system': patch -'@xyflow/react': patch ---- - -Fix initial `fitView` not working correctly for `nodeOrigin` other than [0,0] diff --git a/.changeset/cyan-frogs-lick.md b/.changeset/cyan-frogs-lick.md deleted file mode 100644 index 11109aab..00000000 --- a/.changeset/cyan-frogs-lick.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@xyflow/svelte': patch -'@xyflow/react': patch ---- - -Improve `fitView` to respect clamped node positions based on `nodeExtent` diff --git a/.changeset/smart-insects-tease.md b/.changeset/smart-insects-tease.md deleted file mode 100644 index 33b5b211..00000000 --- a/.changeset/smart-insects-tease.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@xyflow/react': patch -'@xyflow/svelte': patch ---- - -Calculate viewport dimensions in `fitView` instead of using stored dimensions. Fixes [#4652](https://github.com/xyflow/xyflow/issues/4652) diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index b8a68ca6..280993df 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,5 +1,18 @@ # @xyflow/react +## 12.3.1 + +### Patch Changes + +- [#4670](https://github.com/xyflow/xyflow/pull/4670) [`b056564c`](https://github.com/xyflow/xyflow/commit/b056564c9658bb43b882eebfad5a7e224717ffb5) Thanks [@peterkogo](https://github.com/peterkogo)! - Fix initial `fitView` not working correctly for `nodeOrigin` other than [0,0] + +- [#4670](https://github.com/xyflow/xyflow/pull/4670) [`b056564c`](https://github.com/xyflow/xyflow/commit/b056564c9658bb43b882eebfad5a7e224717ffb5) Thanks [@peterkogo](https://github.com/peterkogo)! - Improve `fitView` to respect clamped node positions based on `nodeExtent` + +- [#4653](https://github.com/xyflow/xyflow/pull/4653) [`02390f99`](https://github.com/xyflow/xyflow/commit/02390f9966d51c80e4e1b488733b5bf7322ad710) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Calculate viewport dimensions in `fitView` instead of using stored dimensions. Fixes [#4652](https://github.com/xyflow/xyflow/issues/4652) + +- Updated dependencies [[`99ba64ac`](https://github.com/xyflow/xyflow/commit/99ba64ac2e1ce9c5ac3cab85a3d574edc0ecf4cc), [`b056564c`](https://github.com/xyflow/xyflow/commit/b056564c9658bb43b882eebfad5a7e224717ffb5)]: + - @xyflow/system@0.0.43 + ## 12.3.0 ### Minor Changes diff --git a/packages/react/package.json b/packages/react/package.json index 5f8496ee..0625c6cd 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@xyflow/react", - "version": "12.3.0", + "version": "12.3.1", "description": "React Flow - A highly customizable React library for building node-based editors and interactive flow charts.", "keywords": [ "react", diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index e1c3cc73..d13926dd 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,18 @@ # @xyflow/svelte +## 0.1.20 + +### Patch Changes + +- [#4670](https://github.com/xyflow/xyflow/pull/4670) [`b056564c`](https://github.com/xyflow/xyflow/commit/b056564c9658bb43b882eebfad5a7e224717ffb5) Thanks [@peterkogo](https://github.com/peterkogo)! - Fix initial `fitView` not working correctly for `nodeOrigin` other than [0,0] + +- [#4670](https://github.com/xyflow/xyflow/pull/4670) [`b056564c`](https://github.com/xyflow/xyflow/commit/b056564c9658bb43b882eebfad5a7e224717ffb5) Thanks [@peterkogo](https://github.com/peterkogo)! - Improve `fitView` to respect clamped node positions based on `nodeExtent` + +- [#4653](https://github.com/xyflow/xyflow/pull/4653) [`02390f99`](https://github.com/xyflow/xyflow/commit/02390f9966d51c80e4e1b488733b5bf7322ad710) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Calculate viewport dimensions in `fitView` instead of using stored dimensions. Fixes [#4652](https://github.com/xyflow/xyflow/issues/4652) + +- Updated dependencies [[`99ba64ac`](https://github.com/xyflow/xyflow/commit/99ba64ac2e1ce9c5ac3cab85a3d574edc0ecf4cc), [`b056564c`](https://github.com/xyflow/xyflow/commit/b056564c9658bb43b882eebfad5a7e224717ffb5)]: + - @xyflow/system@0.0.43 + ## 0.1.19 ### Patch Changes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index 0b8e09a4..4d7b0c77 100644 --- a/packages/svelte/package.json +++ b/packages/svelte/package.json @@ -1,6 +1,6 @@ { "name": "@xyflow/svelte", - "version": "0.1.19", + "version": "0.1.20", "description": "Svelte Flow - A highly customizable Svelte library for building node-based editors, workflow systems, diagrams and more.", "keywords": [ "svelte", diff --git a/packages/system/CHANGELOG.md b/packages/system/CHANGELOG.md index 6add95b1..0ec273ac 100644 --- a/packages/system/CHANGELOG.md +++ b/packages/system/CHANGELOG.md @@ -1,5 +1,13 @@ # @xyflow/system +## 0.0.43 + +### Patch Changes + +- [#4681](https://github.com/xyflow/xyflow/pull/4681) [`99ba64ac`](https://github.com/xyflow/xyflow/commit/99ba64ac2e1ce9c5ac3cab85a3d574edc0ecf4cc) Thanks [@moklick](https://github.com/moklick)! - Fix an issue that appeared when user deleted node while dragging. + +- [#4670](https://github.com/xyflow/xyflow/pull/4670) [`b056564c`](https://github.com/xyflow/xyflow/commit/b056564c9658bb43b882eebfad5a7e224717ffb5) Thanks [@peterkogo](https://github.com/peterkogo)! - Fix initial `fitView` not working correctly for `nodeOrigin` other than [0,0] + ## 0.0.42 ### Patch Changes diff --git a/packages/system/package.json b/packages/system/package.json index 8b072334..9d1c09b8 100644 --- a/packages/system/package.json +++ b/packages/system/package.json @@ -1,6 +1,6 @@ { "name": "@xyflow/system", - "version": "0.0.42", + "version": "0.0.43", "description": "xyflow core system that powers React Flow and Svelte Flow.", "keywords": [ "node-based UI",