monkey-front-core 0.0.88 → 0.0.89
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/commons/monkeyecx-commons.service.mjs +5 -5
- package/fesm2015/monkey-front-core.mjs +4 -4
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +4 -4
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/lib/core/services/commons/monkeyecx-commons.service.d.ts +1 -1
- package/monkey-front-core-0.0.89.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.88.tgz +0 -0
|
@@ -1799,7 +1799,7 @@ class MonkeyEcxCommonsService {
|
|
|
1799
1799
|
this.__onDoSearch$ = new BehaviorSubject({});
|
|
1800
1800
|
this.__tokenCredentials = null;
|
|
1801
1801
|
this.__schedule = null;
|
|
1802
|
-
this.
|
|
1802
|
+
this.__callbackPagination = () => {
|
|
1803
1803
|
// eslint-disable-next-line no-console
|
|
1804
1804
|
return console.error('Method callbackPagination needs to be declared');
|
|
1805
1805
|
};
|
|
@@ -1958,7 +1958,7 @@ class MonkeyEcxCommonsService {
|
|
|
1958
1958
|
this.geti18n(service, keys || '');
|
|
1959
1959
|
}
|
|
1960
1960
|
if (otherArgs?.callbackPagination) {
|
|
1961
|
-
this.
|
|
1961
|
+
this.__callbackPagination = otherArgs.callbackPagination;
|
|
1962
1962
|
}
|
|
1963
1963
|
if (otherArgs?.feature) {
|
|
1964
1964
|
const { flag, service } = otherArgs.feature;
|
|
@@ -2015,8 +2015,8 @@ class MonkeyEcxCommonsService {
|
|
|
2015
2015
|
...this.__page,
|
|
2016
2016
|
},
|
|
2017
2017
|
}).nextPage();
|
|
2018
|
-
if (hasMorePages && this.
|
|
2019
|
-
this.
|
|
2018
|
+
if (hasMorePages && this.__callbackPagination) {
|
|
2019
|
+
this.__callbackPagination();
|
|
2020
2020
|
}
|
|
2021
2021
|
}
|
|
2022
2022
|
}
|