@energycap/components 0.27.2 → 0.27.3

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.
@@ -7,6 +7,7 @@ import { NavItem } from '../../../controls/navigation/nav-item';
7
7
  import { ErrorService } from '../../../core/error.service';
8
8
  import { ScrollService } from '../../../core/scroll.service';
9
9
  import { DialogService } from '../../../display/dialog/dialog.service';
10
+ import { SplashService } from '../../../display/splash/splash.service';
10
11
  import { Help } from '../../../display/help/help-types';
11
12
  import { Overlay } from '../../../display/view-overlay/view-overlay.component';
12
13
  import { PageStatus } from '../page-statuses';
@@ -50,6 +51,10 @@ export declare abstract class PageBaseComponent implements OnInit, AfterViewInit
50
51
  * Default unknown save error message, override if a more specific message is needed
51
52
  */
52
53
  defaultUnknownSaveError: string;
54
+ /**
55
+ * Used to opt out of hiding the splash screen when the page is loaded
56
+ */
57
+ skipHideSplashOnComplete: boolean;
53
58
  /**
54
59
  * Used to unsubscribe from observables
55
60
  */
@@ -79,6 +84,7 @@ export declare abstract class PageBaseComponent implements OnInit, AfterViewInit
79
84
  protected router: Router;
80
85
  protected activatedRoute: ActivatedRoute;
81
86
  protected dialogService: DialogService;
87
+ protected splashService: SplashService;
82
88
  constructor(injector: Injector);
83
89
  /**
84
90
  * Errors to be shown for the component.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@energycap/components",
3
- "version": "0.27.2",
3
+ "version": "0.27.3",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },