@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.
@@ -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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@energycap/components",
3
- "version": "0.33.0",
3
+ "version": "0.33.1",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },