@overmap-ai/core 1.0.63-form-submission-drafts.2 → 1.0.63-form-submission-drafts.3
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/dist/overmap-core.js
CHANGED
|
@@ -3327,6 +3327,9 @@ const {
|
|
|
3327
3327
|
deleteIssueAssociations
|
|
3328
3328
|
} = issueAssociationSlice.actions;
|
|
3329
3329
|
const selectIssueAssociationMapping = (state) => state.issueAssociationReducer.instances;
|
|
3330
|
+
const selectIssueAssociations = createSelector([selectIssueAssociationMapping], (associations) => {
|
|
3331
|
+
return Object.values(associations);
|
|
3332
|
+
});
|
|
3330
3333
|
const selectIssueAssociationById = (id) => (state) => {
|
|
3331
3334
|
return state.issueAssociationReducer.instances[id];
|
|
3332
3335
|
};
|
|
@@ -7895,6 +7898,7 @@ export {
|
|
|
7895
7898
|
selectIssue,
|
|
7896
7899
|
selectIssueAssociationById,
|
|
7897
7900
|
selectIssueAssociationMapping,
|
|
7901
|
+
selectIssueAssociations,
|
|
7898
7902
|
selectIssueAssociationsOfAsset,
|
|
7899
7903
|
selectIssueAssociationsOfIssue,
|
|
7900
7904
|
selectIssueAssociationsToIssue,
|