@jupyterlab/help-extension 4.7.0-alpha.1 → 4.7.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/lib/index.js +1 -1
- package/package.json +8 -8
- package/src/index.tsx +1 -1
package/lib/index.js
CHANGED
|
@@ -132,7 +132,7 @@ const about = {
|
|
|
132
132
|
const externalLinks = (React.createElement("span", { className: "jp-About-externalLinks" },
|
|
133
133
|
React.createElement("a", { href: contributorsURL, target: "_blank", rel: "noopener noreferrer", className: "jp-Button-flat" }, trans.__('CONTRIBUTOR LIST')),
|
|
134
134
|
React.createElement("a", { href: jupyterURL, target: "_blank", rel: "noopener noreferrer", className: "jp-Button-flat" }, trans.__('ABOUT PROJECT JUPYTER'))));
|
|
135
|
-
const copyright = (React.createElement("span", { className: "jp-About-copyright" }, trans.__('© %1-%2 Project Jupyter Contributors', 2015,
|
|
135
|
+
const copyright = (React.createElement("span", { className: "jp-About-copyright" }, trans.__('© %1-%2 Project Jupyter Contributors', 2015, 2026)));
|
|
136
136
|
const body = (React.createElement("div", { className: "jp-About-body" },
|
|
137
137
|
externalLinks,
|
|
138
138
|
copyright));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/help-extension",
|
|
3
|
-
"version": "4.7.0-alpha.
|
|
3
|
+
"version": "4.7.0-alpha.2",
|
|
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.7.0-alpha.
|
|
41
|
-
"@jupyterlab/apputils": "^4.8.0-alpha.
|
|
42
|
-
"@jupyterlab/coreutils": "^6.7.0-alpha.
|
|
43
|
-
"@jupyterlab/mainmenu": "^4.7.0-alpha.
|
|
44
|
-
"@jupyterlab/services": "^7.7.0-alpha.
|
|
45
|
-
"@jupyterlab/translation": "^4.7.0-alpha.
|
|
46
|
-
"@jupyterlab/ui-components": "^4.7.0-alpha.
|
|
40
|
+
"@jupyterlab/application": "^4.7.0-alpha.2",
|
|
41
|
+
"@jupyterlab/apputils": "^4.8.0-alpha.2",
|
|
42
|
+
"@jupyterlab/coreutils": "^6.7.0-alpha.2",
|
|
43
|
+
"@jupyterlab/mainmenu": "^4.7.0-alpha.2",
|
|
44
|
+
"@jupyterlab/services": "^7.7.0-alpha.2",
|
|
45
|
+
"@jupyterlab/translation": "^4.7.0-alpha.2",
|
|
46
|
+
"@jupyterlab/ui-components": "^4.7.0-alpha.2",
|
|
47
47
|
"@lumino/widgets": "^2.9.0",
|
|
48
48
|
"react": "^18.2.0"
|
|
49
49
|
},
|
package/src/index.tsx
CHANGED
|
@@ -204,7 +204,7 @@ const about: JupyterFrontEndPlugin<void> = {
|
|
|
204
204
|
);
|
|
205
205
|
const copyright = (
|
|
206
206
|
<span className="jp-About-copyright">
|
|
207
|
-
{trans.__('© %1-%2 Project Jupyter Contributors', 2015,
|
|
207
|
+
{trans.__('© %1-%2 Project Jupyter Contributors', 2015, 2026)}
|
|
208
208
|
</span>
|
|
209
209
|
);
|
|
210
210
|
const body = (
|