Skip to content

Commit fd601fb

Browse files
authored
[Flare] Move all event responders to dom directory (#15981)
1 parent 827cbc4 commit fd601fb

21 files changed

Lines changed: 7 additions & 7 deletions

packages/react-events/drag.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99

1010
'use strict';
1111

12-
const Drag = require('./src/Drag');
12+
const Drag = require('./src/dom/Drag');
1313

1414
module.exports = Drag.default || Drag;

packages/react-events/focus-scope.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99

1010
'use strict';
1111

12-
const FocusScope = require('./src/FocusScope');
12+
const FocusScope = require('./src/dom/FocusScope');
1313

1414
module.exports = FocusScope.default || FocusScope;

packages/react-events/focus.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99

1010
'use strict';
1111

12-
const Focus = require('./src/Focus');
12+
const Focus = require('./src/dom/Focus');
1313

1414
module.exports = Focus.default || Focus;

packages/react-events/hover.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99

1010
'use strict';
1111

12-
const Hover = require('./src/Hover');
12+
const Hover = require('./src/dom/Hover');
1313

1414
module.exports = Hover.default || Hover;

packages/react-events/press.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99

1010
'use strict';
1111

12-
const Press = require('./src/Press');
12+
const Press = require('./src/dom/Press');
1313

1414
module.exports = Press.default || Press;

packages/react-events/scroll.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99

1010
'use strict';
1111

12-
const Scroll = require('./src/Scroll');
12+
const Scroll = require('./src/dom/Scroll');
1313

1414
module.exports = Scroll.default || Scroll;
File renamed without changes.

0 commit comments

Comments
 (0)