@jupyterlab/help-extension 4.0.0-alpha.15 → 4.0.0-alpha.17
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/lib/index.js +1 -1
- package/package.json +8 -8
- package/style/base.css +2 -0
package/lib/index.js
CHANGED
|
@@ -66,7 +66,7 @@ const about = {
|
|
|
66
66
|
const externalLinks = (React.createElement("span", { className: "jp-About-externalLinks" },
|
|
67
67
|
React.createElement("a", { href: contributorsURL, target: "_blank", rel: "noopener noreferrer", className: "jp-Button-flat" }, trans.__('CONTRIBUTOR LIST')),
|
|
68
68
|
React.createElement("a", { href: jupyterURL, target: "_blank", rel: "noopener noreferrer", className: "jp-Button-flat" }, trans.__('ABOUT PROJECT JUPYTER'))));
|
|
69
|
-
const copyright = (React.createElement("span", { className: "jp-About-copyright" }, trans.__('© 2015-
|
|
69
|
+
const copyright = (React.createElement("span", { className: "jp-About-copyright" }, trans.__('© 2015-2023 Project Jupyter Contributors')));
|
|
70
70
|
const body = (React.createElement("div", { className: "jp-About-body" },
|
|
71
71
|
externalLinks,
|
|
72
72
|
copyright));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/help-extension",
|
|
3
|
-
"version": "4.0.0-alpha.
|
|
3
|
+
"version": "4.0.0-alpha.17",
|
|
4
4
|
"description": "JupyterLab - Help Extension",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
6
6
|
"bugs": {
|
|
@@ -37,13 +37,13 @@
|
|
|
37
37
|
"watch": "tsc -b --watch"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@jupyterlab/application": "^4.0.0-alpha.
|
|
41
|
-
"@jupyterlab/apputils": "^4.0.0-alpha.
|
|
42
|
-
"@jupyterlab/coreutils": "^6.0.0-alpha.
|
|
43
|
-
"@jupyterlab/mainmenu": "^4.0.0-alpha.
|
|
44
|
-
"@jupyterlab/services": "^7.0.0-alpha.
|
|
45
|
-
"@jupyterlab/translation": "^4.0.0-alpha.
|
|
46
|
-
"@jupyterlab/ui-components": "^4.0.0-alpha.
|
|
40
|
+
"@jupyterlab/application": "^4.0.0-alpha.17",
|
|
41
|
+
"@jupyterlab/apputils": "^4.0.0-alpha.17",
|
|
42
|
+
"@jupyterlab/coreutils": "^6.0.0-alpha.17",
|
|
43
|
+
"@jupyterlab/mainmenu": "^4.0.0-alpha.17",
|
|
44
|
+
"@jupyterlab/services": "^7.0.0-alpha.17",
|
|
45
|
+
"@jupyterlab/translation": "^4.0.0-alpha.17",
|
|
46
|
+
"@jupyterlab/ui-components": "^4.0.0-alpha.32",
|
|
47
47
|
"@lumino/coreutils": "^2.0.0-alpha.6",
|
|
48
48
|
"@lumino/signaling": "^2.0.0-alpha.6",
|
|
49
49
|
"@lumino/virtualdom": "^2.0.0-alpha.6",
|
package/style/base.css
CHANGED
|
@@ -118,11 +118,13 @@
|
|
|
118
118
|
text-transform: uppercase;
|
|
119
119
|
letter-spacing: 1px;
|
|
120
120
|
font-size: var(--jp-ui-font-size0);
|
|
121
|
+
color: var(--jp-ui-font-color0);
|
|
121
122
|
}
|
|
122
123
|
|
|
123
124
|
.jp-RenderedHTMLCommon.jp-Licenses-Filters ul,
|
|
124
125
|
.jp-RenderedHTMLCommon.jp-Licenses-Filters li {
|
|
125
126
|
list-style: none;
|
|
127
|
+
color: var(--jp-ui-font-color0);
|
|
126
128
|
}
|
|
127
129
|
|
|
128
130
|
.jp-Licenses-Filters input {
|