@@ -24,18 +24,14 @@ The underlying browser Event.
24
24
bubbles :: EventFn SyntheticEvent Boolean
25
25
```
26
26
27
+ General event fields
28
+
27
29
#### ` cancelable `
28
30
29
31
``` purescript
30
32
cancelable :: EventFn SyntheticEvent Boolean
31
33
```
32
34
33
- #### ` currentTarget `
34
-
35
- ``` purescript
36
- currentTarget :: EventFn SyntheticEvent DOMNode
37
- ```
38
-
39
35
#### ` eventPhase `
40
36
41
37
``` purescript
@@ -108,6 +104,18 @@ isPropagationStopped :: EventFn SyntheticEvent Boolean
108
104
target :: EventFn SyntheticEvent DOMNode
109
105
```
110
106
107
+ #### ` currentTarget `
108
+
109
+ ``` purescript
110
+ currentTarget :: EventFn SyntheticEvent DOMNode
111
+ ```
112
+
113
+ #### ` relatedTarget `
114
+
115
+ ``` purescript
116
+ relatedTarget :: EventFn SyntheticEvent (Maybe DOMNode)
117
+ ```
118
+
111
119
#### ` targetChecked `
112
120
113
121
``` purescript
@@ -132,4 +140,110 @@ timeStamp :: EventFn SyntheticEvent Number
132
140
type_ :: EventFn SyntheticEvent String
133
141
```
134
142
143
+ #### ` key `
144
+
145
+ ``` purescript
146
+ key :: EventFn SyntheticEvent (Maybe String)
147
+ ```
148
+
149
+ Keyboard event fields
150
+
151
+ #### ` code `
152
+
153
+ ``` purescript
154
+ code :: EventFn SyntheticEvent (Maybe String)
155
+ ```
156
+
157
+ #### ` char `
158
+
159
+ ``` purescript
160
+ char :: EventFn SyntheticEvent (Maybe String)
161
+ ```
162
+
163
+ #### ` location `
164
+
165
+ ``` purescript
166
+ location :: EventFn SyntheticEvent (Maybe Number)
167
+ ```
168
+
169
+ #### ` repeat `
170
+
171
+ ``` purescript
172
+ repeat :: EventFn SyntheticEvent (Maybe Boolean)
173
+ ```
174
+
175
+ #### ` locale `
176
+
177
+ ``` purescript
178
+ locale :: EventFn SyntheticEvent (Maybe String)
179
+ ```
180
+
181
+ #### ` ctrlKey `
182
+
183
+ ``` purescript
184
+ ctrlKey :: EventFn SyntheticEvent (Maybe Boolean)
185
+ ```
186
+
187
+ #### ` shiftKey `
188
+
189
+ ``` purescript
190
+ shiftKey :: EventFn SyntheticEvent (Maybe Boolean)
191
+ ```
192
+
193
+ #### ` altKey `
194
+
195
+ ``` purescript
196
+ altKey :: EventFn SyntheticEvent (Maybe Boolean)
197
+ ```
198
+
199
+ #### ` metaKey `
200
+
201
+ ``` purescript
202
+ metaKey :: EventFn SyntheticEvent (Maybe Boolean)
203
+ ```
204
+
205
+ #### ` detail `
206
+
207
+ ``` purescript
208
+ detail :: EventFn SyntheticEvent (Maybe Int)
209
+ ```
210
+
211
+ Mouse event fields
212
+
213
+ #### ` screenX `
214
+
215
+ ``` purescript
216
+ screenX :: EventFn SyntheticEvent (Maybe Number)
217
+ ```
218
+
219
+ #### ` screenY `
220
+
221
+ ``` purescript
222
+ screenY :: EventFn SyntheticEvent (Maybe Number)
223
+ ```
224
+
225
+ #### ` clientX `
226
+
227
+ ``` purescript
228
+ clientX :: EventFn SyntheticEvent (Maybe Number)
229
+ ```
230
+
231
+ #### ` clientY `
232
+
233
+ ``` purescript
234
+ clientY :: EventFn SyntheticEvent (Maybe Number)
235
+ ```
236
+
237
+ #### ` button `
238
+
239
+ ``` purescript
240
+ button :: EventFn SyntheticEvent (Maybe Int)
241
+ ```
242
+
243
+ #### ` buttons `
244
+
245
+ ``` purescript
246
+ buttons :: EventFn SyntheticEvent (Maybe Int)
247
+ ```
248
+
135
249
0 commit comments