This commit is contained in:
peterkogo
2025-10-30 21:25:04 +01:00
committed by moklick
parent 9c0d6f1f00
commit ebbeb29f99
3 changed files with 4 additions and 3 deletions
@@ -52,7 +52,8 @@
ariaLabel
} = $derived(edge);
setEdgeIdContext(edge.id);
// svelte-ignore state_referenced_locally
setEdgeIdContext(id);
// svelte-ignore non_reactive_update
let edgeRef: SVGGElement | null = null;
@@ -75,7 +75,7 @@ export type ResizeControlProps = Pick<
* @example ResizeControlVariant.Handle, ResizeControlVariant.Line
*/
variant?: ResizeControlVariant;
/** Required nodeId if used outside of a custom node */
/** nodeId must be provided when used outside a custom node */
nodeId?: string;
children?: Snippet;
} & HTMLAttributes<HTMLDivElement>;