@ionic/react 8.7.13-dev.11766070268.1ab3dde2 → 8.7.13-dev.11766081813.18052ea1
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 +37 -1
- package/dist/index.js.map +1 -1
- package/dist/types/routing/PageManager.d.ts +7 -0
- package/package.json +2 -2
|
@@ -13,7 +13,14 @@ export declare class PageManager extends React.PureComponent<PageManagerProps> {
|
|
|
13
13
|
ionPageElementRef: React.RefObject<HTMLDivElement>;
|
|
14
14
|
stableMergedRefs: React.RefCallback<HTMLDivElement>;
|
|
15
15
|
constructor(props: PageManagerProps);
|
|
16
|
+
private parseClasses;
|
|
17
|
+
/**
|
|
18
|
+
* Updates classList by diffing old/new className props.
|
|
19
|
+
* Preserves framework-added classes (can-go-back, ion-page-invisible, etc.).
|
|
20
|
+
*/
|
|
21
|
+
private updateUserClasses;
|
|
16
22
|
componentDidMount(): void;
|
|
23
|
+
componentDidUpdate(prevProps: PageManagerProps): void;
|
|
17
24
|
componentWillUnmount(): void;
|
|
18
25
|
ionViewWillEnterHandler(): void;
|
|
19
26
|
ionViewDidEnterHandler(): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ionic/react",
|
|
3
|
-
"version": "8.7.13-dev.
|
|
3
|
+
"version": "8.7.13-dev.11766081813.18052ea1",
|
|
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-dev.
|
|
43
|
+
"@ionic/core": "8.7.13-dev.11766081813.18052ea1",
|
|
44
44
|
"ionicons": "^8.0.13",
|
|
45
45
|
"tslib": "*"
|
|
46
46
|
},
|