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
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
diff --git a/Libraries/Components/View/ViewPropTypes.d.ts b/Libraries/Components/View/ViewPropTypes.d.ts
index be61e9e59a514bf602b3c1d4efb8ac3cb32427e7..b482a328c704d44d46d17d86ad5c167e3e2ec1e8 100644
--- a/Libraries/Components/View/ViewPropTypes.d.ts
+++ b/Libraries/Components/View/ViewPropTypes.d.ts
@@ -316,7 +316,7 @@ export interface ViewProps
* the Z-index of sibling views always takes precedence if a touch
* hits two overlapping views.
*/
- hitSlop?: Insets | undefined;
+ hitSlop?: null | Insets | number | undefined;

/**
* Used to reference react managed views from native code.
diff --git a/src/Libraries/Components/View/ViewPropTypes.d.ts b/src/Libraries/Components/View/ViewPropTypes.d.ts
index be61e9e59a514bf602b3c1d4efb8ac3cb32427e7..b482a328c704d44d46d17d86ad5c167e3e2ec1e8 100644
--- a/src/Libraries/Components/View/ViewPropTypes.d.ts
+++ b/src/Libraries/Components/View/ViewPropTypes.d.ts
@@ -316,7 +316,7 @@ export interface ViewProps
* the Z-index of sibling views always takes precedence if a touch
* hits two overlapping views.
*/
- hitSlop?: Insets | undefined;
+ hitSlop?: null | Insets | number | undefined;

/**
* Used to reference react managed views from native code.
19 changes: 10 additions & 9 deletions apps/E2E/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@
],
"dependencies": {
"react": "18.2.0",
"react-native": "^0.73.0",
"react-native-macos": "^0.73.0",
"react-native-windows": "^0.73.0"
"react-native": "^0.74.0",
"react-native-macos": "^0.74.0",
"react-native-windows": "^0.74.0"
},
"devDependencies": {
"@babel/core": "^7.8.0",
"@babel/runtime": "^7.8.0",
"@fluentui-react-native/eslint-config-rules": "workspace:*",
"@fluentui-react-native/focus-zone": "workspace:*",
"@fluentui-react-native/scripts": "workspace:*",
"@react-native/babel-preset": "^0.73.0",
"@react-native/metro-babel-transformer": "^0.73.0",
"@react-native/metro-config": "^0.73.0",
"@react-native/babel-preset": "^0.74.0",
"@react-native/metro-babel-transformer": "^0.74.0",
"@react-native/metro-config": "^0.74.0",
"@rnx-kit/metro-config": "^1.3.1",
"@types/jasmine": "5.1.4",
"@types/react": "^18.2.0",
Expand All @@ -51,7 +51,7 @@
"appium-uiautomator2-driver": "^3.0.5",
"appium-windows-driver": "^2.12.18",
"appium-xcuitest-driver": "^7.9.1",
"metro-config": "^0.80.0",
"metro-config": "^0.80.3",
"rimraf": "^5.0.1",
"ts-node": "^10.7.0",
"typescript": "4.9.4",
Expand All @@ -67,15 +67,16 @@
"microsoft/react-native"
],
"requirements": [
"react-native@0.73"
"react-native@0.74"
],
"capabilities": [
"core",
"core-macos",
"core-windows",
"react",
"metro-config",
"babel-preset-react-native"
"babel-preset-react-native",
"metro-react-native-babel-transformer"
]
}
}
Expand Down
Loading
Loading