@overmap-ai/core 1.0.48-component-type-views.0 → 1.0.48-component-type-views.1

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.
@@ -1807,6 +1807,11 @@ const componentStageSlice = createSlice({
1807
1807
  }
1808
1808
  });
1809
1809
  const selectStageMapping = (state) => state.componentStageReducer.stages;
1810
+ const selectStage = restructureCreateSelectorWithArgs(
1811
+ createSelector([selectStageMapping, (_state, stageId) => stageId], (stageMapping, stageId) => {
1812
+ return stageMapping[stageId];
1813
+ })
1814
+ );
1810
1815
  const selectStages = createSelector(
1811
1816
  [selectStageMapping],
1812
1817
  (stageMapping) => {
@@ -15893,6 +15898,7 @@ export {
15893
15898
  selectSortedOrganizationUsers,
15894
15899
  selectSortedProjectUsers,
15895
15900
  selectSortedProjects,
15901
+ selectStage,
15896
15902
  selectStageFormIdsFromStageIds,
15897
15903
  selectStageMapping,
15898
15904
  selectStages,