@jupyterlab/inspector 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 +2 -1
- package/lib/tokens.js.map +1 -1
- package/package.json +18 -18
- package/src/tokens.ts +3 -1
package/lib/tokens.js
CHANGED
|
@@ -4,5 +4,6 @@ import { Token } from '@lumino/coreutils';
|
|
|
4
4
|
/**
|
|
5
5
|
* The inspector panel token.
|
|
6
6
|
*/
|
|
7
|
-
export const IInspector = new Token('@jupyterlab/inspector:IInspector')
|
|
7
|
+
export const IInspector = new Token('@jupyterlab/inspector:IInspector', `A service for adding contextual help to widgets (visible using "Show Contextual Help" from the Help menu).
|
|
8
|
+
Use this to hook into the contextual help system in your extension.`);
|
|
8
9
|
//# 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;AAI1C;;GAEG;AACH,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;AAI1C;;GAEG;AACH,MAAM,CAAC,MAAM,UAAU,GAAG,IAAI,KAAK,CACjC,kCAAkC,EAClC;sEACoE,CACrE,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/inspector",
|
|
3
|
-
"version": "4.0.0-
|
|
3
|
+
"version": "4.0.0-rc.0",
|
|
4
4
|
"description": "JupyterLab - Code Inspector",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
6
6
|
"bugs": {
|
|
@@ -37,31 +37,31 @@
|
|
|
37
37
|
"docs": "typedoc src",
|
|
38
38
|
"test": "jest",
|
|
39
39
|
"test:cov": "jest --collect-coverage",
|
|
40
|
-
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
|
|
41
|
-
"test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
|
|
40
|
+
"test:debug": "node --inspect-brk ../../node_modules/.bin/jest --runInBand",
|
|
41
|
+
"test:debug:watch": "node --inspect-brk ../../node_modules/.bin/jest --runInBand --watch",
|
|
42
42
|
"watch": "tsc -b --watch"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@jupyterlab/apputils": "^4.0.0-
|
|
46
|
-
"@jupyterlab/codeeditor": "^4.0.0-
|
|
47
|
-
"@jupyterlab/coreutils": "^6.0.0-
|
|
48
|
-
"@jupyterlab/rendermime": "^4.0.0-
|
|
49
|
-
"@jupyterlab/services": "^7.0.0-
|
|
50
|
-
"@jupyterlab/statedb": "^4.0.0-
|
|
51
|
-
"@jupyterlab/translation": "^4.0.0-
|
|
52
|
-
"@lumino/coreutils": "^2.
|
|
53
|
-
"@lumino/disposable": "^2.
|
|
54
|
-
"@lumino/polling": "^2.
|
|
55
|
-
"@lumino/signaling": "^2.
|
|
56
|
-
"@lumino/widgets": "^2.
|
|
45
|
+
"@jupyterlab/apputils": "^4.0.0-rc.0",
|
|
46
|
+
"@jupyterlab/codeeditor": "^4.0.0-rc.0",
|
|
47
|
+
"@jupyterlab/coreutils": "^6.0.0-rc.0",
|
|
48
|
+
"@jupyterlab/rendermime": "^4.0.0-rc.0",
|
|
49
|
+
"@jupyterlab/services": "^7.0.0-rc.0",
|
|
50
|
+
"@jupyterlab/statedb": "^4.0.0-rc.0",
|
|
51
|
+
"@jupyterlab/translation": "^4.0.0-rc.0",
|
|
52
|
+
"@lumino/coreutils": "^2.1.1",
|
|
53
|
+
"@lumino/disposable": "^2.1.1",
|
|
54
|
+
"@lumino/polling": "^2.1.1",
|
|
55
|
+
"@lumino/signaling": "^2.1.1",
|
|
56
|
+
"@lumino/widgets": "^2.1.1"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@jupyterlab/testing": "^4.0.0-
|
|
59
|
+
"@jupyterlab/testing": "^4.0.0-rc.0",
|
|
60
60
|
"@types/jest": "^29.2.0",
|
|
61
61
|
"jest": "^29.2.0",
|
|
62
62
|
"rimraf": "~3.0.0",
|
|
63
|
-
"typedoc": "~0.
|
|
64
|
-
"typescript": "~5.0.
|
|
63
|
+
"typedoc": "~0.24.1",
|
|
64
|
+
"typescript": "~5.0.4"
|
|
65
65
|
},
|
|
66
66
|
"publishConfig": {
|
|
67
67
|
"access": "public"
|
package/src/tokens.ts
CHANGED
|
@@ -9,7 +9,9 @@ import { Widget } from '@lumino/widgets';
|
|
|
9
9
|
* The inspector panel token.
|
|
10
10
|
*/
|
|
11
11
|
export const IInspector = new Token<IInspector>(
|
|
12
|
-
'@jupyterlab/inspector:IInspector'
|
|
12
|
+
'@jupyterlab/inspector:IInspector',
|
|
13
|
+
`A service for adding contextual help to widgets (visible using "Show Contextual Help" from the Help menu).
|
|
14
|
+
Use this to hook into the contextual help system in your extension.`
|
|
13
15
|
);
|
|
14
16
|
|
|
15
17
|
/**
|