@jupyterlab/rendermime 4.3.0-beta.3 → 4.3.0-rc.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/registry.d.ts CHANGED
@@ -222,7 +222,7 @@ export declare namespace RenderMimeRegistry {
222
222
  isLocal(url: string, allowRoot?: boolean): boolean;
223
223
  /**
224
224
  * Resolve a path from Jupyter kernel to a path:
225
- * - relative to `root_dir` (preferrably) this is in jupyter-server scope,
225
+ * - relative to `root_dir` (preferably) this is in jupyter-server scope,
226
226
  * - path understood and known by kernel (if such a path exists).
227
227
  * Returns `null` if there is no file matching provided path in neither
228
228
  * kernel nor jupyter-server contents manager.
package/lib/registry.js CHANGED
@@ -286,7 +286,7 @@ export class RenderMimeRegistry {
286
286
  }
287
287
  /**
288
288
  * Resolve a path from Jupyter kernel to a path:
289
- * - relative to `root_dir` (preferrably) this is in jupyter-server scope,
289
+ * - relative to `root_dir` (preferably) this is in jupyter-server scope,
290
290
  * - path understood and known by kernel (if such a path exists).
291
291
  * Returns `null` if there is no file matching provided path in neither
292
292
  * kernel nor jupyter-server contents manager.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/rendermime",
3
- "version": "4.3.0-beta.3",
3
+ "version": "4.3.0-rc.1",
4
4
  "description": "JupyterLab - RenderMime",
5
5
  "homepage": "https://github.com/jupyterlab/jupyterlab",
6
6
  "bugs": {
@@ -41,13 +41,13 @@
41
41
  "watch": "tsc -b --watch"
42
42
  },
43
43
  "dependencies": {
44
- "@jupyterlab/apputils": "^4.4.0-beta.3",
45
- "@jupyterlab/coreutils": "^6.3.0-beta.3",
46
- "@jupyterlab/nbformat": "^4.3.0-beta.3",
47
- "@jupyterlab/observables": "^5.3.0-beta.3",
48
- "@jupyterlab/rendermime-interfaces": "^3.11.0-beta.3",
49
- "@jupyterlab/services": "^7.3.0-beta.3",
50
- "@jupyterlab/translation": "^4.3.0-beta.3",
44
+ "@jupyterlab/apputils": "^4.4.0-rc.1",
45
+ "@jupyterlab/coreutils": "^6.3.0-rc.1",
46
+ "@jupyterlab/nbformat": "^4.3.0-rc.1",
47
+ "@jupyterlab/observables": "^5.3.0-rc.1",
48
+ "@jupyterlab/rendermime-interfaces": "^3.11.0-rc.1",
49
+ "@jupyterlab/services": "^7.3.0-rc.1",
50
+ "@jupyterlab/translation": "^4.3.0-rc.1",
51
51
  "@lumino/coreutils": "^2.2.0",
52
52
  "@lumino/messaging": "^2.0.2",
53
53
  "@lumino/signaling": "^2.1.3",
@@ -55,7 +55,7 @@
55
55
  "lodash.escape": "^4.0.1"
56
56
  },
57
57
  "devDependencies": {
58
- "@jupyterlab/testing": "^4.3.0-beta.3",
58
+ "@jupyterlab/testing": "^4.3.0-rc.1",
59
59
  "@types/jest": "^29.2.0",
60
60
  "@types/lodash.escape": "^4.0.6",
61
61
  "fs-extra": "^10.1.0",
package/src/registry.ts CHANGED
@@ -393,7 +393,7 @@ export namespace RenderMimeRegistry {
393
393
 
394
394
  /**
395
395
  * Resolve a path from Jupyter kernel to a path:
396
- * - relative to `root_dir` (preferrably) this is in jupyter-server scope,
396
+ * - relative to `root_dir` (preferably) this is in jupyter-server scope,
397
397
  * - path understood and known by kernel (if such a path exists).
398
398
  * Returns `null` if there is no file matching provided path in neither
399
399
  * kernel nor jupyter-server contents manager.