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 { errorMessages, getMarkerId } from '@xyflow/system';
|
||||||
|
|
||||||
import { useStore } from '$lib/store';
|
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 type { EdgeLayouted, Edge } from '$lib/types';
|
||||||
import { get } from 'svelte/store';
|
import { get } from 'svelte/store';
|
||||||
|
|
||||||
|
|||||||
@@ -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 InputNode from '$lib/components/nodes/InputNode.svelte';
|
||||||
import OutputNode from '$lib/components/nodes/OutputNode.svelte';
|
import OutputNode from '$lib/components/nodes/OutputNode.svelte';
|
||||||
import GroupNode from '$lib/components/nodes/GroupNode.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 { BezierEdge, StraightEdge, StepEdge, SmoothStepEdge } from '$lib/components/edges/internal';
|
||||||
import SmoothStepEdge from '$lib/components/edges/InternalSmoothStepEdge.svelte';
|
|
||||||
import StepEdge from '$lib/components/edges/InternalStepEdge.svelte';
|
|
||||||
import type {
|
import type {
|
||||||
NodeTypes,
|
NodeTypes,
|
||||||
EdgeTypes,
|
EdgeTypes,
|
||||||
|
|||||||
Reference in New Issue
Block a user