Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@jupyterlab/docmanager

Package Overview
Dependencies
Maintainers
34
Versions
384
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jupyterlab/docmanager - npm Package Compare versions

Comparing version 4.0.0-beta.1 to 4.0.0-beta.2

6

lib/tokens.js

@@ -7,7 +7,9 @@ // Copyright (c) Jupyter Development Team.

*/
export const IDocumentManager = new Token('@jupyterlab/docmanager:IDocumentManager');
export const IDocumentManager = new Token('@jupyterlab/docmanager:IDocumentManager', `A service for the manager for all
documents used by the application. Use this if you want to open and close documents,
create and delete files, and otherwise interact with the file system.`);
/**
* The document widget opener token.
*/
export const IDocumentWidgetOpener = new Token('@jupyterlab/docmanager:IDocumentWidgetOpener');
export const IDocumentWidgetOpener = new Token('@jupyterlab/docmanager:IDocumentWidgetOpener', `A service to open a widget.`);
//# sourceMappingURL=tokens.js.map
{
"name": "@jupyterlab/docmanager",
"version": "4.0.0-beta.1",
"version": "4.0.0-beta.2",
"description": "JupyterLab - Document Manager",

@@ -40,30 +40,30 @@ "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": "npm run test -- --watch"
},
"dependencies": {
"@jupyterlab/apputils": "^4.0.0-beta.1",
"@jupyterlab/coreutils": "^6.0.0-beta.1",
"@jupyterlab/docregistry": "^4.0.0-beta.1",
"@jupyterlab/services": "^7.0.0-beta.1",
"@jupyterlab/statusbar": "^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/coreutils": "^6.0.0-beta.2",
"@jupyterlab/docregistry": "^4.0.0-beta.2",
"@jupyterlab/services": "^7.0.0-beta.2",
"@jupyterlab/statusbar": "^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/coreutils": "^2.0.0",
"@lumino/disposable": "^2.0.0",
"@lumino/coreutils": "^2.1.0",
"@lumino/disposable": "^2.1.0",
"@lumino/messaging": "^2.0.0",
"@lumino/properties": "^2.0.0",
"@lumino/signaling": "^2.0.0",
"@lumino/widgets": "^2.0.1",
"@lumino/signaling": "^2.1.0",
"@lumino/widgets": "^2.1.0",
"react": "^18.2.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"
},

@@ -70,0 +70,0 @@ "publishConfig": {

@@ -16,3 +16,6 @@ // Copyright (c) Jupyter Development Team.

export const IDocumentManager = new Token<IDocumentManager>(
'@jupyterlab/docmanager:IDocumentManager'
'@jupyterlab/docmanager:IDocumentManager',
`A service for the manager for all
documents used by the application. Use this if you want to open and close documents,
create and delete files, and otherwise interact with the file system.`
);

@@ -24,3 +27,4 @@

export const IDocumentWidgetOpener = new Token<IDocumentWidgetOpener>(
'@jupyterlab/docmanager:IDocumentWidgetOpener'
'@jupyterlab/docmanager:IDocumentWidgetOpener',
`A service to open a widget.`
);

@@ -27,0 +31,0 @@

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc