diff --git a/package.json b/package.json index 1d6fab2b..e2b4d300 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "svelvet", - "version": "7.0.32", + "version": "7.0.34", "description": "A lightweight Svelte component library for building dynamic, node-based user interfaces", "keywords": [ "svelte", diff --git a/src/lib/containers/Graph/Graph.svelte b/src/lib/containers/Graph/Graph.svelte index f8b8ed5d..f0708778 100644 --- a/src/lib/containers/Graph/Graph.svelte +++ b/src/lib/containers/Graph/Graph.svelte @@ -4,15 +4,8 @@ import GraphRenderer from '../../renderers/GraphRenderer/GraphRenderer.svelte'; import Editor from '$lib/components/Editor/Editor.svelte'; import { onMount, setContext, getContext, createEventDispatcher } from 'svelte'; - import type { - ThemeGroup, - Graph, - GroupBox, - GraphDimensions, - CSSColorString, - Connections - } from '$lib/types'; - import type { Arrow, GroupKey, Group, CursorAnchor, XYPair } from '$lib/types'; + import type { ThemeGroup, Graph, GroupBox, GraphDimensions, CSSColorString } from '$lib/types'; + import type { Arrow, GroupKey, Group, CursorAnchor } from '$lib/types'; import { isArrow } from '$lib/types'; import { touchDistance, initialClickPosition, tracking } from '$lib/stores/CursorStore'; import { calculateFitView, calculateTranslation, calculateZoom, generateKey } from '$lib/utils';