feat(editor): Node IO filter (#7503)

Co-authored-by: Omar Ajoue <krynble@gmail.com>
This commit is contained in:
Csaba Tuncsik
2023-11-15 16:19:48 +01:00
committed by GitHub
parent 93103c0b08
commit 18817651ec
18 changed files with 1331 additions and 85 deletions

View File

@@ -18,6 +18,7 @@ type Props = {
totalRuns: number;
paneType: 'input' | 'output';
node: INodeUi | null;
search: string;
};
const props = withDefaults(defineProps<Props>(), {
@@ -91,6 +92,7 @@ const onDragEnd = (el: HTMLElement) => {
:draggingPath="draggingPath"
:distanceFromActive="distanceFromActive"
:node="node"
:search="search"
/>
</div>
</draggable>