@@ -21,27 +21,27 @@ import { Spinkit } from '../spinkits';
2121} )
2222export class NgHttpLoaderComponent implements OnInit {
2323
24- public spinkit = Spinkit ;
25- public isVisible$ ! : Observable < boolean > ;
26- private visibleUntil = Date . now ( ) ;
24+ spinkit = Spinkit ;
25+ isVisible$ ! : Observable < boolean > ;
26+ visibleUntil = Date . now ( ) ;
2727
28- @Input ( ) public backdrop = true ;
29- @Input ( ) public backgroundColor ! : string ;
30- @Input ( ) public debounceDelay = 0 ;
31- @Input ( ) public entryComponent : any = null ;
32- @Input ( ) public extraDuration = 0 ;
33- @Input ( ) public filteredHeaders : string [ ] = [ ] ;
34- @Input ( ) public filteredMethods : string [ ] = [ ] ;
35- @Input ( ) public filteredUrlPatterns : string [ ] = [ ] ;
36- @Input ( ) public minDuration = 0 ;
37- @Input ( ) public opacity = '.7' ;
38- @Input ( ) public backdropBackgroundColor = '#f1f1f1' ;
39- @Input ( ) public spinner : string | null = Spinkit . skWave ;
28+ @Input ( ) backdrop = true ;
29+ @Input ( ) backgroundColor ! : string ;
30+ @Input ( ) debounceDelay = 0 ;
31+ @Input ( ) entryComponent : any = null ;
32+ @Input ( ) extraDuration = 0 ;
33+ @Input ( ) filteredHeaders : string [ ] = [ ] ;
34+ @Input ( ) filteredMethods : string [ ] = [ ] ;
35+ @Input ( ) filteredUrlPatterns : string [ ] = [ ] ;
36+ @Input ( ) minDuration = 0 ;
37+ @Input ( ) opacity = '.7' ;
38+ @Input ( ) backdropBackgroundColor = '#f1f1f1' ;
39+ @Input ( ) spinner : string | null = Spinkit . skWave ;
4040
4141 constructor ( private pendingRequestsInterceptor : PendingRequestsInterceptor , private spinnerVisibility : SpinnerVisibilityService ) {
4242 }
4343
44- public ngOnInit ( ) : void {
44+ ngOnInit ( ) : void {
4545 this . initIsvisibleObservable ( ) ;
4646 this . nullifySpinnerIfEntryComponentIsDefined ( ) ;
4747 this . initFilters ( ) ;
0 commit comments