@jupyterlab/logconsole 4.2.0-beta.0 → 4.2.0-beta.2

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/logger.d.ts CHANGED
@@ -115,7 +115,7 @@ export declare class Logger implements ILogger {
115
115
  /**
116
116
  * Construct a Logger.
117
117
  *
118
- * @param source - The name of the log source.
118
+ * @param options Constructor options
119
119
  */
120
120
  constructor(options: Logger.IOptions);
121
121
  /**
package/lib/logger.js CHANGED
@@ -99,7 +99,7 @@ export class Logger {
99
99
  /**
100
100
  * Construct a Logger.
101
101
  *
102
- * @param source - The name of the log source.
102
+ * @param options Constructor options
103
103
  */
104
104
  constructor(options) {
105
105
  this._isDisposed = false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/logconsole",
3
- "version": "4.2.0-beta.0",
3
+ "version": "4.2.0-beta.2",
4
4
  "description": "JupyterLab - Log Console",
5
5
  "homepage": "https://github.com/jupyterlab/jupyterlab",
6
6
  "bugs": {
@@ -38,20 +38,20 @@
38
38
  "watch": "tsc -b --watch"
39
39
  },
40
40
  "dependencies": {
41
- "@jupyterlab/coreutils": "^6.2.0-beta.0",
42
- "@jupyterlab/nbformat": "^4.2.0-beta.0",
43
- "@jupyterlab/outputarea": "^4.2.0-beta.0",
44
- "@jupyterlab/rendermime": "^4.2.0-beta.0",
45
- "@jupyterlab/services": "^7.2.0-beta.0",
46
- "@jupyterlab/translation": "^4.2.0-beta.0",
41
+ "@jupyterlab/coreutils": "^6.2.0-beta.2",
42
+ "@jupyterlab/nbformat": "^4.2.0-beta.2",
43
+ "@jupyterlab/outputarea": "^4.2.0-beta.2",
44
+ "@jupyterlab/rendermime": "^4.2.0-beta.2",
45
+ "@jupyterlab/services": "^7.2.0-beta.2",
46
+ "@jupyterlab/translation": "^4.2.0-beta.2",
47
47
  "@lumino/coreutils": "^2.1.2",
48
48
  "@lumino/disposable": "^2.1.2",
49
49
  "@lumino/messaging": "^2.0.1",
50
50
  "@lumino/signaling": "^2.1.2",
51
- "@lumino/widgets": "^2.3.1"
51
+ "@lumino/widgets": "^2.3.2"
52
52
  },
53
53
  "devDependencies": {
54
- "@jupyterlab/testing": "^4.2.0-beta.0",
54
+ "@jupyterlab/testing": "^4.2.0-beta.2",
55
55
  "@types/jest": "^29.2.0",
56
56
  "jest": "^29.2.0",
57
57
  "rimraf": "~5.0.5",
package/src/logger.ts CHANGED
@@ -193,7 +193,7 @@ export class Logger implements ILogger {
193
193
  /**
194
194
  * Construct a Logger.
195
195
  *
196
- * @param source - The name of the log source.
196
+ * @param options Constructor options
197
197
  */
198
198
  constructor(options: Logger.IOptions) {
199
199
  this.source = options.source;