@jupyterlab/logconsole-extension 4.0.0-beta.0 → 4.0.0-beta.1

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 +12 -12
  2. package/style/base.css +2 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/logconsole-extension",
3
- "version": "4.0.0-beta.0",
3
+ "version": "4.0.0-beta.1",
4
4
  "description": "JupyterLab - Log Console Extension",
5
5
  "homepage": "https://github.com/jupyterlab/jupyterlab",
6
6
  "bugs": {
@@ -34,19 +34,19 @@
34
34
  "watch": "tsc -w --listEmittedFiles"
35
35
  },
36
36
  "dependencies": {
37
- "@jupyterlab/application": "^4.0.0-beta.0",
38
- "@jupyterlab/apputils": "^4.0.0-beta.0",
39
- "@jupyterlab/coreutils": "^6.0.0-beta.0",
40
- "@jupyterlab/logconsole": "^4.0.0-beta.0",
41
- "@jupyterlab/notebook": "^4.0.0-beta.0",
42
- "@jupyterlab/rendermime": "^4.0.0-beta.0",
43
- "@jupyterlab/settingregistry": "^4.0.0-beta.0",
44
- "@jupyterlab/statusbar": "^4.0.0-beta.0",
45
- "@jupyterlab/translation": "^4.0.0-beta.0",
46
- "@jupyterlab/ui-components": "^4.0.0-beta.0",
37
+ "@jupyterlab/application": "^4.0.0-beta.1",
38
+ "@jupyterlab/apputils": "^4.0.0-beta.1",
39
+ "@jupyterlab/coreutils": "^6.0.0-beta.1",
40
+ "@jupyterlab/logconsole": "^4.0.0-beta.1",
41
+ "@jupyterlab/notebook": "^4.0.0-beta.1",
42
+ "@jupyterlab/rendermime": "^4.0.0-beta.1",
43
+ "@jupyterlab/settingregistry": "^4.0.0-beta.1",
44
+ "@jupyterlab/statusbar": "^4.0.0-beta.1",
45
+ "@jupyterlab/translation": "^4.0.0-beta.1",
46
+ "@jupyterlab/ui-components": "^4.0.0-beta.1",
47
47
  "@lumino/coreutils": "^2.0.0",
48
48
  "@lumino/signaling": "^2.0.0",
49
- "@lumino/widgets": "^2.0.0",
49
+ "@lumino/widgets": "^2.0.1",
50
50
  "react": "^18.2.0"
51
51
  },
52
52
  "devDependencies": {
package/style/base.css CHANGED
@@ -26,10 +26,9 @@
26
26
  background-color: var(--jp-brand-color1);
27
27
  }
28
28
 
29
- /* Need to be very specific to override the typestyle styles on status bar components */
29
+ /* Override semi-transparent white with opaque white for higher contrast */
30
30
  .jp-LogConsoleStatusItem.jp-mod-selected,
31
- .jp-LogConsoleStatusItem.jp-mod-selected div,
32
- .jp-LogConsoleStatusItem.jp-mod-selected div span {
31
+ .jp-LogConsoleStatusItem.jp-mod-selected .jp-StatusBar-TextItem {
33
32
  color: white;
34
33
  }
35
34