fix(core): remove ts-transform-paths and use relative paths

This commit is contained in:
braks
2023-12-12 23:36:33 +01:00
committed by Braks
parent 0506f6ff93
commit 458b5d42ba
48 changed files with 112 additions and 151 deletions
+3 -3
View File
@@ -1,7 +1,6 @@
import type { MaybeRefOrGetter } from '@vueuse/core'
import { toValue } from '@vueuse/core'
import { useVueFlow } from './useVueFlow'
import type { Connection, ConnectionHandle, HandleType, MouseTouchEvent, ValidConnectionFunc } from '~/types'
import type { Connection, ConnectionHandle, HandleType, MouseTouchEvent, ValidConnectionFunc } from '../types'
import {
calcAutoPan,
getClosestHandle,
@@ -15,7 +14,8 @@ import {
pointToRendererPoint,
rendererPointToPoint,
resetRecentHandle,
} from '~/utils'
} from '../utils'
import { useVueFlow } from './useVueFlow'
interface UseHandleProps {
handleId: MaybeRefOrGetter<string | null>