refactor(core): remove node intersections arg from drag events (#1460)

* refactor(core): remove node intersections arg from drag events

* chore(changeset): add

* docs(examples): update intersection example
This commit is contained in:
Braks
2024-06-13 00:04:51 +02:00
parent a9ccd61eec
commit 0825101ebe
8 changed files with 70 additions and 22 deletions
+17 -1
View File
@@ -1,3 +1,19 @@
.vue-flow__node.intersecting {
background-color: yellow;
background-color: #f15a16;
}
.vue-flow__panel {
height: 250px;
width: 250px;
border: 1px dashed #ccc;
pointer-events: none !important;
border-radius: 4px;
display: flex;
justify-content: center;
align-items: center;
}
.vue-flow__panel.intersecting {
border-color: #f15a16;
background-color: rgba(241, 90, 22, 0.03);
}