@jupytergis/jupytergis-core 0.9.1 → 0.10.0
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/lib/jgisplugin/plugins.js +1 -3
- package/lib/plugin.js +2 -2
- package/package.json +3 -3
|
@@ -23,10 +23,8 @@ const activate = async (app, tracker, themeManager, browserFactory, externalComm
|
|
|
23
23
|
if (PageConfig.getOption('jgis_expose_maps')) {
|
|
24
24
|
window.jupytergisMaps = {};
|
|
25
25
|
}
|
|
26
|
-
let settings = null;
|
|
27
26
|
try {
|
|
28
|
-
|
|
29
|
-
console.log(`Loaded settings for ${SETTINGS_ID}`, settings);
|
|
27
|
+
await settingRegistry.load(SETTINGS_ID);
|
|
30
28
|
}
|
|
31
29
|
catch (error) {
|
|
32
30
|
console.warn(`Failed to load settings for ${SETTINGS_ID}`, error);
|
package/lib/plugin.js
CHANGED
|
@@ -18,7 +18,7 @@ export const trackerPlugin = {
|
|
|
18
18
|
const tracker = new WidgetTracker({
|
|
19
19
|
namespace: NAME_SPACE,
|
|
20
20
|
});
|
|
21
|
-
console.
|
|
21
|
+
console.debug('jupytergis:core:tracker is activated!');
|
|
22
22
|
return tracker;
|
|
23
23
|
},
|
|
24
24
|
};
|
|
@@ -48,7 +48,7 @@ export const layerBrowserRegistryPlugin = {
|
|
|
48
48
|
requires: [],
|
|
49
49
|
provides: IJGISLayerBrowserRegistryToken,
|
|
50
50
|
activate: (app) => {
|
|
51
|
-
console.
|
|
51
|
+
console.debug('jupytergis:core:layer-browser-registry is activated');
|
|
52
52
|
const registry = new JupyterGISLayerBrowserRegistry();
|
|
53
53
|
return registry;
|
|
54
54
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupytergis/jupytergis-core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "JupyterGIS core extension",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jupyter",
|
|
@@ -54,8 +54,8 @@
|
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@jupyter/collaborative-drive": "^3.0.0",
|
|
57
|
-
"@jupytergis/base": "^0.
|
|
58
|
-
"@jupytergis/schema": "^0.
|
|
57
|
+
"@jupytergis/base": "^0.10.0",
|
|
58
|
+
"@jupytergis/schema": "^0.10.0",
|
|
59
59
|
"@jupyterlab/application": "^4.3.0",
|
|
60
60
|
"@jupyterlab/apputils": "^4.3.0",
|
|
61
61
|
"@jupyterlab/docregistry": "^4.3.0",
|