@overmap-ai/core 1.0.35-projects-licensing.19 → 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
|
@@ -3013,7 +3013,7 @@ const initialState$3 = {
|
|
|
3013
3013
|
},
|
|
3014
3014
|
appearance: "dark",
|
|
3015
3015
|
isFetchingInitialData: false,
|
|
3016
|
-
|
|
3016
|
+
isLoading: false
|
|
3017
3017
|
};
|
|
3018
3018
|
const settingSlice = createSlice({
|
|
3019
3019
|
name: "settings",
|
|
@@ -3041,8 +3041,8 @@ const settingSlice = createSlice({
|
|
|
3041
3041
|
setIsFetchingInitialData: (state, action) => {
|
|
3042
3042
|
state.isFetchingInitialData = action.payload;
|
|
3043
3043
|
},
|
|
3044
|
-
|
|
3045
|
-
state.
|
|
3044
|
+
setIsLoading: (state, action) => {
|
|
3045
|
+
state.isLoading = action.payload;
|
|
3046
3046
|
}
|
|
3047
3047
|
}
|
|
3048
3048
|
});
|
|
@@ -3053,7 +3053,7 @@ const {
|
|
|
3053
3053
|
setEnableClustering,
|
|
3054
3054
|
setAppearance,
|
|
3055
3055
|
setIsFetchingInitialData,
|
|
3056
|
-
|
|
3056
|
+
setIsLoading
|
|
3057
3057
|
} = settingSlice.actions;
|
|
3058
3058
|
const selectEnablePlacementMode = (state) => state.settingReducer.placementMode;
|
|
3059
3059
|
const selectEnableDuplicateIssues = (state) => state.settingReducer.useIssueTemplate;
|
|
@@ -3063,7 +3063,7 @@ const selectEnableClustering = (state) => state.settingReducer.enableClustering;
|
|
|
3063
3063
|
const selectAppearance = (state) => state.settingReducer.appearance;
|
|
3064
3064
|
const settingReducer = settingSlice.reducer;
|
|
3065
3065
|
const selectIsFetchingInitialData = (state) => state.settingReducer.isFetchingInitialData;
|
|
3066
|
-
const
|
|
3066
|
+
const selectIsLoading = (state) => state.settingReducer.isLoading;
|
|
3067
3067
|
const LATEST_REVISION_CACHE = {};
|
|
3068
3068
|
function considerCachingRevision(revision, formId2, preferPending = false) {
|
|
3069
3069
|
var _a2;
|
|
@@ -11766,9 +11766,9 @@ export {
|
|
|
11766
11766
|
selectFormRevision,
|
|
11767
11767
|
selectHiddenCategoryCount,
|
|
11768
11768
|
selectHiddenComponentTypeIds,
|
|
11769
|
-
selectIsFetchingData,
|
|
11770
11769
|
selectIsFetchingInitialData,
|
|
11771
11770
|
selectIsImportingProjectFile,
|
|
11771
|
+
selectIsLoading,
|
|
11772
11772
|
selectIsLoggedIn,
|
|
11773
11773
|
selectIssue,
|
|
11774
11774
|
selectIssueAttachmentMapping,
|
|
@@ -11857,9 +11857,9 @@ export {
|
|
|
11857
11857
|
setEnableClustering,
|
|
11858
11858
|
setEnableDuplicateIssues,
|
|
11859
11859
|
setEnablePlacementMode,
|
|
11860
|
-
setIsFetchingData,
|
|
11861
11860
|
setIsFetchingInitialData,
|
|
11862
11861
|
setIsImportingProjectFile,
|
|
11862
|
+
setIsLoading,
|
|
11863
11863
|
setIssueComments,
|
|
11864
11864
|
setIssues,
|
|
11865
11865
|
setLicenses,
|