@overmap-ai/core 1.0.35-projects-licensing.18 → 1.0.35-projects-licensing.20
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
|
@@ -1857,7 +1857,6 @@ const initialState$f = {
|
|
|
1857
1857
|
attachments: {},
|
|
1858
1858
|
comments: {},
|
|
1859
1859
|
visibleStatuses: [IssueStatus.BACKLOG, IssueStatus.SELECTED],
|
|
1860
|
-
isFetchingInitialData: false,
|
|
1861
1860
|
visibleUserIds: null,
|
|
1862
1861
|
recentIssueIds: [],
|
|
1863
1862
|
activeIssueId: null
|
|
@@ -1945,9 +1944,6 @@ const issueSlice = createSlice({
|
|
|
1945
1944
|
setVisibleStatuses: (state, action) => {
|
|
1946
1945
|
state.visibleStatuses = action.payload;
|
|
1947
1946
|
},
|
|
1948
|
-
setIsFetchingInitialData: (state, action) => {
|
|
1949
|
-
state.isFetchingInitialData = action.payload;
|
|
1950
|
-
},
|
|
1951
1947
|
setVisibleUserIds: (state, action) => {
|
|
1952
1948
|
state.visibleUserIds = [...new Set(action.payload)];
|
|
1953
1949
|
},
|
|
@@ -2006,7 +2002,6 @@ const {
|
|
|
2006
2002
|
resetRecentIssues,
|
|
2007
2003
|
setActiveIssueId,
|
|
2008
2004
|
setAttachments,
|
|
2009
|
-
setIsFetchingInitialData,
|
|
2010
2005
|
setIssueComments,
|
|
2011
2006
|
setIssues,
|
|
2012
2007
|
setVisibleStatuses,
|
|
@@ -2105,7 +2100,6 @@ const selectIssue = restructureCreateSelectorWithArgs(
|
|
|
2105
2100
|
return mapping[id];
|
|
2106
2101
|
})
|
|
2107
2102
|
);
|
|
2108
|
-
const selectIsFetchingInitialData = (state) => state.issueReducer.isFetchingInitialData;
|
|
2109
2103
|
const selectAllAttachments = createSelector([selectIssueAttachmentMapping], (mapping) => Object.values(mapping));
|
|
2110
2104
|
const searchIssues = restructureCreateSelectorWithArgs(
|
|
2111
2105
|
createSelector(
|
|
@@ -3017,7 +3011,9 @@ const initialState$3 = {
|
|
|
3017
3011
|
Components: false,
|
|
3018
3012
|
Experimental: false
|
|
3019
3013
|
},
|
|
3020
|
-
appearance: "dark"
|
|
3014
|
+
appearance: "dark",
|
|
3015
|
+
isFetchingInitialData: false,
|
|
3016
|
+
isLoading: false
|
|
3021
3017
|
};
|
|
3022
3018
|
const settingSlice = createSlice({
|
|
3023
3019
|
name: "settings",
|
|
@@ -3041,6 +3037,12 @@ const settingSlice = createSlice({
|
|
|
3041
3037
|
},
|
|
3042
3038
|
setAppearance: (state, action) => {
|
|
3043
3039
|
state.appearance = action.payload;
|
|
3040
|
+
},
|
|
3041
|
+
setIsFetchingInitialData: (state, action) => {
|
|
3042
|
+
state.isFetchingInitialData = action.payload;
|
|
3043
|
+
},
|
|
3044
|
+
setIsLoading: (state, action) => {
|
|
3045
|
+
state.isLoading = action.payload;
|
|
3044
3046
|
}
|
|
3045
3047
|
}
|
|
3046
3048
|
});
|
|
@@ -3049,7 +3051,9 @@ const {
|
|
|
3049
3051
|
setEnablePlacementMode,
|
|
3050
3052
|
setSectionExpanded,
|
|
3051
3053
|
setEnableClustering,
|
|
3052
|
-
setAppearance
|
|
3054
|
+
setAppearance,
|
|
3055
|
+
setIsFetchingInitialData,
|
|
3056
|
+
setIsLoading
|
|
3053
3057
|
} = settingSlice.actions;
|
|
3054
3058
|
const selectEnablePlacementMode = (state) => state.settingReducer.placementMode;
|
|
3055
3059
|
const selectEnableDuplicateIssues = (state) => state.settingReducer.useIssueTemplate;
|
|
@@ -3058,6 +3062,8 @@ const selectExpandedSections = (state) => state.settingReducer.expandedSections;
|
|
|
3058
3062
|
const selectEnableClustering = (state) => state.settingReducer.enableClustering;
|
|
3059
3063
|
const selectAppearance = (state) => state.settingReducer.appearance;
|
|
3060
3064
|
const settingReducer = settingSlice.reducer;
|
|
3065
|
+
const selectIsFetchingInitialData = (state) => state.settingReducer.isFetchingInitialData;
|
|
3066
|
+
const selectIsLoading = (state) => state.settingReducer.isLoading;
|
|
3061
3067
|
const LATEST_REVISION_CACHE = {};
|
|
3062
3068
|
function considerCachingRevision(revision, formId2, preferPending = false) {
|
|
3063
3069
|
var _a2;
|
|
@@ -11762,6 +11768,7 @@ export {
|
|
|
11762
11768
|
selectHiddenComponentTypeIds,
|
|
11763
11769
|
selectIsFetchingInitialData,
|
|
11764
11770
|
selectIsImportingProjectFile,
|
|
11771
|
+
selectIsLoading,
|
|
11765
11772
|
selectIsLoggedIn,
|
|
11766
11773
|
selectIssue,
|
|
11767
11774
|
selectIssueAttachmentMapping,
|
|
@@ -11852,6 +11859,7 @@ export {
|
|
|
11852
11859
|
setEnablePlacementMode,
|
|
11853
11860
|
setIsFetchingInitialData,
|
|
11854
11861
|
setIsImportingProjectFile,
|
|
11862
|
+
setIsLoading,
|
|
11855
11863
|
setIssueComments,
|
|
11856
11864
|
setIssues,
|
|
11857
11865
|
setLicenses,
|