react-beautiful-dnd
Advanced tools
Comparing version 12.0.0-alpha.2 to 12.0.0-alpha.3
{ | ||
"name": "react-beautiful-dnd", | ||
"version": "12.0.0-alpha.2", | ||
"version": "12.0.0-alpha.3", | ||
"description": "Beautiful and accessible drag and drop for lists with React", | ||
@@ -5,0 +5,0 @@ "author": "Alex Reardon <areardon@atlassian.com>", |
@@ -9,3 +9,3 @@ // @flow | ||
import useLayoutEffect from '../use-isomorphic-layout-effect'; | ||
import { toArray } from '../../native-with-fallback'; | ||
import { toArray, find } from '../../native-with-fallback'; | ||
@@ -34,3 +34,3 @@ type Entry = {| | ||
const handle: ?HTMLElement = possible.find((el: HTMLElement): boolean => { | ||
const handle: ?HTMLElement = find(possible, (el: HTMLElement): boolean => { | ||
return el.getAttribute(dragHandleAttr.draggableId) === draggableId; | ||
@@ -37,0 +37,0 @@ }); |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1402263