diff --git a/.github/actions/build-dist/action.yml b/.github/actions/build-dist/action.yml index 7b765582b..76f32dd45 100644 --- a/.github/actions/build-dist/action.yml +++ b/.github/actions/build-dist/action.yml @@ -9,7 +9,7 @@ runs: - name: Install dependencies shell: bash run: | - python -m pip install --upgrade jupyter_packaging~=0.10 "jupyterlab>=4.0.0a29,<5" build + python -m pip install --upgrade jupyter_packaging~=0.10 "jupyterlab>=4.0.0a30,<5" build - name: Build pypi distributions shell: bash diff --git a/.github/workflows/buildutils.yml b/.github/workflows/buildutils.yml index a585bff2e..5bccc8e6f 100644 --- a/.github/workflows/buildutils.yml +++ b/.github/workflows/buildutils.yml @@ -26,7 +26,7 @@ jobs: - name: Install dependencies run: | - python -m pip install -U "jupyterlab>=4.0.0a29,<5" hatch + python -m pip install -U "jupyterlab>=4.0.0a30,<5" hatch jlpm jlpm run build @@ -76,6 +76,6 @@ jobs: - name: Install dependencies run: | - python -m pip install -U "jupyterlab>=4.0.0a29,<5" pip + python -m pip install -U "jupyterlab>=4.0.0a30,<5" pip jlpm jlpm run build diff --git a/.gitignore b/.gitignore index 53ef6d263..6c2ee4aa4 100644 --- a/.gitignore +++ b/.gitignore @@ -126,3 +126,6 @@ ui-tests/playwright-report # VSCode .vscode + +# RTC +.jupyter_ystore.db diff --git a/app/index.js b/app/index.js index 2be1ad9ff..b91ac36e8 100644 --- a/app/index.js +++ b/app/index.js @@ -76,6 +76,7 @@ async function main() { '@jupyterlab/application-extension:commands', '@jupyterlab/application-extension:context-menu', '@jupyterlab/application-extension:faviconbusy', + '@jupyterlab/application-extension:router', '@jupyterlab/application-extension:top-bar', '@jupyterlab/application-extension:top-spacer' ].includes(id) @@ -92,10 +93,7 @@ async function main() { ].includes(id) ), require('@jupyterlab/codemirror-extension').default.filter(({ id }) => - [ - '@jupyterlab/codemirror-extension:services', - '@jupyterlab/codemirror-extension:codemirror' - ].includes(id) + ['@jupyterlab/codemirror-extension:services'].includes(id) ), require('@jupyterlab/completer-extension').default.filter(({ id }) => [ @@ -115,6 +113,7 @@ async function main() { [ '@jupyterlab/docmanager-extension:plugin', '@jupyterlab/docmanager-extension:download', + '@jupyterlab/docmanager-extension:contexts', '@jupyterlab/docmanager-extension:manager' ].includes(id) ), @@ -224,17 +223,14 @@ async function main() { } case 'edit': { baseMods = baseMods.concat([ - require('@jupyterlab/codemirror-extension').default.filter(({ id }) => - ['@jupyterlab/codemirror-extension:commands'].includes(id) - ), require('@jupyterlab/fileeditor-extension').default.filter(({ id }) => [ '@jupyterlab/fileeditor-extension:completer', '@jupyterlab/fileeditor-extension:search' ].includes(id) ), - require('@jupyterlab/filebrowser-extension').default.filter(({ id }) => - ['@jupyterlab/filebrowser-extension:browser'].includes(id) + require('@jupyterlab/codemirror-extension').default.filter(({ id }) => + ['@jupyterlab/codemirror-extension:commands'].includes(id) ) ]); break; diff --git a/app/package.json b/app/package.json index 75f23604c..885b42dad 100644 --- a/app/package.json +++ b/app/package.json @@ -22,68 +22,71 @@ "@jupyter-notebook/tree": "~7.0.0-alpha.6", "@jupyter-notebook/tree-extension": "~7.0.0-alpha.6", "@jupyter-notebook/ui-components": "~7.0.0-alpha.6", - "@jupyterlab/application": "~4.0.0-alpha.14", - "@jupyterlab/application-extension": "~4.0.0-alpha.14", - "@jupyterlab/apputils": "~4.0.0-alpha.14", - "@jupyterlab/apputils-extension": "~4.0.0-alpha.14", - "@jupyterlab/cell-toolbar": "~4.0.0-alpha.14", - "@jupyterlab/cell-toolbar-extension": "~4.0.0-alpha.14", - "@jupyterlab/celltags": "~4.0.0-alpha.14", - "@jupyterlab/celltags-extension": "~4.0.0-alpha.14", - "@jupyterlab/codeeditor": "~4.0.0-alpha.14", - "@jupyterlab/codemirror-extension": "~4.0.0-alpha.14", - "@jupyterlab/collaboration": "~4.0.0-alpha.14", - "@jupyterlab/collaboration-extension": "~4.0.0-alpha.14", - "@jupyterlab/completer": "~4.0.0-alpha.14", - "@jupyterlab/completer-extension": "~4.0.0-alpha.14", - "@jupyterlab/console": "~4.0.0-alpha.14", - "@jupyterlab/console-extension": "~4.0.0-alpha.14", - "@jupyterlab/coreutils": "~6.0.0-alpha.14", - "@jupyterlab/docmanager": "~4.0.0-alpha.14", - "@jupyterlab/docmanager-extension": "~4.0.0-alpha.14", - "@jupyterlab/docprovider": "~4.0.0-alpha.14", - "@jupyterlab/docprovider-extension": "~4.0.0-alpha.14", - "@jupyterlab/documentsearch": "~4.0.0-alpha.14", - "@jupyterlab/documentsearch-extension": "~4.0.0-alpha.14", - "@jupyterlab/filebrowser": "~4.0.0-alpha.14", - "@jupyterlab/filebrowser-extension": "~4.0.0-alpha.14", - "@jupyterlab/fileeditor": "~4.0.0-alpha.14", - "@jupyterlab/fileeditor-extension": "~4.0.0-alpha.14", - "@jupyterlab/hub-extension": "~4.0.0-alpha.14", - "@jupyterlab/javascript-extension": "~4.0.0-alpha.14", - "@jupyterlab/json-extension": "~4.0.0-alpha.14", - "@jupyterlab/lsp": "~4.0.0-alpha.14", - "@jupyterlab/lsp-extension": "~4.0.0-alpha.14", - "@jupyterlab/mainmenu": "~4.0.0-alpha.14", - "@jupyterlab/mainmenu-extension": "~4.0.0-alpha.14", - "@jupyterlab/markedparser-extension": "~4.0.0-alpha.14", - "@jupyterlab/mathjax2-extension": "~4.0.0-alpha.14", - "@jupyterlab/notebook": "~4.0.0-alpha.14", - "@jupyterlab/notebook-extension": "~4.0.0-alpha.14", - "@jupyterlab/observables": "~5.0.0-alpha.14", - "@jupyterlab/outputarea": "~4.0.0-alpha.14", - "@jupyterlab/pdf-extension": "~4.0.0-alpha.14", - "@jupyterlab/rendermime": "~4.0.0-alpha.14", - "@jupyterlab/rendermime-extension": "~4.0.0-alpha.14", - "@jupyterlab/rendermime-interfaces": "~3.8.0-alpha.14", - "@jupyterlab/running-extension": "~4.0.0-alpha.14", - "@jupyterlab/services": "~7.0.0-alpha.14", - "@jupyterlab/settingregistry": "~4.0.0-alpha.14", - "@jupyterlab/shared-models": "~4.0.0-alpha.14", - "@jupyterlab/shortcuts-extension": "~4.0.0-alpha.14", - "@jupyterlab/statedb": "~4.0.0-alpha.14", - "@jupyterlab/statusbar": "~4.0.0-alpha.14", - "@jupyterlab/terminal": "~4.0.0-alpha.14", - "@jupyterlab/terminal-extension": "~4.0.0-alpha.14", - "@jupyterlab/theme-dark-extension": "~4.0.0-alpha.14", - "@jupyterlab/theme-light-extension": "~4.0.0-alpha.14", - "@jupyterlab/toc-extension": "~6.0.0-alpha.14", - "@jupyterlab/tooltip": "~4.0.0-alpha.14", - "@jupyterlab/tooltip-extension": "~4.0.0-alpha.14", - "@jupyterlab/translation": "~4.0.0-alpha.14", - "@jupyterlab/translation-extension": "~4.0.0-alpha.14", - "@jupyterlab/ui-components": "~4.0.0-alpha.29", - "@jupyterlab/vega5-extension": "~4.0.0-alpha.14", + "@jupyterlab/application": "~4.0.0-alpha.15", + "@jupyterlab/application-extension": "~4.0.0-alpha.15", + "@jupyterlab/apputils": "~4.0.0-alpha.15", + "@jupyterlab/apputils-extension": "~4.0.0-alpha.15", + "@jupyterlab/cell-toolbar": "~4.0.0-alpha.15", + "@jupyterlab/cell-toolbar-extension": "~4.0.0-alpha.15", + "@jupyterlab/celltags": "~4.0.0-alpha.15", + "@jupyterlab/celltags-extension": "~4.0.0-alpha.15", + "@jupyterlab/codeeditor": "~4.0.0-alpha.15", + "@jupyterlab/codemirror": "~4.0.0-alpha.15", + "@jupyterlab/codemirror-extension": "~4.0.0-alpha.15", + "@jupyterlab/collaboration": "~4.0.0-alpha.15", + "@jupyterlab/collaboration-extension": "~4.0.0-alpha.15", + "@jupyterlab/completer": "~4.0.0-alpha.15", + "@jupyterlab/completer-extension": "~4.0.0-alpha.15", + "@jupyterlab/console": "~4.0.0-alpha.15", + "@jupyterlab/console-extension": "~4.0.0-alpha.15", + "@jupyterlab/coreutils": "~6.0.0-alpha.15", + "@jupyterlab/debugger": "~4.0.0-alpha.15", + "@jupyterlab/debugger-extension": "~4.0.0-alpha.15", + "@jupyterlab/docmanager": "~4.0.0-alpha.15", + "@jupyterlab/docmanager-extension": "~4.0.0-alpha.15", + "@jupyterlab/docprovider": "~4.0.0-alpha.15", + "@jupyterlab/docprovider-extension": "~4.0.0-alpha.15", + "@jupyterlab/documentsearch": "~4.0.0-alpha.15", + "@jupyterlab/documentsearch-extension": "~4.0.0-alpha.15", + "@jupyterlab/filebrowser": "~4.0.0-alpha.15", + "@jupyterlab/filebrowser-extension": "~4.0.0-alpha.15", + "@jupyterlab/fileeditor": "~4.0.0-alpha.15", + "@jupyterlab/fileeditor-extension": "~4.0.0-alpha.15", + "@jupyterlab/hub-extension": "~4.0.0-alpha.15", + "@jupyterlab/javascript-extension": "~4.0.0-alpha.15", + "@jupyterlab/json-extension": "~4.0.0-alpha.15", + "@jupyterlab/lsp": "~4.0.0-alpha.15", + "@jupyterlab/lsp-extension": "~4.0.0-alpha.15", + "@jupyterlab/mainmenu": "~4.0.0-alpha.15", + "@jupyterlab/mainmenu-extension": "~4.0.0-alpha.15", + "@jupyterlab/markedparser-extension": "~4.0.0-alpha.15", + "@jupyterlab/mathjax2-extension": "~4.0.0-alpha.15", + "@jupyterlab/notebook": "~4.0.0-alpha.15", + "@jupyterlab/notebook-extension": "~4.0.0-alpha.15", + "@jupyterlab/observables": "~5.0.0-alpha.15", + "@jupyterlab/outputarea": "~4.0.0-alpha.15", + "@jupyterlab/pdf-extension": "~4.0.0-alpha.15", + "@jupyterlab/rendermime": "~4.0.0-alpha.15", + "@jupyterlab/rendermime-extension": "~4.0.0-alpha.15", + "@jupyterlab/rendermime-interfaces": "~3.8.0-alpha.15", + "@jupyterlab/running-extension": "~4.0.0-alpha.15", + "@jupyterlab/services": "~7.0.0-alpha.15", + "@jupyterlab/settingregistry": "~4.0.0-alpha.15", + "@jupyterlab/shared-models": "~4.0.0-alpha.15", + "@jupyterlab/shortcuts-extension": "~4.0.0-alpha.15", + "@jupyterlab/statedb": "~4.0.0-alpha.15", + "@jupyterlab/statusbar": "~4.0.0-alpha.15", + "@jupyterlab/terminal": "~4.0.0-alpha.15", + "@jupyterlab/terminal-extension": "~4.0.0-alpha.15", + "@jupyterlab/theme-dark-extension": "~4.0.0-alpha.15", + "@jupyterlab/theme-light-extension": "~4.0.0-alpha.15", + "@jupyterlab/toc-extension": "~6.0.0-alpha.15", + "@jupyterlab/tooltip": "~4.0.0-alpha.15", + "@jupyterlab/tooltip-extension": "~4.0.0-alpha.15", + "@jupyterlab/translation": "~4.0.0-alpha.15", + "@jupyterlab/translation-extension": "~4.0.0-alpha.15", + "@jupyterlab/ui-components": "~4.0.0-alpha.30", + "@jupyterlab/vega5-extension": "~4.0.0-alpha.15", "@lumino/algorithm": "~2.0.0-alpha.6", "@lumino/application": "~2.0.0-alpha.6", "@lumino/commands": "~2.0.0-alpha.6", @@ -112,46 +115,48 @@ "@jupyter-notebook/tree": "^7.0.0-alpha.6", "@jupyter-notebook/tree-extension": "^7.0.0-alpha.6", "@jupyter-notebook/ui-components": "^7.0.0-alpha.6", - "@jupyterlab/application-extension": "^4.0.0-alpha.14", - "@jupyterlab/apputils-extension": "^4.0.0-alpha.14", - "@jupyterlab/cell-toolbar-extension": "^4.0.0-alpha.14", - "@jupyterlab/celltags": "^4.0.0-alpha.14", - "@jupyterlab/celltags-extension": "^4.0.0-alpha.14", - "@jupyterlab/codemirror-extension": "^4.0.0-alpha.14", - "@jupyterlab/collaboration-extension": "^4.0.0-alpha.14", - "@jupyterlab/completer-extension": "^4.0.0-alpha.14", - "@jupyterlab/console-extension": "^4.0.0-alpha.14", - "@jupyterlab/coreutils": "^6.0.0-alpha.14", - "@jupyterlab/debugger-extension": "^4.0.0-alpha.14", - "@jupyterlab/docmanager-extension": "^4.0.0-alpha.14", - "@jupyterlab/docprovider-extension": "^4.0.0-alpha.14", - "@jupyterlab/documentsearch-extension": "^4.0.0-alpha.14", - "@jupyterlab/filebrowser-extension": "^4.0.0-alpha.14", - "@jupyterlab/fileeditor-extension": "^4.0.0-alpha.14", - "@jupyterlab/hub-extension": "^4.0.0-alpha.14", - "@jupyterlab/javascript-extension": "^4.0.0-alpha.14", - "@jupyterlab/json-extension": "^4.0.0-alpha.14", - "@jupyterlab/lsp": "^4.0.0-alpha.14", - "@jupyterlab/lsp-extension": "^4.0.0-alpha.14", - "@jupyterlab/mainmenu-extension": "^4.0.0-alpha.14", - "@jupyterlab/markedparser-extension": "^4.0.0-alpha.14", - "@jupyterlab/mathjax2-extension": "^4.0.0-alpha.14", - "@jupyterlab/notebook-extension": "^4.0.0-alpha.14", - "@jupyterlab/pdf-extension": "^4.0.0-alpha.14", - "@jupyterlab/rendermime-extension": "^4.0.0-alpha.14", - "@jupyterlab/running-extension": "^4.0.0-alpha.14", - "@jupyterlab/shortcuts-extension": "^4.0.0-alpha.14", - "@jupyterlab/terminal-extension": "^4.0.0-alpha.14", - "@jupyterlab/theme-dark-extension": "^4.0.0-alpha.14", - "@jupyterlab/theme-light-extension": "^4.0.0-alpha.14", - "@jupyterlab/toc-extension": "^6.0.0-alpha.14", - "@jupyterlab/tooltip-extension": "^4.0.0-alpha.14", - "@jupyterlab/translation-extension": "^4.0.0-alpha.14", - "@jupyterlab/vega5-extension": "^4.0.0-alpha.14" + "@jupyterlab/application-extension": "^4.0.0-alpha.15", + "@jupyterlab/apputils-extension": "^4.0.0-alpha.15", + "@jupyterlab/cell-toolbar-extension": "^4.0.0-alpha.15", + "@jupyterlab/celltags": "^4.0.0-alpha.15", + "@jupyterlab/celltags-extension": "^4.0.0-alpha.15", + "@jupyterlab/codemirror": "^4.0.0-alpha.15", + "@jupyterlab/codemirror-extension": "^4.0.0-alpha.15", + "@jupyterlab/collaboration-extension": "^4.0.0-alpha.15", + "@jupyterlab/completer-extension": "^4.0.0-alpha.15", + "@jupyterlab/console-extension": "^4.0.0-alpha.15", + "@jupyterlab/coreutils": "^6.0.0-alpha.15", + "@jupyterlab/debugger-extension": "^4.0.0-alpha.15", + "@jupyterlab/docmanager-extension": "^4.0.0-alpha.15", + "@jupyterlab/docprovider-extension": "^4.0.0-alpha.15", + "@jupyterlab/documentsearch-extension": "^4.0.0-alpha.15", + "@jupyterlab/filebrowser-extension": "^4.0.0-alpha.15", + "@jupyterlab/fileeditor-extension": "^4.0.0-alpha.15", + "@jupyterlab/hub-extension": "^4.0.0-alpha.15", + "@jupyterlab/javascript-extension": "^4.0.0-alpha.15", + "@jupyterlab/json-extension": "^4.0.0-alpha.15", + "@jupyterlab/lsp": "^4.0.0-alpha.15", + "@jupyterlab/lsp-extension": "^4.0.0-alpha.15", + "@jupyterlab/mainmenu-extension": "^4.0.0-alpha.15", + "@jupyterlab/markedparser-extension": "^4.0.0-alpha.15", + "@jupyterlab/mathjax2-extension": "^4.0.0-alpha.15", + "@jupyterlab/notebook-extension": "^4.0.0-alpha.15", + "@jupyterlab/pdf-extension": "^4.0.0-alpha.15", + "@jupyterlab/rendermime-extension": "^4.0.0-alpha.15", + "@jupyterlab/running-extension": "^4.0.0-alpha.15", + "@jupyterlab/shortcuts-extension": "^4.0.0-alpha.15", + "@jupyterlab/terminal-extension": "^4.0.0-alpha.15", + "@jupyterlab/theme-dark-extension": "^4.0.0-alpha.15", + "@jupyterlab/theme-light-extension": "^4.0.0-alpha.15", + "@jupyterlab/toc-extension": "^6.0.0-alpha.15", + "@jupyterlab/tooltip-extension": "^4.0.0-alpha.15", + "@jupyterlab/translation-extension": "^4.0.0-alpha.15", + "@jupyterlab/ui-components-extension": "^4.0.0-alpha.15", + "@jupyterlab/vega5-extension": "^4.0.0-alpha.15" }, "devDependencies": { - "@jupyterlab/builder": "^4.0.0-alpha.14", - "@jupyterlab/buildutils": "^4.0.0-alpha.14", + "@jupyterlab/builder": "^4.0.0-alpha.15", + "@jupyterlab/buildutils": "^4.0.0-alpha.15", "@types/rimraf": "^3.0.2", "css-loader": "~5.0.1", "fs-extra": "^8.1.0", @@ -204,7 +209,8 @@ "@jupyterlab/theme-dark-extension", "@jupyterlab/theme-light-extension", "@jupyterlab/tooltip-extension", - "@jupyterlab/translation-extension" + "@jupyterlab/translation-extension", + "@jupyterlab/ui-components-extension" ], "singletonPackages": [ "@jupyter-notebook/tree", @@ -213,6 +219,7 @@ "@jupyterlab/cell-toolbar", "@jupyterlab/celltags", "@jupyterlab/codeeditor", + "@jupyterlab/codemirror", "@jupyterlab/collaboration", "@jupyterlab/completer", "@jupyterlab/console", diff --git a/buildutils/package.json b/buildutils/package.json index 720b4f8da..f8f3a1b30 100644 --- a/buildutils/package.json +++ b/buildutils/package.json @@ -30,7 +30,7 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/buildutils": "^4.0.0-alpha.14", + "@jupyterlab/buildutils": "^4.0.0-alpha.15", "commander": "^6.2.0", "fs-extra": "^9.1.0", "typescript": "~4.7.3" diff --git a/package.json b/package.json index f458dd6dd..b16bd4cf5 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,7 @@ "watch:lib": "lerna exec --stream --scope @jupyter-notebook/metapackage jlpm watch" }, "devDependencies": { - "@jupyterlab/buildutils": "^4.0.0-alpha.14", + "@jupyterlab/buildutils": "^4.0.0-alpha.15", "@typescript-eslint/eslint-plugin": "^4.2.0", "@typescript-eslint/parser": "^4.2.0", "eslint": "^7.10.0", diff --git a/packages/application-extension/package.json b/packages/application-extension/package.json index 1aae687f0..c29e1ca21 100644 --- a/packages/application-extension/package.json +++ b/packages/application-extension/package.json @@ -41,18 +41,17 @@ "dependencies": { "@jupyter-notebook/application": "^7.0.0-alpha.6", "@jupyter-notebook/ui-components": "^7.0.0-alpha.6", - "@jupyterlab/application": "^4.0.0-alpha.14", - "@jupyterlab/apputils": "^4.0.0-alpha.14", - "@jupyterlab/celltags": "^4.0.0-alpha.14", - "@jupyterlab/codeeditor": "^4.0.0-alpha.14", - "@jupyterlab/codemirror": "^4.0.0-alpha.14", - "@jupyterlab/console": "^4.0.0-alpha.14", - "@jupyterlab/coreutils": "^6.0.0-alpha.14", - "@jupyterlab/docmanager": "^4.0.0-alpha.14", - "@jupyterlab/docregistry": "^4.0.0-alpha.14", - "@jupyterlab/mainmenu": "^4.0.0-alpha.14", - "@jupyterlab/settingregistry": "^4.0.0-alpha.14", - "@jupyterlab/translation": "^4.0.0-alpha.14", + "@jupyterlab/application": "^4.0.0-alpha.15", + "@jupyterlab/apputils": "^4.0.0-alpha.15", + "@jupyterlab/celltags": "^4.0.0-alpha.15", + "@jupyterlab/codeeditor": "^4.0.0-alpha.15", + "@jupyterlab/console": "^4.0.0-alpha.15", + "@jupyterlab/coreutils": "^6.0.0-alpha.15", + "@jupyterlab/docmanager": "^4.0.0-alpha.15", + "@jupyterlab/docregistry": "^4.0.0-alpha.15", + "@jupyterlab/mainmenu": "^4.0.0-alpha.15", + "@jupyterlab/settingregistry": "^4.0.0-alpha.15", + "@jupyterlab/translation": "^4.0.0-alpha.15", "@lumino/coreutils": "^2.0.0-alpha.6", "@lumino/disposable": "^2.0.0-alpha.6", "@lumino/widgets": "^2.0.0-alpha.6" diff --git a/packages/application-extension/src/index.ts b/packages/application-extension/src/index.ts index 486ec23f0..7bb96f36c 100644 --- a/packages/application-extension/src/index.ts +++ b/packages/application-extension/src/index.ts @@ -6,8 +6,7 @@ import { IRouter, ITreePathUpdater, JupyterFrontEnd, - JupyterFrontEndPlugin, - Router + JupyterFrontEndPlugin } from '@jupyterlab/application'; import { @@ -295,31 +294,6 @@ const paths: JupyterFrontEndPlugin = { } }; -/** - * The default URL router provider. - */ -const router: JupyterFrontEndPlugin = { - id: '@jupyter-notebook/application-extension:router', - autoStart: true, - provides: IRouter, - requires: [JupyterFrontEnd.IPaths], - activate: (app: JupyterFrontEnd, paths: JupyterFrontEnd.IPaths) => { - const { commands } = app; - const base = paths.urls.base; - const router = new Router({ base, commands }); - void app.started.then(() => { - // Route the very first request on load. - void router.route(); - - // Route all pop state events. - window.addEventListener('popstate', () => { - void router.route(); - }); - }); - return router; - } -}; - /** * The default session dialogs plugin */ @@ -932,7 +906,6 @@ const plugins: JupyterFrontEndPlugin[] = [ opener, pages, paths, - router, sessionDialogs, shell, sidebarVisibility, diff --git a/packages/application/package.json b/packages/application/package.json index 4ec6719ca..6b256c3f6 100644 --- a/packages/application/package.json +++ b/packages/application/package.json @@ -43,11 +43,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.0-alpha.14", - "@jupyterlab/coreutils": "^6.0.0-alpha.14", - "@jupyterlab/docregistry": "^4.0.0-alpha.14", - "@jupyterlab/rendermime-interfaces": "^3.8.0-alpha.14", - "@jupyterlab/ui-components": "^4.0.0-alpha.29", + "@jupyterlab/application": "^4.0.0-alpha.15", + "@jupyterlab/coreutils": "^6.0.0-alpha.15", + "@jupyterlab/docregistry": "^4.0.0-alpha.15", + "@jupyterlab/rendermime-interfaces": "^3.8.0-alpha.15", + "@jupyterlab/ui-components": "^4.0.0-alpha.30", "@lumino/algorithm": "^2.0.0-alpha.6", "@lumino/coreutils": "^2.0.0-alpha.6", "@lumino/messaging": "^2.0.0-alpha.6", @@ -58,7 +58,7 @@ "devDependencies": { "@babel/core": "^7.11.6", "@babel/preset-env": "^7.12.1", - "@jupyterlab/testutils": "^4.0.0-alpha.14", + "@jupyterlab/testutils": "^4.0.0-alpha.15", "@types/jest": "^26.0.10", "jest": "^26.4.2", "rimraf": "^3.0.2", diff --git a/packages/console-extension/package.json b/packages/console-extension/package.json index dafd01884..7ee0317bd 100644 --- a/packages/console-extension/package.json +++ b/packages/console-extension/package.json @@ -39,9 +39,9 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.0-alpha.14", - "@jupyterlab/console": "^4.0.0-alpha.14", - "@jupyterlab/coreutils": "^6.0.0-alpha.14", + "@jupyterlab/application": "^4.0.0-alpha.15", + "@jupyterlab/console": "^4.0.0-alpha.15", + "@jupyterlab/coreutils": "^6.0.0-alpha.15", "@lumino/algorithm": "^2.0.0-alpha.6" }, "devDependencies": { diff --git a/packages/docmanager-extension/package.json b/packages/docmanager-extension/package.json index 64536f405..85e30ed74 100644 --- a/packages/docmanager-extension/package.json +++ b/packages/docmanager-extension/package.json @@ -39,12 +39,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.0-alpha.14", - "@jupyterlab/coreutils": "^6.0.0-alpha.14", - "@jupyterlab/docmanager": "^4.0.0-alpha.14", - "@jupyterlab/docregistry": "^4.0.0-alpha.14", - "@jupyterlab/services": "^7.0.0-alpha.14", - "@lumino/algorithm": "^2.0.0-alpha.6" + "@jupyterlab/application": "^4.0.0-alpha.15", + "@jupyterlab/coreutils": "^6.0.0-alpha.15", + "@jupyterlab/docmanager": "^4.0.0-alpha.15", + "@jupyterlab/docregistry": "^4.0.0-alpha.15", + "@jupyterlab/services": "^7.0.0-alpha.15", + "@lumino/algorithm": "^2.0.0-alpha.6", + "@lumino/signaling": "^2.0.0-alpha.6" }, "devDependencies": { "rimraf": "^3.0.2", diff --git a/packages/docmanager-extension/src/index.ts b/packages/docmanager-extension/src/index.ts index 7ab7cd7af..18ec944be 100644 --- a/packages/docmanager-extension/src/index.ts +++ b/packages/docmanager-extension/src/index.ts @@ -8,53 +8,71 @@ import { import { PageConfig, PathExt } from '@jupyterlab/coreutils'; -import { IDocumentManager } from '@jupyterlab/docmanager'; +import { IDocumentWidgetOpener } from '@jupyterlab/docmanager'; import { IDocumentWidget, DocumentRegistry } from '@jupyterlab/docregistry'; -import { Kernel } from '@jupyterlab/services'; +import { Signal } from '@lumino/signaling'; /** - * A plugin to open document in a new browser tab. + * A plugin to open documents in a new browser tab. * - * TODO: remove and use a custom doc manager? */ -const opener: JupyterFrontEndPlugin = { +const opener: JupyterFrontEndPlugin = { id: '@jupyter-notebook/docmanager-extension:opener', - requires: [IDocumentManager], autoStart: true, - activate: (app: JupyterFrontEnd, docManager: IDocumentManager) => { + provides: IDocumentWidgetOpener, + activate: (app: JupyterFrontEnd) => { const baseUrl = PageConfig.getBaseUrl(); + let id = 0; + return new (class { + open(widget: IDocumentWidget, options?: DocumentRegistry.IOpenOptions) { + const widgetName = options?.type; + const ref = options?.ref; - // patch the `docManager.open` option to prevent the default behavior - const docOpen = docManager.open; - docManager.open = ( - path: string, - widgetName = 'default', - kernel?: Partial, - options?: DocumentRegistry.IOpenOptions - ): IDocumentWidget | undefined => { - const ref = options?.ref; - if (ref === '_noref') { - docOpen.call(docManager, path, widgetName, kernel, options); - return; - } - const ext = PathExt.extname(path); - let route = 'edit'; - if ( - (widgetName === 'default' && ext === '.ipynb') || - widgetName === 'Notebook' - ) { - route = 'notebooks'; + if (ref !== '_noref') { + const path = widget.context.path; + const ext = PathExt.extname(path); + let route = 'edit'; + if ( + (widgetName === 'default' && ext === '.ipynb') || + widgetName === 'Notebook' + ) { + route = 'notebooks'; + } + let url = `${baseUrl}${route}/${path}`; + // append ?factory only if it's not the default + if (widgetName !== 'default') { + url = `${url}?factory=${widgetName}`; + } + window.open(url); + // dispose the widget since it is not used on this page + widget.dispose(); + return; + } + + // otherwise open the document on the current page + + if (!widget.id) { + widget.id = `document-manager-${++id}`; + } + widget.title.dataset = { + type: 'document-title', + ...widget.title.dataset + }; + if (!widget.isAttached) { + app.shell.add(widget, 'main', options || {}); + } + app.shell.activateById(widget.id); + this._opened.emit(widget); } - let url = `${baseUrl}${route}/${path}`; - // append ?factory only if it's not the default - if (widgetName !== 'default') { - url = `${url}?factory=${widgetName}`; + + get opened() { + return this._opened; } - window.open(url); - return undefined; - }; + + private _opened = new Signal(this); + })(); } }; diff --git a/packages/documentsearch-extension/package.json b/packages/documentsearch-extension/package.json index 3e1326466..2590e9c5f 100644 --- a/packages/documentsearch-extension/package.json +++ b/packages/documentsearch-extension/package.json @@ -40,8 +40,8 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.0.0-alpha.6", - "@jupyterlab/application": "^4.0.0-alpha.14", - "@jupyterlab/documentsearch": "^4.0.0-alpha.14", + "@jupyterlab/application": "^4.0.0-alpha.15", + "@jupyterlab/documentsearch": "^4.0.0-alpha.15", "@lumino/widgets": "^2.0.0-alpha.6" }, "devDependencies": { diff --git a/packages/help-extension/package.json b/packages/help-extension/package.json index 4528c2d33..568fcd132 100644 --- a/packages/help-extension/package.json +++ b/packages/help-extension/package.json @@ -40,10 +40,10 @@ }, "dependencies": { "@jupyter-notebook/ui-components": "^7.0.0-alpha.6", - "@jupyterlab/application": "^4.0.0-alpha.14", - "@jupyterlab/apputils": "^4.0.0-alpha.14", - "@jupyterlab/mainmenu": "^4.0.0-alpha.14", - "@jupyterlab/translation": "^4.0.0-alpha.14" + "@jupyterlab/application": "^4.0.0-alpha.15", + "@jupyterlab/apputils": "^4.0.0-alpha.15", + "@jupyterlab/mainmenu": "^4.0.0-alpha.15", + "@jupyterlab/translation": "^4.0.0-alpha.15" }, "devDependencies": { "rimraf": "^3.0.2", diff --git a/packages/lab-extension/package.json b/packages/lab-extension/package.json index 3df38bbdf..b1293bb0e 100644 --- a/packages/lab-extension/package.json +++ b/packages/lab-extension/package.json @@ -44,17 +44,17 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.0.0-alpha.6", - "@jupyterlab/application": "^4.0.0-alpha.14", - "@jupyterlab/apputils": "^4.0.0-alpha.14", - "@jupyterlab/coreutils": "^6.0.0-alpha.14", - "@jupyterlab/docregistry": "^4.0.0-alpha.14", - "@jupyterlab/notebook": "^4.0.0-alpha.14", - "@jupyterlab/translation": "^4.0.0-alpha.14", + "@jupyterlab/application": "^4.0.0-alpha.15", + "@jupyterlab/apputils": "^4.0.0-alpha.15", + "@jupyterlab/coreutils": "^6.0.0-alpha.15", + "@jupyterlab/docregistry": "^4.0.0-alpha.15", + "@jupyterlab/notebook": "^4.0.0-alpha.15", + "@jupyterlab/translation": "^4.0.0-alpha.15", "@lumino/commands": "^2.0.0-alpha.6", "@lumino/disposable": "^2.0.0-alpha.6" }, "devDependencies": { - "@jupyterlab/builder": "^4.0.0-alpha.14", + "@jupyterlab/builder": "^4.0.0-alpha.15", "rimraf": "^3.0.2", "typescript": "~4.7.3" }, diff --git a/packages/notebook-extension/package.json b/packages/notebook-extension/package.json index 87986d5b8..5f4c965c1 100644 --- a/packages/notebook-extension/package.json +++ b/packages/notebook-extension/package.json @@ -40,13 +40,13 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.0.0-alpha.6", - "@jupyterlab/application": "^4.0.0-alpha.14", - "@jupyterlab/apputils": "^4.0.0-alpha.14", - "@jupyterlab/cells": "^4.0.0-alpha.14", - "@jupyterlab/docmanager": "^4.0.0-alpha.14", - "@jupyterlab/notebook": "^4.0.0-alpha.14", - "@jupyterlab/settingregistry": "^4.0.0-alpha.14", - "@jupyterlab/translation": "^4.0.0-alpha.14", + "@jupyterlab/application": "^4.0.0-alpha.15", + "@jupyterlab/apputils": "^4.0.0-alpha.15", + "@jupyterlab/cells": "^4.0.0-alpha.15", + "@jupyterlab/docmanager": "^4.0.0-alpha.15", + "@jupyterlab/notebook": "^4.0.0-alpha.15", + "@jupyterlab/settingregistry": "^4.0.0-alpha.15", + "@jupyterlab/translation": "^4.0.0-alpha.15", "@lumino/polling": "^2.0.0-alpha.6", "@lumino/widgets": "^2.0.0-alpha.6" }, diff --git a/packages/notebook-extension/style/base.css b/packages/notebook-extension/style/base.css index 636a05654..06ca7229e 100644 --- a/packages/notebook-extension/style/base.css +++ b/packages/notebook-extension/style/base.css @@ -136,13 +136,6 @@ body[data-format='mobile'] .jp-Notebook > *:first-child { body[data-notebook='notebooks'] .jp-WindowedPanel-window { background: var(--jp-layout-color0); - /* TODO: remove when https://github.com/jupyterlab/jupyterlab/pull/13154 is released */ - width: unset; -} - -body[data-notebook='notebooks'] .jp-WindowedPanel-inner { - /* TODO: remove when https://github.com/jupyterlab/jupyterlab/pull/13157 is released */ - width: unset; } /* Notebook box shadow */ diff --git a/packages/terminal-extension/package.json b/packages/terminal-extension/package.json index 755cde174..8f34d6dc7 100644 --- a/packages/terminal-extension/package.json +++ b/packages/terminal-extension/package.json @@ -39,9 +39,9 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.0-alpha.14", - "@jupyterlab/coreutils": "^6.0.0-alpha.14", - "@jupyterlab/terminal": "^4.0.0-alpha.14", + "@jupyterlab/application": "^4.0.0-alpha.15", + "@jupyterlab/coreutils": "^6.0.0-alpha.15", + "@jupyterlab/terminal": "^4.0.0-alpha.15", "@lumino/algorithm": "^2.0.0-alpha.6" }, "devDependencies": { diff --git a/packages/tree-extension/package.json b/packages/tree-extension/package.json index 823475e52..0a4dc0418 100644 --- a/packages/tree-extension/package.json +++ b/packages/tree-extension/package.json @@ -41,17 +41,17 @@ "dependencies": { "@jupyter-notebook/application": "^7.0.0-alpha.6", "@jupyter-notebook/tree": "^7.0.0-alpha.6", - "@jupyterlab/application": "^4.0.0-alpha.14", - "@jupyterlab/apputils": "^4.0.0-alpha.14", - "@jupyterlab/coreutils": "^6.0.0-alpha.14", - "@jupyterlab/docmanager": "^4.0.0-alpha.14", - "@jupyterlab/filebrowser": "^4.0.0-alpha.14", - "@jupyterlab/mainmenu": "^4.0.0-alpha.14", - "@jupyterlab/services": "^7.0.0-alpha.14", - "@jupyterlab/settingregistry": "^4.0.0-alpha.14", - "@jupyterlab/statedb": "^4.0.0-alpha.14", - "@jupyterlab/translation": "^4.0.0-alpha.14", - "@jupyterlab/ui-components": "^4.0.0-alpha.29", + "@jupyterlab/application": "^4.0.0-alpha.15", + "@jupyterlab/apputils": "^4.0.0-alpha.15", + "@jupyterlab/coreutils": "^6.0.0-alpha.15", + "@jupyterlab/docmanager": "^4.0.0-alpha.15", + "@jupyterlab/filebrowser": "^4.0.0-alpha.15", + "@jupyterlab/mainmenu": "^4.0.0-alpha.15", + "@jupyterlab/services": "^7.0.0-alpha.15", + "@jupyterlab/settingregistry": "^4.0.0-alpha.15", + "@jupyterlab/statedb": "^4.0.0-alpha.15", + "@jupyterlab/translation": "^4.0.0-alpha.15", + "@jupyterlab/ui-components": "^4.0.0-alpha.30", "@lumino/algorithm": "^2.0.0-alpha.6", "@lumino/commands": "^2.0.0-alpha.6", "@lumino/widgets": "^2.0.0-alpha.6" diff --git a/packages/tree/package.json b/packages/tree/package.json index 0ab3aced2..ee1654cad 100644 --- a/packages/tree/package.json +++ b/packages/tree/package.json @@ -40,17 +40,17 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.0.0-alpha.6", - "@jupyterlab/application": "^4.0.0-alpha.14", - "@jupyterlab/apputils": "^4.0.0-alpha.14", - "@jupyterlab/coreutils": "^6.0.0-alpha.14", - "@jupyterlab/docmanager": "^4.0.0-alpha.14", - "@jupyterlab/filebrowser": "^4.0.0-alpha.14", - "@jupyterlab/mainmenu": "^4.0.0-alpha.14", - "@jupyterlab/services": "^7.0.0-alpha.14", - "@jupyterlab/settingregistry": "^4.0.0-alpha.14", - "@jupyterlab/statedb": "^4.0.0-alpha.14", - "@jupyterlab/translation": "^4.0.0-alpha.14", - "@jupyterlab/ui-components": "^4.0.0-alpha.29", + "@jupyterlab/application": "^4.0.0-alpha.15", + "@jupyterlab/apputils": "^4.0.0-alpha.15", + "@jupyterlab/coreutils": "^6.0.0-alpha.15", + "@jupyterlab/docmanager": "^4.0.0-alpha.15", + "@jupyterlab/filebrowser": "^4.0.0-alpha.15", + "@jupyterlab/mainmenu": "^4.0.0-alpha.15", + "@jupyterlab/services": "^7.0.0-alpha.15", + "@jupyterlab/settingregistry": "^4.0.0-alpha.15", + "@jupyterlab/statedb": "^4.0.0-alpha.15", + "@jupyterlab/translation": "^4.0.0-alpha.15", + "@jupyterlab/ui-components": "^4.0.0-alpha.30", "@lumino/algorithm": "^2.0.0-alpha.6", "@lumino/commands": "^2.0.0-alpha.6", "@lumino/coreutils": "^2.0.0-alpha.6", diff --git a/packages/ui-components/package.json b/packages/ui-components/package.json index fee5b1f78..7fca65b2a 100644 --- a/packages/ui-components/package.json +++ b/packages/ui-components/package.json @@ -43,14 +43,14 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/ui-components": "^4.0.0-alpha.29", + "@jupyterlab/ui-components": "^4.0.0-alpha.30", "react": "^17.0.1", "react-dom": "^17.0.1" }, "devDependencies": { "@babel/core": "^7.10.2", "@babel/preset-env": "^7.10.2", - "@jupyterlab/testutils": "^4.0.0-alpha.14", + "@jupyterlab/testutils": "^4.0.0-alpha.15", "@types/jest": "^26.0.10", "babel-loader": "^8.0.6", "jest": "^26.4.2", diff --git a/pyproject.toml b/pyproject.toml index c46f201c3..7fba5d6ae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["hatchling>=1.5", "jupyterlab>=4.0.0a29,<5"] +requires = ["hatchling>=1.5", "jupyterlab>=4.0.0a30,<5"] build-backend = "hatchling.build" [project] @@ -30,7 +30,7 @@ classifiers = [ ] dependencies = [ "jupyter_server>=1.16.0,<2", - "jupyterlab>=4.0.0a29,<5", + "jupyterlab>=4.0.0a30,<5", "jupyterlab_server>=2.13,<3", "notebook_shim>=0.1,<0.2", "tornado>=6.1.0", diff --git a/ui-tests/package.json b/ui-tests/package.json index 87adc322c..f48f64b16 100644 --- a/ui-tests/package.json +++ b/ui-tests/package.json @@ -15,8 +15,7 @@ "test:update": "playwright test --update-snapshots" }, "dependencies": { - "@jupyterlab/galata": "~5.0.0-alpha.14", - "@playwright/test": "~1.26.0", + "@jupyterlab/galata": "~5.0.0-alpha.15", "rimraf": "^3.0.2" } } diff --git a/ui-tests/yarn.lock b/ui-tests/yarn.lock index bfc63c64b..0a972db75 100644 --- a/ui-tests/yarn.lock +++ b/ui-tests/yarn.lock @@ -209,21 +209,21 @@ resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-free/-/fontawesome-free-5.15.4.tgz#ecda5712b61ac852c760d8b3c79c96adca5554e5" integrity sha512-eYm8vijH/hpzr/6/1CJ/V/Eb1xQFW2nnUKArb3z+yUWv7HTwj6M7SP957oMjfZjAHU6qpoNc2wQvIxBLWYa/Jg== -"@jupyterlab/application@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/application/-/application-4.0.0-alpha.14.tgz#e0c3419555360f062740a1f3fe8a41db73e47f82" - integrity sha512-BKvon+6BIFATyjGhZUipYui2PiERf9uQdkuwOOmyPnxB9gbgBUP2GBKK2z6nBNCmCEz8LfWlpjtCLgK0Awc0Ug== +"@jupyterlab/application@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/application/-/application-4.0.0-alpha.15.tgz#f37b667d8078b6bba8af26d30459e88057cfd4a7" + integrity sha512-gxsMjExBw5LVHxs5pw2mgxoN0Xzg5zyP4L5ZNxWLC79pVfHZSxfGMngpM6sjg4/ANw8P8ow8LWKerP22qKu7Pw== dependencies: "@fortawesome/fontawesome-free" "^5.12.0" - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/docregistry" "^4.0.0-alpha.14" - "@jupyterlab/rendermime" "^4.0.0-alpha.14" - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/statedb" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/docregistry" "^4.0.0-alpha.15" + "@jupyterlab/rendermime" "^4.0.0-alpha.15" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/statedb" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/application" "^2.0.0-alpha.6" "@lumino/commands" "^2.0.0-alpha.6" @@ -235,20 +235,20 @@ "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/apputils@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/apputils/-/apputils-4.0.0-alpha.14.tgz#07ba28e7ff9460a4344aa387b319391cfbbf3ea2" - integrity sha512-ECggvfp0HmKkL67Gihm9vJJ0SrdIYILEyKcaLbK9YZNdX3whekDacLjDZynNBjcb4qjFKI0doRPujAEtQ+cDhA== - dependencies: - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/observables" "^5.0.0-alpha.14" - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/settingregistry" "^4.0.0-alpha.14" - "@jupyterlab/statedb" "^4.0.0-alpha.14" - "@jupyterlab/statusbar" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/apputils@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/apputils/-/apputils-4.0.0-alpha.15.tgz#da7d5a6c6c7f10bb9e06f517780b49a966724800" + integrity sha512-PWBf4AIo3WQgSp4zRUNVU7433iZNhFbWihqHMrUaEultg8lEJeq0mfTHo25xPndfrhFdbBMv9fpFlPx8XtG/sA== + dependencies: + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/observables" "^5.0.0-alpha.15" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/settingregistry" "^4.0.0-alpha.15" + "@jupyterlab/statedb" "^4.0.0-alpha.15" + "@jupyterlab/statusbar" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/commands" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" @@ -262,40 +262,40 @@ react "^17.0.1" sanitize-html "~2.5.3" -"@jupyterlab/attachments@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/attachments/-/attachments-4.0.0-alpha.14.tgz#31696adc96f5d8aa24cbcccfed59c80a77b9559a" - integrity sha512-cdMI8uG++VOQcpkC62xCL+MaJDRmW/ajiJSKvXa7r5JhK+6EiYE2wk0tX/Zoiy72L3lOmI6jYLPjDAwfjGMEQQ== +"@jupyterlab/attachments@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/attachments/-/attachments-4.0.0-alpha.15.tgz#d2d671c42c9dfdd0e08610c55d523e2f34554d0d" + integrity sha512-UaD18N10+qFG0wYe81T1bvGbpWhR6EaR8x1SgZF51Ew1QB/P83AU2EThSBJSqwijdawrFsBVhgrQmpBdBctwbg== dependencies: - "@jupyterlab/nbformat" "^4.0.0-alpha.14" - "@jupyterlab/observables" "^5.0.0-alpha.14" - "@jupyterlab/rendermime" "^4.0.0-alpha.14" - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.14" - "@jupyterlab/shared-models" "^4.0.0-alpha.14" + "@jupyterlab/nbformat" "^4.0.0-alpha.15" + "@jupyterlab/observables" "^5.0.0-alpha.15" + "@jupyterlab/rendermime" "^4.0.0-alpha.15" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.15" + "@jupyterlab/shared-models" "^4.0.0-alpha.15" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" -"@jupyterlab/cells@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/cells/-/cells-4.0.0-alpha.14.tgz#b68408724c5991b5a1fd390b8e3a355565df43f2" - integrity sha512-JIh/ZA/0Wrj+RkUh9aPjWFt1RH6J0UXpjpMtYskvbEcf5Ncnu8KIwWLVcq99uxce/2u1KIM8b9bLy+hPNrzTSg== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/attachments" "^4.0.0-alpha.14" - "@jupyterlab/codeeditor" "^4.0.0-alpha.14" - "@jupyterlab/codemirror" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/documentsearch" "^4.0.0-alpha.14" - "@jupyterlab/filebrowser" "^4.0.0-alpha.14" - "@jupyterlab/nbformat" "^4.0.0-alpha.14" - "@jupyterlab/observables" "^5.0.0-alpha.14" - "@jupyterlab/outputarea" "^4.0.0-alpha.14" - "@jupyterlab/rendermime" "^4.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/shared-models" "^4.0.0-alpha.14" - "@jupyterlab/toc" "^6.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/cells@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/cells/-/cells-4.0.0-alpha.15.tgz#7401da1932a2d5a0c1181fa6fdda5bf24c3ae955" + integrity sha512-X2sHyD7IM3v1ct5Yb9LlI/i26WD1Xjl639KUUUCZ+sMNKTWKRMvB5UkQJebh77YFCSH7bXWdISeB+F46HxUP5w== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/attachments" "^4.0.0-alpha.15" + "@jupyterlab/codeeditor" "^4.0.0-alpha.15" + "@jupyterlab/codemirror" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/documentsearch" "^4.0.0-alpha.15" + "@jupyterlab/filebrowser" "^4.0.0-alpha.15" + "@jupyterlab/nbformat" "^4.0.0-alpha.15" + "@jupyterlab/observables" "^5.0.0-alpha.15" + "@jupyterlab/outputarea" "^4.0.0-alpha.15" + "@jupyterlab/rendermime" "^4.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/shared-models" "^4.0.0-alpha.15" + "@jupyterlab/toc" "^6.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/domutils" "^2.0.0-alpha.6" @@ -307,18 +307,18 @@ "@lumino/widgets" "^2.0.0-alpha.6" react "^17.0.1" -"@jupyterlab/codeeditor@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/codeeditor/-/codeeditor-4.0.0-alpha.14.tgz#4efa7b0aec095638425e2c0e9a92717069ce9998" - integrity sha512-mso6E/dwqTtXy0VXu7KE0xY5z2pO5/XBSPVXYyxk3QlqkoKAlsJ4l7suY8NVR1SgsCCQZukhvvQsf1ZTr9Q17g== - dependencies: - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/nbformat" "^4.0.0-alpha.14" - "@jupyterlab/observables" "^5.0.0-alpha.14" - "@jupyterlab/shared-models" "^4.0.0-alpha.14" - "@jupyterlab/statusbar" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/codeeditor@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/codeeditor/-/codeeditor-4.0.0-alpha.15.tgz#59884a0a376f64b6a29bd5323ec6cea76bff1371" + integrity sha512-iB8Zl3IXJoeJpceibZlbVb5D7qsKW/mR608D6qE66hkP0Sh6pzqfxPgwy/ewE5SW1G9VQ/CLUoY1A0NoAp/7DQ== + dependencies: + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/nbformat" "^4.0.0-alpha.15" + "@jupyterlab/observables" "^5.0.0-alpha.15" + "@jupyterlab/shared-models" "^4.0.0-alpha.15" + "@jupyterlab/statusbar" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/dragdrop" "^2.0.0-alpha.6" @@ -327,10 +327,10 @@ "@lumino/widgets" "^2.0.0-alpha.6" react "^17.0.1" -"@jupyterlab/codemirror@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/codemirror/-/codemirror-4.0.0-alpha.14.tgz#d976d735fde29410dc6232f71ecec87d5648c2da" - integrity sha512-lvUZmfuqS90wVi2j61gnXRFPsEoD4V7olH/N89yq5yinQKL6LSwzR6pSFB3lvYDHMYxBZQZUk0onZaR2VezYsg== +"@jupyterlab/codemirror@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/codemirror/-/codemirror-4.0.0-alpha.15.tgz#5c931471cf686891d774d80fc78720fced0c9bfe" + integrity sha512-50n6raMdaN64qXzng6AI2LEfHQToPypclI6Fw2IHAmDyaBNZaqv6l1/ZaQf6kelxFiK3k4pjYdC13GWx2SBPfA== dependencies: "@codemirror/autocomplete" "^6.0.0" "@codemirror/commands" "^6.0.0" @@ -352,15 +352,15 @@ "@codemirror/search" "^6.0.0" "@codemirror/state" "^6.0.0" "@codemirror/view" "^6.0.0" - "@jupyterlab/codeeditor" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/documentsearch" "^4.0.0-alpha.14" - "@jupyterlab/nbformat" "^4.0.0-alpha.14" - "@jupyterlab/observables" "^5.0.0-alpha.14" - "@jupyterlab/shared-models" "^4.0.0-alpha.14" - "@jupyterlab/statusbar" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" + "@jupyterlab/codeeditor" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/documentsearch" "^4.0.0-alpha.15" + "@jupyterlab/nbformat" "^4.0.0-alpha.15" + "@jupyterlab/observables" "^5.0.0-alpha.15" + "@jupyterlab/shared-models" "^4.0.0-alpha.15" + "@jupyterlab/statusbar" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lezer/common" "^1.0.0" "@lezer/highlight" "^1.0.0" "@lumino/algorithm" "^2.0.0-alpha.6" @@ -375,15 +375,15 @@ y-protocols "^1.0.5" yjs "^13.5.40" -"@jupyterlab/collaboration@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/collaboration/-/collaboration-4.0.0-alpha.14.tgz#c56e3009c9c928dd94c8f8ef754dd85951d56d37" - integrity sha512-6II1pS9HPrF/ysXdYC6+O3lYtWXyRF369wjFY+/1mWGOeocgN3H+VK81hIClcA2qRsPVjuc2+2umb0CYd+QsgQ== +"@jupyterlab/collaboration@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/collaboration/-/collaboration-4.0.0-alpha.15.tgz#e9b2b727a5cbd592c6af9a2ea3df49d2cb391959" + integrity sha512-gz4BJBRuvMy5XdKA2f3+CrQeQcAZ7BGib14rJcttGqGGXgPaHcbcX0XmlG5C7R6uDYHNl6ylsW7a0P/Je+4Bmg== dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/virtualdom" "^2.0.0-alpha.6" @@ -392,10 +392,10 @@ y-protocols "^1.0.5" yjs "^13.5.40" -"@jupyterlab/coreutils@^6.0.0-alpha.14": - version "6.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/coreutils/-/coreutils-6.0.0-alpha.14.tgz#23f28bea265ba0888372c1bc751beb566a5a835a" - integrity sha512-bSiF//TSC8aMb3kCWJmvuUVEgN9p212pqKNy6ueExlhpTRVE3I4Xyil4uBX6z+O//hDkZyTQC4dtFgIsSn9b5Q== +"@jupyterlab/coreutils@^6.0.0-alpha.15": + version "6.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/coreutils/-/coreutils-6.0.0-alpha.15.tgz#260839a3ccfa5f045b7c722a3ed736c9ceb03f9f" + integrity sha512-HxBZ6inx3Gvn8ec5NiubwLpQdQRF7p4ePH1H/9zw6UerEqy9CnjK2ti7JrRND9I3PVs3aFDCuMh126fx6D6YAQ== dependencies: "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" @@ -405,19 +405,19 @@ path-browserify "^1.0.0" url-parse "~1.5.4" -"@jupyterlab/docmanager@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/docmanager/-/docmanager-4.0.0-alpha.14.tgz#effaecbab1abbdac0e49b0a2772a87e45b43efe5" - integrity sha512-MVGpBJImNx/bd392bnrGupa7TFxAAoHP4Mmq6Z+tzZ1rjtrDkOng0ujFa89gchOCM5wDMqMhjZhT8ttgf26Yww== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/docprovider" "^4.0.0-alpha.14" - "@jupyterlab/docregistry" "^4.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/statusbar" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/docmanager@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/docmanager/-/docmanager-4.0.0-alpha.15.tgz#8db67d789e980d9583cc32b24b46415dd79aabfe" + integrity sha512-sdiIJqbjGmQQEKAuwetovAEyrZGibLWfmZX+YB7cPB3Lra7DLBefG/0KkldEAhDeXcNGRbp0oGEcqJxJI6042Q== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/docprovider" "^4.0.0-alpha.15" + "@jupyterlab/docregistry" "^4.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/statusbar" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" @@ -427,34 +427,34 @@ "@lumino/widgets" "^2.0.0-alpha.6" react "^17.0.1" -"@jupyterlab/docprovider@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/docprovider/-/docprovider-4.0.0-alpha.14.tgz#2adcc3121b5192528cca68346d70389f85121abd" - integrity sha512-322ypc/6Ay1D+gp2aR0ccf+BI/1YqABVbX8CgZn6MdRRpAWxAgbJO+B9dRnYqZWKquRitWFpzaBFY87qgH68TQ== +"@jupyterlab/docprovider@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/docprovider/-/docprovider-4.0.0-alpha.15.tgz#54cc83a3a5206ce34c007d8b9968a008072dd54c" + integrity sha512-chF+myFZR8Ly5wRggJgIcsFnLEgVH3xu2QwdpkfHqjaW1IUV/DpofnAtYVv2hkgzoBvSKZXl0yhoEcRzBZ6/Jw== dependencies: - "@jupyterlab/collaboration" "^4.0.0-alpha.14" - "@jupyterlab/shared-models" "^4.0.0-alpha.14" + "@jupyterlab/collaboration" "^4.0.0-alpha.15" + "@jupyterlab/shared-models" "^4.0.0-alpha.15" "@lumino/coreutils" "^2.0.0-alpha.6" lib0 "^0.2.42" y-websocket "^1.3.15" -"@jupyterlab/docregistry@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/docregistry/-/docregistry-4.0.0-alpha.14.tgz#4845ef7fc488dc6815245ffcfea7d7f1df4061a6" - integrity sha512-yK/ALuk/pJSxVhG/B9Hb/uYQzDV2DiDzJzgP5OJfK5YL4XIOXQW4zPfLL9AUQJ9MiMPT5qE4iqGD8xBHzqWqQQ== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/codeeditor" "^4.0.0-alpha.14" - "@jupyterlab/codemirror" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/docprovider" "^4.0.0-alpha.14" - "@jupyterlab/observables" "^5.0.0-alpha.14" - "@jupyterlab/rendermime" "^4.0.0-alpha.14" - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/shared-models" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/docregistry@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/docregistry/-/docregistry-4.0.0-alpha.15.tgz#fd1bd092a7d7af5f00703c3ef80e77e53bc3bb0f" + integrity sha512-ITDrdoZl/6VcEJw8VyqqZjJLFHQTycS6WbieUmpWgj9Ii3/4VNZnUtn/K6nDc3LFtXL2G1Ej8dxe65Db6/Gqdw== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/codeeditor" "^4.0.0-alpha.15" + "@jupyterlab/codemirror" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/docprovider" "^4.0.0-alpha.15" + "@jupyterlab/observables" "^5.0.0-alpha.15" + "@jupyterlab/rendermime" "^4.0.0-alpha.15" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/shared-models" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" @@ -463,13 +463,13 @@ "@lumino/widgets" "^2.0.0-alpha.6" yjs "^13.5.40" -"@jupyterlab/documentsearch@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/documentsearch/-/documentsearch-4.0.0-alpha.14.tgz#2494aa093da3b21e6d169eb8e5ca84a9b02f19df" - integrity sha512-FAYAlIbGxDSx2gM6w81Kcr00T1HLIaL9aFG8gV8ZoFP+BOL7YuEHIrrh/3fV2UqXafGvdn0cUl/hAph5m2pAIQ== +"@jupyterlab/documentsearch@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/documentsearch/-/documentsearch-4.0.0-alpha.15.tgz#cf94f29ea9968956bd1e01918ffabfabd5546268" + integrity sha512-c/nxZDHc7jTLWj+++xn5D9XngpVMCZRVXUsFoNMTc6xwJ6lKLcGbUUaf51de7sdfZVtkiizIxMB2YdiQeRyavA== dependencies: - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/polling" "^2.0.0-alpha.6" @@ -477,20 +477,20 @@ "@lumino/widgets" "^2.0.0-alpha.6" react "^17.0.1" -"@jupyterlab/filebrowser@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/filebrowser/-/filebrowser-4.0.0-alpha.14.tgz#4803059acf730f501b761e0fd3ed8c49987463eb" - integrity sha512-2V6BRfYUs8mlFnlhFbtDsm/o3U2NbvemQ9H4Lgf2KgwZh1qsKgq1AHW3lfrsuJQ9UaCRhoIJZYQFNUXJ+brxyg== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/docmanager" "^4.0.0-alpha.14" - "@jupyterlab/docregistry" "^4.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/statedb" "^4.0.0-alpha.14" - "@jupyterlab/statusbar" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/filebrowser@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/filebrowser/-/filebrowser-4.0.0-alpha.15.tgz#6567bba2af94499eb147291c061833d3ffea48ed" + integrity sha512-NeJJlGmGR+FU/SpC8CFrPrUu/bby5tnCUilJDu0UXCv/h7hU5X59UQFWTPqRvDM4k7v5Ki+oXTTmSoD5Tv6HoQ== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/docmanager" "^4.0.0-alpha.15" + "@jupyterlab/docregistry" "^4.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/statedb" "^4.0.0-alpha.15" + "@jupyterlab/statusbar" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" @@ -503,24 +503,24 @@ "@lumino/widgets" "^2.0.0-alpha.6" react "^17.0.1" -"@jupyterlab/galata@~5.0.0-alpha.14": - version "5.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/galata/-/galata-5.0.0-alpha.14.tgz#7041516631fa21eb321d704c36d6c97feacd335c" - integrity sha512-6vWy3IHrnnoKgcTQ2p+25bsFElXaCZwoQO0fl5TCS9b+WHXfw0NCeITTiJMEsvscyqHxOjM1QQy8OcONPXJPKw== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/cells" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/docmanager" "^4.0.0-alpha.14" - "@jupyterlab/nbformat" "^4.0.0-alpha.14" - "@jupyterlab/notebook" "^4.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/settingregistry" "^4.0.0-alpha.14" - "@jupyterlab/shared-models" "^4.0.0-alpha.14" +"@jupyterlab/galata@~5.0.0-alpha.15": + version "5.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/galata/-/galata-5.0.0-alpha.15.tgz#9afafae534c08fff21ff68bcc87cf9c1e0dc87c4" + integrity sha512-MiLaM7/Gl3zdkakhfdrDq6kuXXiWNeBe1ReBCDZ6TQ+GbD/i+7/fccYRyITD2MtuFN6mTiZlyU7RFn/NbBSU6w== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/cells" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/docmanager" "^4.0.0-alpha.15" + "@jupyterlab/nbformat" "^4.0.0-alpha.15" + "@jupyterlab/notebook" "^4.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/settingregistry" "^4.0.0-alpha.15" + "@jupyterlab/shared-models" "^4.0.0-alpha.15" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" - "@playwright/test" "^1.26.1" + "@playwright/test" "^1.27.0" "@stdlib/stats" "~0.0.13" fs-extra "^9.0.1" http-server "^13.0.0" @@ -531,17 +531,17 @@ vega-lite "^5.1.0" vega-statistics "^1.7.9" -"@jupyterlab/lsp@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/lsp/-/lsp-4.0.0-alpha.14.tgz#c6ac368cefade63efb04d0538c52e5b94c316a29" - integrity sha512-bmoEgCK6YlAs+YynVbCILVJQWXb6c0lbwZ6bIpG0jwJadCo8efhmqgRuENfQoYE7AoAD77cYvQO0qPAjNQfuWw== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/codeeditor" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/docregistry" "^4.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" +"@jupyterlab/lsp@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/lsp/-/lsp-4.0.0-alpha.15.tgz#1d738047c41cb46ce2a60cb5d75d3aeb8c9969c2" + integrity sha512-FpB2StiKYGhR9ets/hXdVOnbI2sOl8KKFTKycw+a7BhrmSY0XwjUsCfPySxBYzza8vDMRvpCLVqyi3i7LeKQ5A== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/codeeditor" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/docregistry" "^4.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" @@ -550,36 +550,36 @@ vscode-languageserver-protocol "^3.17.0" vscode-ws-jsonrpc "~1.0.2" -"@jupyterlab/nbformat@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/nbformat/-/nbformat-4.0.0-alpha.14.tgz#99965d71e42ee32727d9227180b7313b0d4c90a8" - integrity sha512-yeIeX9pEUQROIrgi4wNteg4bGmQ0dxu1ZwMkeXtsFe+3dla9bDtOm8A87f5u6C/33m7Cme/wPycqDjucO0zQxQ== +"@jupyterlab/nbformat@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/nbformat/-/nbformat-4.0.0-alpha.15.tgz#ccec8e0c036c0a1bada1b9b36474f40c1b44c173" + integrity sha512-C+Y8dKwgYulUbPbtU5SYzuA6ffzDhNb6H4fj0Ndml7IdaqMx3lHqqZNKIGwskcZioXO6rer975eyEraeE8U7VA== dependencies: "@lumino/coreutils" "^2.0.0-alpha.6" -"@jupyterlab/notebook@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/notebook/-/notebook-4.0.0-alpha.14.tgz#cf424cdc6a6e3327e44df59f17db385c3389a791" - integrity sha512-wgxgifHadVPrcyEfIa2woDCeopfDhd2XOMnVAPr6FjC/Ms8PsTeqtF1G9jY9xH0XMhJ4uRXsxyebE2DiNkYcEw== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/cells" "^4.0.0-alpha.14" - "@jupyterlab/codeeditor" "^4.0.0-alpha.14" - "@jupyterlab/codemirror" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/docregistry" "^4.0.0-alpha.14" - "@jupyterlab/documentsearch" "^4.0.0-alpha.14" - "@jupyterlab/lsp" "^4.0.0-alpha.14" - "@jupyterlab/nbformat" "^4.0.0-alpha.14" - "@jupyterlab/observables" "^5.0.0-alpha.14" - "@jupyterlab/rendermime" "^4.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/settingregistry" "^4.0.0-alpha.14" - "@jupyterlab/shared-models" "^4.0.0-alpha.14" - "@jupyterlab/statusbar" "^4.0.0-alpha.14" - "@jupyterlab/toc" "^6.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/notebook@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/notebook/-/notebook-4.0.0-alpha.15.tgz#378a2e0020e781633e7c01bffd42e64f4b386590" + integrity sha512-9LK3nPs7xi9JNgBUzteGfHBRMBZn0YbYYzifh7BZn1LbN8Mb5TS6vKXOPkBF448lhilmUnVUSMKpUm18ZR8+sw== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/cells" "^4.0.0-alpha.15" + "@jupyterlab/codeeditor" "^4.0.0-alpha.15" + "@jupyterlab/codemirror" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/docregistry" "^4.0.0-alpha.15" + "@jupyterlab/documentsearch" "^4.0.0-alpha.15" + "@jupyterlab/lsp" "^4.0.0-alpha.15" + "@jupyterlab/nbformat" "^4.0.0-alpha.15" + "@jupyterlab/observables" "^5.0.0-alpha.15" + "@jupyterlab/rendermime" "^4.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/settingregistry" "^4.0.0-alpha.15" + "@jupyterlab/shared-models" "^4.0.0-alpha.15" + "@jupyterlab/statusbar" "^4.0.0-alpha.15" + "@jupyterlab/toc" "^6.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/domutils" "^2.0.0-alpha.6" @@ -592,10 +592,10 @@ "@lumino/widgets" "^2.0.0-alpha.6" react "^17.0.1" -"@jupyterlab/observables@^5.0.0-alpha.14": - version "5.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/observables/-/observables-5.0.0-alpha.14.tgz#3e831e54ccf4ae4897b7cbf34f4b95d5a04a7a5c" - integrity sha512-bOjNe2u9sExl8IOkTiD0ycKS5uxtiFvE3bg4otK8ZsCfu7skcVj8tYvciS7O3rFgM/JsPEiqcjfAEwxCVSNQxw== +"@jupyterlab/observables@^5.0.0-alpha.15": + version "5.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/observables/-/observables-5.0.0-alpha.15.tgz#13f564a4881d2e8caed55787e0f85b79c3110998" + integrity sha512-PftwPVTPmIu5GKwhackMTGud+loSMuVIGqhKS07h+yvp8tWSSQRXucuyqDJ1OinxvltLV8IPn4hLvIci3NNTwA== dependencies: "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" @@ -603,18 +603,18 @@ "@lumino/messaging" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" -"@jupyterlab/outputarea@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/outputarea/-/outputarea-4.0.0-alpha.14.tgz#49e51b9b50be7247d44d82f746301c907ce4cd78" - integrity sha512-M1sph1hfB0LICWRFVFW1mJx7TtxO5o9eJL7+1IznhPtTl+jvU8a8klcBQ+crJoFhFi+8Fe+W4zG0C7sVdriN/Q== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/nbformat" "^4.0.0-alpha.14" - "@jupyterlab/observables" "^5.0.0-alpha.14" - "@jupyterlab/rendermime" "^4.0.0-alpha.14" - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" +"@jupyterlab/outputarea@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/outputarea/-/outputarea-4.0.0-alpha.15.tgz#ad5738ce34bd8d814a8472f047c960b5b4dd69be" + integrity sha512-t1M+hyuEtITyVCwkBp5/GTGNSWkx4SzjOJ8M/Npt1KYmgDfercbEKMwcaw3q7gk1UDIaGx32u8tdLKGVEA1zBw== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/nbformat" "^4.0.0-alpha.15" + "@jupyterlab/observables" "^5.0.0-alpha.15" + "@jupyterlab/rendermime" "^4.0.0-alpha.15" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" @@ -623,42 +623,41 @@ "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/rendermime-interfaces@^3.8.0-alpha.14": - version "3.8.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/rendermime-interfaces/-/rendermime-interfaces-3.8.0-alpha.14.tgz#2362828d473ebe8f4acd0f03af0ba034caa3a121" - integrity sha512-697BbjnDqQTTHmWSjj+XZ9PPktOhBCx3M3EIwy1Tk9tk6m8Ow3sQ2LQMBQI9eS9+bswvUudGGMyyISlKDw9qDw== +"@jupyterlab/rendermime-interfaces@^3.8.0-alpha.15": + version "3.8.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/rendermime-interfaces/-/rendermime-interfaces-3.8.0-alpha.15.tgz#ffe7248328ef60d5554c0a21a1e05f9c8990bbbf" + integrity sha512-YLeb3+xr+6/hvMcW8aWk6NQ3nwn61xs2CK5hFiBOtNf9JSxopDMrP9tnZ17RbjueHyhHNoiaPofamUP+lFyvDQ== dependencies: "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/rendermime@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/rendermime/-/rendermime-4.0.0-alpha.14.tgz#713b5fb48ba8f5efa58e09763d350840352e886b" - integrity sha512-uiWiJSqGzYg1tFxqSIBfo8qJwoqw7WqPCTkxprbi4gf2JmbEyeajv8My06gSrNLN/Jal4N86GUvmD8EMuWx9TA== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/nbformat" "^4.0.0-alpha.14" - "@jupyterlab/observables" "^5.0.0-alpha.14" - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" +"@jupyterlab/rendermime@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/rendermime/-/rendermime-4.0.0-alpha.15.tgz#8e9b4dd65bc89eb5e6ac4f027d1c9576cd8337d9" + integrity sha512-hY/dY4LzOLpyeUagg3Vd5fcBj4s5NVANqjnVCsjf5v47gb32/rVfyj1z8DHO1HAJmAs7vnrGuPvlVhiqiuyvdg== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/nbformat" "^4.0.0-alpha.15" + "@jupyterlab/observables" "^5.0.0-alpha.15" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/messaging" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" lodash.escape "^4.0.1" -"@jupyterlab/services@^7.0.0-alpha.14": - version "7.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/services/-/services-7.0.0-alpha.14.tgz#7a745690ed0feaa277615bad98025385dcedb249" - integrity sha512-NA8CroNgMsjIlqZ+iBxbmu9Ir1Sb6aCU2Onf816x8g4vUQAAYVYJh1HlV6TCroDpBEgYE0y/58ojKumSeaC1/A== +"@jupyterlab/services@^7.0.0-alpha.15": + version "7.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/services/-/services-7.0.0-alpha.15.tgz#6bbaef5e59eeb042bbc90e4fda191d80e466ad5c" + integrity sha512-TGGveemYg0d9RGhT0R3S+Zr9cAIcVMCP6KkeA4oq85TbEPQxo1pOMCbLqpPTc78k6UVoum8L05sAPCE7CXA9Sw== dependencies: - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/nbformat" "^4.0.0-alpha.14" - "@jupyterlab/observables" "^5.0.0-alpha.14" - "@jupyterlab/settingregistry" "^4.0.0-alpha.14" - "@jupyterlab/statedb" "^4.0.0-alpha.14" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/nbformat" "^4.0.0-alpha.15" + "@jupyterlab/settingregistry" "^4.0.0-alpha.15" + "@jupyterlab/statedb" "^4.0.0-alpha.15" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/polling" "^2.0.0-alpha.6" @@ -666,12 +665,12 @@ node-fetch "^2.6.0" ws "^7.4.6" -"@jupyterlab/settingregistry@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/settingregistry/-/settingregistry-4.0.0-alpha.14.tgz#f8f5b58d14626b914fd0d0790671169ddab42d09" - integrity sha512-q4Q46qgQ2eokqjAy62wQ9OrXFCKWAn9xyXyO3kNuHNQIYTSJ0HuIueQfWVcbezxgbZ9tHN+xyfO/6X/bQhpxzA== +"@jupyterlab/settingregistry@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/settingregistry/-/settingregistry-4.0.0-alpha.15.tgz#5f163c008966368f0327cc9f4697cb96fe4b2be8" + integrity sha512-Sjd6yJYVlEuogpVzV+w1YqMBI2ZzkWtRXFCjuP5FprNkqXjoufhgM9x2a+gzUMQWjnlfjsMt/0y+E4gEx3fVXQ== dependencies: - "@jupyterlab/statedb" "^4.0.0-alpha.14" + "@jupyterlab/statedb" "^4.0.0-alpha.15" "@lumino/commands" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" @@ -679,12 +678,12 @@ ajv "^6.12.3" json5 "^2.1.1" -"@jupyterlab/shared-models@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/shared-models/-/shared-models-4.0.0-alpha.14.tgz#022e886c1cbaa8e8e4ba5b4a9f0d6af54c3b71ee" - integrity sha512-iMxIOfQRN3GYxo837xfuKEjinMkPtuz2FC+TukI/F+U7n+0tLfE2j+/6LiopiB5NJytQwyH3JAa8VeAar/CJZA== +"@jupyterlab/shared-models@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/shared-models/-/shared-models-4.0.0-alpha.15.tgz#29f3e2a8b0d30011107239120410c4d41ddd8b45" + integrity sha512-1ArVBlGUPpW7jm4vvzG10OASi1DJuT111g3wEt4TCXHxpwW9sjQr6cmd4SAPUTh3UaQxf/uschej3L6CK7n0Tw== dependencies: - "@jupyterlab/nbformat" "^4.0.0-alpha.14" + "@jupyterlab/nbformat" "^4.0.0-alpha.15" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" @@ -692,10 +691,10 @@ y-protocols "^1.0.5" yjs "^13.5.40" -"@jupyterlab/statedb@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/statedb/-/statedb-4.0.0-alpha.14.tgz#396381e6035a151d56f90800f7bbca0b07977406" - integrity sha512-cNr+vcc5YstRg6Gc4r3crHEMaiZvTFxfma+RUx1fshVXYdqUNrTYDV7xA/nHQUnNFXEs7tm4+5sWNJux5ORIGA== +"@jupyterlab/statedb@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/statedb/-/statedb-4.0.0-alpha.15.tgz#f74bb5d6b8ae7323118a8c2c7b27ea33520d8fce" + integrity sha512-iTl/ynPvSy0eTKW0euEigOomDY+nfI+gDZNzjJLE/YTM1J5bxjQ+QmbrMLaoUJhdSpEtxTlCgsgALuO7WY1jTw== dependencies: "@lumino/commands" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" @@ -703,12 +702,12 @@ "@lumino/properties" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" -"@jupyterlab/statusbar@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/statusbar/-/statusbar-4.0.0-alpha.14.tgz#6c951eb8d52e17928885e1bcf09cf2232757b807" - integrity sha512-gXy949nd5NgyqqxZUJ+fVh7qTbatWz+7rCvyc0d4zc/kFbMTZEHiNbl/vZHd22FRta+ZboBcB/GeDkIJoYnZXA== +"@jupyterlab/statusbar@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/statusbar/-/statusbar-4.0.0-alpha.15.tgz#8c8d0bf42a3797dd67b153d56926e33b32dde065" + integrity sha512-3VaPikq9WgtZBuFpy3WUkFZPm44Be+kQNw+g/eEQ12iHK3OzVD5AMxRwFESeygh20Oqnog6xFUJ1h+96odrd1Q== dependencies: - "@jupyterlab/ui-components" "^4.0.0-alpha.29" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" @@ -719,18 +718,18 @@ react "^17.0.1" typestyle "^2.0.4" -"@jupyterlab/toc@^6.0.0-alpha.14": - version "6.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/toc/-/toc-6.0.0-alpha.14.tgz#6fad008f8252cbdcd87921ade3c4f42fbfd46012" - integrity sha512-Icmm/4FAYurllXBTln7aZZl/9a/hAWFOSDOwF1vbq2NxX3xRE7Lr86SQiSqiNMwir+55UyO73jyHHr5hX5MVAA== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/docregistry" "^4.0.0-alpha.14" - "@jupyterlab/observables" "^5.0.0-alpha.14" - "@jupyterlab/rendermime" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/toc@^6.0.0-alpha.15": + version "6.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/toc/-/toc-6.0.0-alpha.15.tgz#333ea375d21624c23f4b73602718f087adf94dc6" + integrity sha512-BOTe1mvTEQ08Lf1VT0Hn0QKFJkw331etw7keSuHnYPjxdlXIni3cB87iAWYkw8Rb3Y7D0nJskOdIKkuKXYGAZw== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/docregistry" "^4.0.0-alpha.15" + "@jupyterlab/observables" "^5.0.0-alpha.15" + "@jupyterlab/rendermime" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/messaging" "^2.0.0-alpha.6" @@ -738,26 +737,26 @@ "@lumino/widgets" "^2.0.0-alpha.6" react "^17.0.1" -"@jupyterlab/translation@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/translation/-/translation-4.0.0-alpha.14.tgz#4c2045dce00bc7903945d3bc54fd16209c904057" - integrity sha512-7x75+ri7qcao+byPqPpRr75xuJ/uwH9lnu52FsjUCQgaHQdZDzEBYbQJ6FNChrelRhreICKXL3bpA0S40vyXtQ== +"@jupyterlab/translation@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/translation/-/translation-4.0.0-alpha.15.tgz#619d071140a1f9ab0c3d175edd299ab70d3dc01a" + integrity sha512-E7I6LWSBnZpmFxr4QmnmGaiqXjNIFLhslaJyjQXy9jVPS0YzwigIpF+Kz9oIuntiuKH+mYBHg4F9qcVUZALa8Q== dependencies: - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/statedb" "^4.0.0-alpha.14" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/statedb" "^4.0.0-alpha.15" "@lumino/coreutils" "^2.0.0-alpha.6" -"@jupyterlab/ui-components@^4.0.0-alpha.29": - version "4.0.0-alpha.29" - resolved "https://registry.yarnpkg.com/@jupyterlab/ui-components/-/ui-components-4.0.0-alpha.29.tgz#e48ba526febe5ca9fc247e75743166cde1e090f5" - integrity sha512-/Phksv/S1Aoh+IQJEnhK//jOH/SzZPtkFwmjf8xcl4yFZ9Zd0hUBUtgr7aHWgzen7mq6I/ZmCW0POfv9V5yfIQ== +"@jupyterlab/ui-components@^4.0.0-alpha.30": + version "4.0.0-alpha.30" + resolved "https://registry.yarnpkg.com/@jupyterlab/ui-components/-/ui-components-4.0.0-alpha.30.tgz#6de764759ac947366232ce232a80443317647bbc" + integrity sha512-Y5CKq/rV3Ai4o/TVAw9IezPrU8f1LZQaDE2AMocixJXvlo4ZuMHHHPdb63gUxvLYhid6tv9/r6ogQC92RIpQTA== dependencies: - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/observables" "^5.0.0-alpha.14" - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/observables" "^5.0.0-alpha.15" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/commands" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" @@ -768,7 +767,7 @@ "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/virtualdom" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" - "@rjsf/core" "^3.1.0" + "@rjsf/core" "^4.2.0" react "^17.0.1" react-dom "^17.0.1" typestyle "^2.0.4" @@ -998,18 +997,18 @@ "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/virtualdom" "^2.0.0-alpha.6" -"@playwright/test@^1.26.1", "@playwright/test@~1.26.0": - version "1.26.1" - resolved "https://registry.yarnpkg.com/@playwright/test/-/test-1.26.1.tgz#73ada4e70f618bca69ba7509c4ba65b5a41c4b10" - integrity sha512-bNxyZASVt2adSZ9gbD7NCydzcb5JaI0OR9hc7s+nmPeH604gwp0zp17NNpwXY4c8nvuBGQQ9oGDx72LE+cUWvw== +"@playwright/test@^1.27.0": + version "1.27.1" + resolved "https://registry.yarnpkg.com/@playwright/test/-/test-1.27.1.tgz#9364d1e02021261211c8ff586d903faa79ce95c4" + integrity sha512-mrL2q0an/7tVqniQQF6RBL2saskjljXzqNcCOVMUjRIgE6Y38nCNaP+Dc2FBW06bcpD3tqIws/HT9qiMHbNU0A== dependencies: "@types/node" "*" - playwright-core "1.26.1" + playwright-core "1.27.1" -"@rjsf/core@^3.1.0": - version "3.2.1" - resolved "https://registry.yarnpkg.com/@rjsf/core/-/core-3.2.1.tgz#8a7b24c9a6f01f0ecb093fdfc777172c12b1b009" - integrity sha512-dk8ihvxFbcuIwU7G+HiJbFgwyIvaumPt5g5zfnuC26mwTUPlaDGFXKK2yITp8tJ3+hcwS5zEXtAN9wUkfuM4jA== +"@rjsf/core@^4.2.0": + version "4.2.3" + resolved "https://registry.yarnpkg.com/@rjsf/core/-/core-4.2.3.tgz#7ff2fb593f0af20485dc267391a8971378eec655" + integrity sha512-dRXhd1Tac/9OcG0VDrYDF2boNTyKINEEITEtJ4L1Yce2iMVk66U52BhWKIFp/WXDM27vwnOfwQo4NwGiqeQeHw== dependencies: "@types/json-schema" "^7.0.7" ajv "^6.7.0" @@ -1017,9 +1016,10 @@ json-schema-merge-allof "^0.6.0" jsonpointer "^5.0.0" lodash "^4.17.15" + lodash-es "^4.17.15" nanoid "^3.1.23" prop-types "^15.7.2" - react-is "^16.9.0" + react-is "16.9.0" "@stdlib/array@^0.0.x": version "0.0.12" @@ -2161,6 +2161,11 @@ lib0@^0.2.31, lib0@^0.2.42, lib0@^0.2.49, lib0@^0.2.52: dependencies: isomorphic.js "^0.2.4" +lodash-es@^4.17.15: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.21.tgz#43e626c46e6591b7750beb2b50117390c609e3ee" + integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw== + lodash.debounce@^4.0.8: version "4.0.8" resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" @@ -2304,10 +2309,10 @@ picocolors@^1.0.0: resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== -playwright-core@1.26.1: - version "1.26.1" - resolved "https://registry.yarnpkg.com/playwright-core/-/playwright-core-1.26.1.tgz#a162f476488312dcf12638d97685144de6ada512" - integrity sha512-hzFchhhxnEiPc4qVPs9q2ZR+5eKNifY2hQDHtg1HnTTUuphYCBP8ZRb2si+B1TR7BHirgXaPi48LIye5SgrLAA== +playwright-core@1.27.1: + version "1.27.1" + resolved "https://registry.yarnpkg.com/playwright-core/-/playwright-core-1.27.1.tgz#840ef662e55a3ed759d8b5d3d00a5f885a7184f4" + integrity sha512-9EmeXDncC2Pmp/z+teoVYlvmPWUC6ejSSYZUln7YaP89Z6lpAaiaAnqroUt/BoLo8tn7WYShcfaCh+xofZa44Q== portfinder@^1.0.25: version "1.0.32" @@ -2377,7 +2382,12 @@ react-dom@^17.0.1: object-assign "^4.1.1" scheduler "^0.20.2" -react-is@^16.13.1, react-is@^16.9.0: +react-is@16.9.0: + version "16.9.0" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.9.0.tgz#21ca9561399aad0ff1a7701c01683e8ca981edcb" + integrity sha512-tJBzzzIgnnRfEm046qRcURvwQnZVXmuCbscxUO5RWrGTXpon2d4c8mI0D8WE6ydVIm29JiLB6+RslkIvym9Rjw== + +react-is@^16.13.1: version "16.13.1" resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== diff --git a/yarn.lock b/yarn.lock index 4cb5e3043..e2832e27b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -24,10 +24,10 @@ dependencies: "@babel/highlight" "^7.18.6" -"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.18.8", "@babel/compat-data@^7.19.3": - version "7.19.3" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.19.3.tgz#707b939793f867f5a73b2666e6d9a3396eb03151" - integrity sha512-prBHMK4JYYK+wDjJF1q99KK4JLL+egWS4nmNqdlMUgCExMZ+iZW0hGhyC3VEbsPjvaN0TBhW//VIFwBrk8sEiw== +"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.19.3", "@babel/compat-data@^7.19.4": + version "7.19.4" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.19.4.tgz#95c86de137bf0317f3a570e1b6e996b427299747" + integrity sha512-CHIGpJcUQ5lU9KrPHTjBMhVwQG6CQjxfg36fGXl3qk/Gik1WwWachaXFuo0uCWJT/mStOKtcbFJCaVLihC1CMw== "@babel/core@^7.1.0", "@babel/core@^7.10.2", "@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.7.5": version "7.19.3" @@ -50,12 +50,12 @@ json5 "^2.2.1" semver "^6.3.0" -"@babel/generator@^7.19.3": - version "7.19.3" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.19.3.tgz#d7f4d1300485b4547cb6f94b27d10d237b42bf59" - integrity sha512-fqVZnmp1ncvZU757UzDheKZpfPgatqY59XtW2/j/18H7u76akb8xqvjw82f+i2UKd/ksYsSick/BCLQUUtJ/qQ== +"@babel/generator@^7.19.3", "@babel/generator@^7.19.4": + version "7.19.5" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.19.5.tgz#da3f4b301c8086717eee9cab14da91b1fa5dcca7" + integrity sha512-DxbNz9Lz4aMZ99qPpO1raTbcrI1ZeYh+9NR9qhfkQIbFtVEqotHojEBxHzmxhVONkGt6VyrqVQcgpefMy9pqcg== dependencies: - "@babel/types" "^7.19.3" + "@babel/types" "^7.19.4" "@jridgewell/gen-mapping" "^0.3.2" jsesc "^2.5.1" @@ -206,11 +206,11 @@ "@babel/types" "^7.19.0" "@babel/helper-simple-access@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz#d6d8f51f4ac2978068df934b569f08f29788c7ea" - integrity sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g== + version "7.19.4" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.19.4.tgz#be553f4951ac6352df2567f7daa19a0ee15668e7" + integrity sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg== dependencies: - "@babel/types" "^7.18.6" + "@babel/types" "^7.19.4" "@babel/helper-skip-transparent-expression-wrappers@^7.18.9": version "7.18.9" @@ -226,10 +226,10 @@ dependencies: "@babel/types" "^7.18.6" -"@babel/helper-string-parser@^7.18.10": - version "7.18.10" - resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz#181f22d28ebe1b3857fa575f5c290b1aaf659b56" - integrity sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw== +"@babel/helper-string-parser@^7.19.4": + version "7.19.4" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63" + integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw== "@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1": version "7.19.1" @@ -252,13 +252,13 @@ "@babel/types" "^7.19.0" "@babel/helpers@^7.19.0": - version "7.19.0" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.19.0.tgz#f30534657faf246ae96551d88dd31e9d1fa1fc18" - integrity sha512-DRBCKGwIEdqY3+rPJgG/dKfQy9+08rHIAJx8q2p+HSWP87s2HCrQmaAMMyMll2kIXKCW0cO1RdQskx15Xakftg== + version "7.19.4" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.19.4.tgz#42154945f87b8148df7203a25c31ba9a73be46c5" + integrity sha512-G+z3aOx2nfDHwX/kyVii5fJq+bgscg89/dJNWpYeKeBv3v9xX8EIabmx1k6u9LS04H7nROFVRVK+e3k0VHp+sw== dependencies: "@babel/template" "^7.18.10" - "@babel/traverse" "^7.19.0" - "@babel/types" "^7.19.0" + "@babel/traverse" "^7.19.4" + "@babel/types" "^7.19.4" "@babel/highlight@^7.10.4", "@babel/highlight@^7.18.6": version "7.18.6" @@ -269,10 +269,10 @@ chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.18.10", "@babel/parser@^7.19.3": - version "7.19.3" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.19.3.tgz#8dd36d17c53ff347f9e55c328710321b49479a9a" - integrity sha512-pJ9xOlNWHiy9+FuFP09DEAFbAn4JskgRsVcc169w2xRBC3FRGuQEwjeIMMND9L2zc0iEhO/tGv4Zq+km+hxNpQ== +"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.18.10", "@babel/parser@^7.19.3", "@babel/parser@^7.19.4": + version "7.19.4" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.19.4.tgz#03c4339d2b8971eb3beca5252bafd9b9f79db3dc" + integrity sha512-qpVT7gtuOLjWeDTKLkJ6sryqLliBaFpAtGeqw5cs5giLldvh+Ch0plqnUMKoVAUS6ZEueQQiZV+p5pxtPitEsA== "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6": version "7.18.6" @@ -365,14 +365,14 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-numeric-separator" "^7.10.4" -"@babel/plugin-proposal-object-rest-spread@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.9.tgz#f9434f6beb2c8cae9dfcf97d2a5941bbbf9ad4e7" - integrity sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q== +"@babel/plugin-proposal-object-rest-spread@^7.19.4": + version "7.19.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.19.4.tgz#a8fc86e8180ff57290c91a75d83fe658189b642d" + integrity sha512-wHmj6LDxVDnL+3WhXteUBaoM1aVILZODAUjg11kHqG4cOlfgMQGxw6aCgvrXrmaJR3Bn14oZhImyCPZzRpC93Q== dependencies: - "@babel/compat-data" "^7.18.8" - "@babel/helper-compilation-targets" "^7.18.9" - "@babel/helper-plugin-utils" "^7.18.9" + "@babel/compat-data" "^7.19.4" + "@babel/helper-compilation-targets" "^7.19.3" + "@babel/helper-plugin-utils" "^7.19.0" "@babel/plugin-syntax-object-rest-spread" "^7.8.3" "@babel/plugin-transform-parameters" "^7.18.8" @@ -561,12 +561,12 @@ dependencies: "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-block-scoping@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.9.tgz#f9b7e018ac3f373c81452d6ada8bd5a18928926d" - integrity sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw== +"@babel/plugin-transform-block-scoping@^7.19.4": + version "7.19.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.19.4.tgz#315d70f68ce64426db379a3d830e7ac30be02e9b" + integrity sha512-934S2VLLlt2hRJwPf4MczaOr4hYF0z+VKPwqTNxyKX7NthTiPfhuKFWQZHXRM0vh/wo/VyXB3s4bZUNA08l+tQ== dependencies: - "@babel/helper-plugin-utils" "^7.18.9" + "@babel/helper-plugin-utils" "^7.19.0" "@babel/plugin-transform-classes@^7.19.0": version "7.19.0" @@ -590,12 +590,12 @@ dependencies: "@babel/helper-plugin-utils" "^7.18.9" -"@babel/plugin-transform-destructuring@^7.18.13": - version "7.18.13" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.13.tgz#9e03bc4a94475d62b7f4114938e6c5c33372cbf5" - integrity sha512-TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow== +"@babel/plugin-transform-destructuring@^7.19.4": + version "7.19.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.19.4.tgz#46890722687b9b89e1369ad0bd8dc6c5a3b4319d" + integrity sha512-t0j0Hgidqf0aM86dF8U+vXYReUgJnlv4bZLsyoPnwZNrGY+7/38o8YjaELrvHeVfTZao15kjR0PVv0nju2iduA== dependencies: - "@babel/helper-plugin-utils" "^7.18.9" + "@babel/helper-plugin-utils" "^7.19.0" "@babel/plugin-transform-dotall-regex@^7.18.6", "@babel/plugin-transform-dotall-regex@^7.4.4": version "7.18.6" @@ -792,11 +792,11 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/preset-env@^7.10.2", "@babel/preset-env@^7.12.1": - version "7.19.3" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.19.3.tgz#52cd19abaecb3f176a4ff9cc5e15b7bf06bec754" - integrity sha512-ziye1OTc9dGFOAXSWKUqQblYHNlBOaDl8wzqf2iKXJAltYiR3hKHUKmkt+S9PppW7RQpq4fFCrwwpIDj/f5P4w== + version "7.19.4" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.19.4.tgz#4c91ce2e1f994f717efb4237891c3ad2d808c94b" + integrity sha512-5QVOTXUdqTCjQuh2GGtdd7YEhoRXBMVGROAtsBeLGIbIz3obCBIfRMT1I3ZKkMgNzwkyCkftDXSSkHxnfVf4qg== dependencies: - "@babel/compat-data" "^7.19.3" + "@babel/compat-data" "^7.19.4" "@babel/helper-compilation-targets" "^7.19.3" "@babel/helper-plugin-utils" "^7.19.0" "@babel/helper-validator-option" "^7.18.6" @@ -811,7 +811,7 @@ "@babel/plugin-proposal-logical-assignment-operators" "^7.18.9" "@babel/plugin-proposal-nullish-coalescing-operator" "^7.18.6" "@babel/plugin-proposal-numeric-separator" "^7.18.6" - "@babel/plugin-proposal-object-rest-spread" "^7.18.9" + "@babel/plugin-proposal-object-rest-spread" "^7.19.4" "@babel/plugin-proposal-optional-catch-binding" "^7.18.6" "@babel/plugin-proposal-optional-chaining" "^7.18.9" "@babel/plugin-proposal-private-methods" "^7.18.6" @@ -835,10 +835,10 @@ "@babel/plugin-transform-arrow-functions" "^7.18.6" "@babel/plugin-transform-async-to-generator" "^7.18.6" "@babel/plugin-transform-block-scoped-functions" "^7.18.6" - "@babel/plugin-transform-block-scoping" "^7.18.9" + "@babel/plugin-transform-block-scoping" "^7.19.4" "@babel/plugin-transform-classes" "^7.19.0" "@babel/plugin-transform-computed-properties" "^7.18.9" - "@babel/plugin-transform-destructuring" "^7.18.13" + "@babel/plugin-transform-destructuring" "^7.19.4" "@babel/plugin-transform-dotall-regex" "^7.18.6" "@babel/plugin-transform-duplicate-keys" "^7.18.9" "@babel/plugin-transform-exponentiation-operator" "^7.18.6" @@ -865,7 +865,7 @@ "@babel/plugin-transform-unicode-escapes" "^7.18.10" "@babel/plugin-transform-unicode-regex" "^7.18.6" "@babel/preset-modules" "^0.1.5" - "@babel/types" "^7.19.3" + "@babel/types" "^7.19.4" babel-plugin-polyfill-corejs2 "^0.3.3" babel-plugin-polyfill-corejs3 "^0.6.0" babel-plugin-polyfill-regenerator "^0.4.1" @@ -884,9 +884,9 @@ esutils "^2.0.2" "@babel/runtime@^7.16.7", "@babel/runtime@^7.17.8", "@babel/runtime@^7.8.4": - version "7.19.0" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.19.0.tgz#22b11c037b094d27a8a2504ea4dcff00f50e2259" - integrity sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA== + version "7.19.4" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.19.4.tgz#a42f814502ee467d55b38dd1c256f53a7b885c78" + integrity sha512-EXpLCrk55f+cYqmHsSR+yD/0gAIMxxA9QK9lnQWzhMCvt+YmoBN7Zx94s++Kv0+unHk39vxNO8t+CMA2WSS3wA== dependencies: regenerator-runtime "^0.13.4" @@ -899,28 +899,28 @@ "@babel/parser" "^7.18.10" "@babel/types" "^7.18.10" -"@babel/traverse@^7.1.0", "@babel/traverse@^7.19.0", "@babel/traverse@^7.19.1", "@babel/traverse@^7.19.3": - version "7.19.3" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.19.3.tgz#3a3c5348d4988ba60884e8494b0592b2f15a04b4" - integrity sha512-qh5yf6149zhq2sgIXmwjnsvmnNQC2iw70UFjp4olxucKrWd/dvlUsBI88VSLUsnMNF7/vnOiA+nk1+yLoCqROQ== +"@babel/traverse@^7.1.0", "@babel/traverse@^7.19.0", "@babel/traverse@^7.19.1", "@babel/traverse@^7.19.3", "@babel/traverse@^7.19.4": + version "7.19.4" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.19.4.tgz#f117820e18b1e59448a6c1fa9d0ff08f7ac459a8" + integrity sha512-w3K1i+V5u2aJUOXBFFC5pveFLmtq1s3qcdDNC2qRI6WPBQIDaKFqXxDEqDO/h1dQ3HjsZoZMyIy6jGLq0xtw+g== dependencies: "@babel/code-frame" "^7.18.6" - "@babel/generator" "^7.19.3" + "@babel/generator" "^7.19.4" "@babel/helper-environment-visitor" "^7.18.9" "@babel/helper-function-name" "^7.19.0" "@babel/helper-hoist-variables" "^7.18.6" "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/parser" "^7.19.3" - "@babel/types" "^7.19.3" + "@babel/parser" "^7.19.4" + "@babel/types" "^7.19.4" debug "^4.1.0" globals "^11.1.0" -"@babel/types@^7.0.0", "@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.0", "@babel/types@^7.19.3", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4": - version "7.19.3" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.19.3.tgz#fc420e6bbe54880bce6779ffaf315f5e43ec9624" - integrity sha512-hGCaQzIY22DJlDh9CH7NOxgKkFjBk0Cw9xDO1Xmh2151ti7wiGfQ3LauXzL4HP1fmFlTX6XjpRETTpUcv7wQLw== +"@babel/types@^7.0.0", "@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.0", "@babel/types@^7.19.3", "@babel/types@^7.19.4", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4": + version "7.19.4" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.19.4.tgz#0dd5c91c573a202d600490a35b33246fed8a41c7" + integrity sha512-M5LK7nAeS6+9j7hAq+b3fQs+pNfUtTGq+yFFfHnauFA8zQtLRfmuipmsKDKKLuyG+wC8ABW43A153YNawNTEtw== dependencies: - "@babel/helper-string-parser" "^7.18.10" + "@babel/helper-string-parser" "^7.19.4" "@babel/helper-validator-identifier" "^7.19.1" to-fast-properties "^2.0.0" @@ -1019,9 +1019,9 @@ "@lezer/json" "^1.0.0" "@codemirror/lang-markdown@^6.0.0": - version "6.0.1" - resolved "https://registry.yarnpkg.com/@codemirror/lang-markdown/-/lang-markdown-6.0.1.tgz#39b5e2acb200013e674a416ce0e6410508f578bf" - integrity sha512-pHPQuRwf9cUrmkmsTHRjtS9ZnGu3fA9YzAdh2++d+L9wbfnC2XbKh0Xvm/0YiUjdCnoCx9wDFEoCuAnkqKWLIw== + version "6.0.2" + resolved "https://registry.yarnpkg.com/@codemirror/lang-markdown/-/lang-markdown-6.0.2.tgz#4d34658789c8dd10e10e8bcda8b3ac62968ba386" + integrity sha512-wsUGGP8ihCVJKzVciOpsZXteSY1IRTe/C4eYb2QUEDl41ZiRfmdhA4llechqDaRdGOJuc45oCjBVjOo94CBHtA== dependencies: "@codemirror/lang-html" "^6.0.0" "@codemirror/language" "^6.0.0" @@ -1131,9 +1131,9 @@ integrity sha512-Mxff85Hp5va+zuj+H748KbubXjrinX/k28lj43H14T2D0+4kuvEFIEIO7hCEcvBT8ubZyIelt9yGOjj2MWOEQA== "@codemirror/view@^6.0.0", "@codemirror/view@^6.2.2": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@codemirror/view/-/view-6.3.0.tgz#715c97d64e7e20c9674782e7101ab7aefef8e23d" - integrity sha512-jMN9OGKmzRPJ+kksfMrB5e/A9heQncirHsz8XNBpgEbYONCk5tWHMKVWKTNwznkUGD5mnigXI1i5YIcWpscSPg== + version "6.3.1" + resolved "https://registry.yarnpkg.com/@codemirror/view/-/view-6.3.1.tgz#c2f1d8ad569351eb9f8d57956536fc63cd61aaa9" + integrity sha512-NKPBphoV9W2Q6tKXk+ge4q5EhMOOC0rpwdGS80/slNSfsVqkN4gwXIEqSprXJFlf9aUKZU7WhPvqRBMNH+hJkQ== dependencies: "@codemirror/state" "^6.0.0" style-mod "^4.0.0" @@ -1397,7 +1397,7 @@ "@jridgewell/sourcemap-codec" "^1.4.10" "@jridgewell/trace-mapping" "^0.3.9" -"@jridgewell/resolve-uri@^3.0.3": +"@jridgewell/resolve-uri@3.1.0": version "3.1.0" resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== @@ -1415,36 +1415,35 @@ "@jridgewell/gen-mapping" "^0.3.0" "@jridgewell/trace-mapping" "^0.3.9" -"@jridgewell/sourcemap-codec@^1.4.10": +"@jridgewell/sourcemap-codec@1.4.14", "@jridgewell/sourcemap-codec@^1.4.10": version "1.4.14" resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== "@jridgewell/trace-mapping@^0.3.14", "@jridgewell/trace-mapping@^0.3.9": - version "0.3.15" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz#aba35c48a38d3fd84b37e66c9c0423f9744f9774" - integrity sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g== + version "0.3.16" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.16.tgz#a7982f16c18cae02be36274365433e5b49d7b23f" + integrity sha512-LCQ+NeThyJ4k1W2d+vIKdxuSt9R3pQSZ4P92m7EakaYuXcVWbHuT5bjNcqLd4Rdgi6xYWYDvBJZJLZSLanjDcA== dependencies: - "@jridgewell/resolve-uri" "^3.0.3" - "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/resolve-uri" "3.1.0" + "@jridgewell/sourcemap-codec" "1.4.14" "@jupyter-notebook/application-extension@file:packages/application-extension": version "7.0.0-alpha.6" dependencies: "@jupyter-notebook/application" "^7.0.0-alpha.6" "@jupyter-notebook/ui-components" "^7.0.0-alpha.6" - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/celltags" "^4.0.0-alpha.14" - "@jupyterlab/codeeditor" "^4.0.0-alpha.14" - "@jupyterlab/codemirror" "^4.0.0-alpha.14" - "@jupyterlab/console" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/docmanager" "^4.0.0-alpha.14" - "@jupyterlab/docregistry" "^4.0.0-alpha.14" - "@jupyterlab/mainmenu" "^4.0.0-alpha.14" - "@jupyterlab/settingregistry" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/celltags" "^4.0.0-alpha.15" + "@jupyterlab/codeeditor" "^4.0.0-alpha.15" + "@jupyterlab/console" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/docmanager" "^4.0.0-alpha.15" + "@jupyterlab/docregistry" "^4.0.0-alpha.15" + "@jupyterlab/mainmenu" "^4.0.0-alpha.15" + "@jupyterlab/settingregistry" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" @@ -1452,11 +1451,11 @@ "@jupyter-notebook/application@file:packages/application": version "7.0.0-alpha.6" dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/docregistry" "^4.0.0-alpha.14" - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/docregistry" "^4.0.0-alpha.15" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/messaging" "^2.0.0-alpha.6" @@ -1467,48 +1466,49 @@ "@jupyter-notebook/console-extension@file:packages/console-extension": version "7.0.0-alpha.6" dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/console" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/console" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" "@lumino/algorithm" "^2.0.0-alpha.6" "@jupyter-notebook/docmanager-extension@file:packages/docmanager-extension": version "7.0.0-alpha.6" dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/docmanager" "^4.0.0-alpha.14" - "@jupyterlab/docregistry" "^4.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/docmanager" "^4.0.0-alpha.15" + "@jupyterlab/docregistry" "^4.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" "@lumino/algorithm" "^2.0.0-alpha.6" + "@lumino/signaling" "^2.0.0-alpha.6" "@jupyter-notebook/documentsearch-extension@file:packages/documentsearch-extension": version "7.0.0-alpha.6" dependencies: "@jupyter-notebook/application" "^7.0.0-alpha.6" - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/documentsearch" "^4.0.0-alpha.14" + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/documentsearch" "^4.0.0-alpha.15" "@lumino/widgets" "^2.0.0-alpha.6" "@jupyter-notebook/help-extension@file:packages/help-extension": version "7.0.0-alpha.6" dependencies: "@jupyter-notebook/ui-components" "^7.0.0-alpha.6" - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/mainmenu" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/mainmenu" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" "@jupyter-notebook/lab-extension@file:packages/lab-extension": version "7.0.0-alpha.6" dependencies: "@jupyter-notebook/application" "^7.0.0-alpha.6" - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/docregistry" "^4.0.0-alpha.14" - "@jupyterlab/notebook" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/docregistry" "^4.0.0-alpha.15" + "@jupyterlab/notebook" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" "@lumino/commands" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" @@ -1516,22 +1516,22 @@ version "7.0.0-alpha.6" dependencies: "@jupyter-notebook/application" "^7.0.0-alpha.6" - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/cells" "^4.0.0-alpha.14" - "@jupyterlab/docmanager" "^4.0.0-alpha.14" - "@jupyterlab/notebook" "^4.0.0-alpha.14" - "@jupyterlab/settingregistry" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/cells" "^4.0.0-alpha.15" + "@jupyterlab/docmanager" "^4.0.0-alpha.15" + "@jupyterlab/notebook" "^4.0.0-alpha.15" + "@jupyterlab/settingregistry" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" "@lumino/polling" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" "@jupyter-notebook/terminal-extension@file:packages/terminal-extension": version "7.0.0-alpha.6" dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/terminal" "^4.0.0-alpha.14" + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/terminal" "^4.0.0-alpha.15" "@lumino/algorithm" "^2.0.0-alpha.6" "@jupyter-notebook/tree-extension@file:packages/tree-extension": @@ -1539,17 +1539,17 @@ dependencies: "@jupyter-notebook/application" "^7.0.0-alpha.6" "@jupyter-notebook/tree" "^7.0.0-alpha.6" - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/docmanager" "^4.0.0-alpha.14" - "@jupyterlab/filebrowser" "^4.0.0-alpha.14" - "@jupyterlab/mainmenu" "^4.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/settingregistry" "^4.0.0-alpha.14" - "@jupyterlab/statedb" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/docmanager" "^4.0.0-alpha.15" + "@jupyterlab/filebrowser" "^4.0.0-alpha.15" + "@jupyterlab/mainmenu" "^4.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/settingregistry" "^4.0.0-alpha.15" + "@jupyterlab/statedb" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/commands" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" @@ -1558,17 +1558,17 @@ version "7.0.0-alpha.6" dependencies: "@jupyter-notebook/application" "^7.0.0-alpha.6" - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/docmanager" "^4.0.0-alpha.14" - "@jupyterlab/filebrowser" "^4.0.0-alpha.14" - "@jupyterlab/mainmenu" "^4.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/settingregistry" "^4.0.0-alpha.14" - "@jupyterlab/statedb" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/docmanager" "^4.0.0-alpha.15" + "@jupyterlab/filebrowser" "^4.0.0-alpha.15" + "@jupyterlab/mainmenu" "^4.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/settingregistry" "^4.0.0-alpha.15" + "@jupyterlab/statedb" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/commands" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" @@ -1577,24 +1577,24 @@ "@jupyter-notebook/ui-components@file:packages/ui-components": version "7.0.0-alpha.6" dependencies: - "@jupyterlab/ui-components" "^4.0.0-alpha.29" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" react "^17.0.1" react-dom "^17.0.1" -"@jupyterlab/application-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/application-extension/-/application-extension-4.0.0-alpha.14.tgz#62f34f3c9074ec646dc8ce9d8307691774aa41f6" - integrity sha512-flNIZmgr0nlLIfLFtm00dwMQGe8E31mQJT7JKKaPEZ0xg8nvEPnN6GuQoY4eNtGmx1roGus3+AFeRx2wo0s8hw== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/property-inspector" "^4.0.0-alpha.14" - "@jupyterlab/settingregistry" "^4.0.0-alpha.14" - "@jupyterlab/statedb" "^4.0.0-alpha.14" - "@jupyterlab/statusbar" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/application-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/application-extension/-/application-extension-4.0.0-alpha.15.tgz#f0ad795b31db7d1f6332a3697c8eeec37f8f1d64" + integrity sha512-ePGiD7q6xYWU+OxZQaK+xtWdpl9AYHUo87yG2LW/Qza1aMnw3wrRxt0ZkNUWNVcZyTTuGOACw/+Hp524ynqYxA== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/property-inspector" "^4.0.0-alpha.15" + "@jupyterlab/settingregistry" "^4.0.0-alpha.15" + "@jupyterlab/statedb" "^4.0.0-alpha.15" + "@jupyterlab/statusbar" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/commands" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" @@ -1602,21 +1602,21 @@ "@lumino/widgets" "^2.0.0-alpha.6" react "^17.0.1" -"@jupyterlab/application@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/application/-/application-4.0.0-alpha.14.tgz#e0c3419555360f062740a1f3fe8a41db73e47f82" - integrity sha512-BKvon+6BIFATyjGhZUipYui2PiERf9uQdkuwOOmyPnxB9gbgBUP2GBKK2z6nBNCmCEz8LfWlpjtCLgK0Awc0Ug== +"@jupyterlab/application@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/application/-/application-4.0.0-alpha.15.tgz#f37b667d8078b6bba8af26d30459e88057cfd4a7" + integrity sha512-gxsMjExBw5LVHxs5pw2mgxoN0Xzg5zyP4L5ZNxWLC79pVfHZSxfGMngpM6sjg4/ANw8P8ow8LWKerP22qKu7Pw== dependencies: "@fortawesome/fontawesome-free" "^5.12.0" - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/docregistry" "^4.0.0-alpha.14" - "@jupyterlab/rendermime" "^4.0.0-alpha.14" - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/statedb" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/docregistry" "^4.0.0-alpha.15" + "@jupyterlab/rendermime" "^4.0.0-alpha.15" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/statedb" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/application" "^2.0.0-alpha.6" "@lumino/commands" "^2.0.0-alpha.6" @@ -1628,23 +1628,23 @@ "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/apputils-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/apputils-extension/-/apputils-extension-4.0.0-alpha.14.tgz#46b28d2a1ff487be639056689f5600dff7350cf4" - integrity sha512-oo7XSqW8/nVTnhTe11HbEG8upXk7LKsg3GATY8djbPCNwn8BDbOQXbgn7M9L8s4IqSTIK+ttF4Of8ayiL39pXw== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/docregistry" "^4.0.0-alpha.14" - "@jupyterlab/filebrowser" "^4.0.0-alpha.14" - "@jupyterlab/mainmenu" "^4.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/settingregistry" "^4.0.0-alpha.14" - "@jupyterlab/statedb" "^4.0.0-alpha.14" - "@jupyterlab/statusbar" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/apputils-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/apputils-extension/-/apputils-extension-4.0.0-alpha.15.tgz#57548024c11762f5f0505bcdc17371dab79fd810" + integrity sha512-qAyyZa0I9NKiqD+naZyZ6NHihQuAFCWnI8gyzXtEei4xjGAAZmg7GI3bcjpvaoIGot4aaXOAhPFFVZY1UDRF+g== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/docregistry" "^4.0.0-alpha.15" + "@jupyterlab/filebrowser" "^4.0.0-alpha.15" + "@jupyterlab/mainmenu" "^4.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/settingregistry" "^4.0.0-alpha.15" + "@jupyterlab/statedb" "^4.0.0-alpha.15" + "@jupyterlab/statusbar" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/commands" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" @@ -1652,20 +1652,20 @@ "@lumino/polling" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/apputils@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/apputils/-/apputils-4.0.0-alpha.14.tgz#07ba28e7ff9460a4344aa387b319391cfbbf3ea2" - integrity sha512-ECggvfp0HmKkL67Gihm9vJJ0SrdIYILEyKcaLbK9YZNdX3whekDacLjDZynNBjcb4qjFKI0doRPujAEtQ+cDhA== - dependencies: - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/observables" "^5.0.0-alpha.14" - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/settingregistry" "^4.0.0-alpha.14" - "@jupyterlab/statedb" "^4.0.0-alpha.14" - "@jupyterlab/statusbar" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/apputils@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/apputils/-/apputils-4.0.0-alpha.15.tgz#da7d5a6c6c7f10bb9e06f517780b49a966724800" + integrity sha512-PWBf4AIo3WQgSp4zRUNVU7433iZNhFbWihqHMrUaEultg8lEJeq0mfTHo25xPndfrhFdbBMv9fpFlPx8XtG/sA== + dependencies: + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/observables" "^5.0.0-alpha.15" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/settingregistry" "^4.0.0-alpha.15" + "@jupyterlab/statedb" "^4.0.0-alpha.15" + "@jupyterlab/statusbar" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/commands" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" @@ -1679,25 +1679,25 @@ react "^17.0.1" sanitize-html "~2.5.3" -"@jupyterlab/attachments@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/attachments/-/attachments-4.0.0-alpha.14.tgz#31696adc96f5d8aa24cbcccfed59c80a77b9559a" - integrity sha512-cdMI8uG++VOQcpkC62xCL+MaJDRmW/ajiJSKvXa7r5JhK+6EiYE2wk0tX/Zoiy72L3lOmI6jYLPjDAwfjGMEQQ== +"@jupyterlab/attachments@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/attachments/-/attachments-4.0.0-alpha.15.tgz#d2d671c42c9dfdd0e08610c55d523e2f34554d0d" + integrity sha512-UaD18N10+qFG0wYe81T1bvGbpWhR6EaR8x1SgZF51Ew1QB/P83AU2EThSBJSqwijdawrFsBVhgrQmpBdBctwbg== dependencies: - "@jupyterlab/nbformat" "^4.0.0-alpha.14" - "@jupyterlab/observables" "^5.0.0-alpha.14" - "@jupyterlab/rendermime" "^4.0.0-alpha.14" - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.14" - "@jupyterlab/shared-models" "^4.0.0-alpha.14" + "@jupyterlab/nbformat" "^4.0.0-alpha.15" + "@jupyterlab/observables" "^5.0.0-alpha.15" + "@jupyterlab/rendermime" "^4.0.0-alpha.15" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.15" + "@jupyterlab/shared-models" "^4.0.0-alpha.15" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" -"@jupyterlab/builder@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/builder/-/builder-4.0.0-alpha.14.tgz#84a8b2128834696c71aa496fca5248c540f6f5ff" - integrity sha512-VuXwv9b0rS3B3Hp4G816bohyFI0iIJgH+E19H3MBm5Oe93VngyXnj85RfUziH5RLCoLbwBlE7ZRl/fjqVt9aXw== +"@jupyterlab/builder@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/builder/-/builder-4.0.0-alpha.15.tgz#916964e9eff6f75f70099553b760fe3ffcffdebb" + integrity sha512-xKPA13mgNvyKy/t3B4OzYcRJ8yNUTc9vp+dbqVIauR2LwV5qjxaFYbUUOkhprgzhOBXcRqyZgiS5tyKZ5qyNoQ== dependencies: - "@jupyterlab/buildutils" "^4.0.0-alpha.14" + "@jupyterlab/buildutils" "^4.0.0-alpha.15" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/application" "^2.0.0-alpha.6" "@lumino/commands" "^2.0.0-alpha.6" @@ -1730,10 +1730,10 @@ webpack-merge "^5.8.0" worker-loader "^3.0.2" -"@jupyterlab/buildutils@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/buildutils/-/buildutils-4.0.0-alpha.14.tgz#ca9f61f6781bf5b9672ed3187569b19317db7b43" - integrity sha512-oOb1fYuYLT0p9+rBzmUSW4ODKSuXT2jSkog3G/sHYCHCihPUC/2ZT0q4nBmV6eYcgXy4/ayX1hgfJ0DqPuw4rw== +"@jupyterlab/buildutils@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/buildutils/-/buildutils-4.0.0-alpha.15.tgz#90652fda7629b099ab48679776980cf667d102ec" + integrity sha512-U/uecNy+HqzCBCUE8MdLEfgu/gHSxGPsxjFoZMtQRENaSp3WlUiHNBerA4Pxn3UO87UfGMXV1QqdMh8cwGkOSQ== dependencies: "@yarnpkg/lockfile" "^1.1.0" child_process "~1.0.2" @@ -1753,55 +1753,55 @@ typescript "~4.7.3" verdaccio "^5.13.3" -"@jupyterlab/cell-toolbar-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/cell-toolbar-extension/-/cell-toolbar-extension-4.0.0-alpha.14.tgz#5aa1dfbe0a428a36f052604e7683213e759d5e26" - integrity sha512-TwAw530EKpWJItEHO/MQneW9X/sf6azLHLa+JIoJjZVx5SmTTR2xbLpKgMUWmv+1izZpzVH8WEiIBgwpSNwHrA== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/cell-toolbar" "^4.0.0-alpha.14" - "@jupyterlab/settingregistry" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - -"@jupyterlab/cell-toolbar@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/cell-toolbar/-/cell-toolbar-4.0.0-alpha.14.tgz#e4eb39dfebeb1b27abd84719fc49806357412737" - integrity sha512-/bdI3FLJFxqtB1AukQ46aRu7M9wamKQLLwmvTzxs4+6jTaQxrHM25PY5bUuoCiTsbPYY5yv1fFm4A6DcCJ6VBg== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/cells" "^4.0.0-alpha.14" - "@jupyterlab/docregistry" "^4.0.0-alpha.14" - "@jupyterlab/notebook" "^4.0.0-alpha.14" - "@jupyterlab/observables" "^5.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/cell-toolbar-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/cell-toolbar-extension/-/cell-toolbar-extension-4.0.0-alpha.15.tgz#9ca2bb696028197ff64b35576710c4cc40b2c20f" + integrity sha512-+c4XaOFoU9fqyddT+x/lY4ZvWxP/whSxg3e5SeYHbBq32pwoa1zGLL+YSPXvAZ9RM1dmEBXGamNv5TM0Mc7O/Q== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/cell-toolbar" "^4.0.0-alpha.15" + "@jupyterlab/settingregistry" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + +"@jupyterlab/cell-toolbar@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/cell-toolbar/-/cell-toolbar-4.0.0-alpha.15.tgz#9f39287063d9a252c38f7f9f59ad6dad94ba99a2" + integrity sha512-FdsrgxFwrqgFbcjHRyQus7IFKhF1K3F0X/dHOsyhvca1dqpdpEIv6hGDfP1MFZ2cdjVh6o7c9UO3sUWtgpR+EA== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/cells" "^4.0.0-alpha.15" + "@jupyterlab/docregistry" "^4.0.0-alpha.15" + "@jupyterlab/notebook" "^4.0.0-alpha.15" + "@jupyterlab/observables" "^5.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/commands" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/cells@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/cells/-/cells-4.0.0-alpha.14.tgz#b68408724c5991b5a1fd390b8e3a355565df43f2" - integrity sha512-JIh/ZA/0Wrj+RkUh9aPjWFt1RH6J0UXpjpMtYskvbEcf5Ncnu8KIwWLVcq99uxce/2u1KIM8b9bLy+hPNrzTSg== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/attachments" "^4.0.0-alpha.14" - "@jupyterlab/codeeditor" "^4.0.0-alpha.14" - "@jupyterlab/codemirror" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/documentsearch" "^4.0.0-alpha.14" - "@jupyterlab/filebrowser" "^4.0.0-alpha.14" - "@jupyterlab/nbformat" "^4.0.0-alpha.14" - "@jupyterlab/observables" "^5.0.0-alpha.14" - "@jupyterlab/outputarea" "^4.0.0-alpha.14" - "@jupyterlab/rendermime" "^4.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/shared-models" "^4.0.0-alpha.14" - "@jupyterlab/toc" "^6.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/cells@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/cells/-/cells-4.0.0-alpha.15.tgz#7401da1932a2d5a0c1181fa6fdda5bf24c3ae955" + integrity sha512-X2sHyD7IM3v1ct5Yb9LlI/i26WD1Xjl639KUUUCZ+sMNKTWKRMvB5UkQJebh77YFCSH7bXWdISeB+F46HxUP5w== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/attachments" "^4.0.0-alpha.15" + "@jupyterlab/codeeditor" "^4.0.0-alpha.15" + "@jupyterlab/codemirror" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/documentsearch" "^4.0.0-alpha.15" + "@jupyterlab/filebrowser" "^4.0.0-alpha.15" + "@jupyterlab/nbformat" "^4.0.0-alpha.15" + "@jupyterlab/observables" "^5.0.0-alpha.15" + "@jupyterlab/outputarea" "^4.0.0-alpha.15" + "@jupyterlab/rendermime" "^4.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/shared-models" "^4.0.0-alpha.15" + "@jupyterlab/toc" "^6.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/domutils" "^2.0.0-alpha.6" @@ -1813,43 +1813,43 @@ "@lumino/widgets" "^2.0.0-alpha.6" react "^17.0.1" -"@jupyterlab/celltags-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/celltags-extension/-/celltags-extension-4.0.0-alpha.14.tgz#cad83537b31e31910f10099ae260a26aa66a65e8" - integrity sha512-S7o/l8n2K5eCnbXCFKsGaOlbl4PnQb10oeRo1PQDQSPAvpN2WgUzp83YYMXlLjngsDs41DGaSBj+7h6qfGCVmw== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/celltags" "^4.0.0-alpha.14" - "@jupyterlab/notebook" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - -"@jupyterlab/celltags@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/celltags/-/celltags-4.0.0-alpha.14.tgz#d1ad45da532c62b0ba1f3778e2feff04d0800698" - integrity sha512-R5saMxq6z3GdlBLNBWEYJALF+tz4BJ+0POFQir8sO3Qb+JZneVc9IKYI+hP8K0c5dxQ3nPrl7SwLwNWnKluXjQ== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/cells" "^4.0.0-alpha.14" - "@jupyterlab/notebook" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/celltags-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/celltags-extension/-/celltags-extension-4.0.0-alpha.15.tgz#e72fb7b65b6feeb13ab3eb2c59dec28e0d6f1dd5" + integrity sha512-nHl+5KX3EhPuXWksUNh/jIJi9eicZg6HyOJ5q8J1u9+zJHZJIwP+GKU1L/bwuhA7IoqMujin7NSa42AZpnUrVw== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/celltags" "^4.0.0-alpha.15" + "@jupyterlab/notebook" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + +"@jupyterlab/celltags@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/celltags/-/celltags-4.0.0-alpha.15.tgz#01f66cbed5c4840b83500ee362f0a59f2a457934" + integrity sha512-QiNwIFu5yc7OU9Sy7ds7ZPWv5AsBoR8sDzUeMIQTX2t1wUYlN3G+/lVvoeLryEFx7kPlnzKVKMWGSyTgCrYm2Q== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/cells" "^4.0.0-alpha.15" + "@jupyterlab/notebook" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/messaging" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/codeeditor@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/codeeditor/-/codeeditor-4.0.0-alpha.14.tgz#4efa7b0aec095638425e2c0e9a92717069ce9998" - integrity sha512-mso6E/dwqTtXy0VXu7KE0xY5z2pO5/XBSPVXYyxk3QlqkoKAlsJ4l7suY8NVR1SgsCCQZukhvvQsf1ZTr9Q17g== - dependencies: - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/nbformat" "^4.0.0-alpha.14" - "@jupyterlab/observables" "^5.0.0-alpha.14" - "@jupyterlab/shared-models" "^4.0.0-alpha.14" - "@jupyterlab/statusbar" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/codeeditor@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/codeeditor/-/codeeditor-4.0.0-alpha.15.tgz#59884a0a376f64b6a29bd5323ec6cea76bff1371" + integrity sha512-iB8Zl3IXJoeJpceibZlbVb5D7qsKW/mR608D6qE66hkP0Sh6pzqfxPgwy/ewE5SW1G9VQ/CLUoY1A0NoAp/7DQ== + dependencies: + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/nbformat" "^4.0.0-alpha.15" + "@jupyterlab/observables" "^5.0.0-alpha.15" + "@jupyterlab/shared-models" "^4.0.0-alpha.15" + "@jupyterlab/statusbar" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/dragdrop" "^2.0.0-alpha.6" @@ -1858,27 +1858,27 @@ "@lumino/widgets" "^2.0.0-alpha.6" react "^17.0.1" -"@jupyterlab/codemirror-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/codemirror-extension/-/codemirror-extension-4.0.0-alpha.14.tgz#ac9dbed35168229cddb12e84f29638135d4a26cb" - integrity sha512-gXtk2wnY4SbBe0zE/uXQ0rzbXQcFLejYORwQJLpRt4HIdjm3mD1/wia5aoTHqNdmLkW/3EEQ8EDhRQiDbtEY9A== +"@jupyterlab/codemirror-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/codemirror-extension/-/codemirror-extension-4.0.0-alpha.15.tgz#0de5917a508b05ef39fca24ab8ebdae05923a15d" + integrity sha512-ShcgxI/KpjHHBoT8TF7Zoz7MXaFdovvqqVwvu48oNZDXeegzDbCabyi+yVd+AzeUXw3Pw+fGUf9WAytQ9aR5JQ== dependencies: "@codemirror/search" "^6.0.0" - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/codeeditor" "^4.0.0-alpha.14" - "@jupyterlab/codemirror" "^4.0.0-alpha.14" - "@jupyterlab/docregistry" "^4.0.0-alpha.14" - "@jupyterlab/fileeditor" "^4.0.0-alpha.14" - "@jupyterlab/mainmenu" "^4.0.0-alpha.14" - "@jupyterlab/settingregistry" "^4.0.0-alpha.14" - "@jupyterlab/statusbar" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/codeeditor" "^4.0.0-alpha.15" + "@jupyterlab/codemirror" "^4.0.0-alpha.15" + "@jupyterlab/docregistry" "^4.0.0-alpha.15" + "@jupyterlab/fileeditor" "^4.0.0-alpha.15" + "@jupyterlab/mainmenu" "^4.0.0-alpha.15" + "@jupyterlab/settingregistry" "^4.0.0-alpha.15" + "@jupyterlab/statusbar" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/codemirror@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/codemirror/-/codemirror-4.0.0-alpha.14.tgz#d976d735fde29410dc6232f71ecec87d5648c2da" - integrity sha512-lvUZmfuqS90wVi2j61gnXRFPsEoD4V7olH/N89yq5yinQKL6LSwzR6pSFB3lvYDHMYxBZQZUk0onZaR2VezYsg== +"@jupyterlab/codemirror@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/codemirror/-/codemirror-4.0.0-alpha.15.tgz#5c931471cf686891d774d80fc78720fced0c9bfe" + integrity sha512-50n6raMdaN64qXzng6AI2LEfHQToPypclI6Fw2IHAmDyaBNZaqv6l1/ZaQf6kelxFiK3k4pjYdC13GWx2SBPfA== dependencies: "@codemirror/autocomplete" "^6.0.0" "@codemirror/commands" "^6.0.0" @@ -1900,15 +1900,15 @@ "@codemirror/search" "^6.0.0" "@codemirror/state" "^6.0.0" "@codemirror/view" "^6.0.0" - "@jupyterlab/codeeditor" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/documentsearch" "^4.0.0-alpha.14" - "@jupyterlab/nbformat" "^4.0.0-alpha.14" - "@jupyterlab/observables" "^5.0.0-alpha.14" - "@jupyterlab/shared-models" "^4.0.0-alpha.14" - "@jupyterlab/statusbar" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" + "@jupyterlab/codeeditor" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/documentsearch" "^4.0.0-alpha.15" + "@jupyterlab/nbformat" "^4.0.0-alpha.15" + "@jupyterlab/observables" "^5.0.0-alpha.15" + "@jupyterlab/shared-models" "^4.0.0-alpha.15" + "@jupyterlab/statusbar" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lezer/common" "^1.0.0" "@lezer/highlight" "^1.0.0" "@lumino/algorithm" "^2.0.0-alpha.6" @@ -1923,33 +1923,33 @@ y-protocols "^1.0.5" yjs "^13.5.40" -"@jupyterlab/collaboration-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/collaboration-extension/-/collaboration-extension-4.0.0-alpha.14.tgz#ac68a272894194d8e12f5e50724bb0e71dffbde6" - integrity sha512-wZwjugQsKD+6y0zaHZVoQrq/94Tpu0X493th8qRGvboEbPrDsMaNoUXWWSYeExkpCtLoYBBqY6qn7Cch7YgvqA== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/collaboration" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/statedb" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/collaboration-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/collaboration-extension/-/collaboration-extension-4.0.0-alpha.15.tgz#fa131ec2b67c0fb24ca5925b5e692faa8f8e1ae6" + integrity sha512-8qXv0nl1/2ItEfUgHn0abowVgiDSFYiEJseI/aVvxPPTDfiiA72sqcmUsS8WlJsBdlGgxbsisfkURTScmmG0Cw== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/collaboration" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/statedb" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/widgets" "^2.0.0-alpha.6" y-protocols "^1.0.5" y-websocket "^1.3.15" yjs "^13.5.40" -"@jupyterlab/collaboration@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/collaboration/-/collaboration-4.0.0-alpha.14.tgz#c56e3009c9c928dd94c8f8ef754dd85951d56d37" - integrity sha512-6II1pS9HPrF/ysXdYC6+O3lYtWXyRF369wjFY+/1mWGOeocgN3H+VK81hIClcA2qRsPVjuc2+2umb0CYd+QsgQ== +"@jupyterlab/collaboration@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/collaboration/-/collaboration-4.0.0-alpha.15.tgz#e9b2b727a5cbd592c6af9a2ea3df49d2cb391959" + integrity sha512-gz4BJBRuvMy5XdKA2f3+CrQeQcAZ7BGib14rJcttGqGGXgPaHcbcX0XmlG5C7R6uDYHNl6ylsW7a0P/Je+4Bmg== dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/virtualdom" "^2.0.0-alpha.6" @@ -1958,32 +1958,32 @@ y-protocols "^1.0.5" yjs "^13.5.40" -"@jupyterlab/completer-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/completer-extension/-/completer-extension-4.0.0-alpha.14.tgz#85074730871f1f463d301babb94c30e2aa3cd3ab" - integrity sha512-WWoQJ+FLJAqYSN3eRfRkSBHSpEYp5aHJXsNXP8BHk+lCLvHtbEZMLOBkgwGbQTzBFJJUOboL4OaAJlGFmSEpLw== +"@jupyterlab/completer-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/completer-extension/-/completer-extension-4.0.0-alpha.15.tgz#e75c61276d00f57b574a4a06985b4dfcbd06fcfa" + integrity sha512-vWj3OL26jaMY+InDD8AzOGARhwZWYePBaOqs1risOEXpcfJ8v1Aqip704xLh2JRekwNLudnIfXK9Yu4Gpe0oNA== dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/completer" "^4.0.0-alpha.14" - "@jupyterlab/settingregistry" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/completer" "^4.0.0-alpha.15" + "@jupyterlab/settingregistry" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/coreutils" "^2.0.0-alpha.6" - "@rjsf/core" "^3.1.0" + "@rjsf/core" "^4.2.0" react "^17.0.1" -"@jupyterlab/completer@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/completer/-/completer-4.0.0-alpha.14.tgz#d15d0725fb6c3045f1bea6966377a48ba05957c4" - integrity sha512-IlqzYMD3xKgpUCDcRFI5JgU9bSfjIp0EAWDqvZuArr/6ORys3i44JvYoa7QeNrpMBF9iHhDNr/CyZOv/13Epzg== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/codeeditor" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/rendermime" "^4.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/shared-models" "^4.0.0-alpha.14" - "@jupyterlab/statedb" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/completer@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/completer/-/completer-4.0.0-alpha.15.tgz#dbdcb0cef70922679af789b095d8c8baf58b134a" + integrity sha512-EnQO+DIkThXnxXa+6R1fAPIqRHHmNqawUOav21pYBUa0Ttm0odg/VQsVsL83pFwx+Hcw6MKBS0ki1A0FoP8oCQ== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/codeeditor" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/rendermime" "^4.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/shared-models" "^4.0.0-alpha.15" + "@jupyterlab/statedb" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" @@ -1992,45 +1992,45 @@ "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/console-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/console-extension/-/console-extension-4.0.0-alpha.14.tgz#c4faecf9f79e2fd0de1b90f05ef4c33f6d47f0b2" - integrity sha512-+ubrO+Xlvoodz1HtLgtNSi6HnvlxT7dxkm0R9lZSkfllfvFObmf60EdmqSMOv8FXQ75jhPvj4NUk61mwiD5wjg== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/codeeditor" "^4.0.0-alpha.14" - "@jupyterlab/completer" "^4.0.0-alpha.14" - "@jupyterlab/console" "^4.0.0-alpha.14" - "@jupyterlab/filebrowser" "^4.0.0-alpha.14" - "@jupyterlab/launcher" "^4.0.0-alpha.14" - "@jupyterlab/mainmenu" "^4.0.0-alpha.14" - "@jupyterlab/rendermime" "^4.0.0-alpha.14" - "@jupyterlab/settingregistry" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/console-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/console-extension/-/console-extension-4.0.0-alpha.15.tgz#fe598e2879528510f037522384e83ec910cf9a07" + integrity sha512-hVkDV4Sy+JqlXK88gBogn3FnvTPj28ywY/alKRtQOUfkAeiRonZsybRrqxA5wmLElGVAPohVIIq+vc44y2zVaQ== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/codeeditor" "^4.0.0-alpha.15" + "@jupyterlab/completer" "^4.0.0-alpha.15" + "@jupyterlab/console" "^4.0.0-alpha.15" + "@jupyterlab/filebrowser" "^4.0.0-alpha.15" + "@jupyterlab/launcher" "^4.0.0-alpha.15" + "@jupyterlab/mainmenu" "^4.0.0-alpha.15" + "@jupyterlab/rendermime" "^4.0.0-alpha.15" + "@jupyterlab/settingregistry" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/properties" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/console@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/console/-/console-4.0.0-alpha.14.tgz#ba9acb4f3073a4921fc202d233cb505f395597ea" - integrity sha512-3QFgNGiJrD5ku+E8tlUzN59L4t1hAmW98H0a5sl6r3jqAHw+TqFz5kP1Suxa89BCcqzoIyShoUISotpb4YXtwA== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/cells" "^4.0.0-alpha.14" - "@jupyterlab/codeeditor" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/nbformat" "^4.0.0-alpha.14" - "@jupyterlab/observables" "^5.0.0-alpha.14" - "@jupyterlab/rendermime" "^4.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/shared-models" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/console@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/console/-/console-4.0.0-alpha.15.tgz#8178afe5dc1eea23e8186814d373cc509e1af6e8" + integrity sha512-yHRMHOy49hLflJyrvhv7fYd49feiYeogw2hD+yDHPBqo/M9aiL2oGeRcJwuVMA82Z3/891lbjnAWoXyu4Avz+Q== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/cells" "^4.0.0-alpha.15" + "@jupyterlab/codeeditor" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/nbformat" "^4.0.0-alpha.15" + "@jupyterlab/observables" "^5.0.0-alpha.15" + "@jupyterlab/rendermime" "^4.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/shared-models" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/dragdrop" "^2.0.0-alpha.6" @@ -2038,10 +2038,10 @@ "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/coreutils@^6.0.0-alpha.14": - version "6.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/coreutils/-/coreutils-6.0.0-alpha.14.tgz#23f28bea265ba0888372c1bc751beb566a5a835a" - integrity sha512-bSiF//TSC8aMb3kCWJmvuUVEgN9p212pqKNy6ueExlhpTRVE3I4Xyil4uBX6z+O//hDkZyTQC4dtFgIsSn9b5Q== +"@jupyterlab/coreutils@^6.0.0-alpha.15": + version "6.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/coreutils/-/coreutils-6.0.0-alpha.15.tgz#260839a3ccfa5f045b7c722a3ed736c9ceb03f9f" + integrity sha512-HxBZ6inx3Gvn8ec5NiubwLpQdQRF7p4ePH1H/9zw6UerEqy9CnjK2ti7JrRND9I3PVs3aFDCuMh126fx6D6YAQ== dependencies: "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" @@ -2051,49 +2051,49 @@ path-browserify "^1.0.0" url-parse "~1.5.4" -"@jupyterlab/debugger-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/debugger-extension/-/debugger-extension-4.0.0-alpha.14.tgz#598b6046b40e10e3d811d11ae7b1b2c3611ce031" - integrity sha512-K5u32ACz4YNaz2inh+g4mYkUdJTuyAxQSquFvVAImp27oyGKn4GxYrtcHoUCoJlib/0DyDTOg2LOCup6iocMng== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/codeeditor" "^4.0.0-alpha.14" - "@jupyterlab/console" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/debugger" "^4.0.0-alpha.14" - "@jupyterlab/docregistry" "^4.0.0-alpha.14" - "@jupyterlab/fileeditor" "^4.0.0-alpha.14" - "@jupyterlab/logconsole" "^4.0.0-alpha.14" - "@jupyterlab/notebook" "^4.0.0-alpha.14" - "@jupyterlab/rendermime" "^4.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/settingregistry" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - -"@jupyterlab/debugger@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/debugger/-/debugger-4.0.0-alpha.14.tgz#d9d0c48800b30ec9d083add8bde32cfac8a8c620" - integrity sha512-qtewnV9Dfkl2iV9KC911k1LU+Jv9vn7JABvaTM7vZyS8FqVuZ15zigk1HessvRGy657MD5SZoUtpBa4ETcerOQ== +"@jupyterlab/debugger-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/debugger-extension/-/debugger-extension-4.0.0-alpha.15.tgz#bfa22b89e93d3feec944d7a7ff2addc6086e6c9e" + integrity sha512-5VHm1wvo6bmFOU7tO0TUJWp0EPnoDdbU+udq/sHy+8/vcv9Q5ktxMu5bjmE978HIyMPiOKiYtGTeJcjURGux+g== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/codeeditor" "^4.0.0-alpha.15" + "@jupyterlab/console" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/debugger" "^4.0.0-alpha.15" + "@jupyterlab/docregistry" "^4.0.0-alpha.15" + "@jupyterlab/fileeditor" "^4.0.0-alpha.15" + "@jupyterlab/logconsole" "^4.0.0-alpha.15" + "@jupyterlab/notebook" "^4.0.0-alpha.15" + "@jupyterlab/rendermime" "^4.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/settingregistry" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + +"@jupyterlab/debugger@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/debugger/-/debugger-4.0.0-alpha.15.tgz#5979a7cb565ed10b79f01fad195d781a9f730b92" + integrity sha512-6PiAK/a3Zylo9NicKMKMrd+XGxu2WBLX4EfC0HYPrpnPDGAJKWwQOlR+r6Uqd6WKzQl7HuQYNkqT+GHWBIkKIA== dependencies: "@codemirror/state" "^6.0.0" "@codemirror/view" "^6.0.0" - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/cells" "^4.0.0-alpha.14" - "@jupyterlab/codeeditor" "^4.0.0-alpha.14" - "@jupyterlab/codemirror" "^4.0.0-alpha.14" - "@jupyterlab/console" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/docregistry" "^4.0.0-alpha.14" - "@jupyterlab/fileeditor" "^4.0.0-alpha.14" - "@jupyterlab/notebook" "^4.0.0-alpha.14" - "@jupyterlab/observables" "^5.0.0-alpha.14" - "@jupyterlab/rendermime" "^4.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/shared-models" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/cells" "^4.0.0-alpha.15" + "@jupyterlab/codeeditor" "^4.0.0-alpha.15" + "@jupyterlab/codemirror" "^4.0.0-alpha.15" + "@jupyterlab/console" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/docregistry" "^4.0.0-alpha.15" + "@jupyterlab/fileeditor" "^4.0.0-alpha.15" + "@jupyterlab/notebook" "^4.0.0-alpha.15" + "@jupyterlab/observables" "^5.0.0-alpha.15" + "@jupyterlab/rendermime" "^4.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/shared-models" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/commands" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" @@ -2106,22 +2106,22 @@ "@vscode/debugprotocol" "^1.51.0" react "^17.0.1" -"@jupyterlab/docmanager-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/docmanager-extension/-/docmanager-extension-4.0.0-alpha.14.tgz#dd31c98e924c12d44ced652410e09451bded155b" - integrity sha512-cZmdg9hZAVvBpX8rURTvN4FckFacNVea+J5a3fd471rgWGjEv8vcI2ljuKtIrrXwMOgnuBFN4tNFF6XyCQK6LQ== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/docmanager" "^4.0.0-alpha.14" - "@jupyterlab/docprovider" "^4.0.0-alpha.14" - "@jupyterlab/docregistry" "^4.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/settingregistry" "^4.0.0-alpha.14" - "@jupyterlab/statusbar" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/docmanager-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/docmanager-extension/-/docmanager-extension-4.0.0-alpha.15.tgz#ad11e3f555181ef289a18f4dbb7368a52b7180a8" + integrity sha512-PCpaPSSez6NXD8rVVffPc1huRrsh4qiGLo8AYR2xWZSdzjakZ8Za70jJY+RlKNXVXfMXKMFJx4PRLCYlxe43Ig== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/docmanager" "^4.0.0-alpha.15" + "@jupyterlab/docprovider" "^4.0.0-alpha.15" + "@jupyterlab/docregistry" "^4.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/settingregistry" "^4.0.0-alpha.15" + "@jupyterlab/statusbar" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/commands" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" @@ -2130,19 +2130,19 @@ "@lumino/widgets" "^2.0.0-alpha.6" react "^17.0.1" -"@jupyterlab/docmanager@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/docmanager/-/docmanager-4.0.0-alpha.14.tgz#effaecbab1abbdac0e49b0a2772a87e45b43efe5" - integrity sha512-MVGpBJImNx/bd392bnrGupa7TFxAAoHP4Mmq6Z+tzZ1rjtrDkOng0ujFa89gchOCM5wDMqMhjZhT8ttgf26Yww== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/docprovider" "^4.0.0-alpha.14" - "@jupyterlab/docregistry" "^4.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/statusbar" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/docmanager@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/docmanager/-/docmanager-4.0.0-alpha.15.tgz#8db67d789e980d9583cc32b24b46415dd79aabfe" + integrity sha512-sdiIJqbjGmQQEKAuwetovAEyrZGibLWfmZX+YB7cPB3Lra7DLBefG/0KkldEAhDeXcNGRbp0oGEcqJxJI6042Q== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/docprovider" "^4.0.0-alpha.15" + "@jupyterlab/docregistry" "^4.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/statusbar" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" @@ -2152,45 +2152,46 @@ "@lumino/widgets" "^2.0.0-alpha.6" react "^17.0.1" -"@jupyterlab/docprovider-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/docprovider-extension/-/docprovider-extension-4.0.0-alpha.14.tgz#a6c67d32c258564e3abf9d2ff97a2770b5ead5d8" - integrity sha512-l7CWAAHGxXLDNPrRZ4nx6gfD1+SebO+NePHDmvuGFsdHnfwggkqIMqnWykZ/iF4TgoCqAgu8vl82WRU879QzeA== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/collaboration" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/docprovider" "^4.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - -"@jupyterlab/docprovider@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/docprovider/-/docprovider-4.0.0-alpha.14.tgz#2adcc3121b5192528cca68346d70389f85121abd" - integrity sha512-322ypc/6Ay1D+gp2aR0ccf+BI/1YqABVbX8CgZn6MdRRpAWxAgbJO+B9dRnYqZWKquRitWFpzaBFY87qgH68TQ== - dependencies: - "@jupyterlab/collaboration" "^4.0.0-alpha.14" - "@jupyterlab/shared-models" "^4.0.0-alpha.14" +"@jupyterlab/docprovider-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/docprovider-extension/-/docprovider-extension-4.0.0-alpha.15.tgz#e26babe417bdc1e76fce61e3ca277197b5ecc7ed" + integrity sha512-uXqJRvhntNDvLc7nFcKrvwc3Aqc/gpHMWEiJksIdciBL7q2dQ6JzNvaBjB0vY9OFgEfEc70tqBtynN9hPoDSBw== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/collaboration" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/docprovider" "^4.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/shared-models" "^4.0.0-alpha.15" + +"@jupyterlab/docprovider@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/docprovider/-/docprovider-4.0.0-alpha.15.tgz#54cc83a3a5206ce34c007d8b9968a008072dd54c" + integrity sha512-chF+myFZR8Ly5wRggJgIcsFnLEgVH3xu2QwdpkfHqjaW1IUV/DpofnAtYVv2hkgzoBvSKZXl0yhoEcRzBZ6/Jw== + dependencies: + "@jupyterlab/collaboration" "^4.0.0-alpha.15" + "@jupyterlab/shared-models" "^4.0.0-alpha.15" "@lumino/coreutils" "^2.0.0-alpha.6" lib0 "^0.2.42" y-websocket "^1.3.15" -"@jupyterlab/docregistry@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/docregistry/-/docregistry-4.0.0-alpha.14.tgz#4845ef7fc488dc6815245ffcfea7d7f1df4061a6" - integrity sha512-yK/ALuk/pJSxVhG/B9Hb/uYQzDV2DiDzJzgP5OJfK5YL4XIOXQW4zPfLL9AUQJ9MiMPT5qE4iqGD8xBHzqWqQQ== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/codeeditor" "^4.0.0-alpha.14" - "@jupyterlab/codemirror" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/docprovider" "^4.0.0-alpha.14" - "@jupyterlab/observables" "^5.0.0-alpha.14" - "@jupyterlab/rendermime" "^4.0.0-alpha.14" - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/shared-models" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/docregistry@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/docregistry/-/docregistry-4.0.0-alpha.15.tgz#fd1bd092a7d7af5f00703c3ef80e77e53bc3bb0f" + integrity sha512-ITDrdoZl/6VcEJw8VyqqZjJLFHQTycS6WbieUmpWgj9Ii3/4VNZnUtn/K6nDc3LFtXL2G1Ej8dxe65Db6/Gqdw== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/codeeditor" "^4.0.0-alpha.15" + "@jupyterlab/codemirror" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/docprovider" "^4.0.0-alpha.15" + "@jupyterlab/observables" "^5.0.0-alpha.15" + "@jupyterlab/rendermime" "^4.0.0-alpha.15" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/shared-models" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" @@ -2199,25 +2200,25 @@ "@lumino/widgets" "^2.0.0-alpha.6" yjs "^13.5.40" -"@jupyterlab/documentsearch-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/documentsearch-extension/-/documentsearch-extension-4.0.0-alpha.14.tgz#464646c1ecce5ed4f095a1f38613dd7a9184160c" - integrity sha512-GEdhZ+RYoqoqlI/BGxV2exPY7IqFDJ3V5MEMl1p9O86yt4nX1ewnW0o/2vEDSj8vxGGLiqRvSLt265yr3Pj1/g== +"@jupyterlab/documentsearch-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/documentsearch-extension/-/documentsearch-extension-4.0.0-alpha.15.tgz#10a8d8ca25e00878b92eca00a315db7656d43e39" + integrity sha512-wL8LO3KAE4Hn24acAUQe2L9K81hMnnyTA6MiNJ7988CTtjTXoohAQu0OV2pO5T0PPq6qkZTH9ivlXCp7/tjXKg== dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/documentsearch" "^4.0.0-alpha.14" - "@jupyterlab/settingregistry" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/documentsearch" "^4.0.0-alpha.15" + "@jupyterlab/settingregistry" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/documentsearch@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/documentsearch/-/documentsearch-4.0.0-alpha.14.tgz#2494aa093da3b21e6d169eb8e5ca84a9b02f19df" - integrity sha512-FAYAlIbGxDSx2gM6w81Kcr00T1HLIaL9aFG8gV8ZoFP+BOL7YuEHIrrh/3fV2UqXafGvdn0cUl/hAph5m2pAIQ== +"@jupyterlab/documentsearch@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/documentsearch/-/documentsearch-4.0.0-alpha.15.tgz#cf94f29ea9968956bd1e01918ffabfabd5546268" + integrity sha512-c/nxZDHc7jTLWj+++xn5D9XngpVMCZRVXUsFoNMTc6xwJ6lKLcGbUUaf51de7sdfZVtkiizIxMB2YdiQeRyavA== dependencies: - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/polling" "^2.0.0-alpha.6" @@ -2225,41 +2226,41 @@ "@lumino/widgets" "^2.0.0-alpha.6" react "^17.0.1" -"@jupyterlab/filebrowser-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/filebrowser-extension/-/filebrowser-extension-4.0.0-alpha.14.tgz#a129493d06b64d9e92520e053785522d14b90af5" - integrity sha512-RMGQvPdLqkF5hVapA1mKzsg3gUdEQtuqNOFX4UdnVr8IsX4zwghN9AUOvaRKZPxxi5hOlh0z+HOn9Er1GX8P+g== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/docmanager" "^4.0.0-alpha.14" - "@jupyterlab/docregistry" "^4.0.0-alpha.14" - "@jupyterlab/filebrowser" "^4.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/settingregistry" "^4.0.0-alpha.14" - "@jupyterlab/statedb" "^4.0.0-alpha.14" - "@jupyterlab/statusbar" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/filebrowser-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/filebrowser-extension/-/filebrowser-extension-4.0.0-alpha.15.tgz#c1c89624ff70313bb0dd697af6e9aef2a5d0f5d6" + integrity sha512-fyK7wobl1arC8KZk8q3NtWXOpC03ys7/Ucj8eAUKQYI7HaXnNreIBE7AxYgywiAofehHdymQU/GQcuCgD88uKw== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/docmanager" "^4.0.0-alpha.15" + "@jupyterlab/docregistry" "^4.0.0-alpha.15" + "@jupyterlab/filebrowser" "^4.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/settingregistry" "^4.0.0-alpha.15" + "@jupyterlab/statedb" "^4.0.0-alpha.15" + "@jupyterlab/statusbar" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/commands" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/filebrowser@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/filebrowser/-/filebrowser-4.0.0-alpha.14.tgz#4803059acf730f501b761e0fd3ed8c49987463eb" - integrity sha512-2V6BRfYUs8mlFnlhFbtDsm/o3U2NbvemQ9H4Lgf2KgwZh1qsKgq1AHW3lfrsuJQ9UaCRhoIJZYQFNUXJ+brxyg== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/docmanager" "^4.0.0-alpha.14" - "@jupyterlab/docregistry" "^4.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/statedb" "^4.0.0-alpha.14" - "@jupyterlab/statusbar" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/filebrowser@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/filebrowser/-/filebrowser-4.0.0-alpha.15.tgz#6567bba2af94499eb147291c061833d3ffea48ed" + integrity sha512-NeJJlGmGR+FU/SpC8CFrPrUu/bby5tnCUilJDu0UXCv/h7hU5X59UQFWTPqRvDM4k7v5Ki+oXTTmSoD5Tv6HoQ== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/docmanager" "^4.0.0-alpha.15" + "@jupyterlab/docregistry" "^4.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/statedb" "^4.0.0-alpha.15" + "@jupyterlab/statusbar" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" @@ -2272,87 +2273,89 @@ "@lumino/widgets" "^2.0.0-alpha.6" react "^17.0.1" -"@jupyterlab/fileeditor-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/fileeditor-extension/-/fileeditor-extension-4.0.0-alpha.14.tgz#2ffe01a4b7a46b215d9ca9b27de59ccfb9b78da3" - integrity sha512-s9GrFd5yV9UGA2F6fdNtGt/2ssSGeoeVLya5/ChUUkOJYzuhmNfrpS0/Eytt0ifDWVaz1n7dCRHK1b4wXSHcoQ== +"@jupyterlab/fileeditor-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/fileeditor-extension/-/fileeditor-extension-4.0.0-alpha.15.tgz#10d35e7617b75691eccb389e375836794d5a9793" + integrity sha512-MASZW5+gEvqYev3VH2BhRvAlSm85AtYakh3Qo2N7uKGqcddsT9HGOaN9y0H1JA9KjyyToA6T0EqD5kgH0UIomg== dependencies: "@codemirror/commands" "^6.0.0" - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/codeeditor" "^4.0.0-alpha.14" - "@jupyterlab/codemirror" "^4.0.0-alpha.14" - "@jupyterlab/completer" "^4.0.0-alpha.14" - "@jupyterlab/console" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/docregistry" "^4.0.0-alpha.14" - "@jupyterlab/documentsearch" "^4.0.0-alpha.14" - "@jupyterlab/filebrowser" "^4.0.0-alpha.14" - "@jupyterlab/fileeditor" "^4.0.0-alpha.14" - "@jupyterlab/launcher" "^4.0.0-alpha.14" - "@jupyterlab/lsp" "^4.0.0-alpha.14" - "@jupyterlab/mainmenu" "^4.0.0-alpha.14" - "@jupyterlab/observables" "^5.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/settingregistry" "^4.0.0-alpha.14" - "@jupyterlab/statusbar" "^4.0.0-alpha.14" - "@jupyterlab/toc" "^6.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/codeeditor" "^4.0.0-alpha.15" + "@jupyterlab/codemirror" "^4.0.0-alpha.15" + "@jupyterlab/completer" "^4.0.0-alpha.15" + "@jupyterlab/console" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/docregistry" "^4.0.0-alpha.15" + "@jupyterlab/documentsearch" "^4.0.0-alpha.15" + "@jupyterlab/filebrowser" "^4.0.0-alpha.15" + "@jupyterlab/fileeditor" "^4.0.0-alpha.15" + "@jupyterlab/launcher" "^4.0.0-alpha.15" + "@jupyterlab/lsp" "^4.0.0-alpha.15" + "@jupyterlab/mainmenu" "^4.0.0-alpha.15" + "@jupyterlab/observables" "^5.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/settingregistry" "^4.0.0-alpha.15" + "@jupyterlab/statusbar" "^4.0.0-alpha.15" + "@jupyterlab/toc" "^6.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/commands" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/fileeditor@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/fileeditor/-/fileeditor-4.0.0-alpha.14.tgz#6267e7d132140fde230ef50269c52f187f7593be" - integrity sha512-sqJQoiiVCu1CntQybTiQuCzobLk3DmbHzvHKwxdz1BUt8a2Y2cCiGX4YASMPXMH4Dzy8GqQykyPqTbi3u5/Amw== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/codeeditor" "^4.0.0-alpha.14" - "@jupyterlab/codemirror" "^4.0.0-alpha.14" - "@jupyterlab/docregistry" "^4.0.0-alpha.14" - "@jupyterlab/documentsearch" "^4.0.0-alpha.14" - "@jupyterlab/lsp" "^4.0.0-alpha.14" - "@jupyterlab/statusbar" "^4.0.0-alpha.14" - "@jupyterlab/toc" "^6.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/fileeditor@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/fileeditor/-/fileeditor-4.0.0-alpha.15.tgz#4ffe6aafff668df0e940d47661764e543e80761a" + integrity sha512-7n12+FgKkb+puP9MZDCXkBoHYcG9vVbHa9TVyUUtHjItRMQpHk9cq44nG3rgtmEIM5r0cCOLPNUi81L9qawpqw== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/codeeditor" "^4.0.0-alpha.15" + "@jupyterlab/codemirror" "^4.0.0-alpha.15" + "@jupyterlab/docregistry" "^4.0.0-alpha.15" + "@jupyterlab/documentsearch" "^4.0.0-alpha.15" + "@jupyterlab/lsp" "^4.0.0-alpha.15" + "@jupyterlab/statusbar" "^4.0.0-alpha.15" + "@jupyterlab/toc" "^6.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/messaging" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" react "^17.0.1" regexp-match-indices "^1.0.2" -"@jupyterlab/hub-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/hub-extension/-/hub-extension-4.0.0-alpha.14.tgz#38cb92c6d8264136d5c0eafbe4d81a442813c374" - integrity sha512-9vNgJVV9Zp6Zb2QmBek/lNvhMlaeNCXT3t4oG0NrqoMq71AeMwLTDrcBFxvnAyZAbGnREHmIuc9vuaReJ7JscA== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - -"@jupyterlab/javascript-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/javascript-extension/-/javascript-extension-4.0.0-alpha.14.tgz#d868f6f6783ff17b1c879e949920c5fee44f3c10" - integrity sha512-67NoLcyM6T6e0N/kS26drlrcMiDC1a30HdLA4d4+A71fZRVjB/IdMd/5yuYG5SiFssW63QdfuEXASrqqzUJv8g== - dependencies: - "@jupyterlab/rendermime" "^4.0.0-alpha.14" - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.14" - -"@jupyterlab/json-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/json-extension/-/json-extension-4.0.0-alpha.14.tgz#0f8ddbb7735aca22ba91172493e62554ee39cbd4" - integrity sha512-ceEnz9J1+ZCsLq/Frm4fvWXtilS+XEgCDxmSX0A5oBC+xRsH8jF5Bzc7de6Z9QCT3Y0LNx0d00ghqdbSg2giZQ== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/hub-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/hub-extension/-/hub-extension-4.0.0-alpha.15.tgz#46c96bdd11d04ac0ad485f9b91fe85dfa698a3c2" + integrity sha512-71/5Oqw17HnAAGoYC1PxL0Qsocsg3gi3AzllSBRGEQZ8KD0gGplbXdjvNxgpVB7fGg8gvTtxM+rLjtg3zosVjA== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + +"@jupyterlab/javascript-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/javascript-extension/-/javascript-extension-4.0.0-alpha.15.tgz#3a33f2183784d53a77db10d919d66ef2679ca9aa" + integrity sha512-yvs7+HRNcs7txcGkgyYWPDhh0Nnt3VkyU0zrY5gRbhmkZWmURt0hqK2udhmdBOWs5oRrq2gu+gRR6re9JHRA5A== + dependencies: + "@jupyterlab/rendermime" "^4.0.0-alpha.15" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.15" + +"@jupyterlab/json-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/json-extension/-/json-extension-4.0.0-alpha.15.tgz#fd4e8f795bcb74dfd1272f4db1c564a1fc1d7d78" + integrity sha512-vs/0Q3YABED7s8H87lbS2sZG6HBvePNHxdgC/HOtht8Ut+/UsjudsFmhonzZGQp/k4C+atO6Tz55no9NtdIy6g== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/codemirror" "^4.0.0-alpha.15" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" + "@lezer/highlight" "^1.0.0" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/messaging" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" @@ -2361,14 +2364,14 @@ react-highlighter "^0.4.3" react-json-tree "^0.16.1" -"@jupyterlab/launcher@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/launcher/-/launcher-4.0.0-alpha.14.tgz#c08afc8a62ca59b7b445ecf8e635c2cfd0776b53" - integrity sha512-rAxiP7Tbh9tPLASJx17a7tehkjfHfJbs2KL2tgutXC0QxTB8lRuS4M8Q/Wdl6CCw4jy52sf3c0Pt43T8VWlmIA== +"@jupyterlab/launcher@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/launcher/-/launcher-4.0.0-alpha.15.tgz#e81bb433047d4ecb6636cc68432234b83fd1f317" + integrity sha512-WvoWMoFFpY8Ll3KxVfOWLK7F7yVH8vIU7x73V46lkl0x1ZhFLLo0PclNaj9iSQtntXNdEykBb7frEfs7O6A91g== dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/commands" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" @@ -2377,51 +2380,51 @@ "@lumino/widgets" "^2.0.0-alpha.6" react "^17.0.1" -"@jupyterlab/logconsole@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/logconsole/-/logconsole-4.0.0-alpha.14.tgz#805337c9c318000646b08e401d4161a4ac43084d" - integrity sha512-JU6Qu7He5ql5swzTgaZBidk8M72yXsVcOJ2lfb+RSbQiL4tKnNiYk1TEjhp9eRIV6/wkaFYUQhEnsEIq74GXFg== - dependencies: - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/nbformat" "^4.0.0-alpha.14" - "@jupyterlab/outputarea" "^4.0.0-alpha.14" - "@jupyterlab/rendermime" "^4.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" +"@jupyterlab/logconsole@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/logconsole/-/logconsole-4.0.0-alpha.15.tgz#9971af46895711f6cbde7ab6f5d2254d5261c4d4" + integrity sha512-QViKeuhXfKUFCESaAhh+HrdeYh65WWavzerWRsBPoNrQ24J2mmWNC7PZ8Kyn8V3W8Rn8CiV+pL1GAKIqPntvLg== + dependencies: + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/nbformat" "^4.0.0-alpha.15" + "@jupyterlab/outputarea" "^4.0.0-alpha.15" + "@jupyterlab/rendermime" "^4.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/messaging" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/lsp-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/lsp-extension/-/lsp-extension-4.0.0-alpha.14.tgz#b471bfa1df87978767baff40fefb703e256c9de7" - integrity sha512-j3rDcmtDllO1X91LR1LaVnkxz8dKpM2RGdOEX8z6s3WaKirK0BTjuO0WR+95Ohp8UHVOMSO0lcz30HUNqgoAPg== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/lsp" "^4.0.0-alpha.14" - "@jupyterlab/running" "^4.0.0-alpha.14" - "@jupyterlab/settingregistry" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/lsp-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/lsp-extension/-/lsp-extension-4.0.0-alpha.15.tgz#61aee18debd7969b4f5805826cca9b0376cf6313" + integrity sha512-k6ZC/VL0bRJWK97WCW3hDe9Sfxefg/wDWu6jSmIiRZ8bQsHxDtQ1L9o6oZEMXxO9ZOH4rjapwsFkTc3N9YUwwQ== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/lsp" "^4.0.0-alpha.15" + "@jupyterlab/running" "^4.0.0-alpha.15" + "@jupyterlab/settingregistry" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/polling" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" - "@rjsf/core" "^3.1.0" + "@rjsf/core" "^4.2.0" react "^17.0.1" -"@jupyterlab/lsp@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/lsp/-/lsp-4.0.0-alpha.14.tgz#c6ac368cefade63efb04d0538c52e5b94c316a29" - integrity sha512-bmoEgCK6YlAs+YynVbCILVJQWXb6c0lbwZ6bIpG0jwJadCo8efhmqgRuENfQoYE7AoAD77cYvQO0qPAjNQfuWw== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/codeeditor" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/docregistry" "^4.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" +"@jupyterlab/lsp@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/lsp/-/lsp-4.0.0-alpha.15.tgz#1d738047c41cb46ce2a60cb5d75d3aeb8c9969c2" + integrity sha512-FpB2StiKYGhR9ets/hXdVOnbI2sOl8KKFTKycw+a7BhrmSY0XwjUsCfPySxBYzza8vDMRvpCLVqyi3i7LeKQ5A== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/codeeditor" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/docregistry" "^4.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" @@ -2430,104 +2433,104 @@ vscode-languageserver-protocol "^3.17.0" vscode-ws-jsonrpc "~1.0.2" -"@jupyterlab/mainmenu-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/mainmenu-extension/-/mainmenu-extension-4.0.0-alpha.14.tgz#36df76ccf98ea81337ece5cbb00034826459dbdb" - integrity sha512-IbRHSnZYq1smXy7EqktYkO907voDIuwPk0/WBaMOZFVKKn2xOW78bL+ij230PEA8lLUgCFTceDZ8atFaLMoxzA== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/mainmenu" "^4.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/settingregistry" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/mainmenu-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/mainmenu-extension/-/mainmenu-extension-4.0.0-alpha.15.tgz#9aa8c1112be28a4757e7b172e93babb625c4fbd0" + integrity sha512-cJ3mIWnFsJIL30cFoY3jTq5VFG/I90UwXZSqH9wo7WKu7ZX7oNHN2xkmO0EgjYb+Rg8GDFaYOe1lQxybQXMKxg== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/mainmenu" "^4.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/settingregistry" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/mainmenu@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/mainmenu/-/mainmenu-4.0.0-alpha.14.tgz#17637c948c90ec83ffadc528881a2c20478ec5b9" - integrity sha512-gUkdhNjQiVYzqU18ahQDsy6zDVJ2/S3vtlZuHo8XMOTYOi1A/Bah04cFRWBq+UjKjEa5D5RuMdUZcrdUGQ2SNQ== +"@jupyterlab/mainmenu@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/mainmenu/-/mainmenu-4.0.0-alpha.15.tgz#13949fb955a447df61c28c138ad96631dd32e021" + integrity sha512-6JkSB5ot07TieEz7S1Xvini8XxoyGzCPg3bVl6hmM8HFI3S0VXHoqGIttCPzu9EKN+9AZK8DxbRjdVpmLY3DfQ== dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/commands" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/markedparser-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/markedparser-extension/-/markedparser-extension-4.0.0-alpha.14.tgz#ec52359e8fac0b9833dc847a30946301032f9c63" - integrity sha512-dortkxouBTvbKmOr418yILbD/6NtZXtE5vl5/9ql3pJMRNgtlBZ4pvKya7b3RBEgMPGQSTxPzJjiYv1cE53BwA== +"@jupyterlab/markedparser-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/markedparser-extension/-/markedparser-extension-4.0.0-alpha.15.tgz#0037dd3b1ffca17558ff2804f11643e3abf46d4e" + integrity sha512-cT/OdST4JkBS/4QKZt+IrDGiUd0GbxlqT5lVBKrwOQEqWKrnW1PAc4oV8XOyA5obbWZ43kSJYr/N6eozh2DFYQ== dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/codemirror" "^4.0.0-alpha.14" - "@jupyterlab/rendermime" "^4.0.0-alpha.14" + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/codemirror" "^4.0.0-alpha.15" + "@jupyterlab/rendermime" "^4.0.0-alpha.15" marked "^4.0.17" -"@jupyterlab/mathjax2-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/mathjax2-extension/-/mathjax2-extension-4.0.0-alpha.14.tgz#da4a09b07af67802973998f51e31088f6362b574" - integrity sha512-QO+KR4No5p6K3S8tT4C/WBhV/1hnJ2csn4vwCv8WJuaU+fQHNc/FXuVZfLD19T3FZuFClC/nbBkp515FDu99MA== +"@jupyterlab/mathjax2-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/mathjax2-extension/-/mathjax2-extension-4.0.0-alpha.15.tgz#3dd3b23114894bf9d3ba45323d1937f3dca135d8" + integrity sha512-T8SaYkugNhrJXCthOub7aAMXVyHS88lP8w6U+hqUFfXOkK8IGPNPvRpcE76nHwbUpSqOUpfKzs0ANjnrVVwB2A== dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/mathjax2" "^4.0.0-alpha.14" - "@jupyterlab/rendermime" "^4.0.0-alpha.14" + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/mathjax2" "^4.0.0-alpha.15" + "@jupyterlab/rendermime" "^4.0.0-alpha.15" -"@jupyterlab/mathjax2@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/mathjax2/-/mathjax2-4.0.0-alpha.14.tgz#1bb48c787eb37b0a2af2966530107edf4d2aff28" - integrity sha512-YflGamcXvq2xODgVlnuCw0qlfhiVgwHnkRDo80DDr3Q8LWloKm1wbZTuN0cobDuEzqpt/nSaLaMSBibu1vuMXw== +"@jupyterlab/mathjax2@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/mathjax2/-/mathjax2-4.0.0-alpha.15.tgz#e2dcb6d241ec040d25c1676d579a1c9328b60286" + integrity sha512-obBcVfvzjv6ARAnv/FSymlcYNzqlFpTd+X7visq+ZGxmYq9q8KQsFisTwjGo4a0gpXU6WIXWp4WC7ErK8bQPtA== dependencies: - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.14" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.15" "@lumino/coreutils" "^2.0.0-alpha.6" -"@jupyterlab/nbformat@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/nbformat/-/nbformat-4.0.0-alpha.14.tgz#99965d71e42ee32727d9227180b7313b0d4c90a8" - integrity sha512-yeIeX9pEUQROIrgi4wNteg4bGmQ0dxu1ZwMkeXtsFe+3dla9bDtOm8A87f5u6C/33m7Cme/wPycqDjucO0zQxQ== +"@jupyterlab/nbformat@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/nbformat/-/nbformat-4.0.0-alpha.15.tgz#ccec8e0c036c0a1bada1b9b36474f40c1b44c173" + integrity sha512-C+Y8dKwgYulUbPbtU5SYzuA6ffzDhNb6H4fj0Ndml7IdaqMx3lHqqZNKIGwskcZioXO6rer975eyEraeE8U7VA== dependencies: "@lumino/coreutils" "^2.0.0-alpha.6" -"@jupyterlab/notebook-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/notebook-extension/-/notebook-extension-4.0.0-alpha.14.tgz#5e0697a1b6c259fb539216fc619f5c1eb64abec0" - integrity sha512-ZiEjJ7OY9mDvjSLSP1fb9Mr6MJdOzpSY98jiv6eT1R9Y3IyF9pqT8zj1QPl0o0Bz7ZrZzbhk+w/2aa1Ln+b5OA== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/cells" "^4.0.0-alpha.14" - "@jupyterlab/codeeditor" "^4.0.0-alpha.14" - "@jupyterlab/completer" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/docmanager" "^4.0.0-alpha.14" - "@jupyterlab/docmanager-extension" "^4.0.0-alpha.14" - "@jupyterlab/docregistry" "^4.0.0-alpha.14" - "@jupyterlab/documentsearch" "^4.0.0-alpha.14" - "@jupyterlab/filebrowser" "^4.0.0-alpha.14" - "@jupyterlab/launcher" "^4.0.0-alpha.14" - "@jupyterlab/logconsole" "^4.0.0-alpha.14" - "@jupyterlab/lsp" "^4.0.0-alpha.14" - "@jupyterlab/mainmenu" "^4.0.0-alpha.14" - "@jupyterlab/nbformat" "^4.0.0-alpha.14" - "@jupyterlab/notebook" "^4.0.0-alpha.14" - "@jupyterlab/observables" "^5.0.0-alpha.14" - "@jupyterlab/property-inspector" "^4.0.0-alpha.14" - "@jupyterlab/rendermime" "^4.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/settingregistry" "^4.0.0-alpha.14" - "@jupyterlab/statedb" "^4.0.0-alpha.14" - "@jupyterlab/statusbar" "^4.0.0-alpha.14" - "@jupyterlab/toc" "^6.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/notebook-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/notebook-extension/-/notebook-extension-4.0.0-alpha.15.tgz#df4983db969f9248aaed1be229c81b9d3ed444b1" + integrity sha512-Ll+pehzfMA8zoALYkAHTdBChDSt2Ip1jhC7/8qpw+1YchPiXYivsaHDdxH0jzj1AHoaS1Mc0Tw2MaPAOzXnFeg== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/cells" "^4.0.0-alpha.15" + "@jupyterlab/codeeditor" "^4.0.0-alpha.15" + "@jupyterlab/completer" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/docmanager" "^4.0.0-alpha.15" + "@jupyterlab/docmanager-extension" "^4.0.0-alpha.15" + "@jupyterlab/docregistry" "^4.0.0-alpha.15" + "@jupyterlab/documentsearch" "^4.0.0-alpha.15" + "@jupyterlab/filebrowser" "^4.0.0-alpha.15" + "@jupyterlab/launcher" "^4.0.0-alpha.15" + "@jupyterlab/logconsole" "^4.0.0-alpha.15" + "@jupyterlab/lsp" "^4.0.0-alpha.15" + "@jupyterlab/mainmenu" "^4.0.0-alpha.15" + "@jupyterlab/nbformat" "^4.0.0-alpha.15" + "@jupyterlab/notebook" "^4.0.0-alpha.15" + "@jupyterlab/observables" "^5.0.0-alpha.15" + "@jupyterlab/property-inspector" "^4.0.0-alpha.15" + "@jupyterlab/rendermime" "^4.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/settingregistry" "^4.0.0-alpha.15" + "@jupyterlab/statedb" "^4.0.0-alpha.15" + "@jupyterlab/statusbar" "^4.0.0-alpha.15" + "@jupyterlab/toc" "^6.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/commands" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" @@ -2535,29 +2538,29 @@ "@lumino/messaging" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/notebook@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/notebook/-/notebook-4.0.0-alpha.14.tgz#cf424cdc6a6e3327e44df59f17db385c3389a791" - integrity sha512-wgxgifHadVPrcyEfIa2woDCeopfDhd2XOMnVAPr6FjC/Ms8PsTeqtF1G9jY9xH0XMhJ4uRXsxyebE2DiNkYcEw== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/cells" "^4.0.0-alpha.14" - "@jupyterlab/codeeditor" "^4.0.0-alpha.14" - "@jupyterlab/codemirror" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/docregistry" "^4.0.0-alpha.14" - "@jupyterlab/documentsearch" "^4.0.0-alpha.14" - "@jupyterlab/lsp" "^4.0.0-alpha.14" - "@jupyterlab/nbformat" "^4.0.0-alpha.14" - "@jupyterlab/observables" "^5.0.0-alpha.14" - "@jupyterlab/rendermime" "^4.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/settingregistry" "^4.0.0-alpha.14" - "@jupyterlab/shared-models" "^4.0.0-alpha.14" - "@jupyterlab/statusbar" "^4.0.0-alpha.14" - "@jupyterlab/toc" "^6.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/notebook@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/notebook/-/notebook-4.0.0-alpha.15.tgz#378a2e0020e781633e7c01bffd42e64f4b386590" + integrity sha512-9LK3nPs7xi9JNgBUzteGfHBRMBZn0YbYYzifh7BZn1LbN8Mb5TS6vKXOPkBF448lhilmUnVUSMKpUm18ZR8+sw== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/cells" "^4.0.0-alpha.15" + "@jupyterlab/codeeditor" "^4.0.0-alpha.15" + "@jupyterlab/codemirror" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/docregistry" "^4.0.0-alpha.15" + "@jupyterlab/documentsearch" "^4.0.0-alpha.15" + "@jupyterlab/lsp" "^4.0.0-alpha.15" + "@jupyterlab/nbformat" "^4.0.0-alpha.15" + "@jupyterlab/observables" "^5.0.0-alpha.15" + "@jupyterlab/rendermime" "^4.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/settingregistry" "^4.0.0-alpha.15" + "@jupyterlab/shared-models" "^4.0.0-alpha.15" + "@jupyterlab/statusbar" "^4.0.0-alpha.15" + "@jupyterlab/toc" "^6.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/domutils" "^2.0.0-alpha.6" @@ -2570,10 +2573,10 @@ "@lumino/widgets" "^2.0.0-alpha.6" react "^17.0.1" -"@jupyterlab/observables@^5.0.0-alpha.14": - version "5.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/observables/-/observables-5.0.0-alpha.14.tgz#3e831e54ccf4ae4897b7cbf34f4b95d5a04a7a5c" - integrity sha512-bOjNe2u9sExl8IOkTiD0ycKS5uxtiFvE3bg4otK8ZsCfu7skcVj8tYvciS7O3rFgM/JsPEiqcjfAEwxCVSNQxw== +"@jupyterlab/observables@^5.0.0-alpha.15": + version "5.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/observables/-/observables-5.0.0-alpha.15.tgz#13f564a4881d2e8caed55787e0f85b79c3110998" + integrity sha512-PftwPVTPmIu5GKwhackMTGud+loSMuVIGqhKS07h+yvp8tWSSQRXucuyqDJ1OinxvltLV8IPn4hLvIci3NNTwA== dependencies: "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" @@ -2581,18 +2584,18 @@ "@lumino/messaging" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" -"@jupyterlab/outputarea@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/outputarea/-/outputarea-4.0.0-alpha.14.tgz#49e51b9b50be7247d44d82f746301c907ce4cd78" - integrity sha512-M1sph1hfB0LICWRFVFW1mJx7TtxO5o9eJL7+1IznhPtTl+jvU8a8klcBQ+crJoFhFi+8Fe+W4zG0C7sVdriN/Q== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/nbformat" "^4.0.0-alpha.14" - "@jupyterlab/observables" "^5.0.0-alpha.14" - "@jupyterlab/rendermime" "^4.0.0-alpha.14" - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" +"@jupyterlab/outputarea@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/outputarea/-/outputarea-4.0.0-alpha.15.tgz#ad5738ce34bd8d814a8472f047c960b5b4dd69be" + integrity sha512-t1M+hyuEtITyVCwkBp5/GTGNSWkx4SzjOJ8M/Npt1KYmgDfercbEKMwcaw3q7gk1UDIaGx32u8tdLKGVEA1zBw== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/nbformat" "^4.0.0-alpha.15" + "@jupyterlab/observables" "^5.0.0-alpha.15" + "@jupyterlab/rendermime" "^4.0.0-alpha.15" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" @@ -2601,105 +2604,104 @@ "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/pdf-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/pdf-extension/-/pdf-extension-4.0.0-alpha.14.tgz#f4775a157ffe532370b725cc7b7547ca4756d5ae" - integrity sha512-1aIpqVD8RujFm9AixU3SPqOJCMRl5or/H1VA928ms+qKF26kYH5SDNOiY5lKBVjI17AhEyS7EcLP7i2NXnWWfA== +"@jupyterlab/pdf-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/pdf-extension/-/pdf-extension-4.0.0-alpha.15.tgz#8e6992f2e92137e7f357aa9f08c2fffd6f876341" + integrity sha512-FO7oSFjnaGlq1aQDkgcdqZUAA1+oqAXM/a0futBQDvIj+xg8TuB7dpbSpCAaItzFdR+IgeD2aGtstQQzTwnn8w== dependencies: - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.14" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.15" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/property-inspector@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/property-inspector/-/property-inspector-4.0.0-alpha.14.tgz#e336d88d9c6922327e94627db72b67925e1e9949" - integrity sha512-fHVMEYlwD77UP2vZ7/avp+bc6T04X+aJaNLndAMZCQcjTthjJ9PNdEt96YaeivGarf4GzXD9znbnBF4sHY67PA== +"@jupyterlab/property-inspector@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/property-inspector/-/property-inspector-4.0.0-alpha.15.tgz#cec9b5bf31040e2a1f3abd5fa418637cbeeb58bc" + integrity sha512-zKhhdLbk5vneyyA2ojL+xeq2yjQRx3uHcceTZW/Og4Sz8BLo0nHZHK6OVbojDx4y0nJdAnxBUt//NjhZmxPJVA== dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" react "^17.0.1" -"@jupyterlab/rendermime-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/rendermime-extension/-/rendermime-extension-4.0.0-alpha.14.tgz#68c3c5771659ac8dc6bd35a6af8d371970e15f7e" - integrity sha512-wIdTDNt8IazOcgDmPT4onTYIdjsI74m5MyNXnzbEvQulYP5YkVG1r/EsvEuUusL4NYZ7JX2UK5mgAkZxLbjiUQ== +"@jupyterlab/rendermime-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/rendermime-extension/-/rendermime-extension-4.0.0-alpha.15.tgz#311e3d3c3a7c75fbd2b41a0a9f3a0d627ea9add3" + integrity sha512-KVCKSGJhvezu0kRkf0Er3W8bJjhYhu5oHlUj+hI1+nxDw4ctT5wHMNdu7NLh6kBXDR628J5FiQcn4GtoYzybFw== dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/docmanager" "^4.0.0-alpha.14" - "@jupyterlab/rendermime" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/docmanager" "^4.0.0-alpha.15" + "@jupyterlab/rendermime" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" -"@jupyterlab/rendermime-interfaces@^3.8.0-alpha.14": - version "3.8.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/rendermime-interfaces/-/rendermime-interfaces-3.8.0-alpha.14.tgz#2362828d473ebe8f4acd0f03af0ba034caa3a121" - integrity sha512-697BbjnDqQTTHmWSjj+XZ9PPktOhBCx3M3EIwy1Tk9tk6m8Ow3sQ2LQMBQI9eS9+bswvUudGGMyyISlKDw9qDw== +"@jupyterlab/rendermime-interfaces@^3.8.0-alpha.15": + version "3.8.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/rendermime-interfaces/-/rendermime-interfaces-3.8.0-alpha.15.tgz#ffe7248328ef60d5554c0a21a1e05f9c8990bbbf" + integrity sha512-YLeb3+xr+6/hvMcW8aWk6NQ3nwn61xs2CK5hFiBOtNf9JSxopDMrP9tnZ17RbjueHyhHNoiaPofamUP+lFyvDQ== dependencies: "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/rendermime@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/rendermime/-/rendermime-4.0.0-alpha.14.tgz#713b5fb48ba8f5efa58e09763d350840352e886b" - integrity sha512-uiWiJSqGzYg1tFxqSIBfo8qJwoqw7WqPCTkxprbi4gf2JmbEyeajv8My06gSrNLN/Jal4N86GUvmD8EMuWx9TA== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/nbformat" "^4.0.0-alpha.14" - "@jupyterlab/observables" "^5.0.0-alpha.14" - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" +"@jupyterlab/rendermime@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/rendermime/-/rendermime-4.0.0-alpha.15.tgz#8e9b4dd65bc89eb5e6ac4f027d1c9576cd8337d9" + integrity sha512-hY/dY4LzOLpyeUagg3Vd5fcBj4s5NVANqjnVCsjf5v47gb32/rVfyj1z8DHO1HAJmAs7vnrGuPvlVhiqiuyvdg== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/nbformat" "^4.0.0-alpha.15" + "@jupyterlab/observables" "^5.0.0-alpha.15" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/messaging" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" lodash.escape "^4.0.1" -"@jupyterlab/running-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/running-extension/-/running-extension-4.0.0-alpha.14.tgz#45258ccc8bd8d2be010d5e931f4b895e5ea5160a" - integrity sha512-5+jJCL4x0M8MVnUedaipuSCcM6JTPiL3NBDwn0YtnLMkIIY3YNTGOCISSQ8yjQJCSXF82nQl3WRb8bn6CPdegw== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/docregistry" "^4.0.0-alpha.14" - "@jupyterlab/running" "^4.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/running-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/running-extension/-/running-extension-4.0.0-alpha.15.tgz#d90f1d5470d2d33bd2c1ac999ca6a1b58c7a1fda" + integrity sha512-L1MjP1b58p4Gr7g2BLGWaCg+HtbTNr1EMrgrxRfT0mfoBU0vWfPncbGgiNplpKGs4txsS7lnmfyp6FNfcvuVtg== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/docregistry" "^4.0.0-alpha.15" + "@jupyterlab/running" "^4.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/running@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/running/-/running-4.0.0-alpha.14.tgz#5894e400e2986ed23e914d269486935f846fd9c8" - integrity sha512-rm3MV5Eo9yUyqTxgTwkFXNGoxhp0kiek05zBwvrVqLrr4aapUfu9iAe2WEiSjNB/4w0kyMDewHZ0/n1+sHnrRA== +"@jupyterlab/running@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/running/-/running-4.0.0-alpha.15.tgz#97d76b718976474d354471a32f8c66490ad04520" + integrity sha512-tKyFk6JKVz1qTK0Bf82NTYS0O3Ww4F6rJoGAeMJ6QBEJ2O0xIsb5tojo7mrTlmOZfsHbT5HPX/x8wEMCMm/3sA== dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" react "^17.0.1" -"@jupyterlab/services@^7.0.0-alpha.14": - version "7.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/services/-/services-7.0.0-alpha.14.tgz#7a745690ed0feaa277615bad98025385dcedb249" - integrity sha512-NA8CroNgMsjIlqZ+iBxbmu9Ir1Sb6aCU2Onf816x8g4vUQAAYVYJh1HlV6TCroDpBEgYE0y/58ojKumSeaC1/A== +"@jupyterlab/services@^7.0.0-alpha.15": + version "7.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/services/-/services-7.0.0-alpha.15.tgz#6bbaef5e59eeb042bbc90e4fda191d80e466ad5c" + integrity sha512-TGGveemYg0d9RGhT0R3S+Zr9cAIcVMCP6KkeA4oq85TbEPQxo1pOMCbLqpPTc78k6UVoum8L05sAPCE7CXA9Sw== dependencies: - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/nbformat" "^4.0.0-alpha.14" - "@jupyterlab/observables" "^5.0.0-alpha.14" - "@jupyterlab/settingregistry" "^4.0.0-alpha.14" - "@jupyterlab/statedb" "^4.0.0-alpha.14" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/nbformat" "^4.0.0-alpha.15" + "@jupyterlab/settingregistry" "^4.0.0-alpha.15" + "@jupyterlab/statedb" "^4.0.0-alpha.15" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/polling" "^2.0.0-alpha.6" @@ -2707,12 +2709,12 @@ node-fetch "^2.6.0" ws "^7.4.6" -"@jupyterlab/settingregistry@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/settingregistry/-/settingregistry-4.0.0-alpha.14.tgz#f8f5b58d14626b914fd0d0790671169ddab42d09" - integrity sha512-q4Q46qgQ2eokqjAy62wQ9OrXFCKWAn9xyXyO3kNuHNQIYTSJ0HuIueQfWVcbezxgbZ9tHN+xyfO/6X/bQhpxzA== +"@jupyterlab/settingregistry@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/settingregistry/-/settingregistry-4.0.0-alpha.15.tgz#5f163c008966368f0327cc9f4697cb96fe4b2be8" + integrity sha512-Sjd6yJYVlEuogpVzV+w1YqMBI2ZzkWtRXFCjuP5FprNkqXjoufhgM9x2a+gzUMQWjnlfjsMt/0y+E4gEx3fVXQ== dependencies: - "@jupyterlab/statedb" "^4.0.0-alpha.14" + "@jupyterlab/statedb" "^4.0.0-alpha.15" "@lumino/commands" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" @@ -2720,12 +2722,12 @@ ajv "^6.12.3" json5 "^2.1.1" -"@jupyterlab/shared-models@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/shared-models/-/shared-models-4.0.0-alpha.14.tgz#022e886c1cbaa8e8e4ba5b4a9f0d6af54c3b71ee" - integrity sha512-iMxIOfQRN3GYxo837xfuKEjinMkPtuz2FC+TukI/F+U7n+0tLfE2j+/6LiopiB5NJytQwyH3JAa8VeAar/CJZA== +"@jupyterlab/shared-models@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/shared-models/-/shared-models-4.0.0-alpha.15.tgz#29f3e2a8b0d30011107239120410c4d41ddd8b45" + integrity sha512-1ArVBlGUPpW7jm4vvzG10OASi1DJuT111g3wEt4TCXHxpwW9sjQr6cmd4SAPUTh3UaQxf/uschej3L6CK7n0Tw== dependencies: - "@jupyterlab/nbformat" "^4.0.0-alpha.14" + "@jupyterlab/nbformat" "^4.0.0-alpha.15" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" @@ -2733,15 +2735,15 @@ y-protocols "^1.0.5" yjs "^13.5.40" -"@jupyterlab/shortcuts-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/shortcuts-extension/-/shortcuts-extension-4.0.0-alpha.14.tgz#77b4233e4bcdfabc3699ba815142021f8c9b2725" - integrity sha512-mLkUvYJf7hIIDfQwB2Qe/TCP/QJf8jsg4nIwHfv5JHnBbfpHiwlAdoLyUPxrGzXtUr0DVWTLOYapPIVikNT29Q== +"@jupyterlab/shortcuts-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/shortcuts-extension/-/shortcuts-extension-4.0.0-alpha.15.tgz#4026d328dac1afc211bd3383e466b3710797e61b" + integrity sha512-AKC2HAVxB0dDrEDfo3RpA7BToo6gv2/Eb01PrX13Qg2HPtZrqDc8D6LrEVCvRuveaAE8a1AW8znL9o6EqnYQXA== dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/settingregistry" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/settingregistry" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/commands" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" @@ -2752,10 +2754,10 @@ react "^17.0.1" typestyle "^2.0.4" -"@jupyterlab/statedb@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/statedb/-/statedb-4.0.0-alpha.14.tgz#396381e6035a151d56f90800f7bbca0b07977406" - integrity sha512-cNr+vcc5YstRg6Gc4r3crHEMaiZvTFxfma+RUx1fshVXYdqUNrTYDV7xA/nHQUnNFXEs7tm4+5sWNJux5ORIGA== +"@jupyterlab/statedb@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/statedb/-/statedb-4.0.0-alpha.15.tgz#f74bb5d6b8ae7323118a8c2c7b27ea33520d8fce" + integrity sha512-iTl/ynPvSy0eTKW0euEigOomDY+nfI+gDZNzjJLE/YTM1J5bxjQ+QmbrMLaoUJhdSpEtxTlCgsgALuO7WY1jTw== dependencies: "@lumino/commands" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" @@ -2763,12 +2765,12 @@ "@lumino/properties" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" -"@jupyterlab/statusbar@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/statusbar/-/statusbar-4.0.0-alpha.14.tgz#6c951eb8d52e17928885e1bcf09cf2232757b807" - integrity sha512-gXy949nd5NgyqqxZUJ+fVh7qTbatWz+7rCvyc0d4zc/kFbMTZEHiNbl/vZHd22FRta+ZboBcB/GeDkIJoYnZXA== +"@jupyterlab/statusbar@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/statusbar/-/statusbar-4.0.0-alpha.15.tgz#8c8d0bf42a3797dd67b153d56926e33b32dde065" + integrity sha512-3VaPikq9WgtZBuFpy3WUkFZPm44Be+kQNw+g/eEQ12iHK3OzVD5AMxRwFESeygh20Oqnog6xFUJ1h+96odrd1Q== dependencies: - "@jupyterlab/ui-components" "^4.0.0-alpha.29" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" @@ -2779,31 +2781,31 @@ react "^17.0.1" typestyle "^2.0.4" -"@jupyterlab/terminal-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/terminal-extension/-/terminal-extension-4.0.0-alpha.14.tgz#f69b705c634f10f109bee550949ee5766e434188" - integrity sha512-KxRVu2Y64FmbTw5Eeumq8EJk7pyvTKcRSpZjBU07brl2SnhaCsjJzFrdgSqIOjim4I0JJ05Z37PAXY6Cxu4z0w== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/launcher" "^4.0.0-alpha.14" - "@jupyterlab/mainmenu" "^4.0.0-alpha.14" - "@jupyterlab/running" "^4.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/settingregistry" "^4.0.0-alpha.14" - "@jupyterlab/terminal" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/terminal-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/terminal-extension/-/terminal-extension-4.0.0-alpha.15.tgz#b23a7f3ed07e066c30c5d7e995080231762f5f77" + integrity sha512-+qGPWEUDxcGQjE1V19fTThz/0Tom4rNc6ULjfgPFneXoOAUKa0ek07NU6Iemwbtca5Qzqgjj4z2NqMfwvWms3g== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/launcher" "^4.0.0-alpha.15" + "@jupyterlab/mainmenu" "^4.0.0-alpha.15" + "@jupyterlab/running" "^4.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/settingregistry" "^4.0.0-alpha.15" + "@jupyterlab/terminal" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/terminal@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/terminal/-/terminal-4.0.0-alpha.14.tgz#df3e40f9c999fe53cf96581238798c2c6a581b9b" - integrity sha512-Sw3cpVCzSEjoHb2W707Q9yu8yq9jvcwytqEXKOqT46+5W/ASCa3r9JOyYqx5hGEwQeyboBdkQvbyCoye3dU8sQ== +"@jupyterlab/terminal@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/terminal/-/terminal-4.0.0-alpha.15.tgz#ff86e2cbba6716915154a0c1e9b7ae6ede91120e" + integrity sha512-ItEjLMjOYge9CkOrulqk1DwrOkJNpUjruu1na5GHcQ9sojyr0R5pWtla0I2tHd3rjXw8iiF+MFRk96+2I7vj7A== dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/domutils" "^2.0.0-alpha.6" "@lumino/messaging" "^2.0.0-alpha.6" @@ -2811,21 +2813,21 @@ xterm "~4.19.0" xterm-addon-fit "~0.5.0" -"@jupyterlab/testutils@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/testutils/-/testutils-4.0.0-alpha.14.tgz#3d4cb919d68b7ddb1c0dc2da33ce6364dac23adc" - integrity sha512-wK7VrZ9pffQ1tLUQowUDyg2piI9FOQRgtY32FI/6qjk0/EkcbBBNEEukK7pW0ojCODNZQ9aMbj9fw5fNmCM5TA== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/cells" "^4.0.0-alpha.14" - "@jupyterlab/codeeditor" "^4.0.0-alpha.14" - "@jupyterlab/codemirror" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/docregistry" "^4.0.0-alpha.14" - "@jupyterlab/nbformat" "^4.0.0-alpha.14" - "@jupyterlab/notebook" "^4.0.0-alpha.14" - "@jupyterlab/rendermime" "^4.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" +"@jupyterlab/testutils@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/testutils/-/testutils-4.0.0-alpha.15.tgz#965c5866b4277bcca3272321401c0c75367be57d" + integrity sha512-j3a0KihRJvprbH9pHgeFUgUR4TtlrrQz26ZFIBwxBa0k0oHltDmq6CU5/HB16ZfO6urKLETjwJ2aj91QcYW0gA== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/cells" "^4.0.0-alpha.15" + "@jupyterlab/codeeditor" "^4.0.0-alpha.15" + "@jupyterlab/codemirror" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/docregistry" "^4.0.0-alpha.15" + "@jupyterlab/nbformat" "^4.0.0-alpha.15" + "@jupyterlab/notebook" "^4.0.0-alpha.15" + "@jupyterlab/rendermime" "^4.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/properties" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" @@ -2842,47 +2844,47 @@ simulate-event "~1.4.0" ts-jest "^26.3.0" -"@jupyterlab/theme-dark-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/theme-dark-extension/-/theme-dark-extension-4.0.0-alpha.14.tgz#f9ebbf8624c812f3f216d43587a04323fec94abc" - integrity sha512-ynrAfM8+Zn6FUw/Gc7UU+JqgC3zfe950rpy0TjWxTk2PBqrDUPZC4Ku5xwqDloyOm3TY/VF9vV4qiy3Rt7Vp6g== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - -"@jupyterlab/theme-light-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/theme-light-extension/-/theme-light-extension-4.0.0-alpha.14.tgz#32090339ed111a41c49572ad80dd5ef3481b7b8f" - integrity sha512-VdLJQWosI0x6GY7+TvK587uPdSSduegiG7djCPQHtu6DF3eIaBtA6iRNFPozP9+aHNbY46c5ngfKdQeivy5ZMQ== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - -"@jupyterlab/toc-extension@^6.0.0-alpha.14": - version "6.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/toc-extension/-/toc-extension-6.0.0-alpha.14.tgz#706e5c2f7abf72546592dea5f675c55dc257bcea" - integrity sha512-ilksYGjsXszgdhl9beZtFRmRJLm+ZN2lQ0WJDxsnRaNG+d6tRfiw8toAS111bbSmxyfRNBysdqNIbtNfbioFEg== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/settingregistry" "^4.0.0-alpha.14" - "@jupyterlab/toc" "^6.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" - -"@jupyterlab/toc@^6.0.0-alpha.14": - version "6.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/toc/-/toc-6.0.0-alpha.14.tgz#6fad008f8252cbdcd87921ade3c4f42fbfd46012" - integrity sha512-Icmm/4FAYurllXBTln7aZZl/9a/hAWFOSDOwF1vbq2NxX3xRE7Lr86SQiSqiNMwir+55UyO73jyHHr5hX5MVAA== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/docregistry" "^4.0.0-alpha.14" - "@jupyterlab/observables" "^5.0.0-alpha.14" - "@jupyterlab/rendermime" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" +"@jupyterlab/theme-dark-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/theme-dark-extension/-/theme-dark-extension-4.0.0-alpha.15.tgz#1880e94386c18ded2f08b3e02094caa4912c1758" + integrity sha512-1HRmwxcXYhhjnf5zfTaKlnTWryJfZ5WKIcS+/P/80VuW1dvacFPZ8oFtcpwIbus/AbBeYUUGcp2+3OaGggrwMw== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + +"@jupyterlab/theme-light-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/theme-light-extension/-/theme-light-extension-4.0.0-alpha.15.tgz#4ac94dd129e0534afd1c668539b37104fbdf8804" + integrity sha512-Z8XRFCExSm24aA2zbkqfYEXPpiZtiGrs68H9B0I9Jpf/v21p92jvVpKl11MFeh09FAnavRz8gj8aMdbS5E59Hg== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + +"@jupyterlab/toc-extension@^6.0.0-alpha.15": + version "6.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/toc-extension/-/toc-extension-6.0.0-alpha.15.tgz#b692136b9222d3e8ea420b076b834431db49b870" + integrity sha512-5w5wq4SM/wsVm5ScgYQ2Jvnl8Dp+Wbu7j3q2kh1+j9rS9rMGxSZyvf4iUtAkZ3uqvePcblLGKDlVnX/dRFE7Yw== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/settingregistry" "^4.0.0-alpha.15" + "@jupyterlab/toc" "^6.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" + +"@jupyterlab/toc@^6.0.0-alpha.15": + version "6.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/toc/-/toc-6.0.0-alpha.15.tgz#333ea375d21624c23f4b73602718f087adf94dc6" + integrity sha512-BOTe1mvTEQ08Lf1VT0Hn0QKFJkw331etw7keSuHnYPjxdlXIni3cB87iAWYkw8Rb3Y7D0nJskOdIKkuKXYGAZw== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/docregistry" "^4.0.0-alpha.15" + "@jupyterlab/observables" "^5.0.0-alpha.15" + "@jupyterlab/rendermime" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/messaging" "^2.0.0-alpha.6" @@ -2890,69 +2892,77 @@ "@lumino/widgets" "^2.0.0-alpha.6" react "^17.0.1" -"@jupyterlab/tooltip-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/tooltip-extension/-/tooltip-extension-4.0.0-alpha.14.tgz#966808829ccd0ab332a660bba8d99f955d6e35a8" - integrity sha512-LLHjuxwmu56BdFHAwDqoGZY2CD8F6ejjr9KNudbeSeHGwfZVrboZy491oDazkz2hlw6Td43DHFu4iPwE+4k66w== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/codeeditor" "^4.0.0-alpha.14" - "@jupyterlab/console" "^4.0.0-alpha.14" - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/fileeditor" "^4.0.0-alpha.14" - "@jupyterlab/notebook" "^4.0.0-alpha.14" - "@jupyterlab/rendermime" "^4.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/tooltip" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" +"@jupyterlab/tooltip-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/tooltip-extension/-/tooltip-extension-4.0.0-alpha.15.tgz#5bf2b8e47e2e7075504840f0dfaf258ea99f628c" + integrity sha512-dVztFjQbVIlrlp1p93eQkXn0LzBndrffey6+Uf2xuGhaEtqoeonw+1H9ivYgN/DzTQPoUEMVwNXHDkicDD7TLA== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/codeeditor" "^4.0.0-alpha.15" + "@jupyterlab/console" "^4.0.0-alpha.15" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/fileeditor" "^4.0.0-alpha.15" + "@jupyterlab/notebook" "^4.0.0-alpha.15" + "@jupyterlab/rendermime" "^4.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/tooltip" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/tooltip@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/tooltip/-/tooltip-4.0.0-alpha.14.tgz#31f2b4c5ae348448d8f56d330086f89ac4d5bacb" - integrity sha512-BD45g4KXS7luQU3RVFdjWq/Lx8jBqUqrqiyjJlgmwfkM/ujsdOREjnUwPrCDvt21vhiEmfNg1ua5C39oo0M2gA== +"@jupyterlab/tooltip@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/tooltip/-/tooltip-4.0.0-alpha.15.tgz#30e7f00766e5525be812741d5c97c89813bb2b4c" + integrity sha512-WPNUkuSxUXptnJ2zb+Ac7W+hQyUxoWFRH7Bs5If+bUHvieYPB1THqB/AzZeojj4SVcRsfEkcodVucAITAqsHmw== dependencies: - "@jupyterlab/codeeditor" "^4.0.0-alpha.14" - "@jupyterlab/rendermime" "^4.0.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/ui-components" "^4.0.0-alpha.29" + "@jupyterlab/codeeditor" "^4.0.0-alpha.15" + "@jupyterlab/rendermime" "^4.0.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/messaging" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/translation-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/translation-extension/-/translation-extension-4.0.0-alpha.14.tgz#264f16fb993496db42031b3dba2b97d3bbb25022" - integrity sha512-Mn6BwT8xXWZzj/lyFdIlVA43OhUZTZJ8vOYhnN9B2n4F/PP/u9lT7ZFYXs2t9fV4Kbi/rxsJbgXjFs6c3KkceQ== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.14" - "@jupyterlab/apputils" "^4.0.0-alpha.14" - "@jupyterlab/mainmenu" "^4.0.0-alpha.14" - "@jupyterlab/settingregistry" "^4.0.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" - -"@jupyterlab/translation@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/translation/-/translation-4.0.0-alpha.14.tgz#4c2045dce00bc7903945d3bc54fd16209c904057" - integrity sha512-7x75+ri7qcao+byPqPpRr75xuJ/uwH9lnu52FsjUCQgaHQdZDzEBYbQJ6FNChrelRhreICKXL3bpA0S40vyXtQ== - dependencies: - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.14" - "@jupyterlab/services" "^7.0.0-alpha.14" - "@jupyterlab/statedb" "^4.0.0-alpha.14" +"@jupyterlab/translation-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/translation-extension/-/translation-extension-4.0.0-alpha.15.tgz#11c529bd81a5d1d141a810811541e65892eb95d5" + integrity sha512-jXVNQa6pwwcrm31qo2322XIUO1DxhyEQNEkX0wQ5wEWzOqOWZ2gNNECMHN+32a3kvhApodTt5hGTwTiczdIDaw== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/apputils" "^4.0.0-alpha.15" + "@jupyterlab/mainmenu" "^4.0.0-alpha.15" + "@jupyterlab/settingregistry" "^4.0.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" + +"@jupyterlab/translation@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/translation/-/translation-4.0.0-alpha.15.tgz#619d071140a1f9ab0c3d175edd299ab70d3dc01a" + integrity sha512-E7I6LWSBnZpmFxr4QmnmGaiqXjNIFLhslaJyjQXy9jVPS0YzwigIpF+Kz9oIuntiuKH+mYBHg4F9qcVUZALa8Q== + dependencies: + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.15" + "@jupyterlab/services" "^7.0.0-alpha.15" + "@jupyterlab/statedb" "^4.0.0-alpha.15" "@lumino/coreutils" "^2.0.0-alpha.6" -"@jupyterlab/ui-components@^4.0.0-alpha.29": - version "4.0.0-alpha.29" - resolved "https://registry.yarnpkg.com/@jupyterlab/ui-components/-/ui-components-4.0.0-alpha.29.tgz#e48ba526febe5ca9fc247e75743166cde1e090f5" - integrity sha512-/Phksv/S1Aoh+IQJEnhK//jOH/SzZPtkFwmjf8xcl4yFZ9Zd0hUBUtgr7aHWgzen7mq6I/ZmCW0POfv9V5yfIQ== +"@jupyterlab/ui-components-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/ui-components-extension/-/ui-components-extension-4.0.0-alpha.15.tgz#1d666964c13ff2836b2058b5f1e7bbcc8c1980ca" + integrity sha512-ivnFALA5E1WbFgIQRka2SyJDdv5UVNKr4u+zHRJq7cW59HW1eKRm/5sbPh9CVA+Qbt/chIjRzRtPWV0Gz+dC/Q== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.15" + "@jupyterlab/ui-components" "^4.0.0-alpha.30" + +"@jupyterlab/ui-components@^4.0.0-alpha.30": + version "4.0.0-alpha.30" + resolved "https://registry.yarnpkg.com/@jupyterlab/ui-components/-/ui-components-4.0.0-alpha.30.tgz#6de764759ac947366232ce232a80443317647bbc" + integrity sha512-Y5CKq/rV3Ai4o/TVAw9IezPrU8f1LZQaDE2AMocixJXvlo4ZuMHHHPdb63gUxvLYhid6tv9/r6ogQC92RIpQTA== dependencies: - "@jupyterlab/coreutils" "^6.0.0-alpha.14" - "@jupyterlab/observables" "^5.0.0-alpha.14" - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.14" - "@jupyterlab/translation" "^4.0.0-alpha.14" + "@jupyterlab/coreutils" "^6.0.0-alpha.15" + "@jupyterlab/observables" "^5.0.0-alpha.15" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.15" + "@jupyterlab/translation" "^4.0.0-alpha.15" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/commands" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" @@ -2963,56 +2973,56 @@ "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/virtualdom" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" - "@rjsf/core" "^3.1.0" + "@rjsf/core" "^4.2.0" react "^17.0.1" react-dom "^17.0.1" typestyle "^2.0.4" -"@jupyterlab/vega5-extension@^4.0.0-alpha.14": - version "4.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@jupyterlab/vega5-extension/-/vega5-extension-4.0.0-alpha.14.tgz#902eca5152edb3fabd8a3802b12087d2a0564cf5" - integrity sha512-qUrxlZDbhJqAMvDoe4MUVN8WmxRUKDTntVTiT2We5b05MMyMqIHuwAPBoAXLigXbr0nJ369s52k+l4uPAUHJJA== +"@jupyterlab/vega5-extension@^4.0.0-alpha.15": + version "4.0.0-alpha.15" + resolved "https://registry.yarnpkg.com/@jupyterlab/vega5-extension/-/vega5-extension-4.0.0-alpha.15.tgz#7d751679fcacc2197adcbca87d49edfa726e5bc3" + integrity sha512-BGIwznYvnyVGZ++L+qA50cx15JVYVKuVzMsp/q6hwgN1cnoNP53EhRJQJLzI8PPkKrGQ/ZB6JgkkR1lydOVIPQ== dependencies: - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.14" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.15" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" vega "^5.20.0" vega-embed "^6.2.1" vega-lite "^5.1.0" -"@lerna/add@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/add/-/add-5.5.4.tgz#2c925ced1cb42779a440f046c37aa0151a560b87" - integrity sha512-eMEWdyH2ijjDuOCZ5qI7nZlWtVmOx/aABGyNmNEG1ChNDQSmxgEmmqxagQCtW7+T63e9AaHsjrxYahBWYBnuhw== +"@lerna/add@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/add/-/add-5.6.2.tgz#d0e25fd4900b6f8a9548f940cc016ce8a3e2d2ba" + integrity sha512-NHrm7kYiqP+EviguY7/NltJ3G9vGmJW6v2BASUOhP9FZDhYbq3O+rCDlFdoVRNtcyrSg90rZFMOWHph4KOoCQQ== dependencies: - "@lerna/bootstrap" "5.5.4" - "@lerna/command" "5.5.4" - "@lerna/filter-options" "5.5.4" - "@lerna/npm-conf" "5.5.4" - "@lerna/validation-error" "5.5.4" + "@lerna/bootstrap" "5.6.2" + "@lerna/command" "5.6.2" + "@lerna/filter-options" "5.6.2" + "@lerna/npm-conf" "5.6.2" + "@lerna/validation-error" "5.6.2" dedent "^0.7.0" npm-package-arg "8.1.1" p-map "^4.0.0" pacote "^13.6.1" semver "^7.3.4" -"@lerna/bootstrap@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/bootstrap/-/bootstrap-5.5.4.tgz#919fdccf9447ce1b6901fb30ca69860f6563c958" - integrity sha512-MGC6naM0DrFNYTZPEW477uqWCqXmI4MRBKjtGNMiJhczYcFdD6x30u688zoAuO5HUoyqL6Uw7Ea28GVEyDm93Q== - dependencies: - "@lerna/command" "5.5.4" - "@lerna/filter-options" "5.5.4" - "@lerna/has-npm-version" "5.5.4" - "@lerna/npm-install" "5.5.4" - "@lerna/package-graph" "5.5.4" - "@lerna/pulse-till-done" "5.5.4" - "@lerna/rimraf-dir" "5.5.4" - "@lerna/run-lifecycle" "5.5.4" - "@lerna/run-topologically" "5.5.4" - "@lerna/symlink-binary" "5.5.4" - "@lerna/symlink-dependencies" "5.5.4" - "@lerna/validation-error" "5.5.4" +"@lerna/bootstrap@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/bootstrap/-/bootstrap-5.6.2.tgz#a0f015ae7c30189a3064c0d5940134010ece635e" + integrity sha512-S2fMOEXbef7nrybQhzBywIGSLhuiQ5huPp1sU+v9Y6XEBsy/2IA+lb0gsZosvPqlRfMtiaFstL+QunaBhlWECA== + dependencies: + "@lerna/command" "5.6.2" + "@lerna/filter-options" "5.6.2" + "@lerna/has-npm-version" "5.6.2" + "@lerna/npm-install" "5.6.2" + "@lerna/package-graph" "5.6.2" + "@lerna/pulse-till-done" "5.6.2" + "@lerna/rimraf-dir" "5.6.2" + "@lerna/run-lifecycle" "5.6.2" + "@lerna/run-topologically" "5.6.2" + "@lerna/symlink-binary" "5.6.2" + "@lerna/symlink-dependencies" "5.6.2" + "@lerna/validation-error" "5.6.2" "@npmcli/arborist" "5.3.0" dedent "^0.7.0" get-port "^5.1.1" @@ -3024,100 +3034,100 @@ p-waterfall "^2.1.1" semver "^7.3.4" -"@lerna/changed@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/changed/-/changed-5.5.4.tgz#61742e6d92e7f0aaec6b787f6b0a6203ef444c99" - integrity sha512-/tns9PA5m9XCKJk13RRJotCOFR/bZ+7zfxz20zpIELT9GehZLTaEPsItxVnlqQ4dMHMe0fl6XG6dFqeBqLOW4g== +"@lerna/changed@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/changed/-/changed-5.6.2.tgz#96a647ed202d8146b2077bf13a682466e8607f9a" + integrity sha512-uUgrkdj1eYJHQGsXXlpH5oEAfu3x0qzeTjgvpdNrxHEdQWi7zWiW59hRadmiImc14uJJYIwVK5q/QLugrsdGFQ== dependencies: - "@lerna/collect-updates" "5.5.4" - "@lerna/command" "5.5.4" - "@lerna/listable" "5.5.4" - "@lerna/output" "5.5.4" + "@lerna/collect-updates" "5.6.2" + "@lerna/command" "5.6.2" + "@lerna/listable" "5.6.2" + "@lerna/output" "5.6.2" -"@lerna/check-working-tree@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/check-working-tree/-/check-working-tree-5.5.4.tgz#f19bddb23543010a848a3f44e66fc63929f6d4c9" - integrity sha512-uIHlEb/JSX9P230UNH69W21fWM4oKu8ulRdXuYCBckpbJkDz9nT1yS2y4wUHx+3GfXWqGKygTh8Z06vSdYg+2A== +"@lerna/check-working-tree@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/check-working-tree/-/check-working-tree-5.6.2.tgz#dd03b0c3fe9f141c31c0c47a9a0162ee9c0f6c28" + integrity sha512-6Vf3IB6p+iNIubwVgr8A/KOmGh5xb4SyRmhFtAVqe33yWl2p3yc+mU5nGoz4ET3JLF1T9MhsePj0hNt6qyOTLQ== dependencies: - "@lerna/collect-uncommitted" "5.5.4" - "@lerna/describe-ref" "5.5.4" - "@lerna/validation-error" "5.5.4" + "@lerna/collect-uncommitted" "5.6.2" + "@lerna/describe-ref" "5.6.2" + "@lerna/validation-error" "5.6.2" -"@lerna/child-process@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/child-process/-/child-process-5.5.4.tgz#97a7d2c994895e56ef8a0c49716a0a692867b5aa" - integrity sha512-1QlxFASrKlV3cG7XPFolOdrS4W784zv4DgipmTxaP++VlVAwbrHhqUdIEytDV6d0rlRksf6LPYzJhXdwlBkCEQ== +"@lerna/child-process@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/child-process/-/child-process-5.6.2.tgz#4adbd09ff5a8e43b9471f1a987ae65a7d669421b" + integrity sha512-QIOQ3jIbWdduHd5892fbo3u7/dQgbhzEBB7cvf+Ys/iCPP8UQrBECi1lfRgA4kcTKC2MyMz0SoyXZz/lFcXc3A== dependencies: chalk "^4.1.0" execa "^5.0.0" strong-log-transformer "^2.1.0" -"@lerna/clean@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/clean/-/clean-5.5.4.tgz#329ecf24c5c66056f0ba96fdff1d1bc2b9bed5fe" - integrity sha512-q1fXRm6ZXo3HrFfsgyY9C83haotPT/Xa5K8fQX6GADuNLk0Xo3+ycouHeidblRLmQtCa3WNPEmCthTuaWrSUoQ== +"@lerna/clean@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/clean/-/clean-5.6.2.tgz#9611adf3e3035731af2b71aabeb850f7d16fc27d" + integrity sha512-A7j8r0Hk2pGyLUyaCmx4keNHen1L/KdcOjb4nR6X8GtTJR5AeA47a8rRKOCz9wwdyMPlo2Dau7d3RV9viv7a5g== dependencies: - "@lerna/command" "5.5.4" - "@lerna/filter-options" "5.5.4" - "@lerna/prompt" "5.5.4" - "@lerna/pulse-till-done" "5.5.4" - "@lerna/rimraf-dir" "5.5.4" + "@lerna/command" "5.6.2" + "@lerna/filter-options" "5.6.2" + "@lerna/prompt" "5.6.2" + "@lerna/pulse-till-done" "5.6.2" + "@lerna/rimraf-dir" "5.6.2" p-map "^4.0.0" p-map-series "^2.1.0" p-waterfall "^2.1.1" -"@lerna/cli@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/cli/-/cli-5.5.4.tgz#f1c31d59d9be2aaafab6b856c7858a3da98d7b82" - integrity sha512-4uJEFEN0QNnQgghbpdY5wLmBPOeUeBeCKGh9s2pc1fkn0I1wKDhG0QByOfcf+jGuid2bA7DXzvJRXRgq0fWw0A== +"@lerna/cli@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/cli/-/cli-5.6.2.tgz#87a3dea0f066fa4b01c38ab191f316885dfe9fcd" + integrity sha512-w0NRIEqDOmYKlA5t0iyqx0hbY7zcozvApmfvwF0lhkuhf3k6LRAFSamtimGQWicC779a7J2NXw4ASuBV47Fs1Q== dependencies: - "@lerna/global-options" "5.5.4" + "@lerna/global-options" "5.6.2" dedent "^0.7.0" npmlog "^6.0.2" yargs "^16.2.0" -"@lerna/collect-uncommitted@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/collect-uncommitted/-/collect-uncommitted-5.5.4.tgz#cdfb5f0c1651742f72147189e38822b815e45892" - integrity sha512-xLCsp8Qx5z/BWCxqUt8W8Se2XJcCQE6YUAti9TSWD5Ar+M5Etkgz2YJiUjZfZrsWZPBCqNfGfxx9Sjs7a/r+8A== +"@lerna/collect-uncommitted@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/collect-uncommitted/-/collect-uncommitted-5.6.2.tgz#8f62d5a57c7800e9f5278897c7b254c1e3d425fe" + integrity sha512-i0jhxpypyOsW2PpPwIw4xg6EPh7/N3YuiI6P2yL7PynZ8nOv8DkIdoyMkhUP4gALjBfckH8Bj94eIaKMviqW4w== dependencies: - "@lerna/child-process" "5.5.4" + "@lerna/child-process" "5.6.2" chalk "^4.1.0" npmlog "^6.0.2" -"@lerna/collect-updates@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/collect-updates/-/collect-updates-5.5.4.tgz#424fbcb4a717eb2ed7c6a2015857d85d7e2e131f" - integrity sha512-m34bVoMO5QOd5K5uyAtQtkTiXBIEJHydXMwNXs+YTIAgy82JXNHfZE9vV63Fd5ZWOGY6ORthuXuC2Jn0Vx9tQA== +"@lerna/collect-updates@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/collect-updates/-/collect-updates-5.6.2.tgz#7dc9df48183ef35a975154182d338c64de76104f" + integrity sha512-DdTK13X6PIsh9HINiMniFeiivAizR/1FBB+hDVe6tOhsXFBfjHMw1xZhXlE+mYIoFmDm1UFK7zvQSexoaxRqFA== dependencies: - "@lerna/child-process" "5.5.4" - "@lerna/describe-ref" "5.5.4" + "@lerna/child-process" "5.6.2" + "@lerna/describe-ref" "5.6.2" minimatch "^3.0.4" npmlog "^6.0.2" slash "^3.0.0" -"@lerna/command@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/command/-/command-5.5.4.tgz#f06f6dad4b5eed05fb4b98165d054af21be79715" - integrity sha512-/7drNy2DjVjDjm2knsDfEQIFEdRgPE2/lQ3yfEjVbXqs319o6KWbQVeoNy5GjGnLvc3v3eObA0cSJXHzEV11Bg== +"@lerna/command@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/command/-/command-5.6.2.tgz#6cbb42b63c40a33565a7d39302d0e171e8e0f5b6" + integrity sha512-eLVGI9TmxcaGt1M7TXGhhBZoeWOtOedMiH7NuCGHtL6TMJ9k+SCExyx+KpNmE6ImyNOzws6EvYLPLjftiqmoaA== dependencies: - "@lerna/child-process" "5.5.4" - "@lerna/package-graph" "5.5.4" - "@lerna/project" "5.5.4" - "@lerna/validation-error" "5.5.4" - "@lerna/write-log-file" "5.5.4" + "@lerna/child-process" "5.6.2" + "@lerna/package-graph" "5.6.2" + "@lerna/project" "5.6.2" + "@lerna/validation-error" "5.6.2" + "@lerna/write-log-file" "5.6.2" clone-deep "^4.0.1" dedent "^0.7.0" execa "^5.0.0" is-ci "^2.0.0" npmlog "^6.0.2" -"@lerna/conventional-commits@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/conventional-commits/-/conventional-commits-5.5.4.tgz#d4fbc9240ec95bc73395b87b2e778cb95ac57b36" - integrity sha512-zLcaveLXnIDYo3e9ChKsHSxiG7vOJeKdcoC5Fj8WH4DjAq/aqy15TE5SJr6aO8hOU/ph0EonPwyQBf4X2Lg5fg== +"@lerna/conventional-commits@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/conventional-commits/-/conventional-commits-5.6.2.tgz#23f1a86ab79e48609c98a572eb59a705d7f0512f" + integrity sha512-fPrJpYJhxCgY2uyOCTcAAC6+T6lUAtpEGxLbjWHWTb13oKKEygp9THoFpe6SbAD0fYMb3jeZCZCqNofM62rmuA== dependencies: - "@lerna/validation-error" "5.5.4" + "@lerna/validation-error" "5.6.2" conventional-changelog-angular "^5.0.12" conventional-changelog-core "^4.2.4" conventional-recommended-bump "^6.1.0" @@ -3128,27 +3138,26 @@ pify "^5.0.0" semver "^7.3.4" -"@lerna/create-symlink@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/create-symlink/-/create-symlink-5.5.4.tgz#91314744a715ad0ef4d330d0b4cf30cadd052025" - integrity sha512-TOfkeEQGhE90mvtky0Vpfl+6hwBz0tSXV0+gjRBmla/sYU/9+QoSH36TauHrmu/O3C8/CWtoGruxiWq8jP6Gyw== +"@lerna/create-symlink@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/create-symlink/-/create-symlink-5.6.2.tgz#9bd327128e30a144ef50a45242433a2325081391" + integrity sha512-0WIs3P6ohPVh2+t5axrLZDE5Dt7fe3Kv0Auj0sBiBd6MmKZ2oS76apIl0Bspdbv8jX8+TRKGv6ib0280D0dtEw== dependencies: cmd-shim "^5.0.0" fs-extra "^9.1.0" npmlog "^6.0.2" -"@lerna/create@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/create/-/create-5.5.4.tgz#defb6bc3ab263bf8acbbfc34407a4de23cd2594f" - integrity sha512-mmZKy5U4OKBr/r8Tm6C8gubYHubQaHdPJ+aYuA/l4uCfK0p/Jly84Fy7M3kclcqm8FKDPKDhlp0Y2jnc32jBbA== +"@lerna/create@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/create/-/create-5.6.2.tgz#2c2e4b089cd8426cd256c6b0a0df5e676aa3503a" + integrity sha512-+Y5cMUxMNXjTTU9IHpgRYIwKo39w+blui1P+s+qYlZUSCUAew0xNpOBG8iN0Nc5X9op4U094oIdHxv7Dyz6tWQ== dependencies: - "@lerna/child-process" "5.5.4" - "@lerna/command" "5.5.4" - "@lerna/npm-conf" "5.5.4" - "@lerna/validation-error" "5.5.4" + "@lerna/child-process" "5.6.2" + "@lerna/command" "5.6.2" + "@lerna/npm-conf" "5.6.2" + "@lerna/validation-error" "5.6.2" dedent "^0.7.0" fs-extra "^9.1.0" - globby "^11.0.2" init-package-json "^3.0.2" npm-package-arg "8.1.1" p-reduce "^2.1.0" @@ -3160,218 +3169,218 @@ validate-npm-package-name "^4.0.0" yargs-parser "20.2.4" -"@lerna/describe-ref@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/describe-ref/-/describe-ref-5.5.4.tgz#8b5dc90b5570e6646ca813fe4006e06408acfb05" - integrity sha512-2LDEsuSbZTta7SuwKVo9ofeKvxqy4YFNOjEt7+JceZIfh4si3MjIPBX7l8AsCaUmwJnpOEYba0aau72AUAOtoA== +"@lerna/describe-ref@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/describe-ref/-/describe-ref-5.6.2.tgz#8beb9884b59c419c67cec935cd90c08704e4c9b0" + integrity sha512-UqU0N77aT1W8duYGir7R+Sk3jsY/c4lhcCEcnayMpFScMbAp0ETGsW04cYsHK29sgg+ZCc5zEwebBqabWhMhnA== dependencies: - "@lerna/child-process" "5.5.4" + "@lerna/child-process" "5.6.2" npmlog "^6.0.2" -"@lerna/diff@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/diff/-/diff-5.5.4.tgz#21344bd0fb5d2578b7873b16959ceee6eee4e512" - integrity sha512-OTieqJA4zKAV0KeG0nXwPnCkwg3LH+ucXlelnj1w+gaP2ndHbJVwgUWXGpqCHk8tn935KKOULhP7BGmAwvTYlQ== +"@lerna/diff@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/diff/-/diff-5.6.2.tgz#059f62c95e08a506574e0e66044934a395e15b11" + integrity sha512-aHKzKvUvUI8vOcshC2Za/bdz+plM3r/ycqUrPqaERzp+kc1pYHyPeXezydVdEmgmmwmyKI5hx4+2QNnzOnun2A== dependencies: - "@lerna/child-process" "5.5.4" - "@lerna/command" "5.5.4" - "@lerna/validation-error" "5.5.4" + "@lerna/child-process" "5.6.2" + "@lerna/command" "5.6.2" + "@lerna/validation-error" "5.6.2" npmlog "^6.0.2" -"@lerna/exec@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/exec/-/exec-5.5.4.tgz#7ff09f9c786bf66ade7bf4823f60a4feab3b267c" - integrity sha512-o1SQ+6/U6L8hih6+wAgjyOhqo2CKzMcW6YWLs5erRY9E6VCEc2kX7SW3223ehsAhUIPfG7n+KYPmuZbWvTpbGQ== - dependencies: - "@lerna/child-process" "5.5.4" - "@lerna/command" "5.5.4" - "@lerna/filter-options" "5.5.4" - "@lerna/profiler" "5.5.4" - "@lerna/run-topologically" "5.5.4" - "@lerna/validation-error" "5.5.4" +"@lerna/exec@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/exec/-/exec-5.6.2.tgz#b4edee66e26760de28bbf8472993ae8ad7508073" + integrity sha512-meZozok5stK7S0oAVn+kdbTmU+kHj9GTXjW7V8kgwG9ld+JJMTH3nKK1L3mEKyk9TFu9vFWyEOF7HNK6yEOoVg== + dependencies: + "@lerna/child-process" "5.6.2" + "@lerna/command" "5.6.2" + "@lerna/filter-options" "5.6.2" + "@lerna/profiler" "5.6.2" + "@lerna/run-topologically" "5.6.2" + "@lerna/validation-error" "5.6.2" p-map "^4.0.0" -"@lerna/filter-options@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/filter-options/-/filter-options-5.5.4.tgz#c25ee6abb2eb2610d1da390911eafbfddecedf68" - integrity sha512-t1amUypgloaKN8d3VN7GiJQd4ommDplxSisAMS8hztb6ail3EbxasRQ03GXz4+6yQ98sam+D03soqSWAJcinrw== +"@lerna/filter-options@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/filter-options/-/filter-options-5.6.2.tgz#0201d3aaf71eb7d7f8b1d28193218710c3220aa0" + integrity sha512-4Z0HIhPak2TabTsUqEBQaQeOqgqEt0qyskvsY0oviYvqP/nrJfJBZh4H93jIiNQF59LJCn5Ce3KJJrLExxjlzw== dependencies: - "@lerna/collect-updates" "5.5.4" - "@lerna/filter-packages" "5.5.4" + "@lerna/collect-updates" "5.6.2" + "@lerna/filter-packages" "5.6.2" dedent "^0.7.0" npmlog "^6.0.2" -"@lerna/filter-packages@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/filter-packages/-/filter-packages-5.5.4.tgz#7f07fe9afb4eacc43fec67c82c9e4acb33b393a7" - integrity sha512-mwpiF+L0np003AUp3ntKEFkNOXWBONwm9q8rW9TOR8OeqMXbxYWGLg2IR+Wc8EClmen79tahn076nUD85OLqew== +"@lerna/filter-packages@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/filter-packages/-/filter-packages-5.6.2.tgz#1118a9318f3e08f9e21fb03d23f91e1f77f4a72a" + integrity sha512-el9V2lTEG0Bbz+Omo45hATkRVnChCTJhcTpth19cMJ6mQ4M5H4IgbWCJdFMBi/RpTnOhz9BhJxDbj95kuIvvzw== dependencies: - "@lerna/validation-error" "5.5.4" + "@lerna/validation-error" "5.6.2" multimatch "^5.0.0" npmlog "^6.0.2" -"@lerna/get-npm-exec-opts@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/get-npm-exec-opts/-/get-npm-exec-opts-5.5.4.tgz#8c1b19a364071350a305f9da50a6b851ced1fc6f" - integrity sha512-PLvSdt0woeOz3TZDHRshYVR9TSOUNunxZ4mE8f0tg9FPQ5R1uuwd2BF4HmEL7AlWFtFS+sOwuL9bI1btV1ELew== +"@lerna/get-npm-exec-opts@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/get-npm-exec-opts/-/get-npm-exec-opts-5.6.2.tgz#a5e1a93f62eba817961210b7be148c0768ee4eee" + integrity sha512-0RbSDJ+QC9D5UWZJh3DN7mBIU1NhBmdHOE289oHSkjDY+uEjdzMPkEUy+wZ8fCzMLFnnNQkAEqNaOAzZ7dmFLA== dependencies: npmlog "^6.0.2" -"@lerna/get-packed@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/get-packed/-/get-packed-5.5.4.tgz#2aa2772a6c90bdb1335b79d6c9058fca73a74505" - integrity sha512-BXQcQ5rfdIa8hkDd4UdETWs9mDiFvmBRpSNxpgaRiuL1w7AXEaMREQgKOFiv8fv/e+z/F0SXD048Fptj8d5pjA== +"@lerna/get-packed@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/get-packed/-/get-packed-5.6.2.tgz#cc5008008442ae00cfa5ed9484e76a44d48e37b6" + integrity sha512-pp5nNDmtrtd21aKHjwwOY5CS7XNIHxINzGa+Jholn1jMDYUtdskpN++ZqYbATGpW831++NJuiuBVyqAWi9xbXg== dependencies: fs-extra "^9.1.0" ssri "^9.0.1" tar "^6.1.0" -"@lerna/github-client@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/github-client/-/github-client-5.5.4.tgz#9ff47636e57514fb8d44678ad64664c932868d79" - integrity sha512-m5vTRsHyfzh16T3fX3ipdjZyQwl4Gnwav4RmEaVUFp2uMqsr0TrML7LJ/eqOqjGvj/+JWa52rIQsUCQe9BJYag== +"@lerna/github-client@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/github-client/-/github-client-5.6.2.tgz#b40a71ddf5d40aefe178a48713aa107ef735f056" + integrity sha512-pjALazZoRZtKqfwLBwmW3HPptVhQm54PvA8s3qhCQ+3JkqrZiIFwkkxNZxs3jwzr+aaSOzfhSzCndg0urb0GXA== dependencies: - "@lerna/child-process" "5.5.4" + "@lerna/child-process" "5.6.2" "@octokit/plugin-enterprise-rest" "^6.0.1" "@octokit/rest" "^19.0.3" git-url-parse "^13.1.0" npmlog "^6.0.2" -"@lerna/gitlab-client@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/gitlab-client/-/gitlab-client-5.5.4.tgz#e18a479e8f2f3ce0ecfa1e0d4f0a16d646809bba" - integrity sha512-vPSr6xFxtOigFY/fE8oYF+360WsV+g2ZkoJB34FA6UucjWBBPu2W13ydUYfqvJYODJYFzhTjB9b8zf0MJ0KMrQ== +"@lerna/gitlab-client@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/gitlab-client/-/gitlab-client-5.6.2.tgz#3bb3c350d28f38f719ddbba083ca28dbd353494e" + integrity sha512-TInJmbrsmYIwUyrRxytjO82KjJbRwm67F7LoZs1shAq6rMvNqi4NxSY9j+hT/939alFmEq1zssoy/caeLXHRfQ== dependencies: node-fetch "^2.6.1" npmlog "^6.0.2" -"@lerna/global-options@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/global-options/-/global-options-5.5.4.tgz#ed2daee879205255b4667921d6c91a4e2c04dda8" - integrity sha512-J2K4CsnYuKrW7bDR2gRABUFFrLaJ5z4GaaDpaKtQi6sHFKcVBfYz0B51Fe3NGFOvrct4YS9N7SgKDxPd5Nznig== +"@lerna/global-options@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/global-options/-/global-options-5.6.2.tgz#30bec81cdb4ac0bb47588e4a502ce908a982ff7c" + integrity sha512-kaKELURXTlczthNJskdOvh6GGMyt24qat0xMoJZ8plYMdofJfhz24h1OFcvB/EwCUwP/XV1+ohE5P+vdktbrEg== -"@lerna/has-npm-version@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/has-npm-version/-/has-npm-version-5.5.4.tgz#32655bdf0d7deeb7de78ebc4e978ecc02b18bf91" - integrity sha512-l+nDc/QYvfA5f0tFxzd9mZ/SP0nfxbqpZ9csGyqU8NV/40fHRRouO+fcLtxjcG/mruMjiAB/P216BBbRmGb2VA== +"@lerna/has-npm-version@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/has-npm-version/-/has-npm-version-5.6.2.tgz#5359e9870941f66fb3b859995120801800880944" + integrity sha512-kXCnSzffmTWsaK0ol30coyCfO8WH26HFbmJjRBzKv7VGkuAIcB6gX2gqRRgNLLlvI+Yrp+JSlpVNVnu15SEH2g== dependencies: - "@lerna/child-process" "5.5.4" + "@lerna/child-process" "5.6.2" semver "^7.3.4" -"@lerna/import@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/import/-/import-5.5.4.tgz#b0e07b54c13c786eac4a7639cc0db80ff1f952c6" - integrity sha512-1edy4e+0w4/awahc3uPvRQngIHbri5BGZZbjvsX8aKlPUd9pFg5U9/5w3lVE5jnZFRnqwhpJyyvJjL2M5F6IgQ== +"@lerna/import@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/import/-/import-5.6.2.tgz#7be2321fbc41fa0f7fdd233eb62571e8418fcb75" + integrity sha512-xQUE49mtcP0z3KUdXBsyvp8rGDz6phuYUoQbhcFRJ7WPcQKzMvtm0XYrER6c2YWEX7QOuDac6tU82P8zTrTBaA== dependencies: - "@lerna/child-process" "5.5.4" - "@lerna/command" "5.5.4" - "@lerna/prompt" "5.5.4" - "@lerna/pulse-till-done" "5.5.4" - "@lerna/validation-error" "5.5.4" + "@lerna/child-process" "5.6.2" + "@lerna/command" "5.6.2" + "@lerna/prompt" "5.6.2" + "@lerna/pulse-till-done" "5.6.2" + "@lerna/validation-error" "5.6.2" dedent "^0.7.0" fs-extra "^9.1.0" p-map-series "^2.1.0" -"@lerna/info@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/info/-/info-5.5.4.tgz#c0bb38a5d97f60019278a49ee324a3be804b9baa" - integrity sha512-JgYRP2WZUCuiYyf3CQjqEMGoqWpM7t/bammKW/sC3P0/xGSykh45vdRwVojcu4fGRZ/YS7sfFt28Dbw4QFp0iQ== +"@lerna/info@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/info/-/info-5.6.2.tgz#82280cdae6e08aab5b3017c359f6e496116a62ae" + integrity sha512-MPjY5Olj+fiZHgfEdwXUFRKamdEuLr9Ob/qut8JsB/oQSQ4ALdQfnrOcMT8lJIcC2R67EA5yav2lHPBIkezm8A== dependencies: - "@lerna/command" "5.5.4" - "@lerna/output" "5.5.4" + "@lerna/command" "5.6.2" + "@lerna/output" "5.6.2" envinfo "^7.7.4" -"@lerna/init@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/init/-/init-5.5.4.tgz#78142ec262e5d54c0ced716239c39acd2c2cf821" - integrity sha512-BteH3O8ywUN8eBhwzOey3gTXxxKRxGz1JJ6tP1mA0KZoJgiBsSFoZbx7SJeGrR8gY7kmEyvXTY1geaxmb7V+vQ== +"@lerna/init@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/init/-/init-5.6.2.tgz#8f92868c3f9081245f5a8e0b94ce6b5979b8541e" + integrity sha512-ahU3/lgF+J8kdJAQysihFJROHthkIDXfHmvhw7AYnzf94HjxGNXj7nz6i3At1/dM/1nQhR+4/uNR1/OU4tTYYQ== dependencies: - "@lerna/child-process" "5.5.4" - "@lerna/command" "5.5.4" - "@lerna/project" "5.5.4" + "@lerna/child-process" "5.6.2" + "@lerna/command" "5.6.2" + "@lerna/project" "5.6.2" fs-extra "^9.1.0" p-map "^4.0.0" write-json-file "^4.3.0" -"@lerna/link@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/link/-/link-5.5.4.tgz#5bd2097ab123f6034b470626d220bd5ce03cbc77" - integrity sha512-/kFST918MLhvWbs3szbUw3/6pPa0/vS77WnHk8n3S3v/PuzUEjm9CncYrZ0xB1ZiGk6oa4YTPWMlqyYMY1k0hQ== +"@lerna/link@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/link/-/link-5.6.2.tgz#6af5addff89cd455c1837a47a36f430a2c6ae6a5" + integrity sha512-hXxQ4R3z6rUF1v2x62oIzLyeHL96u7ZBhxqYMJrm763D1VMSDcHKF9CjJfc6J9vH5Z2ZbL6CQg50Hw5mUpJbjg== dependencies: - "@lerna/command" "5.5.4" - "@lerna/package-graph" "5.5.4" - "@lerna/symlink-dependencies" "5.5.4" - "@lerna/validation-error" "5.5.4" + "@lerna/command" "5.6.2" + "@lerna/package-graph" "5.6.2" + "@lerna/symlink-dependencies" "5.6.2" + "@lerna/validation-error" "5.6.2" p-map "^4.0.0" slash "^3.0.0" -"@lerna/list@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/list/-/list-5.5.4.tgz#fd27a69118e6ed515149fd77690ce6ecc3058456" - integrity sha512-ppLy99mQYoDkO+SxqnknPYqOnO+iJskb0G2h2fLF4ZK98oy2duJWkkehagwCVtmPax/DqWDDc/IAj+KWpcC0bQ== +"@lerna/list@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/list/-/list-5.6.2.tgz#5fdf8c678891eacef1d90afb84fb461deb6bb662" + integrity sha512-WjE5O2tQ3TcS+8LqXUaxi0YdldhxUhNihT5+Gg4vzGdIlrPDioO50Zjo9d8jOU7i3LMIk6EzCma0sZr2CVfEGg== dependencies: - "@lerna/command" "5.5.4" - "@lerna/filter-options" "5.5.4" - "@lerna/listable" "5.5.4" - "@lerna/output" "5.5.4" + "@lerna/command" "5.6.2" + "@lerna/filter-options" "5.6.2" + "@lerna/listable" "5.6.2" + "@lerna/output" "5.6.2" -"@lerna/listable@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/listable/-/listable-5.5.4.tgz#eff0720d5c01f734933b95dd8b2161d3126dc487" - integrity sha512-c6acWwSDQE5zeBcnH3m+mwfDr3zr515LsC30tXRenkqp4lbXeyrUPw0Mckw1ksw2nyb5LZl8gQnrFbAKC8gBSA== +"@lerna/listable@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/listable/-/listable-5.6.2.tgz#1a35e8da081f2dc286647cbf4a4a7fb3c7fb1102" + integrity sha512-8Yp49BwkY/5XqVru38Zko+6Wj/sgbwzJfIGEPy3Qu575r1NA/b9eI1gX22aMsEeXUeGOybR7nWT5ewnPQHjqvA== dependencies: - "@lerna/query-graph" "5.5.4" + "@lerna/query-graph" "5.6.2" chalk "^4.1.0" columnify "^1.6.0" -"@lerna/log-packed@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/log-packed/-/log-packed-5.5.4.tgz#0f0285445aadf3289148af7949f2cd61a21ff553" - integrity sha512-g3lW5yIIe66aVTOYn78+h21GR9gr/WdU3/z8jm0VzGC+VR7KqCKU+49JOCOh7LlNf7sY4ZE6ZbaZptp5wUjrgQ== +"@lerna/log-packed@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/log-packed/-/log-packed-5.6.2.tgz#05d26f038ce64e8ce8395c1745dfeb7589f89790" + integrity sha512-O9GODG7tMtWk+2fufn2MOkIDBYMRoKBhYMHshO5Aw/VIsH76DIxpX1koMzWfUngM/C70R4uNAKcVWineX4qzIw== dependencies: byte-size "^7.0.0" columnify "^1.6.0" has-unicode "^2.0.1" npmlog "^6.0.2" -"@lerna/npm-conf@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/npm-conf/-/npm-conf-5.5.4.tgz#642438b68dbd98af1189fb85646d3e0ca24b3741" - integrity sha512-BwnP0ezR84nQ5Sh0CdH77Q8evDcqP9bFUdjX6eZT4Rxl0432ocB1YpweNnUDQO4Boxj/FiOu/OaE0Kej+I+5ew== +"@lerna/npm-conf@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/npm-conf/-/npm-conf-5.6.2.tgz#3b72fc528c8a1cd0acc9b277749a6153bd8de083" + integrity sha512-gWDPhw1wjXYXphk/PAghTLexO5T6abVFhXb+KOMCeem366mY0F5bM88PiorL73aErTNUoR8n+V4X29NTZzDZpQ== dependencies: config-chain "^1.1.12" pify "^5.0.0" -"@lerna/npm-dist-tag@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/npm-dist-tag/-/npm-dist-tag-5.5.4.tgz#2ed3ad80af572bfdcf631f8271e59240d72e011b" - integrity sha512-aAisCh5b2+6cjLxZh03/MGGcBjL7KNBWi5qW6OCdQQpcxH5r0aUJ5F1rmXJE0qxgsLWaGRLzngWk+v6VJHqYJQ== +"@lerna/npm-dist-tag@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/npm-dist-tag/-/npm-dist-tag-5.6.2.tgz#6115aa4b005b57520d76428926ee7d12030f5e53" + integrity sha512-t2RmxV6Eog4acXkUI+EzWuYVbeVVY139pANIWS9qtdajfgp4GVXZi1S8mAIb70yeHdNpCp1mhK0xpCrFH9LvGQ== dependencies: - "@lerna/otplease" "5.5.4" + "@lerna/otplease" "5.6.2" npm-package-arg "8.1.1" npm-registry-fetch "^13.3.0" npmlog "^6.0.2" -"@lerna/npm-install@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/npm-install/-/npm-install-5.5.4.tgz#0b801d16d04cf2c9c6c114ec0b188ad190c63775" - integrity sha512-lglf2KRxg30dCvNWwxQRJmCfXC51byNqYQt9/dFrnWcotHwpNRIFnVM3tWMdVxlwJMiozU/PjUFBateaxmukXw== +"@lerna/npm-install@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/npm-install/-/npm-install-5.6.2.tgz#d5bd1e10c1c31f69a9ca5351b0cbe72dbc288dc2" + integrity sha512-AT226zdEo+uGENd37jwYgdALKJAIJK4pNOfmXWZWzVb9oMOr8I2YSjPYvSYUNG7gOo2YJQU8x5Zd7OShv2924Q== dependencies: - "@lerna/child-process" "5.5.4" - "@lerna/get-npm-exec-opts" "5.5.4" + "@lerna/child-process" "5.6.2" + "@lerna/get-npm-exec-opts" "5.6.2" fs-extra "^9.1.0" npm-package-arg "8.1.1" npmlog "^6.0.2" signal-exit "^3.0.3" write-pkg "^4.0.0" -"@lerna/npm-publish@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/npm-publish/-/npm-publish-5.5.4.tgz#fbdcadf5bedf91bbd33ddca79e742262f8b72465" - integrity sha512-Z3GQqby0FR7HW82/t7j7nOF9pfSwNVmgms0zTq7a8YaEe8uDlAxGMW4sVN8uT89mZfBfS6R1WMlBbC5Ea+jy/A== +"@lerna/npm-publish@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/npm-publish/-/npm-publish-5.6.2.tgz#4e5e225b47589a7f8f96b7eee68b547e8ce432a2" + integrity sha512-ldSyewCfv9fAeC5xNjL0HKGSUxcC048EJoe/B+KRUmd+IPidvZxMEzRu08lSC/q3V9YeUv9ZvRnxATXOM8CffA== dependencies: - "@lerna/otplease" "5.5.4" - "@lerna/run-lifecycle" "5.5.4" + "@lerna/otplease" "5.6.2" + "@lerna/run-lifecycle" "5.6.2" fs-extra "^9.1.0" libnpmpublish "^6.0.4" npm-package-arg "8.1.1" @@ -3379,85 +3388,85 @@ pify "^5.0.0" read-package-json "^5.0.1" -"@lerna/npm-run-script@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/npm-run-script/-/npm-run-script-5.5.4.tgz#88dc25d81b5263d85443b570d06f1c87df38c58a" - integrity sha512-fwHZRTGUldN9D2Rugg0HdwE8A8OZ7CF7g63y7OjzIoxASqtZBDyHZgrVbY/xZcrhqCF0+VJ1vR0c/uFwtWFrtA== +"@lerna/npm-run-script@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/npm-run-script/-/npm-run-script-5.6.2.tgz#66e3391ebdd6136312277be37a1b62ce48c12abf" + integrity sha512-MOQoWNcAyJivM8SYp0zELM7vg/Dj07j4YMdxZkey+S1UO0T4/vKBxb575o16hH4WeNzC3Pd7WBlb7C8dLOfNwQ== dependencies: - "@lerna/child-process" "5.5.4" - "@lerna/get-npm-exec-opts" "5.5.4" + "@lerna/child-process" "5.6.2" + "@lerna/get-npm-exec-opts" "5.6.2" npmlog "^6.0.2" -"@lerna/otplease@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/otplease/-/otplease-5.5.4.tgz#8b1f5af43e3e99131ca6077ac6f9c274733a6a77" - integrity sha512-c/tSjuMGw0esoxqtW0Qs2gCcvFDCrOlFnd4EgTJQKUSbNwVrabMkDJRMP0zu7UiSYJCCWKlBnjpBCiBXNG2H4A== +"@lerna/otplease@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/otplease/-/otplease-5.6.2.tgz#a94e4daf9d3d42bfc0366a6889b8809ed32dbdd0" + integrity sha512-dGS4lzkEQVTMAgji82jp8RK6UK32wlzrBAO4P4iiVHCUTuwNLsY9oeBXvVXSMrosJnl6Hbe0NOvi43mqSucGoA== dependencies: - "@lerna/prompt" "5.5.4" + "@lerna/prompt" "5.6.2" -"@lerna/output@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/output/-/output-5.5.4.tgz#22c9d78a39b7062c90fd1a1e0050a4129dc9c239" - integrity sha512-qiYtDQ4k9sXzXRlbSuLUFDNLk42sJY3n7x7fWKt6v5I9s2uh5d3cBctBuvV8+YX82H1inQ9hpyFafzOBO8tbCA== +"@lerna/output@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/output/-/output-5.6.2.tgz#fa97315d16cfe005a2891a3fc98f6f4fd3f518ed" + integrity sha512-++d+bfOQwY66yo7q1XuAvRcqtRHCG45e/awP5xQomTZ6R1rhWiZ3whWdc9Z6lF7+UtBB9toSYYffKU/xc3L0yQ== dependencies: npmlog "^6.0.2" -"@lerna/pack-directory@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/pack-directory/-/pack-directory-5.5.4.tgz#987dba5049a57fd822412e9a1770dab9f4da314c" - integrity sha512-yUhu8ADzUZOZPfimMwlxxuxIweXitMKTVAmhz9eruiNHxsc0GpKb89yemep03iXqtrjC1Pt/QsS+dhJNNKdZ4A== +"@lerna/pack-directory@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/pack-directory/-/pack-directory-5.6.2.tgz#ced0287d13d8575fe928ad7d9ad92dc6554cc86d" + integrity sha512-w5Jk5fo+HkN4Le7WMOudTcmAymcf0xPd302TqAQncjXpk0cb8tZbj+5bbNHsGb58GRjOIm5icQbHXooQUxbHhA== dependencies: - "@lerna/get-packed" "5.5.4" - "@lerna/package" "5.5.4" - "@lerna/run-lifecycle" "5.5.4" - "@lerna/temp-write" "5.5.4" + "@lerna/get-packed" "5.6.2" + "@lerna/package" "5.6.2" + "@lerna/run-lifecycle" "5.6.2" + "@lerna/temp-write" "5.6.2" npm-packlist "^5.1.1" npmlog "^6.0.2" tar "^6.1.0" -"@lerna/package-graph@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/package-graph/-/package-graph-5.5.4.tgz#32abce3e23e09017f5323f2704d9544ffcb1ccbf" - integrity sha512-1g0c08mooZBtrIG8gMOdpbZ3rn5VM+e47pLFAXZcfGUaNUfc0OM58Z50ONiJq23XlJmS4vQ2e4X3cs7Hc7+Dxw== +"@lerna/package-graph@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/package-graph/-/package-graph-5.6.2.tgz#cb0a70b83afc418c5b5363bb96746d501decdbeb" + integrity sha512-TmL61qBBvA3Tc4qICDirZzdFFwWOA6qicIXUruLiE2PblRowRmCO1bKrrP6XbDOspzwrkPef6N2F2/5gHQAnkQ== dependencies: - "@lerna/prerelease-id-from-version" "5.5.4" - "@lerna/validation-error" "5.5.4" + "@lerna/prerelease-id-from-version" "5.6.2" + "@lerna/validation-error" "5.6.2" npm-package-arg "8.1.1" npmlog "^6.0.2" semver "^7.3.4" -"@lerna/package@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/package/-/package-5.5.4.tgz#815c35a8f5a12a6f91f3a0314178f198ffcbc1c5" - integrity sha512-wpBcq4zVFVQOJI9QT0TJItRjl6jGSGFp93n4D8KHXXiyeKmN9CW4EnwFY9bnT3r5OteZN+eorD6r2TnRe8VPDg== +"@lerna/package@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/package/-/package-5.6.2.tgz#da73b350693fdd4154cf5b19799bfaadff57442e" + integrity sha512-LaOC8moyM5J9WnRiWZkedjOninSclBOJyPqhif6mHb2kCFX6jAroNYzE8KM4cphu8CunHuhI6Ixzswtv+Dultw== dependencies: load-json-file "^6.2.0" npm-package-arg "8.1.1" write-pkg "^4.0.0" -"@lerna/prerelease-id-from-version@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/prerelease-id-from-version/-/prerelease-id-from-version-5.5.4.tgz#ba17e53051b15cfe7ba9c98e75abd5644559f8a7" - integrity sha512-IHNQxbILrRGhw9CCdqy0ncSjDpNvdJCcaGFh3+TJRx6Bjhl5ifbUjI0gBUxd7i5Aict5dguWlhAWHQpef48AqA== +"@lerna/prerelease-id-from-version@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/prerelease-id-from-version/-/prerelease-id-from-version-5.6.2.tgz#63002662024a261310c6fbf01a50cb5f50569ca8" + integrity sha512-7gIm9fecWFVNy2kpj/KbH11bRcpyANAwpsft3X5m6J7y7A6FTUscCbEvl3ZNdpQKHNuvnHgCtkm3A5PMSCEgkA== dependencies: semver "^7.3.4" -"@lerna/profiler@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/profiler/-/profiler-5.5.4.tgz#2082a05c4aecee0bd567a5069efb09511212f4c6" - integrity sha512-LPnO8mXhXSBT8PD5pEWkgd+2d8lJqQ0fnwcIPG0B8o6tnQrSc2gXLNxStYOFedzcZXRhAYiFVrf5VjOKHV6Ghw== +"@lerna/profiler@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/profiler/-/profiler-5.6.2.tgz#5bfd52fb666ad0506cac3b8d2839e904d0acf90a" + integrity sha512-okwkagP5zyRIOYTceu/9/esW7UZFt7lyL6q6ZgpSG3TYC5Ay+FXLtS6Xiha/FQdVdumFqKULDWTGovzUlxcwaw== dependencies: fs-extra "^9.1.0" npmlog "^6.0.2" upath "^2.0.1" -"@lerna/project@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/project/-/project-5.5.4.tgz#184d13b0b47187bed5fa6a6227c2a0abf6060fda" - integrity sha512-iLdyc+jPU0cR6BQO3V3Sf51WP3Oac+I/+518dIGdWS7ot9nEbjuZripHJjIkyZKSfnKPTEtz2aUta0ndoewwuQ== +"@lerna/project@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/project/-/project-5.6.2.tgz#a893851cdceeace36d30fdfdbc2da9159a9e2041" + integrity sha512-kPIMcIy/0DVWM91FPMMFmXyAnCuuLm3NdhnA8NusE//VuY9wC6QC/3OwuCY39b2dbko/fPZheqKeAZkkMH6sGg== dependencies: - "@lerna/package" "5.5.4" - "@lerna/validation-error" "5.5.4" + "@lerna/package" "5.6.2" + "@lerna/validation-error" "5.6.2" cosmiconfig "^7.0.0" dedent "^0.7.0" dot-prop "^6.0.1" @@ -3470,38 +3479,38 @@ resolve-from "^5.0.0" write-json-file "^4.3.0" -"@lerna/prompt@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/prompt/-/prompt-5.5.4.tgz#3b61a9ba3996c0cf3926671e8f9a15189b9b9ef4" - integrity sha512-X8H2V4dDkFLYzZkMTillvuGAphU5fTDR66HgZlhgKtbJjm7OrjxhoRdk/YlMpI+HdYwXhdUzhEe9YJEhqhfe6w== +"@lerna/prompt@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/prompt/-/prompt-5.6.2.tgz#7ea10fd3543aced0bf5521741808d86ffcf4b320" + integrity sha512-4hTNmVYADEr0GJTMegWV+GW6n+dzKx1vN9v2ISqyle283Myv930WxuyO0PeYGqTrkneJsyPreCMovuEGCvZ0iQ== dependencies: inquirer "^8.2.4" npmlog "^6.0.2" -"@lerna/publish@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/publish/-/publish-5.5.4.tgz#73dceae590815e096d3410c98f07ba01a7bccbc1" - integrity sha512-zBlZsk+NBUfg4o7ycKH8/hc4NRJWd4RmxB6Kn7xo7MOJMW3x+K4aABcqY2GGxEMUxx3rBBVPIdziVWbyS7UIxA== - dependencies: - "@lerna/check-working-tree" "5.5.4" - "@lerna/child-process" "5.5.4" - "@lerna/collect-updates" "5.5.4" - "@lerna/command" "5.5.4" - "@lerna/describe-ref" "5.5.4" - "@lerna/log-packed" "5.5.4" - "@lerna/npm-conf" "5.5.4" - "@lerna/npm-dist-tag" "5.5.4" - "@lerna/npm-publish" "5.5.4" - "@lerna/otplease" "5.5.4" - "@lerna/output" "5.5.4" - "@lerna/pack-directory" "5.5.4" - "@lerna/prerelease-id-from-version" "5.5.4" - "@lerna/prompt" "5.5.4" - "@lerna/pulse-till-done" "5.5.4" - "@lerna/run-lifecycle" "5.5.4" - "@lerna/run-topologically" "5.5.4" - "@lerna/validation-error" "5.5.4" - "@lerna/version" "5.5.4" +"@lerna/publish@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/publish/-/publish-5.6.2.tgz#c8a26610c4fb2c7c5a232e04852bf545b242ee65" + integrity sha512-QaW0GjMJMuWlRNjeDCjmY/vjriGSWgkLS23yu8VKNtV5U3dt5yIKA3DNGV3HgZACuu45kQxzMDsfLzgzbGNtYA== + dependencies: + "@lerna/check-working-tree" "5.6.2" + "@lerna/child-process" "5.6.2" + "@lerna/collect-updates" "5.6.2" + "@lerna/command" "5.6.2" + "@lerna/describe-ref" "5.6.2" + "@lerna/log-packed" "5.6.2" + "@lerna/npm-conf" "5.6.2" + "@lerna/npm-dist-tag" "5.6.2" + "@lerna/npm-publish" "5.6.2" + "@lerna/otplease" "5.6.2" + "@lerna/output" "5.6.2" + "@lerna/pack-directory" "5.6.2" + "@lerna/prerelease-id-from-version" "5.6.2" + "@lerna/prompt" "5.6.2" + "@lerna/pulse-till-done" "5.6.2" + "@lerna/run-lifecycle" "5.6.2" + "@lerna/run-topologically" "5.6.2" + "@lerna/validation-error" "5.6.2" + "@lerna/version" "5.6.2" fs-extra "^9.1.0" libnpmaccess "^6.0.3" npm-package-arg "8.1.1" @@ -3512,99 +3521,99 @@ pacote "^13.6.1" semver "^7.3.4" -"@lerna/pulse-till-done@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/pulse-till-done/-/pulse-till-done-5.5.4.tgz#c7fe3349a1da86534fb42bb7f858a6245e6d67e0" - integrity sha512-xC4/QPnIQfrE1aA8W5w6AfaT0gTm8SeVmrsQzMMlUTJ2JAnflsHv1oG69M89xq2DrlXsEVaah56Xbjavy+woQg== +"@lerna/pulse-till-done@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/pulse-till-done/-/pulse-till-done-5.6.2.tgz#061c4ba2894fa08333fe4502299f9f9f24bdb91c" + integrity sha512-eA/X1RCxU5YGMNZmbgPi+Kyfx1Q3bn4P9jo/LZy+/NRRr1po3ASXP2GJZ1auBh/9A2ELDvvKTOXCVHqczKC6rA== dependencies: npmlog "^6.0.2" -"@lerna/query-graph@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/query-graph/-/query-graph-5.5.4.tgz#64079526a6e483a28c0b9cda12f8444ced6016b3" - integrity sha512-TJsmJ++3NpEs+LxF0B02hAv2HigJ9ffa9e+paK27oE8sTiH3YataMHaNu5ZkeotJTw7u0IiRLm0zi4z4xoRlLg== +"@lerna/query-graph@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/query-graph/-/query-graph-5.6.2.tgz#c507e9a9cb613c6d4d163d7d115a52ef8c1a9d3f" + integrity sha512-KRngr96yBP8XYDi9/U62fnGO+ZXqm04Qk6a2HtoTr/ha8QvO1s7Tgm0xs/G7qWXDQHZgunWIbmK/LhxM7eFQrw== dependencies: - "@lerna/package-graph" "5.5.4" + "@lerna/package-graph" "5.6.2" -"@lerna/resolve-symlink@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/resolve-symlink/-/resolve-symlink-5.5.4.tgz#3711dc911193d8f1843616bf4a77e4fbf14daedf" - integrity sha512-cAIXELf04dHx/XF/2njCM0bpiyup6Nedpmm1XNJzrJuWrGmwK2qW5F2wQ/RHXWXsLIe/BsOl/hfEONm7o7k8sA== +"@lerna/resolve-symlink@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/resolve-symlink/-/resolve-symlink-5.6.2.tgz#51b6f4bbee36a1dcbf52634d05dcd08bb286f2cf" + integrity sha512-PDQy+7M8JEFtwIVHJgWvSxHkxJf9zXCENkvIWDB+SsoDPhw9+caewt46bTeP5iGm9pOMu3oZukaWo/TvF7sNjg== dependencies: fs-extra "^9.1.0" npmlog "^6.0.2" read-cmd-shim "^3.0.0" -"@lerna/rimraf-dir@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/rimraf-dir/-/rimraf-dir-5.5.4.tgz#35b1ee9cf3bca12748df4e53f7e5cef5ef845d6a" - integrity sha512-++I7ToqICE4KSqi4T8enfcou8XPZV3gmrpARVD9VW4Tz3w8BP/JijB6AJwgZKojdqQenXU7u3lLTzfepKN1iOA== +"@lerna/rimraf-dir@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/rimraf-dir/-/rimraf-dir-5.6.2.tgz#219c51a46c27b94789d683fc0424539f14505fea" + integrity sha512-jgEfzz7uBUiQKteq3G8MtJiA2D2VoKmZSSY3VSiW/tPOSXYxxSHxEsClQdCeNa6+sYrDNDT8fP6MJ3lPLjDeLA== dependencies: - "@lerna/child-process" "5.5.4" + "@lerna/child-process" "5.6.2" npmlog "^6.0.2" path-exists "^4.0.0" rimraf "^3.0.2" -"@lerna/run-lifecycle@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/run-lifecycle/-/run-lifecycle-5.5.4.tgz#e9d61d5c290402f936818ca775168a677d965ad7" - integrity sha512-MIE8HJml8gWkH5jt/5omiPr69VUMUPwvhkf6Irpg5yxIE5K4oeViVZMay2v6cPA9jAeTDCshHb7gt2EPBSsYQA== +"@lerna/run-lifecycle@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/run-lifecycle/-/run-lifecycle-5.6.2.tgz#b6954f334b40ca80caeb9e0cb7ca936222f39915" + integrity sha512-u9gGgq/50Fm8dvfcc/TSHOCAQvzLD7poVanDMhHYWOAqRDnellJEEmA1K/Yka4vZmySrzluahkry9G6jcREt+g== dependencies: - "@lerna/npm-conf" "5.5.4" + "@lerna/npm-conf" "5.6.2" "@npmcli/run-script" "^4.1.7" npmlog "^6.0.2" p-queue "^6.6.2" -"@lerna/run-topologically@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/run-topologically/-/run-topologically-5.5.4.tgz#14fdd4d40882445b9346d0e814c61eb8237687a9" - integrity sha512-p1UNHgR8sOaS40nVD0HyqwmawDXBOikIibjbJLcY2QuvWwzAGKjfWm/sAXagYjgzaPYQAhaHyOxTdGe8T+a7uQ== +"@lerna/run-topologically@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/run-topologically/-/run-topologically-5.6.2.tgz#ef00aa6751b4164ae4825244917cdd4bc2562501" + integrity sha512-QQ/jGOIsVvUg3izShWsd67RlWYh9UOH2yw97Ol1zySX9+JspCMVQrn9eKq1Pk8twQOFhT87LpT/aaxbTBgREPw== dependencies: - "@lerna/query-graph" "5.5.4" + "@lerna/query-graph" "5.6.2" p-queue "^6.6.2" -"@lerna/run@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/run/-/run-5.5.4.tgz#b7cff31b3240c7326119a9a675af2bbc16af6d2a" - integrity sha512-R9g+4nfIDgK+I4RleAJpXrStzLlUCEHR/rxH2t5LJ6DLaoKUG6oeRZsf2w/It/r2IMV1dq2xG6chs+H1o1J+Ow== - dependencies: - "@lerna/command" "5.5.4" - "@lerna/filter-options" "5.5.4" - "@lerna/npm-run-script" "5.5.4" - "@lerna/output" "5.5.4" - "@lerna/profiler" "5.5.4" - "@lerna/run-topologically" "5.5.4" - "@lerna/timer" "5.5.4" - "@lerna/validation-error" "5.5.4" +"@lerna/run@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/run/-/run-5.6.2.tgz#a964110d2fd13e4a3fe0fb4d752d0497651b26cb" + integrity sha512-c2kJxdFrNg5KOkrhmgwKKUOsfSrGNlFCe26EttufOJ3xfY0VnXlEw9rHOkTgwtu7969rfCdyaVP1qckMrF1Dgw== + dependencies: + "@lerna/command" "5.6.2" + "@lerna/filter-options" "5.6.2" + "@lerna/npm-run-script" "5.6.2" + "@lerna/output" "5.6.2" + "@lerna/profiler" "5.6.2" + "@lerna/run-topologically" "5.6.2" + "@lerna/timer" "5.6.2" + "@lerna/validation-error" "5.6.2" fs-extra "^9.1.0" p-map "^4.0.0" -"@lerna/symlink-binary@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/symlink-binary/-/symlink-binary-5.5.4.tgz#cb7e8194e7b860196aff306aa35e0db67f1b5c3a" - integrity sha512-FVhkL8KIgk0gPJV136Sl0/t3LD3qDngIRqJVNPIbATVHagkLVsuJM6+BcdWLxoMUCtwHIyWqgcXn1Oa/DVSUEA== +"@lerna/symlink-binary@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/symlink-binary/-/symlink-binary-5.6.2.tgz#f8c68273f8a4f382bc0420593815dc13027f245a" + integrity sha512-Cth+miwYyO81WAmrQbPBrLHuF+F0UUc0el5kRXLH6j5zzaRS3kMM68r40M7MmfH8m3GPi7691UARoWFEotW5jw== dependencies: - "@lerna/create-symlink" "5.5.4" - "@lerna/package" "5.5.4" + "@lerna/create-symlink" "5.6.2" + "@lerna/package" "5.6.2" fs-extra "^9.1.0" p-map "^4.0.0" -"@lerna/symlink-dependencies@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/symlink-dependencies/-/symlink-dependencies-5.5.4.tgz#99607534e239b1479209d3025988e3b2c5ccc073" - integrity sha512-BfOcATr0TreXRfIhIRvgGCT2o8uEqrwVLo8edCQICeqgju19fFn22Qmyb8LW+LMJjBUuSkpJDqqamQ6nj3Ch2A== +"@lerna/symlink-dependencies@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/symlink-dependencies/-/symlink-dependencies-5.6.2.tgz#263866a869c253db805a9a385741e8919b0aa341" + integrity sha512-dUVNQLEcjVOIQiT9OlSAKt0ykjyJPy8l9i4NJDe2/0XYaUjo8PWsxJ0vrutz27jzi2aZUy07ASmowQZEmnLHAw== dependencies: - "@lerna/create-symlink" "5.5.4" - "@lerna/resolve-symlink" "5.5.4" - "@lerna/symlink-binary" "5.5.4" + "@lerna/create-symlink" "5.6.2" + "@lerna/resolve-symlink" "5.6.2" + "@lerna/symlink-binary" "5.6.2" fs-extra "^9.1.0" p-map "^4.0.0" p-map-series "^2.1.0" -"@lerna/temp-write@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/temp-write/-/temp-write-5.5.4.tgz#02c07da23944a765d3f319f247c71e0b99b9416f" - integrity sha512-cJy9f9uSvnPxfc2a1ARapGLJXllQlJKKb0idi8aA3ylvgDA7grfKIDPdkf6cBcpPAq8aixDq9GdCZ6oLKdISeA== +"@lerna/temp-write@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/temp-write/-/temp-write-5.6.2.tgz#724fcadfe12bfaa723c1ea0fbc14804653816db0" + integrity sha512-S5ZNVTurSwWBmc9kh5alfSjmO3+BnRT6shYtOlmVIUYqWeYVYA5C1Htj322bbU4CSNCMFK6NQl4qGKL17HMuig== dependencies: graceful-fs "^4.1.15" is-stream "^2.0.0" @@ -3612,37 +3621,38 @@ temp-dir "^1.0.0" uuid "^8.3.2" -"@lerna/timer@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/timer/-/timer-5.5.4.tgz#815f054f3825a58af58518309d32e29e36fd2c8b" - integrity sha512-B3eesmrNaw64Svo2pkmCtBVIJbomegiOMrdxFkZrf8ugTKwobn3KSZZkdbN+hjq8SKpRz3XgtjAuSFUzdg8c3A== +"@lerna/timer@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/timer/-/timer-5.6.2.tgz#57de5dde716539c699f295b8a8c182dd41801b2e" + integrity sha512-AjMOiLc2B+5Nzdd9hNORetAdZ/WK8YNGX/+2ypzM68TMAPfIT5C40hMlSva9Yg4RsBz22REopXgM5s2zQd5ZQA== -"@lerna/validation-error@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/validation-error/-/validation-error-5.5.4.tgz#935018275d0005cc5e7540854815ec7404a5b129" - integrity sha512-FUC3x40zBAu0ny1AWXT38LOVRaSJkjdAv9GiYLu9sx+7T7X18q38zPFyVPIIhrrTJsNNWkro/NTA7r4/BcdvoQ== +"@lerna/validation-error@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/validation-error/-/validation-error-5.6.2.tgz#75310749d94395f009c67a8fd47e146a86ce2943" + integrity sha512-4WlDUHaa+RSJNyJRtX3gVIAPVzjZD2tle8AJ0ZYBfdZnZmG0VlB2pD1FIbOQPK8sY2h5m0cHLRvfLoLncqHvdQ== dependencies: npmlog "^6.0.2" -"@lerna/version@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/version/-/version-5.5.4.tgz#4bfe1ec09a508f5a14c325599c88a92d3bede8a4" - integrity sha512-J39m2KfhkkDzfCUjnC2+UbBrWBRs1TkrvFlHFbb8wHUOY5bs+dj5RLyUchF/VJOYFSJXr8LLQFdMPeptF2wItg== - dependencies: - "@lerna/check-working-tree" "5.5.4" - "@lerna/child-process" "5.5.4" - "@lerna/collect-updates" "5.5.4" - "@lerna/command" "5.5.4" - "@lerna/conventional-commits" "5.5.4" - "@lerna/github-client" "5.5.4" - "@lerna/gitlab-client" "5.5.4" - "@lerna/output" "5.5.4" - "@lerna/prerelease-id-from-version" "5.5.4" - "@lerna/prompt" "5.5.4" - "@lerna/run-lifecycle" "5.5.4" - "@lerna/run-topologically" "5.5.4" - "@lerna/temp-write" "5.5.4" - "@lerna/validation-error" "5.5.4" +"@lerna/version@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/version/-/version-5.6.2.tgz#211ed1c0af3be0bb6bf6f79ef0d3e8daa1266ff0" + integrity sha512-odNSR2rTbHW++xMZSQKu/F6Syrd/sUvwDLPaMKktoOSPKmycHt/eWcuQQyACdtc43Iqeu4uQd7PCLsniqOVFrw== + dependencies: + "@lerna/check-working-tree" "5.6.2" + "@lerna/child-process" "5.6.2" + "@lerna/collect-updates" "5.6.2" + "@lerna/command" "5.6.2" + "@lerna/conventional-commits" "5.6.2" + "@lerna/github-client" "5.6.2" + "@lerna/gitlab-client" "5.6.2" + "@lerna/output" "5.6.2" + "@lerna/prerelease-id-from-version" "5.6.2" + "@lerna/prompt" "5.6.2" + "@lerna/run-lifecycle" "5.6.2" + "@lerna/run-topologically" "5.6.2" + "@lerna/temp-write" "5.6.2" + "@lerna/validation-error" "5.6.2" + "@nrwl/devkit" ">=14.8.1 < 16" chalk "^4.1.0" dedent "^0.7.0" load-json-file "^6.2.0" @@ -3656,10 +3666,10 @@ slash "^3.0.0" write-json-file "^4.3.0" -"@lerna/write-log-file@5.5.4": - version "5.5.4" - resolved "https://registry.yarnpkg.com/@lerna/write-log-file/-/write-log-file-5.5.4.tgz#28d04afa813457a58c6d32d8a4b4581cbaf34d02" - integrity sha512-PDdVuWHLkMw6ygP1hKTciphmYKRDTmNJASxVlxxOv9UkZe7QQvfke0i/OXNPRZHJK7eKCtv2Zu91amE8qCjVNw== +"@lerna/write-log-file@5.6.2": + version "5.6.2" + resolved "https://registry.yarnpkg.com/@lerna/write-log-file/-/write-log-file-5.6.2.tgz#a297307c80356abe4c3cfc75664febfa4658ec31" + integrity sha512-J09l18QnWQ3sXIRwuJkjXY3+KwPR2uO5NgbZGE3GXJK1V/LzOBRMvjGAIbuQHXw25uqe7vpLUpB8drtnFrubCQ== dependencies: npmlog "^6.0.2" write-file-atomic "^4.0.1" @@ -3678,9 +3688,9 @@ "@lezer/lr" "^1.0.0" "@lezer/css@^1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@lezer/css/-/css-1.0.0.tgz#c473ea969238a36889533cb733b75539083a326d" - integrity sha512-616VqgDKumHmYIuxs3tnX1irEQmoDHgF/TlP4O5ICWwyHwLMErq+8iKVuzTkOdBqvYAVmObqThcDEAaaMJjAdg== + version "1.0.1" + resolved "https://registry.yarnpkg.com/@lezer/css/-/css-1.0.1.tgz#589d16d557024481f38dd8a036be3c3db1a199c2" + integrity sha512-kLGsbzXdp1ntzO2jDwFf+2w76EBlLiD4FKofx7tgkdqeFRoslFiMS2qqbNtAauXw8ihZ4cE5YpxSpfsKXSs5Sg== dependencies: "@lezer/highlight" "^1.0.0" "@lezer/lr" "^1.0.0" @@ -4075,19 +4085,29 @@ read-package-json-fast "^2.0.3" which "^2.0.2" -"@nrwl/cli@14.8.1": - version "14.8.1" - resolved "https://registry.yarnpkg.com/@nrwl/cli/-/cli-14.8.1.tgz#a5dda34ca32f746d1c5d744416f4b760e781129a" - integrity sha512-s2hKgfYXW77BFzpbm2zV5vb+L0Ke4G7tXXHAH6Y+OKBgMOKO8I0eceVF/tvQ1xNzwSBJSP7/pk1Bm6y1jx0V/Q== +"@nrwl/cli@14.8.4": + version "14.8.4" + resolved "https://registry.yarnpkg.com/@nrwl/cli/-/cli-14.8.4.tgz#036ccf235e23a07410addf04900e647cc83153bf" + integrity sha512-JBoMw1IUFbtahDWolv3iBWJyO3ZXHOsqUt2AvWSrKfteOCjhSfG9GdQYGlnV9ZpWAx4bDf4f7Xz5z6+DJuaONA== dependencies: - nx "14.8.1" + nx "14.8.4" -"@nrwl/tao@14.8.1": - version "14.8.1" - resolved "https://registry.yarnpkg.com/@nrwl/tao/-/tao-14.8.1.tgz#48d24b148be134263d2d739f03e83462a83815c0" - integrity sha512-4HfYTollo0njRkFOhm94rmlI7Dra7OC53jMQu0LYc7hZ6rNhb1TVNlf1cu54bQaGs/EW9l0tlBJbWYV66NUX+g== +"@nrwl/devkit@>=14.8.1 < 16": + version "14.8.4" + resolved "https://registry.yarnpkg.com/@nrwl/devkit/-/devkit-14.8.4.tgz#15812910878a50220dc5944693e2d84795308b31" + integrity sha512-GmHZ8SVE0aL4iRfkYRzzE5I09rl6MgHpLDkuGAYQOPLOm4REjZ5jFjoODS2M7AydrJ34JxAq9eAFXGFr4cKauA== dependencies: - nx "14.8.1" + "@phenomnomnominal/tsquery" "4.1.1" + ejs "^3.1.7" + ignore "^5.0.4" + tslib "^2.3.0" + +"@nrwl/tao@14.8.4": + version "14.8.4" + resolved "https://registry.yarnpkg.com/@nrwl/tao/-/tao-14.8.4.tgz#77ad1f92928f58ef5a338e4df5efbb3a89d6e84b" + integrity sha512-wEDBELOYzfvp96xCnoWoMr4UA/e3cUri7kAXDGK3hrGGcCUplJ+notHiKJoZXmB3yHME2PMJca4dHcG4zVgA0w== + dependencies: + nx "14.8.4" "@octokit/auth-token@^3.0.0": version "3.0.1" @@ -4128,9 +4148,9 @@ universal-user-agent "^6.0.0" "@octokit/openapi-types@^13.11.0": - version "13.13.0" - resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-13.13.0.tgz#c9bd7fafd41984176a806938e0a56b7c39425014" - integrity sha512-EQ7/LFp2nb1bU5vhLvfEsImi7RvGXp081ytaMRQXDyVcpLpmOCUMafYfHL72BA7wCOnEmJR0LznBS6sCAIlm9Q== + version "13.13.1" + resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-13.13.1.tgz#a783bacb1817c9f61a2a0c3f81ea22ad62340fdf" + integrity sha512-4EuKSk3N95UBWFau3Bz9b3pheQ8jQYbKmBL5+GSuY8YDPDwu03J4BjI+66yNi8aaX/3h1qDpb0mbBkLdr+cfGQ== "@octokit/plugin-enterprise-rest@^6.0.1": version "6.0.1" @@ -4203,15 +4223,22 @@ node-addon-api "^3.2.1" node-gyp-build "^4.3.0" +"@phenomnomnominal/tsquery@4.1.1": + version "4.1.1" + resolved "https://registry.yarnpkg.com/@phenomnomnominal/tsquery/-/tsquery-4.1.1.tgz#42971b83590e9d853d024ddb04a18085a36518df" + integrity sha512-jjMmK1tnZbm1Jq5a7fBliM4gQwjxMU7TFoRNwIyzwlO+eHPRCFv/Nv+H/Gi1jc3WR7QURG8D5d0Tn12YGrUqBQ== + dependencies: + esquery "^1.0.1" + "@polka/url@^1.0.0-next.20": version "1.0.0-next.21" resolved "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.21.tgz#5de5a2385a35309427f6011992b544514d559aa1" integrity sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g== -"@rjsf/core@^3.1.0": - version "3.2.1" - resolved "https://registry.yarnpkg.com/@rjsf/core/-/core-3.2.1.tgz#8a7b24c9a6f01f0ecb093fdfc777172c12b1b009" - integrity sha512-dk8ihvxFbcuIwU7G+HiJbFgwyIvaumPt5g5zfnuC26mwTUPlaDGFXKK2yITp8tJ3+hcwS5zEXtAN9wUkfuM4jA== +"@rjsf/core@^4.2.0": + version "4.2.3" + resolved "https://registry.yarnpkg.com/@rjsf/core/-/core-4.2.3.tgz#7ff2fb593f0af20485dc267391a8971378eec655" + integrity sha512-dRXhd1Tac/9OcG0VDrYDF2boNTyKINEEITEtJ4L1Yce2iMVk66U52BhWKIFp/WXDM27vwnOfwQo4NwGiqeQeHw== dependencies: "@types/json-schema" "^7.0.7" ajv "^6.7.0" @@ -4219,9 +4246,10 @@ json-schema-merge-allof "^0.6.0" jsonpointer "^5.0.0" lodash "^4.17.15" + lodash-es "^4.17.15" nanoid "^3.1.23" prop-types "^15.7.2" - react-is "^16.9.0" + react-is "16.9.0" "@sindresorhus/is@^4.0.0": version "4.6.0" @@ -4443,14 +4471,14 @@ integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ== "@types/node@*": - version "18.7.23" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.7.23.tgz#75c580983846181ebe5f4abc40fe9dfb2d65665f" - integrity sha512-DWNcCHolDq0ZKGizjx2DZjR/PqsYwAcYUJmfMWqtVU2MBMG5Mo+xFZrhGId5r/O5HOuMPyQEcM6KUBp5lBZZBg== + version "18.8.4" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.8.4.tgz#54be907698f40de8a45770b48486aa3cbd3adff7" + integrity sha512-WdlVphvfR/GJCLEMbNA8lJ0lhFNBj4SW3O+O5/cEGw9oYrv0al9zTwuQsq+myDUXgNx2jgBynoVgZ2MMJ6pbow== "@types/node@^14.6.1": - version "14.18.31" - resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.31.tgz#4b873dea3122e71af4f77e65ec5841397ff254d3" - integrity sha512-vQAnaReSQkEDa8uwAyQby8bYGKu84R/deEc6mg5T8fX6gzCn8QW6rziSgsti1fNvsrswKUKPnVTi7uoB+u62Mw== + version "14.18.32" + resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.32.tgz#8074f7106731f1a12ba993fe8bad86ee73905014" + integrity sha512-Y6S38pFr04yb13qqHf8uk1nHE3lXgQ30WZbv1mLliV9pt0NjvqdWttLcrOYLnXbOafknVYRHZGoMSpR9UwfYow== "@types/normalize-package-data@^2.4.0": version "2.4.1" @@ -4809,9 +4837,9 @@ integrity sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ== "@yarnpkg/parsers@^3.0.0-rc.18": - version "3.0.0-rc.22" - resolved "https://registry.yarnpkg.com/@yarnpkg/parsers/-/parsers-3.0.0-rc.22.tgz#a78e10e1919ba706beb6a514ddcb09515607ada9" - integrity sha512-GAWDjXduYBUVmOzlj3X0OwTQ1BV4ZeDdgw8yXST3K0lB95drWEGxa1at0v7BmHDyK2y1F1IJufc8N4yrcuXjWg== + version "3.0.0-rc.25" + resolved "https://registry.yarnpkg.com/@yarnpkg/parsers/-/parsers-3.0.0-rc.25.tgz#aec9794739fd6923ce4ae628f4d52734c817f871" + integrity sha512-uotaIJwVQeV/DcGA9G2EVuVFHnEEdxDy3yRLeh9VHS6Lx7nZETaWzJPU1bgAwnAa3gplol2NIQhlsr2eqgq9qA== dependencies: js-yaml "^3.10.0" tslib "^2.4.0" @@ -4836,7 +4864,7 @@ abab@^2.0.3, abab@^2.0.5: resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291" integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA== -abbrev@1: +abbrev@1, abbrev@^1.0.0: version "1.1.1" resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== @@ -5158,7 +5186,7 @@ async-limiter@~1.0.0: resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== -async@3.2.4: +async@3.2.4, async@^3.2.3: version "3.2.4" resolved "https://registry.yarnpkg.com/async/-/async-3.2.4.tgz#2d22e00f8cddeb5fde5dd33522b56d1cf569a81c" integrity sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ== @@ -5193,6 +5221,15 @@ aws4@^1.8.0: resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.11.0.tgz#d61f46d83b2519250e2784daf5b09479a8b41c59" integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA== +axios@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/axios/-/axios-1.1.2.tgz#8b6f6c540abf44ab98d9904e8daf55351ca4a331" + integrity sha512-bznQyETwElsXl2RK7HLLwb5GPpOLlycxHCtrpDR/4RqqBzjARaOTo3jz4IgtntWUYee7Ne4S8UHd92VCuzPaWA== + dependencies: + follow-redirects "^1.15.0" + form-data "^4.0.0" + proxy-from-env "^1.1.0" + babel-jest@^26.6.3: version "26.6.3" resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-26.6.3.tgz#d87d25cb0037577a0c89f82e5755c5d293c01056" @@ -5336,9 +5373,9 @@ bcryptjs@2.4.3: integrity sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ== before-after-hook@^2.2.0: - version "2.2.2" - resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-2.2.2.tgz#a6e8ca41028d90ee2c24222f201c90956091613e" - integrity sha512-3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ== + version "2.2.3" + resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-2.2.3.tgz#c51e809c81a4e354084422b9b26bad88249c517c" + integrity sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ== big.js@^5.2.2: version "5.2.2" @@ -5620,9 +5657,9 @@ camelcase@^6.0.0, camelcase@^6.2.0: integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== caniuse-lite@^1.0.30001400: - version "1.0.30001414" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001414.tgz#5f1715e506e71860b4b07c50060ea6462217611e" - integrity sha512-t55jfSaWjCdocnFdKQoO+d2ct9C59UZg4dY3OnUlSZ447r8pUtIKdp0hpAzrGFultmTC+Us+KpKi4GZl/LXlFg== + version "1.0.30001418" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001418.tgz#5f459215192a024c99e3e3a53aac310fc7cf24e6" + integrity sha512-oIs7+JL3K9JRQ3jPZjlH6qyYDp+nBTCais7hjh0s+fuBwufc7uZ7hPYMXrDOJhV360KGMTcczMRObk0/iMqZRg== capture-exit@^2.0.0: version "2.0.0" @@ -5653,7 +5690,7 @@ chalk@^2.0.0, chalk@^2.3.0, chalk@^2.4.1: escape-string-regexp "^1.0.5" supports-color "^5.3.0" -chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1: +chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.1: version "4.1.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -5773,6 +5810,15 @@ cliui@^7.0.2: strip-ansi "^6.0.0" wrap-ansi "^7.0.0" +cliui@^8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" + integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.1" + wrap-ansi "^7.0.0" + clone-deep@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" @@ -6094,11 +6140,9 @@ conventional-recommended-bump@^6.1.0: q "^1.5.1" convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: - version "1.8.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369" - integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA== - dependencies: - safe-buffer "~5.1.1" + version "1.9.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" + integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== cookie-signature@1.0.6: version "1.0.6" @@ -6124,16 +6168,16 @@ copy-descriptor@^0.1.0: integrity sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw== core-js-compat@^3.25.1: - version "3.25.3" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.25.3.tgz#d6a442a03f4eade4555d4e640e6a06151dd95d38" - integrity sha512-xVtYpJQ5grszDHEUU9O7XbjjcZ0ccX3LgQsyqSvTnjX97ZqEgn9F5srmrwwwMtbKzDllyFPL+O+2OFMl1lU4TQ== + version "3.25.5" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.25.5.tgz#0016e8158c904f7b059486639e6e82116eafa7d9" + integrity sha512-ovcyhs2DEBUIE0MGEKHP4olCUW/XYte3Vroyxuh38rD1wAO4dHohsovUC4eAOuzFxE6b+RXvBU3UZ9o0YhUTkA== dependencies: browserslist "^4.21.4" core-js-pure@^3.6.5: - version "3.25.3" - resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.25.3.tgz#66ac5bfa5754b47fdfd14f3841c5ed21c46db608" - integrity sha512-T/7qvgv70MEvRkZ8p6BasLZmOVYKzOaWNBEHAU8FmveCJkl4nko2quqPQOmy6AJIp5MBanhz9no3A94NoRb0XA== + version "3.25.5" + resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.25.5.tgz#79716ba54240c6aa9ceba6eee08cf79471ba184d" + integrity sha512-oml3M22pHM+igfWHDfdLVq2ShWmjM2V4L+dQEBs0DWVIqEm9WHCwGAlZ6BmyBQGy5sFrJmcx+856D9lVKyGWYg== core-util-is@1.0.2: version "1.0.2" @@ -6516,9 +6560,9 @@ deepmerge@^4.2.2: integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== defaults@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" - integrity sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA== + version "1.0.4" + resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz#b0b02062c1e2aa62ff5d9528f0f98baa90978d7a" + integrity sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== dependencies: clone "^1.0.2" @@ -6757,10 +6801,17 @@ ee-first@1.1.1: resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== +ejs@^3.1.7: + version "3.1.8" + resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.8.tgz#758d32910c78047585c7ef1f92f9ee041c1c190b" + integrity sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ== + dependencies: + jake "^10.8.5" + electron-to-chromium@^1.4.251: - version "1.4.268" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.268.tgz#5a902075f0209a628837e508a66d40ace04d54ab" - integrity sha512-PO90Bv++vEzdln+eA9qLg1IRnh0rKETus6QkTzcFm5P3Wg3EQBZud5dcnzkpYXuIKWBjKe5CO8zjz02cicvn1g== + version "1.4.277" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.277.tgz#6dc3d9724a0a19b7ab155bf8e37967357a081dc5" + integrity sha512-Ej4VyUfGdVY5D2J5WHAVNqrEFBKgeNcX7p/bBQU4x/VKwvnyEvGd62NEkIK3lykLEe9Cg4MCcoWAa+u97o0u/A== emittery@^0.7.1: version "0.7.2" @@ -6856,9 +6907,9 @@ error-ex@^1.3.1: is-arrayish "^0.2.1" es-abstract@^1.19.0, es-abstract@^1.19.1, es-abstract@^1.19.2, es-abstract@^1.19.5: - version "1.20.3" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.3.tgz#90b143ff7aedc8b3d189bcfac7f1e3e3f81e9da1" - integrity sha512-AyrnaKVpMzljIdwjzrj+LxGmj8ik2LckwXacHqrJJ/jxz6dDDBcZ7I7nlHM0FvEW8MfbWJwOd+yT2XzYW49Frw== + version "1.20.4" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.4.tgz#1d103f9f8d78d4cf0713edcd6d0ed1a46eed5861" + integrity sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA== dependencies: call-bind "^1.0.2" es-to-primitive "^1.2.1" @@ -6870,7 +6921,7 @@ es-abstract@^1.19.0, es-abstract@^1.19.1, es-abstract@^1.19.2, es-abstract@^1.19 has-property-descriptors "^1.0.0" has-symbols "^1.0.3" internal-slot "^1.0.3" - is-callable "^1.2.6" + is-callable "^1.2.7" is-negative-zero "^2.0.2" is-regex "^1.1.4" is-shared-array-buffer "^1.0.2" @@ -7009,9 +7060,9 @@ eslint-plugin-prettier@^3.1.4: prettier-linter-helpers "^1.0.0" eslint-plugin-react@^7.21.5: - version "7.31.8" - resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.31.8.tgz#3a4f80c10be1bcbc8197be9e8b641b2a3ef219bf" - integrity sha512-5lBTZmgQmARLLSYiwI71tiGVTLUuqXantZM6vlSY39OaDSV0M7+32K5DnLkmFrwTe+Ksz0ffuLUC91RUviVZfw== + version "7.31.10" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.31.10.tgz#6782c2c7fe91c09e715d536067644bbb9491419a" + integrity sha512-e4N/nc6AAlg4UKW/mXeYWd3R++qUano5/o+t+wnWxIf+bLsOaH3a4q74kX3nDjYym3VBN4HyO9nEn1GcAqgQOA== dependencies: array-includes "^3.1.5" array.prototype.flatmap "^1.3.0" @@ -7120,7 +7171,7 @@ esprima@^4.0.0, esprima@^4.0.1: resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== -esquery@^1.4.0: +esquery@^1.0.1, esquery@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== @@ -7467,6 +7518,13 @@ file-loader@~6.0.0: loader-utils "^2.0.0" schema-utils "^2.6.5" +filelist@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.4.tgz#f78978a1e944775ff9e62e744424f215e58352b5" + integrity sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q== + dependencies: + minimatch "^5.0.1" + fill-range@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" @@ -7549,6 +7607,11 @@ flatted@^3.1.0: resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== +follow-redirects@^1.15.0: + version "1.15.2" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" + integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== + for-in@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" @@ -7568,6 +7631,15 @@ form-data@^3.0.0: combined-stream "^1.0.8" mime-types "^2.1.12" +form-data@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" + integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.8" + mime-types "^2.1.12" + form-data@~2.3.2: version "2.3.3" resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" @@ -8443,7 +8515,7 @@ is-buffer@^1.1.5: resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== -is-callable@^1.1.4, is-callable@^1.2.6: +is-callable@^1.1.4, is-callable@^1.2.7: version "1.2.7" resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== @@ -8741,9 +8813,9 @@ istanbul-lib-instrument@^4.0.3: semver "^6.3.0" istanbul-lib-instrument@^5.0.4: - version "5.2.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz#31d18bdd127f825dd02ea7bfdfd906f8ab840e9f" - integrity sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A== + version "5.2.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz#d10c8885c2125574e1c231cacadf955675e1ce3d" + integrity sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== dependencies: "@babel/core" "^7.12.3" "@babel/parser" "^7.14.7" @@ -8777,6 +8849,16 @@ istanbul-reports@^3.0.2: html-escaper "^2.0.0" istanbul-lib-report "^3.0.0" +jake@^10.8.5: + version "10.8.5" + resolved "https://registry.yarnpkg.com/jake/-/jake-10.8.5.tgz#f2183d2c59382cb274226034543b9c03b8164c46" + integrity sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw== + dependencies: + async "^3.2.3" + chalk "^4.0.2" + filelist "^1.0.1" + minimatch "^3.0.4" + jest-changed-files@^26.6.2: version "26.6.2" resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-26.6.2.tgz#f6198479e1cc66f22f9ae1e22acaa0b429c042d0" @@ -9473,29 +9555,32 @@ kleur@^3.0.3: integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== lerna@^5.5.0: - version "5.5.4" - resolved "https://registry.yarnpkg.com/lerna/-/lerna-5.5.4.tgz#34d95dd3e26c725ce4ba981b887aaf59ce899519" - integrity sha512-LAFQ/U6SL7/EM0sedtFaFS4b0RbTqsYYOJ6LV9Y7l/zWFlqLcg41vLblkNRuxsNB5FZBNpfiWvXmd1KiWkQ/yQ== - dependencies: - "@lerna/add" "5.5.4" - "@lerna/bootstrap" "5.5.4" - "@lerna/changed" "5.5.4" - "@lerna/clean" "5.5.4" - "@lerna/cli" "5.5.4" - "@lerna/create" "5.5.4" - "@lerna/diff" "5.5.4" - "@lerna/exec" "5.5.4" - "@lerna/import" "5.5.4" - "@lerna/info" "5.5.4" - "@lerna/init" "5.5.4" - "@lerna/link" "5.5.4" - "@lerna/list" "5.5.4" - "@lerna/publish" "5.5.4" - "@lerna/run" "5.5.4" - "@lerna/version" "5.5.4" + version "5.6.2" + resolved "https://registry.yarnpkg.com/lerna/-/lerna-5.6.2.tgz#cdcdfe4e8bf07eccb4ecff1c216def9c67e62af2" + integrity sha512-Y0yMPslvnBnTZi7Nrs/gDyYZYauNf61xWNCehISHIORxZmmpoluNkcWTfcyb47is5uJQCv5QJX5xKKubbs+a6w== + dependencies: + "@lerna/add" "5.6.2" + "@lerna/bootstrap" "5.6.2" + "@lerna/changed" "5.6.2" + "@lerna/clean" "5.6.2" + "@lerna/cli" "5.6.2" + "@lerna/command" "5.6.2" + "@lerna/create" "5.6.2" + "@lerna/diff" "5.6.2" + "@lerna/exec" "5.6.2" + "@lerna/import" "5.6.2" + "@lerna/info" "5.6.2" + "@lerna/init" "5.6.2" + "@lerna/link" "5.6.2" + "@lerna/list" "5.6.2" + "@lerna/publish" "5.6.2" + "@lerna/run" "5.6.2" + "@lerna/version" "5.6.2" + "@nrwl/devkit" ">=14.8.1 < 16" import-local "^3.0.2" + inquirer "^8.2.4" npmlog "^6.0.2" - nx ">=14.6.1 < 16" + nx ">=14.8.1 < 16" typescript "^3 || ^4" level-codec@^9.0.0: @@ -9707,6 +9792,11 @@ lockfile@1.0.4: dependencies: signal-exit "^3.0.2" +lodash-es@^4.17.15: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.21.tgz#43e626c46e6591b7750beb2b50117390c609e3ee" + integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw== + lodash.curry@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/lodash.curry/-/lodash.curry-4.1.1.tgz#248e36072ede906501d75966200a86dab8b23170" @@ -9930,11 +10020,16 @@ marked@4.0.18: resolved "https://registry.yarnpkg.com/marked/-/marked-4.0.18.tgz#cd0ac54b2e5610cfb90e8fd46ccaa8292c9ed569" integrity sha512-wbLDJ7Zh0sqA0Vdg6aqlbT+yPxqLblpAZh1mK2+AO2twQkPywvvqQNfEPVwSSRjZ7dZcdeVBIAgiO7MMp3Dszw== -marked@4.1.0, marked@^4.0.17: +marked@4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/marked/-/marked-4.1.0.tgz#3fc6e7485f21c1ca5d6ec4a39de820e146954796" integrity sha512-+Z6KDjSPa6/723PQYyc1axYZpYYpDnECDaU6hkaf5gqBieBkMKYReL5hteF2QizhlMbgbo8umXl/clZ67+GlsA== +marked@^4.0.17: + version "4.1.1" + resolved "https://registry.yarnpkg.com/marked/-/marked-4.1.1.tgz#2f709a4462abf65a283f2453dc1c42ab177d302e" + integrity sha512-0cNMnTcUJPxbA6uWmCmjWz4NJRe/0Xfk2NhXCUHjew9qJzFN20krFnsUe7QynwqOwa5m1fZ4UDg0ycKFVC0ccw== + media-typer@0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" @@ -10132,9 +10227,9 @@ minimist-options@4.1.0: kind-of "^6.0.3" minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6, minimist@~1.2.0: - version "1.2.6" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" - integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== + version "1.2.7" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18" + integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g== minipass-collect@^1.0.2: version "1.0.2" @@ -10362,15 +10457,15 @@ node-gyp-build@~4.1.0: integrity sha512-dSq1xmcPDKPZ2EED2S6zw/b9NKsqzXRE6dVr8TVQnI3FJOTteUMuqF3Qqs6LZg+mLGYJWqQzMbIjMtJqTv87nQ== node-gyp@^9.0.0: - version "9.1.0" - resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-9.1.0.tgz#c8d8e590678ea1f7b8097511dedf41fc126648f8" - integrity sha512-HkmN0ZpQJU7FLbJauJTHkHlSVAXlNGDAzH/VYFZGDOnFyn/Na3GlNJfkudmufOdS6/jNFhy88ObzL7ERz9es1g== + version "9.3.0" + resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-9.3.0.tgz#f8eefe77f0ad8edb3b3b898409b53e697642b319" + integrity sha512-A6rJWfXFz7TQNjpldJ915WFb1LnhO4lIve3ANPbWreuEoLoKlFT3sxIepPBkLhM27crW8YmN+pjlgbasH6cH/Q== dependencies: env-paths "^2.2.0" glob "^7.1.4" graceful-fs "^4.2.6" make-fetch-happen "^10.0.3" - nopt "^5.0.0" + nopt "^6.0.0" npmlog "^6.0.0" rimraf "^3.0.2" semver "^7.3.5" @@ -10406,6 +10501,13 @@ nopt@^5.0.0: dependencies: abbrev "1" +nopt@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-6.0.0.tgz#245801d8ebf409c6df22ab9d95b65e1309cdb16d" + integrity sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g== + dependencies: + abbrev "^1.0.0" + normalize-package-data@^2.3.2, normalize-package-data@^2.5.0: version "2.5.0" resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" @@ -10590,17 +10692,18 @@ nwsapi@^2.2.0: resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.2.tgz#e5418863e7905df67d51ec95938d67bf801f0bb0" integrity sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw== -nx@14.8.1, "nx@>=14.6.1 < 16": - version "14.8.1" - resolved "https://registry.yarnpkg.com/nx/-/nx-14.8.1.tgz#5e48deb067edd2fa9ec6518a751cd44c766d9875" - integrity sha512-9fDmK+W6HCOpNrGPllbYdAxpXCEhbSHrO3rWd9th/m393Rc12UrP+QvV8GR8uKOti8A8vSKIT2tQpME0Xf3Xww== +nx@14.8.4, "nx@>=14.8.1 < 16": + version "14.8.4" + resolved "https://registry.yarnpkg.com/nx/-/nx-14.8.4.tgz#7a1f92409ed82aaf99d2ff190c47617179c5c6d2" + integrity sha512-J7QlmG6rsdR+1Ry0pohPZXHpPN1lzE70lvuCXveyU61VX8HsrbZBzgLif07BUT8lHbs7ORaOJSZd4BCqZBJSSw== dependencies: - "@nrwl/cli" "14.8.1" - "@nrwl/tao" "14.8.1" + "@nrwl/cli" "14.8.4" + "@nrwl/tao" "14.8.4" "@parcel/watcher" "2.0.4" "@yarnpkg/lockfile" "^1.1.0" "@yarnpkg/parsers" "^3.0.0-rc.18" "@zkochan/js-yaml" "0.0.6" + axios "^1.0.0" chalk "4.1.0" chokidar "^3.5.1" cli-cursor "3.1.0" @@ -11195,9 +11298,9 @@ postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0: integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== postcss@^8.2.4, postcss@^8.3.11, postcss@^8.4.7: - version "8.4.16" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.16.tgz#33a1d675fac39941f5f445db0de4db2b6e01d43c" - integrity sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ== + version "8.4.17" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.17.tgz#f87863ec7cd353f81f7ab2dec5d67d861bbb1be5" + integrity sha512-UNxNOLQydcOFi41yHNMcKRZ39NeXlr8AxGuZJsdub8vIb12fHzcq37DTU/QtbI6WLxNg2gF9Z+8qtRwTj1UI1Q== dependencies: nanoid "^3.3.4" picocolors "^1.0.0" @@ -11347,6 +11450,11 @@ proxy-addr@~2.0.7: forwarded "0.2.0" ipaddr.js "1.9.1" +proxy-from-env@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" + integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== + prr@~1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" @@ -11489,7 +11597,12 @@ react-highlighter@^0.4.3: escape-string-regexp "^1.0.5" prop-types "^15.6.0" -react-is@^16.13.1, react-is@^16.9.0: +react-is@16.9.0: + version "16.9.0" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.9.0.tgz#21ca9561399aad0ff1a7701c01683e8ca981edcb" + integrity sha512-tJBzzzIgnnRfEm046qRcURvwQnZVXmuCbscxUO5RWrGTXpon2d4c8mI0D8WE6ydVIm29JiLB6+RslkIvym9Rjw== + +react-is@^16.13.1: version "16.13.1" resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== @@ -12044,13 +12157,20 @@ semver@7.3.4: dependencies: lru-cache "^6.0.0" -semver@7.3.7, semver@7.x, semver@^7.0.0, semver@^7.1.1, semver@^7.2.1, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7: +semver@7.3.7: version "7.3.7" resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f" integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g== dependencies: lru-cache "^6.0.0" +semver@7.x, semver@^7.0.0, semver@^7.1.1, semver@^7.2.1, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7: + version "7.3.8" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" + integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== + dependencies: + lru-cache "^6.0.0" + semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0: version "6.3.0" resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" @@ -12261,9 +12381,9 @@ socks-proxy-agent@^7.0.0: socks "^2.6.2" socks@^2.6.2: - version "2.7.0" - resolved "https://registry.yarnpkg.com/socks/-/socks-2.7.0.tgz#f9225acdb841e874dca25f870e9130990f3913d0" - integrity sha512-scnOe9y4VuiNUULJN72GrM26BNOjVsfPXI+j+98PkyEfsIXroa5ofyjT+FzGvn/xHs73U2JtoBYAVx9Hl4quSA== + version "2.7.1" + resolved "https://registry.yarnpkg.com/socks/-/socks-2.7.1.tgz#d8e651247178fde79c0663043e07240196857d55" + integrity sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ== dependencies: ip "^2.0.0" smart-buffer "^4.2.0" @@ -12752,9 +12872,9 @@ terser-webpack-plugin@^5.1.3: terser "^5.14.1" terser@^5.14.1, terser@^5.3.4: - version "5.15.0" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.15.0.tgz#e16967894eeba6e1091509ec83f0c60e179f2425" - integrity sha512-L1BJiXVmheAQQy+as0oF3Pwtlo4s3Wi1X2zNZ2NxOB4wx9bdS9Vk67XQENLFdLYGCK/Z2di53mTj/hBafR+dTA== + version "5.15.1" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.15.1.tgz#8561af6e0fd6d839669c73b92bdd5777d870ed6c" + integrity sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw== dependencies: "@jridgewell/source-map" "^0.3.2" acorn "^8.5.0" @@ -13096,9 +13216,9 @@ typestyle@^2.0.4: free-style "3.1.0" uglify-js@^3.1.4: - version "3.17.2" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.2.tgz#f55f668b9a64b213977ae688703b6bbb7ca861c6" - integrity sha512-bbxglRjsGQMchfvXZNusUcYgiB9Hx2K4AHYXQy2DITZ9Rd+JzhX7+hoocE5Winr7z2oHvPsekkBwXtigvxevXg== + version "3.17.3" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.3.tgz#f0feedf019c4510f164099e8d7e72ff2d7304377" + integrity sha512-JmMFDME3iufZnBpyKL+uS78LRiC+mK55zWfM5f/pWBJfpOttXAqYfdDGRukYhJuyRinvPVAtUhvy7rlDybNtFg== unbox-primitive@^1.0.2: version "1.0.2" @@ -13215,9 +13335,9 @@ upath@^2.0.1: integrity sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w== update-browserslist-db@^1.0.9: - version "1.0.9" - resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.9.tgz#2924d3927367a38d5c555413a7ce138fc95fcb18" - integrity sha512-/xsqn21EGVdXI3EXSum1Yckj3ZVZugqyOZQ/CxYPBD/R+ko9NSUScf8tFF4dOKY+2pvSSJA/S+5B8s4Zr4kyvg== + version "1.0.10" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3" + integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ== dependencies: escalade "^3.1.1" picocolors "^1.0.0" @@ -14302,7 +14422,20 @@ yargs@^16.2.0: y18n "^5.0.5" yargs-parser "^20.2.2" -yargs@^17.4.0, yargs@~17.5.1: +yargs@^17.4.0: + version "17.6.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.6.0.tgz#e134900fc1f218bc230192bdec06a0a5f973e46c" + integrity sha512-8H/wTDqlSwoSnScvV2N/JHfLWOKuh5MVla9hqLjK3nsfyy6Y4kDSYSvkU5YCUEPOSnRXfIyx3Sq+B/IWudTo4g== + dependencies: + cliui "^8.0.1" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.3" + y18n "^5.0.5" + yargs-parser "^21.0.0" + +yargs@~17.5.1: version "17.5.1" resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.5.1.tgz#e109900cab6fcb7fd44b1d8249166feb0b36e58e" integrity sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA==