feat: better graph layout algorithm + migrate to svelte 5 almost everywhere + xyflow 1.0

This commit is contained in:
Ruben Fiszel
2025-06-12 15:44:35 +02:00
committed by GitHub
parent d47c078bb5
commit 23920aee84
310 changed files with 15289 additions and 11442 deletions

View File

@@ -10,13 +10,10 @@
const { flowStore } = getContext<FlowEditorContext>('FlowEditorContext')
</script>
{#if $flowStore.value.preprocessor_module}
{#if flowStore.val.value.preprocessor_module}
<FlowModuleWrapper
{noEditor}
bind:flowModule={$flowStore.value.preprocessor_module}
on:delete={() => {
$flowStore.value.preprocessor_module = undefined
}}
bind:flowModule={flowStore.val.value.preprocessor_module}
previousModule={undefined}
{savedModule}
/>