@jupyterlab/docmanager
Advanced tools
Comparing version 2.0.0-alpha.1 to 2.0.0-alpha.2
import { Contents } from '@jupyterlab/services'; | ||
import { JSONObject } from '@phosphor/coreutils'; | ||
import { JSONObject } from '@lumino/coreutils'; | ||
import { IDocumentManager } from './'; | ||
@@ -4,0 +4,0 @@ /** |
@@ -5,3 +5,3 @@ // Copyright (c) Jupyter Development Team. | ||
import { PathExt } from '@jupyterlab/coreutils'; | ||
import { Widget } from '@phosphor/widgets'; | ||
import { Widget } from '@lumino/widgets'; | ||
/** | ||
@@ -8,0 +8,0 @@ * The class name added to file dialogs. |
import { DocumentRegistry, IDocumentWidget } from '@jupyterlab/docregistry'; | ||
import { Contents, Kernel, ServiceManager } from '@jupyterlab/services'; | ||
import { IDisposable } from '@phosphor/disposable'; | ||
import { ISignal } from '@phosphor/signaling'; | ||
import { Widget } from '@phosphor/widgets'; | ||
import { IDisposable } from '@lumino/disposable'; | ||
import { ISignal } from '@lumino/signaling'; | ||
import { Widget } from '@lumino/widgets'; | ||
import { IDocumentManager } from './tokens'; | ||
@@ -33,15 +33,17 @@ /** | ||
*/ | ||
readonly activateRequested: ISignal<this, string>; | ||
get activateRequested(): ISignal<this, string>; | ||
/** | ||
* Whether to autosave documents. | ||
*/ | ||
autosave: boolean; | ||
get autosave(): boolean; | ||
set autosave(value: boolean); | ||
/** | ||
* Determines the time interval for autosave in seconds. | ||
*/ | ||
autosaveInterval: number; | ||
get autosaveInterval(): number; | ||
set autosaveInterval(value: number); | ||
/** | ||
* Get whether the document manager has been disposed. | ||
*/ | ||
readonly isDisposed: boolean; | ||
get isDisposed(): boolean; | ||
/** | ||
@@ -48,0 +50,0 @@ * Dispose of the resources held by the document manager. |
// Copyright (c) Jupyter Development Team. | ||
// Distributed under the terms of the Modified BSD License. | ||
import { PathExt } from '@jupyterlab/coreutils'; | ||
import { UUID } from '@phosphor/coreutils'; | ||
import { UUID } from '@lumino/coreutils'; | ||
import { Context } from '@jupyterlab/docregistry'; | ||
import { ArrayExt, find } from '@phosphor/algorithm'; | ||
import { AttachedProperty } from '@phosphor/properties'; | ||
import { Signal } from '@phosphor/signaling'; | ||
import { ArrayExt, find } from '@lumino/algorithm'; | ||
import { AttachedProperty } from '@lumino/properties'; | ||
import { Signal } from '@lumino/signaling'; | ||
import { SaveHandler } from './savehandler'; | ||
@@ -10,0 +10,0 @@ import { DocumentWidgetManager } from './widgetmanager'; |
/// <reference types="react" /> | ||
import { VDomModel, VDomRenderer } from '@jupyterlab/apputils'; | ||
import { IDocumentManager } from './tokens'; | ||
import { Widget } from '@phosphor/widgets'; | ||
import { Widget } from '@lumino/widgets'; | ||
/** | ||
@@ -37,11 +37,12 @@ * A status bar item for the current file path (or activity name). | ||
*/ | ||
readonly path: string; | ||
get path(): string; | ||
/** | ||
* The name of the current activity. | ||
*/ | ||
readonly name: string; | ||
get name(): string; | ||
/** | ||
* The current widget for the application. | ||
*/ | ||
widget: Widget | null; | ||
get widget(): Widget | null; | ||
set widget(widget: Widget | null); | ||
/** | ||
@@ -48,0 +49,0 @@ * React to a title change for the current widget. |
@@ -1,2 +0,2 @@ | ||
import { IDisposable } from '@phosphor/disposable'; | ||
import { IDisposable } from '@lumino/disposable'; | ||
import { DocumentRegistry } from '@jupyterlab/docregistry'; | ||
@@ -17,11 +17,12 @@ /** | ||
*/ | ||
saveInterval: number; | ||
get saveInterval(): number; | ||
set saveInterval(value: number); | ||
/** | ||
* Get whether the handler is active. | ||
*/ | ||
readonly isActive: boolean; | ||
get isActive(): boolean; | ||
/** | ||
* Get whether the save handler is disposed. | ||
*/ | ||
readonly isDisposed: boolean; | ||
get isDisposed(): boolean; | ||
/** | ||
@@ -28,0 +29,0 @@ * Dispose of the resources used by the save handler. |
// Copyright (c) Jupyter Development Team. | ||
// Distributed under the terms of the Modified BSD License. | ||
import { Signal } from '@phosphor/signaling'; | ||
import { Signal } from '@lumino/signaling'; | ||
/** | ||
@@ -5,0 +5,0 @@ * A class that manages the auto saving of a document. |
@@ -5,3 +5,3 @@ /// <reference types="react" /> | ||
import { DocumentRegistry } from '@jupyterlab/docregistry'; | ||
import { Widget } from '@phosphor/widgets'; | ||
import { Widget } from '@lumino/widgets'; | ||
/** | ||
@@ -36,3 +36,3 @@ * A VDomRenderer for a saving status item. | ||
*/ | ||
readonly status: DocumentRegistry.SaveState | null; | ||
get status(): DocumentRegistry.SaveState | null; | ||
/** | ||
@@ -43,3 +43,4 @@ * The current widget for the model. Any widget can be assigned, | ||
*/ | ||
widget: Widget | null; | ||
get widget(): Widget | null; | ||
set widget(widget: Widget | null); | ||
/** | ||
@@ -46,0 +47,0 @@ * React to a saving status change from the current document widget. |
@@ -1,5 +0,5 @@ | ||
import { Token } from '@phosphor/coreutils'; | ||
import { IDisposable } from '@phosphor/disposable'; | ||
import { ISignal } from '@phosphor/signaling'; | ||
import { Widget } from '@phosphor/widgets'; | ||
import { Token } from '@lumino/coreutils'; | ||
import { IDisposable } from '@lumino/disposable'; | ||
import { ISignal } from '@lumino/signaling'; | ||
import { Widget } from '@lumino/widgets'; | ||
import { DocumentRegistry, IDocumentWidget } from '@jupyterlab/docregistry'; | ||
@@ -6,0 +6,0 @@ import { Contents, Kernel, ServiceManager } from '@jupyterlab/services'; |
// Copyright (c) Jupyter Development Team. | ||
// Distributed under the terms of the Modified BSD License. | ||
import { Token } from '@phosphor/coreutils'; | ||
import { Token } from '@lumino/coreutils'; | ||
/* tslint:disable */ | ||
@@ -5,0 +5,0 @@ /** |
@@ -1,5 +0,5 @@ | ||
import { IDisposable } from '@phosphor/disposable'; | ||
import { IMessageHandler, Message } from '@phosphor/messaging'; | ||
import { ISignal } from '@phosphor/signaling'; | ||
import { Widget } from '@phosphor/widgets'; | ||
import { IDisposable } from '@lumino/disposable'; | ||
import { IMessageHandler, Message } from '@lumino/messaging'; | ||
import { ISignal } from '@lumino/signaling'; | ||
import { Widget } from '@lumino/widgets'; | ||
import { DocumentRegistry, IDocumentWidget } from '@jupyterlab/docregistry'; | ||
@@ -17,7 +17,7 @@ /** | ||
*/ | ||
readonly activateRequested: ISignal<this, string>; | ||
get activateRequested(): ISignal<this, string>; | ||
/** | ||
* Test whether the document widget manager is disposed. | ||
*/ | ||
readonly isDisposed: boolean; | ||
get isDisposed(): boolean; | ||
/** | ||
@@ -24,0 +24,0 @@ * Dispose of the resources used by the widget manager. |
// Copyright (c) Jupyter Development Team. | ||
// Distributed under the terms of the Modified BSD License. | ||
import { ArrayExt, each, map, find, filter, toArray } from '@phosphor/algorithm'; | ||
import { DisposableSet } from '@phosphor/disposable'; | ||
import { MessageLoop } from '@phosphor/messaging'; | ||
import { AttachedProperty } from '@phosphor/properties'; | ||
import { Signal } from '@phosphor/signaling'; | ||
import { ArrayExt, each, map, find, filter, toArray } from '@lumino/algorithm'; | ||
import { DisposableSet } from '@lumino/disposable'; | ||
import { MessageLoop } from '@lumino/messaging'; | ||
import { AttachedProperty } from '@lumino/properties'; | ||
import { Signal } from '@lumino/signaling'; | ||
import { Time } from '@jupyterlab/coreutils'; | ||
@@ -9,0 +9,0 @@ import { showDialog, Dialog } from '@jupyterlab/apputils'; |
{ | ||
"name": "@jupyterlab/docmanager", | ||
"version": "2.0.0-alpha.1", | ||
"version": "2.0.0-alpha.2", | ||
"description": "JupyterLab - Document Manager", | ||
@@ -33,3 +33,3 @@ "homepage": "https://github.com/jupyterlab/jupyterlab", | ||
"clean": "rimraf lib", | ||
"docs": "typedoc --options tdoptions.json --theme ../../typedoc-theme src", | ||
"docs": "typedoc src", | ||
"prepublishOnly": "npm run build", | ||
@@ -39,14 +39,14 @@ "watch": "tsc -b --watch" | ||
"dependencies": { | ||
"@jupyterlab/apputils": "^2.0.0-alpha.1", | ||
"@jupyterlab/coreutils": "^4.0.0-alpha.1", | ||
"@jupyterlab/docregistry": "^2.0.0-alpha.1", | ||
"@jupyterlab/services": "^5.0.0-alpha.1", | ||
"@jupyterlab/statusbar": "^2.0.0-alpha.1", | ||
"@phosphor/algorithm": "^1.2.0", | ||
"@phosphor/coreutils": "^1.3.1", | ||
"@phosphor/disposable": "^1.3.0", | ||
"@phosphor/messaging": "^1.3.0", | ||
"@phosphor/properties": "^1.1.3", | ||
"@phosphor/signaling": "^1.3.0", | ||
"@phosphor/widgets": "^1.9.0", | ||
"@jupyterlab/apputils": "^2.0.0-alpha.2", | ||
"@jupyterlab/coreutils": "^4.0.0-alpha.2", | ||
"@jupyterlab/docregistry": "^2.0.0-alpha.2", | ||
"@jupyterlab/services": "^5.0.0-alpha.2", | ||
"@jupyterlab/statusbar": "^2.0.0-alpha.2", | ||
"@lumino/algorithm": "^1.2.0", | ||
"@lumino/coreutils": "^1.3.1", | ||
"@lumino/disposable": "^1.3.0", | ||
"@lumino/messaging": "^1.3.0", | ||
"@lumino/properties": "^1.1.3", | ||
"@lumino/signaling": "^1.3.0", | ||
"@lumino/widgets": "^1.9.0", | ||
"react": "~16.8.4" | ||
@@ -56,4 +56,4 @@ }, | ||
"rimraf": "~2.6.2", | ||
"typedoc": "^0.14.2", | ||
"typescript": "~3.5.1" | ||
"typedoc": "^0.15.2", | ||
"typescript": "~3.7.2" | ||
}, | ||
@@ -63,3 +63,3 @@ "publishConfig": { | ||
}, | ||
"gitHead": "28adfa9819d61e80c2cce55fb19d9eb03ac52c10" | ||
"gitHead": "235d69ceefe333d3ba9714d016cf0364b1d8e0f6" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
108611
2282
+ Added@lumino/algorithm@^1.2.0
+ Added@lumino/coreutils@^1.3.1
+ Added@lumino/disposable@^1.3.0
+ Added@lumino/messaging@^1.3.0
+ Added@lumino/properties@^1.1.3
+ Added@lumino/signaling@^1.3.0
+ Added@lumino/widgets@^1.9.0
- Removed@phosphor/algorithm@^1.2.0
- Removed@phosphor/coreutils@^1.3.1
- Removed@phosphor/disposable@^1.3.0
- Removed@phosphor/messaging@^1.3.0
- Removed@phosphor/properties@^1.1.3
- Removed@phosphor/signaling@^1.3.0
- Removed@phosphor/widgets@^1.9.0
- Removed@phosphor/algorithm@1.2.0(transitive)
- Removed@phosphor/collections@1.2.0(transitive)
- Removed@phosphor/commands@1.7.2(transitive)
- Removed@phosphor/coreutils@1.3.1(transitive)
- Removed@phosphor/disposable@1.3.1(transitive)
- Removed@phosphor/domutils@1.1.4(transitive)
- Removed@phosphor/dragdrop@1.4.1(transitive)
- Removed@phosphor/keyboard@1.1.3(transitive)
- Removed@phosphor/messaging@1.3.0(transitive)
- Removed@phosphor/properties@1.1.3(transitive)
- Removed@phosphor/signaling@1.3.1(transitive)
- Removed@phosphor/virtualdom@1.2.0(transitive)
- Removed@phosphor/widgets@1.9.3(transitive)