@jupyter-notebook/help-extension 7.0.0-alpha.2 → 7.0.0-alpha.5

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/index.js CHANGED
@@ -106,8 +106,7 @@ const plugin = {
106
106
  command: CommandIDs.open
107
107
  }));
108
108
  if (menu) {
109
- menu.helpMenu.addGroup([{ command: CommandIDs.shortcuts }]);
110
- menu.helpMenu.addGroup(resourcesGroup);
109
+ menu.helpMenu.addGroup(resourcesGroup, 30);
111
110
  }
112
111
  }
113
112
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyter-notebook/help-extension",
3
- "version": "7.0.0-alpha.2",
3
+ "version": "7.0.0-alpha.5",
4
4
  "description": "Jupyter Notebook - Help Extension",
5
5
  "homepage": "https://github.com/jupyter/notebook",
6
6
  "bugs": {
@@ -39,21 +39,22 @@
39
39
  "watch": "tsc -b --watch"
40
40
  },
41
41
  "dependencies": {
42
- "@jupyter-notebook/ui-components": "^7.0.0-alpha.2",
43
- "@jupyterlab/application": "^4.0.0-alpha.7",
44
- "@jupyterlab/apputils": "^4.0.0-alpha.7",
45
- "@jupyterlab/mainmenu": "^4.0.0-alpha.7",
46
- "@jupyterlab/translation": "^4.0.0-alpha.7"
42
+ "@jupyter-notebook/ui-components": "^7.0.0-alpha.5",
43
+ "@jupyterlab/application": "^4.0.0-alpha.10",
44
+ "@jupyterlab/apputils": "^4.0.0-alpha.10",
45
+ "@jupyterlab/mainmenu": "^4.0.0-alpha.10",
46
+ "@jupyterlab/translation": "^4.0.0-alpha.10"
47
47
  },
48
48
  "devDependencies": {
49
49
  "rimraf": "~3.0.0",
50
- "typescript": "~4.1.3"
50
+ "typescript": "~4.6.3"
51
51
  },
52
52
  "publishConfig": {
53
53
  "access": "public"
54
54
  },
55
55
  "jupyterlab": {
56
- "extension": true
56
+ "extension": true,
57
+ "schemaDir": "schema"
57
58
  },
58
59
  "styleModule": "style/index.js"
59
60
  }
@@ -0,0 +1,28 @@
1
+ {
2
+ "title": "Jupyter Notebook Help Menu Entries",
3
+ "description": "Jupyter Notebook Help Menu Entries",
4
+ "jupyter.lab.menus": {
5
+ "main": [
6
+ {
7
+ "id": "jp-mainmenu-help",
8
+ "items": [
9
+ {
10
+ "command": "help:about",
11
+ "rank": 0
12
+ },
13
+ {
14
+ "type": "separator",
15
+ "rank": 1
16
+ },
17
+ {
18
+ "command": "help:shortcuts",
19
+ "rank": 20
20
+ }
21
+ ]
22
+ }
23
+ ]
24
+ },
25
+ "properties": {},
26
+ "additionalProperties": false,
27
+ "type": "object"
28
+ }