jupyterlab-chat 0.21.0 → 0.22.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/token.d.ts +1 -2
- package/package.json +4 -4
- package/src/token.ts +3 -3
package/lib/token.d.ts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
import { IConfig, IActiveCellManager, ISelectionWatcher } from '@jupyter/chat';
|
|
1
|
+
import { IConfig, IActiveCellManager, ISelectionWatcher, MultiChatPanel } from '@jupyter/chat';
|
|
2
2
|
import { DocumentRegistry } from '@jupyterlab/docregistry';
|
|
3
3
|
import { Token } from '@lumino/coreutils';
|
|
4
4
|
import { ISignal } from '@lumino/signaling';
|
|
5
|
-
import { MultiChatPanel } from '@jupyter/chat';
|
|
6
5
|
import { ChatWidgetFactory } from './factory';
|
|
7
6
|
/**
|
|
8
7
|
* The file type for a chat document.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jupyterlab-chat",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.22.0",
|
|
4
4
|
"description": "The library to build a chat based on shared document",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jupyter",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"url": "https://github.com/jupyterlab/jupyter-chat.git"
|
|
30
30
|
},
|
|
31
31
|
"scripts": {
|
|
32
|
-
"build": "jlpm build:lib",
|
|
33
|
-
"build:prod": "jlpm clean && jlpm build:lib:prod",
|
|
32
|
+
"build": "echo 'Building jupyterlab-chat' && jlpm build:lib",
|
|
33
|
+
"build:prod": "echo 'Building jupyterlab-chat' && jlpm clean && jlpm build:lib:prod",
|
|
34
34
|
"build:lib": "tsc --sourceMap",
|
|
35
35
|
"build:lib:prod": "tsc",
|
|
36
36
|
"clean": "jlpm clean:lib",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"watch:src": "tsc -w --sourceMap"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@jupyter/chat": "^0.
|
|
45
|
+
"@jupyter/chat": "^0.22.0",
|
|
46
46
|
"@jupyter/collaborative-drive": "^4.0.2",
|
|
47
47
|
"@jupyter/ydoc": "^2.0.0 || ^3.0.0",
|
|
48
48
|
"@jupyterlab/application": "^4.2.0",
|
package/src/token.ts
CHANGED
|
@@ -5,14 +5,14 @@
|
|
|
5
5
|
|
|
6
6
|
import {
|
|
7
7
|
IConfig,
|
|
8
|
-
chatIcon,
|
|
9
8
|
IActiveCellManager,
|
|
10
|
-
ISelectionWatcher
|
|
9
|
+
ISelectionWatcher,
|
|
10
|
+
MultiChatPanel,
|
|
11
|
+
chatIcon
|
|
11
12
|
} from '@jupyter/chat';
|
|
12
13
|
import { DocumentRegistry } from '@jupyterlab/docregistry';
|
|
13
14
|
import { Token } from '@lumino/coreutils';
|
|
14
15
|
import { ISignal } from '@lumino/signaling';
|
|
15
|
-
import { MultiChatPanel } from '@jupyter/chat';
|
|
16
16
|
import { ChatWidgetFactory } from './factory';
|
|
17
17
|
|
|
18
18
|
/**
|