Skip to content

Commit

Permalink
fix(events): map onFocusIn/Out to correct events (#2745)
Browse files Browse the repository at this point in the history
  • Loading branch information
claviska committed Dec 16, 2020
1 parent f6ec465 commit 2dc930f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/declarations/stencil-public-runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1598,10 +1598,10 @@ export namespace JSXBase {
// Focus Events
onFocus?: (event: FocusEvent) => void;
onFocusCapture?: (event: FocusEvent) => void;
onFocusIn?: (event: FocusEvent) => void;
onFocusInCapture?: (event: FocusEvent) => void;
onFocusOut?: (event: FocusEvent) => void;
onFocusOutCapture?: (event: FocusEvent) => void;
onFocusin?: (event: FocusEvent) => void;
onFocusinCapture?: (event: FocusEvent) => void;
onFocusout?: (event: FocusEvent) => void;
onFocusoutCapture?: (event: FocusEvent) => void;
onBlur?: (event: FocusEvent) => void;
onBlurCapture?: (event: FocusEvent) => void;

Expand Down

0 comments on commit 2dc930f

Please sign in to comment.