Skip to content

Commit

Permalink
Add the extension manager (#6747)
Browse files Browse the repository at this point in the history
* Add the extension manager

* Enable the extension manager on tree only
  • Loading branch information
jtpio committed Feb 28, 2023
1 parent 2e4886f commit f9e427c
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 1 deletion.
5 changes: 5 additions & 0 deletions app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@
"@jupyterlab/docmanager-extension": "~4.0.0-alpha.19",
"@jupyterlab/documentsearch": "~4.0.0-alpha.19",
"@jupyterlab/documentsearch-extension": "~4.0.0-alpha.19",
"@jupyterlab/extensionmanager": "~4.0.0-alpha.19",
"@jupyterlab/extensionmanager-extension": "~4.0.0-alpha.19",
"@jupyterlab/filebrowser": "~4.0.0-alpha.19",
"@jupyterlab/filebrowser-extension": "~4.0.0-alpha.19",
"@jupyterlab/fileeditor": "~4.0.0-alpha.19",
Expand Down Expand Up @@ -128,6 +130,7 @@
"@jupyterlab/debugger-extension": "^4.0.0-alpha.19",
"@jupyterlab/docmanager-extension": "^4.0.0-alpha.19",
"@jupyterlab/documentsearch-extension": "^4.0.0-alpha.19",
"@jupyterlab/extensionmanager-extension": "^4.0.0-alpha.19",
"@jupyterlab/filebrowser-extension": "^4.0.0-alpha.19",
"@jupyterlab/fileeditor-extension": "^4.0.0-alpha.19",
"@jupyterlab/htmlviewer-extension": "^4.0.0-alpha.19",
Expand Down Expand Up @@ -259,6 +262,7 @@
"@jupyterlab/hub-extension": true
},
"/tree": {
"@jupyterlab/extensionmanager-extension": true,
"@jupyterlab/filebrowser-extension": [
"@jupyterlab/filebrowser-extension:browser",
"@jupyterlab/filebrowser-extension:download",
Expand Down Expand Up @@ -330,6 +334,7 @@
"@jupyterlab/debugger",
"@jupyterlab/docmanager",
"@jupyterlab/documentsearch",
"@jupyterlab/extensionmanager",
"@jupyterlab/filebrowser",
"@jupyterlab/fileeditor",
"@jupyterlab/htmlviewer",
Expand Down
38 changes: 37 additions & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2212,6 +2212,35 @@
"@lumino/widgets" "^2.0.0-beta.1"
react "^18.2.0"

"@jupyterlab/extensionmanager-extension@^4.0.0-alpha.19":
version "4.0.0-alpha.19"
resolved "https://registry.yarnpkg.com/@jupyterlab/extensionmanager-extension/-/extensionmanager-extension-4.0.0-alpha.19.tgz#953e21205c4fb541b4303d6913e6eefe4ac7e57a"
integrity sha512-4Vdq8HfoHTP7AOz7PMD13e2XKvMDikFTkZXVuxff+Z8rcrEKI/Qsk6WbCTy+gAbCBG1e0CdUE2hNl8+qe4gxYQ==
dependencies:
"@jupyterlab/application" "^4.0.0-alpha.19"
"@jupyterlab/apputils" "^4.0.0-alpha.19"
"@jupyterlab/extensionmanager" "^4.0.0-alpha.19"
"@jupyterlab/settingregistry" "^4.0.0-alpha.19"
"@jupyterlab/translation" "^4.0.0-alpha.19"
"@jupyterlab/ui-components" "^4.0.0-alpha.34"

"@jupyterlab/extensionmanager@^4.0.0-alpha.19":
version "4.0.0-alpha.19"
resolved "https://registry.yarnpkg.com/@jupyterlab/extensionmanager/-/extensionmanager-4.0.0-alpha.19.tgz#6289cc34eec65f9ffd0eacf7d3c109a9ab55df00"
integrity sha512-PlVg/hGNvVOpeJnEyCzFIQBNEIzsp8SVxIKzlXW6LcjXr8bUy7X051ETQd13U1FfhmfNChh57UDOlogDugDsUg==
dependencies:
"@jupyterlab/apputils" "^4.0.0-alpha.19"
"@jupyterlab/coreutils" "^6.0.0-alpha.19"
"@jupyterlab/services" "^7.0.0-alpha.19"
"@jupyterlab/translation" "^4.0.0-alpha.19"
"@jupyterlab/ui-components" "^4.0.0-alpha.34"
"@lumino/messaging" "^2.0.0-beta.0"
"@lumino/polling" "^2.0.0-beta.0"
"@lumino/widgets" "^2.0.0-beta.1"
react "^18.2.0"
react-paginate "^6.3.2"
semver "^7.3.2"

"@jupyterlab/filebrowser-extension@^4.0.0-alpha.19":
version "4.0.0-alpha.19"
resolved "https://registry.yarnpkg.com/@jupyterlab/filebrowser-extension/-/filebrowser-extension-4.0.0-alpha.19.tgz#befcbdea206cae096f2da87072cdc06f90f022a8"
Expand Down Expand Up @@ -10884,7 +10913,7 @@ promzard@^0.3.0:
dependencies:
read "1"

prop-types@^15.6.0, prop-types@^15.7.2, prop-types@^15.8.1:
prop-types@^15.6.0, prop-types@^15.6.1, prop-types@^15.7.2, prop-types@^15.8.1:
version "15.8.1"
resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5"
integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==
Expand Down Expand Up @@ -11077,6 +11106,13 @@ react-json-tree@^0.16.1:
prop-types "^15.8.1"
react-base16-styling "^0.9.1"

react-paginate@^6.3.2:
version "6.5.0"
resolved "https://registry.yarnpkg.com/react-paginate/-/react-paginate-6.5.0.tgz#b9baf53627b115cfd688afa048776aa45bffda19"
integrity sha512-H7xSi9jyiJzgfaj+2nNhQcjZfwzJ/Mxb64V2RiyDctjZyCWojwsaGwMqhLBpQ58iAuMVtBMRQ7ECqMcUKG9QSQ==
dependencies:
prop-types "^15.6.1"

react-toastify@^9.0.8:
version "9.1.1"
resolved "https://registry.yarnpkg.com/react-toastify/-/react-toastify-9.1.1.tgz#9280caea4a13dc1739c350d90660a630807bf10b"
Expand Down

0 comments on commit f9e427c

Please sign in to comment.