Skip to content

Commit 2dc930f

Browse files
authored
fix(events): map onFocusIn/Out to correct events (#2745)
1 parent f6ec465 commit 2dc930f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/declarations/stencil-public-runtime.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1598,10 +1598,10 @@ export namespace JSXBase {
15981598
// Focus Events
15991599
onFocus?: (event: FocusEvent) => void;
16001600
onFocusCapture?: (event: FocusEvent) => void;
1601-
onFocusIn?: (event: FocusEvent) => void;
1602-
onFocusInCapture?: (event: FocusEvent) => void;
1603-
onFocusOut?: (event: FocusEvent) => void;
1604-
onFocusOutCapture?: (event: FocusEvent) => void;
1601+
onFocusin?: (event: FocusEvent) => void;
1602+
onFocusinCapture?: (event: FocusEvent) => void;
1603+
onFocusout?: (event: FocusEvent) => void;
1604+
onFocusoutCapture?: (event: FocusEvent) => void;
16051605
onBlur?: (event: FocusEvent) => void;
16061606
onBlurCapture?: (event: FocusEvent) => void;
16071607

0 commit comments

Comments
 (0)