@jupyterlab/statusbar 4.0.0-beta.1 → 4.0.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/tokens.js +1 -1
- package/lib/tokens.js.map +1 -1
- package/package.json +10 -10
- package/src/tokens.ts +2 -1
package/lib/tokens.js
CHANGED
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
// Distributed under the terms of the Modified BSD License.
|
|
3
3
|
import { Token } from '@lumino/coreutils';
|
|
4
4
|
// tslint:disable-next-line:variable-name
|
|
5
|
-
export const IStatusBar = new Token('@jupyterlab/statusbar:IStatusBar');
|
|
5
|
+
export const IStatusBar = new Token('@jupyterlab/statusbar:IStatusBar', 'A service for the status bar on the application. Use this if you want to add new status bar items.');
|
|
6
6
|
//# sourceMappingURL=tokens.js.map
|
package/lib/tokens.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tokens.js","sourceRoot":"","sources":["../src/tokens.ts"],"names":[],"mappings":"AAAA,0CAA0C;AAC1C,2DAA2D;AAE3D,OAAO,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAK1C,yCAAyC;AACzC,MAAM,CAAC,MAAM,UAAU,GAAG,IAAI,KAAK,CACjC,kCAAkC,
|
|
1
|
+
{"version":3,"file":"tokens.js","sourceRoot":"","sources":["../src/tokens.ts"],"names":[],"mappings":"AAAA,0CAA0C;AAC1C,2DAA2D;AAE3D,OAAO,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAK1C,yCAAyC;AACzC,MAAM,CAAC,MAAM,UAAU,GAAG,IAAI,KAAK,CACjC,kCAAkC,EAClC,oGAAoG,CACrG,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/statusbar",
|
|
3
|
-
"version": "4.0.0-
|
|
3
|
+
"version": "4.0.0-rc.0",
|
|
4
4
|
"description": "JupyterLab statusbar package.",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
6
6
|
"bugs": {
|
|
@@ -32,26 +32,26 @@
|
|
|
32
32
|
"docs": "typedoc src",
|
|
33
33
|
"test": "jest",
|
|
34
34
|
"test:cov": "jest --collect-coverage",
|
|
35
|
-
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
|
|
36
|
-
"test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
|
|
35
|
+
"test:debug": "node --inspect-brk ../../node_modules/.bin/jest --runInBand",
|
|
36
|
+
"test:debug:watch": "node --inspect-brk ../../node_modules/.bin/jest --runInBand --watch",
|
|
37
37
|
"watch": "tsc -b --watch"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@jupyterlab/ui-components": "^4.0.0-
|
|
40
|
+
"@jupyterlab/ui-components": "^4.0.0-rc.0",
|
|
41
41
|
"@lumino/algorithm": "^2.0.0",
|
|
42
|
-
"@lumino/coreutils": "^2.
|
|
43
|
-
"@lumino/disposable": "^2.
|
|
42
|
+
"@lumino/coreutils": "^2.1.1",
|
|
43
|
+
"@lumino/disposable": "^2.1.1",
|
|
44
44
|
"@lumino/messaging": "^2.0.0",
|
|
45
|
-
"@lumino/signaling": "^2.
|
|
46
|
-
"@lumino/widgets": "^2.
|
|
45
|
+
"@lumino/signaling": "^2.1.1",
|
|
46
|
+
"@lumino/widgets": "^2.1.1",
|
|
47
47
|
"react": "^18.2.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@jupyterlab/testing": "^4.0.0-
|
|
50
|
+
"@jupyterlab/testing": "^4.0.0-rc.0",
|
|
51
51
|
"@types/jest": "^29.2.0",
|
|
52
52
|
"jest": "^29.2.0",
|
|
53
53
|
"rimraf": "~3.0.0",
|
|
54
|
-
"typescript": "~5.0.
|
|
54
|
+
"typescript": "~5.0.4"
|
|
55
55
|
},
|
|
56
56
|
"publishConfig": {
|
|
57
57
|
"access": "public"
|
package/src/tokens.ts
CHANGED
|
@@ -8,7 +8,8 @@ import { Widget } from '@lumino/widgets';
|
|
|
8
8
|
|
|
9
9
|
// tslint:disable-next-line:variable-name
|
|
10
10
|
export const IStatusBar = new Token<IStatusBar>(
|
|
11
|
-
'@jupyterlab/statusbar:IStatusBar'
|
|
11
|
+
'@jupyterlab/statusbar:IStatusBar',
|
|
12
|
+
'A service for the status bar on the application. Use this if you want to add new status bar items.'
|
|
12
13
|
);
|
|
13
14
|
|
|
14
15
|
/**
|