@jupyterlab/debugger 3.3.0-rc.0 → 3.3.2

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 +17 -17
  2. package/style/icons.css +12 -14
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/debugger",
3
- "version": "3.3.0-rc.0",
3
+ "version": "3.3.2",
4
4
  "description": "JupyterLab - Debugger Extension",
5
5
  "keywords": [
6
6
  "jupyter",
@@ -48,21 +48,21 @@
48
48
  "watch": "tsc -b --watch"
49
49
  },
50
50
  "dependencies": {
51
- "@jupyterlab/application": "^3.3.0-rc.0",
52
- "@jupyterlab/apputils": "^3.3.0-rc.0",
53
- "@jupyterlab/cells": "^3.3.0-rc.0",
54
- "@jupyterlab/codeeditor": "^3.3.0-rc.0",
55
- "@jupyterlab/codemirror": "^3.3.0-rc.0",
56
- "@jupyterlab/console": "^3.3.0-rc.0",
57
- "@jupyterlab/coreutils": "^5.3.0-rc.0",
58
- "@jupyterlab/docregistry": "^3.3.0-rc.0",
59
- "@jupyterlab/fileeditor": "^3.3.0-rc.0",
60
- "@jupyterlab/notebook": "^3.3.0-rc.0",
61
- "@jupyterlab/observables": "^4.3.0-rc.0",
62
- "@jupyterlab/rendermime": "^3.3.0-rc.0",
63
- "@jupyterlab/services": "^6.3.0-rc.0",
64
- "@jupyterlab/translation": "^3.3.0-rc.0",
65
- "@jupyterlab/ui-components": "^3.3.0-rc.0",
51
+ "@jupyterlab/application": "^3.3.2",
52
+ "@jupyterlab/apputils": "^3.3.2",
53
+ "@jupyterlab/cells": "^3.3.2",
54
+ "@jupyterlab/codeeditor": "^3.3.2",
55
+ "@jupyterlab/codemirror": "^3.3.2",
56
+ "@jupyterlab/console": "^3.3.2",
57
+ "@jupyterlab/coreutils": "^5.3.2",
58
+ "@jupyterlab/docregistry": "^3.3.2",
59
+ "@jupyterlab/fileeditor": "^3.3.2",
60
+ "@jupyterlab/notebook": "^3.3.2",
61
+ "@jupyterlab/observables": "^4.3.2",
62
+ "@jupyterlab/rendermime": "^3.3.2",
63
+ "@jupyterlab/services": "^6.3.2",
64
+ "@jupyterlab/translation": "^3.3.2",
65
+ "@jupyterlab/ui-components": "^3.3.2",
66
66
  "@lumino/algorithm": "^1.3.3",
67
67
  "@lumino/commands": "^1.12.0",
68
68
  "@lumino/coreutils": "^1.5.3",
@@ -79,7 +79,7 @@
79
79
  "devDependencies": {
80
80
  "@babel/core": "^7.10.2",
81
81
  "@babel/preset-env": "^7.10.2",
82
- "@jupyterlab/testutils": "^3.3.0-rc.0",
82
+ "@jupyterlab/testutils": "^3.3.2",
83
83
  "@types/codemirror": "^0.0.109",
84
84
  "@types/jest": "^26.0.10",
85
85
  "@types/react-dom": "^17.0.0",
package/style/icons.css CHANGED
@@ -12,26 +12,24 @@ button.jp-Button.bp3-button.bp3-minimal.jp-TreeView.jp-TableView {
12
12
  width: 35px;
13
13
  }
14
14
 
15
- button.jp-Button.bp3-button.bp3-minimal.jp-TreeView:hover {
16
- cursor: pointer;
17
- background-color: var(--jp-layout-color1);
18
- }
19
-
20
- button.jp-Button.bp3-button.bp3-minimal.jp-TableView:hover {
15
+ button.jp-Button.bp3-button.bp3-minimal.jp-TreeView:hover,
16
+ button.jp-Button.bp3-button.bp3-minimal.jp-TableView:hover,
17
+ button.jp-Button.jp-mod-minimal.jp-PauseOnExceptions:hover {
21
18
  cursor: pointer;
22
19
  background-color: var(--jp-layout-color1);
23
20
  }
24
21
 
25
- .jp-ViewModeSelected {
26
- background-color: var(--jp-layout-color1);
22
+ .jp-ViewModeSelected .jp-Button.bp3-button.bp3-minimal.jp-Button,
23
+ .jp-Button.bp3-button.bp3-minimal.jp-PauseOnExceptions.lm-mod-toggled {
24
+ background-color: var(--jp-inverse-layout-color3);
27
25
  }
28
26
 
29
- /* Pause on exceptions */
30
- button.jp-Button.jp-mod-minimal.jp-PauseOnExceptions:hover {
31
- cursor: pointer;
32
- background-color: var(--jp-layout-color1);
27
+ .jp-ViewModeSelected .jp-Button.bp3-button.bp3-minimal.jp-Button:hover,
28
+ .jp-Button.bp3-button.bp3-minimal.jp-PauseOnExceptions.lm-mod-toggled:hover {
29
+ background-color: var(--jp-inverse-layout-color4);
33
30
  }
34
31
 
35
- button.jp-Button.jp-PauseOnExceptions.lm-mod-toggled {
36
- background-color: var(--jp-layout-color1);
32
+ .jp-ViewModeSelected .jp-Button .jp-icon3[fill],
33
+ .jp-PauseOnExceptions.lm-mod-toggled .jp-icon3[fill] {
34
+ fill: var(--jp-layout-color1);
37
35
  }