Skip to content

Commit 502ebbf

Browse files
committed
revert Props.ts change
1 parent f14b539 commit 502ebbf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

package/src/Props.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2244,7 +2244,7 @@ export interface NativeControlProps extends NativeFrameworkElementProps {
22442244
fontStretch?: Enums.FontStretch;
22452245
fontSize?: number;
22462246
fontFamily?: string;
2247-
tabIndex?: 0 | -1 | undefined;
2247+
tabIndex?: number;
22482248
characterSpacing?: number;
22492249
borderThickness?: Thickness;
22502250
borderBrush?: ColorValue;
@@ -4206,7 +4206,7 @@ export interface NativeContentLinkProps extends NativeInlineProps {
42064206
xyFocusRightNavigationStrategy?: Enums.XYFocusNavigationStrategy;
42074207
xyFocusLeftNavigationStrategy?: Enums.XYFocusNavigationStrategy;
42084208
xyFocusDownNavigationStrategy?: Enums.XYFocusNavigationStrategy;
4209-
tabIndex?: 0 | -1 | undefined;
4209+
tabIndex?: number;
42104210
isTabStop?: boolean;
42114211
elementSoundMode?: Enums.ElementSoundMode;
42124212
cursor?: Enums.CoreCursorType;
@@ -4237,7 +4237,7 @@ export interface NativeHyperlinkProps extends NativeSpanProps {
42374237
xyFocusRightNavigationStrategy?: Enums.XYFocusNavigationStrategy;
42384238
xyFocusLeftNavigationStrategy?: Enums.XYFocusNavigationStrategy;
42394239
xyFocusDownNavigationStrategy?: Enums.XYFocusNavigationStrategy;
4240-
tabIndex?: 0 | -1 | undefined;
4240+
tabIndex?: number;
42414241
isTabStop?: boolean;
42424242
onClick?: (event: NativeSyntheticEvent<TypedEvent<NativeHyperlinkClickEventArgs>>) => void;
42434243
onGotFocus?: (event: NativeSyntheticEvent<undefined>) => void;

0 commit comments

Comments
 (0)