chore: update deps

This commit is contained in:
braks
2023-10-30 13:36:07 +01:00
committed by Braks
parent 8fa3e345b6
commit e51c7e9c17
21 changed files with 3170 additions and 3535 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
import type { CSSProperties, Component, DefineComponent, SVGAttributes, VNode } from 'vue'
import type { CSSProperties, Component, DefineComponent, VNode } from 'vue'
import type { NodeProps } from './node'
import type { EdgeProps } from './edge'
import type { BezierEdge, SimpleBezierEdge, SmoothStepEdge, StepEdge, StraightEdge } from '~/components'
@@ -27,7 +27,7 @@ export interface DefaultEdgeTypes {
export type DefaultNodeTypes = { [key in 'input' | 'output' | 'default']: NodeComponent }
/** these props are passed to edge texts */
export interface EdgeTextProps extends SVGAttributes {
export interface EdgeTextProps {
x: number
y: number
label?: string | VNode | Object