From c286b3b7ff6fe03ea690e708aea363b4018a23c5 Mon Sep 17 00:00:00 2001 From: Braks <78412429+bcakmakoglu@users.noreply.github.com> Date: Tue, 23 Nov 2021 17:18:12 +0100 Subject: [PATCH] fix(flow): preventScrolling missing in props definition * remove console log from ZoomPane * Add missing name to VueFlow Signed-off-by: Braks <78412429+bcakmakoglu@users.noreply.github.com> --- src/container/VueFlow/VueFlow.vue | 6 ++++++ src/container/ZoomPane/ZoomPane.vue | 1 - 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/container/VueFlow/VueFlow.vue b/src/container/VueFlow/VueFlow.vue index 2a65c241..8e1c5728 100644 --- a/src/container/VueFlow/VueFlow.vue +++ b/src/container/VueFlow/VueFlow.vue @@ -38,6 +38,7 @@ interface FlowProps extends FlowOptions { selectionKeyCode?: KeyCode multiSelectionKeyCode?: KeyCode zoomActivationKeyCode?: KeyCode + preventScrolling?: boolean snapToGrid?: boolean snapGrid?: [number, number] onlyRenderVisibleElements?: boolean @@ -177,6 +178,11 @@ const transitionName = computed(() => { return name }) +