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.
- package/esm2020/lib/core/services/pagination/monkeyecx-pagination.service.mjs +5 -1
- package/fesm2015/monkey-front-core.mjs +4 -0
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +4 -0
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/monkey-front-core-0.0.361.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.360.tgz +0 -0
|
@@ -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
|
}
|