UNPKG

1.84 kBJavaScriptView Raw
1/**
2 * Copyright (c) 2013-present, Facebook, Inc.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 *
7 */
8
9'use strict';
10
11/**
12 * Types of raw signals from the browser caught at the top level.
13 */
14var topLevelTypes = {
15 topAbort: null,
16 topAnimationEnd: null,
17 topAnimationIteration: null,
18 topAnimationStart: null,
19 topBlur: null,
20 topCanPlay: null,
21 topCanPlayThrough: null,
22 topChange: null,
23 topClick: null,
24 topCompositionEnd: null,
25 topCompositionStart: null,
26 topCompositionUpdate: null,
27 topContextMenu: null,
28 topCopy: null,
29 topCut: null,
30 topDoubleClick: null,
31 topDrag: null,
32 topDragEnd: null,
33 topDragEnter: null,
34 topDragExit: null,
35 topDragLeave: null,
36 topDragOver: null,
37 topDragStart: null,
38 topDrop: null,
39 topDurationChange: null,
40 topEmptied: null,
41 topEncrypted: null,
42 topEnded: null,
43 topError: null,
44 topFocus: null,
45 topInput: null,
46 topInvalid: null,
47 topKeyDown: null,
48 topKeyPress: null,
49 topKeyUp: null,
50 topLoad: null,
51 topLoadedData: null,
52 topLoadedMetadata: null,
53 topLoadStart: null,
54 topMouseDown: null,
55 topMouseMove: null,
56 topMouseOut: null,
57 topMouseOver: null,
58 topMouseUp: null,
59 topPaste: null,
60 topPause: null,
61 topPlay: null,
62 topPlaying: null,
63 topProgress: null,
64 topRateChange: null,
65 topReset: null,
66 topScroll: null,
67 topSeeked: null,
68 topSeeking: null,
69 topSelectionChange: null,
70 topStalled: null,
71 topSubmit: null,
72 topSuspend: null,
73 topTextInput: null,
74 topTimeUpdate: null,
75 topTouchCancel: null,
76 topTouchEnd: null,
77 topTouchMove: null,
78 topTouchStart: null,
79 topTransitionEnd: null,
80 topVolumeChange: null,
81 topWaiting: null,
82 topWheel: null
83};
84
85var EventConstants = {
86 topLevelTypes: topLevelTypes
87};
88
89module.exports = EventConstants;
\No newline at end of file