@jupyterlab/rendermime 4.4.2 → 4.4.3

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 +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/rendermime",
3
- "version": "4.4.2",
3
+ "version": "4.4.3",
4
4
  "description": "JupyterLab - RenderMime",
5
5
  "homepage": "https://github.com/jupyterlab/jupyterlab",
6
6
  "bugs": {
@@ -41,13 +41,13 @@
41
41
  "watch": "tsc -b --watch"
42
42
  },
43
43
  "dependencies": {
44
- "@jupyterlab/apputils": "^4.5.2",
45
- "@jupyterlab/coreutils": "^6.4.2",
46
- "@jupyterlab/nbformat": "^4.4.2",
47
- "@jupyterlab/observables": "^5.4.2",
48
- "@jupyterlab/rendermime-interfaces": "^3.12.2",
49
- "@jupyterlab/services": "^7.4.2",
50
- "@jupyterlab/translation": "^4.4.2",
44
+ "@jupyterlab/apputils": "^4.5.3",
45
+ "@jupyterlab/coreutils": "^6.4.3",
46
+ "@jupyterlab/nbformat": "^4.4.3",
47
+ "@jupyterlab/observables": "^5.4.3",
48
+ "@jupyterlab/rendermime-interfaces": "^3.12.3",
49
+ "@jupyterlab/services": "^7.4.3",
50
+ "@jupyterlab/translation": "^4.4.3",
51
51
  "@lumino/coreutils": "^2.2.1",
52
52
  "@lumino/messaging": "^2.0.3",
53
53
  "@lumino/signaling": "^2.1.4",
@@ -55,7 +55,7 @@
55
55
  "lodash.escape": "^4.0.1"
56
56
  },
57
57
  "devDependencies": {
58
- "@jupyterlab/testing": "^4.4.2",
58
+ "@jupyterlab/testing": "^4.4.3",
59
59
  "@types/jest": "^29.2.0",
60
60
  "@types/lodash.escape": "^4.0.6",
61
61
  "fs-extra": "^10.1.0",
package/style/base.css CHANGED
@@ -213,6 +213,11 @@
213
213
  padding-top: var(--jp-code-padding);
214
214
  }
215
215
 
216
+ /* fix illegible yellow text with yellow background in exception stacktrace */
217
+ .jp-RenderedText pre .ansi-yellow-bg.ansi-yellow-fg {
218
+ color: black;
219
+ }
220
+
216
221
  /*-----------------------------------------------------------------------------
217
222
  | RenderedLatex
218
223
  |----------------------------------------------------------------------------*/