@jupyterlab/markdownviewer 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
@@ -4,5 +4,6 @@ import { Token } from '@lumino/coreutils';
4
4
  /**
5
5
  * The markdownviewer tracker token.
6
6
  */
7
- export const IMarkdownViewerTracker = new Token('@jupyterlab/markdownviewer:IMarkdownViewerTracker');
7
+ export const IMarkdownViewerTracker = new Token('@jupyterlab/markdownviewer:IMarkdownViewerTracker', `A widget tracker for markdown
8
+ document viewers. Use this if you want to iterate over and interact with rendered markdown documents.`);
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;AAG3D,OAAO,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAG1C;;GAEG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAAG,IAAI,KAAK,CAC7C,mDAAmD,CACpD,CAAC"}
1
+ {"version":3,"file":"tokens.js","sourceRoot":"","sources":["../src/tokens.ts"],"names":[],"mappings":"AAAA,0CAA0C;AAC1C,2DAA2D;AAG3D,OAAO,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAG1C;;GAEG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAAG,IAAI,KAAK,CAC7C,mDAAmD,EACnD;wGACsG,CACvG,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/markdownviewer",
3
- "version": "4.0.0-beta.1",
3
+ "version": "4.0.0-rc.0",
4
4
  "description": "JupyterLab - Markdown viewer Widget",
5
5
  "homepage": "https://github.com/jupyterlab/jupyterlab",
6
6
  "bugs": {
@@ -37,21 +37,21 @@
37
37
  "watch": "tsc -b --watch"
38
38
  },
39
39
  "dependencies": {
40
- "@jupyterlab/apputils": "^4.0.0-beta.1",
41
- "@jupyterlab/coreutils": "^6.0.0-beta.1",
42
- "@jupyterlab/docregistry": "^4.0.0-beta.1",
43
- "@jupyterlab/rendermime": "^4.0.0-beta.1",
44
- "@jupyterlab/toc": "^6.0.0-beta.1",
45
- "@jupyterlab/translation": "^4.0.0-beta.1",
46
- "@lumino/coreutils": "^2.0.0",
40
+ "@jupyterlab/apputils": "^4.0.0-rc.0",
41
+ "@jupyterlab/coreutils": "^6.0.0-rc.0",
42
+ "@jupyterlab/docregistry": "^4.0.0-rc.0",
43
+ "@jupyterlab/rendermime": "^4.0.0-rc.0",
44
+ "@jupyterlab/toc": "^6.0.0-rc.0",
45
+ "@jupyterlab/translation": "^4.0.0-rc.0",
46
+ "@lumino/coreutils": "^2.1.1",
47
47
  "@lumino/messaging": "^2.0.0",
48
- "@lumino/signaling": "^2.0.0",
49
- "@lumino/widgets": "^2.0.1"
48
+ "@lumino/signaling": "^2.1.1",
49
+ "@lumino/widgets": "^2.1.1"
50
50
  },
51
51
  "devDependencies": {
52
52
  "rimraf": "~3.0.0",
53
- "typedoc": "~0.23.25",
54
- "typescript": "~5.0.2"
53
+ "typedoc": "~0.24.1",
54
+ "typescript": "~5.0.4"
55
55
  },
56
56
  "publishConfig": {
57
57
  "access": "public"
package/src/tokens.ts CHANGED
@@ -9,7 +9,9 @@ import { MarkdownDocument } from './widget';
9
9
  * The markdownviewer tracker token.
10
10
  */
11
11
  export const IMarkdownViewerTracker = new Token<IMarkdownViewerTracker>(
12
- '@jupyterlab/markdownviewer:IMarkdownViewerTracker'
12
+ '@jupyterlab/markdownviewer:IMarkdownViewerTracker',
13
+ `A widget tracker for markdown
14
+ document viewers. Use this if you want to iterate over and interact with rendered markdown documents.`
13
15
  );
14
16
 
15
17
  /**