monkey-front-core 0.0.92 → 0.0.96
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/interfaces/index.mjs +3 -1
- package/esm2020/lib/core/interfaces/monkeyecx-saved-state.mjs +2 -0
- package/esm2020/lib/core/interfaces/monkeyecx-scroll-options.mjs +2 -0
- package/esm2020/lib/core/services/commons/monkeyecx-commons.service.mjs +8 -1
- package/fesm2015/monkey-front-core.mjs +4 -0
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +7 -0
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/lib/core/interfaces/index.d.ts +2 -0
- package/lib/core/interfaces/monkeyecx-saved-state.d.ts +5 -0
- package/lib/core/interfaces/monkeyecx-scroll-options.d.ts +5 -0
- package/lib/core/services/commons/monkeyecx-commons.service.d.ts +3 -0
- package/monkey-front-core-0.0.96.tgz +0 -0
- package/package.json +2 -2
- package/monkey-front-core-0.0.92.tgz +0 -0
|
@@ -1783,6 +1783,7 @@ class MonkeyEcxCommonsService {
|
|
|
1783
1783
|
this.tokenStorage = tokenStorage;
|
|
1784
1784
|
this.otherArgs = otherArgs;
|
|
1785
1785
|
this.flagValidator = true;
|
|
1786
|
+
this.__savedState = null;
|
|
1786
1787
|
this.__error = null;
|
|
1787
1788
|
this.__handledError = null;
|
|
1788
1789
|
this.__page = null;
|
|
@@ -2034,6 +2035,12 @@ class MonkeyEcxCommonsService {
|
|
|
2034
2035
|
...extras,
|
|
2035
2036
|
});
|
|
2036
2037
|
}
|
|
2038
|
+
saveState(state) {
|
|
2039
|
+
this.__savedState = {
|
|
2040
|
+
page: this.__page,
|
|
2041
|
+
...state,
|
|
2042
|
+
};
|
|
2043
|
+
}
|
|
2037
2044
|
}
|
|
2038
2045
|
__decorate([
|
|
2039
2046
|
MonkeyEcxCoreService({
|