monkey-front-core 0.0.462 → 0.0.465
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/monkeyecx-store.mjs +1 -1
- package/esm2020/lib/core/services/store/monkeyecx-store.actions.mjs +3 -1
- package/esm2020/lib/core/services/store/monkeyecx-store.selector.mjs +3 -3
- package/fesm2015/monkey-front-core.mjs +4 -2
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +4 -2
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/lib/core/interfaces/monkeyecx-store.d.ts +2 -1
- package/lib/core/services/store/monkeyecx-store.actions.d.ts +8 -3
- package/lib/core/services/store/monkeyecx-store.selector.d.ts +1 -1
- package/monkey-front-core-0.0.465.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.462.tgz +0 -0
|
@@ -5538,6 +5538,7 @@ class MonkeyEcxCommonsActions {
|
|
|
5538
5538
|
const load = createAction(`[${actionName}] Load`, props());
|
|
5539
5539
|
const loadPagination = createAction(`[${actionName} Pagination] Load`, props());
|
|
5540
5540
|
const updateAll = createAction(`[${actionName}] Update All`, props());
|
|
5541
|
+
const updateOne = createAction(`[${actionName}] Update One`, props());
|
|
5541
5542
|
const removeOne = createAction(`[${actionName}] Remove One`, props());
|
|
5542
5543
|
const updateControl = createAction(`[${actionName}] Update Control`, props());
|
|
5543
5544
|
const updatePage = createAction(`[${actionName}] Update Page`, props());
|
|
@@ -5548,6 +5549,7 @@ class MonkeyEcxCommonsActions {
|
|
|
5548
5549
|
loadPagination,
|
|
5549
5550
|
removeOne,
|
|
5550
5551
|
updateAll,
|
|
5552
|
+
updateOne,
|
|
5551
5553
|
updateControl,
|
|
5552
5554
|
updateLinks,
|
|
5553
5555
|
updatePage
|
|
@@ -5591,7 +5593,7 @@ class MonkeyEcxCommonsSelectors {
|
|
|
5591
5593
|
return state.page?.[props.identifier];
|
|
5592
5594
|
});
|
|
5593
5595
|
};
|
|
5594
|
-
const
|
|
5596
|
+
const linksHasDifference = (props) => {
|
|
5595
5597
|
return createSelector(selectState, (state) => {
|
|
5596
5598
|
const { pagination } = state;
|
|
5597
5599
|
const { identifier, url } = props;
|
|
@@ -5622,7 +5624,7 @@ class MonkeyEcxCommonsSelectors {
|
|
|
5622
5624
|
selectByIdentifier,
|
|
5623
5625
|
selectPagination,
|
|
5624
5626
|
selectPage,
|
|
5625
|
-
|
|
5627
|
+
linksHasDifference
|
|
5626
5628
|
};
|
|
5627
5629
|
}
|
|
5628
5630
|
}
|