@jupyterlab/settingregistry 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,7 @@ import { Token } from '@lumino/coreutils';
6
6
  /**
7
7
  * The setting registry token.
8
8
  */
9
- export const ISettingRegistry = new Token('@jupyterlab/coreutils:ISettingRegistry');
9
+ export const ISettingRegistry = new Token('@jupyterlab/coreutils:ISettingRegistry', `A service for the JupyterLab settings system.
10
+ Use this if you want to store settings for your application.
11
+ See "schemaDir" for more information.`);
10
12
  //# 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;;;+EAG+E;AAI/E,OAAO,EAKL,KAAK,EACN,MAAM,mBAAmB,CAAC;AAM3B;;GAEG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAAG,IAAI,KAAK,CACvC,wCAAwC,CACzC,CAAC"}
1
+ {"version":3,"file":"tokens.js","sourceRoot":"","sources":["../src/tokens.ts"],"names":[],"mappings":"AAAA;;;+EAG+E;AAI/E,OAAO,EAKL,KAAK,EACN,MAAM,mBAAmB,CAAC;AAM3B;;GAEG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAAG,IAAI,KAAK,CACvC,wCAAwC,EACxC;;wCAEsC,CACvC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/settingregistry",
3
- "version": "4.0.0-beta.1",
3
+ "version": "4.0.0-rc.0",
4
4
  "description": "Settings registry for Jupyterlab",
5
5
  "homepage": "https://github.com/jupyterlab/jupyterlab",
6
6
  "bugs": {
@@ -32,27 +32,27 @@
32
32
  "docs": "typedoc src --tsconfig typedoc-tsconfig.json",
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/nbformat": "^4.0.0-beta.1",
41
- "@jupyterlab/statedb": "^4.0.0-beta.1",
42
- "@lumino/commands": "^2.0.1",
43
- "@lumino/coreutils": "^2.0.0",
44
- "@lumino/disposable": "^2.0.0",
45
- "@lumino/signaling": "^2.0.0",
40
+ "@jupyterlab/nbformat": "^4.0.0-rc.0",
41
+ "@jupyterlab/statedb": "^4.0.0-rc.0",
42
+ "@lumino/commands": "^2.1.1",
43
+ "@lumino/coreutils": "^2.1.1",
44
+ "@lumino/disposable": "^2.1.1",
45
+ "@lumino/signaling": "^2.1.1",
46
46
  "@rjsf/utils": "^5.1.0",
47
47
  "ajv": "^8.12.0",
48
48
  "json5": "^2.2.3"
49
49
  },
50
50
  "devDependencies": {
51
- "@jupyterlab/testing": "^4.0.0-beta.1",
51
+ "@jupyterlab/testing": "^4.0.0-rc.0",
52
52
  "@types/jest": "^29.2.0",
53
53
  "jest": "^29.2.0",
54
54
  "rimraf": "~3.0.0",
55
- "typescript": "~5.0.2"
55
+ "typescript": "~5.0.4"
56
56
  },
57
57
  "peerDependencies": {
58
58
  "react": ">=16"
package/src/tokens.ts CHANGED
@@ -21,7 +21,10 @@ import type { RJSFSchema, UiSchema } from '@rjsf/utils';
21
21
  * The setting registry token.
22
22
  */
23
23
  export const ISettingRegistry = new Token<ISettingRegistry>(
24
- '@jupyterlab/coreutils:ISettingRegistry'
24
+ '@jupyterlab/coreutils:ISettingRegistry',
25
+ `A service for the JupyterLab settings system.
26
+ Use this if you want to store settings for your application.
27
+ See "schemaDir" for more information.`
25
28
  );
26
29
 
27
30
  /**