Notebook Views Models (#13884)

* Add notebook editor

Introduce notebook editor component to allow for separate notebook displays in order to accomodate notebook views

* Localize notebook views configuration title

* Refactor view mode and remove the views configuration while it is unused

* Only fire view mode changed event when the value has been changed

* Remove notebook views contribution

* Add metadata capabilities

* Notebook views definitions

* Add notebook views models

* Views test

* Rename type arguments

* Additional tests

* Fix unused import

* Update resize cell test
This commit is contained in:
Daniel Grajeda
2021-01-05 16:28:30 -07:00
committed by GitHub
parent ab6d11596e
commit 16943c68c6
12 changed files with 867 additions and 0 deletions

View File

@@ -100,6 +100,12 @@ export class NotebookModelStub implements INotebookModel {
set viewMode(mode: ViewMode) {
throw new Error('Method not implemented.');
}
setMetaValue(key: string, value: any) {
throw new Error('Method not implemented.');
}
getMetaValue(key: string) {
throw new Error('Method not implemented.');
}
addCell(cellType: CellType, index?: number): void {
throw new Error('Method not implemented.');
}