From c89b0503d13ab137fe3b4179ad789dec4dc6b043 Mon Sep 17 00:00:00 2001 From: Tatiana Kapos Date: Thu, 10 Oct 2024 16:21:50 -0700 Subject: [PATCH] Update Props.ts --- package/src/Props.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package/src/Props.ts b/package/src/Props.ts index 3ff0fdf..ea233de 100644 --- a/package/src/Props.ts +++ b/package/src/Props.ts @@ -2244,7 +2244,7 @@ export interface NativeControlProps extends NativeFrameworkElementProps { fontStretch?: Enums.FontStretch; fontSize?: number; fontFamily?: string; - tabIndex?: number; + tabIndex?: 0 | -1 | undefined; characterSpacing?: number; borderThickness?: Thickness; borderBrush?: ColorValue; @@ -4206,7 +4206,7 @@ export interface NativeContentLinkProps extends NativeInlineProps { xyFocusRightNavigationStrategy?: Enums.XYFocusNavigationStrategy; xyFocusLeftNavigationStrategy?: Enums.XYFocusNavigationStrategy; xyFocusDownNavigationStrategy?: Enums.XYFocusNavigationStrategy; - tabIndex?: number; + tabIndex?: 0 | -1 | undefined; isTabStop?: boolean; elementSoundMode?: Enums.ElementSoundMode; cursor?: Enums.CoreCursorType; @@ -4237,7 +4237,7 @@ export interface NativeHyperlinkProps extends NativeSpanProps { xyFocusRightNavigationStrategy?: Enums.XYFocusNavigationStrategy; xyFocusLeftNavigationStrategy?: Enums.XYFocusNavigationStrategy; xyFocusDownNavigationStrategy?: Enums.XYFocusNavigationStrategy; - tabIndex?: number; + tabIndex?: 0 | -1 | undefined; isTabStop?: boolean; onClick?: (event: NativeSyntheticEvent>) => void; onGotFocus?: (event: NativeSyntheticEvent) => void;