@elderbyte/ngx-starter 19.6.0 → 19.6.2
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,5 @@
|
|
|
1
1
|
export declare class ContinuableListing<T> {
|
|
2
|
+
constructor();
|
|
2
3
|
/**
|
|
3
4
|
* The data of this listing chunk
|
|
4
5
|
*/
|
|
@@ -20,7 +21,11 @@ export declare class ContinuableListing<T> {
|
|
|
20
21
|
/**
|
|
21
22
|
* Size of this chunk (max page size)
|
|
22
23
|
*/
|
|
23
|
-
chunkSize
|
|
24
|
+
chunkSize?: number;
|
|
25
|
+
/**
|
|
26
|
+
* Size of this chunk (max page size)
|
|
27
|
+
*/
|
|
28
|
+
maxChunkSize?: number;
|
|
24
29
|
/**
|
|
25
30
|
* Is there more data to load with the NextContiunationToken?
|
|
26
31
|
*/
|
|
@@ -36,7 +36,7 @@ export declare abstract class DataContextContinuableBase<T> extends DataContextB
|
|
|
36
36
|
* Private Methods *
|
|
37
37
|
* *
|
|
38
38
|
**************************************************************************/
|
|
39
|
-
protected
|
|
39
|
+
protected updateChunkSize(newSize: number, reloadOnChange: boolean): void;
|
|
40
40
|
private loadAllRec;
|
|
41
41
|
abstract loadMore(): Observable<any>;
|
|
42
42
|
abstract get hasMoreDataSnapshot(): boolean;
|