We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd9e55a commit 3ca8e30Copy full SHA for 3ca8e30
packages/@react-spectrum/dnd/src/useDragAndDrop.ts
@@ -60,7 +60,7 @@ export interface DragAndDropHooks {
60
dragAndDropHooks: DragHooks & DropHooks & {isVirtualDragging?: () => boolean, renderPreview?: (keys: Set<Key>, draggedKey: Key) => JSX.Element}
61
}
62
63
-export interface DragAndDropOptions extends Omit<DraggableCollectionProps, 'preview' | 'getItems'>, DroppableCollectionProps {
+export interface DragAndDropOptions extends Omit<DraggableCollectionProps, 'preview' | 'getItems'>, Omit<DroppableCollectionProps, 'onMove'> {
64
/**
65
* A function that returns the items being dragged. If not specified, we assume that the collection is not draggable.
66
* @default () => []
0 commit comments