@jupyterlab/pluginmanager 4.3.0-beta.3 → 4.3.0-rc.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/dialogs.js CHANGED
@@ -3,7 +3,7 @@ export function PluginRequiredMessage(props) {
3
3
  return (React.createElement(React.Fragment, null,
4
4
  props.trans.__('The plugin "%1" cannot be disabled as it is required by other plugins:', props.plugin.id),
5
5
  React.createElement("ul", null, props.dependants.map(plugin => (React.createElement("li", { key: 'dependantsDialog-' + plugin.id }, plugin.id)))),
6
- props.trans.__('Please disable the dependant plugins first.')));
6
+ props.trans.__('Please disable the dependent plugins first.')));
7
7
  }
8
8
  export function PluginInUseMessage(props) {
9
9
  return (React.createElement("div", { className: 'jp-pluginmanager-PluginInUseMessage' },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/pluginmanager",
3
- "version": "4.3.0-beta.3",
3
+ "version": "4.3.0-rc.0",
4
4
  "description": "List, enable or disable individual plugins.",
5
5
  "homepage": "https://github.com/jupyterlab/jupyterlab",
6
6
  "bugs": {
@@ -39,19 +39,19 @@
39
39
  "watch": "tsc -b --watch"
40
40
  },
41
41
  "dependencies": {
42
- "@jupyterlab/application": "^4.3.0-beta.3",
43
- "@jupyterlab/apputils": "^4.4.0-beta.3",
44
- "@jupyterlab/coreutils": "^6.3.0-beta.3",
45
- "@jupyterlab/services": "^7.3.0-beta.3",
46
- "@jupyterlab/translation": "^4.3.0-beta.3",
47
- "@jupyterlab/ui-components": "^4.3.0-beta.3",
42
+ "@jupyterlab/application": "^4.3.0-rc.0",
43
+ "@jupyterlab/apputils": "^4.4.0-rc.0",
44
+ "@jupyterlab/coreutils": "^6.3.0-rc.0",
45
+ "@jupyterlab/services": "^7.3.0-rc.0",
46
+ "@jupyterlab/translation": "^4.3.0-rc.0",
47
+ "@jupyterlab/ui-components": "^4.3.0-rc.0",
48
48
  "@lumino/coreutils": "^2.2.0",
49
49
  "@lumino/signaling": "^2.1.3",
50
50
  "@lumino/widgets": "^2.5.0",
51
51
  "react": "^18.2.0"
52
52
  },
53
53
  "devDependencies": {
54
- "@jupyterlab/testing": "^4.3.0-beta.3",
54
+ "@jupyterlab/testing": "^4.3.0-rc.0",
55
55
  "@types/jest": "^29.2.0",
56
56
  "jest": "^29.2.0",
57
57
  "rimraf": "~5.0.5",
package/src/dialogs.tsx CHANGED
@@ -20,7 +20,7 @@ export function PluginRequiredMessage(props: {
20
20
  <li key={'dependantsDialog-' + plugin.id}>{plugin.id}</li>
21
21
  ))}
22
22
  </ul>
23
- {props.trans.__('Please disable the dependant plugins first.')}
23
+ {props.trans.__('Please disable the dependent plugins first.')}
24
24
  </>
25
25
  );
26
26
  }