@ionic/react 8.8.1-dev.11773676615.1d6c4cf7 → 8.8.1-dev.11773873479.192398dc

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.
@@ -13,6 +13,12 @@ export declare class LocationHistory {
13
13
  private _getRouteInfosByKey;
14
14
  getFirstRouteInfoForTab(tab: string): RouteInfo<any> | undefined;
15
15
  getCurrentRouteInfoForTab(tab?: string): RouteInfo<any> | undefined;
16
+ /**
17
+ * Returns the most recent RouteInfo in global history (excluding the current
18
+ * entry) whose pathname matches the given value. Unlike findLastLocation,
19
+ * this search is tab-agnostic. Used by the multi-step back detection.
20
+ */
21
+ findLastLocationByPathname(pathname: string): RouteInfo<any> | undefined;
16
22
  findLastLocation(routeInfo: RouteInfo): RouteInfo<any> | undefined;
17
23
  previous(): RouteInfo<any>;
18
24
  current(): RouteInfo<any>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ionic/react",
3
- "version": "8.8.1-dev.11773676615.1d6c4cf7",
3
+ "version": "8.8.1-dev.11773873479.192398dc",
4
4
  "description": "React specific wrapper for @ionic/core",
5
5
  "keywords": [
6
6
  "ionic",
@@ -40,7 +40,7 @@
40
40
  "css/"
41
41
  ],
42
42
  "dependencies": {
43
- "@ionic/core": "8.8.1-dev.11773676615.1d6c4cf7",
43
+ "@ionic/core": "8.8.1-dev.11773873479.192398dc",
44
44
  "ionicons": "^8.0.13",
45
45
  "tslib": "*"
46
46
  },