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.
@@ -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,