monkey-front-core 0.0.461 → 0.0.462
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 +7 -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 +3 -0
- package/monkey-front-core-0.0.462.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.461.tgz +0 -0
|
@@ -5581,6 +5581,11 @@ class MonkeyEcxCommonsSelectors {
|
|
|
5581
5581
|
return state.control;
|
|
5582
5582
|
});
|
|
5583
5583
|
};
|
|
5584
|
+
const selectLinks = (props) => {
|
|
5585
|
+
return createSelector(selectState, (state) => {
|
|
5586
|
+
return state.links?.[props.identifier];
|
|
5587
|
+
});
|
|
5588
|
+
};
|
|
5584
5589
|
const selectPage = (props) => {
|
|
5585
5590
|
return createSelector(selectState, (state) => {
|
|
5586
5591
|
return state.page?.[props.identifier];
|
|
@@ -5613,6 +5618,7 @@ class MonkeyEcxCommonsSelectors {
|
|
|
5613
5618
|
selectState,
|
|
5614
5619
|
selectAll,
|
|
5615
5620
|
selectControl,
|
|
5621
|
+
selectLinks,
|
|
5616
5622
|
selectByIdentifier,
|
|
5617
5623
|
selectPagination,
|
|
5618
5624
|
selectPage,
|