monkey-front-core 0.0.94 → 0.0.95

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.
@@ -2009,19 +2009,12 @@ class MonkeyEcxCommonsService {
2009
2009
  });
2010
2010
  }
2011
2011
  doPagination() {
2012
- console.log('do pagination');
2013
2012
  if (!this.__onLoadingInProgress$.value) {
2014
- console.log('1');
2015
2013
  const hasMorePages = this.setPage({
2016
2014
  page: {
2017
2015
  ...this.__page,
2018
2016
  },
2019
2017
  }).nextPage();
2020
- console.log('2');
2021
- console.log('hasMorePages');
2022
- console.log(hasMorePages);
2023
- console.log('__callbackPagination');
2024
- console.log(this.__callbackPagination);
2025
2018
  if (hasMorePages && this.__callbackPagination) {
2026
2019
  this.__callbackPagination();
2027
2020
  }