@jupyterlab/logconsole 4.4.8 → 4.4.10
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 +1 -1
- package/lib/registry.js +1 -1
- package/package.json +8 -8
- package/src/registry.ts +1 -1
package/lib/registry.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export declare class LoggerRegistry implements ILoggerRegistry {
|
|
|
8
8
|
/**
|
|
9
9
|
* Construct a LoggerRegistry.
|
|
10
10
|
*
|
|
11
|
-
* @param defaultRendermime - Default rendermime to render outputs
|
|
11
|
+
* @param options.defaultRendermime - Default rendermime to render outputs
|
|
12
12
|
* with when logger is not supplied with one.
|
|
13
13
|
*/
|
|
14
14
|
constructor(options: LoggerRegistry.IOptions);
|
package/lib/registry.js
CHANGED
|
@@ -9,7 +9,7 @@ export class LoggerRegistry {
|
|
|
9
9
|
/**
|
|
10
10
|
* Construct a LoggerRegistry.
|
|
11
11
|
*
|
|
12
|
-
* @param defaultRendermime - Default rendermime to render outputs
|
|
12
|
+
* @param options.defaultRendermime - Default rendermime to render outputs
|
|
13
13
|
* with when logger is not supplied with one.
|
|
14
14
|
*/
|
|
15
15
|
constructor(options) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/logconsole",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.10",
|
|
4
4
|
"description": "JupyterLab - Log Console",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
6
6
|
"bugs": {
|
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
"watch": "tsc -b --watch"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@jupyterlab/coreutils": "^6.4.
|
|
42
|
-
"@jupyterlab/nbformat": "^4.4.
|
|
43
|
-
"@jupyterlab/outputarea": "^4.4.
|
|
44
|
-
"@jupyterlab/rendermime": "^4.4.
|
|
45
|
-
"@jupyterlab/services": "^7.4.
|
|
46
|
-
"@jupyterlab/translation": "^4.4.
|
|
41
|
+
"@jupyterlab/coreutils": "^6.4.10",
|
|
42
|
+
"@jupyterlab/nbformat": "^4.4.10",
|
|
43
|
+
"@jupyterlab/outputarea": "^4.4.10",
|
|
44
|
+
"@jupyterlab/rendermime": "^4.4.10",
|
|
45
|
+
"@jupyterlab/services": "^7.4.10",
|
|
46
|
+
"@jupyterlab/translation": "^4.4.10",
|
|
47
47
|
"@lumino/coreutils": "^2.2.1",
|
|
48
48
|
"@lumino/disposable": "^2.1.4",
|
|
49
49
|
"@lumino/messaging": "^2.0.3",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"@lumino/widgets": "^2.7.1"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@jupyterlab/testing": "^4.4.
|
|
54
|
+
"@jupyterlab/testing": "^4.4.10",
|
|
55
55
|
"@types/jest": "^29.2.0",
|
|
56
56
|
"jest": "^29.2.0",
|
|
57
57
|
"rimraf": "~5.0.5",
|
package/src/registry.ts
CHANGED
|
@@ -13,7 +13,7 @@ export class LoggerRegistry implements ILoggerRegistry {
|
|
|
13
13
|
/**
|
|
14
14
|
* Construct a LoggerRegistry.
|
|
15
15
|
*
|
|
16
|
-
* @param defaultRendermime - Default rendermime to render outputs
|
|
16
|
+
* @param options.defaultRendermime - Default rendermime to render outputs
|
|
17
17
|
* with when logger is not supplied with one.
|
|
18
18
|
*/
|
|
19
19
|
constructor(options: LoggerRegistry.IOptions) {
|