@jupyter/docprovider 3.0.0-beta.0 → 3.0.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/tokens.d.ts +4 -0
- package/lib/tokens.js +4 -0
- package/package.json +2 -2
package/lib/tokens.d.ts
CHANGED
|
@@ -7,6 +7,10 @@ import { IChatMessage } from './awareness';
|
|
|
7
7
|
* The collaborative drive.
|
|
8
8
|
*/
|
|
9
9
|
export declare const ICollaborativeDrive: Token<ICollaborativeDrive>;
|
|
10
|
+
/**
|
|
11
|
+
* The global awareness token.
|
|
12
|
+
*/
|
|
13
|
+
export declare const IGlobalAwareness: Token<import("y-protocols/awareness").Awareness>;
|
|
10
14
|
/**
|
|
11
15
|
* A document factory for registering shared models
|
|
12
16
|
*/
|
package/lib/tokens.js
CHANGED
|
@@ -5,3 +5,7 @@ import { Token } from '@lumino/coreutils';
|
|
|
5
5
|
* The collaborative drive.
|
|
6
6
|
*/
|
|
7
7
|
export const ICollaborativeDrive = new Token('@jupyter/collaboration-extension:ICollaborativeDrive');
|
|
8
|
+
/**
|
|
9
|
+
* The global awareness token.
|
|
10
|
+
*/
|
|
11
|
+
export const IGlobalAwareness = new Token('@jupyter/collaboration:IGlobalAwareness');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyter/docprovider",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.2",
|
|
4
4
|
"description": "JupyterLab - Document Provider",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyter-collaboration",
|
|
6
6
|
"bugs": {
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"watch": "tsc -b --watch"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@jupyter/ydoc": "^2.0.0",
|
|
44
|
+
"@jupyter/ydoc": "^2.0.0 || ^3.0.0-a3",
|
|
45
45
|
"@jupyterlab/apputils": "^4.2.0",
|
|
46
46
|
"@jupyterlab/cells": "^4.2.0",
|
|
47
47
|
"@jupyterlab/coreutils": "^6.2.0",
|