@@ -430,7 +430,6 @@ export interface DataHTMLAttributes extends HTMLAttributes {
430
430
export interface DetailsHTMLAttributes extends HTMLAttributes {
431
431
name ?: string | undefined
432
432
open ?: Booleanish | undefined
433
- onToggle ?: ( ( payload : ToggleEvent ) => void ) | undefined
434
433
}
435
434
436
435
export interface DelHTMLAttributes extends HTMLAttributes {
@@ -441,6 +440,7 @@ export interface DelHTMLAttributes extends HTMLAttributes {
441
440
export interface DialogHTMLAttributes extends HTMLAttributes {
442
441
open ?: Booleanish | undefined
443
442
onClose ?: ( ( payload : Event ) => void ) | undefined
443
+ onCancel ?: ( ( payload : Event ) => void ) | undefined
444
444
}
445
445
446
446
export interface EmbedHTMLAttributes extends HTMLAttributes {
@@ -581,6 +581,7 @@ export interface InputHTMLAttributes extends HTMLAttributes {
581
581
type ?: InputTypeHTMLAttribute | undefined
582
582
value ?: any // we support :value to be bound to anything w/ v-model
583
583
width ?: Numberish | undefined
584
+ onCancel ?: ( ( payload : Event ) => void ) | undefined
584
585
}
585
586
586
587
export interface KeygenHTMLAttributes extends HTMLAttributes {
@@ -1327,11 +1328,16 @@ export interface Events {
1327
1328
// form events
1328
1329
onChange : Event
1329
1330
onBeforeinput : InputEvent
1330
- onInput : Event
1331
+ onFormdata : FormDataEvent
1332
+ onInput : InputEvent
1331
1333
onReset : Event
1332
1334
onSubmit : SubmitEvent
1333
1335
onInvalid : Event
1334
1336
1337
+ // fullscreen events
1338
+ onFullscreenchange : Event
1339
+ onFullscreenerror : Event
1340
+
1335
1341
// image events
1336
1342
onLoad : Event
1337
1343
onError : Event
@@ -1342,9 +1348,6 @@ export interface Events {
1342
1348
onKeyup : KeyboardEvent
1343
1349
1344
1350
// mouse events
1345
- onAuxclick : PointerEvent
1346
- onClick : PointerEvent
1347
- onContextmenu : PointerEvent
1348
1351
onDblclick : MouseEvent
1349
1352
onMousedown : MouseEvent
1350
1353
onMouseenter : MouseEvent
@@ -1392,6 +1395,11 @@ export interface Events {
1392
1395
onTouchstart : TouchEvent
1393
1396
1394
1397
// pointer events
1398
+ onAuxclick : PointerEvent
1399
+ onClick : PointerEvent
1400
+ onContextmenu : PointerEvent
1401
+ onGotpointercapture : PointerEvent
1402
+ onLostpointercapture : PointerEvent
1395
1403
onPointerdown : PointerEvent
1396
1404
onPointermove : PointerEvent
1397
1405
onPointerup : PointerEvent
@@ -1401,16 +1409,26 @@ export interface Events {
1401
1409
onPointerover : PointerEvent
1402
1410
onPointerout : PointerEvent
1403
1411
1412
+ // popover events
1413
+ onBeforetoggle : ToggleEvent
1414
+ onToggle : ToggleEvent
1415
+
1404
1416
// wheel events
1405
1417
onWheel : WheelEvent
1406
1418
1407
1419
// animation events
1420
+ onAnimationcancel : AnimationEvent
1408
1421
onAnimationstart : AnimationEvent
1409
1422
onAnimationend : AnimationEvent
1410
1423
onAnimationiteration : AnimationEvent
1411
1424
1425
+ // security policy events
1426
+ onSecuritypolicyviolation : SecurityPolicyViolationEvent
1427
+
1412
1428
// transition events
1429
+ onTransitioncancel : TransitionEvent
1413
1430
onTransitionend : TransitionEvent
1431
+ onTransitionrun : TransitionEvent
1414
1432
onTransitionstart : TransitionEvent
1415
1433
}
1416
1434
0 commit comments