@react-navigation/native-stack 7.0.4 → 7.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/typescript/commonjs/src/types.d.ts +1 -1
- package/lib/typescript/commonjs/src/types.d.ts.map +1 -1
- package/lib/typescript/commonjs/tsconfig.build.tsbuildinfo +1 -1
- package/lib/typescript/module/src/types.d.ts +1 -1
- package/lib/typescript/module/src/types.d.ts.map +1 -1
- package/lib/typescript/module/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/types.tsx +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-navigation/native-stack",
|
|
3
3
|
"description": "Native stack navigator using react-native-screens",
|
|
4
|
-
"version": "7.0
|
|
4
|
+
"version": "7.1.0",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react-native-component",
|
|
7
7
|
"react-component",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"clean": "del lib"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@react-navigation/elements": "^2.0
|
|
55
|
+
"@react-navigation/elements": "^2.1.0",
|
|
56
56
|
"warn-once": "^0.1.1"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
@@ -99,5 +99,5 @@
|
|
|
99
99
|
]
|
|
100
100
|
]
|
|
101
101
|
},
|
|
102
|
-
"gitHead": "
|
|
102
|
+
"gitHead": "5da190167882859bb3356a84de42be3ca540ef99"
|
|
103
103
|
}
|
package/src/types.tsx
CHANGED
|
@@ -330,7 +330,7 @@ export type NativeStackNavigationOptions = {
|
|
|
330
330
|
* You also need to specify `contentInsetAdjustmentBehavior="automatic"` in your `ScrollView`, `FlatList` etc.
|
|
331
331
|
* If you don't have a `ScrollView`, specify `headerTransparent: false`.
|
|
332
332
|
*/
|
|
333
|
-
headerSearchBarOptions?:
|
|
333
|
+
headerSearchBarOptions?: SearchBarProps;
|
|
334
334
|
/**
|
|
335
335
|
* Boolean indicating whether to show the menu on longPress of iOS >= 14 back button. Defaults to `true`.
|
|
336
336
|
* Requires `react-native-screens` version >=3.3.0.
|