@elderbyte/ngx-starter 21.0.3 → 21.1.0
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/package.json
CHANGED
|
@@ -13795,6 +13795,34 @@ declare class ElderRouteOutletDrawerService {
|
|
|
13795
13795
|
static ɵprov: i0.ɵɵInjectableDeclaration<ElderRouteOutletDrawerService>;
|
|
13796
13796
|
}
|
|
13797
13797
|
|
|
13798
|
+
/**
|
|
13799
|
+
* Bootstrap service that initializes services on startup.
|
|
13800
|
+
*/
|
|
13801
|
+
declare class ElderServicesBootstrap {
|
|
13802
|
+
/***************************************************************************
|
|
13803
|
+
* *
|
|
13804
|
+
* Fields *
|
|
13805
|
+
* *
|
|
13806
|
+
**************************************************************************/
|
|
13807
|
+
private readonly logger;
|
|
13808
|
+
private initialized;
|
|
13809
|
+
/***************************************************************************
|
|
13810
|
+
* *
|
|
13811
|
+
* Constructor *
|
|
13812
|
+
* *
|
|
13813
|
+
**************************************************************************/
|
|
13814
|
+
constructor();
|
|
13815
|
+
/***************************************************************************
|
|
13816
|
+
* *
|
|
13817
|
+
* Private Methods *
|
|
13818
|
+
* *
|
|
13819
|
+
**************************************************************************/
|
|
13820
|
+
private initialize;
|
|
13821
|
+
private initializeServices;
|
|
13822
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ElderServicesBootstrap, never>;
|
|
13823
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ElderServicesBootstrap>;
|
|
13824
|
+
}
|
|
13825
|
+
|
|
13798
13826
|
declare class ElderShellSideLeftDirective {
|
|
13799
13827
|
templateRef: TemplateRef<any>;
|
|
13800
13828
|
viewContainer: ViewContainerRef;
|
|
@@ -13824,10 +13852,10 @@ declare class ElderShellStaticNavSlotDirective {
|
|
|
13824
13852
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ElderShellStaticNavSlotDirective, "[elderShellStaticNavSlot]", never, {}, {}, never, never, true, never>;
|
|
13825
13853
|
}
|
|
13826
13854
|
declare class ElderShellComponent implements OnInit {
|
|
13855
|
+
private servicesBootstrap;
|
|
13827
13856
|
private shellService;
|
|
13828
13857
|
private outletDrawerService;
|
|
13829
13858
|
private changeDetectorRef;
|
|
13830
|
-
private themeService;
|
|
13831
13859
|
private globalDragDropService;
|
|
13832
13860
|
private renderer;
|
|
13833
13861
|
private destroyRef;
|
|
@@ -13862,7 +13890,7 @@ declare class ElderShellComponent implements OnInit {
|
|
|
13862
13890
|
* Constructor *
|
|
13863
13891
|
* *
|
|
13864
13892
|
**************************************************************************/
|
|
13865
|
-
constructor(shellService: ElderShellService, outletDrawerService: ElderRouteOutletDrawerService, changeDetectorRef: ChangeDetectorRef,
|
|
13893
|
+
constructor(servicesBootstrap: ElderServicesBootstrap, shellService: ElderShellService, outletDrawerService: ElderRouteOutletDrawerService, changeDetectorRef: ChangeDetectorRef, globalDragDropService: GlobalDragDropService, renderer: Renderer2, destroyRef: DestroyRef);
|
|
13866
13894
|
/***************************************************************************
|
|
13867
13895
|
* *
|
|
13868
13896
|
* Life Cycle *
|