@react-navigation/stack 6.3.11 → 6.3.12

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.
@@ -127,7 +127,7 @@ export declare type StackHeaderOptions = Omit<HeaderOptions, 'headerLeft' | 'hea
127
127
  /**
128
128
  * Whether the back button title should be visible or not.
129
129
  *
130
- * Defaults to `true` on iOS, `false on Android.
130
+ * Defaults to `true` on iOS, `false` on Android.
131
131
  */
132
132
  headerBackTitleVisible?: boolean;
133
133
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@react-navigation/stack",
3
3
  "description": "Stack navigator component for iOS and Android with animated transitions and gestures",
4
- "version": "6.3.11",
4
+ "version": "6.3.12",
5
5
  "keywords": [
6
6
  "react-native-component",
7
7
  "react-component",
@@ -40,12 +40,12 @@
40
40
  "clean": "del lib"
41
41
  },
42
42
  "dependencies": {
43
- "@react-navigation/elements": "^1.3.13",
43
+ "@react-navigation/elements": "^1.3.14",
44
44
  "color": "^4.2.3",
45
45
  "warn-once": "^0.1.0"
46
46
  },
47
47
  "devDependencies": {
48
- "@react-navigation/native": "^6.1.2",
48
+ "@react-navigation/native": "^6.1.3",
49
49
  "@testing-library/react-native": "^11.5.0",
50
50
  "@types/color": "^3.0.1",
51
51
  "@types/react": "~18.0.0",
@@ -81,5 +81,5 @@
81
81
  ]
82
82
  ]
83
83
  },
84
- "gitHead": "f93576624282c3d65e359cca2826749f56221e8c"
84
+ "gitHead": "ef3f7377ef1a5623bc38273b63663b0f7bd39815"
85
85
  }
package/src/types.tsx CHANGED
@@ -165,7 +165,7 @@ export type StackHeaderOptions = Omit<
165
165
  /**
166
166
  * Whether the back button title should be visible or not.
167
167
  *
168
- * Defaults to `true` on iOS, `false on Android.
168
+ * Defaults to `true` on iOS, `false` on Android.
169
169
  */
170
170
  headerBackTitleVisible?: boolean;
171
171
  /**