monkey-front-core 0.0.360 → 0.0.361

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.
@@ -4582,8 +4582,12 @@ class MonkeyEcxPaginationService {
4582
4582
  };
4583
4583
  }
4584
4584
  execute(type, name = 'main') {
4585
+ console.log('core => execute pagination');
4585
4586
  const { callbacks } = this;
4587
+ console.log(callbacks);
4588
+ console.log(type, name);
4586
4589
  const callback = callbacks?.[name];
4590
+ console.log(callback);
4587
4591
  if (callback)
4588
4592
  callback(type);
4589
4593
  }