@textbus/collaborate 4.0.0-alpha.7 → 4.0.0-alpha.72

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,2 +1,3 @@
1
1
  export * from './collaborate';
2
2
  export * from './collaborate-module';
3
+ export * from './user-activity';
@@ -0,0 +1,23 @@
1
+ import { Observable } from '@tanbo/stream';
2
+ import { Selection, SelectionPaths } from '@textbus/core';
3
+ import { WebsocketProvider } from 'y-websocket';
4
+ export interface UserInfo {
5
+ username: string;
6
+ color: string;
7
+ id: string;
8
+ }
9
+ export interface ActivityInfo extends UserInfo {
10
+ selection: SelectionPaths;
11
+ }
12
+ export declare class UserActivity {
13
+ private websocketProvider;
14
+ private selection;
15
+ onStateChange: Observable<ActivityInfo[]>;
16
+ onUserChange: Observable<UserInfo[]>;
17
+ private stateChangeEvent;
18
+ private userChangeEvent;
19
+ private subscription;
20
+ constructor(websocketProvider: WebsocketProvider, selection: Selection);
21
+ init(userinfo: UserInfo): void;
22
+ destroy(): void;
23
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@textbus/collaborate",
3
- "version": "4.0.0-alpha.7",
3
+ "version": "4.0.0-alpha.72",
4
4
  "description": "Textbus is a rich text editor and framework that is highly customizable and extensible to achieve rich wysiwyg effects.",
5
5
  "main": "./bundles/index.js",
6
6
  "module": "./bundles/index.esm.js",
@@ -25,12 +25,11 @@
25
25
  "typescript editor"
26
26
  ],
27
27
  "dependencies": {
28
- "@tanbo/stream": "^1.2.0",
29
- "@textbus/core": "^4.0.0-alpha.7",
30
- "@viewfly/core": "^0.2.4",
31
- "reflect-metadata": "^0.1.13",
32
- "y-protocols": "^1.0.5",
33
- "yjs": "^13.6.7"
28
+ "@tanbo/stream": "^1.2.5",
29
+ "@textbus/core": "^4.0.0-alpha.72",
30
+ "@viewfly/core": "^1.0.0-alpha.18",
31
+ "y-websocket": "^1.4.3",
32
+ "yjs": "^13.6.14"
34
33
  },
35
34
  "devDependencies": {
36
35
  "@rollup/plugin-commonjs": "^23.0.2",
@@ -50,5 +49,5 @@
50
49
  "bugs": {
51
50
  "url": "https://github.com/textbus/textbus.git/issues"
52
51
  },
53
- "gitHead": "b2f485e1177b20e88d302933760e741118ff8765"
52
+ "gitHead": "96dde41ca6db677514329636290f0f1afe5e9806"
54
53
  }