@energycap/components 0.33.0 → 0.33.1
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/esm2020/lib/shared/page/page-base/page-base.component.mjs +24 -2
- package/fesm2015/energycap-components.mjs +23 -1
- package/fesm2015/energycap-components.mjs.map +1 -1
- package/fesm2020/energycap-components.mjs +23 -1
- package/fesm2020/energycap-components.mjs.map +1 -1
- package/lib/shared/page/page-base/page-base.component.d.ts +8 -0
- package/package.json +1 -1
|
@@ -67,6 +67,13 @@ export declare abstract class PageBaseComponent implements OnInit, AfterViewInit
|
|
|
67
67
|
* Used to opt out of hiding the splash screen when the page is loaded
|
|
68
68
|
*/
|
|
69
69
|
skipHideSplashOnComplete: boolean;
|
|
70
|
+
/**
|
|
71
|
+
* When set to true any navigation end events that are strictly query param changes will
|
|
72
|
+
* not call the onNavigationEnd function. This allows pages to change the view with query
|
|
73
|
+
* params and not trigger a full refresh.
|
|
74
|
+
*/
|
|
75
|
+
ignoreQueryParamsOnNavigationChange: boolean;
|
|
76
|
+
private previousUrl;
|
|
70
77
|
/**
|
|
71
78
|
* Used to unsubscribe from observables
|
|
72
79
|
*/
|
|
@@ -245,6 +252,7 @@ export declare abstract class PageBaseComponent implements OnInit, AfterViewInit
|
|
|
245
252
|
* Sets up the router event subscriptions
|
|
246
253
|
*/
|
|
247
254
|
private setUpRouterSubscriptions;
|
|
255
|
+
private navigationEndHandler;
|
|
248
256
|
static ɵfac: i0.ɵɵFactoryDeclaration<PageBaseComponent, never>;
|
|
249
257
|
static ɵdir: i0.ɵɵDirectiveDeclaration<PageBaseComponent, never, never, {}, {}, never, never, false, never>;
|
|
250
258
|
}
|