monkey-front-core 0.0.501 → 0.0.503
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/store/monkeyecx-store.selector.mjs +7 -1
- package/fesm2015/monkey-front-core.mjs +6 -0
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +6 -0
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/lib/core/services/store/monkeyecx-store.selector.d.ts +1 -0
- package/monkey-front-core-0.0.503.tgz +0 -0
- package/package.json +3 -3
- package/monkey-front-core-0.0.501.tgz +0 -0
|
@@ -5914,6 +5914,11 @@ class MonkeyEcxCommonsSelectors {
|
|
|
5914
5914
|
return state.page;
|
|
5915
5915
|
});
|
|
5916
5916
|
};
|
|
5917
|
+
const selectData = () => {
|
|
5918
|
+
return createSelector(selectState, (state) => {
|
|
5919
|
+
return state.data;
|
|
5920
|
+
});
|
|
5921
|
+
};
|
|
5917
5922
|
const linksHasDifference = (props) => {
|
|
5918
5923
|
return createSelector(selectState, (state) => {
|
|
5919
5924
|
const { pagination } = state;
|
|
@@ -5940,6 +5945,7 @@ class MonkeyEcxCommonsSelectors {
|
|
|
5940
5945
|
return {
|
|
5941
5946
|
selectState,
|
|
5942
5947
|
selectAll,
|
|
5948
|
+
selectData,
|
|
5943
5949
|
selectControl,
|
|
5944
5950
|
selectLinks,
|
|
5945
5951
|
selectByIdentifier,
|