@jupyterlab/property-inspector 4.3.0-beta.0 → 4.3.0-beta.2

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/token.js CHANGED
@@ -4,5 +4,5 @@ import { Token } from '@lumino/coreutils';
4
4
  /**
5
5
  * The property inspector provider token.
6
6
  */
7
- export const IPropertyInspectorProvider = new Token('@jupyterlab/property-inspector:IPropertyInspectorProvider', 'A service to registry new widget in the property inspector side panel.');
7
+ export const IPropertyInspectorProvider = new Token('@jupyterlab/property-inspector:IPropertyInspectorProvider', 'A service to register new widgets in the property inspector side panel.');
8
8
  //# sourceMappingURL=token.js.map
package/lib/token.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"token.js","sourceRoot":"","sources":["../src/token.ts"],"names":[],"mappings":"AAAA,0CAA0C;AAC1C,2DAA2D;AAE3D,OAAO,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAkD1C;;GAEG;AACH,MAAM,CAAC,MAAM,0BAA0B,GAAG,IAAI,KAAK,CACjD,2DAA2D,EAC3D,wEAAwE,CACzE,CAAC"}
1
+ {"version":3,"file":"token.js","sourceRoot":"","sources":["../src/token.ts"],"names":[],"mappings":"AAAA,0CAA0C;AAC1C,2DAA2D;AAE3D,OAAO,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAkD1C;;GAEG;AACH,MAAM,CAAC,MAAM,0BAA0B,GAAG,IAAI,KAAK,CACjD,2DAA2D,EAC3D,yEAAyE,CAC1E,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/property-inspector",
3
- "version": "4.3.0-beta.0",
3
+ "version": "4.3.0-beta.2",
4
4
  "description": "A property inspector display for widgets",
5
5
  "homepage": "https://github.com/jupyterlab/jupyterlab",
6
6
  "bugs": {
@@ -34,9 +34,9 @@
34
34
  "watch": "tsc -w --listEmittedFiles"
35
35
  },
36
36
  "dependencies": {
37
- "@jupyterlab/application": "^4.3.0-beta.0",
38
- "@jupyterlab/translation": "^4.3.0-beta.0",
39
- "@jupyterlab/ui-components": "^4.3.0-beta.0",
37
+ "@jupyterlab/application": "^4.3.0-beta.2",
38
+ "@jupyterlab/translation": "^4.3.0-beta.2",
39
+ "@jupyterlab/ui-components": "^4.3.0-beta.2",
40
40
  "@lumino/coreutils": "^2.1.2",
41
41
  "@lumino/disposable": "^2.1.2",
42
42
  "@lumino/signaling": "^2.1.2",
package/src/token.ts CHANGED
@@ -56,5 +56,5 @@ export interface IPropertyInspectorProvider {
56
56
  */
57
57
  export const IPropertyInspectorProvider = new Token<IPropertyInspectorProvider>(
58
58
  '@jupyterlab/property-inspector:IPropertyInspectorProvider',
59
- 'A service to registry new widget in the property inspector side panel.'
59
+ 'A service to register new widgets in the property inspector side panel.'
60
60
  );