initial commit of actions
This commit is contained in:
commit
949ece5785
44660 changed files with 12034344 additions and 0 deletions
32
github/codeql-action-v2/node_modules/jsx-ast-utils/lib/eventHandlers.js
generated
vendored
Normal file
32
github/codeql-action-v2/node_modules/jsx-ast-utils/lib/eventHandlers.js
generated
vendored
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
/**
|
||||
* Common event handlers for JSX element event binding.
|
||||
*/
|
||||
|
||||
var eventHandlersByType = {
|
||||
clipboard: ['onCopy', 'onCut', 'onPaste'],
|
||||
composition: ['onCompositionEnd', 'onCompositionStart', 'onCompositionUpdate'],
|
||||
keyboard: ['onKeyDown', 'onKeyPress', 'onKeyUp'],
|
||||
focus: ['onFocus', 'onBlur'],
|
||||
form: ['onChange', 'onInput', 'onSubmit'],
|
||||
mouse: ['onClick', 'onContextMenu', 'onDblClick', 'onDoubleClick', 'onDrag', 'onDragEnd', 'onDragEnter', 'onDragExit', 'onDragLeave', 'onDragOver', 'onDragStart', 'onDrop', 'onMouseDown', 'onMouseEnter', 'onMouseLeave', 'onMouseMove', 'onMouseOut', 'onMouseOver', 'onMouseUp'],
|
||||
selection: ['onSelect'],
|
||||
touch: ['onTouchCancel', 'onTouchEnd', 'onTouchMove', 'onTouchStart'],
|
||||
ui: ['onScroll'],
|
||||
wheel: ['onWheel'],
|
||||
media: ['onAbort', 'onCanPlay', 'onCanPlayThrough', 'onDurationChange', 'onEmptied', 'onEncrypted', 'onEnded', 'onError', 'onLoadedData', 'onLoadedMetadata', 'onLoadStart', 'onPause', 'onPlay', 'onPlaying', 'onProgress', 'onRateChange', 'onSeeked', 'onSeeking', 'onStalled', 'onSuspend', 'onTimeUpdate', 'onVolumeChange', 'onWaiting'],
|
||||
image: ['onLoad', 'onError'],
|
||||
animation: ['onAnimationStart', 'onAnimationEnd', 'onAnimationIteration'],
|
||||
transition: ['onTransitionEnd']
|
||||
};
|
||||
|
||||
var eventHandlers = Object.keys(eventHandlersByType).reduce(function (accumulator, type) {
|
||||
return accumulator.concat(eventHandlersByType[type]);
|
||||
}, []);
|
||||
|
||||
exports.default = eventHandlers;
|
||||
exports.eventHandlersByType = eventHandlersByType;
|
||||
Loading…
Add table
Add a link
Reference in a new issue