@ionic/react 8.8.1-dev.11773168858.1f9c0eb8 → 8.8.1-dev.11773432149.19826d0c
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.
|
@@ -9,7 +9,7 @@ export interface RouteManagerContextState {
|
|
|
9
9
|
findViewItemByPathname(pathname: string, outletId?: string): ViewItem | undefined;
|
|
10
10
|
findLeavingViewItemByRouteInfo: (routeInfo: RouteInfo, outletId?: string) => ViewItem | undefined;
|
|
11
11
|
findViewItemByRouteInfo: (routeInfo: RouteInfo, outletId?: string, updateMatch?: boolean) => ViewItem | undefined;
|
|
12
|
-
getChildrenToRender: (outletId: string, ionRouterOutlet: React.ReactElement, routeInfo: RouteInfo, reRender: () => void) => React.ReactNode[];
|
|
12
|
+
getChildrenToRender: (outletId: string, ionRouterOutlet: React.ReactElement, routeInfo: RouteInfo, reRender: () => void, parentPathnameBase?: string) => React.ReactNode[];
|
|
13
13
|
/**
|
|
14
14
|
* Returns all view items currently registered for a given outlet id.
|
|
15
15
|
* Used by StackManager for out-of-scope cleanup.
|
|
@@ -13,5 +13,5 @@ export declare abstract class ViewStacks {
|
|
|
13
13
|
abstract findViewItemByPathname(pathname: string, outletId?: string): ViewItem | undefined;
|
|
14
14
|
abstract findViewItemByRouteInfo(routeInfo: RouteInfo, outletId?: string, updateMatch?: boolean): ViewItem | undefined;
|
|
15
15
|
abstract findLeavingViewItemByRouteInfo(routeInfo: RouteInfo, outletId?: string): ViewItem | undefined;
|
|
16
|
-
abstract getChildrenToRender(outletId: string, ionRouterOutlet: React.ReactElement, routeInfo: RouteInfo, reRender: () => void,
|
|
16
|
+
abstract getChildrenToRender(outletId: string, ionRouterOutlet: React.ReactElement, routeInfo: RouteInfo, reRender: () => void, parentPathnameBase?: string): React.ReactNode[];
|
|
17
17
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ionic/react",
|
|
3
|
-
"version": "8.8.1-dev.
|
|
3
|
+
"version": "8.8.1-dev.11773432149.19826d0c",
|
|
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.
|
|
43
|
+
"@ionic/core": "8.8.1-dev.11773432149.19826d0c",
|
|
44
44
|
"ionicons": "^8.0.13",
|
|
45
45
|
"tslib": "*"
|
|
46
46
|
},
|