expo-router 3.5.2 → 3.5.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-router",
3
- "version": "3.5.2",
3
+ "version": "3.5.3",
4
4
  "description": "Expo Router is a file-based router for React Native and web applications.",
5
5
  "author": "650 Industries, Inc.",
6
6
  "license": "MIT",
@@ -102,5 +102,5 @@
102
102
  "react-helmet-async": "^1.3.0",
103
103
  "schema-utils": "^4.0.1"
104
104
  },
105
- "gitHead": "ee4f30ef3b5fa567ad1bf94794197f7683fdd481"
105
+ "gitHead": "f47e3af17a790a34b95fe10dda8383389e7d74e2"
106
106
  }
@@ -182,7 +182,7 @@ export namespace ExpoRouter {
182
182
  navigate: (href: Href) => void;
183
183
  /** Navigate to route without appending to the history. */
184
184
  replace: (href: Href) => void;
185
- /** Navigate to the provided href using a push operation if possible. */
185
+ /** Navigate to a screen with a stack lower than the current screen. Using the provided count if possible, otherwise 1. */
186
186
  dismiss: (count?: number) => void;
187
187
  /** Navigate to first screen within the lowest stack. */
188
188
  dismissAll: () => void;