@jupyterlab/application 4.6.0 → 4.7.0-alpha.0

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 +11 -11
  2. 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.0",
3
+ "version": "4.7.0-alpha.0",
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.0",
46
- "@jupyterlab/coreutils": "^6.6.0",
47
- "@jupyterlab/docregistry": "^4.6.0",
48
- "@jupyterlab/rendermime": "^4.6.0",
49
- "@jupyterlab/rendermime-interfaces": "^3.14.0",
50
- "@jupyterlab/services": "^7.6.0",
51
- "@jupyterlab/statedb": "^4.6.0",
52
- "@jupyterlab/translation": "^4.6.0",
53
- "@jupyterlab/ui-components": "^4.6.0",
45
+ "@jupyterlab/apputils": "^4.8.0-alpha.0",
46
+ "@jupyterlab/coreutils": "^6.7.0-alpha.0",
47
+ "@jupyterlab/docregistry": "^4.7.0-alpha.0",
48
+ "@jupyterlab/rendermime": "^4.7.0-alpha.0",
49
+ "@jupyterlab/rendermime-interfaces": "^3.15.0-alpha.0",
50
+ "@jupyterlab/services": "^7.7.0-alpha.0",
51
+ "@jupyterlab/statedb": "^4.7.0-alpha.0",
52
+ "@jupyterlab/translation": "^4.7.0-alpha.0",
53
+ "@jupyterlab/ui-components": "^4.7.0-alpha.0",
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.0",
66
+ "@jupyterlab/testing": "^4.7.0-alpha.0",
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
- .jp-ThemedContainer button {
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