@ionic/react 8.7.13-dev.11765426479.16a61ecf → 8.7.13-nightly.20251211
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/dist/index.js +4 -14
- package/dist/index.js.map +1 -1
- package/dist/types/components/IonRoute.d.ts +2 -1
- package/dist/types/components/IonRouterOutlet.d.ts +0 -1
- package/dist/types/routing/OutletPageManager.d.ts +0 -1
- package/dist/types/routing/RouteManagerContext.d.ts +0 -5
- package/package.json +2 -2
|
@@ -2,8 +2,9 @@ import React from 'react';
|
|
|
2
2
|
import { NavContext } from '../contexts/NavContext';
|
|
3
3
|
export interface IonRouteProps {
|
|
4
4
|
path?: string;
|
|
5
|
+
exact?: boolean;
|
|
5
6
|
show?: boolean;
|
|
6
|
-
|
|
7
|
+
render: (props?: any) => JSX.Element;
|
|
7
8
|
disableIonPageManagement?: boolean;
|
|
8
9
|
}
|
|
9
10
|
interface IonRouteState {
|
|
@@ -5,5 +5,4 @@ export declare const IonRouterOutlet: React.ForwardRefExoticComponent<Omit<Local
|
|
|
5
5
|
basePath?: string;
|
|
6
6
|
ref?: React.Ref<any>;
|
|
7
7
|
ionPage?: boolean;
|
|
8
|
-
id?: string;
|
|
9
8
|
} & IonicReactProps & Omit<React.HTMLAttributes<HTMLIonRouterOutletElement>, "style" | "placeholder">, "ref"> & React.RefAttributes<HTMLIonRouterOutletElement>>;
|
|
@@ -7,7 +7,6 @@ interface OutletPageManagerProps {
|
|
|
7
7
|
forwardedRef?: React.ForwardedRef<HTMLIonRouterOutletElement>;
|
|
8
8
|
routeInfo?: RouteInfo;
|
|
9
9
|
StackManager: any;
|
|
10
|
-
id?: string;
|
|
11
10
|
}
|
|
12
11
|
export declare class OutletPageManager extends React.Component<OutletPageManagerProps> {
|
|
13
12
|
ionLifeCycleContext: React.ContextType<typeof IonLifeCycleContext>;
|
|
@@ -10,11 +10,6 @@ export interface RouteManagerContextState {
|
|
|
10
10
|
findLeavingViewItemByRouteInfo: (routeInfo: RouteInfo, outletId?: string) => ViewItem | undefined;
|
|
11
11
|
findViewItemByRouteInfo: (routeInfo: RouteInfo, outletId?: string, updateMatch?: boolean) => ViewItem | undefined;
|
|
12
12
|
getChildrenToRender: (outletId: string, ionRouterOutlet: React.ReactElement, routeInfo: RouteInfo, reRender: () => void) => React.ReactNode[];
|
|
13
|
-
/**
|
|
14
|
-
* Returns all view items currently registered for a given outlet id.
|
|
15
|
-
* Used by StackManager for out-of-scope cleanup.
|
|
16
|
-
*/
|
|
17
|
-
getViewItemsForOutlet: (outletId: string) => ViewItem[];
|
|
18
13
|
goBack: () => void;
|
|
19
14
|
unMountViewItem: (viewItem: ViewItem) => void;
|
|
20
15
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ionic/react",
|
|
3
|
-
"version": "8.7.13-
|
|
3
|
+
"version": "8.7.13-nightly.20251211",
|
|
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.7.13-
|
|
43
|
+
"@ionic/core": "8.7.13-nightly.20251211",
|
|
44
44
|
"ionicons": "^8.0.13",
|
|
45
45
|
"tslib": "*"
|
|
46
46
|
},
|