File tree Expand file tree Collapse file tree
packages/@react-aria/utils/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1616// bugs, e.g. Chrome sometimes fires both transitionend and transitioncancel rather
1717// than one or the other. So we need to track what's actually transitioning so that
1818// we can ignore these duplicate events.
19- import { getEventTarget } from '@react-aria/utils ' ;
19+ import { getEventTarget } from './shadowdom/DOMFunctions ' ;
2020let transitionsByElement = new Map < EventTarget , Set < string > > ( ) ;
2121
2222// A list of callbacks to call once there are no transitioning elements.
Original file line number Diff line number Diff line change 1010 * governing permissions and limitations under the License.
1111 */
1212
13- import { getEventTarget } from '@react-aria/utils' ;
1413import { useEffect , useState } from 'react' ;
1514import { useIsSSR } from '@react-aria/ssr' ;
15+ import { getEventTarget } from './shadowdom/DOMFunctions' ;
1616import { willOpenKeyboard } from './keyboard' ;
1717
1818interface ViewportSize {
You can’t perform that action at this time.
0 commit comments