@jupyterlab/outputarea 4.0.0-beta.1 → 4.0.0-rc.0

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.
package/lib/widget.js CHANGED
@@ -48,7 +48,7 @@ const STDIN_PROMPT_CLASS = 'jp-Stdin-prompt';
48
48
  */
49
49
  const STDIN_INPUT_CLASS = 'jp-Stdin-input';
50
50
  /**
51
- * The overlay tha can be clicked to switch between output scrolling modes.
51
+ * The overlay that can be clicked to switch between output scrolling modes.
52
52
  */
53
53
  const OUTPUT_PROMPT_OVERLAY = 'jp-OutputArea-promptOverlay';
54
54
  /** ****************************************************************************
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/outputarea",
3
- "version": "4.0.0-beta.1",
3
+ "version": "4.0.0-rc.0",
4
4
  "description": "JupyterLab - Notebook Output Area",
5
5
  "homepage": "https://github.com/jupyterlab/jupyterlab",
6
6
  "bugs": {
@@ -37,33 +37,33 @@
37
37
  "docs": "typedoc src",
38
38
  "test": "jest",
39
39
  "test:cov": "jest --collect-coverage",
40
- "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
41
- "test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
40
+ "test:debug": "node --inspect-brk ../../node_modules/.bin/jest --runInBand",
41
+ "test:debug:watch": "node --inspect-brk ../../node_modules/.bin/jest --runInBand --watch",
42
42
  "watch": "tsc -b --watch"
43
43
  },
44
44
  "dependencies": {
45
- "@jupyterlab/apputils": "^4.0.0-beta.1",
46
- "@jupyterlab/nbformat": "^4.0.0-beta.1",
47
- "@jupyterlab/observables": "^5.0.0-beta.1",
48
- "@jupyterlab/rendermime": "^4.0.0-beta.1",
49
- "@jupyterlab/rendermime-interfaces": "^3.8.0-beta.1",
50
- "@jupyterlab/services": "^7.0.0-beta.1",
51
- "@jupyterlab/translation": "^4.0.0-beta.1",
45
+ "@jupyterlab/apputils": "^4.0.0-rc.0",
46
+ "@jupyterlab/nbformat": "^4.0.0-rc.0",
47
+ "@jupyterlab/observables": "^5.0.0-rc.0",
48
+ "@jupyterlab/rendermime": "^4.0.0-rc.0",
49
+ "@jupyterlab/rendermime-interfaces": "^3.8.0-rc.0",
50
+ "@jupyterlab/services": "^7.0.0-rc.0",
51
+ "@jupyterlab/translation": "^4.0.0-rc.0",
52
52
  "@lumino/algorithm": "^2.0.0",
53
- "@lumino/coreutils": "^2.0.0",
54
- "@lumino/disposable": "^2.0.0",
53
+ "@lumino/coreutils": "^2.1.1",
54
+ "@lumino/disposable": "^2.1.1",
55
55
  "@lumino/messaging": "^2.0.0",
56
56
  "@lumino/properties": "^2.0.0",
57
- "@lumino/signaling": "^2.0.0",
58
- "@lumino/widgets": "^2.0.1"
57
+ "@lumino/signaling": "^2.1.1",
58
+ "@lumino/widgets": "^2.1.1"
59
59
  },
60
60
  "devDependencies": {
61
- "@jupyterlab/testing": "^4.0.0-beta.1",
61
+ "@jupyterlab/testing": "^4.0.0-rc.0",
62
62
  "@types/jest": "^29.2.0",
63
63
  "jest": "^29.2.0",
64
64
  "rimraf": "~3.0.0",
65
- "typedoc": "~0.23.25",
66
- "typescript": "~5.0.2"
65
+ "typedoc": "~0.24.1",
66
+ "typescript": "~5.0.4"
67
67
  },
68
68
  "publishConfig": {
69
69
  "access": "public"
package/src/widget.ts CHANGED
@@ -75,7 +75,7 @@ const STDIN_PROMPT_CLASS = 'jp-Stdin-prompt';
75
75
  const STDIN_INPUT_CLASS = 'jp-Stdin-input';
76
76
 
77
77
  /**
78
- * The overlay tha can be clicked to switch between output scrolling modes.
78
+ * The overlay that can be clicked to switch between output scrolling modes.
79
79
  */
80
80
  const OUTPUT_PROMPT_OVERLAY = 'jp-OutputArea-promptOverlay';
81
81
 
package/style/base.css CHANGED
@@ -59,6 +59,10 @@
59
59
  -ms-user-select: text;
60
60
  }
61
61
 
62
+ .jp-OutputArea .jp-RenderedText {
63
+ padding-left: 1ch;
64
+ }
65
+
62
66
  /**
63
67
  * Prompt overlay.
64
68
  */
@@ -74,6 +78,11 @@
74
78
  .jp-OutputArea-promptOverlay:hover {
75
79
  background: var(--jp-layout-color2);
76
80
  box-shadow: inset 0 0 1px var(--jp-inverse-layout-color0);
81
+ cursor: zoom-out;
82
+ }
83
+
84
+ .jp-mod-outputsScrolled .jp-OutputArea-promptOverlay:hover {
85
+ cursor: zoom-in;
77
86
  }
78
87
 
79
88
  /**