Skip to content
This repository was archived by the owner on Oct 4, 2020. It is now read-only.

Commit c238095

Browse files
committed
Add some missing event types
1 parent 2f6a825 commit c238095

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/DOM/HTML/Event/EventTypes.purs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@ dragend = EventType "dragend"
5959
dragenter :: EventType
6060
dragenter = EventType "dragenter"
6161

62+
dragexit :: EventType
63+
dragexit = EventType "dragexit"
64+
6265
dragleave :: EventType
6366
dragleave = EventType "dragleave"
6467

@@ -77,12 +80,21 @@ error = EventType "error"
7780
focus :: EventType
7881
focus = EventType "focus"
7982

83+
focusin :: EventType
84+
focusin = EventType "focusin"
85+
86+
focusout :: EventType
87+
focusout = EventType "focusout"
88+
8089
hashchange :: EventType
8190
hashchange = EventType "hashchange"
8291

8392
input :: EventType
8493
input = EventType "input"
8594

95+
invalid :: EventType
96+
invalid = EventType "invalid"
97+
8698
keydown :: EventType
8799
keydown = EventType "keydown"
88100

0 commit comments

Comments
 (0)