@jupyterlab/csvviewer 4.0.0-alpha.3 → 4.0.0-alpha.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +9 -9
  2. package/style/base.css +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/csvviewer",
3
- "version": "4.0.0-alpha.3",
3
+ "version": "4.0.0-alpha.6",
4
4
  "description": "JupyterLab - CSV Widget",
5
5
  "homepage": "https://github.com/jupyterlab/jupyterlab",
6
6
  "bugs": {
@@ -41,20 +41,20 @@
41
41
  "watch": "tsc -b --watch"
42
42
  },
43
43
  "dependencies": {
44
- "@jupyterlab/coreutils": "^6.0.0-alpha.3",
45
- "@jupyterlab/docregistry": "^4.0.0-alpha.3",
46
- "@jupyterlab/translation": "^4.0.0-alpha.3",
47
- "@jupyterlab/ui-components": "^4.0.0-alpha.18",
44
+ "@jupyterlab/coreutils": "^6.0.0-alpha.6",
45
+ "@jupyterlab/docregistry": "^4.0.0-alpha.6",
46
+ "@jupyterlab/translation": "^4.0.0-alpha.6",
47
+ "@jupyterlab/ui-components": "^4.0.0-alpha.21",
48
48
  "@lumino/algorithm": "^1.9.1",
49
- "@lumino/coreutils": "^1.11.1",
50
- "@lumino/datagrid": "^0.34.0",
49
+ "@lumino/coreutils": "^1.12.0",
50
+ "@lumino/datagrid": "^0.35.1",
51
51
  "@lumino/disposable": "^1.10.1",
52
52
  "@lumino/messaging": "^1.10.1",
53
53
  "@lumino/signaling": "^1.10.1",
54
- "@lumino/widgets": "^1.30.0"
54
+ "@lumino/widgets": "^1.31.1"
55
55
  },
56
56
  "devDependencies": {
57
- "@jupyterlab/testutils": "^4.0.0-alpha.3",
57
+ "@jupyterlab/testutils": "^4.0.0-alpha.6",
58
58
  "@types/jest": "^26.0.10",
59
59
  "canvas": "^2.6.1",
60
60
  "csv-spectrum": "^1.0.0",
package/style/base.css CHANGED
@@ -7,6 +7,7 @@
7
7
  display: flex;
8
8
  flex-direction: column;
9
9
  outline: none;
10
+
10
11
  /* This is needed so that all font sizing of children done in ems is
11
12
  * relative to this base size */
12
13
  font-size: var(--jp-ui-font-size1);