@jupyterlab/application 4.2.0-alpha.1 → 4.2.0-alpha.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.
- package/package.json +11 -11
- package/style/buttons.css +10 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/application",
|
|
3
|
-
"version": "4.2.0-alpha.
|
|
3
|
+
"version": "4.2.0-alpha.2",
|
|
4
4
|
"description": "JupyterLab - Application",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
6
6
|
"bugs": {
|
|
@@ -43,15 +43,15 @@
|
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"@fortawesome/fontawesome-free": "^5.12.0",
|
|
46
|
-
"@jupyterlab/apputils": "^4.3.0-alpha.
|
|
47
|
-
"@jupyterlab/coreutils": "^6.2.0-alpha.
|
|
48
|
-
"@jupyterlab/docregistry": "^4.2.0-alpha.
|
|
49
|
-
"@jupyterlab/rendermime": "^4.2.0-alpha.
|
|
50
|
-
"@jupyterlab/rendermime-interfaces": "^3.10.0-alpha.
|
|
51
|
-
"@jupyterlab/services": "^7.2.0-alpha.
|
|
52
|
-
"@jupyterlab/statedb": "^4.2.0-alpha.
|
|
53
|
-
"@jupyterlab/translation": "^4.2.0-alpha.
|
|
54
|
-
"@jupyterlab/ui-components": "^4.2.0-alpha.
|
|
46
|
+
"@jupyterlab/apputils": "^4.3.0-alpha.2",
|
|
47
|
+
"@jupyterlab/coreutils": "^6.2.0-alpha.2",
|
|
48
|
+
"@jupyterlab/docregistry": "^4.2.0-alpha.2",
|
|
49
|
+
"@jupyterlab/rendermime": "^4.2.0-alpha.2",
|
|
50
|
+
"@jupyterlab/rendermime-interfaces": "^3.10.0-alpha.2",
|
|
51
|
+
"@jupyterlab/services": "^7.2.0-alpha.2",
|
|
52
|
+
"@jupyterlab/statedb": "^4.2.0-alpha.2",
|
|
53
|
+
"@jupyterlab/translation": "^4.2.0-alpha.2",
|
|
54
|
+
"@jupyterlab/ui-components": "^4.2.0-alpha.2",
|
|
55
55
|
"@lumino/algorithm": "^2.0.1",
|
|
56
56
|
"@lumino/application": "^2.3.0",
|
|
57
57
|
"@lumino/commands": "^2.2.0",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"@lumino/widgets": "^2.3.1"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@jupyterlab/testing": "^4.2.0-alpha.
|
|
67
|
+
"@jupyterlab/testing": "^4.2.0-alpha.2",
|
|
68
68
|
"@types/jest": "^29.2.0",
|
|
69
69
|
"jest": "^29.2.0",
|
|
70
70
|
"rimraf": "~5.0.5",
|
package/style/buttons.css
CHANGED
|
@@ -27,17 +27,17 @@ button:focus-visible {
|
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
button.jp-mod-styled.jp-mod-accept {
|
|
30
|
-
background: var(--jp-accept-color-normal, var(--md-blue-500));
|
|
30
|
+
background: var(--jp-accept-color-normal, var(--md-blue-500, #2196f3));
|
|
31
31
|
border: 0;
|
|
32
32
|
color: white;
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
button.jp-mod-styled.jp-mod-accept:hover {
|
|
36
|
-
background: var(--jp-accept-color-hover, var(--md-blue-600));
|
|
36
|
+
background: var(--jp-accept-color-hover, var(--md-blue-600, #1e88e5));
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
button.jp-mod-styled.jp-mod-accept:active {
|
|
40
|
-
background: var(--jp-accept-color-active, var(--md-blue-700));
|
|
40
|
+
background: var(--jp-accept-color-active, var(--md-blue-700, #1976d2));
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
button.jp-mod-styled.jp-mod-accept:focus-visible {
|
|
@@ -45,21 +45,21 @@ button.jp-mod-styled.jp-mod-accept:focus-visible {
|
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
button.jp-mod-styled.jp-mod-reject {
|
|
48
|
-
background: var(--jp-reject-color-normal, var(--md-grey-500));
|
|
48
|
+
background: var(--jp-reject-color-normal, var(--md-grey-500, #9e9e9e));
|
|
49
49
|
border: 0;
|
|
50
50
|
color: white;
|
|
51
51
|
}
|
|
52
52
|
|
|
53
53
|
button.jp-mod-styled.jp-mod-reject:hover {
|
|
54
|
-
background: var(--jp-reject-color-hover, var(--md-grey-600));
|
|
54
|
+
background: var(--jp-reject-color-hover, var(--md-grey-600, #757575));
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
button.jp-mod-styled.jp-mod-reject:active {
|
|
58
|
-
background: var(--jp-reject-color-active, var(--md-grey-700));
|
|
58
|
+
background: var(--jp-reject-color-active, var(--md-grey-700, #616161));
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
button.jp-mod-styled.jp-mod-reject:focus-visible {
|
|
62
|
-
outline: 1px solid var(--jp-reject-color-active, var(--md-grey-700));
|
|
62
|
+
outline: 1px solid var(--jp-reject-color-active, var(--md-grey-700, #616161));
|
|
63
63
|
}
|
|
64
64
|
|
|
65
65
|
button.jp-mod-styled.jp-mod-warn {
|
|
@@ -69,15 +69,15 @@ button.jp-mod-styled.jp-mod-warn {
|
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
button.jp-mod-styled.jp-mod-warn:hover {
|
|
72
|
-
background: var(--jp-warn-color-hover, var(--md-red-600));
|
|
72
|
+
background: var(--jp-warn-color-hover, var(--md-red-600, #e53935));
|
|
73
73
|
}
|
|
74
74
|
|
|
75
75
|
button.jp-mod-styled.jp-mod-warn:active {
|
|
76
|
-
background: var(--jp-warn-color-active, var(--md-red-700));
|
|
76
|
+
background: var(--jp-warn-color-active, var(--md-red-700, #d32f2f));
|
|
77
77
|
}
|
|
78
78
|
|
|
79
79
|
button.jp-mod-styled.jp-mod-warn:focus-visible {
|
|
80
|
-
outline: 1px solid var(--jp-warn-color-active, var(--md-red-700));
|
|
80
|
+
outline: 1px solid var(--jp-warn-color-active, var(--md-red-700, #d32f2f));
|
|
81
81
|
}
|
|
82
82
|
|
|
83
83
|
.jp-Button-flat {
|