Lines Matching refs:dragConfig
212 const dragConfig = this.findZoneById(currentDrag.zoneId)?.drag; constant
214 dragConfig &&
215 delta.manhattanDistance >= (dragConfig?.minDistance ?? 0)
217 dragConfig.onDrag?.(
288 dragConfig: DragConfig,
300 dragConfig.onDragEnd?.(dragEvent, element);
317 const dragConfig = this.findZoneById(drag.zoneId)?.drag; constant
319 dragConfig &&
320 dragConfig.cursorWhileDragging &&
321 dragDelta.manhattanDistance >= (dragConfig.minDistance ?? 0)
323 this.target.style.cursor = dragConfig.cursorWhileDragging;