We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a69ff5 commit 1e2ee90Copy full SHA for 1e2ee90
src/client/constants.js
@@ -1,7 +1,7 @@
1
/**
2
* All standard DOM events
3
*/
4
-export const domEvents = [
+export const domEvents = [
5
"animationend",
6
"animationiteration",
7
"animationstart",
@@ -226,7 +226,20 @@ export const domEvents = [
226
"moztimechange",
227
"open",
228
"show"
229
-];
+].concat([
230
+ // Pointer Events
231
+ // https://developer.mozilla.org/en-US/docs/Web/Events#Pointer_events
232
+ "pointerover",
233
+ "pointerenter",
234
+ "pointerdown",
235
+ "pointermove",
236
+ "pointerup",
237
+ "pointercancel",
238
+ "pointerout",
239
+ "pointerleave",
240
+ "gotpointercapture",
241
+ "lostpointercapture"
242
+]).uniq();
243
244
245
* All standard CSS Properties
0 commit comments