Variable DefaultEventNameConst DefaultEventName : { keyPressed : "keydown" ; keyReleased : "keyup" ; click : "click" ; clickStart : "mousedown" ; clickEnd : "mouseup" ; longPress : "turbo-long-press" ; move : "mousemove" ; drag : "turbo-drag" ; dragStart : "turbo-drag-start" ; dragEnd : "turbo-drag-end" ; trackpadScroll : "wheel" ; trackpadPinch : "wheel" ; mouseWheel : "wheel" ; wheel : string ; scroll : string ; input : string ; change : string ; focus : string ; focusIn : string ; focusOut : string ; blur : string ; resize : string ; compositionStart : string ; compositionEnd : string ; } = ...
Type Declaration keyPressed : "keydown" keyReleased : "keyup" click : "click" clickStart : "mousedown" clickEnd : "mouseup" longPress : "turbo-long-press" move : "mousemove" drag : "turbo-drag" dragStart : "turbo-drag-start" dragEnd : "turbo-drag-end" trackpadPinch : "wheel" mouseWheel : "wheel" wheel : string change : string focus : string focusIn : string focusOut : string blur : string resize : string compositionStart : string compositionEnd : string Defined in src/types/eventNaming.types.ts:123
Description
Object containing the names of events fired by default by the turboComponents. Modifying it (prior to setting up new turbo components) will subsequently alter the events that the instantiated components will listen for.