Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ jobs:
strategy:
fail-fast: false
matrix:
rnwVersion: [ 'v0.73-stable', 'v0.72-stable', 'v0.71-stable'] # test *all* versions that use VS 2022. aka any RNW version >= min in package.json and >= 0.71
rnwVersion: [ 'v0.75-stable', 'v0.73-stable', 'v0.72-stable'] # test *all* versions that use VS 2022. aka any RNW version >= min in package.json and >= 0.72
useRnwNuGet: [false, true] # test building with both RNW source and RNW NuGet
include:
- rnwVersion: 'v0.75-stable'
rnVersion: '0.75-stable'
- rnwVersion: 'v0.73-stable'
rnVersion: '0.73-stable'
- rnwVersion: 'v0.72-stable'
rnVersion: '0.72-stable'
- rnwVersion: 'v0.71-stable'
rnVersion: '0.71-stable'
uses: ./.github/workflows/template-testcli.yml
with:
vmImage: windows-2022
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,11 @@ jobs:
strategy:
fail-fast: true
matrix:
rnwVersion: ['v0.73-stable', 'v0.72-stable'] # test *key* versions that use VS 2022. aka any RNW version >= 0.71 used by supported partners and/or Active/Maintenance from https://microsoft.github.io/react-native-windows/support
rnwVersion: ['v0.75-stable', 'v0.73-stable', 'v0.72-stable'] # test *key* versions that use VS 2022. aka any RNW version >= 0.72 used by supported partners and/or Active/Maintenance from https://microsoft.github.io/react-native-windows/support
useRnwNuGet: [false, true] # test building with both RNW source and RNW NuGet
include:
- rnwVersion: 'v0.75-stable'
rnVersion: '0.75-stable'
- rnwVersion: 'v0.73-stable'
rnVersion: '0.73-stable'
- rnwVersion: 'v0.72-stable'
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "bump dependencies",
"packageName": "react-native-xaml",
"email": "tatianakapos@microsoft.com",
"dependentChangeType": "patch"
}
12 changes: 6 additions & 6 deletions package/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,18 @@
"@types/react": "*"
},
"peerDependencies": {
"react": ">= 18.0.0",
"react-native": ">= 0.71.0",
"react-native-windows": ">= 0.71.0",
"react": ">= 18.2.0",
"react-native": ">= 0.72.0",
"react-native-windows": ">= 0.72.0",
"typescript": "^4.1.2"
},
"devDependencies": {
"@types/jest": "*",
"beachball": "^2.16.0",
"eslint": "^8.19.0",
"react": "18.2.0",
"react-native": "0.73.11",
"react-native-windows": "0.73.21",
"react": "18.3.1",
"react-native": "0.75.1",
"react-native-windows": "0.75.0",
"react-native-typescript-transformer": "*",
"typescript": "5.0.4"
},
Expand Down
6 changes: 6 additions & 0 deletions package/src/Props.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2070,6 +2070,8 @@ export interface NativeFrameworkElementProps extends NativeUIElementProps {
onActualThemeChanged?: (event: NativeSyntheticEvent<TypedEvent<any>>) => void;
onEffectiveViewportChanged?: (event: NativeSyntheticEvent<TypedEvent<NativeEffectiveViewportChangedEventArgs>>) => void;
}

// @ts-ignore
export interface NativeControlProps extends NativeFrameworkElementProps {
type: 'Windows.UI.Xaml.Controls.Control' |
'Microsoft.UI.Xaml.Controls.BreadcrumbBar' |
Expand Down Expand Up @@ -4200,6 +4202,8 @@ export interface NativeSpanProps extends NativeInlineProps {
export interface NativeBoldProps extends NativeSpanProps {
type: 'Windows.UI.Xaml.Documents.Bold';
}

// @ts-ignore
export interface NativeContentLinkProps extends NativeInlineProps {
type: 'Windows.UI.Xaml.Documents.ContentLink';
xyFocusUpNavigationStrategy?: Enums.XYFocusNavigationStrategy;
Expand Down Expand Up @@ -4228,6 +4232,8 @@ export interface NativeGlyphsProps extends NativeFrameworkElementProps {
isColorFontEnabled?: boolean;
colorFontPaletteIndex?: number;
}

// @ts-ignore
export interface NativeHyperlinkProps extends NativeSpanProps {
type: 'Windows.UI.Xaml.Documents.Hyperlink';
navigateUri?: string;
Expand Down
Loading