Vue Flow Versions Save

A highly customizable Flowchart component for Vue 3. Features seamless zoom & pan 🔎, additional components like a Minimap 🗺 and utilities to interact with state and graph.

v1.33.6

1 week ago

What's Changed

Patch Changes

Full Changelog: https://github.com/bcakmakoglu/vue-flow/compare/v1.33.5...v1.33.6

v1.33.5

1 month ago

What's Changed

Patch Changes

Full Changelog: https://github.com/bcakmakoglu/vue-flow/compare/v1.33.4...v1.33.5

v1.33.4

2 months ago

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: https://github.com/bcakmakoglu/vue-flow/compare/v1.32.1...v1.33.4

v1.33.3

2 months ago

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: https://github.com/bcakmakoglu/vue-flow/compare/v1.32.1...v1.33.3

v1.33.2

2 months ago

What's Changed

Patch Changes

Full Changelog: https://github.com/bcakmakoglu/vue-flow/compare/v1.32.1...v1.33.2

v1.33.1

2 months ago

What's Changed

Patch Changes

Full Changelog: https://github.com/bcakmakoglu/vue-flow/compare/v1.33.0...v1.33.1

v1.33.0

2 months ago

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: https://github.com/bcakmakoglu/vue-flow/compare/v1.32.1...v1.33.0

v1.32.1

2 months ago

What's Changed

Patch Changes

Full Changelog: https://github.com/bcakmakoglu/vue-flow/compare/v1.32.0...v1.32.1

@vue-flow/[email protected]

2 months ago

v1.32.0

2 months ago

What's Changed

Minor Changes

Patch Changes

New Contributors

Full Changelog: https://github.com/bcakmakoglu/vue-flow/compare/v1.31.0...v1.32.0