UNPKG

ziko

Version:

a versatile javaScript framework offering a rich set of UI components, advanced mathematical utilities, reactivity, animations, client side routing and graphics capabilities

57 lines (55 loc) 884 B
const Events = { 'Click' : [ 'Click', 'DblClick' ], 'Ptr' : [ 'PtrMove', 'PtrDown', 'PtrUp', 'PtrLeave', 'PtrEnter', 'PtrOut', 'PtrCancel' ], 'Mouse' : [ 'MouseMove', 'MouseDown', 'MouseUp', 'MouseEnter', 'MouseLeave', 'MouseOut' ], // 'Touch' : [], 'Key' : [ 'KeyDown', 'KeyPress', 'KeyUp' ], 'Clipboard':[ 'Copy', 'Cut', 'Paste' ], 'Focus':[ 'focus', 'blur' ], 'Drag':[ "Drag", "DragStart", "DragEnd", "Drop" ], 'Wheel': [ 'Wheel' ] // 'Media':[ // ], // 'Hash':[ // "HashChange" // ] } export { Events }