NodeProps
constructor(id: String? = null, className: List<String>? = null, style: Style? = null, onClick: Event? = null, onFocus: Event? = null, onBlur: Event? = null, onChange: Event? = null, extras: Map<String, <Error class: unknown class>> = emptyMap())
Parameters
id
the node's id attribute, or null.
className
the node's classes (class), or null.
style
inline style block, or null.
onClick
binding fired on the onclick event, or null.
onFocus
binding fired on the onfocus event, or null.
onBlur
binding fired on the onblur event, or null.
onChange
binding fired on the onchange event, or null.
extras
unknown prop keys preserved verbatim; must not contain a reserved key.