@@ -458,6 +458,26 @@ security = unsafeMkProps "security"
458
458
unselectable :: Boolean -> Props
459
459
unselectable = unsafeMkProps " unselectable"
460
460
461
+ onAnimationStart :: forall eff props state result .
462
+ (Event -> EventHandlerContext eff props state result ) -> Props
463
+ onAnimationStart f = unsafeMkProps " onAnimationStart" (handle f)
464
+
465
+ onAnimationEnd :: forall eff props state result .
466
+ (Event -> EventHandlerContext eff props state result ) -> Props
467
+ onAnimationEnd f = unsafeMkProps " onAnimationEnd" (handle f)
468
+
469
+ onAnimationIteration :: forall eff props state result .
470
+ (Event -> EventHandlerContext eff props state result ) -> Props
471
+ onAnimationIteration f = unsafeMkProps " onAnimationIteration" (handle f)
472
+
473
+ onTransitionEnd :: forall eff props state result .
474
+ (Event -> EventHandlerContext eff props state result ) -> Props
475
+ onTransitionEnd f = unsafeMkProps " onTransitionEnd" (handle f)
476
+
477
+ onLoad :: forall eff props state result .
478
+ (Event -> EventHandlerContext eff props state result ) -> Props
479
+ onLoad f = unsafeMkProps " onLoad" (handle f)
480
+
461
481
onCopy :: forall eff props state result .
462
482
(Event -> EventHandlerContext eff props state result ) -> Props
463
483
onCopy f = unsafeMkProps " onCopy" (handle f)
@@ -498,6 +518,10 @@ onInput :: forall eff props state result.
498
518
(Event -> EventHandlerContext eff props state result ) -> Props
499
519
onInput f = unsafeMkProps " onInput" (handle f)
500
520
521
+ onInvalid :: forall eff props state result .
522
+ (Event -> EventHandlerContext eff props state result ) -> Props
523
+ onInvalid f = unsafeMkProps " onInvalid" (handle f)
524
+
501
525
onSubmit :: forall eff props state result .
502
526
(Event -> EventHandlerContext eff props state result ) -> Props
503
527
onSubmit f = unsafeMkProps " onSubmit" (handle f)
@@ -593,3 +617,6 @@ onScroll f = unsafeMkProps "onScroll" (handle f)
593
617
onWheel :: forall eff props state result .
594
618
(Event -> EventHandlerContext eff props state result ) -> Props
595
619
onWheel f = unsafeMkProps " onWheel" (handle f)
620
+
621
+ suppressContentEditableWarning :: Boolean -> Props
622
+ suppressContentEditableWarning = unsafeMkProps " suppressContentEditableWarning"
0 commit comments