renamed internal files in svelte for better alphabetical ordering

This commit is contained in:
Peter
2023-11-28 14:35:18 +01:00
parent 2e15fd72ee
commit f871617abe
7 changed files with 8 additions and 5 deletions

View File

@@ -6,7 +6,7 @@
import { errorMessages, getMarkerId } from '@xyflow/system';
import { useStore } from '$lib/store';
import BezierEdge from '$lib/components/edges/InternalBezierEdge.svelte';
import { BezierEdge } from '$lib/components/edges/internal';
import type { EdgeLayouted, Edge } from '$lib/types';
import { get } from 'svelte/store';

View File

@@ -0,0 +1,4 @@
export { default as BezierEdge } from './BezierEdgeInternal.svelte';
export { default as StraightEdge } from './StraightEdgeInternal.svelte';
export { default as SmoothStepEdge } from './SmoothStepEdgeInternal.svelte';
export { default as StepEdge } from './StepEdgeInternal.svelte';

View File

@@ -24,10 +24,9 @@ import DefaultNode from '$lib/components/nodes/DefaultNode.svelte';
import InputNode from '$lib/components/nodes/InputNode.svelte';
import OutputNode from '$lib/components/nodes/OutputNode.svelte';
import GroupNode from '$lib/components/nodes/GroupNode.svelte';
import BezierEdge from '$lib/components/edges/InternalBezierEdge.svelte';
import StraightEdge from '$lib/components/edges/InternalStraightEdge.svelte';
import SmoothStepEdge from '$lib/components/edges/InternalSmoothStepEdge.svelte';
import StepEdge from '$lib/components/edges/InternalStepEdge.svelte';
import { BezierEdge, StraightEdge, StepEdge, SmoothStepEdge } from '$lib/components/edges/internal';
import type {
NodeTypes,
EdgeTypes,