@jupyterlab/csvviewer
Advanced tools
Comparing version 1.0.0-alpha.8 to 1.0.0-alpha.9
@@ -8,4 +8,6 @@ // Copyright (c) Jupyter Development Team. | ||
if (s != null && typeof Object.getOwnPropertySymbols === "function") | ||
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) if (e.indexOf(p[i]) < 0) | ||
t[p[i]] = s[p[i]]; | ||
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { | ||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) | ||
t[p[i]] = s[p[i]]; | ||
} | ||
return t; | ||
@@ -12,0 +14,0 @@ }; |
{ | ||
"name": "@jupyterlab/csvviewer", | ||
"version": "1.0.0-alpha.8", | ||
"version": "1.0.0-alpha.9", | ||
"description": "JupyterLab - CSV Widget", | ||
@@ -34,5 +34,5 @@ "homepage": "https://github.com/jupyterlab/jupyterlab", | ||
"dependencies": { | ||
"@jupyterlab/apputils": "^1.0.0-alpha.8", | ||
"@jupyterlab/coreutils": "^3.0.0-alpha.8", | ||
"@jupyterlab/docregistry": "^1.0.0-alpha.8", | ||
"@jupyterlab/apputils": "^1.0.0-alpha.9", | ||
"@jupyterlab/coreutils": "^3.0.0-alpha.9", | ||
"@jupyterlab/docregistry": "^1.0.0-alpha.9", | ||
"@phosphor/algorithm": "^1.1.2", | ||
@@ -44,3 +44,3 @@ "@phosphor/coreutils": "^1.3.0", | ||
"@phosphor/signaling": "^1.2.2", | ||
"@phosphor/widgets": "^1.6.0" | ||
"@phosphor/widgets": "^1.7.0" | ||
}, | ||
@@ -50,3 +50,3 @@ "devDependencies": { | ||
"typedoc": "^0.14.2", | ||
"typescript": "~3.4.3" | ||
"typescript": "~3.5.1" | ||
}, | ||
@@ -56,3 +56,3 @@ "publishConfig": { | ||
}, | ||
"gitHead": "ac27c477b689240fe0e3e11ff2e3b4984687a899" | ||
"gitHead": "3ae93547a9b04453f82bbd883931ac1866f2a08b" | ||
} |
76805
1967