Skip to content

Commit

Permalink
Update Props.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
TatianaKapos committed Oct 10, 2024
1 parent 103cb5e commit c89b050
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package/src/Props.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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<TypedEvent<NativeHyperlinkClickEventArgs>>) => void;
onGotFocus?: (event: NativeSyntheticEvent<undefined>) => void;
Expand Down

0 comments on commit c89b050

Please sign in to comment.