@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.
|
@@ -3315,6 +3315,9 @@ var __publicField = (obj, key, value) => {
|
|
|
3315
3315
|
deleteIssueAssociations
|
|
3316
3316
|
} = issueAssociationSlice.actions;
|
|
3317
3317
|
const selectIssueAssociationMapping = (state) => state.issueAssociationReducer.instances;
|
|
3318
|
+
const selectIssueAssociations = toolkit.createSelector([selectIssueAssociationMapping], (associations) => {
|
|
3319
|
+
return Object.values(associations);
|
|
3320
|
+
});
|
|
3318
3321
|
const selectIssueAssociationById = (id) => (state) => {
|
|
3319
3322
|
return state.issueAssociationReducer.instances[id];
|
|
3320
3323
|
};
|
|
@@ -7882,6 +7885,7 @@ var __publicField = (obj, key, value) => {
|
|
|
7882
7885
|
exports2.selectIssue = selectIssue;
|
|
7883
7886
|
exports2.selectIssueAssociationById = selectIssueAssociationById;
|
|
7884
7887
|
exports2.selectIssueAssociationMapping = selectIssueAssociationMapping;
|
|
7888
|
+
exports2.selectIssueAssociations = selectIssueAssociations;
|
|
7885
7889
|
exports2.selectIssueAssociationsOfAsset = selectIssueAssociationsOfAsset;
|
|
7886
7890
|
exports2.selectIssueAssociationsOfIssue = selectIssueAssociationsOfIssue;
|
|
7887
7891
|
exports2.selectIssueAssociationsToIssue = selectIssueAssociationsToIssue;
|