@jupyterlab/mainmenu 3.3.0-alpha.12 → 3.3.0-alpha.16
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/run.d.ts +2 -23
- package/package.json +7 -7
package/lib/run.d.ts
CHANGED
|
@@ -42,13 +42,6 @@ export declare namespace IRunMenu {
|
|
|
42
42
|
* registered with the Run menu.
|
|
43
43
|
*/
|
|
44
44
|
interface ICodeRunner<T extends Widget> extends IMenuExtender<T> {
|
|
45
|
-
/**
|
|
46
|
-
* Return the caption associated to the `run` function.
|
|
47
|
-
*
|
|
48
|
-
* This function receives the number of items `n` to be able to provided
|
|
49
|
-
* correct pluralized forms of translations.
|
|
50
|
-
*/
|
|
51
|
-
runCaption?: (n: number) => string;
|
|
52
45
|
/**
|
|
53
46
|
* Return the label associated to the `run` function.
|
|
54
47
|
*
|
|
@@ -57,28 +50,14 @@ export declare namespace IRunMenu {
|
|
|
57
50
|
*/
|
|
58
51
|
runLabel?: (n: number) => string;
|
|
59
52
|
/**
|
|
60
|
-
* Return the
|
|
61
|
-
*
|
|
62
|
-
* This function receives the number of items `n` to be able to provided
|
|
63
|
-
* correct pluralized forms of translations.
|
|
64
|
-
*/
|
|
65
|
-
runAllCaption?: (n: number) => string;
|
|
66
|
-
/**
|
|
67
|
-
* Return the label associated to the `runAll` function.
|
|
53
|
+
* Return the label associated to the `runAllLabel` function.
|
|
68
54
|
*
|
|
69
55
|
* This function receives the number of items `n` to be able to provided
|
|
70
56
|
* correct pluralized forms of translations.
|
|
71
57
|
*/
|
|
72
58
|
runAllLabel?: (n: number) => string;
|
|
73
59
|
/**
|
|
74
|
-
* Return the
|
|
75
|
-
*
|
|
76
|
-
* This function receives the number of items `n` to be able to provided
|
|
77
|
-
* correct pluralized forms of translations.
|
|
78
|
-
*/
|
|
79
|
-
restartAndRunAllCaption?: (n: number) => string;
|
|
80
|
-
/**
|
|
81
|
-
* Return the label associated to the `restartAndRunAll` function.
|
|
60
|
+
* Return the label associated to the `restartAndRunAllLabel` function.
|
|
82
61
|
*
|
|
83
62
|
* This function receives the number of items `n` to be able to provided
|
|
84
63
|
* correct pluralized forms of translations.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/mainmenu",
|
|
3
|
-
"version": "3.3.0-alpha.
|
|
3
|
+
"version": "3.3.0-alpha.16",
|
|
4
4
|
"description": "JupyterLab - Main Menu",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
6
6
|
"bugs": {
|
|
@@ -41,17 +41,17 @@
|
|
|
41
41
|
"watch": "tsc -b --watch"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@jupyterlab/apputils": "^3.3.0-alpha.
|
|
45
|
-
"@jupyterlab/services": "^6.3.0-alpha.
|
|
46
|
-
"@jupyterlab/translation": "^3.3.0-alpha.
|
|
47
|
-
"@jupyterlab/ui-components": "^3.3.0-alpha.
|
|
44
|
+
"@jupyterlab/apputils": "^3.3.0-alpha.16",
|
|
45
|
+
"@jupyterlab/services": "^6.3.0-alpha.16",
|
|
46
|
+
"@jupyterlab/translation": "^3.3.0-alpha.16",
|
|
47
|
+
"@jupyterlab/ui-components": "^3.3.0-alpha.15",
|
|
48
48
|
"@lumino/algorithm": "^1.3.3",
|
|
49
49
|
"@lumino/commands": "^1.12.0",
|
|
50
50
|
"@lumino/coreutils": "^1.5.3",
|
|
51
|
-
"@lumino/widgets": "^1.
|
|
51
|
+
"@lumino/widgets": "^1.19.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@jupyterlab/testutils": "^3.3.0-alpha.
|
|
54
|
+
"@jupyterlab/testutils": "^3.3.0-alpha.16",
|
|
55
55
|
"@types/jest": "^26.0.10",
|
|
56
56
|
"jest": "^26.4.2",
|
|
57
57
|
"rimraf": "~3.0.0",
|