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

@jupyterlab/cells

Package Overview
Dependencies
Maintainers
6
Versions
386
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jupyterlab/cells - npm Package Compare versions

Comparing version 0.9.0 to 0.10.0

20

lib/collapser.js

@@ -28,6 +28,2 @@ "use strict";

/**
* The CSS class added to the collapser icon.
*/
var COLLAPSER_ICON_CLASS = 'jp-Collapser-icon';
/**
* The CSS class added to input collapsers.

@@ -41,10 +37,2 @@ */

/**
* The CSS class added the collapser icon in the collapsed state.
*/
var COLLAPSED_ICON_CLASS = 'jp-ExpandMoreIcon';
/**
* The CSS class added the collapser icon in the expanded state.
*/
var EXPANDED_ICON_CLASS = 'jp-ExpandLessIcon';
/**
* The CSS class added the collapser child when collapsed.

@@ -87,12 +75,6 @@ */

var childClass = COLLAPSER_CHILD_CLASS;
var iconClass = COLLAPSER_ICON_CLASS;
if (this.collapsed) {
childClass += " " + MOD_COLLAPSED_CLASS;
iconClass += " " + COLLAPSED_ICON_CLASS;
}
else {
iconClass += " " + EXPANDED_ICON_CLASS;
}
return (virtualdom_1.h("div", { className: childClass, onclick: function (e) { return _this.handleClick(e); } },
virtualdom_1.h("div", { className: iconClass })));
return (virtualdom_1.h("div", { className: childClass, onclick: function (e) { return _this.handleClick(e); } }));
};

@@ -99,0 +81,0 @@ return Collapser;

2

lib/model.js

@@ -56,3 +56,3 @@ "use strict";

if (Array.isArray(cell.source)) {
_this.value.text = cell.source.join('\n');
_this.value.text = cell.source.join('');
}

@@ -59,0 +59,0 @@ else {

{
"name": "@jupyterlab/cells",
"version": "0.9.0",
"version": "0.10.0",
"description": "JupyterLab - Notebook Cells",

@@ -16,9 +16,9 @@ "main": "lib/index.js",

"dependencies": {
"@jupyterlab/apputils": "^0.9.0",
"@jupyterlab/codeeditor": "^0.9.0",
"@jupyterlab/codemirror": "^0.9.0",
"@jupyterlab/coreutils": "^0.9.0",
"@jupyterlab/outputarea": "^0.9.0",
"@jupyterlab/rendermime": "^0.9.0",
"@jupyterlab/services": "^0.48.0",
"@jupyterlab/apputils": "^0.10.0",
"@jupyterlab/codeeditor": "^0.10.0",
"@jupyterlab/codemirror": "^0.10.0",
"@jupyterlab/coreutils": "^0.10.0",
"@jupyterlab/outputarea": "^0.10.0",
"@jupyterlab/rendermime": "^0.10.0",
"@jupyterlab/services": "^0.49.0",
"@phosphor/coreutils": "^1.2.0",

@@ -25,0 +25,0 @@ "@phosphor/messaging": "^1.2.1",

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