@jupyterlab/extensionmanager 4.5.1 → 4.6.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.
- package/lib/widget.js +2 -2
- package/package.json +6 -6
- package/src/widget.tsx +2 -2
package/lib/widget.js
CHANGED
|
@@ -37,7 +37,7 @@ function ListEntry(props) {
|
|
|
37
37
|
React.createElement("div", { className: "jp-extensionmanager-entry-name" }, 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))),
|
|
38
38
|
React.createElement("div", { className: "jp-extensionmanager-entry-version" },
|
|
39
39
|
React.createElement("div", { title: trans.__('Version: %1', entry.installed_version) }, entry.installed_version)),
|
|
40
|
-
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/
|
|
40
|
+
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/latest/user/extensions.html') })),
|
|
41
41
|
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.') }))),
|
|
42
42
|
React.createElement("div", { className: "jp-extensionmanager-entry-content" },
|
|
43
43
|
React.createElement("div", { className: "jp-extensionmanager-entry-description" }, entry.description),
|
|
@@ -106,7 +106,7 @@ risks or contain malicious code that runs on your machine. Moreover in order
|
|
|
106
106
|
to work, this panel needs to fetch data from web services. Do you agree to
|
|
107
107
|
activate this feature?`),
|
|
108
108
|
React.createElement("br", null),
|
|
109
|
-
React.createElement("a", { href: "https://jupyterlab.readthedocs.io/en/
|
|
109
|
+
React.createElement("a", { href: "https://jupyterlab.readthedocs.io/en/latest/privacy_policies.html", target: "_blank", rel: "noreferrer" }, this.trans.__('Please read the privacy policy.'))),
|
|
110
110
|
this.model.isDisclaimed ? (React.createElement(Button, { className: "jp-extensionmanager-disclaimer-disable", onClick: (e) => {
|
|
111
111
|
this.model.isDisclaimed = false;
|
|
112
112
|
}, 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.
|
|
3
|
+
"version": "4.6.0-alpha.0",
|
|
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.
|
|
40
|
-
"@jupyterlab/coreutils": "^6.
|
|
41
|
-
"@jupyterlab/services": "^7.
|
|
42
|
-
"@jupyterlab/translation": "^4.
|
|
43
|
-
"@jupyterlab/ui-components": "^4.
|
|
39
|
+
"@jupyterlab/apputils": "^4.7.0-alpha.0",
|
|
40
|
+
"@jupyterlab/coreutils": "^6.6.0-alpha.0",
|
|
41
|
+
"@jupyterlab/services": "^7.6.0-alpha.0",
|
|
42
|
+
"@jupyterlab/translation": "^4.6.0-alpha.0",
|
|
43
|
+
"@jupyterlab/ui-components": "^4.6.0-alpha.0",
|
|
44
44
|
"@lumino/messaging": "^2.0.4",
|
|
45
45
|
"@lumino/polling": "^2.1.5",
|
|
46
46
|
"@lumino/widgets": "^2.7.2",
|
package/src/widget.tsx
CHANGED
|
@@ -100,7 +100,7 @@ function ListEntry(props: ListEntry.IProperties): React.ReactElement<any> {
|
|
|
100
100
|
)}
|
|
101
101
|
onClick={() =>
|
|
102
102
|
window.open(
|
|
103
|
-
'https://jupyterlab.readthedocs.io/en/
|
|
103
|
+
'https://jupyterlab.readthedocs.io/en/latest/user/extensions.html'
|
|
104
104
|
)
|
|
105
105
|
}
|
|
106
106
|
/>
|
|
@@ -415,7 +415,7 @@ to work, this panel needs to fetch data from web services. Do you agree to
|
|
|
415
415
|
activate this feature?`)}
|
|
416
416
|
<br />
|
|
417
417
|
<a
|
|
418
|
-
href="https://jupyterlab.readthedocs.io/en/
|
|
418
|
+
href="https://jupyterlab.readthedocs.io/en/latest/privacy_policies.html"
|
|
419
419
|
target="_blank"
|
|
420
420
|
rel="noreferrer"
|
|
421
421
|
>
|