@jupyterlab/observables
Advanced tools
Comparing version 2.2.0-alpha.8 to 2.2.0-alpha.9
@@ -219,4 +219,8 @@ import { IIterator, IterableOrArrayLike } from '@phosphor/algorithm'; | ||
*/ | ||
type ChangeType = 'add' | ||
type ChangeType = | ||
/** | ||
* Item(s) were added to the list. | ||
*/ | ||
'add' | ||
/** | ||
* An item was moved within the list. | ||
@@ -223,0 +227,0 @@ */ |
@@ -84,4 +84,8 @@ import { IDisposable } from '@phosphor/disposable'; | ||
*/ | ||
type ChangeType = 'add' | ||
type ChangeType = | ||
/** | ||
* An entry was added. | ||
*/ | ||
'add' | ||
/** | ||
* An entry was removed. | ||
@@ -88,0 +92,0 @@ */ |
@@ -52,4 +52,8 @@ import { IDisposable } from '@phosphor/disposable'; | ||
*/ | ||
type ChangeType = 'insert' | ||
type ChangeType = | ||
/** | ||
* Text was inserted. | ||
*/ | ||
'insert' | ||
/** | ||
* Text was removed. | ||
@@ -56,0 +60,0 @@ */ |
{ | ||
"name": "@jupyterlab/observables", | ||
"version": "2.2.0-alpha.8", | ||
"version": "2.2.0-alpha.9", | ||
"description": "Data structures which may be observed for changes.", | ||
@@ -41,3 +41,3 @@ "homepage": "https://github.com/jupyterlab/jupyterlab", | ||
"typedoc": "^0.14.2", | ||
"typescript": "~3.4.3" | ||
"typescript": "~3.5.1" | ||
}, | ||
@@ -47,3 +47,3 @@ "publishConfig": { | ||
}, | ||
"gitHead": "ac27c477b689240fe0e3e11ff2e3b4984687a899" | ||
"gitHead": "3ae93547a9b04453f82bbd883931ac1866f2a08b" | ||
} |
75139
2763