@recursyve/nice-data-filter-kit 14.1.4 → 14.1.6

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.
@@ -3231,7 +3231,7 @@ class NiceFilterInfiniteScrollDataViewComponent {
3231
3231
  constructor(query, service) {
3232
3232
  this.query = query;
3233
3233
  this.service = service;
3234
- this.data$ = this.query.selectAll().pipe(tap(x => console.log(x)));
3234
+ this.data$ = this.query.selectAll();
3235
3235
  }
3236
3236
  async loadNextPage() {
3237
3237
  const { filterParameters } = this.query.getValue();
@@ -3318,7 +3318,7 @@ class NiceFilterMatPaginatorPaginationDirective {
3318
3318
  const { filterParameters } = this.query.getValue();
3319
3319
  this.service.setParameters({
3320
3320
  ...filterParameters,
3321
- start: page.pageIndex,
3321
+ start: page.pageIndex * page.pageSize,
3322
3322
  length: page.pageSize
3323
3323
  }, true);
3324
3324
  });