diff --git a/examples/UpdatableEdge/UpdatableEdgeExample.vue b/examples/UpdatableEdge/UpdatableEdgeExample.vue
index ef1cbeff..e3d9e83c 100644
--- a/examples/UpdatableEdge/UpdatableEdgeExample.vue
+++ b/examples/UpdatableEdge/UpdatableEdgeExample.vue
@@ -8,7 +8,6 @@ import {
FlowInstance,
Connection,
Edge,
- removeElements,
FlowEvents,
ConnectionMode,
} from '~/index'
@@ -47,7 +46,6 @@ const onEdgeUpdateEnd = (edge: Edge) => console.log('end update', edge)
const onEdgeUpdate = ({ edge, connection }: FlowEvents['edgeUpdate']) =>
(elements.value = updateEdge(edge, connection, elements.value))
const onConnect = (params: Connection | Edge) => (elements.value = addEdge(params, elements.value))
-const onElementsRemove = (elementsToRemove: Elements) => (elements.value = removeElements(elementsToRemove, elements.value))
(elements.value = remov
@edge-update="onEdgeUpdate"
@connect="onConnect"
@edge-update-start="onEdgeUpdateStart"
- @elements-remove="onElementsRemove"
@edge-update-end="onEdgeUpdateEnd"
>
diff --git a/examples/UpdateNodeInternals/CustomNode.vue b/examples/UpdateNodeInternals/CustomNode.vue
deleted file mode 100644
index 626fd939..00000000
--- a/examples/UpdateNodeInternals/CustomNode.vue
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
output handle count: {{ props.data.handleCount }}
-
-
-
diff --git a/examples/UpdateNodeInternals/UpdateNodeInternalsExample.vue b/examples/UpdateNodeInternals/UpdateNodeInternalsExample.vue
deleted file mode 100644
index 35dd6e96..00000000
--- a/examples/UpdateNodeInternals/UpdateNodeInternalsExample.vue
+++ /dev/null
@@ -1,74 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/examples/ZoomPanHelper/ZoomPanHelperExample.vue b/examples/ZoomPanHelper/ZoomPanHelperExample.vue
index 04780fee..3e1f6d67 100644
--- a/examples/ZoomPanHelper/ZoomPanHelperExample.vue
+++ b/examples/ZoomPanHelper/ZoomPanHelperExample.vue
@@ -1,16 +1,5 @@
-
+
diff --git a/examples/router.ts b/examples/router.ts
index 058433c5..af6db5be 100644
--- a/examples/router.ts
+++ b/examples/router.ts
@@ -29,10 +29,6 @@ export const routes: RouterOptions['routes'] = [
path: '/edges',
component: () => import('./Edges/EdgesExample.vue'),
},
- {
- path: '/button-edge',
- component: () => import('./EdgeWithButton/EdgeWithButton.vue'),
- },
{
path: '/edge-types',
component: () => import('./EdgeTypes/EdgeTypesExample.vue'),
@@ -61,10 +57,6 @@ export const routes: RouterOptions['routes'] = [
path: '/node-type-change',
component: () => import('./NodeTypeChange/NodeTypeChangeExample.vue'),
},
- {
- path: '/node-types-id-change',
- component: () => import('./NodeTypesIdChange/NodeTypesIdChangeExample.vue'),
- },
{
path: '/overview',
component: () => import('./Overview/Overview.vue'),
@@ -97,10 +89,6 @@ export const routes: RouterOptions['routes'] = [
path: '/update-node',
component: () => import('./UpdateNode/UpdateNodeExample.vue'),
},
- {
- path: '/update-node-internals',
- component: () => import('./UpdateNodeInternals/UpdateNodeInternalsExample.vue'),
- },
{
path: '/validation',
component: () => import('./Validation/ValidationExample.vue'),