renamed internal files in svelte for better alphabetical ordering
This commit is contained in:
@@ -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';
|
||||
|
||||
|
||||
4
packages/svelte/src/lib/components/edges/internal.ts
Normal file
4
packages/svelte/src/lib/components/edges/internal.ts
Normal 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';
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user