@jupyterlab/nbformat
Advanced tools
Comparing version 3.1.0-alpha.3 to 3.1.0-alpha.4
@@ -7,7 +7,7 @@ /** | ||
/** | ||
* The major version of the notebook format. | ||
* The earliest major version of the notebook format we support. | ||
*/ | ||
export declare const MAJOR_VERSION: number; | ||
/** | ||
* The minor version of the notebook format. | ||
* The earliest minor version of the notebook format we support. | ||
*/ | ||
@@ -154,2 +154,9 @@ export declare const MINOR_VERSION: number; | ||
/** | ||
* A string field representing the identifier of this particular cell. | ||
* | ||
* Notebook format 4.4 requires no id field, but format 4.5 requires an id | ||
* field. We need to handle both cases, so we make id optional here. | ||
*/ | ||
id?: string; | ||
/** | ||
* String identifying the type of cell. | ||
@@ -172,2 +179,9 @@ */ | ||
/** | ||
* A string field representing the identifier of this particular cell. | ||
* | ||
* Notebook format 4.4 requires no id field, but format 4.5 requires an id | ||
* field. We need to handle both cases, so we make id optional here. | ||
*/ | ||
id?: string; | ||
/** | ||
* String identifying the type of cell. | ||
@@ -212,2 +226,9 @@ */ | ||
/** | ||
* A string field representing the identifier of this particular cell. | ||
* | ||
* Notebook format 4.4 requires no id field, but format 4.5 requires an id | ||
* field. We need to handle both cases, so we make id optional here. | ||
*/ | ||
id?: string; | ||
/** | ||
* String identifying the type of cell. | ||
@@ -214,0 +235,0 @@ */ |
@@ -12,7 +12,7 @@ // Copyright (c) Jupyter Development Team. | ||
/** | ||
* The major version of the notebook format. | ||
* The earliest major version of the notebook format we support. | ||
*/ | ||
export const MAJOR_VERSION = 4; | ||
/** | ||
* The minor version of the notebook format. | ||
* The earliest minor version of the notebook format we support. | ||
*/ | ||
@@ -19,0 +19,0 @@ export const MINOR_VERSION = 4; |
{ | ||
"name": "@jupyterlab/nbformat", | ||
"version": "3.1.0-alpha.3", | ||
"version": "3.1.0-alpha.4", | ||
"description": "Notebook format interfaces", | ||
@@ -44,3 +44,3 @@ "homepage": "https://github.com/jupyterlab/jupyterlab", | ||
"devDependencies": { | ||
"@jupyterlab/testutils": "^3.1.0-alpha.3", | ||
"@jupyterlab/testutils": "^3.1.0-alpha.4", | ||
"@types/jest": "^26.0.10", | ||
@@ -55,3 +55,3 @@ "jest": "^26.4.2", | ||
}, | ||
"gitHead": "5853742351a481cf20e487921a9595108dfee4bf" | ||
"gitHead": "4c82a5a363e2a337288c7f0b3d796627be3f193e" | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
18097
516