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

jupyter-js-notebook

Package Overview
Dependencies
Maintainers
2
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jupyter-js-notebook - npm Package Compare versions

Comparing version 0.5.8 to 0.5.9

8

lib/notebook/model.js

@@ -5,2 +5,4 @@ var cells_1 = require('../cells');

var phosphor_properties_1 = require('phosphor-properties');
var editor_1 = require('../editor');
var input_area_1 = require('../input-area');
/**

@@ -170,3 +172,6 @@ * The interactivity modes for a notebook.

NotebookModel.prototype.createCodeCell = function (source) {
var input = new input_area_1.InputAreaModel();
input.textEditor = new editor_1.EditorModel({ lineNumbers: false });
var cell = new cells_1.CodeCellModel();
cell.input = input;
return cell;

@@ -178,3 +183,6 @@ };

NotebookModel.prototype.createMarkdownCell = function (source) {
var input = new input_area_1.InputAreaModel();
input.textEditor = new editor_1.EditorModel({ lineNumbers: false });
var cell = new cells_1.MarkdownCellModel();
cell.input = input;
return cell;

@@ -181,0 +189,0 @@ };

2

package.json
{
"name": "jupyter-js-notebook",
"version": "0.5.8",
"version": "0.5.9",
"description": "Notebook widget for Jupyter",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

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