@bnsights/bbsf-controls 1.0.194-beta.6 → 1.0.194-beta.8
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OnInit, EventEmitter, OnDestroy, ChangeDetectorRef } from '@angular/core';
|
|
1
|
+
import { OnInit, EventEmitter, OnDestroy, ChangeDetectorRef, Renderer2, ElementRef } from '@angular/core';
|
|
2
2
|
import { Location } from '@angular/common';
|
|
3
3
|
import { Router, ActivatedRoute } from '@angular/router';
|
|
4
4
|
import { HttpClient, HttpHeaders } from '@angular/common/http';
|
|
@@ -18,6 +18,8 @@ export declare class PagingComponent<T> implements OnInit, OnDestroy {
|
|
|
18
18
|
private onChangeService;
|
|
19
19
|
private requestHandlerService;
|
|
20
20
|
private cdr;
|
|
21
|
+
private renderer;
|
|
22
|
+
private elementRef;
|
|
21
23
|
items: any[];
|
|
22
24
|
pageOfItems: Array<any>;
|
|
23
25
|
result: T[];
|
|
@@ -51,7 +53,7 @@ export declare class PagingComponent<T> implements OnInit, OnDestroy {
|
|
|
51
53
|
private isRestoringFilters;
|
|
52
54
|
private pageHistory;
|
|
53
55
|
private currentHistoryIndex;
|
|
54
|
-
constructor(utilityService: UtilityService, http: HttpClient, router: Router, route: ActivatedRoute, location: Location, onChangeService: OnPagingFiltersChangeService, requestHandlerService: RequestHandlerService, cdr: ChangeDetectorRef);
|
|
56
|
+
constructor(utilityService: UtilityService, http: HttpClient, router: Router, route: ActivatedRoute, location: Location, onChangeService: OnPagingFiltersChangeService, requestHandlerService: RequestHandlerService, cdr: ChangeDetectorRef, renderer: Renderer2, elementRef: ElementRef);
|
|
55
57
|
ngOnDestroy(): void;
|
|
56
58
|
ngOnInit(): void;
|
|
57
59
|
/**
|