@jupyterlab/launcher 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 CHANGED
@@ -6,5 +6,6 @@ import { Token } from '@lumino/coreutils';
6
6
  /**
7
7
  * The launcher token.
8
8
  */
9
- export const ILauncher = new Token('@jupyterlab/launcher:ILauncher');
9
+ export const ILauncher = new Token('@jupyterlab/launcher:ILauncher', `A service for the application activity launcher.
10
+ Use this to add your extension activities to the launcher panel.`);
10
11
  //# 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;;;GAGG;AAKH,OAAO,EAAsB,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAI9D;;GAEG;AACH,MAAM,CAAC,MAAM,SAAS,GAAG,IAAI,KAAK,CAAY,gCAAgC,CAAC,CAAC"}
1
+ {"version":3,"file":"tokens.js","sourceRoot":"","sources":["../src/tokens.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAKH,OAAO,EAAsB,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAI9D;;GAEG;AACH,MAAM,CAAC,MAAM,SAAS,GAAG,IAAI,KAAK,CAChC,gCAAgC,EAChC;mEACiE,CAClE,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/launcher",
3
- "version": "4.0.0-beta.1",
3
+ "version": "4.0.0-rc.0",
4
4
  "description": "JupyterLab - Launcher Panel",
5
5
  "homepage": "https://github.com/jupyterlab/jupyterlab",
6
6
  "bugs": {
@@ -37,22 +37,22 @@
37
37
  "watch": "tsc -b --watch"
38
38
  },
39
39
  "dependencies": {
40
- "@jupyterlab/apputils": "^4.0.0-beta.1",
41
- "@jupyterlab/translation": "^4.0.0-beta.1",
42
- "@jupyterlab/ui-components": "^4.0.0-beta.1",
40
+ "@jupyterlab/apputils": "^4.0.0-rc.0",
41
+ "@jupyterlab/translation": "^4.0.0-rc.0",
42
+ "@jupyterlab/ui-components": "^4.0.0-rc.0",
43
43
  "@lumino/algorithm": "^2.0.0",
44
- "@lumino/commands": "^2.0.1",
45
- "@lumino/coreutils": "^2.0.0",
46
- "@lumino/disposable": "^2.0.0",
44
+ "@lumino/commands": "^2.1.1",
45
+ "@lumino/coreutils": "^2.1.1",
46
+ "@lumino/disposable": "^2.1.1",
47
47
  "@lumino/properties": "^2.0.0",
48
- "@lumino/widgets": "^2.0.1",
48
+ "@lumino/widgets": "^2.1.1",
49
49
  "react": "^18.2.0"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@types/react": "^18.0.26",
53
53
  "rimraf": "~3.0.0",
54
- "typedoc": "~0.23.25",
55
- "typescript": "~5.0.2"
54
+ "typedoc": "~0.24.1",
55
+ "typescript": "~5.0.4"
56
56
  },
57
57
  "publishConfig": {
58
58
  "access": "public"
package/src/tokens.ts CHANGED
@@ -13,7 +13,11 @@ import { Widget } from '@lumino/widgets';
13
13
  /**
14
14
  * The launcher token.
15
15
  */
16
- export const ILauncher = new Token<ILauncher>('@jupyterlab/launcher:ILauncher');
16
+ export const ILauncher = new Token<ILauncher>(
17
+ '@jupyterlab/launcher:ILauncher',
18
+ `A service for the application activity launcher.
19
+ Use this to add your extension activities to the launcher panel.`
20
+ );
17
21
 
18
22
  /**
19
23
  * The launcher interface.