@jupyterlab/htmlviewer 4.0.0-alpha.10 → 4.0.0-alpha.13

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 +10 -10
  2. package/style/base.css +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/htmlviewer",
3
- "version": "4.0.0-alpha.10",
3
+ "version": "4.0.0-alpha.13",
4
4
  "description": "A viewer for HTML documents.",
5
5
  "homepage": "https://github.com/jupyterlab/jupyterlab",
6
6
  "bugs": {
@@ -32,19 +32,19 @@
32
32
  "watch": "tsc -w --listEmittedFiles"
33
33
  },
34
34
  "dependencies": {
35
- "@jupyterlab/apputils": "^4.0.0-alpha.10",
36
- "@jupyterlab/coreutils": "^6.0.0-alpha.10",
37
- "@jupyterlab/docregistry": "^4.0.0-alpha.10",
38
- "@jupyterlab/translation": "^4.0.0-alpha.10",
39
- "@jupyterlab/ui-components": "^4.0.0-alpha.25",
40
- "@lumino/coreutils": "^1.12.0",
41
- "@lumino/signaling": "^1.10.1",
42
- "@lumino/widgets": "^1.32.0",
35
+ "@jupyterlab/apputils": "^4.0.0-alpha.13",
36
+ "@jupyterlab/coreutils": "^6.0.0-alpha.13",
37
+ "@jupyterlab/docregistry": "^4.0.0-alpha.13",
38
+ "@jupyterlab/translation": "^4.0.0-alpha.13",
39
+ "@jupyterlab/ui-components": "^4.0.0-alpha.28",
40
+ "@lumino/coreutils": "^2.0.0-alpha.1",
41
+ "@lumino/signaling": "^2.0.0-alpha.1",
42
+ "@lumino/widgets": "^2.0.0-alpha.1",
43
43
  "react": "^17.0.1"
44
44
  },
45
45
  "devDependencies": {
46
46
  "rimraf": "~3.0.0",
47
- "typescript": "~4.6.3"
47
+ "typescript": "~4.7.3"
48
48
  },
49
49
  "publishConfig": {
50
50
  "access": "public"
package/style/base.css CHANGED
@@ -17,7 +17,7 @@
17
17
  }
18
18
 
19
19
  /*
20
- When drag events occur, `p-mod-override-cursor` is added to the body.
20
+ When drag events occur, `lm-mod-override-cursor` is added to the body.
21
21
  Because iframes steal all cursor events, the following two rules are necessary
22
22
  to suppress pointer events while resize drags are occurring. There may be a
23
23
  better solution to this problem.