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

@jupyterlab/notebook

Package Overview
Dependencies
Maintainers
6
Versions
395
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jupyterlab/notebook - npm Package Compare versions

Comparing version 0.9.0 to 0.10.0

2

lib/celltools.js

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

var value = JSON.stringify(options.optionsMap[label]);
optionNodes.push(virtualdom_1.h.option({ label: label, value: value }));
optionNodes.push(virtualdom_1.h.option({ value: value }, label));
}

@@ -546,0 +546,0 @@ var node = virtualdom_1.VirtualDOM.realize(virtualdom_1.h.div({}, virtualdom_1.h.label(title), virtualdom_1.h.select({}, optionNodes)));

@@ -62,2 +62,9 @@ "use strict";

onClick: function () {
if (panel.context.model.readOnly) {
return apputils_1.showDialog({
title: 'Cannot Save',
body: 'Document is read-only',
buttons: [apputils_1.Dialog.okButton()]
});
}
panel.context.save().then(function () {

@@ -64,0 +71,0 @@ if (!panel.isDisposed) {

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

Notebook.prototype.handleEvent = function (event) {
if (!this.model || this.model.readOnly) {
if (!this.model) {
return;

@@ -1276,3 +1276,3 @@ }

var model = this.model;
if (!model || model.readOnly) {
if (!model) {
return;

@@ -1279,0 +1279,0 @@ }

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

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

"dependencies": {
"@jupyterlab/apputils": "^0.9.0",
"@jupyterlab/cells": "^0.9.0",
"@jupyterlab/codeeditor": "^0.9.0",
"@jupyterlab/coreutils": "^0.9.0",
"@jupyterlab/docregistry": "^0.9.0",
"@jupyterlab/outputarea": "^0.9.0",
"@jupyterlab/rendermime": "^0.9.0",
"@jupyterlab/services": "^0.48.0",
"@jupyterlab/apputils": "^0.10.0",
"@jupyterlab/cells": "^0.10.0",
"@jupyterlab/codeeditor": "^0.10.0",
"@jupyterlab/coreutils": "^0.10.0",
"@jupyterlab/docregistry": "^0.10.0",
"@jupyterlab/rendermime": "^0.10.0",
"@jupyterlab/services": "^0.49.0",
"@phosphor/algorithm": "^1.1.1",

@@ -26,0 +25,0 @@ "@phosphor/coreutils": "^1.2.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