@geogirafe/lib-geoportal 1.2.0-dev.2657953927 → 1.2.0-dev.2657999728
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/package.json +1 -1
- package/templates/public/about.json +1 -1
- package/tools/configuration/girafeconfig.js +1 -1
- package/tools/main.d.ts +3 -3
- package/tools/main.js +2 -2
- package/tools/offline/offlinemanager.js +1 -1
- package/tools/sw/service-worker.js +1 -1
- /package/tools/configuration/{sanitizeconfig.defaults.d.ts → sanitizeconfig-defaults.d.ts} +0 -0
- /package/tools/configuration/{sanitizeconfig.defaults.js → sanitizeconfig-defaults.js} +0 -0
- /package/tools/sw/{service-worker.tools.d.ts → service-worker-tools.d.ts} +0 -0
- /package/tools/sw/{service-worker.tools.js → service-worker-tools.js} +0 -0
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"1.2.0-dev.
|
|
1
|
+
{"version":"1.2.0-dev.2657999728", "build":"2657999728", "date":"07/07/2026"}
|
|
@@ -4,7 +4,7 @@ export var HighlightMode;
|
|
|
4
4
|
HighlightMode["HighlightAll"] = "highlight-all";
|
|
5
5
|
HighlightMode["HighlightPerLayer"] = "highlight-per-layer";
|
|
6
6
|
})(HighlightMode || (HighlightMode = {}));
|
|
7
|
-
import { defaultNewsSanitizeConfig, defaultPermalinkSanitizeConfig, defaultQuerySanitizeConfig } from './sanitizeconfig.
|
|
7
|
+
import { defaultNewsSanitizeConfig, defaultPermalinkSanitizeConfig, defaultQuerySanitizeConfig } from './sanitizeconfig-defaults.js';
|
|
8
8
|
class GirafeConfig {
|
|
9
9
|
general;
|
|
10
10
|
languages;
|
package/tools/main.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ export { default as PluginManager } from './auth/pluginmanager.js';
|
|
|
11
11
|
export { default as ConfigManager } from './configuration/configmanager.js';
|
|
12
12
|
export type { HighlightMode } from './configuration/girafeconfig.js';
|
|
13
13
|
export { default as GirafeConfig } from './configuration/girafeconfig.js';
|
|
14
|
-
export { defaultNewsSanitizeConfig, defaultPermalinkSanitizeConfig, defaultQuerySanitizeConfig } from './configuration/sanitizeconfig.
|
|
14
|
+
export { defaultNewsSanitizeConfig, defaultPermalinkSanitizeConfig, defaultQuerySanitizeConfig } from './configuration/sanitizeconfig-defaults.js';
|
|
15
15
|
export { default as GirafeContext } from './context/context.js';
|
|
16
16
|
export type { default as IGirafeContext } from './context/icontext.js';
|
|
17
17
|
export { default as CesiumDrawing } from './drawing/cesiumDrawing.js';
|
|
@@ -111,8 +111,8 @@ export type { GgUserInteractionListener } from './state/userInteractionManager.j
|
|
|
111
111
|
export { default as UserInteractionManager } from './state/userInteractionManager.js';
|
|
112
112
|
export type { GgUserInteractionEvent } from './state/userinteractionevent.js';
|
|
113
113
|
export { gGEventDependencies, isPrimaryPointerAction, isAlternateMouseClick, isMouseWheelClick } from './state/userinteractionevent.js';
|
|
114
|
-
export type { SwState } from './sw/service-worker.
|
|
115
|
-
export { swLog, SwHelper, IndexedDbHelper, CacheHelper } from './sw/service-worker.
|
|
114
|
+
export type { SwState } from './sw/service-worker-tools.js';
|
|
115
|
+
export { swLog, SwHelper, IndexedDbHelper, CacheHelper } from './sw/service-worker-tools.js';
|
|
116
116
|
export { default as CustomThemesManager } from './themes/customthemesmanager.js';
|
|
117
117
|
export { default as ThemeFavoritesManager } from './themes/themefavoritesmanager.js';
|
|
118
118
|
export { DEFAULT_OPACITY, OPACITY_FOR_DEFAULT_BASEMAP } from './themes/themes-config.js';
|
package/tools/main.js
CHANGED
|
@@ -10,7 +10,7 @@ export { default as OpenIdConnectManager } from './auth/openidconnectmanager.js'
|
|
|
10
10
|
export { default as PluginManager } from './auth/pluginmanager.js';
|
|
11
11
|
export { default as ConfigManager } from './configuration/configmanager.js';
|
|
12
12
|
export { default as GirafeConfig } from './configuration/girafeconfig.js';
|
|
13
|
-
export { defaultNewsSanitizeConfig, defaultPermalinkSanitizeConfig, defaultQuerySanitizeConfig } from './configuration/sanitizeconfig.
|
|
13
|
+
export { defaultNewsSanitizeConfig, defaultPermalinkSanitizeConfig, defaultQuerySanitizeConfig } from './configuration/sanitizeconfig-defaults.js';
|
|
14
14
|
export { default as GirafeContext } from './context/context.js';
|
|
15
15
|
export { default as CesiumDrawing } from './drawing/cesiumDrawing.js';
|
|
16
16
|
export { default as DrawingFeature } from './drawing/drawingFeature.js';
|
|
@@ -81,7 +81,7 @@ export { default as StateToggleManager } from './state/stateToggleManager.js';
|
|
|
81
81
|
export { default as StateManager } from './state/statemanager.js';
|
|
82
82
|
export { default as UserInteractionManager } from './state/userInteractionManager.js';
|
|
83
83
|
export { gGEventDependencies, isPrimaryPointerAction, isAlternateMouseClick, isMouseWheelClick } from './state/userinteractionevent.js';
|
|
84
|
-
export { swLog, SwHelper, IndexedDbHelper, CacheHelper } from './sw/service-worker.
|
|
84
|
+
export { swLog, SwHelper, IndexedDbHelper, CacheHelper } from './sw/service-worker-tools.js';
|
|
85
85
|
export { default as CustomThemesManager } from './themes/customthemesmanager.js';
|
|
86
86
|
export { default as ThemeFavoritesManager } from './themes/themefavoritesmanager.js';
|
|
87
87
|
export { DEFAULT_OPACITY, OPACITY_FOR_DEFAULT_BASEMAP } from './themes/themes-config.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// SPDX-License-Identifier: Apache-2.0
|
|
2
2
|
import GirafeSingleton from '../../base/GirafeSingleton.js';
|
|
3
|
-
import { IndexedDbHelper } from '../sw/service-worker.
|
|
3
|
+
import { IndexedDbHelper } from '../sw/service-worker-tools.js';
|
|
4
4
|
import { Feature } from 'ol';
|
|
5
5
|
import VectorLayer from 'ol/layer/Vector.js';
|
|
6
6
|
import VectorSource from 'ol/source/Vector.js';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// SPDX-License-Identifier: Apache-2.0
|
|
2
2
|
// NOTE REG: Here the extension ".js" MUST be present in the import,
|
|
3
3
|
// otherwise the service-worker won't be able to find the transpiled file
|
|
4
|
-
import { SwHelper, IndexedDbHelper, swLog, CacheHelper } from './service-worker
|
|
4
|
+
import { SwHelper, IndexedDbHelper, swLog, CacheHelper } from './service-worker-tools.js';
|
|
5
5
|
/**
|
|
6
6
|
* The service worker state needs to be persisted
|
|
7
7
|
* because when not using the app, the service worker can be paused by the browser
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|