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 f6ec465 commit 2dc930fCopy full SHA for 2dc930f
1 file changed
src/declarations/stencil-public-runtime.ts
@@ -1598,10 +1598,10 @@ export namespace JSXBase {
1598
// Focus Events
1599
onFocus?: (event: FocusEvent) => void;
1600
onFocusCapture?: (event: FocusEvent) => void;
1601
- onFocusIn?: (event: FocusEvent) => void;
1602
- onFocusInCapture?: (event: FocusEvent) => void;
1603
- onFocusOut?: (event: FocusEvent) => void;
1604
- onFocusOutCapture?: (event: FocusEvent) => void;
+ onFocusin?: (event: FocusEvent) => void;
+ onFocusinCapture?: (event: FocusEvent) => void;
+ onFocusout?: (event: FocusEvent) => void;
+ onFocusoutCapture?: (event: FocusEvent) => void;
1605
onBlur?: (event: FocusEvent) => void;
1606
onBlurCapture?: (event: FocusEvent) => void;
1607
0 commit comments