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

@jupyterlab/inspector

Package Overview
Dependencies
Maintainers
0
Versions
384
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jupyterlab/inspector - npm Package Compare versions

Comparing version 4.3.0-alpha.2 to 4.3.0-beta.0

8

lib/inspector.js

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

*/
const DEFAULT_CONTENT_CLASS = 'jp-Inspector-default-content';
const DEFAULT_CONTENT_CLASS = 'jp-Inspector-placeholderContent';
/**

@@ -38,5 +38,5 @@ * A panel which contains a set of inspectors.

else {
this._content = InspectorPanel._generateContentWidget('<p>' +
this._trans.__('Click on a function to see documentation.') +
'</p>');
const placeholderHeadline = `<h3>${this._trans.__('No Documentation')}</h3>`;
const placeholderText = `<p>${this._trans.__('Move the cursor to a code fragment (e.g. function or object) to request information about it from the kernel attached to the editor.')}</p>`;
this._content = InspectorPanel._generateContentWidget(`${placeholderHeadline}${placeholderText}`);
}

@@ -43,0 +43,0 @@ this.addClass(PANEL_CLASS);

{
"name": "@jupyterlab/inspector",
"version": "4.3.0-alpha.2",
"version": "4.3.0-beta.0",
"description": "JupyterLab - Code Inspector",

@@ -44,9 +44,9 @@ "homepage": "https://github.com/jupyterlab/jupyterlab",

"dependencies": {
"@jupyterlab/apputils": "^4.4.0-alpha.2",
"@jupyterlab/codeeditor": "^4.3.0-alpha.2",
"@jupyterlab/coreutils": "^6.3.0-alpha.2",
"@jupyterlab/rendermime": "^4.3.0-alpha.2",
"@jupyterlab/services": "^7.3.0-alpha.2",
"@jupyterlab/statedb": "^4.3.0-alpha.2",
"@jupyterlab/translation": "^4.3.0-alpha.2",
"@jupyterlab/apputils": "^4.4.0-beta.0",
"@jupyterlab/codeeditor": "^4.3.0-beta.0",
"@jupyterlab/coreutils": "^6.3.0-beta.0",
"@jupyterlab/rendermime": "^4.3.0-beta.0",
"@jupyterlab/services": "^7.3.0-beta.0",
"@jupyterlab/statedb": "^4.3.0-beta.0",
"@jupyterlab/translation": "^4.3.0-beta.0",
"@lumino/coreutils": "^2.1.2",

@@ -59,3 +59,3 @@ "@lumino/disposable": "^2.1.2",

"devDependencies": {
"@jupyterlab/testing": "^4.3.0-alpha.2",
"@jupyterlab/testing": "^4.3.0-beta.0",
"@types/jest": "^29.2.0",

@@ -62,0 +62,0 @@ "jest": "^29.2.0",

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

*/
const DEFAULT_CONTENT_CLASS = 'jp-Inspector-default-content';
const DEFAULT_CONTENT_CLASS = 'jp-Inspector-placeholderContent';

@@ -51,6 +51,11 @@ /**

} else {
const placeholderHeadline = `<h3>${this._trans.__(
'No Documentation'
)}</h3>`;
const placeholderText = `<p>${this._trans.__(
'Move the cursor to a code fragment (e.g. function or object) to request information about it from the kernel attached to the editor.'
)}</p>`;
this._content = InspectorPanel._generateContentWidget(
'<p>' +
this._trans.__('Click on a function to see documentation.') +
'</p>'
`${placeholderHeadline}${placeholderText}`
);

@@ -57,0 +62,0 @@ }

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