vue-fluid-dnd
Version:
A Vue 3 drag and drop library to sort all kind of lists
6 lines (5 loc) • 730 B
TypeScript
import { DroppableConfig } from "../configHandler";
export declare const addTempChild: <T>(draggedElement: HTMLElement | undefined, parent: Element, ifStartDragging: boolean, droppableConfig?: DroppableConfig<T>, addingAnimationDuration?: number) => void;
export declare const addTempChildOnInsert: <T>(draggedElement: HTMLElement | undefined, ifStartDragging: boolean, droppableConfig?: DroppableConfig<T>) => void;
export declare const removeTempChildrens: (droppable: HTMLElement, parent: HTMLElement, droppableGroupClass: string | null, animationDuration: number, draggedElementIsOutside?: boolean) => void;
export declare const removeTempChild: (parent: HTMLElement, animationDuration: number, isAnimated?: boolean) => void;