Releases: bcakmakoglu/vue-flow
@vue-flow/[email protected]
What's Changed
Patch Changes
- #1421
69631f0
Thanks @bcakmakoglu! - AllowPanelPositionType
as value for position
Full Changelog: https://github.com/bcakmakoglu/vue-flow/compare/v1.33.6...@vue-flow/[email protected]
v1.33.8
What's Changed
Patch Changes
- #1404
b636853
Thanks @bcakmakoglu! - Prevent auto-pan on connect when it's set to false.
Full Changelog: v1.33.6...v1.33.8
v1.33.7
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
What's Changed
Patch Changes
-
#1375
0754e79
Thanks @bcakmakoglu! - Pass pathOptions to edges -
#1389
f62f2ca
Thanks @bcakmakoglu! - Prevent delete key action inside input field even if modifier is pressed. -
#1373
a88cd9e
Thanks @bcakmakoglu! - Set ltr on vue flow wrapper -
#1374
2821c32
Thanks @bcakmakoglu! - Allow pinch-zoom if preventScrolling is disabled
Full Changelog: v1.33.5...v1.33.6
v1.33.5
What's Changed
Patch Changes
- #1356
b5beac2
Thanks @bcakmakoglu! - Store current Storage instance on vue app to avoid hydration errors.
Full Changelog: v1.33.4...v1.33.5
v1.33.4
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
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
What's Changed
Patch Changes
-
#1338
f3c09ce
Thanks @bcakmakoglu! - Use nullish check to fallback to default center values ingetSmoothstepPath
-
#1339
eb20a0f
Thanks @bcakmakoglu! - Check if node dimensions exist inuseNodesInitialized
-
#1335
ed5d104
Thanks @bcakmakoglu! - Removeref
prop fromBaseEdge
Full Changelog: v1.32.1...v1.33.2
v1.33.1
What's Changed
Patch Changes
- #1329
9b5d496
Thanks @bcakmakoglu! - Correct return type ofuseNodesData
Full Changelog: v1.33.0...v1.33.1
v1.33.0
What's Changed
Minor Changes
-
#1323
ed4ccf4
Thanks @bcakmakoglu! - Add node id and node type to return ofuseNodesData
.⚠️ 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
-
#1326
78a604c
Thanks @bcakmakoglu! - Use default cursor for nodes and use grab cursor if node is draggable -
#1324
c964220
Thanks @bcakmakoglu! - Prevent esc keypress triggers when keyboard a11y is disabled
New Contributors
- @Robin-Hoodie made their first contribution in #1321
Full Changelog: v1.32.1...v1.33.0