@@ -2,21 +2,45 @@ module Web.HTML.Event.EventTypes where
22
33import Web.Event.Event (EventType (..))
44
5+ abort :: EventType
6+ abort = EventType " abort"
7+
8+ afterprint :: EventType
9+ afterprint = EventType " afterprint"
10+
11+ afterscriptexecute :: EventType
12+ afterscriptexecute = EventType " afterscriptexecute"
13+
14+ beforeprint :: EventType
15+ beforeprint = EventType " beforeprint"
16+
17+ beforescriptexecute :: EventType
18+ beforescriptexecute = EventType " beforescriptexecute"
19+
520blur :: EventType
621blur = EventType " blur"
722
23+ cancel :: EventType
24+ cancel = EventType " cancel"
25+
826change :: EventType
927change = EventType " change"
1028
1129click :: EventType
1230click = EventType " click"
1331
32+ close :: EventType
33+ close = EventType " close"
34+
1435copy :: EventType
1536copy = EventType " copy"
1637
1738cut :: EventType
1839cut = EventType " cut"
1940
41+ domcontentloaded :: EventType
42+ domcontentloaded = EventType " DOMContentLoaded"
43+
2044error :: EventType
2145error = EventType " error"
2246
@@ -35,6 +59,15 @@ languagechange = EventType "languagechange"
3559load :: EventType
3660load = EventType " load"
3761
62+ loadend :: EventType
63+ loadend = EventType " loadend"
64+
65+ loadstart :: EventType
66+ loadstart = EventType " loadstart"
67+
68+ message :: EventType
69+ message = EventType " message"
70+
3871offline :: EventType
3972offline = EventType " offline"
4073
@@ -44,5 +77,26 @@ online = EventType "online"
4477paste :: EventType
4578paste = EventType " paste"
4679
80+ progress :: EventType
81+ progress = EventType " progress"
82+
83+ readystatechange :: EventType
84+ readystatechange = EventType " readystatechange"
85+
86+ reset :: EventType
87+ reset = EventType " reset"
88+
4789select :: EventType
4890select = EventType " select"
91+
92+ storage :: EventType
93+ storage = EventType " storage"
94+
95+ submit :: EventType
96+ submit = EventType " submit"
97+
98+ toggle :: EventType
99+ toggle = EventType " toggle"
100+
101+ unload :: EventType
102+ unload = EventType " unload"
0 commit comments