New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@jupyterlab/application-extension

Package Overview
Dependencies
Maintainers
34
Versions
395
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jupyterlab/application-extension - npm Package Compare versions

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

27

lib/index.js

@@ -57,2 +57,3 @@ // Copyright (c) Jupyter Development Team.

id: '@jupyterlab/application-extension:commands',
description: 'Adds commands related to the shell.',
autoStart: true,

@@ -361,2 +362,3 @@ requires: [ITranslator],

id: '@jupyterlab/application-extension:main',
description: 'Initializes the application and provides the URL tree path handler.',
requires: [

@@ -513,2 +515,3 @@ IRouter,

id: '@jupyterlab/application-extension:context-menu',
description: 'Populates the context menu.',
autoStart: true,

@@ -540,2 +543,3 @@ requires: [ISettingRegistry, ITranslator],

id: '@jupyterlab/application-extension:dirty',
description: 'Adds safeguard dialog when closing the browser tab with unsaved modifications.',
autoStart: true,

@@ -566,2 +570,3 @@ requires: [ITranslator],

id: '@jupyterlab/application-extension:layout',
description: 'Provides the shell layout restorer.',
requires: [IStateDB, ILabShell, ISettingRegistry],

@@ -632,2 +637,3 @@ optional: [ITranslator],

id: '@jupyterlab/application-extension:router',
description: 'Provides the URL router',
requires: [JupyterFrontEnd.IPaths],

@@ -656,2 +662,3 @@ activate: (app, paths) => {

id: '@jupyterlab/application-extension:tree-resolver',
description: 'Provides the tree route resolver',
autoStart: true,

@@ -702,2 +709,3 @@ requires: [IRouter],

id: '@jupyterlab/application-extension:notfound',
description: 'Defines the behavior for not found URL (aka route).',
requires: [JupyterFrontEnd.IPaths, IRouter, ITranslator],

@@ -723,2 +731,3 @@ activate: (_, paths, router, translator) => {

id: '@jupyterlab/application-extension:faviconbusy',
description: 'Handles the favicon depending on the application status.',
requires: [ILabStatus],

@@ -752,2 +761,3 @@ activate: async (_, status) => {

id: '@jupyterlab/application-extension:shell',
description: 'Provides the JupyterLab shell. It has an extended API compared to `app.shell`.',
optional: [ISettingRegistry],

@@ -776,2 +786,3 @@ activate: (app, settingRegistry) => {

id: '@jupyterlab/application-extension:status',
description: 'Provides the application status.',
activate: (app) => {

@@ -796,2 +807,3 @@ if (!(app instanceof JupyterLab)) {

id: '@jupyterlab/application-extension:info',
description: 'Provides the application information.',
activate: (app) => {

@@ -810,3 +822,4 @@ if (!(app instanceof JupyterLab)) {

const paths = {
id: '@jupyterlab/apputils-extension:paths',
id: '@jupyterlab/application-extension:paths',
description: 'Provides the application paths.',
activate: (app) => {

@@ -826,2 +839,3 @@ if (!(app instanceof JupyterLab)) {

id: '@jupyterlab/application-extension:property-inspector',
description: 'Provides the property inspector.',
autoStart: true,

@@ -833,3 +847,6 @@ requires: [ILabShell, ITranslator],

const trans = translator.load('jupyterlab');
const widget = new SideBarPropertyInspectorProvider(labshell, undefined, translator);
const widget = new SideBarPropertyInspectorProvider({
shell: labshell,
translator
});
widget.title.icon = buildIcon;

@@ -851,4 +868,5 @@ widget.title.caption = trans.__('Property Inspector');

};
const JupyterLogo = {
const jupyterLogo = {
id: '@jupyterlab/application-extension:logo',
description: 'Sets the application logo.',
autoStart: true,

@@ -874,2 +892,3 @@ requires: [ILabShell],

id: '@jupyterlab/application-extension:mode-switch',
description: 'Adds the interface mode switch',
requires: [ILabShell, ITranslator],

@@ -951,3 +970,3 @@ optional: [IStatusBar, ISettingRegistry],

propertyInspector,
JupyterLogo,
jupyterLogo,
topbar

@@ -954,0 +973,0 @@ ];

@@ -15,2 +15,3 @@ /*

id: '@jupyterlab/application-extension:top-bar',
description: 'Adds a toolbar to the top area (next to the main menu bar).',
autoStart: true,

@@ -17,0 +18,0 @@ requires: [ISettingRegistry, IToolbarWidgetRegistry],

32

package.json
{
"name": "@jupyterlab/application-extension",
"version": "4.0.0-beta.1",
"version": "4.0.0-beta.2",
"description": "JupyterLab - Application Extension",

@@ -41,16 +41,16 @@ "homepage": "https://github.com/jupyterlab/jupyterlab",

"dependencies": {
"@jupyterlab/application": "^4.0.0-beta.1",
"@jupyterlab/apputils": "^4.0.0-beta.1",
"@jupyterlab/coreutils": "^6.0.0-beta.1",
"@jupyterlab/property-inspector": "^4.0.0-beta.1",
"@jupyterlab/settingregistry": "^4.0.0-beta.1",
"@jupyterlab/statedb": "^4.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/application": "^4.0.0-beta.2",
"@jupyterlab/apputils": "^4.0.0-beta.2",
"@jupyterlab/coreutils": "^6.0.0-beta.2",
"@jupyterlab/property-inspector": "^4.0.0-beta.2",
"@jupyterlab/settingregistry": "^4.0.0-beta.2",
"@jupyterlab/statedb": "^4.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/commands": "^2.0.1",
"@lumino/coreutils": "^2.0.0",
"@lumino/disposable": "^2.0.0",
"@lumino/widgets": "^2.0.1",
"@lumino/commands": "^2.1.0",
"@lumino/coreutils": "^2.1.0",
"@lumino/disposable": "^2.1.0",
"@lumino/widgets": "^2.1.0",
"react": "^18.2.0"

@@ -60,4 +60,4 @@ },

"rimraf": "~3.0.0",
"typedoc": "~0.23.25",
"typescript": "~5.0.2"
"typedoc": "~0.24.1",
"typescript": "~5.0.4"
},

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

@@ -26,2 +26,3 @@ /*

id: '@jupyterlab/application-extension:top-bar',
description: 'Adds a toolbar to the top area (next to the main menu bar).',
autoStart: true,

@@ -28,0 +29,0 @@ requires: [ISettingRegistry, IToolbarWidgetRegistry],

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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