UNPKG

@thisux/sveltednd

Version:

A lightweight, flexible drag and drop library for Svelte 5 applications.

10 lines (9 loc) 231 B
// Global DnD state using Svelte 5's state rune export const dndState = $state({ isDragging: false, draggedItem: null, sourceContainer: '', targetContainer: null, targetElement: null, invalidDrop: false });