Bump packages to fix linter
This commit is contained in:
parent
ed9506bbaf
commit
0a11e3fdd9
6063 changed files with 378752 additions and 306784 deletions
112
node_modules/jsx-ast-utils/src/eventHandlers.js
generated
vendored
Normal file
112
node_modules/jsx-ast-utils/src/eventHandlers.js
generated
vendored
Normal file
|
|
@ -0,0 +1,112 @@
|
|||
/**
|
||||
* Common event handlers for JSX element event binding.
|
||||
*/
|
||||
|
||||
const 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',
|
||||
],
|
||||
};
|
||||
|
||||
const eventHandlers = Object.keys(eventHandlersByType).reduce(
|
||||
(accumulator, type) => accumulator.concat(eventHandlersByType[type]),
|
||||
[],
|
||||
);
|
||||
|
||||
export default eventHandlers;
|
||||
|
||||
export { eventHandlersByType };
|
||||
Loading…
Add table
Add a link
Reference in a new issue