euv-core 0.3.37

A declarative, cross-platform UI framework for Rust with virtual DOM, reactive signals, and HTML macros for WebAssembly.
Documentation
/// All DOM event names that should be delegated at the window level.
///
/// Excludes `EuvSignalUpdate` (internal framework dispatch) and `Other`
/// (user-defined events which are registered on-demand). These are
/// registered once at mount time so that no per-element
/// `addEventListener` calls are ever needed.
pub(crate) const DELEGATABLE_EVENT_NAMES: [&str; 46] = [
    "click",
    "dblclick",
    "mousedown",
    "mouseup",
    "mousemove",
    "mouseenter",
    "mouseleave",
    "mouseover",
    "mouseout",
    "contextmenu",
    "input",
    "keydown",
    "keyup",
    "keypress",
    "focus",
    "blur",
    "focusin",
    "focusout",
    "submit",
    "change",
    "drag",
    "dragstart",
    "dragend",
    "dragover",
    "dragenter",
    "dragleave",
    "drop",
    "touchstart",
    "touchend",
    "touchmove",
    "touchcancel",
    "wheel",
    "copy",
    "cut",
    "paste",
    "play",
    "pause",
    "ended",
    "loadeddata",
    "canplay",
    "volumechange",
    "timeupdate",
    "scroll",
    "animationstart",
    "animationend",
    "transitionend",
];