@jupyter-notebook/help-extension 7.0.6 → 7.1.0-alpha.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/index.js +2 -0
- package/package.json +6 -6
package/lib/index.js
CHANGED
|
@@ -36,6 +36,7 @@ var CommandIDs;
|
|
|
36
36
|
const open = {
|
|
37
37
|
id: '@jupyter-notebook/help-extension:open',
|
|
38
38
|
autoStart: true,
|
|
39
|
+
description: 'A plugin to open the about section with resources',
|
|
39
40
|
activate: (app) => {
|
|
40
41
|
const { commands } = app;
|
|
41
42
|
commands.addCommand(CommandIDs.open, {
|
|
@@ -55,6 +56,7 @@ const about = {
|
|
|
55
56
|
autoStart: true,
|
|
56
57
|
requires: [ITranslator],
|
|
57
58
|
optional: [IMainMenu, ICommandPalette],
|
|
59
|
+
description: 'Plugin to add a command to show an About Jupyter Notebook and Markdown Reference',
|
|
58
60
|
activate: (app, translator, menu, palette) => {
|
|
59
61
|
const { commands } = app;
|
|
60
62
|
const trans = translator.load('notebook');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyter-notebook/help-extension",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.1.0-alpha.0",
|
|
4
4
|
"description": "Jupyter Notebook - Help Extension",
|
|
5
5
|
"homepage": "https://github.com/jupyter/notebook",
|
|
6
6
|
"bugs": {
|
|
@@ -38,11 +38,11 @@
|
|
|
38
38
|
"watch": "tsc -b --watch"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@jupyter-notebook/ui-components": "^7.0.
|
|
42
|
-
"@jupyterlab/application": "^4.0.
|
|
43
|
-
"@jupyterlab/apputils": "^4.
|
|
44
|
-
"@jupyterlab/mainmenu": "^4.0.
|
|
45
|
-
"@jupyterlab/translation": "^4.0.
|
|
41
|
+
"@jupyter-notebook/ui-components": "^7.1.0-alpha.0",
|
|
42
|
+
"@jupyterlab/application": "^4.1.0-alpha.2",
|
|
43
|
+
"@jupyterlab/apputils": "^4.2.0-alpha.2",
|
|
44
|
+
"@jupyterlab/mainmenu": "^4.1.0-alpha.2",
|
|
45
|
+
"@jupyterlab/translation": "^4.1.0-alpha.2",
|
|
46
46
|
"react": "^18.2.0",
|
|
47
47
|
"react-dom": "^18.2.0"
|
|
48
48
|
},
|