mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
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:
@@ -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.');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user