@jupyterlab/extensionmanager 4.0.2 → 4.0.3

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 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/latest/user/extensions.html') })),
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/stable/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/latest/privacy_policies.html", target: "_blank", rel: "noreferrer" }, this.trans.__('Please read the privacy policy.'))),
107
+ React.createElement("a", { href: "https://jupyterlab.readthedocs.io/en/stable/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.2",
3
+ "version": "4.0.3",
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.2",
41
- "@jupyterlab/coreutils": "^6.0.2",
42
- "@jupyterlab/services": "^7.0.2",
43
- "@jupyterlab/translation": "^4.0.2",
44
- "@jupyterlab/ui-components": "^4.0.2",
40
+ "@jupyterlab/apputils": "^4.1.3",
41
+ "@jupyterlab/coreutils": "^6.0.3",
42
+ "@jupyterlab/services": "^7.0.3",
43
+ "@jupyterlab/translation": "^4.0.3",
44
+ "@jupyterlab/ui-components": "^4.0.3",
45
45
  "@lumino/messaging": "^2.0.0",
46
46
  "@lumino/polling": "^2.1.1",
47
47
  "@lumino/widgets": "^2.1.1",
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/latest/user/extensions.html'
103
+ 'https://jupyterlab.readthedocs.io/en/stable/user/extensions.html'
104
104
  )
105
105
  }
106
106
  />
@@ -406,7 +406,7 @@ to work, this panel needs to fetch data from web services. Do you agree to
406
406
  activate this feature?`)}
407
407
  <br />
408
408
  <a
409
- href="https://jupyterlab.readthedocs.io/en/latest/privacy_policies.html"
409
+ href="https://jupyterlab.readthedocs.io/en/stable/privacy_policies.html"
410
410
  target="_blank"
411
411
  rel="noreferrer"
412
412
  >