@react-navigation/core 7.13.0 → 7.13.2

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.
@@ -302,7 +302,7 @@ type NavigationHelpersRoute<ParamList extends {}, RouteName extends keyof ParamL
302
302
  export type NavigationHelpers<ParamList extends ParamListBase, EventMap extends EventMapBase = {}> = NavigationHelpersCommon<ParamList> & EventEmitter<EventMap> & NavigationHelpersRoute<ParamList, keyof ParamList>;
303
303
  export type NavigationContainerProps = {
304
304
  /**
305
- * Initial navigation state for the child navigators.
305
+ * Initial state object for the navigation tree.
306
306
  */
307
307
  initialState?: InitialState;
308
308
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@react-navigation/core",
3
3
  "description": "Core utilities for building navigators",
4
- "version": "7.13.0",
4
+ "version": "7.13.2",
5
5
  "keywords": [
6
6
  "react",
7
7
  "react-native",
@@ -40,7 +40,7 @@
40
40
  "clean": "del lib"
41
41
  },
42
42
  "dependencies": {
43
- "@react-navigation/routers": "^7.5.1",
43
+ "@react-navigation/routers": "^7.5.2",
44
44
  "escape-string-regexp": "^4.0.0",
45
45
  "fast-deep-equal": "^3.1.3",
46
46
  "nanoid": "^3.3.11",
@@ -83,5 +83,5 @@
83
83
  ]
84
84
  ]
85
85
  },
86
- "gitHead": "25c616e84c388f8f27f1be8e2981bb0780b5206d"
86
+ "gitHead": "c5c20929fa8370a72c40bf719e00a8118dff7a50"
87
87
  }
package/src/types.tsx CHANGED
@@ -443,7 +443,7 @@ export type NavigationHelpers<
443
443
 
444
444
  export type NavigationContainerProps = {
445
445
  /**
446
- * Initial navigation state for the child navigators.
446
+ * Initial state object for the navigation tree.
447
447
  */
448
448
  initialState?: InitialState;
449
449
  /**