Merge branch 'xyflow' into feat/ssr

This commit is contained in:
Moritz Klack
2023-10-31 14:12:52 +01:00
committed by GitHub
10 changed files with 300 additions and 77 deletions
@@ -1,6 +1,7 @@
<svelte:options immutable />
<script lang="ts">
import cc from 'classcat';
import { createEventDispatcher } from 'svelte';
import { getMarkerId } from '@xyflow/system';
@@ -73,7 +74,7 @@
<!-- svelte-ignore a11y-no-noninteractive-element-interactions -->
{#if !hidden}
<g
class="svelte-flow__edge {className}"
class={cc(['svelte-flow__edge', className])}
class:animated
class:selected
data-id={id}
@@ -0,0 +1,4 @@
export { default as BezierEdge } from './BezierEdge.svelte';
export { default as StraightEdge } from './StraightEdge.svelte';
export { default as SmoothStepEdge } from './SmoothStepEdge.svelte';
export { default as StepEdge } from './StepEdge.svelte';