@jupyterlab/apputils-extension 4.5.4 → 4.5.5

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 +14 -14
  2. package/schema/themes.json +7 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/apputils-extension",
3
- "version": "4.5.4",
3
+ "version": "4.5.5",
4
4
  "description": "JupyterLab - Application Utilities Extension",
5
5
  "homepage": "https://github.com/jupyterlab/jupyterlab",
6
6
  "bugs": {
@@ -37,19 +37,19 @@
37
37
  "watch": "tsc -b --watch"
38
38
  },
39
39
  "dependencies": {
40
- "@jupyterlab/application": "^4.5.4",
41
- "@jupyterlab/apputils": "^4.6.4",
42
- "@jupyterlab/coreutils": "^6.5.4",
43
- "@jupyterlab/docregistry": "^4.5.4",
44
- "@jupyterlab/mainmenu": "^4.5.4",
45
- "@jupyterlab/rendermime-interfaces": "^3.13.4",
46
- "@jupyterlab/services": "^7.5.4",
47
- "@jupyterlab/settingregistry": "^4.5.4",
48
- "@jupyterlab/statedb": "^4.5.4",
49
- "@jupyterlab/statusbar": "^4.5.4",
50
- "@jupyterlab/translation": "^4.5.4",
51
- "@jupyterlab/ui-components": "^4.5.4",
52
- "@jupyterlab/workspaces": "^4.5.4",
40
+ "@jupyterlab/application": "^4.5.5",
41
+ "@jupyterlab/apputils": "^4.6.5",
42
+ "@jupyterlab/coreutils": "^6.5.5",
43
+ "@jupyterlab/docregistry": "^4.5.5",
44
+ "@jupyterlab/mainmenu": "^4.5.5",
45
+ "@jupyterlab/rendermime-interfaces": "^3.13.5",
46
+ "@jupyterlab/services": "^7.5.5",
47
+ "@jupyterlab/settingregistry": "^4.5.5",
48
+ "@jupyterlab/statedb": "^4.5.5",
49
+ "@jupyterlab/statusbar": "^4.5.5",
50
+ "@jupyterlab/translation": "^4.5.5",
51
+ "@jupyterlab/ui-components": "^4.5.5",
52
+ "@jupyterlab/workspaces": "^4.5.5",
53
53
  "@lumino/algorithm": "^2.0.4",
54
54
  "@lumino/commands": "^2.3.3",
55
55
  "@lumino/coreutils": "^2.2.2",
@@ -74,33 +74,33 @@
74
74
  "cssOverrides": {
75
75
  "type": "object",
76
76
  "additionalProperties": false,
77
- "description": "The description field of each item is the CSS property that will be used to validate an override's value",
77
+ "description": "CSS override properties for theming",
78
78
  "properties": {
79
79
  "code-font-family": {
80
80
  "type": ["string", "null"],
81
- "description": "font-family"
81
+ "description": "Font family used for code"
82
82
  },
83
83
  "code-font-size": {
84
84
  "type": ["string", "null"],
85
- "description": "font-size"
85
+ "description": "Font size used for code"
86
86
  },
87
87
 
88
88
  "content-font-family": {
89
89
  "type": ["string", "null"],
90
- "description": "font-family"
90
+ "description": "Font family used for content"
91
91
  },
92
92
  "content-font-size1": {
93
93
  "type": ["string", "null"],
94
- "description": "font-size"
94
+ "description": "Font size used for content"
95
95
  },
96
96
 
97
97
  "ui-font-family": {
98
98
  "type": ["string", "null"],
99
- "description": "font-family"
99
+ "description": "Font family used for the UI"
100
100
  },
101
101
  "ui-font-size1": {
102
102
  "type": ["string", "null"],
103
- "description": "font-size"
103
+ "description": "Font size used for the UI"
104
104
  }
105
105
  }
106
106
  }