refactor(types)!: Remove elements prop, change EdgeTypes/NodeTypes prop to string[]

* no more elements prop - v-model instead!
* Instead of passing an object map to components just pass in an array of strings as nodeTypes/edgeTypes object
* the string name will either be resolved to a dynamic component with :is="type" or a slot with the type-name
* update all examples

Signed-off-by: Braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
Braks
2021-11-20 22:10:25 +01:00
parent 0a1c2d4ede
commit 39b21faa5b
34 changed files with 169 additions and 200 deletions
+6 -7
View File
@@ -7,15 +7,11 @@ import {
Connection,
Controls,
Edge,
EdgeType,
Elements,
MiniMap,
FlowInstance,
removeElements,
} from '~/index'
const edgeTypes = {
buttonedge: ButtonEdge as EdgeType,
}
const elements = ref<Elements>([
{
@@ -29,7 +25,7 @@ const elements = ref<Elements>([
id: 'edge-1-2',
source: 'ewb-1',
target: 'ewb-2',
type: 'buttonedge',
type: 'button',
},
])
@@ -41,13 +37,16 @@ const onConnect = (params: Connection | Edge) =>
<template>
<VueFlow
key="edge-with-button"
:elements="elements"
v-model="elements"
:snap-to-grid="true"
:edge-types="edgeTypes"
:edge-types="['button']"
@load="onLoad"
@elementsRemove="onElementsRemove"
@connect="onConnect"
>
<template #edge-button="props">
<ButtonEdge v-bind="props" />
</template>
<MiniMap />
<Controls />
<Background />