Skip to content

Commit df0758f

Browse files
authored
Merge pull request #10 from kwohlfahrt/master
Add tag for wheel events
2 parents b499a4e + d4212d6 commit df0758f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/DOM/HTML/Indexed.purs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module DOM.HTML.Indexed where
22

33
import DOM.Event.ClipboardEvent (ClipboardEvent)
4-
import DOM.Event.Types (Event, MouseEvent, KeyboardEvent, FocusEvent, TouchEvent)
4+
import DOM.Event.Types (Event, FocusEvent, KeyboardEvent, MouseEvent, TouchEvent, WheelEvent)
55
import DOM.HTML.Event.Types (DragEvent)
66
import DOM.HTML.Indexed.ButtonType (ButtonType)
77
import DOM.HTML.Indexed.CrossOriginValue (CrossOriginValue)
@@ -119,7 +119,7 @@ type ClipboardEvents r =
119119
| r
120120
)
121121

122-
type InteractiveEvents r = ClipboardEvents (FocusEvents (TransitionEvents (KeyEvents (PointerEvents (TouchEvents (DragEvents (MouseEvents r)))))))
122+
type InteractiveEvents r = ClipboardEvents (FocusEvents (TransitionEvents (KeyEvents (PointerEvents (TouchEvents (DragEvents (MouseEvents (onWheel :: WheelEvent | r))))))))
123123

124124
type GlobalProperties r = GlobalAttributes (GlobalEvents r)
125125

0 commit comments

Comments
 (0)