Skip to content

Releases: bcakmakoglu/vue-flow

v1.33.7

12 May 16:16
Compare
Choose a tag to compare

What's Changed

Patch Changes

  • #1378 58d1a36 Thanks @bcakmakoglu! - Allow wheel events to bubble up to the user if the event is not caught and used by the viewport

Full Changelog: v1.33.6...v1.33.7

v1.33.6

29 Apr 18:58
Compare
Choose a tag to compare

What's Changed

Patch Changes

Full Changelog: v1.33.5...v1.33.6

v1.33.5

24 Mar 12:32
Compare
Choose a tag to compare

What's Changed

Patch Changes

Full Changelog: v1.33.4...v1.33.5

v1.33.4

06 Mar 21:23
Compare
Choose a tag to compare

What's Changed

Patch Changes

  • #1346 376d0ac Thanks @bcakmakoglu! - Revert extending FlowEmits from separate interfaces for nodes and edges as it breaks event definitions for the actual component, causing warnings that the event was emitted by isn't defined.

Full Changelog: v1.32.1...v1.33.4

v1.33.3

06 Mar 18:07
Compare
Choose a tag to compare

What's Changed

Patch Changes

  • #1343 89b76a1 Thanks @bcakmakoglu! - Use separate interfaces for Edge- and NodeEvents and extend FlowEmit interface from them. Fixes edge events overwriting node event definitions when types are created.

Full Changelog: v1.32.1...v1.33.3

v1.33.2

28 Feb 09:56
Compare
Choose a tag to compare

What's Changed

Patch Changes

Full Changelog: v1.32.1...v1.33.2

v1.33.1

23 Feb 07:50
Compare
Choose a tag to compare

What's Changed

Patch Changes

Full Changelog: v1.33.0...v1.33.1

v1.33.0

21 Feb 22:28
Compare
Choose a tag to compare

What's Changed

Minor Changes

  • #1323 ed4ccf4 Thanks @bcakmakoglu! - Add node id and node type to return of useNodesData.

    鈿狅笍This is a small breaking change from the previous implementation!

    Previously you would only receive the data object back, now you will receive an object with the data and the node id and type.

    const nodesData = useNodesData(nodeIds);
    
    // Previously
    nodesData.forEach((data) => {
      // ...
    });
    
    // Now
    nodesData.forEach(({ id, type, data }) => {
      // ...
    });

Patch Changes

New Contributors

Full Changelog: v1.32.1...v1.33.0

v1.32.1

15 Feb 21:05
Compare
Choose a tag to compare

What's Changed

Patch Changes

Full Changelog: v1.32.0...v1.32.1

v1.32.0

15 Feb 16:48
Compare
Choose a tag to compare

What's Changed

Minor Changes

Patch Changes

New Contributors

Full Changelog: v1.31.0...v1.32.0