monkey-front-core 0.0.461 → 0.0.463

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,12 +5581,17 @@ 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];
5587
5592
  });
5588
5593
  };
5589
- const paginationHasDifference = (props) => {
5594
+ const linksHasDifference = (props) => {
5590
5595
  return createSelector(selectState, (state) => {
5591
5596
  const { pagination } = state;
5592
5597
  const { identifier, url } = props;
@@ -5613,10 +5618,11 @@ class MonkeyEcxCommonsSelectors {
5613
5618
  selectState,
5614
5619
  selectAll,
5615
5620
  selectControl,
5621
+ selectLinks,
5616
5622
  selectByIdentifier,
5617
5623
  selectPagination,
5618
5624
  selectPage,
5619
- paginationHasDifference
5625
+ linksHasDifference
5620
5626
  };
5621
5627
  }
5622
5628
  }