@jupyterlab/mainmenu
Advanced tools
Comparing version 4.0.0-beta.1 to 4.0.0-beta.2
@@ -7,3 +7,4 @@ // Copyright (c) Jupyter Development Team. | ||
*/ | ||
export const IMainMenu = new Token('@jupyterlab/mainmenu:IMainMenu'); | ||
export const IMainMenu = new Token('@jupyterlab/mainmenu:IMainMenu', `A service for the main menu bar for the application. | ||
Use this if you want to add your own menu items or provide implementations for standardized menu items for specific activities.`); | ||
//# sourceMappingURL=tokens.js.map |
{ | ||
"name": "@jupyterlab/mainmenu", | ||
"version": "4.0.0-beta.1", | ||
"version": "4.0.0-beta.2", | ||
"description": "JupyterLab - Main Menu", | ||
@@ -40,22 +40,22 @@ "homepage": "https://github.com/jupyterlab/jupyterlab", | ||
"test:cov": "jest --collect-coverage", | ||
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand", | ||
"test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch", | ||
"test:debug": "node --inspect-brk ../../node_modules/.bin/jest --runInBand", | ||
"test:debug:watch": "node --inspect-brk ../../node_modules/.bin/jest --runInBand --watch", | ||
"watch": "tsc -b --watch" | ||
}, | ||
"dependencies": { | ||
"@jupyterlab/apputils": "^4.0.0-beta.1", | ||
"@jupyterlab/translation": "^4.0.0-beta.1", | ||
"@jupyterlab/ui-components": "^4.0.0-beta.1", | ||
"@jupyterlab/apputils": "^4.0.0-beta.2", | ||
"@jupyterlab/translation": "^4.0.0-beta.2", | ||
"@jupyterlab/ui-components": "^4.0.0-beta.2", | ||
"@lumino/algorithm": "^2.0.0", | ||
"@lumino/commands": "^2.0.1", | ||
"@lumino/coreutils": "^2.0.0", | ||
"@lumino/widgets": "^2.0.1" | ||
"@lumino/commands": "^2.1.0", | ||
"@lumino/coreutils": "^2.1.0", | ||
"@lumino/widgets": "^2.1.0" | ||
}, | ||
"devDependencies": { | ||
"@jupyterlab/testing": "^4.0.0-beta.1", | ||
"@jupyterlab/testing": "^4.0.0-beta.2", | ||
"@types/jest": "^29.2.0", | ||
"jest": "^29.2.0", | ||
"rimraf": "~3.0.0", | ||
"typedoc": "~0.23.25", | ||
"typescript": "~5.0.2" | ||
"typedoc": "~0.24.1", | ||
"typescript": "~5.0.4" | ||
}, | ||
@@ -62,0 +62,0 @@ "publishConfig": { |
@@ -19,3 +19,7 @@ // Copyright (c) Jupyter Development Team. | ||
*/ | ||
export const IMainMenu = new Token<IMainMenu>('@jupyterlab/mainmenu:IMainMenu'); | ||
export const IMainMenu = new Token<IMainMenu>( | ||
'@jupyterlab/mainmenu:IMainMenu', | ||
`A service for the main menu bar for the application. | ||
Use this if you want to add your own menu items or provide implementations for standardized menu items for specific activities.` | ||
); | ||
@@ -22,0 +26,0 @@ /** |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
67919
1902