@jupyterlab/application 4.6.0 → 4.6.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.
- package/package.json +11 -11
- package/style/buttons.css +7 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/application",
|
|
3
|
-
"version": "4.6.
|
|
3
|
+
"version": "4.6.1",
|
|
4
4
|
"description": "JupyterLab - Application",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
6
6
|
"bugs": {
|
|
@@ -42,15 +42,15 @@
|
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@fortawesome/fontawesome-free": "^5.12.0",
|
|
45
|
-
"@jupyterlab/apputils": "^4.7.
|
|
46
|
-
"@jupyterlab/coreutils": "^6.6.
|
|
47
|
-
"@jupyterlab/docregistry": "^4.6.
|
|
48
|
-
"@jupyterlab/rendermime": "^4.6.
|
|
49
|
-
"@jupyterlab/rendermime-interfaces": "^3.14.
|
|
50
|
-
"@jupyterlab/services": "^7.6.
|
|
51
|
-
"@jupyterlab/statedb": "^4.6.
|
|
52
|
-
"@jupyterlab/translation": "^4.6.
|
|
53
|
-
"@jupyterlab/ui-components": "^4.6.
|
|
45
|
+
"@jupyterlab/apputils": "^4.7.1",
|
|
46
|
+
"@jupyterlab/coreutils": "^6.6.1",
|
|
47
|
+
"@jupyterlab/docregistry": "^4.6.1",
|
|
48
|
+
"@jupyterlab/rendermime": "^4.6.1",
|
|
49
|
+
"@jupyterlab/rendermime-interfaces": "^3.14.1",
|
|
50
|
+
"@jupyterlab/services": "^7.6.1",
|
|
51
|
+
"@jupyterlab/statedb": "^4.6.1",
|
|
52
|
+
"@jupyterlab/translation": "^4.6.1",
|
|
53
|
+
"@jupyterlab/ui-components": "^4.6.1",
|
|
54
54
|
"@lumino/algorithm": "^2.0.4",
|
|
55
55
|
"@lumino/application": "^2.4.9",
|
|
56
56
|
"@lumino/commands": "^2.3.3",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"@lumino/widgets": "^2.8.0"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@jupyterlab/testing": "^4.6.
|
|
66
|
+
"@jupyterlab/testing": "^4.6.1",
|
|
67
67
|
"@types/jest": "^29.2.0",
|
|
68
68
|
"jest": "^29.2.0",
|
|
69
69
|
"rimraf": "~5.0.5",
|
package/style/buttons.css
CHANGED
|
@@ -17,8 +17,14 @@
|
|
|
17
17
|
| Distributed under the terms of the Modified BSD License.
|
|
18
18
|
|----------------------------------------------------------------------------*/
|
|
19
19
|
|
|
20
|
-
|
|
20
|
+
/* Use :where() so this rule has specificity (0,0,1), lower than Font
|
|
21
|
+
* Awesome's `.fa` and friends who have (0,1,0), so that `<button class="fa">`
|
|
22
|
+
* keep their glyph font while plain buttons still get the UI font. */
|
|
23
|
+
:where(.jp-ThemedContainer) button {
|
|
21
24
|
font-family: var(--jp-ui-font-family);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.jp-ThemedContainer button {
|
|
22
28
|
border-radius: var(--jp-border-radius);
|
|
23
29
|
}
|
|
24
30
|
|