@jupyterlab/extensionmanager 4.0.5 → 4.1.0-alpha.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
|
@@ -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),
|
|
@@ -104,7 +104,7 @@ risks or contain malicious code that runs on your machine. Moreover in order
|
|
|
104
104
|
to work, this panel needs to fetch data from web services. Do you agree to
|
|
105
105
|
activate this feature?`),
|
|
106
106
|
React.createElement("br", null),
|
|
107
|
-
React.createElement("a", { href: "https://jupyterlab.readthedocs.io/en/
|
|
107
|
+
React.createElement("a", { href: "https://jupyterlab.readthedocs.io/en/latest/privacy_policies.html", target: "_blank", rel: "noreferrer" }, this.trans.__('Please read the privacy policy.'))),
|
|
108
108
|
this.model.isDisclaimed ? (React.createElement(Button, { className: "jp-extensionmanager-disclaimer-disable", onClick: (e) => {
|
|
109
109
|
this.model.isDisclaimed = false;
|
|
110
110
|
}, 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.0.
|
|
3
|
+
"version": "4.1.0-alpha.1",
|
|
4
4
|
"description": "JupyterLab - Extension Manager",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
6
6
|
"bugs": {
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"watch": "tsc -b --watch"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@jupyterlab/apputils": "^4.1
|
|
41
|
-
"@jupyterlab/coreutils": "^6.0.
|
|
42
|
-
"@jupyterlab/services": "^7.0.
|
|
43
|
-
"@jupyterlab/translation": "^4.0.
|
|
44
|
-
"@jupyterlab/ui-components": "^4.0.
|
|
40
|
+
"@jupyterlab/apputils": "^4.2.0-alpha.1",
|
|
41
|
+
"@jupyterlab/coreutils": "^6.1.0-alpha.1",
|
|
42
|
+
"@jupyterlab/services": "^7.1.0-alpha.1",
|
|
43
|
+
"@jupyterlab/translation": "^4.1.0-alpha.1",
|
|
44
|
+
"@jupyterlab/ui-components": "^4.1.0-alpha.1",
|
|
45
45
|
"@lumino/messaging": "^2.0.1",
|
|
46
46
|
"@lumino/polling": "^2.1.2",
|
|
47
47
|
"@lumino/widgets": "^2.3.0",
|
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
|
/>
|
|
@@ -409,7 +409,7 @@ to work, this panel needs to fetch data from web services. Do you agree to
|
|
|
409
409
|
activate this feature?`)}
|
|
410
410
|
<br />
|
|
411
411
|
<a
|
|
412
|
-
href="https://jupyterlab.readthedocs.io/en/
|
|
412
|
+
href="https://jupyterlab.readthedocs.io/en/latest/privacy_policies.html"
|
|
413
413
|
target="_blank"
|
|
414
414
|
rel="noreferrer"
|
|
415
415
|
>
|