@@ -265,98 +265,98 @@ type domProps = {
265
265
width ?: string /* in html5 this can only be a number, but in html4 it can ba a percentage as well */ ,
266
266
wrap ?: string /* "hard" or "soft" */ ,
267
267
/* Clipboard events */
268
- onCopy ?: ReactEvent .Clipboard .t => unit ,
269
- onCut ?: ReactEvent .Clipboard .t => unit ,
270
- onPaste ?: ReactEvent .Clipboard .t => unit ,
268
+ onCopy ?: JsxEvent .Clipboard .t => unit ,
269
+ onCut ?: JsxEvent .Clipboard .t => unit ,
270
+ onPaste ?: JsxEvent .Clipboard .t => unit ,
271
271
/* Composition events */
272
- onCompositionEnd ?: ReactEvent .Composition .t => unit ,
273
- onCompositionStart ?: ReactEvent .Composition .t => unit ,
274
- onCompositionUpdate ?: ReactEvent .Composition .t => unit ,
272
+ onCompositionEnd ?: JsxEvent .Composition .t => unit ,
273
+ onCompositionStart ?: JsxEvent .Composition .t => unit ,
274
+ onCompositionUpdate ?: JsxEvent .Composition .t => unit ,
275
275
/* Keyboard events */
276
- onKeyDown ?: ReactEvent .Keyboard .t => unit ,
277
- onKeyPress ?: ReactEvent .Keyboard .t => unit ,
278
- onKeyUp ?: ReactEvent .Keyboard .t => unit ,
276
+ onKeyDown ?: JsxEvent .Keyboard .t => unit ,
277
+ onKeyPress ?: JsxEvent .Keyboard .t => unit ,
278
+ onKeyUp ?: JsxEvent .Keyboard .t => unit ,
279
279
/* Focus events */
280
- onFocus ?: ReactEvent .Focus .t => unit ,
281
- onBlur ?: ReactEvent .Focus .t => unit ,
280
+ onFocus ?: JsxEvent .Focus .t => unit ,
281
+ onBlur ?: JsxEvent .Focus .t => unit ,
282
282
/* Form events */
283
- onChange ?: ReactEvent .Form .t => unit ,
284
- onInput ?: ReactEvent .Form .t => unit ,
285
- onSubmit ?: ReactEvent .Form .t => unit ,
286
- onInvalid ?: ReactEvent .Form .t => unit ,
283
+ onChange ?: JsxEvent .Form .t => unit ,
284
+ onInput ?: JsxEvent .Form .t => unit ,
285
+ onSubmit ?: JsxEvent .Form .t => unit ,
286
+ onInvalid ?: JsxEvent .Form .t => unit ,
287
287
/* Mouse events */
288
- onClick ?: ReactEvent .Mouse .t => unit ,
289
- onContextMenu ?: ReactEvent .Mouse .t => unit ,
290
- onDoubleClick ?: ReactEvent .Mouse .t => unit ,
291
- onDrag ?: ReactEvent .Mouse .t => unit ,
292
- onDragEnd ?: ReactEvent .Mouse .t => unit ,
293
- onDragEnter ?: ReactEvent .Mouse .t => unit ,
294
- onDragExit ?: ReactEvent .Mouse .t => unit ,
295
- onDragLeave ?: ReactEvent .Mouse .t => unit ,
296
- onDragOver ?: ReactEvent .Mouse .t => unit ,
297
- onDragStart ?: ReactEvent .Mouse .t => unit ,
298
- onDrop ?: ReactEvent .Mouse .t => unit ,
299
- onMouseDown ?: ReactEvent .Mouse .t => unit ,
300
- onMouseEnter ?: ReactEvent .Mouse .t => unit ,
301
- onMouseLeave ?: ReactEvent .Mouse .t => unit ,
302
- onMouseMove ?: ReactEvent .Mouse .t => unit ,
303
- onMouseOut ?: ReactEvent .Mouse .t => unit ,
304
- onMouseOver ?: ReactEvent .Mouse .t => unit ,
305
- onMouseUp ?: ReactEvent .Mouse .t => unit ,
288
+ onClick ?: JsxEvent .Mouse .t => unit ,
289
+ onContextMenu ?: JsxEvent .Mouse .t => unit ,
290
+ onDoubleClick ?: JsxEvent .Mouse .t => unit ,
291
+ onDrag ?: JsxEvent .Mouse .t => unit ,
292
+ onDragEnd ?: JsxEvent .Mouse .t => unit ,
293
+ onDragEnter ?: JsxEvent .Mouse .t => unit ,
294
+ onDragExit ?: JsxEvent .Mouse .t => unit ,
295
+ onDragLeave ?: JsxEvent .Mouse .t => unit ,
296
+ onDragOver ?: JsxEvent .Mouse .t => unit ,
297
+ onDragStart ?: JsxEvent .Mouse .t => unit ,
298
+ onDrop ?: JsxEvent .Mouse .t => unit ,
299
+ onMouseDown ?: JsxEvent .Mouse .t => unit ,
300
+ onMouseEnter ?: JsxEvent .Mouse .t => unit ,
301
+ onMouseLeave ?: JsxEvent .Mouse .t => unit ,
302
+ onMouseMove ?: JsxEvent .Mouse .t => unit ,
303
+ onMouseOut ?: JsxEvent .Mouse .t => unit ,
304
+ onMouseOver ?: JsxEvent .Mouse .t => unit ,
305
+ onMouseUp ?: JsxEvent .Mouse .t => unit ,
306
306
/* Selection events */
307
- onSelect ?: ReactEvent .Selection .t => unit ,
307
+ onSelect ?: JsxEvent .Selection .t => unit ,
308
308
/* Touch events */
309
- onTouchCancel ?: ReactEvent .Touch .t => unit ,
310
- onTouchEnd ?: ReactEvent .Touch .t => unit ,
311
- onTouchMove ?: ReactEvent .Touch .t => unit ,
312
- onTouchStart ?: ReactEvent .Touch .t => unit ,
309
+ onTouchCancel ?: JsxEvent .Touch .t => unit ,
310
+ onTouchEnd ?: JsxEvent .Touch .t => unit ,
311
+ onTouchMove ?: JsxEvent .Touch .t => unit ,
312
+ onTouchStart ?: JsxEvent .Touch .t => unit ,
313
313
// Pointer events
314
- onPointerOver ?: ReactEvent .Pointer .t => unit ,
315
- onPointerEnter ?: ReactEvent .Pointer .t => unit ,
316
- onPointerDown ?: ReactEvent .Pointer .t => unit ,
317
- onPointerMove ?: ReactEvent .Pointer .t => unit ,
318
- onPointerUp ?: ReactEvent .Pointer .t => unit ,
319
- onPointerCancel ?: ReactEvent .Pointer .t => unit ,
320
- onPointerOut ?: ReactEvent .Pointer .t => unit ,
321
- onPointerLeave ?: ReactEvent .Pointer .t => unit ,
322
- onGotPointerCapture ?: ReactEvent .Pointer .t => unit ,
323
- onLostPointerCapture ?: ReactEvent .Pointer .t => unit ,
314
+ onPointerOver ?: JsxEvent .Pointer .t => unit ,
315
+ onPointerEnter ?: JsxEvent .Pointer .t => unit ,
316
+ onPointerDown ?: JsxEvent .Pointer .t => unit ,
317
+ onPointerMove ?: JsxEvent .Pointer .t => unit ,
318
+ onPointerUp ?: JsxEvent .Pointer .t => unit ,
319
+ onPointerCancel ?: JsxEvent .Pointer .t => unit ,
320
+ onPointerOut ?: JsxEvent .Pointer .t => unit ,
321
+ onPointerLeave ?: JsxEvent .Pointer .t => unit ,
322
+ onGotPointerCapture ?: JsxEvent .Pointer .t => unit ,
323
+ onLostPointerCapture ?: JsxEvent .Pointer .t => unit ,
324
324
/* UI events */
325
- onScroll ?: ReactEvent .UI .t => unit ,
325
+ onScroll ?: JsxEvent .UI .t => unit ,
326
326
/* Wheel events */
327
- onWheel ?: ReactEvent .Wheel .t => unit ,
327
+ onWheel ?: JsxEvent .Wheel .t => unit ,
328
328
/* Media events */
329
- onAbort ?: ReactEvent .Media .t => unit ,
330
- onCanPlay ?: ReactEvent .Media .t => unit ,
331
- onCanPlayThrough ?: ReactEvent .Media .t => unit ,
332
- onDurationChange ?: ReactEvent .Media .t => unit ,
333
- onEmptied ?: ReactEvent .Media .t => unit ,
334
- onEncrypted ?: ReactEvent .Media .t => unit ,
335
- onEnded ?: ReactEvent .Media .t => unit ,
336
- onError ?: ReactEvent .Media .t => unit ,
337
- onLoadedData ?: ReactEvent .Media .t => unit ,
338
- onLoadedMetadata ?: ReactEvent .Media .t => unit ,
339
- onLoadStart ?: ReactEvent .Media .t => unit ,
340
- onPause ?: ReactEvent .Media .t => unit ,
341
- onPlay ?: ReactEvent .Media .t => unit ,
342
- onPlaying ?: ReactEvent .Media .t => unit ,
343
- onProgress ?: ReactEvent .Media .t => unit ,
344
- onRateChange ?: ReactEvent .Media .t => unit ,
345
- onSeeked ?: ReactEvent .Media .t => unit ,
346
- onSeeking ?: ReactEvent .Media .t => unit ,
347
- onStalled ?: ReactEvent .Media .t => unit ,
348
- onSuspend ?: ReactEvent .Media .t => unit ,
349
- onTimeUpdate ?: ReactEvent .Media .t => unit ,
350
- onVolumeChange ?: ReactEvent .Media .t => unit ,
351
- onWaiting ?: ReactEvent .Media .t => unit ,
329
+ onAbort ?: JsxEvent .Media .t => unit ,
330
+ onCanPlay ?: JsxEvent .Media .t => unit ,
331
+ onCanPlayThrough ?: JsxEvent .Media .t => unit ,
332
+ onDurationChange ?: JsxEvent .Media .t => unit ,
333
+ onEmptied ?: JsxEvent .Media .t => unit ,
334
+ onEncrypted ?: JsxEvent .Media .t => unit ,
335
+ onEnded ?: JsxEvent .Media .t => unit ,
336
+ onError ?: JsxEvent .Media .t => unit ,
337
+ onLoadedData ?: JsxEvent .Media .t => unit ,
338
+ onLoadedMetadata ?: JsxEvent .Media .t => unit ,
339
+ onLoadStart ?: JsxEvent .Media .t => unit ,
340
+ onPause ?: JsxEvent .Media .t => unit ,
341
+ onPlay ?: JsxEvent .Media .t => unit ,
342
+ onPlaying ?: JsxEvent .Media .t => unit ,
343
+ onProgress ?: JsxEvent .Media .t => unit ,
344
+ onRateChange ?: JsxEvent .Media .t => unit ,
345
+ onSeeked ?: JsxEvent .Media .t => unit ,
346
+ onSeeking ?: JsxEvent .Media .t => unit ,
347
+ onStalled ?: JsxEvent .Media .t => unit ,
348
+ onSuspend ?: JsxEvent .Media .t => unit ,
349
+ onTimeUpdate ?: JsxEvent .Media .t => unit ,
350
+ onVolumeChange ?: JsxEvent .Media .t => unit ,
351
+ onWaiting ?: JsxEvent .Media .t => unit ,
352
352
/* Image events */
353
- onLoad ?: ReactEvent .Image .t => unit /* duplicate */ /* ~onError: ReactEvent .Image.t => unit=?, */ ,
353
+ onLoad ?: JsxEvent .Image .t => unit /* duplicate */ /* ~onError: JsxEvent .Image.t => unit=?, */ ,
354
354
/* Animation events */
355
- onAnimationStart ?: ReactEvent .Animation .t => unit ,
356
- onAnimationEnd ?: ReactEvent .Animation .t => unit ,
357
- onAnimationIteration ?: ReactEvent .Animation .t => unit ,
355
+ onAnimationStart ?: JsxEvent .Animation .t => unit ,
356
+ onAnimationEnd ?: JsxEvent .Animation .t => unit ,
357
+ onAnimationIteration ?: JsxEvent .Animation .t => unit ,
358
358
/* Transition events */
359
- onTransitionEnd ?: ReactEvent .Transition .t => unit ,
359
+ onTransitionEnd ?: JsxEvent .Transition .t => unit ,
360
360
/* svg */
361
361
accentHeight ?: string ,
362
362
accumulate ?: string ,
0 commit comments