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