@jupyterlab/extensionmanager 4.6.0-rc.1 → 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/lib/widget.js +2 -2
- package/package.json +6 -6
- package/src/widget.tsx +2 -2
package/lib/widget.js
CHANGED
|
@@ -48,7 +48,7 @@ function ListEntry(props) {
|
|
|
48
48
|
React.createElement("div", { className: "jp-extensionmanager-entry-name" }, entry.homepage_url && isProtocolAllowed(entry.homepage_url) ? (React.createElement("a", { href: entry.homepage_url, target: "_blank", rel: "noopener noreferrer", title: trans.__('%1 extension home page', entry.name) }, entry.name)) : (React.createElement("div", null, entry.name))),
|
|
49
49
|
React.createElement("div", { className: "jp-extensionmanager-entry-version" },
|
|
50
50
|
React.createElement("div", { title: trans.__('Version: %1', entry.installed_version) }, entry.installed_version)),
|
|
51
|
-
entry.installed && !entry.allowed && (React.createElement(ToolbarButtonComponent, { icon: infoIcon, iconLabel: trans.__('%1 extension is not allowed anymore. Please uninstall it immediately or contact your administrator.', entry.name), onClick: () => window.open('https://jupyterlab.readthedocs.io/en/
|
|
51
|
+
entry.installed && !entry.allowed && (React.createElement(ToolbarButtonComponent, { icon: infoIcon, iconLabel: trans.__('%1 extension is not allowed anymore. Please uninstall it immediately or contact your administrator.', entry.name), onClick: () => window.open('https://jupyterlab.readthedocs.io/en/stable/user/extensions.html') })),
|
|
52
52
|
entry.approved && (React.createElement(jupyterIcon.react, { className: "jp-extensionmanager-is-approved", top: "1px", height: "auto", width: "1em", title: trans.__('This extension is approved by your security team.') }))),
|
|
53
53
|
React.createElement("div", { className: "jp-extensionmanager-entry-content" },
|
|
54
54
|
React.createElement("div", { className: "jp-extensionmanager-entry-description" }, entry.description),
|
|
@@ -117,7 +117,7 @@ risks or contain malicious code that runs on your machine. Moreover in order
|
|
|
117
117
|
to work, this panel needs to fetch data from web services. Do you agree to
|
|
118
118
|
activate this feature?`),
|
|
119
119
|
React.createElement("br", null),
|
|
120
|
-
React.createElement("a", { href: "https://jupyterlab.readthedocs.io/en/
|
|
120
|
+
React.createElement("a", { href: "https://jupyterlab.readthedocs.io/en/stable/privacy_policies.html", target: "_blank", rel: "noreferrer" }, this.trans.__('Please read the privacy policy.'))),
|
|
121
121
|
this.model.isDisclaimed ? (React.createElement(Button, { className: "jp-extensionmanager-disclaimer-disable", onClick: (e) => {
|
|
122
122
|
this.model.isDisclaimed = false;
|
|
123
123
|
}, title: this.trans.__('This will withdraw your consent.') }, this.trans.__('No'))) : (React.createElement("div", null,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/extensionmanager",
|
|
3
|
-
"version": "4.6.
|
|
3
|
+
"version": "4.6.1",
|
|
4
4
|
"description": "JupyterLab - Extension Manager",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
6
6
|
"bugs": {
|
|
@@ -36,11 +36,11 @@
|
|
|
36
36
|
"watch": "tsc -b --watch"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@jupyterlab/apputils": "^4.7.
|
|
40
|
-
"@jupyterlab/coreutils": "^6.6.
|
|
41
|
-
"@jupyterlab/services": "^7.6.
|
|
42
|
-
"@jupyterlab/translation": "^4.6.
|
|
43
|
-
"@jupyterlab/ui-components": "^4.6.
|
|
39
|
+
"@jupyterlab/apputils": "^4.7.1",
|
|
40
|
+
"@jupyterlab/coreutils": "^6.6.1",
|
|
41
|
+
"@jupyterlab/services": "^7.6.1",
|
|
42
|
+
"@jupyterlab/translation": "^4.6.1",
|
|
43
|
+
"@jupyterlab/ui-components": "^4.6.1",
|
|
44
44
|
"@lumino/messaging": "^2.0.4",
|
|
45
45
|
"@lumino/polling": "^2.1.5",
|
|
46
46
|
"@lumino/widgets": "^2.8.0",
|
package/src/widget.tsx
CHANGED
|
@@ -112,7 +112,7 @@ function ListEntry(props: ListEntry.IProperties): React.ReactElement<any> {
|
|
|
112
112
|
)}
|
|
113
113
|
onClick={() =>
|
|
114
114
|
window.open(
|
|
115
|
-
'https://jupyterlab.readthedocs.io/en/
|
|
115
|
+
'https://jupyterlab.readthedocs.io/en/stable/user/extensions.html'
|
|
116
116
|
)
|
|
117
117
|
}
|
|
118
118
|
/>
|
|
@@ -428,7 +428,7 @@ to work, this panel needs to fetch data from web services. Do you agree to
|
|
|
428
428
|
activate this feature?`)}
|
|
429
429
|
<br />
|
|
430
430
|
<a
|
|
431
|
-
href="https://jupyterlab.readthedocs.io/en/
|
|
431
|
+
href="https://jupyterlab.readthedocs.io/en/stable/privacy_policies.html"
|
|
432
432
|
target="_blank"
|
|
433
433
|
rel="noreferrer"
|
|
434
434
|
>
|