@jupyterlab/settingregistry 4.4.0-beta.0 → 4.4.0-beta.1

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.d.ts CHANGED
@@ -5,10 +5,19 @@ import { IDisposable } from '@lumino/disposable';
5
5
  import { ISignal } from '@lumino/signaling';
6
6
  import { ISchemaValidator } from './settingregistry';
7
7
  import type { RJSFSchema, UiSchema } from '@rjsf/utils';
8
+ /**
9
+ * A service to connect to the settings endpoint.
10
+ */
11
+ export declare const ISettingConnector: Token<ISettingConnector>;
8
12
  /**
9
13
  * The setting registry token.
10
14
  */
11
15
  export declare const ISettingRegistry: Token<ISettingRegistry>;
16
+ /**
17
+ * The settings connector interface.
18
+ */
19
+ export interface ISettingConnector extends IDataConnector<ISettingRegistry.IPlugin, string> {
20
+ }
12
21
  /**
13
22
  * The settings registry interface.
14
23
  */
package/lib/tokens.js CHANGED
@@ -3,6 +3,10 @@
3
3
  | Distributed under the terms of the Modified BSD License.
4
4
  |----------------------------------------------------------------------------*/
5
5
  import { Token } from '@lumino/coreutils';
6
+ /**
7
+ * A service to connect to the settings endpoint.
8
+ */
9
+ export const ISettingConnector = new Token('@jupyterlab/coreutils:ISettingConnector', 'A service to connect to the settings endpoint.');
6
10
  /**
7
11
  * The setting registry token.
8
12
  */
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,EACxC;;wCAEsC,CACvC,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,iBAAiB,GAAG,IAAI,KAAK,CACxC,yCAAyC,EACzC,gDAAgD,CACjD,CAAC;AAEF;;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.4.0-beta.0",
3
+ "version": "4.4.0-beta.1",
4
4
  "description": "Settings registry for Jupyterlab",
5
5
  "homepage": "https://github.com/jupyterlab/jupyterlab",
6
6
  "bugs": {
@@ -36,8 +36,8 @@
36
36
  "watch": "tsc -b --watch"
37
37
  },
38
38
  "dependencies": {
39
- "@jupyterlab/nbformat": "^4.4.0-beta.0",
40
- "@jupyterlab/statedb": "^4.4.0-beta.0",
39
+ "@jupyterlab/nbformat": "^4.4.0-beta.1",
40
+ "@jupyterlab/statedb": "^4.4.0-beta.1",
41
41
  "@lumino/commands": "^2.3.1",
42
42
  "@lumino/coreutils": "^2.2.0",
43
43
  "@lumino/disposable": "^2.1.3",
@@ -47,7 +47,7 @@
47
47
  "json5": "^2.2.3"
48
48
  },
49
49
  "devDependencies": {
50
- "@jupyterlab/testing": "^4.4.0-beta.0",
50
+ "@jupyterlab/testing": "^4.4.0-beta.1",
51
51
  "@types/jest": "^29.2.0",
52
52
  "jest": "^29.2.0",
53
53
  "rimraf": "~5.0.5",
package/src/tokens.ts CHANGED
@@ -17,6 +17,14 @@ import { ISignal } from '@lumino/signaling';
17
17
  import { ISchemaValidator } from './settingregistry';
18
18
  import type { RJSFSchema, UiSchema } from '@rjsf/utils';
19
19
 
20
+ /**
21
+ * A service to connect to the settings endpoint.
22
+ */
23
+ export const ISettingConnector = new Token<ISettingConnector>(
24
+ '@jupyterlab/coreutils:ISettingConnector',
25
+ 'A service to connect to the settings endpoint.'
26
+ );
27
+
20
28
  /**
21
29
  * The setting registry token.
22
30
  */
@@ -27,6 +35,12 @@ export const ISettingRegistry = new Token<ISettingRegistry>(
27
35
  See "schemaDir" for more information.`
28
36
  );
29
37
 
38
+ /**
39
+ * The settings connector interface.
40
+ */
41
+ export interface ISettingConnector
42
+ extends IDataConnector<ISettingRegistry.IPlugin, string> {}
43
+
30
44
  /**
31
45
  * The settings registry interface.
32
46
  */