@@ -458,6 +458,26 @@ security = unsafeMkProps "security"
458458unselectable :: Boolean -> Props
459459unselectable = unsafeMkProps " unselectable"
460460
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+
461481onCopy :: forall eff props state result .
462482 (Event -> EventHandlerContext eff props state result ) -> Props
463483onCopy f = unsafeMkProps " onCopy" (handle f)
@@ -498,6 +518,10 @@ onInput :: forall eff props state result.
498518 (Event -> EventHandlerContext eff props state result ) -> Props
499519onInput f = unsafeMkProps " onInput" (handle f)
500520
521+ onInvalid :: forall eff props state result .
522+ (Event -> EventHandlerContext eff props state result ) -> Props
523+ onInvalid f = unsafeMkProps " onInvalid" (handle f)
524+
501525onSubmit :: forall eff props state result .
502526 (Event -> EventHandlerContext eff props state result ) -> Props
503527onSubmit f = unsafeMkProps " onSubmit" (handle f)
@@ -593,3 +617,6 @@ onScroll f = unsafeMkProps "onScroll" (handle f)
593617onWheel :: forall eff props state result .
594618 (Event -> EventHandlerContext eff props state result ) -> Props
595619onWheel f = unsafeMkProps " onWheel" (handle f)
620+
621+ suppressContentEditableWarning :: Boolean -> Props
622+ suppressContentEditableWarning = unsafeMkProps " suppressContentEditableWarning"
0 commit comments