Bonsai.Html.Events  
- Package
 - purescript-bonsai
 - Repository
 - grmble/purescript-bonsai
 
Bonsai HTML Event helpers
These are convenience functions, if you use an event handler A LOT, you should call on with a top level function. See explanation in Bonsai.EventDecoder
#preventDefaultStopPropagation Source
preventDefaultStopPropagation :: OptionsEvent options: prevent default, stop propagation
#onCheckedChange Source
onCheckedChange :: forall msg. (Boolean -> msg) -> Property msgSuboptimal helper for boolean (checkbox) input
#onKeyEnter Source
onKeyEnter :: forall msg. (String -> msg) -> Property msgEmit commands on enter key presses
#onKeyEnterEscape Source
onKeyEnterEscape :: forall msg. (String -> msg) -> (String -> msg) -> Property msgEmit commands on enter or escape key presses
Re-exports from Bonsai.VirtualDom 
#Property Source
newtype Property msgWhen using HTML and JS, there are two ways to specify parts of a DOM node.
Attributes — You can set things in HTML itself. So the
classin<div class="greeting"></div>is called an attribute.Properties — You can also set things in JS. So the
classNameindiv.className = 'greeting'is called a property.
So the class attribute corresponds to the className property. At first
glance, perhaps this distinction is defensible, but it gets much crazier.
There is not always a one-to-one mapping between attributes and properties!
Yes, that is a true fact. Sometimes an attribute exists, but there is no
corresponding property. Sometimes changing an attribute does not change the
underlying property. For example, as of this writing, the webkit-playsinline
attribute can be used in HTML, but there is no corresponding property!
#Options Source
type Options = { preventDefault :: Boolean, stopPropagation :: Boolean }Options for an event listener. If stopPropagation is true, it means the
event stops traveling through the DOM so it will not trigger any other event
listeners. If preventDefault is true, any built-in browser behavior related
to the event is prevented. For example, this is used with touch events when you
want to treat them as gestures of your own, not as scrolls.
#onWithOptions Source
onWithOptions :: forall msg aff. String -> Options -> CmdDecoder aff msg -> Property msgSame as on but you can set a few options.