Skip to content

Commit c133317

Browse files
authored
Merge pull request #6314 from jtpio/update-lab
Update to JupyterLab 4.0.0a22
2 parents 8530301 + fd1da9a commit c133317

File tree

24 files changed

+1397
-1350
lines changed

24 files changed

+1397
-1350
lines changed

.github/actions/build-dist/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ runs:
99
- name: Install dependencies
1010
shell: bash
1111
run: |
12-
python -m pip install --upgrade jupyter_packaging~=0.10 "jupyterlab>=4.0.0a20,<5" build
12+
python -m pip install --upgrade jupyter_packaging~=0.10 "jupyterlab>=4.0.0a22,<5" build
1313
1414
- name: Build pypi distributions
1515
shell: bash

.github/workflows/buildutils.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
- name: Install dependencies
2727
run: |
28-
python -m pip install -U "jupyterlab>=4.0.0a20,<5" jupyter_packaging~=0.10
28+
python -m pip install -U "jupyterlab>=4.0.0a22,<5" jupyter_packaging~=0.10
2929
jlpm
3030
jlpm run build
3131
@@ -78,6 +78,6 @@ jobs:
7878

7979
- name: Install dependencies
8080
run: |
81-
python -m pip install -U "jupyterlab>=4.0.0a20,<5" jupyter_packaging~=0.10 pip
81+
python -m pip install -U "jupyterlab>=4.0.0a22,<5" jupyter_packaging~=0.10 pip
8282
jlpm
8383
jlpm run build

app/index.js

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -95,12 +95,14 @@ async function main() {
9595
].includes(id)
9696
),
9797
require('@jupyterlab/completer-extension').default.filter(({ id }) =>
98-
['@jupyterlab/completer-extension:manager'].includes(id)
98+
[
99+
'@jupyterlab/completer-extension:base-service',
100+
'@jupyterlab/completer-extension:tracker'
101+
].includes(id)
99102
),
100103
require('@jupyterlab/console-extension').default.filter(({ id }) =>
101104
[
102105
'@jupyterlab/console-extension:completer',
103-
'@jupyterlab/console-extension:cursor-position',
104106
'@jupyterlab/console-extension:factory',
105107
'@jupyterlab/console-extension:foreign',
106108
'@jupyterlab/console-extension:tracker'
@@ -114,7 +116,7 @@ async function main() {
114116
),
115117
require('@jupyterlab/docprovider-extension'),
116118
require('@jupyterlab/documentsearch-extension').default.filter(({ id }) =>
117-
['@jupyterlab/documentsearch:plugin'].includes(id)
119+
['@jupyterlab/documentsearch-extension:plugin'].includes(id)
118120
),
119121
require('@jupyterlab/filebrowser-extension').default.filter(({ id }) =>
120122
['@jupyterlab/filebrowser-extension:factory'].includes(id)
@@ -167,8 +169,8 @@ async function main() {
167169
}
168170
case 'notebooks': {
169171
baseMods = baseMods.concat([
170-
require('@jupyterlab/completer-extension').default.filter(({ id }) =>
171-
['@jupyterlab/completer-extension:notebooks'].includes(id)
172+
require('@jupyterlab/notebook-extension').default.filter(({ id }) =>
173+
['@jupyterlab/notebook-extension:completer'].includes(id)
172174
),
173175
require('@jupyterlab/tooltip-extension').default.filter(({ id }) =>
174176
[
@@ -181,9 +183,6 @@ async function main() {
181183
}
182184
case 'consoles': {
183185
baseMods = baseMods.concat([
184-
require('@jupyterlab/completer-extension').default.filter(({ id }) =>
185-
['@jupyterlab/completer-extension:consoles'].includes(id)
186-
),
187186
require('@jupyterlab/tooltip-extension').default.filter(({ id }) =>
188187
[
189188
'@jupyterlab/tooltip-extension:manager',
@@ -195,8 +194,8 @@ async function main() {
195194
}
196195
case 'edit': {
197196
baseMods = baseMods.concat([
198-
require('@jupyterlab/completer-extension').default.filter(({ id }) =>
199-
['@jupyterlab/completer-extension:files'].includes(id)
197+
require('@jupyterlab/fileeditor-extension').default.filter(({ id }) =>
198+
['@jupyterlab/fileeditor-extension:completer'].includes(id)
200199
),
201200
require('@jupyterlab/filebrowser-extension').default.filter(({ id }) =>
202201
['@jupyterlab/filebrowser-extension:browser'].includes(id)

app/package.json

Lines changed: 86 additions & 86 deletions
Original file line numberDiff line numberDiff line change
@@ -21,61 +21,61 @@
2121
"@jupyter-notebook/terminal-extension": "~7.0.0-alpha.1",
2222
"@jupyter-notebook/tree-extension": "~7.0.0-alpha.1",
2323
"@jupyter-notebook/ui-components": "~7.0.0-alpha.1",
24-
"@jupyterlab/application": "~4.0.0-alpha.5",
25-
"@jupyterlab/application-extension": "~4.0.0-alpha.5",
26-
"@jupyterlab/apputils": "~4.0.0-alpha.5",
27-
"@jupyterlab/apputils-extension": "~4.0.0-alpha.5",
28-
"@jupyterlab/celltags": "~4.0.0-alpha.5",
29-
"@jupyterlab/codeeditor": "~4.0.0-alpha.5",
30-
"@jupyterlab/codemirror-extension": "~4.0.0-alpha.5",
31-
"@jupyterlab/completer": "~4.0.0-alpha.5",
32-
"@jupyterlab/completer-extension": "~4.0.0-alpha.5",
33-
"@jupyterlab/console": "~4.0.0-alpha.5",
34-
"@jupyterlab/console-extension": "~4.0.0-alpha.5",
35-
"@jupyterlab/coreutils": "~6.0.0-alpha.5",
36-
"@jupyterlab/docmanager": "~4.0.0-alpha.5",
37-
"@jupyterlab/docmanager-extension": "~4.0.0-alpha.5",
38-
"@jupyterlab/docprovider": "~4.0.0-alpha.5",
39-
"@jupyterlab/docprovider-extension": "~4.0.0-alpha.5",
40-
"@jupyterlab/documentsearch": "~4.0.0-alpha.5",
41-
"@jupyterlab/documentsearch-extension": "~4.0.0-alpha.5",
42-
"@jupyterlab/filebrowser": "~4.0.0-alpha.5",
43-
"@jupyterlab/filebrowser-extension": "~4.0.0-alpha.5",
44-
"@jupyterlab/fileeditor": "~4.0.0-alpha.5",
45-
"@jupyterlab/fileeditor-extension": "~4.0.0-alpha.5",
46-
"@jupyterlab/hub-extension": "~4.0.0-alpha.5",
47-
"@jupyterlab/javascript-extension": "~4.0.0-alpha.5",
48-
"@jupyterlab/json-extension": "~4.0.0-alpha.5",
49-
"@jupyterlab/mainmenu": "~4.0.0-alpha.5",
50-
"@jupyterlab/mainmenu-extension": "~4.0.0-alpha.5",
51-
"@jupyterlab/mathjax2-extension": "~4.0.0-alpha.5",
52-
"@jupyterlab/notebook": "~4.0.0-alpha.5",
53-
"@jupyterlab/notebook-extension": "~4.0.0-alpha.5",
54-
"@jupyterlab/observables": "~5.0.0-alpha.5",
55-
"@jupyterlab/outputarea": "~4.0.0-alpha.5",
56-
"@jupyterlab/pdf-extension": "~4.0.0-alpha.5",
57-
"@jupyterlab/rendermime": "~4.0.0-alpha.5",
58-
"@jupyterlab/rendermime-extension": "~4.0.0-alpha.5",
59-
"@jupyterlab/rendermime-interfaces": "~4.0.0-alpha.5",
60-
"@jupyterlab/running-extension": "~4.0.0-alpha.5",
61-
"@jupyterlab/services": "~7.0.0-alpha.5",
62-
"@jupyterlab/settingregistry": "~4.0.0-alpha.5",
63-
"@jupyterlab/shared-models": "~4.0.0-alpha.5",
64-
"@jupyterlab/shortcuts-extension": "~4.0.0-alpha.5",
65-
"@jupyterlab/statedb": "~4.0.0-alpha.5",
66-
"@jupyterlab/statusbar": "~4.0.0-alpha.5",
67-
"@jupyterlab/terminal": "~4.0.0-alpha.5",
68-
"@jupyterlab/terminal-extension": "~4.0.0-alpha.5",
69-
"@jupyterlab/theme-dark-extension": "~4.0.0-alpha.5",
70-
"@jupyterlab/theme-light-extension": "~4.0.0-alpha.5",
71-
"@jupyterlab/tooltip": "~4.0.0-alpha.5",
72-
"@jupyterlab/tooltip-extension": "~4.0.0-alpha.5",
73-
"@jupyterlab/translation": "~4.0.0-alpha.5",
74-
"@jupyterlab/translation-extension": "~4.0.0-alpha.5",
75-
"@jupyterlab/ui-components": "~4.0.0-alpha.20",
76-
"@jupyterlab/user": "~4.0.0-alpha.5",
77-
"@jupyterlab/user-extension": "~4.0.0-alpha.5",
78-
"@jupyterlab/vega5-extension": "~4.0.0-alpha.5",
24+
"@jupyterlab/application": "~4.0.0-alpha.7",
25+
"@jupyterlab/application-extension": "~4.0.0-alpha.7",
26+
"@jupyterlab/apputils": "~4.0.0-alpha.7",
27+
"@jupyterlab/apputils-extension": "~4.0.0-alpha.7",
28+
"@jupyterlab/celltags": "~4.0.0-alpha.7",
29+
"@jupyterlab/codeeditor": "~4.0.0-alpha.7",
30+
"@jupyterlab/codemirror-extension": "~4.0.0-alpha.7",
31+
"@jupyterlab/completer": "~4.0.0-alpha.7",
32+
"@jupyterlab/completer-extension": "~4.0.0-alpha.7",
33+
"@jupyterlab/console": "~4.0.0-alpha.7",
34+
"@jupyterlab/console-extension": "~4.0.0-alpha.7",
35+
"@jupyterlab/coreutils": "~6.0.0-alpha.7",
36+
"@jupyterlab/docmanager": "~4.0.0-alpha.7",
37+
"@jupyterlab/docmanager-extension": "~4.0.0-alpha.7",
38+
"@jupyterlab/docprovider": "~4.0.0-alpha.7",
39+
"@jupyterlab/docprovider-extension": "~4.0.0-alpha.7",
40+
"@jupyterlab/documentsearch": "~4.0.0-alpha.7",
41+
"@jupyterlab/documentsearch-extension": "~4.0.0-alpha.7",
42+
"@jupyterlab/filebrowser": "~4.0.0-alpha.7",
43+
"@jupyterlab/filebrowser-extension": "~4.0.0-alpha.7",
44+
"@jupyterlab/fileeditor": "~4.0.0-alpha.7",
45+
"@jupyterlab/fileeditor-extension": "~4.0.0-alpha.7",
46+
"@jupyterlab/hub-extension": "~4.0.0-alpha.7",
47+
"@jupyterlab/javascript-extension": "~4.0.0-alpha.7",
48+
"@jupyterlab/json-extension": "~4.0.0-alpha.7",
49+
"@jupyterlab/mainmenu": "~4.0.0-alpha.7",
50+
"@jupyterlab/mainmenu-extension": "~4.0.0-alpha.7",
51+
"@jupyterlab/mathjax2-extension": "~4.0.0-alpha.7",
52+
"@jupyterlab/notebook": "~4.0.0-alpha.7",
53+
"@jupyterlab/notebook-extension": "~4.0.0-alpha.7",
54+
"@jupyterlab/observables": "~5.0.0-alpha.7",
55+
"@jupyterlab/outputarea": "~4.0.0-alpha.7",
56+
"@jupyterlab/pdf-extension": "~4.0.0-alpha.7",
57+
"@jupyterlab/rendermime": "~4.0.0-alpha.7",
58+
"@jupyterlab/rendermime-extension": "~4.0.0-alpha.7",
59+
"@jupyterlab/rendermime-interfaces": "~4.0.0-alpha.7",
60+
"@jupyterlab/running-extension": "~4.0.0-alpha.7",
61+
"@jupyterlab/services": "~7.0.0-alpha.7",
62+
"@jupyterlab/settingregistry": "~4.0.0-alpha.7",
63+
"@jupyterlab/shared-models": "~4.0.0-alpha.7",
64+
"@jupyterlab/shortcuts-extension": "~4.0.0-alpha.7",
65+
"@jupyterlab/statedb": "~4.0.0-alpha.7",
66+
"@jupyterlab/statusbar": "~4.0.0-alpha.7",
67+
"@jupyterlab/terminal": "~4.0.0-alpha.7",
68+
"@jupyterlab/terminal-extension": "~4.0.0-alpha.7",
69+
"@jupyterlab/theme-dark-extension": "~4.0.0-alpha.7",
70+
"@jupyterlab/theme-light-extension": "~4.0.0-alpha.7",
71+
"@jupyterlab/tooltip": "~4.0.0-alpha.7",
72+
"@jupyterlab/tooltip-extension": "~4.0.0-alpha.7",
73+
"@jupyterlab/translation": "~4.0.0-alpha.7",
74+
"@jupyterlab/translation-extension": "~4.0.0-alpha.7",
75+
"@jupyterlab/ui-components": "~4.0.0-alpha.22",
76+
"@jupyterlab/user": "~4.0.0-alpha.7",
77+
"@jupyterlab/user-extension": "~4.0.0-alpha.7",
78+
"@jupyterlab/vega5-extension": "~4.0.0-alpha.7",
7979
"@lumino/algorithm": "~1.9.1",
8080
"@lumino/application": "~1.28.1",
8181
"@lumino/commands": "~1.20.0",
@@ -103,39 +103,39 @@
103103
"@jupyter-notebook/terminal-extension": "^7.0.0-alpha.1",
104104
"@jupyter-notebook/tree-extension": "^7.0.0-alpha.1",
105105
"@jupyter-notebook/ui-components": "^7.0.0-alpha.1",
106-
"@jupyterlab/application-extension": "^4.0.0-alpha.5",
107-
"@jupyterlab/apputils-extension": "^4.0.0-alpha.5",
108-
"@jupyterlab/celltags": "^4.0.0-alpha.5",
109-
"@jupyterlab/codemirror-extension": "^4.0.0-alpha.5",
110-
"@jupyterlab/completer-extension": "^4.0.0-alpha.5",
111-
"@jupyterlab/console-extension": "^4.0.0-alpha.5",
112-
"@jupyterlab/coreutils": "~6.0.0-alpha.5",
113-
"@jupyterlab/docmanager-extension": "^4.0.0-alpha.5",
114-
"@jupyterlab/docprovider-extension": "^4.0.0-alpha.5",
115-
"@jupyterlab/documentsearch-extension": "^4.0.0-alpha.5",
116-
"@jupyterlab/filebrowser-extension": "^4.0.0-alpha.5",
117-
"@jupyterlab/fileeditor-extension": "^4.0.0-alpha.5",
118-
"@jupyterlab/hub-extension": "^4.0.0-alpha.5",
119-
"@jupyterlab/javascript-extension": "^4.0.0-alpha.5",
120-
"@jupyterlab/json-extension": "^4.0.0-alpha.5",
121-
"@jupyterlab/mainmenu-extension": "^4.0.0-alpha.5",
122-
"@jupyterlab/mathjax2-extension": "^4.0.0-alpha.5",
123-
"@jupyterlab/notebook-extension": "^4.0.0-alpha.5",
124-
"@jupyterlab/pdf-extension": "^4.0.0-alpha.5",
125-
"@jupyterlab/rendermime-extension": "^4.0.0-alpha.5",
126-
"@jupyterlab/running-extension": "^4.0.0-alpha.5",
127-
"@jupyterlab/shortcuts-extension": "^4.0.0-alpha.5",
128-
"@jupyterlab/terminal-extension": "^4.0.0-alpha.5",
129-
"@jupyterlab/theme-dark-extension": "^4.0.0-alpha.5",
130-
"@jupyterlab/theme-light-extension": "^4.0.0-alpha.5",
131-
"@jupyterlab/tooltip-extension": "^4.0.0-alpha.5",
132-
"@jupyterlab/translation-extension": "^4.0.0-alpha.5",
133-
"@jupyterlab/user-extension": "^4.0.0-alpha.5",
134-
"@jupyterlab/vega5-extension": "^4.0.0-alpha.5"
106+
"@jupyterlab/application-extension": "^4.0.0-alpha.7",
107+
"@jupyterlab/apputils-extension": "^4.0.0-alpha.7",
108+
"@jupyterlab/celltags": "^4.0.0-alpha.7",
109+
"@jupyterlab/codemirror-extension": "^4.0.0-alpha.7",
110+
"@jupyterlab/completer-extension": "^4.0.0-alpha.7",
111+
"@jupyterlab/console-extension": "^4.0.0-alpha.7",
112+
"@jupyterlab/coreutils": "~6.0.0-alpha.7",
113+
"@jupyterlab/docmanager-extension": "^4.0.0-alpha.7",
114+
"@jupyterlab/docprovider-extension": "^4.0.0-alpha.7",
115+
"@jupyterlab/documentsearch-extension": "^4.0.0-alpha.7",
116+
"@jupyterlab/filebrowser-extension": "^4.0.0-alpha.7",
117+
"@jupyterlab/fileeditor-extension": "^4.0.0-alpha.7",
118+
"@jupyterlab/hub-extension": "^4.0.0-alpha.7",
119+
"@jupyterlab/javascript-extension": "^4.0.0-alpha.7",
120+
"@jupyterlab/json-extension": "^4.0.0-alpha.7",
121+
"@jupyterlab/mainmenu-extension": "^4.0.0-alpha.7",
122+
"@jupyterlab/mathjax2-extension": "^4.0.0-alpha.7",
123+
"@jupyterlab/notebook-extension": "^4.0.0-alpha.7",
124+
"@jupyterlab/pdf-extension": "^4.0.0-alpha.7",
125+
"@jupyterlab/rendermime-extension": "^4.0.0-alpha.7",
126+
"@jupyterlab/running-extension": "^4.0.0-alpha.7",
127+
"@jupyterlab/shortcuts-extension": "^4.0.0-alpha.7",
128+
"@jupyterlab/terminal-extension": "^4.0.0-alpha.7",
129+
"@jupyterlab/theme-dark-extension": "^4.0.0-alpha.7",
130+
"@jupyterlab/theme-light-extension": "^4.0.0-alpha.7",
131+
"@jupyterlab/tooltip-extension": "^4.0.0-alpha.7",
132+
"@jupyterlab/translation-extension": "^4.0.0-alpha.7",
133+
"@jupyterlab/user-extension": "^4.0.0-alpha.7",
134+
"@jupyterlab/vega5-extension": "^4.0.0-alpha.7"
135135
},
136136
"devDependencies": {
137-
"@jupyterlab/builder": "^4.0.0-alpha.5",
138-
"@jupyterlab/buildutils": "^4.0.0-alpha.5",
137+
"@jupyterlab/builder": "^4.0.0-alpha.7",
138+
"@jupyterlab/buildutils": "^4.0.0-alpha.7",
139139
"@types/rimraf": "^3.0.0",
140140
"css-loader": "~5.0.1",
141141
"file-loader": "~5.0.2",

buildutils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"watch": "tsc -w --listEmittedFiles"
3131
},
3232
"dependencies": {
33-
"@jupyterlab/buildutils": "^4.0.0-alpha.5",
33+
"@jupyterlab/buildutils": "^4.0.0-alpha.7",
3434
"commander": "^6.2.0",
3535
"fs-extra": "^9.1.0",
3636
"typescript": "~4.1.3"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
}
4646
},
4747
"devDependencies": {
48-
"@jupyterlab/buildutils": "^4.0.0-alpha.5",
48+
"@jupyterlab/buildutils": "^4.0.0-alpha.7",
4949
"@typescript-eslint/eslint-plugin": "^4.2.0",
5050
"@typescript-eslint/parser": "^4.2.0",
5151
"eslint": "^7.10.0",

packages/application-extension/package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -41,18 +41,18 @@
4141
"dependencies": {
4242
"@jupyter-notebook/application": "^7.0.0-alpha.1",
4343
"@jupyter-notebook/ui-components": "^7.0.0-alpha.1",
44-
"@jupyterlab/application": "^4.0.0-alpha.5",
45-
"@jupyterlab/apputils": "^4.0.0-alpha.5",
46-
"@jupyterlab/celltags": "^4.0.0-alpha.5",
47-
"@jupyterlab/codeeditor": "^4.0.0-alpha.5",
48-
"@jupyterlab/codemirror": "^4.0.0-alpha.5",
49-
"@jupyterlab/console": "^4.0.0-alpha.5",
50-
"@jupyterlab/coreutils": "^6.0.0-alpha.5",
51-
"@jupyterlab/docmanager": "^4.0.0-alpha.5",
52-
"@jupyterlab/docregistry": "^4.0.0-alpha.5",
53-
"@jupyterlab/mainmenu": "^4.0.0-alpha.5",
54-
"@jupyterlab/settingregistry": "^4.0.0-alpha.5",
55-
"@jupyterlab/translation": "^4.0.0-alpha.4",
44+
"@jupyterlab/application": "^4.0.0-alpha.7",
45+
"@jupyterlab/apputils": "^4.0.0-alpha.7",
46+
"@jupyterlab/celltags": "^4.0.0-alpha.7",
47+
"@jupyterlab/codeeditor": "^4.0.0-alpha.7",
48+
"@jupyterlab/codemirror": "^4.0.0-alpha.7",
49+
"@jupyterlab/console": "^4.0.0-alpha.7",
50+
"@jupyterlab/coreutils": "^6.0.0-alpha.7",
51+
"@jupyterlab/docmanager": "^4.0.0-alpha.7",
52+
"@jupyterlab/docregistry": "^4.0.0-alpha.7",
53+
"@jupyterlab/mainmenu": "^4.0.0-alpha.7",
54+
"@jupyterlab/settingregistry": "^4.0.0-alpha.7",
55+
"@jupyterlab/translation": "^4.0.0-alpha.7",
5656
"@lumino/coreutils": "^1.12.0",
5757
"@lumino/disposable": "^1.10.1",
5858
"@lumino/widgets": "^1.31.1"

packages/application/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@
4343
"watch": "tsc -b --watch"
4444
},
4545
"dependencies": {
46-
"@jupyterlab/application": "^4.0.0-alpha.5",
47-
"@jupyterlab/coreutils": "^6.0.0-alpha.5",
48-
"@jupyterlab/docregistry": "^4.0.0-alpha.5",
49-
"@jupyterlab/rendermime-interfaces": "^4.0.0-alpha.5",
50-
"@jupyterlab/ui-components": "^4.0.0-alpha.19",
46+
"@jupyterlab/application": "^4.0.0-alpha.7",
47+
"@jupyterlab/coreutils": "^6.0.0-alpha.7",
48+
"@jupyterlab/docregistry": "^4.0.0-alpha.7",
49+
"@jupyterlab/rendermime-interfaces": "^4.0.0-alpha.7",
50+
"@jupyterlab/ui-components": "^4.0.0-alpha.22",
5151
"@lumino/algorithm": "^1.9.1",
5252
"@lumino/coreutils": "^1.12.0",
5353
"@lumino/messaging": "^1.10.1",
@@ -58,7 +58,7 @@
5858
"devDependencies": {
5959
"@babel/core": "^7.11.6",
6060
"@babel/preset-env": "^7.12.1",
61-
"@jupyterlab/testutils": "^4.0.0-alpha.5",
61+
"@jupyterlab/testutils": "^4.0.0-alpha.7",
6262
"@types/jest": "^26.0.10",
6363
"jest": "^26.4.2",
6464
"rimraf": "~3.0.0",

packages/console-extension/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@
3939
"watch": "tsc -b --watch"
4040
},
4141
"dependencies": {
42-
"@jupyterlab/application": "^4.0.0-alpha.5",
43-
"@jupyterlab/console": "^4.0.0-alpha.5",
44-
"@jupyterlab/coreutils": "^6.0.0-alpha.5",
42+
"@jupyterlab/application": "^4.0.0-alpha.7",
43+
"@jupyterlab/console": "^4.0.0-alpha.7",
44+
"@jupyterlab/coreutils": "^6.0.0-alpha.7",
4545
"@lumino/algorithm": "^1.9.1"
4646
},
4747
"devDependencies": {

packages/docmanager-extension/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@
3939
"watch": "tsc -b --watch"
4040
},
4141
"dependencies": {
42-
"@jupyterlab/application": "^4.0.0-alpha.5",
43-
"@jupyterlab/coreutils": "^6.0.0-alpha.5",
44-
"@jupyterlab/docmanager": "^4.0.0-alpha.5",
45-
"@jupyterlab/docregistry": "^4.0.0-alpha.5",
46-
"@jupyterlab/services": "^7.0.0-alpha.5",
42+
"@jupyterlab/application": "^4.0.0-alpha.7",
43+
"@jupyterlab/coreutils": "^6.0.0-alpha.7",
44+
"@jupyterlab/docmanager": "^4.0.0-alpha.7",
45+
"@jupyterlab/docregistry": "^4.0.0-alpha.7",
46+
"@jupyterlab/services": "^7.0.0-alpha.7",
4747
"@lumino/algorithm": "^1.9.1"
4848
},
4949
"devDependencies": {

0 commit comments

Comments
 (0)