@jupytergis/jupytergis-lab 0.9.0 → 0.9.2

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.
@@ -31,7 +31,7 @@ interface IOptions {
31
31
  model: JupyterGISModel;
32
32
  externalCommands?: IJGISExternalCommandRegistry;
33
33
  tracker?: JupyterGISTracker;
34
- formSchemaRegistry?: IJGISFormSchemaRegistry;
34
+ formSchemaRegistry: IJGISFormSchemaRegistry;
35
35
  state?: IStateDB;
36
36
  annotationModel?: IAnnotationModel;
37
37
  }
@@ -71,17 +71,17 @@ export class YJupyterGISLuminoWidget extends Panel {
71
71
  export const notebookRendererPlugin = {
72
72
  id: 'jupytergis:yjswidget-plugin',
73
73
  autoStart: true,
74
+ requires: [IJGISFormSchemaRegistryToken],
74
75
  optional: [
75
76
  IJGISExternalCommandRegistryToken,
76
77
  IJupyterGISDocTracker,
77
78
  IJupyterYWidgetManager,
78
79
  ICollaborativeDrive,
79
80
  IStateDB,
80
- IJGISFormSchemaRegistryToken,
81
81
  IAnnotationToken,
82
82
  ISettingRegistry,
83
83
  ],
84
- activate: (app, externalCommandRegistry, jgisTracker, yWidgetManager, drive, formSchemaRegistry, state, annotationModel, settingRegistry) => {
84
+ activate: (app, formSchemaRegistry, externalCommandRegistry, jgisTracker, yWidgetManager, drive, state, annotationModel, settingRegistry) => {
85
85
  if (!yWidgetManager) {
86
86
  console.error('Missing IJupyterYWidgetManager token!');
87
87
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupytergis/jupytergis-lab",
3
- "version": "0.9.0",
3
+ "version": "0.9.2",
4
4
  "description": "JupyterGIS Lab extension.",
5
5
  "keywords": [
6
6
  "jupyter",
@@ -53,8 +53,8 @@
53
53
  },
54
54
  "dependencies": {
55
55
  "@jupyter/collaborative-drive": "^3.0.0",
56
- "@jupytergis/base": "^0.9.0",
57
- "@jupytergis/schema": "^0.9.0",
56
+ "@jupytergis/base": "^0.9.2",
57
+ "@jupytergis/schema": "^0.9.2",
58
58
  "@jupyterlab/application": "^4.3.0",
59
59
  "@jupyterlab/apputils": "^4.3.0",
60
60
  "@jupyterlab/completer": "^4.3.0",