diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 481311754e..683961d698 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -85,6 +85,7 @@ jobs: - uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 with: dependency_type: minimum + python_version: '3.10' - name: Run the unit tests run: | hatch run test:nowarn || hatch run test:nowarn --lf @@ -110,9 +111,9 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python: ['3.7', '3.11'] + python: ['3.8', '3.11'] include: - - python: '3.7' + - python: '3.8' dist: 'notebook*.tar.gz' - python: '3.11' dist: 'notebook*.whl' diff --git a/.github/workflows/buildutils.yml b/.github/workflows/buildutils.yml index 2bf386166d..88b7fcdb86 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.0a32,<5" hatch + python -m pip install -U "jupyterlab>=4.0.0a33,<5" hatch jlpm jlpm run build @@ -76,6 +76,6 @@ jobs: - name: Install dependencies run: | - python -m pip install -U "jupyterlab>=4.0.0a32,<5" pip + python -m pip install -U "jupyterlab>=4.0.0a33,<5" pip jlpm jlpm run build diff --git a/app/index.js b/app/index.js index 55d704b59b..3bad9e699d 100644 --- a/app/index.js +++ b/app/index.js @@ -117,12 +117,14 @@ async function main() { '@jupyterlab/docmanager-extension:manager' ].includes(id) ), - require('@jupyterlab/docprovider-extension'), require('@jupyterlab/documentsearch-extension').default.filter(({ id }) => ['@jupyterlab/documentsearch-extension:plugin'].includes(id) ), require('@jupyterlab/filebrowser-extension').default.filter(({ id }) => - ['@jupyterlab/filebrowser-extension:factory'].includes(id) + [ + '@jupyterlab/filebrowser-extension:factory', + '@jupyterlab/filebrowser-extension:defaultFileBrowser' + ].includes(id) ), require('@jupyterlab/fileeditor-extension').default.filter(({ id }) => ['@jupyterlab/fileeditor-extension:plugin'].includes(id) diff --git a/app/package.json b/app/package.json index 5e42b6ec4e..d8fac3f595 100644 --- a/app/package.json +++ b/app/package.json @@ -22,91 +22,89 @@ "@jupyter-notebook/tree": "~7.0.0-alpha.11", "@jupyter-notebook/tree-extension": "~7.0.0-alpha.11", "@jupyter-notebook/ui-components": "~7.0.0-alpha.11", - "@jupyter/ydoc": "~0.2.2", - "@jupyterlab/application": "~4.0.0-alpha.17", - "@jupyterlab/application-extension": "~4.0.0-alpha.17", - "@jupyterlab/apputils": "~4.0.0-alpha.17", - "@jupyterlab/apputils-extension": "~4.0.0-alpha.17", - "@jupyterlab/cell-toolbar": "~4.0.0-alpha.17", - "@jupyterlab/cell-toolbar-extension": "~4.0.0-alpha.17", - "@jupyterlab/celltags": "~4.0.0-alpha.17", - "@jupyterlab/celltags-extension": "~4.0.0-alpha.17", - "@jupyterlab/codeeditor": "~4.0.0-alpha.17", - "@jupyterlab/codemirror": "~4.0.0-alpha.17", - "@jupyterlab/codemirror-extension": "~4.0.0-alpha.17", - "@jupyterlab/collaboration": "~4.0.0-alpha.17", - "@jupyterlab/collaboration-extension": "~4.0.0-alpha.17", - "@jupyterlab/completer": "~4.0.0-alpha.17", - "@jupyterlab/completer-extension": "~4.0.0-alpha.17", - "@jupyterlab/console": "~4.0.0-alpha.17", - "@jupyterlab/console-extension": "~4.0.0-alpha.17", - "@jupyterlab/coreutils": "~6.0.0-alpha.17", - "@jupyterlab/debugger": "~4.0.0-alpha.17", - "@jupyterlab/debugger-extension": "~4.0.0-alpha.17", - "@jupyterlab/docmanager": "~4.0.0-alpha.17", - "@jupyterlab/docmanager-extension": "~4.0.0-alpha.17", - "@jupyterlab/docprovider": "~4.0.0-alpha.17", - "@jupyterlab/docprovider-extension": "~4.0.0-alpha.17", - "@jupyterlab/documentsearch": "~4.0.0-alpha.17", - "@jupyterlab/documentsearch-extension": "~4.0.0-alpha.17", - "@jupyterlab/filebrowser": "~4.0.0-alpha.17", - "@jupyterlab/filebrowser-extension": "~4.0.0-alpha.17", - "@jupyterlab/fileeditor": "~4.0.0-alpha.17", - "@jupyterlab/fileeditor-extension": "~4.0.0-alpha.17", - "@jupyterlab/htmlviewer": "~4.0.0-alpha.17", - "@jupyterlab/htmlviewer-extension": "~4.0.0-alpha.17", - "@jupyterlab/hub-extension": "~4.0.0-alpha.17", - "@jupyterlab/javascript-extension": "~4.0.0-alpha.17", - "@jupyterlab/json-extension": "~4.0.0-alpha.17", - "@jupyterlab/lsp": "~4.0.0-alpha.17", - "@jupyterlab/lsp-extension": "~4.0.0-alpha.17", - "@jupyterlab/mainmenu": "~4.0.0-alpha.17", - "@jupyterlab/mainmenu-extension": "~4.0.0-alpha.17", - "@jupyterlab/markedparser-extension": "~4.0.0-alpha.17", - "@jupyterlab/mathjax2-extension": "~4.0.0-alpha.17", - "@jupyterlab/notebook": "~4.0.0-alpha.17", - "@jupyterlab/notebook-extension": "~4.0.0-alpha.17", - "@jupyterlab/observables": "~5.0.0-alpha.17", - "@jupyterlab/outputarea": "~4.0.0-alpha.17", - "@jupyterlab/pdf-extension": "~4.0.0-alpha.17", - "@jupyterlab/rendermime": "~4.0.0-alpha.17", - "@jupyterlab/rendermime-extension": "~4.0.0-alpha.17", - "@jupyterlab/rendermime-interfaces": "~3.8.0-alpha.17", - "@jupyterlab/running-extension": "~4.0.0-alpha.17", - "@jupyterlab/services": "~7.0.0-alpha.17", - "@jupyterlab/settingeditor": "~4.0.0-alpha.17", - "@jupyterlab/settingeditor-extension": "~4.0.0-alpha.17", - "@jupyterlab/settingregistry": "~4.0.0-alpha.17", - "@jupyterlab/shortcuts-extension": "~4.0.0-alpha.17", - "@jupyterlab/statedb": "~4.0.0-alpha.17", - "@jupyterlab/statusbar": "~4.0.0-alpha.17", - "@jupyterlab/terminal": "~4.0.0-alpha.17", - "@jupyterlab/terminal-extension": "~4.0.0-alpha.17", - "@jupyterlab/theme-dark-extension": "~4.0.0-alpha.17", - "@jupyterlab/theme-light-extension": "~4.0.0-alpha.17", - "@jupyterlab/toc-extension": "~6.0.0-alpha.17", - "@jupyterlab/tooltip": "~4.0.0-alpha.17", - "@jupyterlab/tooltip-extension": "~4.0.0-alpha.17", - "@jupyterlab/translation": "~4.0.0-alpha.17", - "@jupyterlab/translation-extension": "~4.0.0-alpha.17", - "@jupyterlab/ui-components": "~4.0.0-alpha.32", - "@jupyterlab/ui-components-extension": "~4.0.0-alpha.17", - "@jupyterlab/vega5-extension": "~4.0.0-alpha.17", - "@lumino/algorithm": "~2.0.0-alpha.7", - "@lumino/application": "~2.0.0-alpha.7", - "@lumino/commands": "~2.0.0-alpha.7", - "@lumino/coreutils": "~2.0.0-alpha.7", - "@lumino/disposable": "~2.0.0-alpha.7", - "@lumino/domutils": "~2.0.0-alpha.7", - "@lumino/dragdrop": "~2.0.0-alpha.7", - "@lumino/messaging": "~2.0.0-alpha.7", - "@lumino/properties": "~2.0.0-alpha.7", - "@lumino/signaling": "~2.0.0-alpha.7", - "@lumino/virtualdom": "~2.0.0-alpha.7", - "@lumino/widgets": "~2.0.0-alpha.7", - "react": "~17.0.2", - "react-dom": "~17.0.2", - "yjs": "~13.5.44" + "@jupyter/ydoc": "~0.3.1", + "@jupyterlab/application": "~4.0.0-alpha.18", + "@jupyterlab/application-extension": "~4.0.0-alpha.18", + "@jupyterlab/apputils": "~4.0.0-alpha.18", + "@jupyterlab/apputils-extension": "~4.0.0-alpha.18", + "@jupyterlab/cell-toolbar": "~4.0.0-alpha.18", + "@jupyterlab/cell-toolbar-extension": "~4.0.0-alpha.18", + "@jupyterlab/celltags": "~4.0.0-alpha.18", + "@jupyterlab/celltags-extension": "~4.0.0-alpha.18", + "@jupyterlab/codeeditor": "~4.0.0-alpha.18", + "@jupyterlab/codemirror": "~4.0.0-alpha.18", + "@jupyterlab/codemirror-extension": "~4.0.0-alpha.18", + "@jupyterlab/collaboration": "~4.0.0-alpha.18", + "@jupyterlab/collaboration-extension": "~4.0.0-alpha.18", + "@jupyterlab/completer": "~4.0.0-alpha.18", + "@jupyterlab/completer-extension": "~4.0.0-alpha.18", + "@jupyterlab/console": "~4.0.0-alpha.18", + "@jupyterlab/console-extension": "~4.0.0-alpha.18", + "@jupyterlab/coreutils": "~6.0.0-alpha.18", + "@jupyterlab/debugger": "~4.0.0-alpha.18", + "@jupyterlab/debugger-extension": "~4.0.0-alpha.18", + "@jupyterlab/docmanager": "~4.0.0-alpha.18", + "@jupyterlab/docmanager-extension": "~4.0.0-alpha.18", + "@jupyterlab/documentsearch": "~4.0.0-alpha.18", + "@jupyterlab/documentsearch-extension": "~4.0.0-alpha.18", + "@jupyterlab/filebrowser": "~4.0.0-alpha.18", + "@jupyterlab/filebrowser-extension": "~4.0.0-alpha.18", + "@jupyterlab/fileeditor": "~4.0.0-alpha.18", + "@jupyterlab/fileeditor-extension": "~4.0.0-alpha.18", + "@jupyterlab/htmlviewer": "~4.0.0-alpha.18", + "@jupyterlab/htmlviewer-extension": "~4.0.0-alpha.18", + "@jupyterlab/hub-extension": "~4.0.0-alpha.18", + "@jupyterlab/javascript-extension": "~4.0.0-alpha.18", + "@jupyterlab/json-extension": "~4.0.0-alpha.18", + "@jupyterlab/lsp": "~4.0.0-alpha.18", + "@jupyterlab/lsp-extension": "~4.0.0-alpha.18", + "@jupyterlab/mainmenu": "~4.0.0-alpha.18", + "@jupyterlab/mainmenu-extension": "~4.0.0-alpha.18", + "@jupyterlab/markedparser-extension": "~4.0.0-alpha.18", + "@jupyterlab/mathjax2-extension": "~4.0.0-alpha.18", + "@jupyterlab/notebook": "~4.0.0-alpha.18", + "@jupyterlab/notebook-extension": "~4.0.0-alpha.18", + "@jupyterlab/observables": "~5.0.0-alpha.18", + "@jupyterlab/outputarea": "~4.0.0-alpha.18", + "@jupyterlab/pdf-extension": "~4.0.0-alpha.18", + "@jupyterlab/rendermime": "~4.0.0-alpha.18", + "@jupyterlab/rendermime-extension": "~4.0.0-alpha.18", + "@jupyterlab/rendermime-interfaces": "~3.8.0-alpha.18", + "@jupyterlab/running-extension": "~4.0.0-alpha.18", + "@jupyterlab/services": "~7.0.0-alpha.18", + "@jupyterlab/settingeditor": "~4.0.0-alpha.18", + "@jupyterlab/settingeditor-extension": "~4.0.0-alpha.18", + "@jupyterlab/settingregistry": "~4.0.0-alpha.18", + "@jupyterlab/shortcuts-extension": "~4.0.0-alpha.18", + "@jupyterlab/statedb": "~4.0.0-alpha.18", + "@jupyterlab/statusbar": "~4.0.0-alpha.18", + "@jupyterlab/terminal": "~4.0.0-alpha.18", + "@jupyterlab/terminal-extension": "~4.0.0-alpha.18", + "@jupyterlab/theme-dark-extension": "~4.0.0-alpha.18", + "@jupyterlab/theme-light-extension": "~4.0.0-alpha.18", + "@jupyterlab/toc-extension": "~6.0.0-alpha.18", + "@jupyterlab/tooltip": "~4.0.0-alpha.18", + "@jupyterlab/tooltip-extension": "~4.0.0-alpha.18", + "@jupyterlab/translation": "~4.0.0-alpha.18", + "@jupyterlab/translation-extension": "~4.0.0-alpha.18", + "@jupyterlab/ui-components": "~4.0.0-alpha.33", + "@jupyterlab/ui-components-extension": "~4.0.0-alpha.18", + "@jupyterlab/vega5-extension": "~4.0.0-alpha.18", + "@lumino/algorithm": "~2.0.0-beta.0", + "@lumino/application": "~2.0.0-beta.1", + "@lumino/commands": "~2.0.0-beta.1", + "@lumino/coreutils": "~2.0.0-beta.0", + "@lumino/disposable": "~2.0.0-beta.1", + "@lumino/domutils": "~2.0.0-beta.0", + "@lumino/dragdrop": "~2.0.0-beta.1", + "@lumino/messaging": "~2.0.0-beta.0", + "@lumino/properties": "~2.0.0-beta.0", + "@lumino/signaling": "~2.0.0-beta.1", + "@lumino/virtualdom": "~2.0.0-beta.0", + "@lumino/widgets": "~2.0.0-beta.1", + "react": "~18.2.0", + "react-dom": "~18.2.0", + "yjs": "~13.5.45" }, "dependencies": { "@jupyter-notebook/application": "^7.0.0-alpha.11", @@ -120,51 +118,50 @@ "@jupyter-notebook/tree": "^7.0.0-alpha.11", "@jupyter-notebook/tree-extension": "^7.0.0-alpha.11", "@jupyter-notebook/ui-components": "^7.0.0-alpha.11", - "@jupyterlab/application-extension": "^4.0.0-alpha.17", - "@jupyterlab/apputils-extension": "^4.0.0-alpha.17", - "@jupyterlab/cell-toolbar-extension": "^4.0.0-alpha.17", - "@jupyterlab/celltags": "^4.0.0-alpha.17", - "@jupyterlab/celltags-extension": "^4.0.0-alpha.17", - "@jupyterlab/codemirror": "^4.0.0-alpha.17", - "@jupyterlab/codemirror-extension": "^4.0.0-alpha.17", - "@jupyterlab/collaboration-extension": "^4.0.0-alpha.17", - "@jupyterlab/completer-extension": "^4.0.0-alpha.17", - "@jupyterlab/console-extension": "^4.0.0-alpha.17", - "@jupyterlab/coreutils": "^6.0.0-alpha.17", - "@jupyterlab/debugger-extension": "^4.0.0-alpha.17", - "@jupyterlab/docmanager-extension": "^4.0.0-alpha.17", - "@jupyterlab/docprovider-extension": "^4.0.0-alpha.17", - "@jupyterlab/documentsearch-extension": "^4.0.0-alpha.17", - "@jupyterlab/filebrowser-extension": "^4.0.0-alpha.17", - "@jupyterlab/fileeditor-extension": "^4.0.0-alpha.17", - "@jupyterlab/htmlviewer-extension": "^4.0.0-alpha.17", - "@jupyterlab/hub-extension": "^4.0.0-alpha.17", - "@jupyterlab/javascript-extension": "^4.0.0-alpha.17", - "@jupyterlab/json-extension": "^4.0.0-alpha.17", - "@jupyterlab/lsp": "^4.0.0-alpha.17", - "@jupyterlab/lsp-extension": "^4.0.0-alpha.17", - "@jupyterlab/mainmenu-extension": "^4.0.0-alpha.17", - "@jupyterlab/markedparser-extension": "^4.0.0-alpha.17", - "@jupyterlab/mathjax2-extension": "^4.0.0-alpha.17", - "@jupyterlab/notebook-extension": "^4.0.0-alpha.17", - "@jupyterlab/pdf-extension": "^4.0.0-alpha.17", - "@jupyterlab/rendermime-extension": "^4.0.0-alpha.17", - "@jupyterlab/running-extension": "^4.0.0-alpha.17", - "@jupyterlab/settingeditor": "^4.0.0-alpha.17", - "@jupyterlab/settingeditor-extension": "^4.0.0-alpha.17", - "@jupyterlab/shortcuts-extension": "^4.0.0-alpha.17", - "@jupyterlab/terminal-extension": "^4.0.0-alpha.17", - "@jupyterlab/theme-dark-extension": "^4.0.0-alpha.17", - "@jupyterlab/theme-light-extension": "^4.0.0-alpha.17", - "@jupyterlab/toc-extension": "^6.0.0-alpha.17", - "@jupyterlab/tooltip-extension": "^4.0.0-alpha.17", - "@jupyterlab/translation-extension": "^4.0.0-alpha.17", - "@jupyterlab/ui-components-extension": "^4.0.0-alpha.17", - "@jupyterlab/vega5-extension": "^4.0.0-alpha.17" + "@jupyterlab/application-extension": "^4.0.0-alpha.18", + "@jupyterlab/apputils-extension": "^4.0.0-alpha.18", + "@jupyterlab/cell-toolbar-extension": "^4.0.0-alpha.18", + "@jupyterlab/celltags": "^4.0.0-alpha.18", + "@jupyterlab/celltags-extension": "^4.0.0-alpha.18", + "@jupyterlab/codemirror": "^4.0.0-alpha.18", + "@jupyterlab/codemirror-extension": "^4.0.0-alpha.18", + "@jupyterlab/collaboration-extension": "^4.0.0-alpha.18", + "@jupyterlab/completer-extension": "^4.0.0-alpha.18", + "@jupyterlab/console-extension": "^4.0.0-alpha.18", + "@jupyterlab/coreutils": "^6.0.0-alpha.18", + "@jupyterlab/debugger-extension": "^4.0.0-alpha.18", + "@jupyterlab/docmanager-extension": "^4.0.0-alpha.18", + "@jupyterlab/documentsearch-extension": "^4.0.0-alpha.18", + "@jupyterlab/filebrowser-extension": "^4.0.0-alpha.18", + "@jupyterlab/fileeditor-extension": "^4.0.0-alpha.18", + "@jupyterlab/htmlviewer-extension": "^4.0.0-alpha.18", + "@jupyterlab/hub-extension": "^4.0.0-alpha.18", + "@jupyterlab/javascript-extension": "^4.0.0-alpha.18", + "@jupyterlab/json-extension": "^4.0.0-alpha.18", + "@jupyterlab/lsp": "^4.0.0-alpha.18", + "@jupyterlab/lsp-extension": "^4.0.0-alpha.18", + "@jupyterlab/mainmenu-extension": "^4.0.0-alpha.18", + "@jupyterlab/markedparser-extension": "^4.0.0-alpha.18", + "@jupyterlab/mathjax2-extension": "^4.0.0-alpha.18", + "@jupyterlab/notebook-extension": "^4.0.0-alpha.18", + "@jupyterlab/pdf-extension": "^4.0.0-alpha.18", + "@jupyterlab/rendermime-extension": "^4.0.0-alpha.18", + "@jupyterlab/running-extension": "^4.0.0-alpha.18", + "@jupyterlab/settingeditor": "^4.0.0-alpha.18", + "@jupyterlab/settingeditor-extension": "^4.0.0-alpha.18", + "@jupyterlab/shortcuts-extension": "^4.0.0-alpha.18", + "@jupyterlab/terminal-extension": "^4.0.0-alpha.18", + "@jupyterlab/theme-dark-extension": "^4.0.0-alpha.18", + "@jupyterlab/theme-light-extension": "^4.0.0-alpha.18", + "@jupyterlab/toc-extension": "^6.0.0-alpha.18", + "@jupyterlab/tooltip-extension": "^4.0.0-alpha.18", + "@jupyterlab/translation-extension": "^4.0.0-alpha.18", + "@jupyterlab/ui-components-extension": "^4.0.0-alpha.18", + "@jupyterlab/vega5-extension": "^4.0.0-alpha.18" }, "devDependencies": { - "@jupyterlab/builder": "^4.0.0-alpha.17", - "@jupyterlab/buildutils": "^4.0.0-alpha.17", + "@jupyterlab/builder": "^4.0.0-alpha.18", + "@jupyterlab/buildutils": "^4.0.0-alpha.18", "@types/rimraf": "^3.0.2", "css-loader": "~5.0.1", "fs-extra": "^8.1.0", diff --git a/buildutils/package.json b/buildutils/package.json index 4daa251bc8..b72013e51b 100644 --- a/buildutils/package.json +++ b/buildutils/package.json @@ -30,7 +30,7 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/buildutils": "^4.0.0-alpha.17", + "@jupyterlab/buildutils": "^4.0.0-alpha.18", "commander": "^6.2.0", "fs-extra": "^9.1.0", "typescript": "~4.9.3" diff --git a/notebook/app.py b/notebook/app.py index cc9774c98d..64ee27cf2d 100644 --- a/notebook/app.py +++ b/notebook/app.py @@ -233,7 +233,7 @@ class JupyterNotebookApp(NotebookConfigShimMixin, LabServerApp): flags = flags flags["expose-app-in-browser"] = ( {"JupyterNotebookApp": {"expose_app_in_browser": True}}, - "Expose the global app instance to browser via window.jupyterlab.", + "Expose the global app instance to browser via window.jupyterapp.", ) flags["collaborative"] = ( {"JupyterNotebookApp": {"collaborative": True}}, diff --git a/package.json b/package.json index 273ee6d855..9b354306d9 100644 --- a/package.json +++ b/package.json @@ -43,7 +43,7 @@ "watch:lib": "lerna exec --stream --scope @jupyter-notebook/metapackage jlpm watch" }, "devDependencies": { - "@jupyterlab/buildutils": "^4.0.0-alpha.17", + "@jupyterlab/buildutils": "^4.0.0-alpha.18", "@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 040d574431..b828be77bb 100644 --- a/packages/application-extension/package.json +++ b/packages/application-extension/package.json @@ -41,20 +41,20 @@ "dependencies": { "@jupyter-notebook/application": "^7.0.0-alpha.11", "@jupyter-notebook/ui-components": "^7.0.0-alpha.11", - "@jupyterlab/application": "^4.0.0-alpha.17", - "@jupyterlab/apputils": "^4.0.0-alpha.17", - "@jupyterlab/celltags": "^4.0.0-alpha.17", - "@jupyterlab/codeeditor": "^4.0.0-alpha.17", - "@jupyterlab/console": "^4.0.0-alpha.17", - "@jupyterlab/coreutils": "^6.0.0-alpha.17", - "@jupyterlab/docmanager": "^4.0.0-alpha.17", - "@jupyterlab/docregistry": "^4.0.0-alpha.17", - "@jupyterlab/mainmenu": "^4.0.0-alpha.17", - "@jupyterlab/settingregistry": "^4.0.0-alpha.17", - "@jupyterlab/translation": "^4.0.0-alpha.17", - "@lumino/coreutils": "^2.0.0-alpha.7", - "@lumino/disposable": "^2.0.0-alpha.7", - "@lumino/widgets": "^2.0.0-alpha.7" + "@jupyterlab/application": "^4.0.0-alpha.18", + "@jupyterlab/apputils": "^4.0.0-alpha.18", + "@jupyterlab/celltags": "^4.0.0-alpha.18", + "@jupyterlab/codeeditor": "^4.0.0-alpha.18", + "@jupyterlab/console": "^4.0.0-alpha.18", + "@jupyterlab/coreutils": "^6.0.0-alpha.18", + "@jupyterlab/docmanager": "^4.0.0-alpha.18", + "@jupyterlab/docregistry": "^4.0.0-alpha.18", + "@jupyterlab/mainmenu": "^4.0.0-alpha.18", + "@jupyterlab/settingregistry": "^4.0.0-alpha.18", + "@jupyterlab/translation": "^4.0.0-alpha.18", + "@lumino/coreutils": "^2.0.0-beta.0", + "@lumino/disposable": "^2.0.0-beta.1", + "@lumino/widgets": "^2.0.0-beta.1" }, "devDependencies": { "rimraf": "^3.0.2", diff --git a/packages/application/package.json b/packages/application/package.json index 1ce713ec9f..84bfbfc290 100644 --- a/packages/application/package.json +++ b/packages/application/package.json @@ -43,22 +43,22 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.0-alpha.17", - "@jupyterlab/coreutils": "^6.0.0-alpha.17", - "@jupyterlab/docregistry": "^4.0.0-alpha.17", - "@jupyterlab/rendermime-interfaces": "^3.8.0-alpha.17", - "@jupyterlab/ui-components": "^4.0.0-alpha.32", - "@lumino/algorithm": "^2.0.0-alpha.7", - "@lumino/coreutils": "^2.0.0-alpha.7", - "@lumino/messaging": "^2.0.0-alpha.7", - "@lumino/polling": "^2.0.0-alpha.7", - "@lumino/signaling": "^2.0.0-alpha.7", - "@lumino/widgets": "^2.0.0-alpha.7" + "@jupyterlab/application": "^4.0.0-alpha.18", + "@jupyterlab/coreutils": "^6.0.0-alpha.18", + "@jupyterlab/docregistry": "^4.0.0-alpha.18", + "@jupyterlab/rendermime-interfaces": "^3.8.0-alpha.18", + "@jupyterlab/ui-components": "^4.0.0-alpha.33", + "@lumino/algorithm": "^2.0.0-beta.0", + "@lumino/coreutils": "^2.0.0-beta.0", + "@lumino/messaging": "^2.0.0-beta.0", + "@lumino/polling": "^2.0.0-beta.1", + "@lumino/signaling": "^2.0.0-beta.1", + "@lumino/widgets": "^2.0.0-beta.1" }, "devDependencies": { "@babel/core": "^7.11.6", "@babel/preset-env": "^7.12.1", - "@jupyterlab/testutils": "^4.0.0-alpha.17", + "@jupyterlab/testutils": "^4.0.0-alpha.18", "@types/jest": "^29.2.5", "jest": "^29.3.1", "rimraf": "^3.0.2", diff --git a/packages/console-extension/package.json b/packages/console-extension/package.json index b7060bf3f0..37ed87b8df 100644 --- a/packages/console-extension/package.json +++ b/packages/console-extension/package.json @@ -39,10 +39,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.0-alpha.17", - "@jupyterlab/console": "^4.0.0-alpha.17", - "@jupyterlab/coreutils": "^6.0.0-alpha.17", - "@lumino/algorithm": "^2.0.0-alpha.7" + "@jupyterlab/application": "^4.0.0-alpha.18", + "@jupyterlab/console": "^4.0.0-alpha.18", + "@jupyterlab/coreutils": "^6.0.0-alpha.18", + "@lumino/algorithm": "^2.0.0-beta.0" }, "devDependencies": { "rimraf": "^3.0.2", diff --git a/packages/docmanager-extension/package.json b/packages/docmanager-extension/package.json index 7ce51df394..67d3807ff9 100644 --- a/packages/docmanager-extension/package.json +++ b/packages/docmanager-extension/package.json @@ -39,13 +39,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.0-alpha.17", - "@jupyterlab/coreutils": "^6.0.0-alpha.17", - "@jupyterlab/docmanager": "^4.0.0-alpha.17", - "@jupyterlab/docregistry": "^4.0.0-alpha.17", - "@jupyterlab/services": "^7.0.0-alpha.17", - "@lumino/algorithm": "^2.0.0-alpha.7", - "@lumino/signaling": "^2.0.0-alpha.7" + "@jupyterlab/application": "^4.0.0-alpha.18", + "@jupyterlab/coreutils": "^6.0.0-alpha.18", + "@jupyterlab/docmanager": "^4.0.0-alpha.18", + "@jupyterlab/docregistry": "^4.0.0-alpha.18", + "@jupyterlab/services": "^7.0.0-alpha.18", + "@lumino/algorithm": "^2.0.0-beta.0", + "@lumino/signaling": "^2.0.0-beta.1" }, "devDependencies": { "rimraf": "^3.0.2", diff --git a/packages/documentsearch-extension/package.json b/packages/documentsearch-extension/package.json index 718239268b..3c4cc6e2e1 100644 --- a/packages/documentsearch-extension/package.json +++ b/packages/documentsearch-extension/package.json @@ -40,9 +40,9 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.0.0-alpha.11", - "@jupyterlab/application": "^4.0.0-alpha.17", - "@jupyterlab/documentsearch": "^4.0.0-alpha.17", - "@lumino/widgets": "^2.0.0-alpha.7" + "@jupyterlab/application": "^4.0.0-alpha.18", + "@jupyterlab/documentsearch": "^4.0.0-alpha.18", + "@lumino/widgets": "^2.0.0-beta.1" }, "devDependencies": { "rimraf": "^3.0.2", diff --git a/packages/help-extension/package.json b/packages/help-extension/package.json index 7781763636..5ae4b5cd72 100644 --- a/packages/help-extension/package.json +++ b/packages/help-extension/package.json @@ -40,14 +40,17 @@ }, "dependencies": { "@jupyter-notebook/ui-components": "^7.0.0-alpha.11", - "@jupyterlab/application": "^4.0.0-alpha.17", - "@jupyterlab/apputils": "^4.0.0-alpha.17", - "@jupyterlab/mainmenu": "^4.0.0-alpha.17", - "@jupyterlab/translation": "^4.0.0-alpha.17" + "@jupyterlab/application": "^4.0.0-alpha.18", + "@jupyterlab/apputils": "^4.0.0-alpha.18", + "@jupyterlab/mainmenu": "^4.0.0-alpha.18", + "@jupyterlab/translation": "^4.0.0-alpha.18", + "react": "^18.2.0", + "react-dom": "^18.2.0" }, "devDependencies": { "rimraf": "^3.0.2", - "typescript": "~4.9.3" + "typescript": "~4.9.3", + "@types/react": "^18.0.27" }, "publishConfig": { "access": "public" diff --git a/packages/lab-extension/package.json b/packages/lab-extension/package.json index 87b5019f57..8b7e4f7ec1 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.11", - "@jupyterlab/application": "^4.0.0-alpha.17", - "@jupyterlab/apputils": "^4.0.0-alpha.17", - "@jupyterlab/coreutils": "^6.0.0-alpha.17", - "@jupyterlab/docregistry": "^4.0.0-alpha.17", - "@jupyterlab/notebook": "^4.0.0-alpha.17", - "@jupyterlab/translation": "^4.0.0-alpha.17", - "@lumino/commands": "^2.0.0-alpha.7", - "@lumino/disposable": "^2.0.0-alpha.7" + "@jupyterlab/application": "^4.0.0-alpha.18", + "@jupyterlab/apputils": "^4.0.0-alpha.18", + "@jupyterlab/coreutils": "^6.0.0-alpha.18", + "@jupyterlab/docregistry": "^4.0.0-alpha.18", + "@jupyterlab/notebook": "^4.0.0-alpha.18", + "@jupyterlab/translation": "^4.0.0-alpha.18", + "@lumino/commands": "^2.0.0-beta.1", + "@lumino/disposable": "^2.0.0-beta.1" }, "devDependencies": { - "@jupyterlab/builder": "^4.0.0-alpha.17", + "@jupyterlab/builder": "^4.0.0-alpha.18", "rimraf": "^3.0.2", "typescript": "~4.9.3" }, diff --git a/packages/notebook-extension/package.json b/packages/notebook-extension/package.json index c8016668cc..b90f7fbbe3 100644 --- a/packages/notebook-extension/package.json +++ b/packages/notebook-extension/package.json @@ -40,15 +40,15 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.0.0-alpha.11", - "@jupyterlab/application": "^4.0.0-alpha.17", - "@jupyterlab/apputils": "^4.0.0-alpha.17", - "@jupyterlab/cells": "^4.0.0-alpha.17", - "@jupyterlab/docmanager": "^4.0.0-alpha.17", - "@jupyterlab/notebook": "^4.0.0-alpha.17", - "@jupyterlab/settingregistry": "^4.0.0-alpha.17", - "@jupyterlab/translation": "^4.0.0-alpha.17", - "@lumino/polling": "^2.0.0-alpha.7", - "@lumino/widgets": "^2.0.0-alpha.7" + "@jupyterlab/application": "^4.0.0-alpha.18", + "@jupyterlab/apputils": "^4.0.0-alpha.18", + "@jupyterlab/cells": "^4.0.0-alpha.18", + "@jupyterlab/docmanager": "^4.0.0-alpha.18", + "@jupyterlab/notebook": "^4.0.0-alpha.18", + "@jupyterlab/settingregistry": "^4.0.0-alpha.18", + "@jupyterlab/translation": "^4.0.0-alpha.18", + "@lumino/polling": "^2.0.0-beta.1", + "@lumino/widgets": "^2.0.0-beta.1" }, "devDependencies": { "rimraf": "^3.0.2", diff --git a/packages/terminal-extension/package.json b/packages/terminal-extension/package.json index b651e26fdc..3424725bbe 100644 --- a/packages/terminal-extension/package.json +++ b/packages/terminal-extension/package.json @@ -39,10 +39,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.0-alpha.17", - "@jupyterlab/coreutils": "^6.0.0-alpha.17", - "@jupyterlab/terminal": "^4.0.0-alpha.17", - "@lumino/algorithm": "^2.0.0-alpha.7" + "@jupyterlab/application": "^4.0.0-alpha.18", + "@jupyterlab/coreutils": "^6.0.0-alpha.18", + "@jupyterlab/terminal": "^4.0.0-alpha.18", + "@lumino/algorithm": "^2.0.0-beta.0" }, "devDependencies": { "rimraf": "^3.0.2", diff --git a/packages/tree-extension/package.json b/packages/tree-extension/package.json index d44634c813..4f59fa146a 100644 --- a/packages/tree-extension/package.json +++ b/packages/tree-extension/package.json @@ -41,21 +41,21 @@ "dependencies": { "@jupyter-notebook/application": "^7.0.0-alpha.11", "@jupyter-notebook/tree": "^7.0.0-alpha.11", - "@jupyterlab/application": "^4.0.0-alpha.17", - "@jupyterlab/apputils": "^4.0.0-alpha.17", - "@jupyterlab/coreutils": "^6.0.0-alpha.17", - "@jupyterlab/docmanager": "^4.0.0-alpha.17", - "@jupyterlab/filebrowser": "^4.0.0-alpha.17", - "@jupyterlab/mainmenu": "^4.0.0-alpha.17", - "@jupyterlab/services": "^7.0.0-alpha.17", - "@jupyterlab/settingeditor": "^4.0.0-alpha.17", - "@jupyterlab/settingregistry": "^4.0.0-alpha.17", - "@jupyterlab/statedb": "^4.0.0-alpha.17", - "@jupyterlab/translation": "^4.0.0-alpha.17", - "@jupyterlab/ui-components": "^4.0.0-alpha.32", - "@lumino/algorithm": "^2.0.0-alpha.7", - "@lumino/commands": "^2.0.0-alpha.7", - "@lumino/widgets": "^2.0.0-alpha.7" + "@jupyterlab/application": "^4.0.0-alpha.18", + "@jupyterlab/apputils": "^4.0.0-alpha.18", + "@jupyterlab/coreutils": "^6.0.0-alpha.18", + "@jupyterlab/docmanager": "^4.0.0-alpha.18", + "@jupyterlab/filebrowser": "^4.0.0-alpha.18", + "@jupyterlab/mainmenu": "^4.0.0-alpha.18", + "@jupyterlab/services": "^7.0.0-alpha.18", + "@jupyterlab/settingeditor": "^4.0.0-alpha.18", + "@jupyterlab/settingregistry": "^4.0.0-alpha.18", + "@jupyterlab/statedb": "^4.0.0-alpha.18", + "@jupyterlab/translation": "^4.0.0-alpha.18", + "@jupyterlab/ui-components": "^4.0.0-alpha.33", + "@lumino/algorithm": "^2.0.0-beta.0", + "@lumino/commands": "^2.0.0-beta.1", + "@lumino/widgets": "^2.0.0-beta.1" }, "devDependencies": { "rimraf": "^3.0.2", diff --git a/packages/tree-extension/src/index.ts b/packages/tree-extension/src/index.ts index 96d4f8391b..347366f0c0 100644 --- a/packages/tree-extension/src/index.ts +++ b/packages/tree-extension/src/index.ts @@ -13,9 +13,9 @@ import { } from '@jupyterlab/apputils'; import { - IFileBrowserFactory, FileBrowser, - Uploader + Uploader, + IDefaultFileBrowser } from '@jupyterlab/filebrowser'; import { ISettingRegistry } from '@jupyterlab/settingregistry'; @@ -109,17 +109,16 @@ const createNew: JupyterFrontEndPlugin = { */ const openFileBrowser: JupyterFrontEndPlugin = { id: '@jupyter-notebook/tree-extension:open-file-browser', - requires: [INotebookTree, IFileBrowserFactory], + requires: [INotebookTree, IDefaultFileBrowser], autoStart: true, activate: ( app: JupyterFrontEnd, notebookTree: INotebookTree, - factory: IFileBrowserFactory + browser: IDefaultFileBrowser ) => { const { commands } = app; commands.addCommand(CommandIDs.activate, { execute: () => { - const { defaultBrowser: browser } = factory; notebookTree.currentWidget = browser; } }); @@ -132,7 +131,7 @@ const openFileBrowser: JupyterFrontEndPlugin = { const notebookTreeWidget: JupyterFrontEndPlugin = { id: '@jupyter-notebook/tree-extension:widget', requires: [ - IFileBrowserFactory, + IDefaultFileBrowser, ITranslator, ISettingRegistry, IToolbarWidgetRegistry @@ -142,7 +141,7 @@ const notebookTreeWidget: JupyterFrontEndPlugin = { provides: INotebookTree, activate: ( app: JupyterFrontEnd, - factory: IFileBrowserFactory, + browser: IDefaultFileBrowser, translator: ITranslator, settingRegistry: ISettingRegistry, toolbarRegistry: IToolbarWidgetRegistry, @@ -153,7 +152,6 @@ const notebookTreeWidget: JupyterFrontEndPlugin = { const trans = translator.load('notebook'); - const { defaultBrowser: browser } = factory; browser.title.label = trans.__('Files'); browser.node.setAttribute('role', 'region'); browser.node.setAttribute('aria-label', trans.__('File Browser Section')); diff --git a/packages/tree/package.json b/packages/tree/package.json index ef28365b34..0149ad0bf6 100644 --- a/packages/tree/package.json +++ b/packages/tree/package.json @@ -40,21 +40,21 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.0.0-alpha.11", - "@jupyterlab/application": "^4.0.0-alpha.17", - "@jupyterlab/apputils": "^4.0.0-alpha.17", - "@jupyterlab/coreutils": "^6.0.0-alpha.17", - "@jupyterlab/docmanager": "^4.0.0-alpha.17", - "@jupyterlab/filebrowser": "^4.0.0-alpha.17", - "@jupyterlab/mainmenu": "^4.0.0-alpha.17", - "@jupyterlab/services": "^7.0.0-alpha.17", - "@jupyterlab/settingregistry": "^4.0.0-alpha.17", - "@jupyterlab/statedb": "^4.0.0-alpha.17", - "@jupyterlab/translation": "^4.0.0-alpha.17", - "@jupyterlab/ui-components": "^4.0.0-alpha.32", - "@lumino/algorithm": "^2.0.0-alpha.7", - "@lumino/commands": "^2.0.0-alpha.7", - "@lumino/coreutils": "^2.0.0-alpha.7", - "@lumino/widgets": "^2.0.0-alpha.7" + "@jupyterlab/application": "^4.0.0-alpha.18", + "@jupyterlab/apputils": "^4.0.0-alpha.18", + "@jupyterlab/coreutils": "^6.0.0-alpha.18", + "@jupyterlab/docmanager": "^4.0.0-alpha.18", + "@jupyterlab/filebrowser": "^4.0.0-alpha.18", + "@jupyterlab/mainmenu": "^4.0.0-alpha.18", + "@jupyterlab/services": "^7.0.0-alpha.18", + "@jupyterlab/settingregistry": "^4.0.0-alpha.18", + "@jupyterlab/statedb": "^4.0.0-alpha.18", + "@jupyterlab/translation": "^4.0.0-alpha.18", + "@jupyterlab/ui-components": "^4.0.0-alpha.33", + "@lumino/algorithm": "^2.0.0-beta.0", + "@lumino/commands": "^2.0.0-beta.1", + "@lumino/coreutils": "^2.0.0-beta.0", + "@lumino/widgets": "^2.0.0-beta.1" }, "devDependencies": { "rimraf": "^3.0.2", diff --git a/packages/ui-components/package.json b/packages/ui-components/package.json index b5ab7f60ea..f7eea2cf29 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.32", - "react": "^17.0.1", - "react-dom": "^17.0.1" + "@jupyterlab/ui-components": "^4.0.0-alpha.33", + "react": "^18.2.0", + "react-dom": "^18.2.0" }, "devDependencies": { "@babel/core": "^7.10.2", "@babel/preset-env": "^7.10.2", - "@jupyterlab/testutils": "^4.0.0-alpha.17", + "@jupyterlab/testutils": "^4.0.0-alpha.18", "@types/jest": "^29.2.5", "babel-loader": "^8.0.6", "jest": "^29.3.1", diff --git a/pyproject.toml b/pyproject.toml index 6313bc4528..4856f962aa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["hatchling>=1.11", "jupyterlab>=4.0.0a32,<5"] +requires = ["hatchling>=1.11", "jupyterlab>=4.0.0a33,<5"] build-backend = "hatchling.build" [project] @@ -7,7 +7,7 @@ name = "notebook" description = "Jupyter Notebook - A web-based notebook environment for interactive computing" readme = "README.md" license = { file = "LICENSE" } -requires-python = ">=3.7" +requires-python = ">=3.8" authors = [ { name = "Jupyter Development Team", email = "jupyter@googlegroups.com" }, ] @@ -23,7 +23,6 @@ classifiers = [ "Intended Audience :: System Administrators", "License :: OSI Approved :: BSD License", "Programming Language :: Python", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", @@ -31,12 +30,12 @@ classifiers = [ "Typing :: Typed", ] dependencies = [ - "jupyter_server>=2.0.0rc3,<3", + "jupyter_server>=2.0.1,<3", "importlib-resources>=5.0;python_version<\"3.9\"", - "jupyterlab>=4.0.0a32,<5", - "jupyterlab_server>=2.16.3,<3", + "jupyterlab>=4.0.0a33,<5", + "jupyterlab_server>=2.19.0,<3", "notebook_shim>=0.2,<0.3", - "tornado>=6.1.0", + "tornado>=6.2.0", ] dynamic = ["version"] @@ -60,8 +59,8 @@ test = [ "pytest-timeout", "pytest-console-scripts", "ipykernel", - "jupyter_server[test]>=2.0.0rc3,<3", - "jupyterlab_server[test]>=2.16.3,<3", + "jupyter_server[test]>=2.0.1,<3", + "jupyterlab_server[test]>=2.19.0,<3", ] docs = [ "myst_parser", diff --git a/ui-tests/test/general.spec.ts b/ui-tests/test/general.spec.ts index 57cc907621..4ae1643298 100644 --- a/ui-tests/test/general.spec.ts +++ b/ui-tests/test/general.spec.ts @@ -24,8 +24,16 @@ test.describe('General', () => { ".jp-Notebook-ExecutionIndicator[data-status='idle']" ); + const checkpointLocator = '.jp-NotebookCheckpoint'; // wait for the checkpoint indicator to be displayed - await page.waitForSelector('.jp-NotebookCheckpoint'); + await page.waitForSelector(checkpointLocator); + + // remove the amount of seconds manually since it might display strings such as "3 seconds ago" + await page + .locator(checkpointLocator) + .evaluate( + element => (element.innerHTML = 'Last Checkpoint: 3 seconds ago') + ); // force switching back to command mode to avoid capturing the cursor in the screenshot await page.evaluate(async () => { diff --git a/ui-tests/test/general.spec.ts-snapshots/notebook-chromium-linux.png b/ui-tests/test/general.spec.ts-snapshots/notebook-chromium-linux.png index 840c125a49..9320dc0ac8 100644 Binary files a/ui-tests/test/general.spec.ts-snapshots/notebook-chromium-linux.png and b/ui-tests/test/general.spec.ts-snapshots/notebook-chromium-linux.png differ diff --git a/ui-tests/test/general.spec.ts-snapshots/notebook-firefox-linux.png b/ui-tests/test/general.spec.ts-snapshots/notebook-firefox-linux.png index ec9c5e87a0..f860037b8c 100644 Binary files a/ui-tests/test/general.spec.ts-snapshots/notebook-firefox-linux.png and b/ui-tests/test/general.spec.ts-snapshots/notebook-firefox-linux.png differ diff --git a/yarn.lock b/yarn.lock index e25ab259a7..95c23a0d6b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -24,45 +24,36 @@ dependencies: "@babel/highlight" "^7.18.6" -"@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/compat-data@^7.17.7", "@babel/compat-data@^7.20.1", "@babel/compat-data@^7.20.5": + version "7.20.14" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.14.tgz#4106fc8b755f3e3ee0a0a7c27dde5de1d2b2baf8" + integrity sha512-0YpKHD6ImkWMEINCyDAD0HLLUH/lPCefG8ld9it8DJB2wnApraKuhgYTvTY1z7UFIfBTGy5LwncZ+5HWWGbhFw== "@babel/core@^7.10.2", "@babel/core@^7.11.6", "@babel/core@^7.12.3": - version "7.19.3" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.19.3.tgz#2519f62a51458f43b682d61583c3810e7dcee64c" - integrity sha512-WneDJxdsjEvyKtXKsaBGbDeiyOjR5vYq4HcShxnIbG0qixpoHjI3MqeZM9NDvsojNCEBItQE4juOo/bU6e72gQ== + version "7.20.12" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.12.tgz#7930db57443c6714ad216953d1356dac0eb8496d" + integrity sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg== dependencies: "@ampproject/remapping" "^2.1.0" "@babel/code-frame" "^7.18.6" - "@babel/generator" "^7.19.3" - "@babel/helper-compilation-targets" "^7.19.3" - "@babel/helper-module-transforms" "^7.19.0" - "@babel/helpers" "^7.19.0" - "@babel/parser" "^7.19.3" - "@babel/template" "^7.18.10" - "@babel/traverse" "^7.19.3" - "@babel/types" "^7.19.3" + "@babel/generator" "^7.20.7" + "@babel/helper-compilation-targets" "^7.20.7" + "@babel/helper-module-transforms" "^7.20.11" + "@babel/helpers" "^7.20.7" + "@babel/parser" "^7.20.7" + "@babel/template" "^7.20.7" + "@babel/traverse" "^7.20.12" + "@babel/types" "^7.20.7" convert-source-map "^1.7.0" debug "^4.1.0" gensync "^1.0.0-beta.2" - json5 "^2.2.1" + json5 "^2.2.2" semver "^6.3.0" -"@babel/generator@^7.19.3": - 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.4" - "@jridgewell/gen-mapping" "^0.3.2" - jsesc "^2.5.1" - -"@babel/generator@^7.19.4", "@babel/generator@^7.20.7", "@babel/generator@^7.7.2": - version "7.20.7" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.7.tgz#f8ef57c8242665c5929fe2e8d82ba75460187b4a" - integrity sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw== +"@babel/generator@^7.20.7", "@babel/generator@^7.7.2": + version "7.20.14" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.14.tgz#9fa772c9f86a46c6ac9b321039400712b96f64ce" + integrity sha512-AEmuXHdcD3A52HHXxaTmYlb8q/xMEhoRP67B3T4Oq7lbmSoqroMZzjnGj3+i1io3pdnF8iBYVu4Ilj+c4hBxYg== dependencies: "@babel/types" "^7.20.7" "@jridgewell/gen-mapping" "^0.3.2" @@ -83,30 +74,32 @@ "@babel/helper-explode-assignable-expression" "^7.18.6" "@babel/types" "^7.18.9" -"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.19.0", "@babel/helper-compilation-targets@^7.19.3": - version "7.19.3" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.3.tgz#a10a04588125675d7c7ae299af86fa1b2ee038ca" - integrity sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg== +"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.20.0", "@babel/helper-compilation-targets@^7.20.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz#a6cd33e93629f5eb473b021aac05df62c4cd09bb" + integrity sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ== dependencies: - "@babel/compat-data" "^7.19.3" + "@babel/compat-data" "^7.20.5" "@babel/helper-validator-option" "^7.18.6" browserslist "^4.21.3" + lru-cache "^5.1.1" semver "^6.3.0" -"@babel/helper-create-class-features-plugin@^7.18.6": - version "7.19.0" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.19.0.tgz#bfd6904620df4e46470bae4850d66be1054c404b" - integrity sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw== +"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.20.5", "@babel/helper-create-class-features-plugin@^7.20.7": + version "7.20.12" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.12.tgz#4349b928e79be05ed2d1643b20b99bb87c503819" + integrity sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ== dependencies: "@babel/helper-annotate-as-pure" "^7.18.6" "@babel/helper-environment-visitor" "^7.18.9" "@babel/helper-function-name" "^7.19.0" - "@babel/helper-member-expression-to-functions" "^7.18.9" + "@babel/helper-member-expression-to-functions" "^7.20.7" "@babel/helper-optimise-call-expression" "^7.18.6" - "@babel/helper-replace-supers" "^7.18.9" + "@babel/helper-replace-supers" "^7.20.7" + "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" "@babel/helper-split-export-declaration" "^7.18.6" -"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.19.0": +"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.20.5": version "7.20.5" resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.20.5.tgz#5ea79b59962a09ec2acf20a963a01ab4d076ccca" integrity sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w== @@ -153,12 +146,12 @@ dependencies: "@babel/types" "^7.18.6" -"@babel/helper-member-expression-to-functions@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz#1531661e8375af843ad37ac692c132841e2fd815" - integrity sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg== +"@babel/helper-member-expression-to-functions@^7.20.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.20.7.tgz#a6f26e919582275a93c3aa6594756d71b0bb7f05" + integrity sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw== dependencies: - "@babel/types" "^7.18.9" + "@babel/types" "^7.20.7" "@babel/helper-module-imports@^7.18.6": version "7.18.6" @@ -167,19 +160,19 @@ dependencies: "@babel/types" "^7.18.6" -"@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.19.0": - version "7.19.0" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.19.0.tgz#309b230f04e22c58c6a2c0c0c7e50b216d350c30" - integrity sha512-3HBZ377Fe14RbLIA+ac3sY4PTgpxHVkFrESaWhoI5PuyXPBBX8+C34qblV9G89ZtycGJCmCI/Ut+VUDK4bltNQ== +"@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.20.11": + version "7.20.11" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.20.11.tgz#df4c7af713c557938c50ea3ad0117a7944b2f1b0" + integrity sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg== dependencies: "@babel/helper-environment-visitor" "^7.18.9" "@babel/helper-module-imports" "^7.18.6" - "@babel/helper-simple-access" "^7.18.6" + "@babel/helper-simple-access" "^7.20.2" "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/helper-validator-identifier" "^7.18.6" - "@babel/template" "^7.18.10" - "@babel/traverse" "^7.19.0" - "@babel/types" "^7.19.0" + "@babel/helper-validator-identifier" "^7.19.1" + "@babel/template" "^7.20.7" + "@babel/traverse" "^7.20.10" + "@babel/types" "^7.20.7" "@babel/helper-optimise-call-expression@^7.18.6": version "7.18.6" @@ -188,12 +181,12 @@ dependencies: "@babel/types" "^7.18.6" -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": - version "7.19.0" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.19.0.tgz#4796bb14961521f0f8715990bee2fb6e51ce21bf" - integrity sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw== +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": + version "7.20.2" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz#d1b9000752b18d0877cff85a5c376ce5c3121629" + integrity sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ== -"@babel/helper-remap-async-to-generator@^7.18.6", "@babel/helper-remap-async-to-generator@^7.18.9": +"@babel/helper-remap-async-to-generator@^7.18.9": version "7.18.9" resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz#997458a0e3357080e54e1d79ec347f8a8cd28519" integrity sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA== @@ -203,25 +196,26 @@ "@babel/helper-wrap-function" "^7.18.9" "@babel/types" "^7.18.9" -"@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.18.9": - version "7.19.1" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.19.1.tgz#e1592a9b4b368aa6bdb8784a711e0bcbf0612b78" - integrity sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw== +"@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.20.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz#243ecd2724d2071532b2c8ad2f0f9f083bcae331" + integrity sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A== dependencies: "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-member-expression-to-functions" "^7.18.9" + "@babel/helper-member-expression-to-functions" "^7.20.7" "@babel/helper-optimise-call-expression" "^7.18.6" - "@babel/traverse" "^7.19.1" - "@babel/types" "^7.19.0" + "@babel/template" "^7.20.7" + "@babel/traverse" "^7.20.7" + "@babel/types" "^7.20.7" -"@babel/helper-simple-access@^7.18.6": - version "7.19.4" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.19.4.tgz#be553f4951ac6352df2567f7daa19a0ee15668e7" - integrity sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg== +"@babel/helper-simple-access@^7.20.2": + version "7.20.2" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz#0ab452687fe0c2cfb1e2b9e0015de07fc2d62dd9" + integrity sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA== dependencies: - "@babel/types" "^7.19.4" + "@babel/types" "^7.20.2" -"@babel/helper-skip-transparent-expression-wrappers@^7.18.9": +"@babel/helper-skip-transparent-expression-wrappers@^7.20.0": version "7.20.0" resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz#fbe4c52f60518cab8140d77101f0e63a8a230684" integrity sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg== @@ -260,14 +254,14 @@ "@babel/traverse" "^7.20.5" "@babel/types" "^7.20.5" -"@babel/helpers@^7.19.0": - 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== +"@babel/helpers@^7.20.7": + version "7.20.13" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.13.tgz#e3cb731fb70dc5337134cadc24cbbad31cc87ad2" + integrity sha512-nzJ0DWCL3gB5RCXbUO3KIMMsBY2Eqbx8mBpKGE/02PgyRQFcPQLbkQ1vyy596mZLaP+dAfD+R4ckASzNVmW3jg== dependencies: - "@babel/template" "^7.18.10" - "@babel/traverse" "^7.19.4" - "@babel/types" "^7.19.4" + "@babel/template" "^7.20.7" + "@babel/traverse" "^7.20.13" + "@babel/types" "^7.20.7" "@babel/highlight@^7.10.4", "@babel/highlight@^7.18.6": version "7.18.6" @@ -278,15 +272,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.4" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.19.4.tgz#03c4339d2b8971eb3beca5252bafd9b9f79db3dc" - integrity sha512-qpVT7gtuOLjWeDTKLkJ6sryqLliBaFpAtGeqw5cs5giLldvh+Ch0plqnUMKoVAUS6ZEueQQiZV+p5pxtPitEsA== - -"@babel/parser@^7.19.4", "@babel/parser@^7.20.7": - version "7.20.7" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.7.tgz#66fe23b3c8569220817d5feb8b9dcdc95bb4f71b" - integrity sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg== +"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.13", "@babel/parser@^7.20.7": + version "7.20.15" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.15.tgz#eec9f36d8eaf0948bb88c87a46784b5ee9fd0c89" + integrity sha512-DI4a1oZuf8wC+oAJA9RW6ga3Zbe8RZFt7kD9i4qAspz3I/yHet1VvC3DiSy/fsUvv5pvJuNPh0LPOdCcqinDPg== "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6": version "7.18.6" @@ -296,21 +285,21 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz#a11af19aa373d68d561f08e0a57242350ed0ec50" - integrity sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg== + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz#d9c85589258539a22a901033853101a6198d4ef1" + integrity sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ== dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9" - "@babel/plugin-proposal-optional-chaining" "^7.18.9" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" + "@babel/plugin-proposal-optional-chaining" "^7.20.7" -"@babel/plugin-proposal-async-generator-functions@^7.19.1": - version "7.19.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.19.1.tgz#34f6f5174b688529342288cd264f80c9ea9fb4a7" - integrity sha512-0yu8vNATgLy4ivqMNBIwb1HebCelqN7YX8SL3FDXORv/RqT0zEEWUCH4GH44JsSrvCu6GqnAdR5EBFAPeNBB4Q== +"@babel/plugin-proposal-async-generator-functions@^7.20.1": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz#bfb7276d2d573cb67ba379984a2334e262ba5326" + integrity sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA== dependencies: "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-plugin-utils" "^7.19.0" + "@babel/helper-plugin-utils" "^7.20.2" "@babel/helper-remap-async-to-generator" "^7.18.9" "@babel/plugin-syntax-async-generators" "^7.8.4" @@ -323,12 +312,12 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-proposal-class-static-block@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.6.tgz#8aa81d403ab72d3962fc06c26e222dacfc9b9020" - integrity sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw== + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.20.7.tgz#92592e9029b13b15be0f7ce6a7aedc2879ca45a7" + integrity sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ== dependencies: - "@babel/helper-create-class-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-create-class-features-plugin" "^7.20.7" + "@babel/helper-plugin-utils" "^7.20.2" "@babel/plugin-syntax-class-static-block" "^7.14.5" "@babel/plugin-proposal-dynamic-import@^7.18.6": @@ -356,11 +345,11 @@ "@babel/plugin-syntax-json-strings" "^7.8.3" "@babel/plugin-proposal-logical-assignment-operators@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz#8148cbb350483bf6220af06fa6db3690e14b2e23" - integrity sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q== + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz#dfbcaa8f7b4d37b51e8bfb46d94a5aea2bb89d83" + integrity sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug== dependencies: - "@babel/helper-plugin-utils" "^7.18.9" + "@babel/helper-plugin-utils" "^7.20.2" "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" "@babel/plugin-proposal-nullish-coalescing-operator@^7.18.6": @@ -379,16 +368,16 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-numeric-separator" "^7.10.4" -"@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== +"@babel/plugin-proposal-object-rest-spread@^7.20.2": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz#aa662940ef425779c75534a5c41e9d936edc390a" + integrity sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg== dependencies: - "@babel/compat-data" "^7.19.4" - "@babel/helper-compilation-targets" "^7.19.3" - "@babel/helper-plugin-utils" "^7.19.0" + "@babel/compat-data" "^7.20.5" + "@babel/helper-compilation-targets" "^7.20.7" + "@babel/helper-plugin-utils" "^7.20.2" "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-transform-parameters" "^7.18.8" + "@babel/plugin-transform-parameters" "^7.20.7" "@babel/plugin-proposal-optional-catch-binding@^7.18.6": version "7.18.6" @@ -398,13 +387,13 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" -"@babel/plugin-proposal-optional-chaining@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz#e8e8fe0723f2563960e4bf5e9690933691915993" - integrity sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w== +"@babel/plugin-proposal-optional-chaining@^7.18.9", "@babel/plugin-proposal-optional-chaining@^7.20.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.20.7.tgz#49f2b372519ab31728cc14115bb0998b15bfda55" + integrity sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ== dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" "@babel/plugin-syntax-optional-chaining" "^7.8.3" "@babel/plugin-proposal-private-methods@^7.18.6": @@ -416,13 +405,13 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-proposal-private-property-in-object@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz#a64137b232f0aca3733a67eb1a144c192389c503" - integrity sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw== + version "7.20.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.20.5.tgz#309c7668f2263f1c711aa399b5a9a6291eef6135" + integrity sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ== dependencies: "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-create-class-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-create-class-features-plugin" "^7.20.5" + "@babel/helper-plugin-utils" "^7.20.2" "@babel/plugin-syntax-private-property-in-object" "^7.14.5" "@babel/plugin-proposal-unicode-property-regex@^7.18.6", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": @@ -475,12 +464,12 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-syntax-import-assertions@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.18.6.tgz#cd6190500a4fa2fe31990a963ffab4b63e4505e4" - integrity sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ== +"@babel/plugin-syntax-import-assertions@^7.20.0": + version "7.20.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz#bb50e0d4bea0957235390641209394e87bdb9cc4" + integrity sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ== dependencies: - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-plugin-utils" "^7.19.0" "@babel/plugin-syntax-import-meta@^7.8.3": version "7.10.4" @@ -567,20 +556,20 @@ "@babel/helper-plugin-utils" "^7.19.0" "@babel/plugin-transform-arrow-functions@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.18.6.tgz#19063fcf8771ec7b31d742339dac62433d0611fe" - integrity sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ== + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.20.7.tgz#bea332b0e8b2dab3dafe55a163d8227531ab0551" + integrity sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ== dependencies: - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-plugin-utils" "^7.20.2" "@babel/plugin-transform-async-to-generator@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.18.6.tgz#ccda3d1ab9d5ced5265fdb13f1882d5476c71615" - integrity sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag== + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz#dfee18623c8cb31deb796aa3ca84dda9cea94354" + integrity sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q== dependencies: "@babel/helper-module-imports" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/helper-remap-async-to-generator" "^7.18.6" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-remap-async-to-generator" "^7.18.9" "@babel/plugin-transform-block-scoped-functions@^7.18.6": version "7.18.6" @@ -589,41 +578,42 @@ dependencies: "@babel/helper-plugin-utils" "^7.18.6" -"@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== +"@babel/plugin-transform-block-scoping@^7.20.2": + version "7.20.15" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.15.tgz#3e1b2aa9cbbe1eb8d644c823141a9c5c2a22392d" + integrity sha512-Vv4DMZ6MiNOhu/LdaZsT/bsLRxgL94d269Mv4R/9sp6+Mp++X/JqypZYypJXLlM4mlL352/Egzbzr98iABH1CA== dependencies: - "@babel/helper-plugin-utils" "^7.19.0" + "@babel/helper-plugin-utils" "^7.20.2" -"@babel/plugin-transform-classes@^7.19.0": - version "7.19.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.19.0.tgz#0e61ec257fba409c41372175e7c1e606dc79bb20" - integrity sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A== +"@babel/plugin-transform-classes@^7.20.2": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.7.tgz#f438216f094f6bb31dc266ebfab8ff05aecad073" + integrity sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ== dependencies: "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-compilation-targets" "^7.19.0" + "@babel/helper-compilation-targets" "^7.20.7" "@babel/helper-environment-visitor" "^7.18.9" "@babel/helper-function-name" "^7.19.0" "@babel/helper-optimise-call-expression" "^7.18.6" - "@babel/helper-plugin-utils" "^7.19.0" - "@babel/helper-replace-supers" "^7.18.9" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-replace-supers" "^7.20.7" "@babel/helper-split-export-declaration" "^7.18.6" globals "^11.1.0" "@babel/plugin-transform-computed-properties@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz#2357a8224d402dad623caf6259b611e56aec746e" - integrity sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw== + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.20.7.tgz#704cc2fd155d1c996551db8276d55b9d46e4d0aa" + integrity sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ== dependencies: - "@babel/helper-plugin-utils" "^7.18.9" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/template" "^7.20.7" -"@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== +"@babel/plugin-transform-destructuring@^7.20.2": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.7.tgz#8bda578f71620c7de7c93af590154ba331415454" + integrity sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA== dependencies: - "@babel/helper-plugin-utils" "^7.19.0" + "@babel/helper-plugin-utils" "^7.20.2" "@babel/plugin-transform-dotall-regex@^7.18.6", "@babel/plugin-transform-dotall-regex@^7.4.4": version "7.18.6" @@ -678,35 +668,32 @@ dependencies: "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-modules-amd@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.18.6.tgz#8c91f8c5115d2202f277549848874027d7172d21" - integrity sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg== +"@babel/plugin-transform-modules-amd@^7.19.6": + version "7.20.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz#3daccca8e4cc309f03c3a0c4b41dc4b26f55214a" + integrity sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g== dependencies: - "@babel/helper-module-transforms" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - babel-plugin-dynamic-import-node "^2.3.3" + "@babel/helper-module-transforms" "^7.20.11" + "@babel/helper-plugin-utils" "^7.20.2" -"@babel/plugin-transform-modules-commonjs@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.6.tgz#afd243afba166cca69892e24a8fd8c9f2ca87883" - integrity sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q== +"@babel/plugin-transform-modules-commonjs@^7.19.6": + version "7.20.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.20.11.tgz#8cb23010869bf7669fd4b3098598b6b2be6dc607" + integrity sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw== dependencies: - "@babel/helper-module-transforms" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/helper-simple-access" "^7.18.6" - babel-plugin-dynamic-import-node "^2.3.3" + "@babel/helper-module-transforms" "^7.20.11" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-simple-access" "^7.20.2" -"@babel/plugin-transform-modules-systemjs@^7.19.0": - version "7.19.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.0.tgz#5f20b471284430f02d9c5059d9b9a16d4b085a1f" - integrity sha512-x9aiR0WXAWmOWsqcsnrzGR+ieaTMVyGyffPVA7F8cXAGt/UxefYv6uSHZLkAFChN5M5Iy1+wjE+xJuPt22H39A== +"@babel/plugin-transform-modules-systemjs@^7.19.6": + version "7.20.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz#467ec6bba6b6a50634eea61c9c232654d8a4696e" + integrity sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw== dependencies: "@babel/helper-hoist-variables" "^7.18.6" - "@babel/helper-module-transforms" "^7.19.0" - "@babel/helper-plugin-utils" "^7.19.0" - "@babel/helper-validator-identifier" "^7.18.6" - babel-plugin-dynamic-import-node "^2.3.3" + "@babel/helper-module-transforms" "^7.20.11" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-validator-identifier" "^7.19.1" "@babel/plugin-transform-modules-umd@^7.18.6": version "7.18.6" @@ -717,12 +704,12 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-transform-named-capturing-groups-regex@^7.19.1": - version "7.19.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.19.1.tgz#ec7455bab6cd8fb05c525a94876f435a48128888" - integrity sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw== + version "7.20.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz#626298dd62ea51d452c3be58b285d23195ba69a8" + integrity sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.19.0" - "@babel/helper-plugin-utils" "^7.19.0" + "@babel/helper-create-regexp-features-plugin" "^7.20.5" + "@babel/helper-plugin-utils" "^7.20.2" "@babel/plugin-transform-new-target@^7.18.6": version "7.18.6" @@ -739,12 +726,12 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/helper-replace-supers" "^7.18.6" -"@babel/plugin-transform-parameters@^7.18.8": - version "7.18.8" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz#ee9f1a0ce6d78af58d0956a9378ea3427cccb48a" - integrity sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg== +"@babel/plugin-transform-parameters@^7.20.1", "@babel/plugin-transform-parameters@^7.20.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.7.tgz#0ee349e9d1bc96e78e3b37a7af423a4078a7083f" + integrity sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA== dependencies: - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-plugin-utils" "^7.20.2" "@babel/plugin-transform-property-literals@^7.18.6": version "7.18.6" @@ -754,12 +741,12 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-transform-regenerator@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz#585c66cb84d4b4bf72519a34cfce761b8676ca73" - integrity sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ== + version "7.20.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.20.5.tgz#57cda588c7ffb7f4f8483cc83bdcea02a907f04d" + integrity sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ== dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - regenerator-transform "^0.15.0" + "@babel/helper-plugin-utils" "^7.20.2" + regenerator-transform "^0.15.1" "@babel/plugin-transform-reserved-words@^7.18.6": version "7.18.6" @@ -776,12 +763,12 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-transform-spread@^7.19.0": - version "7.19.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.19.0.tgz#dd60b4620c2fec806d60cfaae364ec2188d593b6" - integrity sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w== + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz#c2d83e0b99d3bf83e07b11995ee24bf7ca09401e" + integrity sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw== dependencies: - "@babel/helper-plugin-utils" "^7.19.0" - "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" "@babel/plugin-transform-sticky-regex@^7.18.6": version "7.18.6" @@ -820,17 +807,17 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/preset-env@^7.10.2", "@babel/preset-env@^7.12.1": - version "7.19.4" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.19.4.tgz#4c91ce2e1f994f717efb4237891c3ad2d808c94b" - integrity sha512-5QVOTXUdqTCjQuh2GGtdd7YEhoRXBMVGROAtsBeLGIbIz3obCBIfRMT1I3ZKkMgNzwkyCkftDXSSkHxnfVf4qg== + version "7.20.2" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.20.2.tgz#9b1642aa47bb9f43a86f9630011780dab7f86506" + integrity sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg== dependencies: - "@babel/compat-data" "^7.19.4" - "@babel/helper-compilation-targets" "^7.19.3" - "@babel/helper-plugin-utils" "^7.19.0" + "@babel/compat-data" "^7.20.1" + "@babel/helper-compilation-targets" "^7.20.0" + "@babel/helper-plugin-utils" "^7.20.2" "@babel/helper-validator-option" "^7.18.6" "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.18.6" "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.18.9" - "@babel/plugin-proposal-async-generator-functions" "^7.19.1" + "@babel/plugin-proposal-async-generator-functions" "^7.20.1" "@babel/plugin-proposal-class-properties" "^7.18.6" "@babel/plugin-proposal-class-static-block" "^7.18.6" "@babel/plugin-proposal-dynamic-import" "^7.18.6" @@ -839,7 +826,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.19.4" + "@babel/plugin-proposal-object-rest-spread" "^7.20.2" "@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" @@ -850,7 +837,7 @@ "@babel/plugin-syntax-class-static-block" "^7.14.5" "@babel/plugin-syntax-dynamic-import" "^7.8.3" "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - "@babel/plugin-syntax-import-assertions" "^7.18.6" + "@babel/plugin-syntax-import-assertions" "^7.20.0" "@babel/plugin-syntax-json-strings" "^7.8.3" "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" @@ -863,10 +850,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.19.4" - "@babel/plugin-transform-classes" "^7.19.0" + "@babel/plugin-transform-block-scoping" "^7.20.2" + "@babel/plugin-transform-classes" "^7.20.2" "@babel/plugin-transform-computed-properties" "^7.18.9" - "@babel/plugin-transform-destructuring" "^7.19.4" + "@babel/plugin-transform-destructuring" "^7.20.2" "@babel/plugin-transform-dotall-regex" "^7.18.6" "@babel/plugin-transform-duplicate-keys" "^7.18.9" "@babel/plugin-transform-exponentiation-operator" "^7.18.6" @@ -874,14 +861,14 @@ "@babel/plugin-transform-function-name" "^7.18.9" "@babel/plugin-transform-literals" "^7.18.9" "@babel/plugin-transform-member-expression-literals" "^7.18.6" - "@babel/plugin-transform-modules-amd" "^7.18.6" - "@babel/plugin-transform-modules-commonjs" "^7.18.6" - "@babel/plugin-transform-modules-systemjs" "^7.19.0" + "@babel/plugin-transform-modules-amd" "^7.19.6" + "@babel/plugin-transform-modules-commonjs" "^7.19.6" + "@babel/plugin-transform-modules-systemjs" "^7.19.6" "@babel/plugin-transform-modules-umd" "^7.18.6" "@babel/plugin-transform-named-capturing-groups-regex" "^7.19.1" "@babel/plugin-transform-new-target" "^7.18.6" "@babel/plugin-transform-object-super" "^7.18.6" - "@babel/plugin-transform-parameters" "^7.18.8" + "@babel/plugin-transform-parameters" "^7.20.1" "@babel/plugin-transform-property-literals" "^7.18.6" "@babel/plugin-transform-regenerator" "^7.18.6" "@babel/plugin-transform-reserved-words" "^7.18.6" @@ -893,7 +880,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.4" + "@babel/types" "^7.20.2" babel-plugin-polyfill-corejs2 "^0.3.3" babel-plugin-polyfill-corejs3 "^0.6.0" babel-plugin-polyfill-regenerator "^0.4.1" @@ -911,42 +898,26 @@ "@babel/types" "^7.4.4" esutils "^2.0.2" -"@babel/runtime@^7.16.7", "@babel/runtime@^7.17.8", "@babel/runtime@^7.8.4": - 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== +"@babel/runtime@^7.15.4", "@babel/runtime@^7.16.7", "@babel/runtime@^7.17.8", "@babel/runtime@^7.8.4": + version "7.20.13" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.13.tgz#7055ab8a7cff2b8f6058bf6ae45ff84ad2aded4b" + integrity sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA== dependencies: - regenerator-runtime "^0.13.4" + regenerator-runtime "^0.13.11" -"@babel/template@^7.18.10", "@babel/template@^7.3.3": - version "7.18.10" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.18.10.tgz#6f9134835970d1dbf0835c0d100c9f38de0c5e71" - integrity sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA== - dependencies: - "@babel/code-frame" "^7.18.6" - "@babel/parser" "^7.18.10" - "@babel/types" "^7.18.10" - -"@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== +"@babel/template@^7.18.10", "@babel/template@^7.20.7", "@babel/template@^7.3.3": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8" + integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw== dependencies: "@babel/code-frame" "^7.18.6" - "@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.4" - "@babel/types" "^7.19.4" - debug "^4.1.0" - globals "^11.1.0" + "@babel/parser" "^7.20.7" + "@babel/types" "^7.20.7" -"@babel/traverse@^7.20.5", "@babel/traverse@^7.7.2": - version "7.20.12" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.12.tgz#7f0f787b3a67ca4475adef1f56cb94f6abd4a4b5" - integrity sha512-MsIbFN0u+raeja38qboyF8TIT7K0BFzz/Yd/77ta4MsUsmP2RAnidIlwq7d5HFQrH/OZJecGV6B71C4zAgpoSQ== +"@babel/traverse@^7.20.10", "@babel/traverse@^7.20.12", "@babel/traverse@^7.20.13", "@babel/traverse@^7.20.5", "@babel/traverse@^7.20.7", "@babel/traverse@^7.7.2": + version "7.20.13" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.13.tgz#817c1ba13d11accca89478bd5481b2d168d07473" + integrity sha512-kMJXfF0T6DIS9E8cgdLCSAL+cuCK+YEZHWiLK0SXpTo8YRj5lpJu3CDNKiIBCne4m9hhTIqUg6SYTAI39tAiVQ== dependencies: "@babel/code-frame" "^7.18.6" "@babel/generator" "^7.20.7" @@ -954,21 +925,12 @@ "@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.20.7" + "@babel/parser" "^7.20.13" "@babel/types" "^7.20.7" 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.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.19.4" - "@babel/helper-validator-identifier" "^7.19.1" - to-fast-properties "^2.0.0" - -"@babel/types@^7.20.0", "@babel/types@^7.20.5", "@babel/types@^7.20.7": +"@babel/types@^7.0.0", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.0", "@babel/types@^7.20.0", "@babel/types@^7.20.2", "@babel/types@^7.20.5", "@babel/types@^7.20.7", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4": version "7.20.7" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.7.tgz#54ec75e252318423fc07fb644dc6a58a64c09b7f" integrity sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg== @@ -993,12 +955,12 @@ "@lezer/common" "^1.0.0" "@codemirror/commands@^6.0.0": - version "6.1.2" - resolved "https://registry.yarnpkg.com/@codemirror/commands/-/commands-6.1.2.tgz#84fb7d170047c3aeb7b0047ace59510bb19208de" - integrity sha512-sO3jdX1s0pam6lIdeSJLMN3DQ6mPEbM4yLvyKkdqtmd/UDwhXA5+AwFJ89rRXm6vTeOXBsE5cAmlos/t7MJdgg== + version "6.2.0" + resolved "https://registry.yarnpkg.com/@codemirror/commands/-/commands-6.2.0.tgz#e575b7542406be8bc61efb56f1827c71587bb5f8" + integrity sha512-+00smmZBradoGFEkRjliN7BjqPh/Hx0KCHWOEibUmflUqZz2RwBTU0MrVovEEHozhx3AUSGcO/rl3/5f9e9Biw== dependencies: "@codemirror/language" "^6.0.0" - "@codemirror/state" "^6.0.0" + "@codemirror/state" "^6.2.0" "@codemirror/view" "^6.0.0" "@lezer/common" "^1.0.0" @@ -1011,9 +973,9 @@ "@lezer/cpp" "^1.0.0" "@codemirror/lang-css@^6.0.0": - version "6.0.1" - resolved "https://registry.yarnpkg.com/@codemirror/lang-css/-/lang-css-6.0.1.tgz#470fff614e4cfbbe796ec43103420d59c797dd7a" - integrity sha512-rlLq1Dt0WJl+2epLQeAsfqIsx3lGu4HStHCJu95nGGuz2P2fNugbU3dQYafr2VRjM4eMC9HviI6jvS98CNtG5w== + version "6.0.2" + resolved "https://registry.yarnpkg.com/@codemirror/lang-css/-/lang-css-6.0.2.tgz#b286d0226755a751f60599e1e2969d351aebbd4c" + integrity sha512-4V4zmUOl2Glx0GWw0HiO1oGD4zvMlIQ3zx5hXOE6ipCjhohig2bhWRAasrZylH9pRNTcl1VMa59Lsl8lZWlTzw== dependencies: "@codemirror/autocomplete" "^6.0.0" "@codemirror/language" "^6.0.0" @@ -1021,19 +983,19 @@ "@lezer/css" "^1.0.0" "@codemirror/lang-html@^6.0.0": - version "6.4.0" - resolved "https://registry.yarnpkg.com/@codemirror/lang-html/-/lang-html-6.4.0.tgz#55227541426ec4efb13d9da45d7a85cabaa45c73" - integrity sha512-HHged0d9AQ/mpjYLTYDVdtI7235dO0COFNgc5uuiGokgjWx3L/sjMSw5aS/Nk7JG++LhsohG5HMNTCuqAq3Tcg== + version "6.4.1" + resolved "https://registry.yarnpkg.com/@codemirror/lang-html/-/lang-html-6.4.1.tgz#fe739212aa3e4931077da5ab178c4f7df1601ac5" + integrity sha512-9NzhWKAkWEwjXC04DKM6yrHnxIPFTqZNLDhWfZiKLMxUiU++XoHz9n6D5EPp1igBmX0vXcpFb5Kud6XzIJhZ4A== dependencies: "@codemirror/autocomplete" "^6.0.0" "@codemirror/lang-css" "^6.0.0" "@codemirror/lang-javascript" "^6.0.0" - "@codemirror/language" "^6.0.0" + "@codemirror/language" "^6.4.0" "@codemirror/state" "^6.0.0" "@codemirror/view" "^6.2.2" "@lezer/common" "^1.0.0" "@lezer/css" "^1.1.0" - "@lezer/html" "^1.1.0" + "@lezer/html" "^1.3.0" "@codemirror/lang-java@^6.0.0": version "6.0.1" @@ -1044,9 +1006,9 @@ "@lezer/java" "^1.0.0" "@codemirror/lang-javascript@^6.0.0": - version "6.1.2" - resolved "https://registry.yarnpkg.com/@codemirror/lang-javascript/-/lang-javascript-6.1.2.tgz#a11812ca1d21301cdeb80e51b4c007edcf55f813" - integrity sha512-OcwLfZXdQ1OHrLiIcKCn7MqZ7nx205CMKlhe+vL88pe2ymhT9+2P+QhwkYGxMICj8TDHyp8HFKVwpiisUT7iEQ== + version "6.1.3" + resolved "https://registry.yarnpkg.com/@codemirror/lang-javascript/-/lang-javascript-6.1.3.tgz#d5015507f27a19e0e07fbdbede4521a9cb29f580" + integrity sha512-u3JgK9AwfNpyGwRhtzIVxVfH9yOK5ZNswmaN6W+XFuUXzW9o8CGgnSBEcaUgZ0hdLvHQHyM+3+22HKgbItki/w== dependencies: "@codemirror/autocomplete" "^6.0.0" "@codemirror/language" "^6.0.0" @@ -1105,9 +1067,9 @@ "@lezer/rust" "^1.0.0" "@codemirror/lang-sql@^6.0.0": - version "6.3.3" - resolved "https://registry.yarnpkg.com/@codemirror/lang-sql/-/lang-sql-6.3.3.tgz#3a0cad06cd5be5557850035c5f6592ea41dd21c2" - integrity sha512-VNsHju8500fkiDyDU8jZyGQ8M0iXU0SmfeCoCeAYkACcEFlX63BOT8311pICXyw43VYRbS23w54RgSEQmixGjQ== + version "6.4.0" + resolved "https://registry.yarnpkg.com/@codemirror/lang-sql/-/lang-sql-6.4.0.tgz#f9303e511fb9511884f90043e354d5df3bd4b032" + integrity sha512-UWGK1+zc9+JtkiT+XxHByp4N6VLgLvC2x0tIudrJG26gyNtn0hWOVoB0A8kh/NABPWkKl3tLWDYf2qOBJS9Zdw== dependencies: "@codemirror/autocomplete" "^6.0.0" "@codemirror/language" "^6.0.0" @@ -1125,20 +1087,20 @@ "@lezer/lr" "^1.0.0" "@codemirror/lang-xml@^6.0.0": - version "6.0.1" - resolved "https://registry.yarnpkg.com/@codemirror/lang-xml/-/lang-xml-6.0.1.tgz#ac2dd701d26683163543248b5abc56829ba7fcc6" - integrity sha512-0tvycUTElajCcRKgsszhKjWX+uuOogdu5+enpfqYA+j0gnP8ek7LRxujh2/XMPRdXt/hwOML4slJLE7r2eX3yQ== + version "6.0.2" + resolved "https://registry.yarnpkg.com/@codemirror/lang-xml/-/lang-xml-6.0.2.tgz#66f75390bf8013fd8645db9cdd0b1d177e0777a4" + integrity sha512-JQYZjHL2LAfpiZI2/qZ/qzDuSqmGKMwyApYmEUUCTxLM4MWS7sATUEfIguZQr9Zjx/7gcdnewb039smF6nC2zw== dependencies: "@codemirror/autocomplete" "^6.0.0" - "@codemirror/language" "^6.0.0" + "@codemirror/language" "^6.4.0" "@codemirror/state" "^6.0.0" "@lezer/common" "^1.0.0" "@lezer/xml" "^1.0.0" -"@codemirror/language@^6.0.0", "@codemirror/language@^6.3.0": - version "6.3.2" - resolved "https://registry.yarnpkg.com/@codemirror/language/-/language-6.3.2.tgz#a3d5796d17a2cd3110bac0f5126db67c7e90a0f3" - integrity sha512-g42uHhOcEMAXjmozGG+rdom5UsbyfMxQFh7AbkeoaNImddL6Xt4cQDL0+JxmG7+as18rUAvZaqzP/TjsciVIrA== +"@codemirror/language@^6.0.0", "@codemirror/language@^6.3.0", "@codemirror/language@^6.4.0": + version "6.4.0" + resolved "https://registry.yarnpkg.com/@codemirror/language/-/language-6.4.0.tgz#803990e0f07bbb619e915651d3a57d143765dbcc" + integrity sha512-Wzb7GnNj8vnEtbPWiOy9H0m1fBtE28kepQNGLXekU2EEZv43BF865VKITUn+NoV8OpW6gRtvm29YEhqm46927Q== dependencies: "@codemirror/state" "^6.0.0" "@codemirror/view" "^6.0.0" @@ -1172,15 +1134,15 @@ "@codemirror/view" "^6.0.0" crelt "^1.0.5" -"@codemirror/state@^6.0.0", "@codemirror/state@^6.1.4": +"@codemirror/state@^6.0.0", "@codemirror/state@^6.1.4", "@codemirror/state@^6.2.0": version "6.2.0" resolved "https://registry.yarnpkg.com/@codemirror/state/-/state-6.2.0.tgz#a0fb08403ced8c2a68d1d0acee926bd20be922f2" integrity sha512-69QXtcrsc3RYtOtd+GsvczJ319udtBf1PTrr2KbLWM/e2CXUPnh0Nz9AUo8WfhSQ7GeL8dPVNUmhQVgpmuaNGA== "@codemirror/view@^6.0.0", "@codemirror/view@^6.2.2", "@codemirror/view@^6.6.0": - version "6.7.2" - resolved "https://registry.yarnpkg.com/@codemirror/view/-/view-6.7.2.tgz#13830dd6366af15d48e34a5518ab26bb42c440cb" - integrity sha512-HeK2GyycxceaQVyvYVYXmn1vUKYYBsHCcfGRSsFO+3fRRtwXx2STK0YiFBmiWx2vtU9gUAJgIUXUN8a0osI8Ng== + version "6.7.3" + resolved "https://registry.yarnpkg.com/@codemirror/view/-/view-6.7.3.tgz#be2f9d0e6fc8882fb192041bf78425ca04999827" + integrity sha512-Lt+4POnhXrZFfHOdPzXEHxrzwdy7cjqYlMkOWvoFGi6/bAsjzlFfr0NY3B15B/PGx+cDFgM1hlc12wvYeZbGLw== dependencies: "@codemirror/state" "^6.1.4" style-mod "^4.0.0" @@ -1256,109 +1218,109 @@ resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== -"@jest/console@^29.3.1": - version "29.3.1" - resolved "https://registry.yarnpkg.com/@jest/console/-/console-29.3.1.tgz#3e3f876e4e47616ea3b1464b9fbda981872e9583" - integrity sha512-IRE6GD47KwcqA09RIWrabKdHPiKDGgtAL31xDxbi/RjQMsr+lY+ppxmHwY0dUEV3qvvxZzoe5Hl0RXZJOjQNUg== +"@jest/console@^29.4.1": + version "29.4.1" + resolved "https://registry.yarnpkg.com/@jest/console/-/console-29.4.1.tgz#cbc31d73f6329f693b3d34b365124de797704fff" + integrity sha512-m+XpwKSi3PPM9znm5NGS8bBReeAJJpSkL1OuFCqaMaJL2YX9YXLkkI+MBchMPwu+ZuM2rynL51sgfkQteQ1CKQ== dependencies: - "@jest/types" "^29.3.1" + "@jest/types" "^29.4.1" "@types/node" "*" chalk "^4.0.0" - jest-message-util "^29.3.1" - jest-util "^29.3.1" + jest-message-util "^29.4.1" + jest-util "^29.4.1" slash "^3.0.0" -"@jest/core@^29.3.1": - version "29.3.1" - resolved "https://registry.yarnpkg.com/@jest/core/-/core-29.3.1.tgz#bff00f413ff0128f4debec1099ba7dcd649774a1" - integrity sha512-0ohVjjRex985w5MmO5L3u5GR1O30DexhBSpuwx2P+9ftyqHdJXnk7IUWiP80oHMvt7ubHCJHxV0a0vlKVuZirw== - dependencies: - "@jest/console" "^29.3.1" - "@jest/reporters" "^29.3.1" - "@jest/test-result" "^29.3.1" - "@jest/transform" "^29.3.1" - "@jest/types" "^29.3.1" +"@jest/core@^29.4.1": + version "29.4.1" + resolved "https://registry.yarnpkg.com/@jest/core/-/core-29.4.1.tgz#91371179b5959951e211dfaeea4277a01dcca14f" + integrity sha512-RXFTohpBqpaTebNdg5l3I5yadnKo9zLBajMT0I38D0tDhreVBYv3fA8kywthI00sWxPztWLD3yjiUkewwu/wKA== + dependencies: + "@jest/console" "^29.4.1" + "@jest/reporters" "^29.4.1" + "@jest/test-result" "^29.4.1" + "@jest/transform" "^29.4.1" + "@jest/types" "^29.4.1" "@types/node" "*" ansi-escapes "^4.2.1" chalk "^4.0.0" ci-info "^3.2.0" exit "^0.1.2" graceful-fs "^4.2.9" - jest-changed-files "^29.2.0" - jest-config "^29.3.1" - jest-haste-map "^29.3.1" - jest-message-util "^29.3.1" + jest-changed-files "^29.4.0" + jest-config "^29.4.1" + jest-haste-map "^29.4.1" + jest-message-util "^29.4.1" jest-regex-util "^29.2.0" - jest-resolve "^29.3.1" - jest-resolve-dependencies "^29.3.1" - jest-runner "^29.3.1" - jest-runtime "^29.3.1" - jest-snapshot "^29.3.1" - jest-util "^29.3.1" - jest-validate "^29.3.1" - jest-watcher "^29.3.1" + jest-resolve "^29.4.1" + jest-resolve-dependencies "^29.4.1" + jest-runner "^29.4.1" + jest-runtime "^29.4.1" + jest-snapshot "^29.4.1" + jest-util "^29.4.1" + jest-validate "^29.4.1" + jest-watcher "^29.4.1" micromatch "^4.0.4" - pretty-format "^29.3.1" + pretty-format "^29.4.1" slash "^3.0.0" strip-ansi "^6.0.0" -"@jest/environment@^29.3.1": - version "29.3.1" - resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-29.3.1.tgz#eb039f726d5fcd14698acd072ac6576d41cfcaa6" - integrity sha512-pMmvfOPmoa1c1QpfFW0nXYtNLpofqo4BrCIk6f2kW4JFeNlHV2t3vd+3iDLf31e2ot2Mec0uqZfmI+U0K2CFag== +"@jest/environment@^29.4.1": + version "29.4.1" + resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-29.4.1.tgz#52d232a85cdc995b407a940c89c86568f5a88ffe" + integrity sha512-pJ14dHGSQke7Q3mkL/UZR9ZtTOxqskZaC91NzamEH4dlKRt42W+maRBXiw/LWkdJe+P0f/zDR37+SPMplMRlPg== dependencies: - "@jest/fake-timers" "^29.3.1" - "@jest/types" "^29.3.1" + "@jest/fake-timers" "^29.4.1" + "@jest/types" "^29.4.1" "@types/node" "*" - jest-mock "^29.3.1" + jest-mock "^29.4.1" -"@jest/expect-utils@^29.3.1": - version "29.3.1" - resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-29.3.1.tgz#531f737039e9b9e27c42449798acb5bba01935b6" - integrity sha512-wlrznINZI5sMjwvUoLVk617ll/UYfGIZNxmbU+Pa7wmkL4vYzhV9R2pwVqUh4NWWuLQWkI8+8mOkxs//prKQ3g== +"@jest/expect-utils@^29.4.1": + version "29.4.1" + resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-29.4.1.tgz#105b9f3e2c48101f09cae2f0a4d79a1b3a419cbb" + integrity sha512-w6YJMn5DlzmxjO00i9wu2YSozUYRBhIoJ6nQwpMYcBMtiqMGJm1QBzOf6DDgRao8dbtpDoaqLg6iiQTvv0UHhQ== dependencies: jest-get-type "^29.2.0" -"@jest/expect@^29.3.1": - version "29.3.1" - resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-29.3.1.tgz#456385b62894349c1d196f2d183e3716d4c6a6cd" - integrity sha512-QivM7GlSHSsIAWzgfyP8dgeExPRZ9BIe2LsdPyEhCGkZkoyA+kGsoIzbKAfZCvvRzfZioKwPtCZIt5SaoxYCvg== +"@jest/expect@^29.4.1": + version "29.4.1" + resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-29.4.1.tgz#3338fa20f547bb6e550c4be37d6f82711cc13c38" + integrity sha512-ZxKJP5DTUNF2XkpJeZIzvnzF1KkfrhEF6Rz0HGG69fHl6Bgx5/GoU3XyaeFYEjuuKSOOsbqD/k72wFvFxc3iTw== dependencies: - expect "^29.3.1" - jest-snapshot "^29.3.1" + expect "^29.4.1" + jest-snapshot "^29.4.1" -"@jest/fake-timers@^29.3.1": - version "29.3.1" - resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-29.3.1.tgz#b140625095b60a44de820876d4c14da1aa963f67" - integrity sha512-iHTL/XpnDlFki9Tq0Q1GGuVeQ8BHZGIYsvCO5eN/O/oJaRzofG9Xndd9HuSDBI/0ZS79pg0iwn07OMTQ7ngF2A== +"@jest/fake-timers@^29.4.1": + version "29.4.1" + resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-29.4.1.tgz#7b673131e8ea2a2045858f08241cace5d518b42b" + integrity sha512-/1joI6rfHFmmm39JxNfmNAO3Nwm6Y0VoL5fJDy7H1AtWrD1CgRtqJbN9Ld6rhAkGO76qqp4cwhhxJ9o9kYjQMw== dependencies: - "@jest/types" "^29.3.1" - "@sinonjs/fake-timers" "^9.1.2" + "@jest/types" "^29.4.1" + "@sinonjs/fake-timers" "^10.0.2" "@types/node" "*" - jest-message-util "^29.3.1" - jest-mock "^29.3.1" - jest-util "^29.3.1" + jest-message-util "^29.4.1" + jest-mock "^29.4.1" + jest-util "^29.4.1" -"@jest/globals@^29.3.1": - version "29.3.1" - resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-29.3.1.tgz#92be078228e82d629df40c3656d45328f134a0c6" - integrity sha512-cTicd134vOcwO59OPaB6AmdHQMCtWOe+/DitpTZVxWgMJ+YvXL1HNAmPyiGbSHmF/mXVBkvlm8YYtQhyHPnV6Q== +"@jest/globals@^29.4.1": + version "29.4.1" + resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-29.4.1.tgz#3cd78c5567ab0249f09fbd81bf9f37a7328f4713" + integrity sha512-znoK2EuFytbHH0ZSf2mQK2K1xtIgmaw4Da21R2C/NE/+NnItm5mPEFQmn8gmF3f0rfOlmZ3Y3bIf7bFj7DHxAA== dependencies: - "@jest/environment" "^29.3.1" - "@jest/expect" "^29.3.1" - "@jest/types" "^29.3.1" - jest-mock "^29.3.1" + "@jest/environment" "^29.4.1" + "@jest/expect" "^29.4.1" + "@jest/types" "^29.4.1" + jest-mock "^29.4.1" -"@jest/reporters@^29.3.1": - version "29.3.1" - resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-29.3.1.tgz#9a6d78c109608e677c25ddb34f907b90e07b4310" - integrity sha512-GhBu3YFuDrcAYW/UESz1JphEAbvUjaY2vShRZRoRY1mxpCMB3yGSJ4j9n0GxVlEOdCf7qjvUfBCrTUUqhVfbRA== +"@jest/reporters@^29.4.1": + version "29.4.1" + resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-29.4.1.tgz#50d509c08575c75e3cd2176d72ec3786419d5e04" + integrity sha512-AISY5xpt2Xpxj9R6y0RF1+O6GRy9JsGa8+vK23Lmzdy1AYcpQn5ItX79wJSsTmfzPKSAcsY1LNt/8Y5Xe5LOSg== dependencies: "@bcoe/v8-coverage" "^0.2.3" - "@jest/console" "^29.3.1" - "@jest/test-result" "^29.3.1" - "@jest/transform" "^29.3.1" - "@jest/types" "^29.3.1" + "@jest/console" "^29.4.1" + "@jest/test-result" "^29.4.1" + "@jest/transform" "^29.4.1" + "@jest/types" "^29.4.1" "@jridgewell/trace-mapping" "^0.3.15" "@types/node" "*" chalk "^4.0.0" @@ -1371,20 +1333,20 @@ istanbul-lib-report "^3.0.0" istanbul-lib-source-maps "^4.0.0" istanbul-reports "^3.1.3" - jest-message-util "^29.3.1" - jest-util "^29.3.1" - jest-worker "^29.3.1" + jest-message-util "^29.4.1" + jest-util "^29.4.1" + jest-worker "^29.4.1" slash "^3.0.0" string-length "^4.0.1" strip-ansi "^6.0.0" v8-to-istanbul "^9.0.1" -"@jest/schemas@^29.0.0": - version "29.0.0" - resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.0.0.tgz#5f47f5994dd4ef067fb7b4188ceac45f77fe952a" - integrity sha512-3Ab5HgYIIAnS0HjqJHQYZS+zXc4tUmTmBH3z83ajI6afXp8X3ZtdLX+nXx+I7LNkJD7uN9LAVhgnjDgZa2z0kA== +"@jest/schemas@^29.4.0": + version "29.4.0" + resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.4.0.tgz#0d6ad358f295cc1deca0b643e6b4c86ebd539f17" + integrity sha512-0E01f/gOZeNTG76i5eWWSupvSHaIINrTie7vCyjiYFKgzNdyEGd12BUv4oNBFHOqlHDbtoJi3HrQ38KCC90NsQ== dependencies: - "@sinclair/typebox" "^0.24.1" + "@sinclair/typebox" "^0.25.16" "@jest/source-map@^29.2.0": version "29.2.0" @@ -1395,53 +1357,53 @@ callsites "^3.0.0" graceful-fs "^4.2.9" -"@jest/test-result@^29.3.1": - version "29.3.1" - resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-29.3.1.tgz#92cd5099aa94be947560a24610aa76606de78f50" - integrity sha512-qeLa6qc0ddB0kuOZyZIhfN5q0e2htngokyTWsGriedsDhItisW7SDYZ7ceOe57Ii03sL988/03wAcBh3TChMGw== +"@jest/test-result@^29.4.1": + version "29.4.1" + resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-29.4.1.tgz#997f19695e13b34779ceb3c288a416bd26c3238d" + integrity sha512-WRt29Lwt+hEgfN8QDrXqXGgCTidq1rLyFqmZ4lmJOpVArC8daXrZWkWjiaijQvgd3aOUj2fM8INclKHsQW9YyQ== dependencies: - "@jest/console" "^29.3.1" - "@jest/types" "^29.3.1" + "@jest/console" "^29.4.1" + "@jest/types" "^29.4.1" "@types/istanbul-lib-coverage" "^2.0.0" collect-v8-coverage "^1.0.0" -"@jest/test-sequencer@^29.3.1": - version "29.3.1" - resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-29.3.1.tgz#fa24b3b050f7a59d48f7ef9e0b782ab65123090d" - integrity sha512-IqYvLbieTv20ArgKoAMyhLHNrVHJfzO6ARZAbQRlY4UGWfdDnLlZEF0BvKOMd77uIiIjSZRwq3Jb3Fa3I8+2UA== +"@jest/test-sequencer@^29.4.1": + version "29.4.1" + resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-29.4.1.tgz#f7a006ec7058b194a10cf833c88282ef86d578fd" + integrity sha512-v5qLBNSsM0eHzWLXsQ5fiB65xi49A3ILPSFQKPXzGL4Vyux0DPZAIN7NAFJa9b4BiTDP9MBF/Zqc/QA1vuiJ0w== dependencies: - "@jest/test-result" "^29.3.1" + "@jest/test-result" "^29.4.1" graceful-fs "^4.2.9" - jest-haste-map "^29.3.1" + jest-haste-map "^29.4.1" slash "^3.0.0" -"@jest/transform@^29.3.1": - version "29.3.1" - resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-29.3.1.tgz#1e6bd3da4af50b5c82a539b7b1f3770568d6e36d" - integrity sha512-8wmCFBTVGYqFNLWfcOWoVuMuKYPUBTnTMDkdvFtAYELwDOl9RGwOsvQWGPFxDJ8AWY9xM/8xCXdqmPK3+Q5Lug== +"@jest/transform@^29.4.1": + version "29.4.1" + resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-29.4.1.tgz#e4f517841bb795c7dcdee1ba896275e2c2d26d4a" + integrity sha512-5w6YJrVAtiAgr0phzKjYd83UPbCXsBRTeYI4BXokv9Er9CcrH9hfXL/crCvP2d2nGOcovPUnlYiLPFLZrkG5Hg== dependencies: "@babel/core" "^7.11.6" - "@jest/types" "^29.3.1" + "@jest/types" "^29.4.1" "@jridgewell/trace-mapping" "^0.3.15" babel-plugin-istanbul "^6.1.1" chalk "^4.0.0" convert-source-map "^2.0.0" fast-json-stable-stringify "^2.1.0" graceful-fs "^4.2.9" - jest-haste-map "^29.3.1" + jest-haste-map "^29.4.1" jest-regex-util "^29.2.0" - jest-util "^29.3.1" + jest-util "^29.4.1" micromatch "^4.0.4" pirates "^4.0.4" slash "^3.0.0" - write-file-atomic "^4.0.1" + write-file-atomic "^5.0.0" -"@jest/types@^29.3.1": - version "29.3.1" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.3.1.tgz#7c5a80777cb13e703aeec6788d044150341147e3" - integrity sha512-d0S0jmmTpjnhCmNpApgX3jrUZgZ22ivKJRvL2lli5hpCRoNnp1f85r2/wpKfXuYu8E7Jjh1hGfhPyup1NM5AmA== +"@jest/types@^29.4.1": + version "29.4.1" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.4.1.tgz#f9f83d0916f50696661da72766132729dcb82ecb" + integrity sha512-zbrAXDUOnpJ+FMST2rV7QZOgec8rskg2zv8g2ajeqitp4tvZiyqTCYXANrKsM+ryj5o+LI+ZN2EgU9drrkiwSA== dependencies: - "@jest/schemas" "^29.0.0" + "@jest/schemas" "^29.4.0" "@types/istanbul-lib-coverage" "^2.0.0" "@types/istanbul-reports" "^3.0.0" "@types/node" "*" @@ -1497,163 +1459,165 @@ "@jridgewell/sourcemap-codec" "1.4.14" "@jupyter-notebook/application-extension@file:packages/application-extension": - version "7.0.0-alpha.10" - dependencies: - "@jupyter-notebook/application" "^7.0.0-alpha.10" - "@jupyter-notebook/ui-components" "^7.0.0-alpha.10" - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/celltags" "^4.0.0-alpha.17" - "@jupyterlab/codeeditor" "^4.0.0-alpha.17" - "@jupyterlab/console" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/docmanager" "^4.0.0-alpha.17" - "@jupyterlab/docregistry" "^4.0.0-alpha.17" - "@jupyterlab/mainmenu" "^4.0.0-alpha.17" - "@jupyterlab/settingregistry" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@lumino/coreutils" "^2.0.0-alpha.7" - "@lumino/disposable" "^2.0.0-alpha.7" - "@lumino/widgets" "^2.0.0-alpha.7" + version "7.0.0-alpha.11" + dependencies: + "@jupyter-notebook/application" "^7.0.0-alpha.11" + "@jupyter-notebook/ui-components" "^7.0.0-alpha.11" + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/celltags" "^4.0.0-alpha.18" + "@jupyterlab/codeeditor" "^4.0.0-alpha.18" + "@jupyterlab/console" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/docmanager" "^4.0.0-alpha.18" + "@jupyterlab/docregistry" "^4.0.0-alpha.18" + "@jupyterlab/mainmenu" "^4.0.0-alpha.18" + "@jupyterlab/settingregistry" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@lumino/coreutils" "^2.0.0-beta.0" + "@lumino/disposable" "^2.0.0-beta.1" + "@lumino/widgets" "^2.0.0-beta.1" "@jupyter-notebook/application@file:packages/application": - version "7.0.0-alpha.10" - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/docregistry" "^4.0.0-alpha.17" - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" - "@lumino/algorithm" "^2.0.0-alpha.7" - "@lumino/coreutils" "^2.0.0-alpha.7" - "@lumino/messaging" "^2.0.0-alpha.7" - "@lumino/polling" "^2.0.0-alpha.7" - "@lumino/signaling" "^2.0.0-alpha.7" - "@lumino/widgets" "^2.0.0-alpha.7" + version "7.0.0-alpha.11" + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/docregistry" "^4.0.0-alpha.18" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" + "@lumino/algorithm" "^2.0.0-beta.0" + "@lumino/coreutils" "^2.0.0-beta.0" + "@lumino/messaging" "^2.0.0-beta.0" + "@lumino/polling" "^2.0.0-beta.1" + "@lumino/signaling" "^2.0.0-beta.1" + "@lumino/widgets" "^2.0.0-beta.1" "@jupyter-notebook/console-extension@file:packages/console-extension": - version "7.0.0-alpha.10" + version "7.0.0-alpha.11" dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/console" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@lumino/algorithm" "^2.0.0-alpha.7" + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/console" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@lumino/algorithm" "^2.0.0-beta.0" "@jupyter-notebook/docmanager-extension@file:packages/docmanager-extension": - version "7.0.0-alpha.10" + version "7.0.0-alpha.11" dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/docmanager" "^4.0.0-alpha.17" - "@jupyterlab/docregistry" "^4.0.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@lumino/algorithm" "^2.0.0-alpha.7" - "@lumino/signaling" "^2.0.0-alpha.7" + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/docmanager" "^4.0.0-alpha.18" + "@jupyterlab/docregistry" "^4.0.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@lumino/algorithm" "^2.0.0-beta.0" + "@lumino/signaling" "^2.0.0-beta.1" "@jupyter-notebook/documentsearch-extension@file:packages/documentsearch-extension": - version "7.0.0-alpha.10" + version "7.0.0-alpha.11" dependencies: - "@jupyter-notebook/application" "^7.0.0-alpha.10" - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/documentsearch" "^4.0.0-alpha.17" - "@lumino/widgets" "^2.0.0-alpha.7" + "@jupyter-notebook/application" "^7.0.0-alpha.11" + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/documentsearch" "^4.0.0-alpha.18" + "@lumino/widgets" "^2.0.0-beta.1" "@jupyter-notebook/help-extension@file:packages/help-extension": - version "7.0.0-alpha.10" + version "7.0.0-alpha.11" dependencies: - "@jupyter-notebook/ui-components" "^7.0.0-alpha.10" - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/mainmenu" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" + "@jupyter-notebook/ui-components" "^7.0.0-alpha.11" + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/mainmenu" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + react "^18.2.0" + react-dom "^18.2.0" "@jupyter-notebook/lab-extension@file:packages/lab-extension": - version "7.0.0-alpha.10" - dependencies: - "@jupyter-notebook/application" "^7.0.0-alpha.10" - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/docregistry" "^4.0.0-alpha.17" - "@jupyterlab/notebook" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@lumino/commands" "^2.0.0-alpha.7" - "@lumino/disposable" "^2.0.0-alpha.7" + version "7.0.0-alpha.11" + dependencies: + "@jupyter-notebook/application" "^7.0.0-alpha.11" + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/docregistry" "^4.0.0-alpha.18" + "@jupyterlab/notebook" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@lumino/commands" "^2.0.0-beta.1" + "@lumino/disposable" "^2.0.0-beta.1" "@jupyter-notebook/notebook-extension@file:packages/notebook-extension": - version "7.0.0-alpha.10" - dependencies: - "@jupyter-notebook/application" "^7.0.0-alpha.10" - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/cells" "^4.0.0-alpha.17" - "@jupyterlab/docmanager" "^4.0.0-alpha.17" - "@jupyterlab/notebook" "^4.0.0-alpha.17" - "@jupyterlab/settingregistry" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@lumino/polling" "^2.0.0-alpha.7" - "@lumino/widgets" "^2.0.0-alpha.7" + version "7.0.0-alpha.11" + dependencies: + "@jupyter-notebook/application" "^7.0.0-alpha.11" + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/cells" "^4.0.0-alpha.18" + "@jupyterlab/docmanager" "^4.0.0-alpha.18" + "@jupyterlab/notebook" "^4.0.0-alpha.18" + "@jupyterlab/settingregistry" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@lumino/polling" "^2.0.0-beta.1" + "@lumino/widgets" "^2.0.0-beta.1" "@jupyter-notebook/terminal-extension@file:packages/terminal-extension": - version "7.0.0-alpha.10" + version "7.0.0-alpha.11" dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/terminal" "^4.0.0-alpha.17" - "@lumino/algorithm" "^2.0.0-alpha.7" + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/terminal" "^4.0.0-alpha.18" + "@lumino/algorithm" "^2.0.0-beta.0" "@jupyter-notebook/tree-extension@file:packages/tree-extension": - version "7.0.0-alpha.10" - dependencies: - "@jupyter-notebook/application" "^7.0.0-alpha.10" - "@jupyter-notebook/tree" "^7.0.0-alpha.10" - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/docmanager" "^4.0.0-alpha.17" - "@jupyterlab/filebrowser" "^4.0.0-alpha.17" - "@jupyterlab/mainmenu" "^4.0.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/settingeditor" "^4.0.0-alpha.17" - "@jupyterlab/settingregistry" "^4.0.0-alpha.17" - "@jupyterlab/statedb" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" - "@lumino/algorithm" "^2.0.0-alpha.7" - "@lumino/commands" "^2.0.0-alpha.7" - "@lumino/widgets" "^2.0.0-alpha.7" + version "7.0.0-alpha.11" + dependencies: + "@jupyter-notebook/application" "^7.0.0-alpha.11" + "@jupyter-notebook/tree" "^7.0.0-alpha.11" + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/docmanager" "^4.0.0-alpha.18" + "@jupyterlab/filebrowser" "^4.0.0-alpha.18" + "@jupyterlab/mainmenu" "^4.0.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/settingeditor" "^4.0.0-alpha.18" + "@jupyterlab/settingregistry" "^4.0.0-alpha.18" + "@jupyterlab/statedb" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" + "@lumino/algorithm" "^2.0.0-beta.0" + "@lumino/commands" "^2.0.0-beta.1" + "@lumino/widgets" "^2.0.0-beta.1" "@jupyter-notebook/tree@file:packages/tree": - version "7.0.0-alpha.10" - dependencies: - "@jupyter-notebook/application" "^7.0.0-alpha.10" - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/docmanager" "^4.0.0-alpha.17" - "@jupyterlab/filebrowser" "^4.0.0-alpha.17" - "@jupyterlab/mainmenu" "^4.0.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/settingregistry" "^4.0.0-alpha.17" - "@jupyterlab/statedb" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" - "@lumino/algorithm" "^2.0.0-alpha.7" - "@lumino/commands" "^2.0.0-alpha.7" - "@lumino/coreutils" "^2.0.0-alpha.7" - "@lumino/widgets" "^2.0.0-alpha.7" + version "7.0.0-alpha.11" + dependencies: + "@jupyter-notebook/application" "^7.0.0-alpha.11" + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/docmanager" "^4.0.0-alpha.18" + "@jupyterlab/filebrowser" "^4.0.0-alpha.18" + "@jupyterlab/mainmenu" "^4.0.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/settingregistry" "^4.0.0-alpha.18" + "@jupyterlab/statedb" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" + "@lumino/algorithm" "^2.0.0-beta.0" + "@lumino/commands" "^2.0.0-beta.1" + "@lumino/coreutils" "^2.0.0-beta.0" + "@lumino/widgets" "^2.0.0-beta.1" "@jupyter-notebook/ui-components@file:packages/ui-components": - version "7.0.0-alpha.10" + version "7.0.0-alpha.11" dependencies: - "@jupyterlab/ui-components" "^4.0.0-alpha.32" - react "^17.0.1" - react-dom "^17.0.1" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" + react "^18.2.0" + react-dom "^18.2.0" -"@jupyter/ydoc@~0.2.2": - version "0.2.2" - resolved "https://registry.yarnpkg.com/@jupyter/ydoc/-/ydoc-0.2.2.tgz#a2be83d2a0e076cef7ed77302e69153a0a4d6c16" - integrity sha512-UtU7ZxpL0k+QF9So4wtGxaS2C+nno58dig7sQUaBn48wlQDiuypzKgUmF7I37srpu6f/ywon3JBuEjxuL1CIBQ== +"@jupyter/ydoc@^0.3.1": + version "0.3.1" + resolved "https://registry.yarnpkg.com/@jupyter/ydoc/-/ydoc-0.3.1.tgz#d7859a9bb511f19571559ee8a4e12d2d2e50b64f" + integrity sha512-e7tzgNYJW3XhO0gf39cKQrXxw1/1Z7h950xsKauwUij06ngMluj464b+FK1/n3/p/jD1GMhx5RNkQYvX6V9tAg== dependencies: "@jupyterlab/nbformat" "^3.0.0 || ^4.0.0-alpha.15" "@lumino/coreutils" "^1.11.0 || ^2.0.0-alpha.6" @@ -1662,42 +1626,42 @@ y-protocols "^1.0.5" yjs "^13.5.40" -"@jupyterlab/application-extension@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/application-extension/-/application-extension-4.0.0-alpha.17.tgz#04e5b4b01562a93900889d9e5c51d5fa7884871a" - integrity sha512-7UL3YL6s0yvIKFUh0EQJtj6ZV7v28EnQYskjBOhs/Tg97mWDM36oic7FbDMsvc5COPahNhctTFlBm6D5H/hoCQ== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/property-inspector" "^4.0.0-alpha.17" - "@jupyterlab/settingregistry" "^4.0.0-alpha.17" - "@jupyterlab/statedb" "^4.0.0-alpha.17" - "@jupyterlab/statusbar" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" +"@jupyterlab/application-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/application-extension/-/application-extension-4.0.0-alpha.18.tgz#84b7b2048ecb3676974e6618cd27668c7e32191d" + integrity sha512-F15g6YHlXeAq4Ck18C12TzqradelRnInLHDNioUnK+HRkY6qVKYhsIzXpHIA6UZWSEyFlLoycUShx51Ht+o2Wg== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/property-inspector" "^4.0.0-alpha.18" + "@jupyterlab/settingregistry" "^4.0.0-alpha.18" + "@jupyterlab/statedb" "^4.0.0-alpha.18" + "@jupyterlab/statusbar" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/commands" "^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" - react "^17.0.1" + react "^18.2.0" -"@jupyterlab/application@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/application/-/application-4.0.0-alpha.17.tgz#72ae711a2d7495ad72585757854176158a7060ea" - integrity sha512-BudgguelAcT2p7SsmLUreimthDOgotQxKJ4EKJYY/acRfKLAREzO5tVmBUz3JBRqKDeVcfvU162HPHOacvwAGQ== +"@jupyterlab/application@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/application/-/application-4.0.0-alpha.18.tgz#c7db9690e05cdfd9485446fcf4df119430c584ac" + integrity sha512-brH/8I8Za3FmTypxtXB+LBVaRBuJztHmzbF6sOOzyqscJXMILdJuUNDA7qSliCfWubWbWMVYzPQPFYPUGEXm6A== dependencies: "@fortawesome/fontawesome-free" "^5.12.0" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/docregistry" "^4.0.0-alpha.17" - "@jupyterlab/rendermime" "^4.0.0-alpha.17" - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/statedb" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/docregistry" "^4.0.0-alpha.18" + "@jupyterlab/rendermime" "^4.0.0-alpha.18" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/statedb" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/application" "^2.0.0-alpha.6" "@lumino/commands" "^2.0.0-alpha.6" @@ -1709,47 +1673,47 @@ "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/apputils-extension@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/apputils-extension/-/apputils-extension-4.0.0-alpha.17.tgz#4f52e301cd1953f77f196be7b88e231d874b446c" - integrity sha512-UO0UBxNPLAw+0KElKxwvX91Czwj9egWgiLBW92DCvS1BP+OJpKG1B0iTi+CZEaTzAfkjcQFmKHmwYksCc5TgVg== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/docregistry" "^4.0.0-alpha.17" - "@jupyterlab/filebrowser" "^4.0.0-alpha.17" - "@jupyterlab/mainmenu" "^4.0.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/settingregistry" "^4.0.0-alpha.17" - "@jupyterlab/statedb" "^4.0.0-alpha.17" - "@jupyterlab/statusbar" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" +"@jupyterlab/apputils-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/apputils-extension/-/apputils-extension-4.0.0-alpha.18.tgz#efcded1f4048f914e8f6a4e8d3ec825f4b4c4184" + integrity sha512-uWfs1iAigCKNATi8eLnlyAP/S/LC6MsTEg5qpjx+1P0y4lnEfJZ9BVVcO1aEaJzdac6w86dcXknt7CpYOm7UOA== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/docregistry" "^4.0.0-alpha.18" + "@jupyterlab/filebrowser" "^4.0.0-alpha.18" + "@jupyterlab/mainmenu" "^4.0.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/settingregistry" "^4.0.0-alpha.18" + "@jupyterlab/statedb" "^4.0.0-alpha.18" + "@jupyterlab/statusbar" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/commands" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/polling" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" - react "^17.0.1" - react-dom "^17.0.1" + react "^18.2.0" + react-dom "^18.2.0" react-toastify "^9.0.8" -"@jupyterlab/apputils@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/apputils/-/apputils-4.0.0-alpha.17.tgz#0f27d9550ea562bd9f3f04630284e0803bba42b7" - integrity sha512-CJ1kcLxKixfzFu5e/sD/fdoamq2ufG8zpHWM2kalTajDCi9e6chmdnsZXhWQoyIxe/OtQT3zuqeNY0akazC8ZQ== - dependencies: - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/observables" "^5.0.0-alpha.17" - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/settingregistry" "^4.0.0-alpha.17" - "@jupyterlab/statedb" "^4.0.0-alpha.17" - "@jupyterlab/statusbar" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" +"@jupyterlab/apputils@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/apputils/-/apputils-4.0.0-alpha.18.tgz#edccdfb72872b5854aa68cdfb985b82ff191aae5" + integrity sha512-z1W7zDeGGtaQ/0X6o05kc9n8FyuzpIr2pjcKZEXXhXwXWvKi5IJwLq/QXo3FG7pf0Dg8bprDmzXaJMBa/yRqZg== + dependencies: + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/observables" "^5.0.0-alpha.18" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/settingregistry" "^4.0.0-alpha.18" + "@jupyterlab/statedb" "^4.0.0-alpha.18" + "@jupyterlab/statusbar" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/commands" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" @@ -1759,29 +1723,27 @@ "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/virtualdom" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" - "@types/react" "^17.0.0" - react "^17.0.1" + react "^18.2.0" sanitize-html "~2.7.3" -"@jupyterlab/attachments@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/attachments/-/attachments-4.0.0-alpha.17.tgz#0da0cdea17c5900518a366e5f4bade831c8f058f" - integrity sha512-KU47M07SKhRM/lk6LLjNFmeE7I5NWBmlhdKLGoJxr4fyL8tF/v2xk21X0WC512GqTUuYkmlWJ2irRX9e/v4mrA== +"@jupyterlab/attachments@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/attachments/-/attachments-4.0.0-alpha.18.tgz#73380be5cfa5649b2df7f0d72559d2b146cc3884" + integrity sha512-CB1kQcNuq66yyQ8Ut/nBzJ9SzzaCwVdBuWB2LANPKuzlBC1VuNEqosIUefSqgT9YW6xiuqgvjJY7NTRz6tXRrw== dependencies: - "@jupyter/ydoc" "~0.2.2" - "@jupyterlab/nbformat" "^4.0.0-alpha.17" - "@jupyterlab/observables" "^5.0.0-alpha.17" - "@jupyterlab/rendermime" "^4.0.0-alpha.17" - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.17" + "@jupyter/ydoc" "^0.3.1" + "@jupyterlab/nbformat" "^4.0.0-alpha.18" + "@jupyterlab/observables" "^5.0.0-alpha.18" + "@jupyterlab/rendermime" "^4.0.0-alpha.18" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.18" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" -"@jupyterlab/builder@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/builder/-/builder-4.0.0-alpha.17.tgz#7c6baefcf90886ebf4ff9197153dc4eb1a6511db" - integrity sha512-WaPM9PZqWaqKNTMq0HYu2wzPgxZAcAi25TFpWqTcx/IMPdqNBZzYhaMYLZsF+4gnWQYdvFUfmhyv6o1pkGGMhw== +"@jupyterlab/builder@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/builder/-/builder-4.0.0-alpha.18.tgz#886fe37c557f6014df8b377b4b1e865fb4df396c" + integrity sha512-i2dtLQohucm+h8FtDCi907yc1j3dfGyrYaOZfYCLFNiofvlDKYUzFIHQIAckfTzqOhRNppx+Wo8S3HvEL5dGsQ== dependencies: - "@jupyterlab/buildutils" "^4.0.0-alpha.17" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/application" "^2.0.0-alpha.6" "@lumino/commands" "^2.0.0-alpha.6" @@ -1805,6 +1767,7 @@ mini-svg-data-uri "^1.4.4" path-browserify "^1.0.0" process "^0.11.10" + source-map-loader "~1.0.2" style-loader "~3.3.1" supports-color "^7.2.0" terser-webpack-plugin "^5.3.6" @@ -1813,10 +1776,10 @@ webpack-merge "^5.8.0" worker-loader "^3.0.2" -"@jupyterlab/buildutils@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/buildutils/-/buildutils-4.0.0-alpha.17.tgz#065a1a800991f05081b897161aa384e5a84096e8" - integrity sha512-m9FcRrxZcigRJxlnNab/t59cv58qA3LxR7GFC+GzBJ+GSBb/k48fGMWtjQ+bpH/pQskDiKbRV78YwwI1X6uHmw== +"@jupyterlab/buildutils@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/buildutils/-/buildutils-4.0.0-alpha.18.tgz#5f65cb60718a15db044ab75d7d6913d773eaa364" + integrity sha512-6GeUvM3Pa7qAkmGgA0P57SPO8/uRA8lc5nEOlPyJVoTh2cllaWDYjT18138hTN9UC+gXId5YO/NlIgWF2/lJug== dependencies: "@yarnpkg/lockfile" "^1.1.0" child_process "~1.0.2" @@ -1834,57 +1797,57 @@ semver "^7.3.2" sort-package-json "~1.53.1" typescript "~4.7.3" - verdaccio "^5.13.3" - -"@jupyterlab/cell-toolbar-extension@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/cell-toolbar-extension/-/cell-toolbar-extension-4.0.0-alpha.17.tgz#30654d0e40004ded2ec54c244a8ed5f1034158d0" - integrity sha512-4Zb3JSs7/rumxBdEba3J5pO5lHBOnwCVEyBZlwegCr81HMzM3A6J7+rU4tFEGXsBnljUUrbh4ABL4qqx4RD1yA== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/cell-toolbar" "^4.0.0-alpha.17" - "@jupyterlab/settingregistry" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - -"@jupyterlab/cell-toolbar@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/cell-toolbar/-/cell-toolbar-4.0.0-alpha.17.tgz#b52326ec972327675ab8d4650e4b52df30d54984" - integrity sha512-0SfH6OmkfgWRK7nx2UShaBNQk5CPhMTNztAkzzx0adXQQCo8Iu4v2U4Xwd1U1y92fRa1M8cJ4LIFwPQCRyon+w== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/cells" "^4.0.0-alpha.17" - "@jupyterlab/docregistry" "^4.0.0-alpha.17" - "@jupyterlab/notebook" "^4.0.0-alpha.17" - "@jupyterlab/observables" "^5.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" + verdaccio "^5.19.1" + +"@jupyterlab/cell-toolbar-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/cell-toolbar-extension/-/cell-toolbar-extension-4.0.0-alpha.18.tgz#1031f0dd692f3af5aa6f818f046d4b8be31539ef" + integrity sha512-crRhpVLab42gH0NH3bCaDdoxy2buH+KxHzamwbcF4sTwcKQaOtTifeQBVaDJ+bDUxLg8dCjkGbPU1f0yfc5pFQ== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/cell-toolbar" "^4.0.0-alpha.18" + "@jupyterlab/settingregistry" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + +"@jupyterlab/cell-toolbar@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/cell-toolbar/-/cell-toolbar-4.0.0-alpha.18.tgz#94039c94a70f0a42fb0b9b55e17073e696e409c4" + integrity sha512-Ao2QH/mi0za8koknr/jB3iEcJ7aPAl2hNo2i9hOjQgtXBA+A1b1O4AbLUycwyi3nnu1kRiaT4XkaGewOwxiR3w== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/cells" "^4.0.0-alpha.18" + "@jupyterlab/docregistry" "^4.0.0-alpha.18" + "@jupyterlab/notebook" "^4.0.0-alpha.18" + "@jupyterlab/observables" "^5.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@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.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/cells/-/cells-4.0.0-alpha.17.tgz#b56eaf41322260fd081adda76e1b8c74b3ac9556" - integrity sha512-XdImnkDI2dnNMCEyO0RW8nzvtJX6wyFVIKQ0BchSZkSw0RZ7hJjpIer2E7gavj3Y5MGwrivDGJGxZShVha658Q== - dependencies: - "@jupyter/ydoc" "~0.2.2" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/attachments" "^4.0.0-alpha.17" - "@jupyterlab/codeeditor" "^4.0.0-alpha.17" - "@jupyterlab/codemirror" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/documentsearch" "^4.0.0-alpha.17" - "@jupyterlab/filebrowser" "^4.0.0-alpha.17" - "@jupyterlab/nbformat" "^4.0.0-alpha.17" - "@jupyterlab/observables" "^5.0.0-alpha.17" - "@jupyterlab/outputarea" "^4.0.0-alpha.17" - "@jupyterlab/rendermime" "^4.0.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/toc" "^6.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" +"@jupyterlab/cells@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/cells/-/cells-4.0.0-alpha.18.tgz#792168050fa1ff73749897d5d76d64ff4400fff3" + integrity sha512-RT5xw3+o+zboJhL0WfXfe1bRcfJcHUXqyS//b/F3JgleDEAWZzjCR8Iib71kv9Wtrs4ERSYXKOg97KA7DWv1tQ== + dependencies: + "@jupyter/ydoc" "^0.3.1" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/attachments" "^4.0.0-alpha.18" + "@jupyterlab/codeeditor" "^4.0.0-alpha.18" + "@jupyterlab/codemirror" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/documentsearch" "^4.0.0-alpha.18" + "@jupyterlab/filebrowser" "^4.0.0-alpha.18" + "@jupyterlab/nbformat" "^4.0.0-alpha.18" + "@jupyterlab/observables" "^5.0.0-alpha.18" + "@jupyterlab/outputarea" "^4.0.0-alpha.18" + "@jupyterlab/rendermime" "^4.0.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/toc" "^6.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/domutils" "^2.0.0-alpha.6" @@ -1894,75 +1857,75 @@ "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/virtualdom" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" - react "^17.0.1" - -"@jupyterlab/celltags-extension@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/celltags-extension/-/celltags-extension-4.0.0-alpha.17.tgz#db9fb450cc31f2383b3f10a072e11f62ec6d526f" - integrity sha512-/FBphRCWTVge92hPpgVA3aUrWqkvumXbxNb1EFdvVtLj6otbIt0fm9KmWB1Tmozbu+zn95QadWNLSDk+xwRuNQ== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/celltags" "^4.0.0-alpha.17" - "@jupyterlab/notebook" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - -"@jupyterlab/celltags@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/celltags/-/celltags-4.0.0-alpha.17.tgz#bd395ce955b10a100b426fb33c075eba0aa359bd" - integrity sha512-UuaGz3ek0ZWHhXe37rO9mjVXtgYudZDozFG9+A9IvJ4nq3Pct9beRWag/IrduuXzWzALm2pG7TfR6hE9SwMe7A== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/cells" "^4.0.0-alpha.17" - "@jupyterlab/notebook" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" + react "^18.2.0" + +"@jupyterlab/celltags-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/celltags-extension/-/celltags-extension-4.0.0-alpha.18.tgz#800aba82413f2d4e9c4a66e3044ec8c4ccae7106" + integrity sha512-+ojB0nvf49nzi9w4laAZgzaRUImKS4Y8IRj6miZJd2iGp6oQOrFjYJhXrtfMFmpYihtFab3+K18cYtHqP7G6dA== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/celltags" "^4.0.0-alpha.18" + "@jupyterlab/notebook" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + +"@jupyterlab/celltags@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/celltags/-/celltags-4.0.0-alpha.18.tgz#b8e9c2881cf1453f55f218e06570ebf515f59b6b" + integrity sha512-x6iR6C8BhVB0h7V2Br3Co1M5XnjRvwDRe1UhCtjNcVLGnebSgxLP00RCyDwH3XiiOmS3R5KnIh6IaQ2jVBCWVA== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/cells" "^4.0.0-alpha.18" + "@jupyterlab/notebook" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@lumino/algorithm" "^2.0.0-alpha.6" "@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" -"@jupyterlab/codeeditor@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/codeeditor/-/codeeditor-4.0.0-alpha.17.tgz#f7f2394e3532289d11e2dc8d221480fe6b380d89" - integrity sha512-i+I4qgCW8g3gVzeuClxvskKhSL2mgyp7BMsTqqQ35EiU5WMZIxhwHONdksDZTuIaXEGZ67iT8VRXeh6QDhmYQg== - dependencies: - "@jupyter/ydoc" "~0.2.2" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/nbformat" "^4.0.0-alpha.17" - "@jupyterlab/observables" "^5.0.0-alpha.17" - "@jupyterlab/statusbar" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" +"@jupyterlab/codeeditor@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/codeeditor/-/codeeditor-4.0.0-alpha.18.tgz#375d2332d6e3aac88710f8928097b25fa6637485" + integrity sha512-prQYP3MojOzNgDTZcg9jPhojsyTDfUOwanFr6wzgQf1L+sr+BlgGRGuhWncfolcQxZvwf+5AbBguXQD/Nb5ogg== + dependencies: + "@jupyter/ydoc" "^0.3.1" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/nbformat" "^4.0.0-alpha.18" + "@jupyterlab/observables" "^5.0.0-alpha.18" + "@jupyterlab/statusbar" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/dragdrop" "^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" - react "^17.0.1" + react "^18.2.0" -"@jupyterlab/codemirror-extension@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/codemirror-extension/-/codemirror-extension-4.0.0-alpha.17.tgz#1db080017fe08c6be1d841fdb28bb413b2214e49" - integrity sha512-C1Vp2HpOxBq3s2Yn0NkjEDKQ5wpNjAanQIGnGzHWbE7cHIEF2/r/rDcO4r5YhI0kHsPHe/wggRgmgkefHW8ClA== +"@jupyterlab/codemirror-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/codemirror-extension/-/codemirror-extension-4.0.0-alpha.18.tgz#992638509b0290713e1e61b5311f2336f36a9780" + integrity sha512-6+NyhgXJH02/xRNdnL0L5qIyk+WTLBmvMy99YGFRVOa2ixiWj28vuKX6wbEkfm0NXjSQHmJmg6WINrxLEmllPw== dependencies: "@codemirror/search" "^6.0.0" - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/codeeditor" "^4.0.0-alpha.17" - "@jupyterlab/codemirror" "^4.0.0-alpha.17" - "@jupyterlab/docregistry" "^4.0.0-alpha.17" - "@jupyterlab/fileeditor" "^4.0.0-alpha.17" - "@jupyterlab/mainmenu" "^4.0.0-alpha.17" - "@jupyterlab/settingregistry" "^4.0.0-alpha.17" - "@jupyterlab/statusbar" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/codeeditor" "^4.0.0-alpha.18" + "@jupyterlab/codemirror" "^4.0.0-alpha.18" + "@jupyterlab/docregistry" "^4.0.0-alpha.18" + "@jupyterlab/fileeditor" "^4.0.0-alpha.18" + "@jupyterlab/mainmenu" "^4.0.0-alpha.18" + "@jupyterlab/settingregistry" "^4.0.0-alpha.18" + "@jupyterlab/statusbar" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/codemirror@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/codemirror/-/codemirror-4.0.0-alpha.17.tgz#cf4882be030bf0d5650594387f6d18a434ba9475" - integrity sha512-951QM8Vc9PuMNnSSZoEvdBS4kXQeYomReH3mgAdGSHSJyMsbJDNkUspkRVb9XwP79Q30tr3x5HGgukuPKWZhOQ== +"@jupyterlab/codemirror@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/codemirror/-/codemirror-4.0.0-alpha.18.tgz#185ff14213666b4a82beb2084f5b9f3df000f996" + integrity sha512-Xl+Yv3fddE+PjNTYfqfAByG7sKFbsYu9mJ3msiSi+eZSoSH6cZXiuKMwHJVRo3rEoz+ehbU589q8R16tfKEuew== dependencies: "@codemirror/autocomplete" "^6.0.0" "@codemirror/commands" "^6.0.0" @@ -1984,14 +1947,14 @@ "@codemirror/search" "^6.0.0" "@codemirror/state" "^6.0.0" "@codemirror/view" "^6.0.0" - "@jupyter/ydoc" "~0.2.2" - "@jupyterlab/codeeditor" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/documentsearch" "^4.0.0-alpha.17" - "@jupyterlab/nbformat" "^4.0.0-alpha.17" - "@jupyterlab/statusbar" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" + "@jupyter/ydoc" "^0.3.1" + "@jupyterlab/codeeditor" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/documentsearch" "^4.0.0-alpha.18" + "@jupyterlab/nbformat" "^4.0.0-alpha.18" + "@jupyterlab/statusbar" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@lezer/common" "^1.0.0" "@lezer/highlight" "^1.0.0" "@lumino/algorithm" "^2.0.0-alpha.6" @@ -2000,72 +1963,72 @@ "@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" + react "^18.2.0" style-mod "^4.0.0" y-codemirror.next "^0.3.2" y-protocols "^1.0.5" yjs "^13.5.40" -"@jupyterlab/collaboration-extension@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/collaboration-extension/-/collaboration-extension-4.0.0-alpha.17.tgz#fa92147cf578d4c0e5fd3f3767e36489592f51b4" - integrity sha512-dE3OjSTcroOb8ZRjlQ24ozegymCHuPnWhNR55Ihr/uyw5bVFxsxx2kigjypelmug/8GdmQZC1GSbE4077ho+FQ== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/collaboration" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/statedb" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" +"@jupyterlab/collaboration-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/collaboration-extension/-/collaboration-extension-4.0.0-alpha.18.tgz#ed065ea9ff1d7b0ecdf292640dd9634f7c70e4c1" + integrity sha512-OG0rzHijiCszDMiVEcWmIGKLdZqUnGw0KEtcLd6AocJW3dQ9AlVN4p+r1ml9kkLF2BXnEPlMtJu4hQk9G3kXVw== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/collaboration" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/statedb" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@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.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/collaboration/-/collaboration-4.0.0-alpha.17.tgz#081e0d529682c31c55a80bc10e7c54ced571b105" - integrity sha512-WhFKiRRlTlu2VcNlhzvcHBjpqDwFUGS/uQ1TFi8wYuNxloE8ARxt31TGraAu0rLcGhqN+1AnwFtFYDDVOqLxkQ== +"@jupyterlab/collaboration@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/collaboration/-/collaboration-4.0.0-alpha.18.tgz#c3c487dae1322f96ec19dcf587d2d91efce674df" + integrity sha512-aQxBApzt5xyEgAp6X74l2bplgyGUpUKXDYA+nH7v2zxsFz8dRD7fzVB7i5dBsVLBgqcV6DIj5S/4PE5diM1Q6Q== dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/virtualdom" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" - react "^17.0.1" + react "^18.2.0" y-protocols "^1.0.5" yjs "^13.5.40" -"@jupyterlab/completer-extension@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/completer-extension/-/completer-extension-4.0.0-alpha.17.tgz#a44d258d74b345fa27c062cea5dedf7a9222d5cc" - integrity sha512-o7E9Dg0QNzMUiAygEquOov4+HLQgkgwnu7Wju2ntu4v4iOzNbfknCVZPvqGL0qxiGpy1Lf1hiqSyh0PtUXYOQw== +"@jupyterlab/completer-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/completer-extension/-/completer-extension-4.0.0-alpha.18.tgz#feeceb6ae6dad465e11ae4c2ab8b4c13569ac882" + integrity sha512-8D3M1YPu6Q2wL8VvZMAfX1SoDkfOq9KpMQcfpQfpLzl9QCjMUsruhs9ZM7pF71na0REHQWXseRe/X+R7Ejjo7g== dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/completer" "^4.0.0-alpha.17" - "@jupyterlab/settingregistry" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/completer" "^4.0.0-alpha.18" + "@jupyterlab/settingregistry" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@lumino/coreutils" "^2.0.0-alpha.6" "@rjsf/core" "^4.2.0" - react "^17.0.1" - -"@jupyterlab/completer@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/completer/-/completer-4.0.0-alpha.17.tgz#a3ca046f3cc8ba3caf6aa3879e627f8e96460c0a" - integrity sha512-IzshQxLqXxZB/x5ijze7SSFvFl0JAn2pAfgLtVTF4zmurYu0lmTVnr8u50KHhyn/sBkJCUcrftQckB8Sx811Bw== - dependencies: - "@jupyter/ydoc" "~0.2.2" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/codeeditor" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/rendermime" "^4.0.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/statedb" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" + react "^18.2.0" + +"@jupyterlab/completer@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/completer/-/completer-4.0.0-alpha.18.tgz#002d15a7779783d3b31c3675638f92b3ea1e42ca" + integrity sha512-kP0ncS32kxC3i3uLG0zy1Pwzj/zsUj5GhHIIjYl983vVKaxfhRYmzqTlzfnNdaWZGfsTXs1LJYyn22bV3Vo+OQ== + dependencies: + "@jupyter/ydoc" "^0.3.1" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/codeeditor" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/rendermime" "^4.0.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/statedb" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" @@ -2074,45 +2037,45 @@ "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/console-extension@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/console-extension/-/console-extension-4.0.0-alpha.17.tgz#2b51416cc66053214f9610b71c6c449c642da7e7" - integrity sha512-s92dleM2x0kXPTPIbcy1JA5Hh3F1lZmeLOCHvp7ztncfO1kYJgGiL5jbWpqGecU1aMmiBPVqc7qbjS2R6I7DMQ== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/codeeditor" "^4.0.0-alpha.17" - "@jupyterlab/completer" "^4.0.0-alpha.17" - "@jupyterlab/console" "^4.0.0-alpha.17" - "@jupyterlab/filebrowser" "^4.0.0-alpha.17" - "@jupyterlab/launcher" "^4.0.0-alpha.17" - "@jupyterlab/mainmenu" "^4.0.0-alpha.17" - "@jupyterlab/rendermime" "^4.0.0-alpha.17" - "@jupyterlab/settingregistry" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" +"@jupyterlab/console-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/console-extension/-/console-extension-4.0.0-alpha.18.tgz#122a6d4dedd5a4ee6617062de125e3af3b6aff24" + integrity sha512-NGcFQ7gRaSwjlIwA62f+et4d3cz3DF/cxbO433d7pCUL9Yb1SHXJU13S4uwXqhMvLKr+dzhERFjUXy8LvA2C+g== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/codeeditor" "^4.0.0-alpha.18" + "@jupyterlab/completer" "^4.0.0-alpha.18" + "@jupyterlab/console" "^4.0.0-alpha.18" + "@jupyterlab/filebrowser" "^4.0.0-alpha.18" + "@jupyterlab/launcher" "^4.0.0-alpha.18" + "@jupyterlab/mainmenu" "^4.0.0-alpha.18" + "@jupyterlab/rendermime" "^4.0.0-alpha.18" + "@jupyterlab/settingregistry" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@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.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/console/-/console-4.0.0-alpha.17.tgz#30d938e3f7098bbfc0297d43f04006e0da60bfef" - integrity sha512-0mI2isCAOOqFcnFHzCMOH+s/wyQTpjfqHa3iElMJPmeX8ar8cOqEd0bPvHwTF6S915JnrjFRkG2HZDmPyhmr4w== - dependencies: - "@jupyter/ydoc" "~0.2.2" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/cells" "^4.0.0-alpha.17" - "@jupyterlab/codeeditor" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/nbformat" "^4.0.0-alpha.17" - "@jupyterlab/observables" "^5.0.0-alpha.17" - "@jupyterlab/rendermime" "^4.0.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" +"@jupyterlab/console@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/console/-/console-4.0.0-alpha.18.tgz#93ebc163fd551266b0c646a653b25e8e727e17a8" + integrity sha512-I0tYqj8yGOZ1ur4plUp14itqynroUcecGAofF/aAddYyn01EROqWSRsdVJIxOf1vblWesGrHKClqyt4NYUK/OQ== + dependencies: + "@jupyter/ydoc" "^0.3.1" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/cells" "^4.0.0-alpha.18" + "@jupyterlab/codeeditor" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/nbformat" "^4.0.0-alpha.18" + "@jupyterlab/observables" "^5.0.0-alpha.18" + "@jupyterlab/rendermime" "^4.0.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/dragdrop" "^2.0.0-alpha.6" @@ -2120,62 +2083,61 @@ "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/coreutils@^6.0.0-alpha.17": - version "6.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/coreutils/-/coreutils-6.0.0-alpha.17.tgz#e4bceb662bc2e11a65b315f1b3b9b95b0edeb40b" - integrity sha512-F6ql6s2o+eYtEAkqpf9smF9gS1ln7KNtJaRmKG8FLC6pzGKMI6HmrTkWTUS9eU6hBEXidibYtZuj2bVv4B/Stg== +"@jupyterlab/coreutils@^6.0.0-alpha.18": + version "6.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/coreutils/-/coreutils-6.0.0-alpha.18.tgz#896d8c9290267f4aeb0fbfaaf4f28948550651fd" + integrity sha512-Ye4RHeCUlckMkuHc6Z9W7o4TkDkwZztiiJyR0MMnJciKAiFCPX8BVqssGYr+KcXAqJLzj1zgMRmTCuAmBiGl+Q== dependencies: "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" minimist "~1.2.0" - moment "^2.24.0" path-browserify "^1.0.0" url-parse "~1.5.4" -"@jupyterlab/debugger-extension@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/debugger-extension/-/debugger-extension-4.0.0-alpha.17.tgz#0fa61ec9f450ea3510a1c0fabbfead75e69845c5" - integrity sha512-4DEuFUy07ciuRVToJJMZhgo5RsGpvoFOowVQUxgkTXAWer3qOLX2oaDnjCyJNGyoD9TclL3EPFafrpYVMpZx+Q== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/codeeditor" "^4.0.0-alpha.17" - "@jupyterlab/console" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/debugger" "^4.0.0-alpha.17" - "@jupyterlab/docregistry" "^4.0.0-alpha.17" - "@jupyterlab/fileeditor" "^4.0.0-alpha.17" - "@jupyterlab/logconsole" "^4.0.0-alpha.17" - "@jupyterlab/notebook" "^4.0.0-alpha.17" - "@jupyterlab/rendermime" "^4.0.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/settingregistry" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - -"@jupyterlab/debugger@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/debugger/-/debugger-4.0.0-alpha.17.tgz#faeec73ad289b7d36fa3c857c414c09b313ccaf5" - integrity sha512-jqXYo528tU3pDBVZtaA5jN0OztMIakbD3CD7wv6O+i5rkrWEZoocmnLEs/0wsyVzBLkPi+oUuv+WRCP4e9Ll6Q== +"@jupyterlab/debugger-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/debugger-extension/-/debugger-extension-4.0.0-alpha.18.tgz#252f7a87ab2bbf4c4e811823e17397fecb3ff038" + integrity sha512-U3vstddelDKipHfpQaHITUGbJeTN8AtjCTOFDi6mlhEBkVpw9CWiwvVu40yQg9oFR8pps4HAR8sI1MUo+CzEnw== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/codeeditor" "^4.0.0-alpha.18" + "@jupyterlab/console" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/debugger" "^4.0.0-alpha.18" + "@jupyterlab/docregistry" "^4.0.0-alpha.18" + "@jupyterlab/fileeditor" "^4.0.0-alpha.18" + "@jupyterlab/logconsole" "^4.0.0-alpha.18" + "@jupyterlab/notebook" "^4.0.0-alpha.18" + "@jupyterlab/rendermime" "^4.0.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/settingregistry" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + +"@jupyterlab/debugger@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/debugger/-/debugger-4.0.0-alpha.18.tgz#1e9bcba8ea6ee1b1fc459f09ab7bc5f3468683e7" + integrity sha512-Xe3VK9qxt2xtFPEe1iHo1sZeCeNr0nNYBQOo5kNqV8J4OHUgAiIVzBHBAq7V98zReGCeKwiv63VINslygwkSiA== dependencies: "@codemirror/state" "^6.0.0" "@codemirror/view" "^6.0.0" - "@jupyter/ydoc" "~0.2.2" - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/cells" "^4.0.0-alpha.17" - "@jupyterlab/codeeditor" "^4.0.0-alpha.17" - "@jupyterlab/codemirror" "^4.0.0-alpha.17" - "@jupyterlab/console" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/docregistry" "^4.0.0-alpha.17" - "@jupyterlab/fileeditor" "^4.0.0-alpha.17" - "@jupyterlab/notebook" "^4.0.0-alpha.17" - "@jupyterlab/observables" "^5.0.0-alpha.17" - "@jupyterlab/rendermime" "^4.0.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" + "@jupyter/ydoc" "^0.3.1" + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/cells" "^4.0.0-alpha.18" + "@jupyterlab/codeeditor" "^4.0.0-alpha.18" + "@jupyterlab/codemirror" "^4.0.0-alpha.18" + "@jupyterlab/console" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/docregistry" "^4.0.0-alpha.18" + "@jupyterlab/fileeditor" "^4.0.0-alpha.18" + "@jupyterlab/notebook" "^4.0.0-alpha.18" + "@jupyterlab/observables" "^5.0.0-alpha.18" + "@jupyterlab/rendermime" "^4.0.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/commands" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" @@ -2186,45 +2148,43 @@ "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" "@vscode/debugprotocol" "^1.51.0" - react "^17.0.1" - -"@jupyterlab/docmanager-extension@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/docmanager-extension/-/docmanager-extension-4.0.0-alpha.17.tgz#9006e98cd5851167ce2c515120d2c2362b69ec30" - integrity sha512-S2DBMn98Za5om5NuhZYugf0n7IlZY1K3p2H8equbmlIUlI/p2yhmonO9J318a02I622tRHB+zaMvtwVabX/zKA== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/docmanager" "^4.0.0-alpha.17" - "@jupyterlab/docprovider" "^4.0.0-alpha.17" - "@jupyterlab/docregistry" "^4.0.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/settingregistry" "^4.0.0-alpha.17" - "@jupyterlab/statusbar" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" + react "^18.2.0" + +"@jupyterlab/docmanager-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/docmanager-extension/-/docmanager-extension-4.0.0-alpha.18.tgz#66dcfb360b31745087080c752c68280c670f3489" + integrity sha512-DheevxHzON1mIwkEQDyxt3PNLo+0FLcq2y4DHoiuPM1OzRWoUQGLPwQpKLBVohE3/MjWBtfAgT/ZIFB7eYRLEA== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/docmanager" "^4.0.0-alpha.18" + "@jupyterlab/docregistry" "^4.0.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/settingregistry" "^4.0.0-alpha.18" + "@jupyterlab/statusbar" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/commands" "^2.0.0-alpha.6" "@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/docmanager@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/docmanager/-/docmanager-4.0.0-alpha.17.tgz#dbd132a37b16d123fc71bdc4c828c7f00153bcc7" - integrity sha512-eyT2akjunbX59D/Fj7SPwzU5BEVNpiHZ1lwtloQMYU0cmLQfdV3IVE28Lt5Rlp8cZw3wGhO+nuUmd6LUZrznIQ== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/docprovider" "^4.0.0-alpha.17" - "@jupyterlab/docregistry" "^4.0.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/statusbar" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" + react "^18.2.0" + +"@jupyterlab/docmanager@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/docmanager/-/docmanager-4.0.0-alpha.18.tgz#1b39442d88fb5eee0e885259493e7bf89dcb47c2" + integrity sha512-Yq16wz4sjSIt3s7+UaR0oUaOYa4MV18Yh+JSxcOHTF/xb0RwRO52M7QngxHfTAf738Dzi+oymDTvxLrcmeA8qA== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/docregistry" "^4.0.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/statusbar" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" @@ -2232,27 +2192,16 @@ "@lumino/properties" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" - react "^17.0.1" - -"@jupyterlab/docprovider-extension@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/docprovider-extension/-/docprovider-extension-4.0.0-alpha.17.tgz#a6d116f1216e2db869bcddffe717770429a01c20" - integrity sha512-YQ00o2No7ObN5tW6Vzk59AOISAOd5VT0Ltn0H2EieVlnybrHpnkPkPgfVOLCgDQ7r8U/LLrXyN/Qb9pqKfglXg== - dependencies: - "@jupyter/ydoc" "~0.2.2" - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/docprovider" "^4.0.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - -"@jupyterlab/docprovider@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/docprovider/-/docprovider-4.0.0-alpha.17.tgz#13347c6ca5ec6bf343b41a70281eb5c5a742b19e" - integrity sha512-vU86YlIpaY4dezO7TxpBSUob95pq0AQmpU+Yqi1oP7Y9K81aLKMwe8doj92o5MDbysw8xyO3GgGR2ceT1loV4g== - dependencies: - "@jupyter/ydoc" "~0.2.2" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" + react "^18.2.0" + +"@jupyterlab/docprovider@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/docprovider/-/docprovider-4.0.0-alpha.18.tgz#f8d2ec35e9b2d105fe1b1ce5b26edbc2939dae74" + integrity sha512-krcQJhOG9p8jJrpiRn+hNLUz3vv94Jt/g82mnvHWd6vPPPd8qg6viYSHPZDTgpMWRV07yT+ePWJuBhhqhCirbg== + dependencies: + "@jupyter/ydoc" "^0.3.1" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" @@ -2260,23 +2209,22 @@ y-websocket "^1.3.15" yjs "^13.5.40" -"@jupyterlab/docregistry@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/docregistry/-/docregistry-4.0.0-alpha.17.tgz#124c8a7c3c66b09c3ef9007904262157d5ac923f" - integrity sha512-W6DBdJ0bvPzCyIdHo/oTKkVTbS5DdzEhWPedPpB3lFZTEz4YGw6bzeBfw9Pd8tCX76F5Clfk/jRZaPLg7A2AMg== - dependencies: - "@jupyter/ydoc" "~0.2.2" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/codeeditor" "^4.0.0-alpha.17" - "@jupyterlab/codemirror" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/docprovider" "^4.0.0-alpha.17" - "@jupyterlab/observables" "^5.0.0-alpha.17" - "@jupyterlab/rendermime" "^4.0.0-alpha.17" - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" +"@jupyterlab/docregistry@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/docregistry/-/docregistry-4.0.0-alpha.18.tgz#fda19d358dd058e1b201c9b8c550a8e5a4eb95e8" + integrity sha512-irWz+mWuhm7tsjXm4gLF8ApdQ7m3Ob9tddQhld3R/HSEmSNRXXQ2QlPBw2pSKzF//eSd+QN+MYBZ39ZVgNuuNQ== + dependencies: + "@jupyter/ydoc" "^0.3.1" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/codeeditor" "^4.0.0-alpha.18" + "@jupyterlab/codemirror" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/observables" "^5.0.0-alpha.18" + "@jupyterlab/rendermime" "^4.0.0-alpha.18" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" @@ -2285,68 +2233,69 @@ "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/documentsearch-extension@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/documentsearch-extension/-/documentsearch-extension-4.0.0-alpha.17.tgz#e7b2e48a241af6709494f9629fbf55eda1ee88d8" - integrity sha512-4D3Q6yuAei3n+nFdtacuXrhfsQNi8kI1zxVvv2PTg+gi/X84fxl7asTCt1mjdycCMDYMDCaFkZ/NDAqaCritRA== +"@jupyterlab/documentsearch-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/documentsearch-extension/-/documentsearch-extension-4.0.0-alpha.18.tgz#fd60c6aa8220efa41a584dd5b1930210b0f0e360" + integrity sha512-3v38E3/0pNkhbrMl8rS2b0Eip+8jQ1SDHc2v+VHE5v7I7ce1XQud6nIRUKU0ZFJrbY4PH9Gq9QO5yy5oQnM69w== dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/documentsearch" "^4.0.0-alpha.17" - "@jupyterlab/settingregistry" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/documentsearch" "^4.0.0-alpha.18" + "@jupyterlab/settingregistry" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/documentsearch@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/documentsearch/-/documentsearch-4.0.0-alpha.17.tgz#10c37270e0e9cc3b80ea704b26601279db2492e4" - integrity sha512-dBlSfKpIqOqFGOM8o+K5Zhyj/7TVc6KD5Mrre9F/ACah0NEUtuskq7AmTv4AVrqqySO/r0xZh7y7h5BV3Z2KaQ== +"@jupyterlab/documentsearch@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/documentsearch/-/documentsearch-4.0.0-alpha.18.tgz#439b4679e88078a167822b23a6f183d6d5610f07" + integrity sha512-w+b6fB6V5QY8LVorul7152T+F9gLyo7hUgZNHeo9p/xJY6x5DUErxT+RS1QYg5BVhoOOdJtQLyM53Bnmp25o3g== dependencies: - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/messaging" "^2.0.0-alpha.6" "@lumino/polling" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" - react "^17.0.1" - -"@jupyterlab/filebrowser-extension@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/filebrowser-extension/-/filebrowser-extension-4.0.0-alpha.17.tgz#ae1e25dddf9bdefd31c00021e512ffa407e3a816" - integrity sha512-gaVM8gmv1zJA0zcXIXmqjnxrP4SIp5TKW0979yKIkyTMYWJ2iOKI5INXCm9D6fZWEkXitW5UWUzkRvEx+SlKew== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/docmanager" "^4.0.0-alpha.17" - "@jupyterlab/docregistry" "^4.0.0-alpha.17" - "@jupyterlab/filebrowser" "^4.0.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/settingregistry" "^4.0.0-alpha.17" - "@jupyterlab/statedb" "^4.0.0-alpha.17" - "@jupyterlab/statusbar" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" + react "^18.2.0" + +"@jupyterlab/filebrowser-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/filebrowser-extension/-/filebrowser-extension-4.0.0-alpha.18.tgz#cc7ec2ee4c4caebae87861b3be101d1d4b143433" + integrity sha512-6HGhnPYr+ayvFngx5Uys7G9w1RGvwJ+4ws7U6RFe8ec9PVu00Z8Hi0zyaMNxG9cl3NUUqywREIpp872sw6qAhw== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/docmanager" "^4.0.0-alpha.18" + "@jupyterlab/docprovider" "^4.0.0-alpha.18" + "@jupyterlab/docregistry" "^4.0.0-alpha.18" + "@jupyterlab/filebrowser" "^4.0.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/settingregistry" "^4.0.0-alpha.18" + "@jupyterlab/statedb" "^4.0.0-alpha.18" + "@jupyterlab/statusbar" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@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.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/filebrowser/-/filebrowser-4.0.0-alpha.17.tgz#29522de1c9298e47843e95443bb6549d3030c54e" - integrity sha512-R+ylK5GPyOXqvRE1ebcGGt17G5Tx5g4rfNOSvhNjAjVWup6I+qpLdvDHi5w4Uw1yXzYfMhqrVJA9mEalITjsgQ== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/docmanager" "^4.0.0-alpha.17" - "@jupyterlab/docregistry" "^4.0.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/statedb" "^4.0.0-alpha.17" - "@jupyterlab/statusbar" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" +"@jupyterlab/filebrowser@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/filebrowser/-/filebrowser-4.0.0-alpha.18.tgz#3b758598e49a69a6f39905b2e9f2caddd6ea0887" + integrity sha512-woMvTQ0G0/se0KkF78fLuQ0RziOnb94WkkL83mPSxexCsWh8MOsvcX+vu4nloGDHDJV2nhE4yweKJN3ipCjl8A== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/docmanager" "^4.0.0-alpha.18" + "@jupyterlab/docregistry" "^4.0.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/statedb" "^4.0.0-alpha.18" + "@jupyterlab/statusbar" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" @@ -2357,208 +2306,208 @@ "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/virtualdom" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" - react "^17.0.1" + react "^18.2.0" -"@jupyterlab/fileeditor-extension@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/fileeditor-extension/-/fileeditor-extension-4.0.0-alpha.17.tgz#6d5484fc52438bf3f8e8627898dd55e084d967f8" - integrity sha512-4JWbpZXy6//Kur4vhXwIqMCBbJpkObRT2gV2eEz0kR4LSl1QrFkX0paCRCnCl/JpsQv5XMh98IH/kmIvXQraMw== +"@jupyterlab/fileeditor-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/fileeditor-extension/-/fileeditor-extension-4.0.0-alpha.18.tgz#ae08382726f007516045e6728aa66690cf0dc28a" + integrity sha512-22bna+aAaFjFQeqgro3aekMfM9x5hLjYz0/qplNIhNYlzA5Uuk12jwfLuTOf4LNiKmYvyeuAWe37YAGSS3w87w== dependencies: "@codemirror/commands" "^6.0.0" - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/codeeditor" "^4.0.0-alpha.17" - "@jupyterlab/codemirror" "^4.0.0-alpha.17" - "@jupyterlab/completer" "^4.0.0-alpha.17" - "@jupyterlab/console" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/docregistry" "^4.0.0-alpha.17" - "@jupyterlab/documentsearch" "^4.0.0-alpha.17" - "@jupyterlab/filebrowser" "^4.0.0-alpha.17" - "@jupyterlab/fileeditor" "^4.0.0-alpha.17" - "@jupyterlab/launcher" "^4.0.0-alpha.17" - "@jupyterlab/lsp" "^4.0.0-alpha.17" - "@jupyterlab/mainmenu" "^4.0.0-alpha.17" - "@jupyterlab/observables" "^5.0.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/settingregistry" "^4.0.0-alpha.17" - "@jupyterlab/statusbar" "^4.0.0-alpha.17" - "@jupyterlab/toc" "^6.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/codeeditor" "^4.0.0-alpha.18" + "@jupyterlab/codemirror" "^4.0.0-alpha.18" + "@jupyterlab/completer" "^4.0.0-alpha.18" + "@jupyterlab/console" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/docregistry" "^4.0.0-alpha.18" + "@jupyterlab/documentsearch" "^4.0.0-alpha.18" + "@jupyterlab/filebrowser" "^4.0.0-alpha.18" + "@jupyterlab/fileeditor" "^4.0.0-alpha.18" + "@jupyterlab/launcher" "^4.0.0-alpha.18" + "@jupyterlab/lsp" "^4.0.0-alpha.18" + "@jupyterlab/mainmenu" "^4.0.0-alpha.18" + "@jupyterlab/observables" "^5.0.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/settingregistry" "^4.0.0-alpha.18" + "@jupyterlab/statusbar" "^4.0.0-alpha.18" + "@jupyterlab/toc" "^6.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@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.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/fileeditor/-/fileeditor-4.0.0-alpha.17.tgz#970fdafb7fd04e2bd03accccd5a6d8f9f95fef70" - integrity sha512-sA/43r5FPsOH8MsxsO3eY2wCR29iE2lcl0lCv6Y2L6aN46K5JcQ2CLurD/Q4UmF0CEx8nKn3a3CCdvmBIIYl5Q== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/codeeditor" "^4.0.0-alpha.17" - "@jupyterlab/codemirror" "^4.0.0-alpha.17" - "@jupyterlab/docregistry" "^4.0.0-alpha.17" - "@jupyterlab/documentsearch" "^4.0.0-alpha.17" - "@jupyterlab/lsp" "^4.0.0-alpha.17" - "@jupyterlab/statusbar" "^4.0.0-alpha.17" - "@jupyterlab/toc" "^6.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" +"@jupyterlab/fileeditor@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/fileeditor/-/fileeditor-4.0.0-alpha.18.tgz#c310ad9a6370579c400a04c0fe2b10e94f7835b3" + integrity sha512-zavZ/GrhFjXNRdo8PDMhfGfcpZtyGdU2BFzvSG/e5M5/9mGPhbKA/JwgQzaviITeD+l2BkPqbOgKQgZEvuzlVg== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/codeeditor" "^4.0.0-alpha.18" + "@jupyterlab/codemirror" "^4.0.0-alpha.18" + "@jupyterlab/docregistry" "^4.0.0-alpha.18" + "@jupyterlab/documentsearch" "^4.0.0-alpha.18" + "@jupyterlab/lsp" "^4.0.0-alpha.18" + "@jupyterlab/statusbar" "^4.0.0-alpha.18" + "@jupyterlab/toc" "^6.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@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" + react "^18.2.0" regexp-match-indices "^1.0.2" -"@jupyterlab/htmlviewer-extension@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/htmlviewer-extension/-/htmlviewer-extension-4.0.0-alpha.17.tgz#ebfe51d47042d2815df39f3434438fc671409e69" - integrity sha512-V2QavV8cid2kYi95fCrxbzzlpjnmii2y9cp+aWkaHVw3ys1+Z6EupeESKX/1cXeCaB4mam5MgaQ0Xr1cEGIjRw== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/docregistry" "^4.0.0-alpha.17" - "@jupyterlab/htmlviewer" "^4.0.0-alpha.17" - "@jupyterlab/observables" "^5.0.0-alpha.17" - "@jupyterlab/settingregistry" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" - -"@jupyterlab/htmlviewer@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/htmlviewer/-/htmlviewer-4.0.0-alpha.17.tgz#33409e78368ce665d57b17674fe54de3e4b40334" - integrity sha512-2NjgJDNqkWymLEOvfqPLgQl6OfaA+mhjZf5LZMtCMWJ7hVv1kMWxb332x5yhFF35wZfmt9rvUnJiqMUTMJMF2Q== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/docregistry" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" +"@jupyterlab/htmlviewer-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/htmlviewer-extension/-/htmlviewer-extension-4.0.0-alpha.18.tgz#e7442e51f1617d2ba605440d37aa469dadc5509e" + integrity sha512-1rfeYihcqV+bOlhX+ElbVLexF4wGrj43550Ay3i3FzbKqNjpjzxsWQKD/HAN8j+F0gp466bdimgdXCarCOJe2A== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/docregistry" "^4.0.0-alpha.18" + "@jupyterlab/htmlviewer" "^4.0.0-alpha.18" + "@jupyterlab/observables" "^5.0.0-alpha.18" + "@jupyterlab/settingregistry" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" + +"@jupyterlab/htmlviewer@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/htmlviewer/-/htmlviewer-4.0.0-alpha.18.tgz#6db42dc6f1ba879465d1988cd9985c8f11709437" + integrity sha512-UZat4p9E+9CZWLnj1Rjtu5H8aZZ8H5dA27/FabIxgZDdqjBaB/pdIaqVvGEE87i5Ot2Ot0j0L8jZPIMBnFuNEA== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/docregistry" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" - react "^17.0.1" - -"@jupyterlab/hub-extension@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/hub-extension/-/hub-extension-4.0.0-alpha.17.tgz#29c8e34679e565d862531564628c925093ce7d14" - integrity sha512-sJ8LuiBlcJLUoMb0931r7IwUU0Zcsztfa26SpopCwUBnJalzoT+HQJMq3wujRiZ1NIqRAl6+79aF5fc05msZCA== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - -"@jupyterlab/inspector@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/inspector/-/inspector-4.0.0-alpha.17.tgz#44e8446c67795494bbe8954e035c72e8a3ea8f71" - integrity sha512-MpxP51B4s0IxarLKdsMTPYBmpXXqF5bsdvQNwkjM6gdPhVgQt2lqkIUWbVzmJaLHfYnjB57O3fD72cfjfNyoEw== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/codeeditor" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/rendermime" "^4.0.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/statedb" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" + react "^18.2.0" + +"@jupyterlab/hub-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/hub-extension/-/hub-extension-4.0.0-alpha.18.tgz#5e4d6f1a95b29038a9fec974b040aea8cee36946" + integrity sha512-jf5MQwnfFG7uegWB0PoCpsdghYsHQYiIEFh9iLJRfvv/2riwCznTPec3Dr56Z1SaHyQrFonQ29YtNP47cYSUFQ== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + +"@jupyterlab/inspector@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/inspector/-/inspector-4.0.0-alpha.18.tgz#c1a7c91fc9df33b140e30eadafc9fdd8d90e3fe4" + integrity sha512-H9IENs1j7XpUeQiJAPJfEGt+72cWZhPLJRhi8b3GwN2FAz+TRLoR19XMeJYQZxdcCoOE49Xx1YGRtFv+ADLAHg== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/codeeditor" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/rendermime" "^4.0.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/statedb" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/polling" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/javascript-extension@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/javascript-extension/-/javascript-extension-4.0.0-alpha.17.tgz#b34d6f5232d83dc09fe56bb9173db54a3cbd258c" - integrity sha512-gstVELLspr0EHiRv1oEYsC4AqIMMekr6sk+A+MWsW7nn2OFTRaj2T6zc5SSTYHTbP76lEkvLVC9cQW5bY90B1g== +"@jupyterlab/javascript-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/javascript-extension/-/javascript-extension-4.0.0-alpha.18.tgz#a2ff712698987cb74b73c2dc450cb2c437d6c6e7" + integrity sha512-1+fPM1+Dy0dQru+KGLRYiYmBDZiNRgm7d+VtEd60GA5okn/f9ZjnpEEFgAOgpxZSJI0ZA2g/RDNw7AqFBlISrw== dependencies: - "@jupyterlab/rendermime" "^4.0.0-alpha.17" - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.17" + "@jupyterlab/rendermime" "^4.0.0-alpha.18" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.18" -"@jupyterlab/json-extension@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/json-extension/-/json-extension-4.0.0-alpha.17.tgz#4b2e1c2cb289849d3dbdef8b1cd667275fb3ac43" - integrity sha512-C5sNFB0ZEqyhh7jOtqR9lnvI9DukZVFeKcBVEgVio9tX8eBwOW6vvZav5Ct8VS4OMashUXu/v25THpph+4TO0g== +"@jupyterlab/json-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/json-extension/-/json-extension-4.0.0-alpha.18.tgz#89f724f2dacbcb76cd5fbf5f89639074d975edbc" + integrity sha512-kv3rS+TnAk/QM2pGPhJES3H4O7pAepib4bOMGWENfPgAzj0aLCJfex+VaIOStkj4IB8z14/EjTTLtb8XrLKHJQ== dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/codemirror" "^4.0.0-alpha.17" - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/codemirror" "^4.0.0-alpha.18" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@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" - react "^17.0.1" - react-dom "^17.0.1" + react "^18.2.0" + react-dom "^18.2.0" react-highlighter "^0.4.3" react-json-tree "^0.16.1" style-mod "^4.0.0" -"@jupyterlab/launcher@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/launcher/-/launcher-4.0.0-alpha.17.tgz#d5eab611e9a8c59e312eebe93b08d0b8afc8ea2e" - integrity sha512-M27tpm3YdZr2zQxGXPWN+l5Yc3P7DEdH1VUHolrfBZSknotq0/hEiwaPpVQWrL5yX1XfqKbNGcL3HWkAL10Y7Q== +"@jupyterlab/launcher@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/launcher/-/launcher-4.0.0-alpha.18.tgz#41f1231641b906c554a30beb187c9f75b5454655" + integrity sha512-kQAbTgwdi5nc9rHhgQyReeliwjSRDI7hjZMSeiXqnoSyg+GPLYDe8lZBzh02OkDtFsoqDSpWT+gmESrhsjHrTQ== dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/commands" "^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" - react "^17.0.1" - -"@jupyterlab/logconsole@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/logconsole/-/logconsole-4.0.0-alpha.17.tgz#9b8d87f27ef59db2edf4cd5e5c187cac29787a98" - integrity sha512-k+ltW8oqd4adc4z/hl9/oyGjaYSu94O0XCzoOokxmOoItotJXYMyOIw9nAarrfmnBdxfIB0F0V/zq+nMQ4dPbA== - dependencies: - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/nbformat" "^4.0.0-alpha.17" - "@jupyterlab/outputarea" "^4.0.0-alpha.17" - "@jupyterlab/rendermime" "^4.0.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" + react "^18.2.0" + +"@jupyterlab/logconsole@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/logconsole/-/logconsole-4.0.0-alpha.18.tgz#38de945d0017b376e8d05b73033a855f6c8c0505" + integrity sha512-ihEEkL9frcd63W1+X7k31YMKRAHDdxiVY4w3hWlJUivUKZ/qgCUbEMq/gsci71y7qxGFvUwjxsLJB9Z9PkiC2Q== + dependencies: + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/nbformat" "^4.0.0-alpha.18" + "@jupyterlab/outputarea" "^4.0.0-alpha.18" + "@jupyterlab/rendermime" "^4.0.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" "@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.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/lsp-extension/-/lsp-extension-4.0.0-alpha.17.tgz#045a50cf8798eeeeaf487937fcb6e76034087d46" - integrity sha512-kpOHcfDSbDDydpN+fEXrrIL3b/SDdSCHi5odxby+hElGQtth0D1BsKUyX3jeikI2Bn1FZrtQEKm43OAsO2W81g== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/lsp" "^4.0.0-alpha.17" - "@jupyterlab/running" "^4.0.0-alpha.17" - "@jupyterlab/settingregistry" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" +"@jupyterlab/lsp-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/lsp-extension/-/lsp-extension-4.0.0-alpha.18.tgz#5cf81ae1a6f742360dfc09b3db9222fb639ed695" + integrity sha512-Ds6wlZCHqgzM6ZmHNJI7Mq4BfXlWC44uEpJ+rO37qDx9CGNpKMZboAMU8FvidC+CziKahHMSuVVUvX/8Ov8igA== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/lsp" "^4.0.0-alpha.18" + "@jupyterlab/running" "^4.0.0-alpha.18" + "@jupyterlab/settingregistry" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/polling" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" "@rjsf/core" "^4.2.0" - react "^17.0.1" - -"@jupyterlab/lsp@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/lsp/-/lsp-4.0.0-alpha.17.tgz#b8064486cdcf85a80b722c6fb88b55eecb32a761" - integrity sha512-+0GrbIphCABaj7t0apNwTryJgLIY7SZ68jGLOlOe1gPOc78l0AZr2Bq5wbLIOJ5V8kpvaCTrU3shMQ5d3K3YPg== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/codeeditor" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/docregistry" "^4.0.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" + react "^18.2.0" + +"@jupyterlab/lsp@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/lsp/-/lsp-4.0.0-alpha.18.tgz#8e11a04411e2f1e9eb559c7fb21d0ba0b0d858ca" + integrity sha512-LeQpCZs+ww1CcOCL0t/Kgc45uSv/vmJLvfn4RbcdWrwFgql3Q80hKW5fl2MIqc1dlvn7ySoHUW2lPSTqIb8GcA== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/codeeditor" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/docregistry" "^4.0.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" @@ -2567,111 +2516,111 @@ vscode-languageserver-protocol "^3.17.0" vscode-ws-jsonrpc "~1.0.2" -"@jupyterlab/mainmenu-extension@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/mainmenu-extension/-/mainmenu-extension-4.0.0-alpha.17.tgz#a5b0ccf9c9c37026c064a3c2c04bfc37e8569d3f" - integrity sha512-oDPSEa1rCJ/0lpDK40se78V0T5rlZEWjKNVH+NET1r11UvfUBYuLbLbqYyJ+qoPnFqLhVkfNhbAWGojHa47ufw== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/mainmenu" "^4.0.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/settingregistry" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" +"@jupyterlab/mainmenu-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/mainmenu-extension/-/mainmenu-extension-4.0.0-alpha.18.tgz#7a59b845d0cbeaa209e462e77b3ca7b53b3750ff" + integrity sha512-8HG29el0+VXwDYzjeLEqaE3FbaAP+WHnWsejQBE4GNxiuSSMzl2YJVJE2cKgjsAhxPESs0JbIXsfPqV05IdksQ== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/mainmenu" "^4.0.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/settingregistry" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@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.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/mainmenu/-/mainmenu-4.0.0-alpha.17.tgz#011c39ed7311a3f1d9df75a9f5742dd211af1e31" - integrity sha512-tZ1DsNgFA2X26G7u9fVpEV/mLjfaRq0W06WaLQhIfEpG0f1h1ilpnekf85z415/HkTaAzi1ksuzPuMhP9L0ZZQ== +"@jupyterlab/mainmenu@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/mainmenu/-/mainmenu-4.0.0-alpha.18.tgz#121c999694f7afa1aeae3ad30cc0710dce91c349" + integrity sha512-FXMQu/dprDo0UHTcnuR3+FbkcQ8yAMWxoeHOGQe9bpYbaFFH4YCo1AoDn2230p55wG1hTZ4Fcq+TeMIn7oBtaA== dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@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.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/markedparser-extension/-/markedparser-extension-4.0.0-alpha.17.tgz#1be4d25d3c6f94cbadf280dd2bedf8327cf5a5a2" - integrity sha512-WEqKtgnXwrGa9T6Wmdp0esOlDCeXBgyCEOOksZUOSBSW57juHUA1r/eWicNQbQsAPpgp4zM+tyIBETHoBpkZeA== +"@jupyterlab/markedparser-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/markedparser-extension/-/markedparser-extension-4.0.0-alpha.18.tgz#794258cee835449c74e5a5ee5b1b367b313f7892" + integrity sha512-Qr7C7AxrYQV/sxxl3fpnm3QG/2yUZT6jOhXL6VLd6nRKBfbbWSmRwODi3fqa2jweSEzo5YIZZ7QwsmpRUsW+Lw== dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/codemirror" "^4.0.0-alpha.17" - "@jupyterlab/rendermime" "^4.0.0-alpha.17" + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/codemirror" "^4.0.0-alpha.18" + "@jupyterlab/rendermime" "^4.0.0-alpha.18" marked "^4.0.17" -"@jupyterlab/mathjax2-extension@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/mathjax2-extension/-/mathjax2-extension-4.0.0-alpha.17.tgz#9f7914967b0822e1bde60643e4af14f53e23ec86" - integrity sha512-jSrrQ4MEUKk9JGXLkpS5E2MBYz/VPDJ3adGDFSmTOgbPbFIHy5X6TL8wsnIpek+5KJe9dRO/bARt4aQ+O1NpPQ== +"@jupyterlab/mathjax2-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/mathjax2-extension/-/mathjax2-extension-4.0.0-alpha.18.tgz#4e05aeb59ee6457759a3f4c019548e58836b3e6b" + integrity sha512-lgK2ZnqE3XpkZRls1vy1m5XMSuAPc1I+gXGnxjSb7OqRX01FlMvp3crAu/zTl6US2uSJf4e085qhfAx08fx8Bg== dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/mathjax2" "^4.0.0-alpha.17" - "@jupyterlab/rendermime" "^4.0.0-alpha.17" + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/mathjax2" "^4.0.0-alpha.18" + "@jupyterlab/rendermime" "^4.0.0-alpha.18" -"@jupyterlab/mathjax2@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/mathjax2/-/mathjax2-4.0.0-alpha.17.tgz#1a940309f8429c37da5db2b43f63dba394cbd18a" - integrity sha512-HfLcyPKsh9uIiPiju7mfRW96SJOQJNFKIkK7r4hhGLpJK5y7q3Ms+liKaGoKs9J/0IB9zuEcUPL+Q1EaLJQ/+w== +"@jupyterlab/mathjax2@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/mathjax2/-/mathjax2-4.0.0-alpha.18.tgz#ff4cae5cdc02204e412c2cdbe7443e6e37f6dace" + integrity sha512-sQWQq1ivtZFNRxVwJHBhHT1ZDYBe+HiEXs7AQoElPzo3Bamsd+ENGLog45RZcHbpRKWT/1mcCi9dxR3qolJc0A== dependencies: - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.17" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.18" "@lumino/coreutils" "^2.0.0-alpha.6" "@jupyterlab/nbformat@^3.0.0 || ^4.0.0-alpha.15": - version "3.5.2" - resolved "https://registry.yarnpkg.com/@jupyterlab/nbformat/-/nbformat-3.5.2.tgz#df8c2dbc8d81543be72519730c9aa0aad7402314" - integrity sha512-Ml5hNpS9tMqZ9ThI24+iXHgX71XWQAysyPOU1vA3idvTGCbGhVc4FaZcDX17uepA7yIEUitlj4xQGtJR8hNzuA== + version "3.6.1" + resolved "https://registry.yarnpkg.com/@jupyterlab/nbformat/-/nbformat-3.6.1.tgz#84f1239ff0a54d693beed21534aef1baeaa93518" + integrity sha512-fLJTAwnQZ/5H9dBV/noqlkbGmGBbcsgd0FHWyMVIq+efKFX6CW1MOk61uM76rfahkke3XgYgvlXsw7i7lEIhcA== dependencies: "@lumino/coreutils" "^1.11.0" -"@jupyterlab/nbformat@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/nbformat/-/nbformat-4.0.0-alpha.17.tgz#4b25586913f73956e1c289667b9e9e278e2b68bf" - integrity sha512-qVp3s+QAdQr/AkR/ISMbrwzRRZlC98/COYIyGO5YhBQyHcOrryivYW4T//YsM1aetyoon1JNtVS68Xieca3Z9Q== +"@jupyterlab/nbformat@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/nbformat/-/nbformat-4.0.0-alpha.18.tgz#fefbe2ae842ce855dcd05ffe313829b7554095ef" + integrity sha512-3/D93GouwyF9PX/a5gun22Jn9MPc8acmz6FvHbY6ndRSNHSMNAzNTKjEJEx4vgze25hpXXYKobu1LwiOoGXQ5g== dependencies: "@lumino/coreutils" "^2.0.0-alpha.6" -"@jupyterlab/notebook-extension@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/notebook-extension/-/notebook-extension-4.0.0-alpha.17.tgz#98c326a0eba39b0cd8a14a691052927ed913acad" - integrity sha512-UWOM+O3NAhdt+89MDyu69rjB5GOuSsyLojut8oNAJ64mN+q7QeAPZkuJJjf/OWXLoB+A8k6KJ0EFns0DEZ6b3w== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/cells" "^4.0.0-alpha.17" - "@jupyterlab/codeeditor" "^4.0.0-alpha.17" - "@jupyterlab/completer" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/docmanager" "^4.0.0-alpha.17" - "@jupyterlab/docmanager-extension" "^4.0.0-alpha.17" - "@jupyterlab/docregistry" "^4.0.0-alpha.17" - "@jupyterlab/documentsearch" "^4.0.0-alpha.17" - "@jupyterlab/filebrowser" "^4.0.0-alpha.17" - "@jupyterlab/launcher" "^4.0.0-alpha.17" - "@jupyterlab/logconsole" "^4.0.0-alpha.17" - "@jupyterlab/lsp" "^4.0.0-alpha.17" - "@jupyterlab/mainmenu" "^4.0.0-alpha.17" - "@jupyterlab/nbformat" "^4.0.0-alpha.17" - "@jupyterlab/notebook" "^4.0.0-alpha.17" - "@jupyterlab/observables" "^5.0.0-alpha.17" - "@jupyterlab/property-inspector" "^4.0.0-alpha.17" - "@jupyterlab/rendermime" "^4.0.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/settingregistry" "^4.0.0-alpha.17" - "@jupyterlab/statedb" "^4.0.0-alpha.17" - "@jupyterlab/statusbar" "^4.0.0-alpha.17" - "@jupyterlab/toc" "^6.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" +"@jupyterlab/notebook-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/notebook-extension/-/notebook-extension-4.0.0-alpha.18.tgz#783ddad9c3c7943d7c25bc58aea4693f1331e330" + integrity sha512-+mlncJyTTbsRKSySEIdbK8dT+qdgnKy9B0IlcoALI0olDTuQFlyX7ef8DqsIYLCaHPWrMoVcHUYcnyfnw95uAA== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/cells" "^4.0.0-alpha.18" + "@jupyterlab/codeeditor" "^4.0.0-alpha.18" + "@jupyterlab/completer" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/docmanager" "^4.0.0-alpha.18" + "@jupyterlab/docmanager-extension" "^4.0.0-alpha.18" + "@jupyterlab/docregistry" "^4.0.0-alpha.18" + "@jupyterlab/documentsearch" "^4.0.0-alpha.18" + "@jupyterlab/filebrowser" "^4.0.0-alpha.18" + "@jupyterlab/launcher" "^4.0.0-alpha.18" + "@jupyterlab/logconsole" "^4.0.0-alpha.18" + "@jupyterlab/lsp" "^4.0.0-alpha.18" + "@jupyterlab/mainmenu" "^4.0.0-alpha.18" + "@jupyterlab/nbformat" "^4.0.0-alpha.18" + "@jupyterlab/notebook" "^4.0.0-alpha.18" + "@jupyterlab/observables" "^5.0.0-alpha.18" + "@jupyterlab/property-inspector" "^4.0.0-alpha.18" + "@jupyterlab/rendermime" "^4.0.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/settingregistry" "^4.0.0-alpha.18" + "@jupyterlab/statedb" "^4.0.0-alpha.18" + "@jupyterlab/statusbar" "^4.0.0-alpha.18" + "@jupyterlab/toc" "^6.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/commands" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" @@ -2679,29 +2628,29 @@ "@lumino/messaging" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/notebook@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/notebook/-/notebook-4.0.0-alpha.17.tgz#4a03f357ac260bf20fb52e224c42e34b2530aff2" - integrity sha512-gwqCCYTxC2/R8RJ2OXnaw3P/mcOUlsoid8vGXZlrgS2N+ZDU0qM5Wi8bHqdBIMGoC7HOiBOBUUPwJGt/J9qYcA== - dependencies: - "@jupyter/ydoc" "~0.2.2" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/cells" "^4.0.0-alpha.17" - "@jupyterlab/codeeditor" "^4.0.0-alpha.17" - "@jupyterlab/codemirror" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/docregistry" "^4.0.0-alpha.17" - "@jupyterlab/documentsearch" "^4.0.0-alpha.17" - "@jupyterlab/lsp" "^4.0.0-alpha.17" - "@jupyterlab/nbformat" "^4.0.0-alpha.17" - "@jupyterlab/observables" "^5.0.0-alpha.17" - "@jupyterlab/rendermime" "^4.0.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/settingregistry" "^4.0.0-alpha.17" - "@jupyterlab/statusbar" "^4.0.0-alpha.17" - "@jupyterlab/toc" "^6.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" +"@jupyterlab/notebook@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/notebook/-/notebook-4.0.0-alpha.18.tgz#28efb78dc5b5ac7220ebf3c8c22dc84bdb542913" + integrity sha512-FH0ljFet3b0rQiXmAQHOg9fpCfgDDkN44/5ch48Ev+5a06MRyven4kzX5lgeELeYaQXVaJQw8D5YBMznZgEkAg== + dependencies: + "@jupyter/ydoc" "^0.3.1" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/cells" "^4.0.0-alpha.18" + "@jupyterlab/codeeditor" "^4.0.0-alpha.18" + "@jupyterlab/codemirror" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/docregistry" "^4.0.0-alpha.18" + "@jupyterlab/documentsearch" "^4.0.0-alpha.18" + "@jupyterlab/lsp" "^4.0.0-alpha.18" + "@jupyterlab/nbformat" "^4.0.0-alpha.18" + "@jupyterlab/observables" "^5.0.0-alpha.18" + "@jupyterlab/rendermime" "^4.0.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/settingregistry" "^4.0.0-alpha.18" + "@jupyterlab/statusbar" "^4.0.0-alpha.18" + "@jupyterlab/toc" "^6.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/domutils" "^2.0.0-alpha.6" @@ -2712,12 +2661,12 @@ "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/virtualdom" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" - react "^17.0.1" + react "^18.2.0" -"@jupyterlab/observables@^5.0.0-alpha.17": - version "5.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/observables/-/observables-5.0.0-alpha.17.tgz#0ceab3709ff99ea7e596bc715ba20f99b8f34e4d" - integrity sha512-RlmyUn8imE04G39c5ay2mR4X7xd4+x9q6GSm3ObvzuBN6A2r/q17dfGFUMlJeyEfoV1MuMo1oGqsyABWNi33lg== +"@jupyterlab/observables@^5.0.0-alpha.18": + version "5.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/observables/-/observables-5.0.0-alpha.18.tgz#4ec161f734fb4b0e4c6444c53e6d3612f9a32790" + integrity sha512-Al1EY1z5lnFcKMwBnfPGYJWOIAhav0BURccAhVoUnx+/HYBWr/RzsLFy9tsDKDe00edRKf77OKIC1TxIuYa99w== dependencies: "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" @@ -2725,18 +2674,18 @@ "@lumino/messaging" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" -"@jupyterlab/outputarea@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/outputarea/-/outputarea-4.0.0-alpha.17.tgz#eac911f9578abcac1d93c7de93293276bff5ff27" - integrity sha512-bmJ7uFCLL1RvvkaS7C6wlNJmgOx5iMXyLxpPZ2FH/xDZAP7n+TrWYjHUsuoO7ARTX34H0NFX3qa4hWEfJqHGhQ== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/nbformat" "^4.0.0-alpha.17" - "@jupyterlab/observables" "^5.0.0-alpha.17" - "@jupyterlab/rendermime" "^4.0.0-alpha.17" - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" +"@jupyterlab/outputarea@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/outputarea/-/outputarea-4.0.0-alpha.18.tgz#e54a666f1ed21434b0325c13625668dc91242087" + integrity sha512-w/5AyodfkJHPPavM8fXXmYGr3pEm4RkVetnHefGrWWLcpGX+Og1QOVVtW69kc1uWl2bUHh0AycTspNNRgFFvaw== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/nbformat" "^4.0.0-alpha.18" + "@jupyterlab/observables" "^5.0.0-alpha.18" + "@jupyterlab/rendermime" "^4.0.0-alpha.18" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" @@ -2745,142 +2694,144 @@ "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/pdf-extension@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/pdf-extension/-/pdf-extension-4.0.0-alpha.17.tgz#7861c32effc36e244ab4d4cfdee7d215048ae7c7" - integrity sha512-YL1NmsWUyXzVaKWXClKDNGKbAcOABRQKKe9aA5PV3vRC0fNbK1kPVAnw+QkivPk5thVpStLAZw85Mez68U0WAQ== +"@jupyterlab/pdf-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/pdf-extension/-/pdf-extension-4.0.0-alpha.18.tgz#024b01c1269110655c22fcd5e77d811754ff6625" + integrity sha512-fwYzaxKMo0VIgie4ZXhgAqXsXhbEoUUGMd3dMszgMyIPLqHIEdIL/ibHvdjZg2GvQv3zHp6cmN+3i1d4yTHN9Q== dependencies: - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.17" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.18" "@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.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/property-inspector/-/property-inspector-4.0.0-alpha.17.tgz#85f62cc9f24bf1c7063b4da99a1bbbc17f240dcd" - integrity sha512-WMxBrGp1De+qGLhVWVumqGVlcqY1dw+NMWF63mboPs1IQf4emVMW4troU/tb8Qh7fn1HeOT4GUe8zzT69Hu+vw== +"@jupyterlab/property-inspector@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/property-inspector/-/property-inspector-4.0.0-alpha.18.tgz#15de70da56da2a7dfe3dbb4a87007ef4a3df7a37" + integrity sha512-TpJxPXRKfawD8cQEL97whEJOOUxqdscBI1q0KTZ0F6SqCyujRmzV0jYnGsDePCXyau/qHCcrsL4PvYnzJXjv6A== dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@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" + react "^18.2.0" -"@jupyterlab/rendermime-extension@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/rendermime-extension/-/rendermime-extension-4.0.0-alpha.17.tgz#ec3821e482d0fa74533886955447cd69d1b226d0" - integrity sha512-gP/rkII82/fDh9S1VuEGmNvUbJL3FiYRswkcjXM7SK+XfqNbaF7YQiJzfGXjhDdrjnI/ig6KXAO5hxhP9nX6Hw== +"@jupyterlab/rendermime-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/rendermime-extension/-/rendermime-extension-4.0.0-alpha.18.tgz#099d46f3e1eeb8e42afcdde86f9bcf59a28b2596" + integrity sha512-LHk4dRd/rOF4/CIFgmBk35GNiFCBEiVIIR4M6v6bxjorV05eBUOhuE27H0Cv3HFA4UB5pBQNiL5c5Ux25Awr1w== dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/docmanager" "^4.0.0-alpha.17" - "@jupyterlab/rendermime" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/docmanager" "^4.0.0-alpha.18" + "@jupyterlab/rendermime" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" -"@jupyterlab/rendermime-interfaces@^3.8.0-alpha.17": - version "3.8.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/rendermime-interfaces/-/rendermime-interfaces-3.8.0-alpha.17.tgz#79943eae7f4eb2fc773138f4f2ac99e8ef5dfd22" - integrity sha512-WU6MTvrnRgoxrN5ZnT63s/Ag1n3Q/DeFpq8sBcoglzckCcmVIi0OwNHZZMFQWw1jQgDQfr0SXQgXKDxtg6pgzQ== +"@jupyterlab/rendermime-interfaces@^3.8.0-alpha.18": + version "3.8.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/rendermime-interfaces/-/rendermime-interfaces-3.8.0-alpha.18.tgz#d7406fe2fca3eaf7d04f331404f53d8c6e411901" + integrity sha512-PM0tNeU5qCxCeBRdGNsZiWQb/VMLD2WVwssDG+GWmeGvPoz7vUvDKtmxqGxO8l1mBnwGTBNAjlanzHeeTnfMnA== dependencies: "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/rendermime@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/rendermime/-/rendermime-4.0.0-alpha.17.tgz#950da12cbe2f748d0515bee2dc0ae0bc7b9627fb" - integrity sha512-lO+dT1E2ODyQerofFCybwcwaRhWzXmQoBP7mbtckBZPgaqG24j1cIK5exiEvObGeOoAeITNbwcHK+O27l4Antw== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/nbformat" "^4.0.0-alpha.17" - "@jupyterlab/observables" "^5.0.0-alpha.17" - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" +"@jupyterlab/rendermime@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/rendermime/-/rendermime-4.0.0-alpha.18.tgz#66139cd2eb0ba55cf9e2df8d71b1354879fb0a75" + integrity sha512-KDW+zD8LMWfKaPimWuJ0JDL1x+gtdpAlTwSuHSqT7dbzlepx67Zb6uqvMIdegPKVNpGoX2G1zyakuaDQMzYpsw== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/nbformat" "^4.0.0-alpha.18" + "@jupyterlab/observables" "^5.0.0-alpha.18" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" "@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.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/running-extension/-/running-extension-4.0.0-alpha.17.tgz#0277c4c83eb9c179a63ca65ff2f515497e78900c" - integrity sha512-nqeTmoCRYHw+GMf6LMCkbid3U0I746KnWZHfclnkMNPMBHI+lGe/5E6q31DFFnFQg6CcYlvgf9I+/VkF4H0ClA== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/docregistry" "^4.0.0-alpha.17" - "@jupyterlab/running" "^4.0.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" +"@jupyterlab/running-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/running-extension/-/running-extension-4.0.0-alpha.18.tgz#23eb12281dc93622ac2a3d28b1e4d9699f6accfe" + integrity sha512-aSTUON6/EWQDq9ZE3wPW71B810upOVnNdT3YjtYdJrbFwKUD6q1tdwVt6Mi50dbZGrjMiEw0NxqO3GQ4oL2OEQ== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/docregistry" "^4.0.0-alpha.18" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.18" + "@jupyterlab/running" "^4.0.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" + "@lumino/commands" "^2.0.0-alpha.6" + "@lumino/polling" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/running@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/running/-/running-4.0.0-alpha.17.tgz#1e9b773fe5d0f0f2d50ebfc3769888c6cbf5b245" - integrity sha512-gycbd9+MwAtcTociI5Sj/PZhLLH8jrlAIK5FpQS4xz+h5npx8gkaIaZcl/7hEzUU8G9MoSkjbG56DXy6JUtqjg== +"@jupyterlab/running@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/running/-/running-4.0.0-alpha.18.tgz#7b43afe6aadde76aa0a8ea8a4122be0b9850fd17" + integrity sha512-h6SDIzhnKfAk3uoNiOCfUTayvB79mWSjG86h6w7p+GAOhH0k2R5JuAjKPENQqRjz381RSz8sWCSjaQh33Zu/DA== dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@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.17": - version "7.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/services/-/services-7.0.0-alpha.17.tgz#d6fb53b69399efe11f5da71494279db49d4a3279" - integrity sha512-T1sT//vXllwsLBRGxEFNkqF4AcTFBV7PRCPblK66Wwa5gvu+KvLRoL2CiPOYjwSrASZ/6nhaQyL3oBnRlvFmoA== - dependencies: - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/nbformat" "^4.0.0-alpha.17" - "@jupyterlab/settingregistry" "^4.0.0-alpha.17" - "@jupyterlab/statedb" "^4.0.0-alpha.17" + react "^18.2.0" + +"@jupyterlab/services@^7.0.0-alpha.18": + version "7.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/services/-/services-7.0.0-alpha.18.tgz#e2fe40fa9cd3e3d8d0a9d646361764115d84bdf6" + integrity sha512-qSFw3h23YgkgAzgPzxwOEs3dDjFnHJWMXG8WEzAzsmTXbY+hozEy8fEZDAalRXYYIraoDoZi+ioPyNhv7vjBgw== + dependencies: + "@jupyter/ydoc" "^0.3.1" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/nbformat" "^4.0.0-alpha.18" + "@jupyterlab/settingregistry" "^4.0.0-alpha.18" + "@jupyterlab/statedb" "^4.0.0-alpha.18" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/polling" "^2.0.0-alpha.6" "@lumino/properties" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" - node-fetch "^2.6.0" ws "^8.11.0" -"@jupyterlab/settingeditor-extension@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/settingeditor-extension/-/settingeditor-extension-4.0.0-alpha.17.tgz#2f7e56116c5676f7b5d263e1cb2b0cb1b4254670" - integrity sha512-7jjP3gYFFZ99A/Zcw3PRoHNBzmgZk858JKCWFYCQTGiuBcxn4DGmtKhtzEC8xoiXJuH3uVSc8+6BJ13u3NikzA== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/codeeditor" "^4.0.0-alpha.17" - "@jupyterlab/rendermime" "^4.0.0-alpha.17" - "@jupyterlab/settingeditor" "^4.0.0-alpha.17" - "@jupyterlab/settingregistry" "^4.0.0-alpha.17" - "@jupyterlab/statedb" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" +"@jupyterlab/settingeditor-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/settingeditor-extension/-/settingeditor-extension-4.0.0-alpha.18.tgz#bf36f6893a2dabb88781b094806ff3541205ed47" + integrity sha512-FjlbAeb61H84GeqMxGTCMv4s8MZCeBwf/iD5LUZPcXniJ8ugMuek9YpDKKYERgfNtapQk4s/1TCmiPPdGdmpzA== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/codeeditor" "^4.0.0-alpha.18" + "@jupyterlab/rendermime" "^4.0.0-alpha.18" + "@jupyterlab/settingeditor" "^4.0.0-alpha.18" + "@jupyterlab/settingregistry" "^4.0.0-alpha.18" + "@jupyterlab/statedb" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@lumino/disposable" "^2.0.0-alpha.6" -"@jupyterlab/settingeditor@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/settingeditor/-/settingeditor-4.0.0-alpha.17.tgz#842d43fd10a4d3676962938815b4e5a7cdee6977" - integrity sha512-UtLYhF9cPtVLbUDSgSG58LYoTH0hC/mD5jRJQAcxFut+K5hQIVplYCSWtqBw+l9zBxPh6zCvumm2Gx4azTgQXw== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/codeeditor" "^4.0.0-alpha.17" - "@jupyterlab/inspector" "^4.0.0-alpha.17" - "@jupyterlab/rendermime" "^4.0.0-alpha.17" - "@jupyterlab/settingregistry" "^4.0.0-alpha.17" - "@jupyterlab/statedb" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" +"@jupyterlab/settingeditor@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/settingeditor/-/settingeditor-4.0.0-alpha.18.tgz#219c30564c931518f509a50344e5a08517b58ce7" + integrity sha512-buB6w3wmONxj6eu1KB7NIE97ZHF/xHBIwMni3Lr7Acn3n14ogUkAgYBySrpGgK5xR7J3dzukwXGuhbgB1j9HWA== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/codeeditor" "^4.0.0-alpha.18" + "@jupyterlab/inspector" "^4.0.0-alpha.18" + "@jupyterlab/rendermime" "^4.0.0-alpha.18" + "@jupyterlab/settingregistry" "^4.0.0-alpha.18" + "@jupyterlab/statedb" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/commands" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" @@ -2891,31 +2842,31 @@ "@lumino/widgets" "^2.0.0-alpha.6" "@rjsf/core" "^4.2.0" json-schema "^0.4.0" - react "^17.0.1" + react "^18.2.0" -"@jupyterlab/settingregistry@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/settingregistry/-/settingregistry-4.0.0-alpha.17.tgz#8ccc96bab21115d0b45d4045b3c05c8a26b2c58e" - integrity sha512-aBm6lnEiYJv9S84dIks3vOKNrIy3OmXk/HgtL4qxfGVr5N+uPjIhY0F5eW8atCi+N2fzPugN3YnRclen5IXImg== +"@jupyterlab/settingregistry@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/settingregistry/-/settingregistry-4.0.0-alpha.18.tgz#8879e9e8168894d49b3fc909dfe5ab3cb931d7b4" + integrity sha512-tnauP99LQHY9hBYyp94VMpKX0uy+Xlsebv+ZlkHStU73BfZq3ZfGBJ21FBHngNpiyJm4GAiwDJ7PALcingpOKw== dependencies: - "@jupyterlab/nbformat" "^4.0.0-alpha.17" - "@jupyterlab/statedb" "^4.0.0-alpha.17" + "@jupyterlab/nbformat" "^4.0.0-alpha.18" + "@jupyterlab/statedb" "^4.0.0-alpha.18" "@lumino/commands" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/disposable" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" ajv "^6.12.3" - json5 "^2.1.1" + json5 "^2.2.3" -"@jupyterlab/shortcuts-extension@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/shortcuts-extension/-/shortcuts-extension-4.0.0-alpha.17.tgz#fb26b3dc1df766b644b10f18e3ddf98af7e1cd7c" - integrity sha512-aSSMyILWU7Z5EzUBtfPjnp6FbRp2ptxTwESRLv6XDgB84zcA/fEyuqj5HhtKAFFW8e2tbEtY6A4zXlDKMTabmQ== +"@jupyterlab/shortcuts-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/shortcuts-extension/-/shortcuts-extension-4.0.0-alpha.18.tgz#912fe0a6f656a698422b273f718b2b637847c9c8" + integrity sha512-PtLSa7xMePYozvU3zDHQVOtHixcPH+oC7BIfo57Wk4heZ23mVITiqWy3ibn2q1eQfiVX/Y0MpowOO23NgCRfyA== dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/settingregistry" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/settingregistry" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/commands" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" @@ -2923,12 +2874,12 @@ "@lumino/domutils" "^2.0.0-alpha.6" "@lumino/keyboard" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" - react "^17.0.1" + react "^18.2.0" -"@jupyterlab/statedb@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/statedb/-/statedb-4.0.0-alpha.17.tgz#82a82a8295c72cac1fe4d1eab93f16b5c063cd01" - integrity sha512-oUy1WELSjaXUveR0WaQfu7qTi8c5GEAbR/ve3M/gzJNtPkR8lq5KexOQmuIUAKscY9IE7Xm2MHTRm6aTTfsZJg== +"@jupyterlab/statedb@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/statedb/-/statedb-4.0.0-alpha.18.tgz#771fbbd024573bee21de41b113d6c043c5b647b1" + integrity sha512-t6W44viC6AyRGckSSU+2yQLbGlS7Mp19hbw2c0Qf34a2N7eWzCX1QqmSmhsuIE7eFBPJh1cPua6OSGKObV6MYg== dependencies: "@lumino/commands" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" @@ -2936,61 +2887,63 @@ "@lumino/properties" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" -"@jupyterlab/statusbar@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/statusbar/-/statusbar-4.0.0-alpha.17.tgz#c8277cf74504b962d4f9e13bc0fcdd895148a32d" - integrity sha512-572a7BXj8qXPq1H/++IBoRsP8dNpOtKYJxWz7G2I0B+gEu4fioMfkgKkP1W1gYlYZ87nPE0GmuWptgwrH9ddRA== +"@jupyterlab/statusbar@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/statusbar/-/statusbar-4.0.0-alpha.18.tgz#edb774fd9e5b08f3ab21b7d736dc27ed1e853e9a" + integrity sha512-d5kxMMUgDo3w/g9ZgFHrwibJJcMegyrVCDh/gNKwJcKog6NRDOVuiZQP9PDWkWYl009fGTDvxhljSOTo4BdQqA== dependencies: - "@jupyterlab/ui-components" "^4.0.0-alpha.32" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@lumino/algorithm" "^2.0.0-alpha.6" "@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" - react "^17.0.1" - -"@jupyterlab/terminal-extension@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/terminal-extension/-/terminal-extension-4.0.0-alpha.17.tgz#9cf29c464900942ff70c99b864b45139a2afed99" - integrity sha512-C6eT2qHFvhki9Ze/bi91d9IrAcFs3TTXaHZR/H8in0rnKzyh7aLpsB6v8zNSG/N4K2/4C5Hx/GOH6hl5Sz098A== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/launcher" "^4.0.0-alpha.17" - "@jupyterlab/mainmenu" "^4.0.0-alpha.17" - "@jupyterlab/running" "^4.0.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/settingregistry" "^4.0.0-alpha.17" - "@jupyterlab/terminal" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" + react "^18.2.0" + +"@jupyterlab/terminal-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/terminal-extension/-/terminal-extension-4.0.0-alpha.18.tgz#a5312d73bdbd94edc7293bdcda1642a4c99b361c" + integrity sha512-1KmcxeDv097KwFrGN/rDs2AKF1GVXV6PvZQYkEKaC+Mu8p6rWJeJGHqEaYjyCTIyX/4U2fkTPIqiKcYuOjo6gQ== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/launcher" "^4.0.0-alpha.18" + "@jupyterlab/mainmenu" "^4.0.0-alpha.18" + "@jupyterlab/running" "^4.0.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/settingregistry" "^4.0.0-alpha.18" + "@jupyterlab/terminal" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@lumino/widgets" "^2.0.0-alpha.6" -"@jupyterlab/terminal@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/terminal/-/terminal-4.0.0-alpha.17.tgz#ab68e2a531fb8910756843fc036ae861ae73beda" - integrity sha512-q07MoZ1k2YeBdNNgP8mtQZLxU2YB0zB0psgFVjdOXjoaZqjhCcWcGgjOZoGYMhp2/Yp+4G7in5ZggK2iFojtSQ== +"@jupyterlab/terminal@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/terminal/-/terminal-4.0.0-alpha.18.tgz#2261b71b22cd9ed90045ae96e6d7b4da1837b12f" + integrity sha512-fRjzTmmMcvAEXNrsIovqygF8e/Wsj98iBcUa8NcY/kleUPRad75Fdy9g9w8E7XRhX5OLHhQUhaB2mBMqCrGOOQ== dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/domutils" "^2.0.0-alpha.6" "@lumino/messaging" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" - xterm "~4.19.0" - xterm-addon-fit "~0.5.0" - xterm-addon-web-links "~0.6.0" + xterm "~5.1.0" + xterm-addon-canvas "~0.3.0" + xterm-addon-fit "~0.7.0" + xterm-addon-web-links "~0.8.0" + xterm-addon-webgl "~0.14.0" -"@jupyterlab/testing@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/testing/-/testing-4.0.0-alpha.17.tgz#bc20ee7a974708b71b347748831a1083b14d4356" - integrity sha512-5ChQ5MnhcgTtNQGCF9xaRgveaHaH+YbnvGbIpWFeBDwihukTEHssL+khHjqe4lqsaEhlBUZpcwrrWQ46WbUEjw== +"@jupyterlab/testing@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/testing/-/testing-4.0.0-alpha.18.tgz#5dd0a3481fe9f5c7e30949c3c47b6e75e2d354fc" + integrity sha512-+VLbPJclUM2Q981LNdqHC8cWx4Hk694F15tTl/FZ05yhHdmWe3C49bi9DOWx72S7K2+bJbSfutL7udtkmj0qtg== dependencies: "@babel/core" "^7.10.2" "@babel/preset-env" "^7.10.2" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" "@lumino/coreutils" "^2.0.0-alpha.6" "@lumino/signaling" "^2.0.0-alpha.6" child_process "~1.0.2" @@ -3004,136 +2957,136 @@ simulate-event "~1.4.0" ts-jest "^29.0.0" -"@jupyterlab/testutils@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/testutils/-/testutils-4.0.0-alpha.17.tgz#0ebc105a5f02f311543f0b50c5b3791a449e1b18" - integrity sha512-NPuAhj9cdF/pQTvPf1m/0to3wVevgGGAVdm9GR58ziKx03hWYBlKDVao34ZZp3YpFixTLEvyeR9exFqh+nFTBQ== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/notebook" "^4.0.0-alpha.17" - "@jupyterlab/rendermime" "^4.0.0-alpha.17" - "@jupyterlab/testing" "^4.0.0-alpha.17" - -"@jupyterlab/theme-dark-extension@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/theme-dark-extension/-/theme-dark-extension-4.0.0-alpha.17.tgz#f6cb336ae7fb035f4533d4cf2cfe9789cfc1996c" - integrity sha512-ns+jZU2OLU/zmtwda2IwkVd5ltcp2DYNW24WeseVmEkOEXmiShi5k07E7EGcfkmKE/F8zhdAYlv090CF4EtKwA== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - -"@jupyterlab/theme-light-extension@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/theme-light-extension/-/theme-light-extension-4.0.0-alpha.17.tgz#4fe90bf9fd10ca3394ce0b076ad86fdf4aac65b5" - integrity sha512-9oZH6UtUwqRl74ZVtbckcjJGgqHYcwz/ty+2A7YjmBUscKBcrFhdO3vnT+9Pph7YDHgSLgcH/p/kSSPUmGNF2w== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - -"@jupyterlab/toc-extension@^6.0.0-alpha.17": - version "6.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/toc-extension/-/toc-extension-6.0.0-alpha.17.tgz#0b411d532eea1a613a39b852cddf8bad1650faa6" - integrity sha512-7pgSUEpBkbZfZoBZeTtTbmgUEgO9ZKmVLzamElTd67Su+tnzbRRPD45r12Y7Oz3dhqi7QSzm0Ox2u4aBwUTzDg== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/settingregistry" "^4.0.0-alpha.17" - "@jupyterlab/toc" "^6.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" - -"@jupyterlab/toc@^6.0.0-alpha.17": - version "6.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/toc/-/toc-6.0.0-alpha.17.tgz#05d7539a15051cbf2a41f421f16e7f1375c3b140" - integrity sha512-2KFIQV6EwqHN7fSSGHoaffJqILpKaV7aG97wOejXqYTgAFul5qeOJHB5M3d3seO2bDcoX7YRsrGU9tEKiuWfhA== - dependencies: - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/docregistry" "^4.0.0-alpha.17" - "@jupyterlab/observables" "^5.0.0-alpha.17" - "@jupyterlab/rendermime" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" +"@jupyterlab/testutils@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/testutils/-/testutils-4.0.0-alpha.18.tgz#b44976e94e9dd795aea2d6a8a2c05306fa10cba4" + integrity sha512-4yQqgFDRzVR1K96bpfm8/r3ZJu2AqLp05G9RdKL3WPRezheZOF/hyTuX9FoNBCRKaJ8rEEHEC5hVJam6snzCWw== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/notebook" "^4.0.0-alpha.18" + "@jupyterlab/rendermime" "^4.0.0-alpha.18" + "@jupyterlab/testing" "^4.0.0-alpha.18" + +"@jupyterlab/theme-dark-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/theme-dark-extension/-/theme-dark-extension-4.0.0-alpha.18.tgz#3b9f49fbaa8a40ea73ef39ce59db7d472f93e3fa" + integrity sha512-JL2KqvbilTxmXmwbPSFIwufm/dA5KLQ87pe4ISebXfk2mImH8iLckk03UiIzdmDZKnR4j4j+v34s7ZCz5kBGag== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + +"@jupyterlab/theme-light-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/theme-light-extension/-/theme-light-extension-4.0.0-alpha.18.tgz#5f44c60054151b875cb2b785cf3ff45a20730104" + integrity sha512-3Lvaihu66O3JfntKn9gFNp3laFPlxOHnXnCNPHFKlnwENSTL0hOqyo0zWddKFlaOqfs+g+g8DZPu/YG8PVAAKg== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + +"@jupyterlab/toc-extension@^6.0.0-alpha.18": + version "6.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/toc-extension/-/toc-extension-6.0.0-alpha.18.tgz#b1e3ed8e25af714d637860d97a5ab942c8da5b11" + integrity sha512-s8+34KV/FyXusy8OdRAnWfUQ6bbwGlbHNThy5nnufsw+ETFvwWev/nrdy0R04ntGH4Qk4Btiv4eV+DL2aw+tTQ== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/settingregistry" "^4.0.0-alpha.18" + "@jupyterlab/toc" "^6.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" + +"@jupyterlab/toc@^6.0.0-alpha.18": + version "6.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/toc/-/toc-6.0.0-alpha.18.tgz#c2a325df6f7f9dd96af61b961c3b2e5f780f5e56" + integrity sha512-8jA56r/FSaAi9SrX/5IOTtdb1FluUbcox+VraSFnBrf/9cdOKqvGOhLOung8wLP00VLwVfeL5CT0Zz1wk+UW5w== + dependencies: + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/docregistry" "^4.0.0-alpha.18" + "@jupyterlab/observables" "^5.0.0-alpha.18" + "@jupyterlab/rendermime" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@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" - react "^17.0.1" - -"@jupyterlab/tooltip-extension@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/tooltip-extension/-/tooltip-extension-4.0.0-alpha.17.tgz#804e439daa7fe5ca7d845f56e567ed3b1493a31d" - integrity sha512-ssS1jKWTBy0S5i6aSRwFU8qIcmasBX+ByGq/wSdxhrIuWhB/P90cMEA4FfO3de5wRw1QoFMZqppyDy4GUk1PtQ== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/codeeditor" "^4.0.0-alpha.17" - "@jupyterlab/console" "^4.0.0-alpha.17" - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/fileeditor" "^4.0.0-alpha.17" - "@jupyterlab/notebook" "^4.0.0-alpha.17" - "@jupyterlab/rendermime" "^4.0.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/tooltip" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" + react "^18.2.0" + +"@jupyterlab/tooltip-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/tooltip-extension/-/tooltip-extension-4.0.0-alpha.18.tgz#50231c1dc2b2ca488cb4e52a1ee544da511bdf2d" + integrity sha512-Bqbd6SO/qVGuXsGh0eQKweC0cJB9C/Sd3CT+YisEOYG5AaYLEMuNEuPbR73veVTwxqGxupfgDult/a1NZi1C8w== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/codeeditor" "^4.0.0-alpha.18" + "@jupyterlab/console" "^4.0.0-alpha.18" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/fileeditor" "^4.0.0-alpha.18" + "@jupyterlab/notebook" "^4.0.0-alpha.18" + "@jupyterlab/rendermime" "^4.0.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/tooltip" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" "@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.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/tooltip/-/tooltip-4.0.0-alpha.17.tgz#eb2af6c5e2087d6bab63b27069d08468601ccc65" - integrity sha512-yl5xTIIJKq4JvbpvyUFeNtDhPcd8vN/1wCr1SFIQlAm6ESL6bTOVhu509XiCIPN1lN+ojO4GyS/FMe3ZUZWWcg== +"@jupyterlab/tooltip@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/tooltip/-/tooltip-4.0.0-alpha.18.tgz#8b0bdb1b8dc00c254e26bf1f2ad650fef13bc1a5" + integrity sha512-EQVEeYt+gPGh+N4AocYwD/9u8jfB+JEfvMEWauxCwusPZPagaUqSpRv1M7aY3NbHDdmdXY6Wla2u1MOHMeSAnA== dependencies: - "@jupyterlab/codeeditor" "^4.0.0-alpha.17" - "@jupyterlab/rendermime" "^4.0.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" + "@jupyterlab/codeeditor" "^4.0.0-alpha.18" + "@jupyterlab/rendermime" "^4.0.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" "@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.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/translation-extension/-/translation-extension-4.0.0-alpha.17.tgz#e9e9c379b0800cb7fbb2cc00cfab9605faf01b35" - integrity sha512-x4PlL8SRlqB1XodGFRHp07rHE9aLVjNowAMKoXKlBRgeu6ci7CLy3Ox447k77V1p7MUmDbwVTn/JG1R1M9G4HQ== - dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/apputils" "^4.0.0-alpha.17" - "@jupyterlab/mainmenu" "^4.0.0-alpha.17" - "@jupyterlab/settingregistry" "^4.0.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" - -"@jupyterlab/translation@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/translation/-/translation-4.0.0-alpha.17.tgz#8c00772182119e081f325b7cf2ef7a3498213eea" - integrity sha512-lJZsIC2RoENTBvyT+xJENXal/bAwF/HI295IIflvB1hJZ3837cWToXuKM/zMyKtku8uPNQo2aI9/kBmtMguz4Q== - dependencies: - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.17" - "@jupyterlab/services" "^7.0.0-alpha.17" - "@jupyterlab/statedb" "^4.0.0-alpha.17" +"@jupyterlab/translation-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/translation-extension/-/translation-extension-4.0.0-alpha.18.tgz#fa363ddc31aaf5a6e1d047156f8ce2ea16cb03ab" + integrity sha512-Z8f7ARHyxxCUx3mdohOMhlnUNPN7Ie7bhTm3a+br69W7WBnBs9gbcHzTX/c/EEbwkT1z67DhoHKspuSNhVj1ww== + dependencies: + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/apputils" "^4.0.0-alpha.18" + "@jupyterlab/mainmenu" "^4.0.0-alpha.18" + "@jupyterlab/settingregistry" "^4.0.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" + +"@jupyterlab/translation@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/translation/-/translation-4.0.0-alpha.18.tgz#146871e13fed98396b7767422a9c8e445aba7cdd" + integrity sha512-v55zNhpoKeajp3p2i++0bJxxiOCZgEO3G3O1GRa2RxZQkcMbTRgS7r9a9QJ6CDPsPPru/Qs+v09lqlXkgpx+5w== + dependencies: + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.18" + "@jupyterlab/services" "^7.0.0-alpha.18" + "@jupyterlab/statedb" "^4.0.0-alpha.18" "@lumino/coreutils" "^2.0.0-alpha.6" -"@jupyterlab/ui-components-extension@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/ui-components-extension/-/ui-components-extension-4.0.0-alpha.17.tgz#bc9ba8639f80a847ba8cfc3a99706c488ec34f68" - integrity sha512-3siDxO/iABWcYHE92vM1bDzXZzzn3T7/LJoxjuacJF2YIjLhOGAXjM4XVbu1Fy7R7/e57I3tNyc1JOWsG7Uvdw== +"@jupyterlab/ui-components-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/ui-components-extension/-/ui-components-extension-4.0.0-alpha.18.tgz#2ad085433adb8d5842b54337456559aa55a3d836" + integrity sha512-UEO18vNvIvYqzjs0pVtNicLjfbzJiv/CyTZ7Kmj6ucYtwwJuto3DS+PFIOSplAPLT06h0+TC0qeBCpRJCZ3eHQ== dependencies: - "@jupyterlab/application" "^4.0.0-alpha.17" - "@jupyterlab/ui-components" "^4.0.0-alpha.32" + "@jupyterlab/application" "^4.0.0-alpha.18" + "@jupyterlab/ui-components" "^4.0.0-alpha.33" -"@jupyterlab/ui-components@^4.0.0-alpha.32": - version "4.0.0-alpha.32" - resolved "https://registry.yarnpkg.com/@jupyterlab/ui-components/-/ui-components-4.0.0-alpha.32.tgz#faa5ef36243bd4b9239f47c5c7036c0fa8158fac" - integrity sha512-IfGYp4va44MYdapEKhUtXcRBG3jBiChDKEocu1FvwspcgDWJcoK5HlPTJX1W7EivPvwN8u/XYZjkvoMw8CGQ2w== +"@jupyterlab/ui-components@^4.0.0-alpha.33": + version "4.0.0-alpha.33" + resolved "https://registry.yarnpkg.com/@jupyterlab/ui-components/-/ui-components-4.0.0-alpha.33.tgz#de9f04ff4374379a00bb3df6b4fc6cf77e83e4f8" + integrity sha512-fIwcyLcmWzEM8UBC4tz/qTuCyn0ZpKpBX368HgeP2BPY7LnJg+7UfpyUj5iWlWjlYsMX7dAGyINPH/roANC4kQ== dependencies: - "@jupyterlab/coreutils" "^6.0.0-alpha.17" - "@jupyterlab/observables" "^5.0.0-alpha.17" - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.17" - "@jupyterlab/translation" "^4.0.0-alpha.17" + "@jupyterlab/coreutils" "^6.0.0-alpha.18" + "@jupyterlab/observables" "^5.0.0-alpha.18" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.18" + "@jupyterlab/translation" "^4.0.0-alpha.18" "@lumino/algorithm" "^2.0.0-alpha.6" "@lumino/commands" "^2.0.0-alpha.6" "@lumino/coreutils" "^2.0.0-alpha.6" @@ -3145,55 +3098,55 @@ "@lumino/virtualdom" "^2.0.0-alpha.6" "@lumino/widgets" "^2.0.0-alpha.6" "@rjsf/core" "^4.2.0" - react "^17.0.1" - react-dom "^17.0.1" + react "^18.2.0" + react-dom "^18.2.0" typestyle "^2.0.4" -"@jupyterlab/vega5-extension@^4.0.0-alpha.17": - version "4.0.0-alpha.17" - resolved "https://registry.yarnpkg.com/@jupyterlab/vega5-extension/-/vega5-extension-4.0.0-alpha.17.tgz#a6c9a9e822582db1e9291106de75661bdedf5f7f" - integrity sha512-4xtY2GguzLblf9RkVmXuWUQkFlyqT0F/pxicXy6OFtyTOJBYm2OepMteKHbC29wgJBAoj/0kR+xqnAdpm3W50g== +"@jupyterlab/vega5-extension@^4.0.0-alpha.18": + version "4.0.0-alpha.18" + resolved "https://registry.yarnpkg.com/@jupyterlab/vega5-extension/-/vega5-extension-4.0.0-alpha.18.tgz#11fa6317c4c937e8e550533acf715c2fc8a7f745" + integrity sha512-+1d1ZhLTet0CGm9tHfZ9PW75ifmYMVqV1cAoyOtYQ/slCLccL6DcEIVOjP1+nHWcgDvrhCU7f/XySzT2Ey2OJQ== dependencies: - "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.17" + "@jupyterlab/rendermime-interfaces" "^3.8.0-alpha.18" "@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@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/add/-/add-6.3.0.tgz#4ff2b34298ff97f4d015b091441874efc1e95964" - integrity sha512-TlekKVN/qyEhQfSuo38jcC0h86wxfTDJh7/7FU1H/ja9zJEWmph5uN2DmYjifSmGBH2zGYr6ZjKtfgpQMM22nw== - dependencies: - "@lerna/bootstrap" "6.3.0" - "@lerna/command" "6.3.0" - "@lerna/filter-options" "6.3.0" - "@lerna/npm-conf" "6.3.0" - "@lerna/validation-error" "6.3.0" +"@lerna/add@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/add/-/add-6.4.1.tgz#fa20fe9ff875dc5758141262c8cde0d9a6481ec4" + integrity sha512-YSRnMcsdYnQtQQK0NSyrS9YGXvB3jzvx183o+JTH892MKzSlBqwpBHekCknSibyxga1HeZ0SNKQXgsHAwWkrRw== + dependencies: + "@lerna/bootstrap" "6.4.1" + "@lerna/command" "6.4.1" + "@lerna/filter-options" "6.4.1" + "@lerna/npm-conf" "6.4.1" + "@lerna/validation-error" "6.4.1" 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@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/bootstrap/-/bootstrap-6.3.0.tgz#ddb434d1f36a32927706820f5c30e6ba689fb7f0" - integrity sha512-H3V07F+d6VGhp+8HuPD3tKJiSVq8FB5G+9OpX7KVHHVkoyEHiwRtSbBF2l3YA5HzFIGxFcZSz3C2LA8IR6U//Q== - dependencies: - "@lerna/command" "6.3.0" - "@lerna/filter-options" "6.3.0" - "@lerna/has-npm-version" "6.3.0" - "@lerna/npm-install" "6.3.0" - "@lerna/package-graph" "6.3.0" - "@lerna/pulse-till-done" "6.3.0" - "@lerna/rimraf-dir" "6.3.0" - "@lerna/run-lifecycle" "6.3.0" - "@lerna/run-topologically" "6.3.0" - "@lerna/symlink-binary" "6.3.0" - "@lerna/symlink-dependencies" "6.3.0" - "@lerna/validation-error" "6.3.0" +"@lerna/bootstrap@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/bootstrap/-/bootstrap-6.4.1.tgz#a76ff22c3160d134fb60bcfddb3f8b0759b4f1ff" + integrity sha512-64cm0mnxzxhUUjH3T19ZSjPdn28vczRhhTXhNAvOhhU0sQgHrroam1xQC1395qbkV3iosSertlu8e7xbXW033w== + dependencies: + "@lerna/command" "6.4.1" + "@lerna/filter-options" "6.4.1" + "@lerna/has-npm-version" "6.4.1" + "@lerna/npm-install" "6.4.1" + "@lerna/package-graph" "6.4.1" + "@lerna/pulse-till-done" "6.4.1" + "@lerna/rimraf-dir" "6.4.1" + "@lerna/run-lifecycle" "6.4.1" + "@lerna/run-topologically" "6.4.1" + "@lerna/symlink-binary" "6.4.1" + "@lerna/symlink-dependencies" "6.4.1" + "@lerna/validation-error" "6.4.1" "@npmcli/arborist" "5.3.0" dedent "^0.7.0" get-port "^5.1.1" @@ -3205,100 +3158,100 @@ p-waterfall "^2.1.1" semver "^7.3.4" -"@lerna/changed@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/changed/-/changed-6.3.0.tgz#3d3618a09f9be722c732a206eb030b4c16dfaea4" - integrity sha512-cPCiSbjuyluG4K6SAHogIwyrKtX6OvNlgnxx4g5kiB/k/TGB/6cvwJnivv9FaXGliQoSruaL73euDSUKIkEyBA== +"@lerna/changed@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/changed/-/changed-6.4.1.tgz#4da6d08df7c53bc90c0c0d9d04839f91dd6d70a9" + integrity sha512-Z/z0sTm3l/iZW0eTSsnQpcY5d6eOpNO0g4wMOK+hIboWG0QOTc8b28XCnfCUO+33UisKl8PffultgoaHMKkGgw== dependencies: - "@lerna/collect-updates" "6.3.0" - "@lerna/command" "6.3.0" - "@lerna/listable" "6.3.0" - "@lerna/output" "6.3.0" + "@lerna/collect-updates" "6.4.1" + "@lerna/command" "6.4.1" + "@lerna/listable" "6.4.1" + "@lerna/output" "6.4.1" -"@lerna/check-working-tree@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/check-working-tree/-/check-working-tree-6.3.0.tgz#c752d5eb068791f8fb35e85e937307a88212dacb" - integrity sha512-d29R6feG01aVqEdNi41eAhK94WqZa3B9tCfY4c2Ic98pGmqAayxqLDxx+oObQrbJ4e4f7706JMKjJD6uLkFTIA== +"@lerna/check-working-tree@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/check-working-tree/-/check-working-tree-6.4.1.tgz#c0dcb5c474faf214865058e2fedda44962367a4e" + integrity sha512-EnlkA1wxaRLqhJdn9HX7h+JYxqiTK9aWEFOPqAE8lqjxHn3RpM9qBp1bAdL7CeUk3kN1lvxKwDEm0mfcIyMbPA== dependencies: - "@lerna/collect-uncommitted" "6.3.0" - "@lerna/describe-ref" "6.3.0" - "@lerna/validation-error" "6.3.0" + "@lerna/collect-uncommitted" "6.4.1" + "@lerna/describe-ref" "6.4.1" + "@lerna/validation-error" "6.4.1" -"@lerna/child-process@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/child-process/-/child-process-6.3.0.tgz#9cc8a092ff6e765bafdf135ab7fe0cec3d0af9cc" - integrity sha512-Q7G3OFGK4tgxYVDzSrBlkU45WjTNz7T0W+H/40Y74XxWLYoLAGOXQMPp9h1BiLoTxKFRUgRZJZ5bbSN8TKg4AQ== +"@lerna/child-process@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/child-process/-/child-process-6.4.1.tgz#d697fb769f4c5b57c59f87471eb9b3d65be904a3" + integrity sha512-dvEKK0yKmxOv8pccf3I5D/k+OGiLxQp5KYjsrDtkes2pjpCFfQAMbmpol/Tqx6w/2o2rSaRrLsnX8TENo66FsA== dependencies: chalk "^4.1.0" execa "^5.0.0" strong-log-transformer "^2.1.0" -"@lerna/clean@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/clean/-/clean-6.3.0.tgz#af37e431988ed82c1a0723e02967ffbd4d3832c2" - integrity sha512-uN4hdvrnujVNxnw4Xuo0kpG18x9V4blBBusmqiIcdXkDXiGUmZT8Sk4TbOP/+gXauuGcVkJnmJH62xCTeRHWvw== - dependencies: - "@lerna/command" "6.3.0" - "@lerna/filter-options" "6.3.0" - "@lerna/prompt" "6.3.0" - "@lerna/pulse-till-done" "6.3.0" - "@lerna/rimraf-dir" "6.3.0" +"@lerna/clean@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/clean/-/clean-6.4.1.tgz#e9ee365ee6879ee998b78b3269fad02b5f385771" + integrity sha512-FuVyW3mpos5ESCWSkQ1/ViXyEtsZ9k45U66cdM/HnteHQk/XskSQw0sz9R+whrZRUDu6YgYLSoj1j0YAHVK/3A== + dependencies: + "@lerna/command" "6.4.1" + "@lerna/filter-options" "6.4.1" + "@lerna/prompt" "6.4.1" + "@lerna/pulse-till-done" "6.4.1" + "@lerna/rimraf-dir" "6.4.1" p-map "^4.0.0" p-map-series "^2.1.0" p-waterfall "^2.1.1" -"@lerna/cli@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/cli/-/cli-6.3.0.tgz#eb77c1d8dc1cc19e2a0439e9c190efa210112b14" - integrity sha512-/lnsb4jOCNFGfmG26JojB4QV29EjWew+yuy9hdxPYeTYxAcN8IGwro9/o/tFBLmVjQwp1XHPBV4jZxRWHK63xQ== +"@lerna/cli@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/cli/-/cli-6.4.1.tgz#2b2d093baace40e822caee8c90f698e98a437a2f" + integrity sha512-2pNa48i2wzFEd9LMPKWI3lkW/3widDqiB7oZUM1Xvm4eAOuDWc9I3RWmAUIVlPQNf3n4McxJCvsZZ9BpQN50Fg== dependencies: - "@lerna/global-options" "6.3.0" + "@lerna/global-options" "6.4.1" dedent "^0.7.0" npmlog "^6.0.2" yargs "^16.2.0" -"@lerna/collect-uncommitted@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/collect-uncommitted/-/collect-uncommitted-6.3.0.tgz#e00a90dc19e2d69476cb00e1837682416e30e2c7" - integrity sha512-2FgLkPBswLmx6X1opUlqXuKHsb28etdNvqsydKw72wyIIjQs17Kl9gMjHzNvVZhLgsHEgOFKBJ8dIp1C9YwxPQ== +"@lerna/collect-uncommitted@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/collect-uncommitted/-/collect-uncommitted-6.4.1.tgz#ae62bcaa5ecaa5b7fbc41eb9ae90b6711be156ec" + integrity sha512-5IVQGhlLrt7Ujc5ooYA1Xlicdba/wMcDSnbQwr8ufeqnzV2z4729pLCVk55gmi6ZienH/YeBPHxhB5u34ofE0Q== dependencies: - "@lerna/child-process" "6.3.0" + "@lerna/child-process" "6.4.1" chalk "^4.1.0" npmlog "^6.0.2" -"@lerna/collect-updates@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/collect-updates/-/collect-updates-6.3.0.tgz#6343fa840e04a4370f81c9131a81223698c4bcd6" - integrity sha512-sGsKBnInLgIO3ZStHuKtUr+uGTRlY+PTxoceTe7K0DEnoPuQP5YvA1fkhXUoT56StM0AjQyxnYuE46M8r+IoyA== +"@lerna/collect-updates@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/collect-updates/-/collect-updates-6.4.1.tgz#4f7cf1c411f3253d0104e7b64cb0aa315a5dfc81" + integrity sha512-pzw2/FC+nIqYkknUHK9SMmvP3MsLEjxI597p3WV86cEDN3eb1dyGIGuHiKShtjvT08SKSwpTX+3bCYvLVxtC5Q== dependencies: - "@lerna/child-process" "6.3.0" - "@lerna/describe-ref" "6.3.0" + "@lerna/child-process" "6.4.1" + "@lerna/describe-ref" "6.4.1" minimatch "^3.0.4" npmlog "^6.0.2" slash "^3.0.0" -"@lerna/command@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/command/-/command-6.3.0.tgz#395a6eefc280a06f0ee967a70353c76f5a914f06" - integrity sha512-EtPBiiovh7o0WlvkgXXLR+gDoV2usDCVHUrmykH+D6zKaQ4Dz+QQofDBnepxVBaESwWm8SgAXOL8t4aqnUQifg== - dependencies: - "@lerna/child-process" "6.3.0" - "@lerna/package-graph" "6.3.0" - "@lerna/project" "6.3.0" - "@lerna/validation-error" "6.3.0" - "@lerna/write-log-file" "6.3.0" +"@lerna/command@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/command/-/command-6.4.1.tgz#96c4f5d88792c6c638738c66fcc3a7ad0d2487e2" + integrity sha512-3Lifj8UTNYbRad8JMP7IFEEdlIyclWyyvq/zvNnTS9kCOEymfmsB3lGXr07/AFoi6qDrvN64j7YSbPZ6C6qonw== + dependencies: + "@lerna/child-process" "6.4.1" + "@lerna/package-graph" "6.4.1" + "@lerna/project" "6.4.1" + "@lerna/validation-error" "6.4.1" + "@lerna/write-log-file" "6.4.1" 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@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/conventional-commits/-/conventional-commits-6.3.0.tgz#0b3c76b12aead8c243712d037b1894a74ac98502" - integrity sha512-6wyMDApEAn0WGHOGpfnC3O7wqhteZvr2wQymP8VLSpedeBRi+HyZspmWY8hNfVi7uce1C+JmJFN1mpPuaAVbTg== +"@lerna/conventional-commits@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/conventional-commits/-/conventional-commits-6.4.1.tgz#b8d44a8a71865b4d37b900137acef623f3a0a11b" + integrity sha512-NIvCOjStjQy5O8VojB7/fVReNNDEJOmzRG2sTpgZ/vNS4AzojBQZ/tobzhm7rVkZZ43R9srZeuhfH9WgFsVUSA== dependencies: - "@lerna/validation-error" "6.3.0" + "@lerna/validation-error" "6.4.1" conventional-changelog-angular "^5.0.12" conventional-changelog-core "^4.2.4" conventional-recommended-bump "^6.1.0" @@ -3309,24 +3262,24 @@ pify "^5.0.0" semver "^7.3.4" -"@lerna/create-symlink@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/create-symlink/-/create-symlink-6.3.0.tgz#b024063fdc8c26967b953ad2e1282e996fb44c19" - integrity sha512-ozzPFJsYCPPedKRzEE7YuXM5sNf1BNCPahJ8mmqW1/OI8JfR00yNIrFxhjEQsuU0VSwn5dgDEWjYuEh22q/QJA== +"@lerna/create-symlink@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/create-symlink/-/create-symlink-6.4.1.tgz#0efec22d78dd814a70d8345ced52c39beb05874b" + integrity sha512-rNivHFYV1GAULxnaTqeGb2AdEN2OZzAiZcx5CFgj45DWXQEGwPEfpFmCSJdXhFZbyd3K0uiDlAXjAmV56ov3FQ== dependencies: cmd-shim "^5.0.0" fs-extra "^9.1.0" npmlog "^6.0.2" -"@lerna/create@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/create/-/create-6.3.0.tgz#1a69958bcb069737b9a98b7147c6a25bcd2ac301" - integrity sha512-VQMzfN8ZoC7v4dt/Q87f+BNe2G7xLEz8N4Yb6TVFGQevYulkLMfzU4ycQARhGdKL+lS53V2n+CivMdfM3OuTuw== +"@lerna/create@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/create/-/create-6.4.1.tgz#3fc8556adadff1265432a6cee69ee14465798e71" + integrity sha512-qfQS8PjeGDDlxEvKsI/tYixIFzV2938qLvJohEKWFn64uvdLnXCamQ0wvRJST8p1ZpHWX4AXrB+xEJM3EFABrA== dependencies: - "@lerna/child-process" "6.3.0" - "@lerna/command" "6.3.0" - "@lerna/npm-conf" "6.3.0" - "@lerna/validation-error" "6.3.0" + "@lerna/child-process" "6.4.1" + "@lerna/command" "6.4.1" + "@lerna/npm-conf" "6.4.1" + "@lerna/validation-error" "6.4.1" dedent "^0.7.0" fs-extra "^9.1.0" init-package-json "^3.0.2" @@ -3340,218 +3293,218 @@ validate-npm-package-name "^4.0.0" yargs-parser "20.2.4" -"@lerna/describe-ref@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/describe-ref/-/describe-ref-6.3.0.tgz#4de44e6f02f760833a52eea82817ffbf753a2471" - integrity sha512-qgpD7qLeAA9LONNFNrzkBz+nveVH0FxYaB8WHyfspjdvXpBU7GuyA6TIUT3sM0ufPhn0lu1jKji0Zq5w7RmJNg== +"@lerna/describe-ref@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/describe-ref/-/describe-ref-6.4.1.tgz#c0a0beca5dfeada3a39b030f69c8c98f5623bb13" + integrity sha512-MXGXU8r27wl355kb1lQtAiu6gkxJ5tAisVJvFxFM1M+X8Sq56icNoaROqYrvW6y97A9+3S8Q48pD3SzkFv31Xw== dependencies: - "@lerna/child-process" "6.3.0" + "@lerna/child-process" "6.4.1" npmlog "^6.0.2" -"@lerna/diff@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/diff/-/diff-6.3.0.tgz#5e444dc130de2a9c4ea6a3f45e872c6e17a1b583" - integrity sha512-0J9W0jPXp/b5/wtAgXyT/PIc1kqfH+Kd7gdzenZSI1uGpFHcZx8VnsCnc9Xq8B62k6YCpmw0jcW79THRWTEC3Q== +"@lerna/diff@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/diff/-/diff-6.4.1.tgz#ca9e62a451ce199faaa7ef5990ded3fad947e2f9" + integrity sha512-TnzJsRPN2fOjUrmo5Boi43fJmRtBJDsVgwZM51VnLoKcDtO1kcScXJ16Od2Xx5bXbp5dES5vGDLL/USVVWfeAg== dependencies: - "@lerna/child-process" "6.3.0" - "@lerna/command" "6.3.0" - "@lerna/validation-error" "6.3.0" + "@lerna/child-process" "6.4.1" + "@lerna/command" "6.4.1" + "@lerna/validation-error" "6.4.1" npmlog "^6.0.2" -"@lerna/exec@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/exec/-/exec-6.3.0.tgz#596f99b484f80f5518b9fde4b282dee82cc01e0e" - integrity sha512-f++DKi9MgmaY+WXhICPoied6G2BfB0U+Q6erqdsGXVfeeZcVLzuWcVckYPg6CmVHx4pvQskeV6b07zvuX5v0PQ== - dependencies: - "@lerna/child-process" "6.3.0" - "@lerna/command" "6.3.0" - "@lerna/filter-options" "6.3.0" - "@lerna/profiler" "6.3.0" - "@lerna/run-topologically" "6.3.0" - "@lerna/validation-error" "6.3.0" +"@lerna/exec@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/exec/-/exec-6.4.1.tgz#493ce805b6959e8299ec58fab8d31fd01ed209ba" + integrity sha512-KAWfuZpoyd3FMejHUORd0GORMr45/d9OGAwHitfQPVs4brsxgQFjbbBEEGIdwsg08XhkDb4nl6IYVASVTq9+gA== + dependencies: + "@lerna/child-process" "6.4.1" + "@lerna/command" "6.4.1" + "@lerna/filter-options" "6.4.1" + "@lerna/profiler" "6.4.1" + "@lerna/run-topologically" "6.4.1" + "@lerna/validation-error" "6.4.1" p-map "^4.0.0" -"@lerna/filter-options@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/filter-options/-/filter-options-6.3.0.tgz#d871a1ab838cc926a23f895f35ae7f96c385a294" - integrity sha512-hnOZxn9mUhbNU1L7F4e6IwIpp0ci3/doyLtE/46jLqgupBl33kicqI9gyoO9fYt2wt/0YSOPOILqDP6KaQc+kw== +"@lerna/filter-options@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/filter-options/-/filter-options-6.4.1.tgz#571d37436878fab8b2ac84ca1c3863acd3515cfb" + integrity sha512-efJh3lP2T+9oyNIP2QNd9EErf0Sm3l3Tz8CILMsNJpjSU6kO43TYWQ+L/ezu2zM99KVYz8GROLqDcHRwdr8qUA== dependencies: - "@lerna/collect-updates" "6.3.0" - "@lerna/filter-packages" "6.3.0" + "@lerna/collect-updates" "6.4.1" + "@lerna/filter-packages" "6.4.1" dedent "^0.7.0" npmlog "^6.0.2" -"@lerna/filter-packages@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/filter-packages/-/filter-packages-6.3.0.tgz#c3eeb1dd00b446971c2657bb4c829a94793ce8ad" - integrity sha512-SdWO+nKkKakOtiqcBqkdPODVz1AdD4dnvCIhzE3R14k0rjX2cI+i/044qbxRWSlegqveFziiuyR5Op5kZK+68w== +"@lerna/filter-packages@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/filter-packages/-/filter-packages-6.4.1.tgz#e138b182816a049c81de094069cad12aaa41a236" + integrity sha512-LCMGDGy4b+Mrb6xkcVzp4novbf5MoZEE6ZQF1gqG0wBWqJzNcKeFiOmf352rcDnfjPGZP6ct5+xXWosX/q6qwg== dependencies: - "@lerna/validation-error" "6.3.0" + "@lerna/validation-error" "6.4.1" multimatch "^5.0.0" npmlog "^6.0.2" -"@lerna/get-npm-exec-opts@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/get-npm-exec-opts/-/get-npm-exec-opts-6.3.0.tgz#bbc01f06d5e1e5fa818256e1ab56eb90f53e0915" - integrity sha512-OlNF2x7Q0omSGQF5YBcOadXqn3n1Dhm5m5jw2t1Z/7ryHBqobpZ0wNmFupTgQCquHX/+MDkz8pIPvG6uPlb7SQ== +"@lerna/get-npm-exec-opts@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/get-npm-exec-opts/-/get-npm-exec-opts-6.4.1.tgz#42681f6db4238277889b3423f87308eda5dc01ec" + integrity sha512-IvN/jyoklrWcjssOf121tZhOc16MaFPOu5ii8a+Oy0jfTriIGv929Ya8MWodj75qec9s+JHoShB8yEcMqZce4g== dependencies: npmlog "^6.0.2" -"@lerna/get-packed@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/get-packed/-/get-packed-6.3.0.tgz#b779852fe6b6c596fb8f3acd52fead843c397c49" - integrity sha512-YFsPDErYMxd+FvLyhYGoZzheYIwyev3ygAwqfnoQ4oZzXbUCqq3jrOiI/26jyt6z32tAxMtac6Mh6u0FlbK4jw== +"@lerna/get-packed@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/get-packed/-/get-packed-6.4.1.tgz#b3b8b907002d50bf8792dd97e2729249c0b0e0cd" + integrity sha512-uaDtYwK1OEUVIXn84m45uPlXShtiUcw6V9TgB3rvHa3rrRVbR7D4r+JXcwVxLGrAS7LwxVbYWEEO/Z/bX7J/Lg== dependencies: fs-extra "^9.1.0" ssri "^9.0.1" tar "^6.1.0" -"@lerna/github-client@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/github-client/-/github-client-6.3.0.tgz#df1ac69a4d5edbe2c74317e40b2c9055a153cf41" - integrity sha512-/ElVBT+msyiazYbG9E1w1qcWRtr53v57vy0nZwptWXRmdGSpxWyMHGFC8y+KGYyMDNaEXryAzHj0eZjI3Of/hg== +"@lerna/github-client@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/github-client/-/github-client-6.4.1.tgz#25d19b440395a6039b9162ee58dadb9dce990ff0" + integrity sha512-ridDMuzmjMNlcDmrGrV9mxqwUKzt9iYqCPwVYJlRYrnE3jxyg+RdooquqskVFj11djcY6xCV2Q2V1lUYwF+PmA== dependencies: - "@lerna/child-process" "6.3.0" + "@lerna/child-process" "6.4.1" "@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@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/gitlab-client/-/gitlab-client-6.3.0.tgz#a382aa15a32066b3d6f93631370ad7a37c2c3c58" - integrity sha512-iLPWMuK7B+ur5HZgexZrqLrmoWxJXx8QCDv7j25V8ZJmYmRkSqb0HCZHDn+ggvb0WHg+1RvUlvSUt5p+k5q9Zw== +"@lerna/gitlab-client@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/gitlab-client/-/gitlab-client-6.4.1.tgz#a01d962dc52a55b8272ea52bc54d72c5fd9db6f9" + integrity sha512-AdLG4d+jbUvv0jQyygQUTNaTCNSMDxioJso6aAjQ/vkwyy3fBJ6FYzX74J4adSfOxC2MQZITFyuG+c9ggp7pyQ== dependencies: node-fetch "^2.6.1" npmlog "^6.0.2" -"@lerna/global-options@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/global-options/-/global-options-6.3.0.tgz#4b34014e85004d894744ce3d2c8dbc36b6cc45aa" - integrity sha512-MvG3uZFRXqvPa2iE8br5ogi/wloJYQlCa3g51BNohJcSGjZRQyg/igPS8vnRH+tOQM3dhlQSSN4TmPxlh+1vGg== +"@lerna/global-options@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/global-options/-/global-options-6.4.1.tgz#7df76b1d38500606a8dc3ce0804bab6894c4f4a3" + integrity sha512-UTXkt+bleBB8xPzxBPjaCN/v63yQdfssVjhgdbkQ//4kayaRA65LyEtJTi9rUrsLlIy9/rbeb+SAZUHg129fJg== -"@lerna/has-npm-version@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/has-npm-version/-/has-npm-version-6.3.0.tgz#ffde722d83dbaf5be177cd5ea42bb43f4704c82c" - integrity sha512-aaD/H1MEgSrjPvEArgSt23Eqx3YIExAzeidDHyhDMRerbs7BqKGhbsyGAybXL8tHTZcdCMVlSBAXgLMOoH8VCg== +"@lerna/has-npm-version@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/has-npm-version/-/has-npm-version-6.4.1.tgz#04eba7df687e665294834253b659430efc1e01bb" + integrity sha512-vW191w5iCkwNWWWcy4542ZOpjKYjcP/pU3o3+w6NM1J3yBjWZcNa8lfzQQgde2QkGyNi+i70o6wIca1o0sdKwg== dependencies: - "@lerna/child-process" "6.3.0" + "@lerna/child-process" "6.4.1" semver "^7.3.4" -"@lerna/import@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/import/-/import-6.3.0.tgz#a6a57b72c2128875b6a1f8349d87d1497e363d95" - integrity sha512-95utKmEKZsQFanKd8BK1w9OhtYXAw9LtsO0jlD3YdacUtrZewUpxhFq9x2GI/7pxFFUSDjhJPISh2AYKucH8pQ== - dependencies: - "@lerna/child-process" "6.3.0" - "@lerna/command" "6.3.0" - "@lerna/prompt" "6.3.0" - "@lerna/pulse-till-done" "6.3.0" - "@lerna/validation-error" "6.3.0" +"@lerna/import@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/import/-/import-6.4.1.tgz#b5696fed68a32d32398d66f95192267f1da5110e" + integrity sha512-oDg8g1PNrCM1JESLsG3rQBtPC+/K9e4ohs0xDKt5E6p4l7dc0Ib4oo0oCCT/hGzZUlNwHxrc2q9JMRzSAn6P/Q== + dependencies: + "@lerna/child-process" "6.4.1" + "@lerna/command" "6.4.1" + "@lerna/prompt" "6.4.1" + "@lerna/pulse-till-done" "6.4.1" + "@lerna/validation-error" "6.4.1" dedent "^0.7.0" fs-extra "^9.1.0" p-map-series "^2.1.0" -"@lerna/info@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/info/-/info-6.3.0.tgz#0da9449d7dd7854b494833bb441b55ad9ab0773e" - integrity sha512-AwHc/Qq70+NvY6fvl4+8CLXSAj3hjB9YBOcGSxjRJ/vawL1zU9TIV3vOUx6+t0IWAK+DFgvKSrZ3a23CEef3ug== +"@lerna/info@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/info/-/info-6.4.1.tgz#30354fcb82c99b1f0ed753f957fbaca5b250c3fa" + integrity sha512-Ks4R7IndIr4vQXz+702gumPVhH6JVkshje0WKA3+ew2qzYZf68lU1sBe1OZsQJU3eeY2c60ax+bItSa7aaIHGw== dependencies: - "@lerna/command" "6.3.0" - "@lerna/output" "6.3.0" + "@lerna/command" "6.4.1" + "@lerna/output" "6.4.1" envinfo "^7.7.4" -"@lerna/init@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/init/-/init-6.3.0.tgz#12bf227da3ae091f2e537f1329d1addb632c7d9c" - integrity sha512-pVTuLGyC7GrdaDzUvy7Jzj9R+wCI1W7fm+VuVCEv8SR3iVao0sUCXh73jMfOIxQXGXqgpqKywp1WL4QbluhVGw== +"@lerna/init@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/init/-/init-6.4.1.tgz#ea4905ca976189db4b0bf04d78919060146bf684" + integrity sha512-CXd/s/xgj0ZTAoOVyolOTLW2BG7uQOhWW4P/ktlwwJr9s3c4H/z+Gj36UXw3q5X1xdR29NZt7Vc6fvROBZMjUQ== dependencies: - "@lerna/child-process" "6.3.0" - "@lerna/command" "6.3.0" - "@lerna/project" "6.3.0" + "@lerna/child-process" "6.4.1" + "@lerna/command" "6.4.1" + "@lerna/project" "6.4.1" fs-extra "^9.1.0" p-map "^4.0.0" write-json-file "^4.3.0" -"@lerna/link@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/link/-/link-6.3.0.tgz#e2530aa161082c775d278f93a71ec7727c83f0b5" - integrity sha512-BeLEXdF4R8FwqVET95qXOQNHLnWTfdmcpE8pEiEXr+Gux6OEFASFt54arFLO7XMyPOSAO31wIU9ue2I+dPb/CQ== +"@lerna/link@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/link/-/link-6.4.1.tgz#f31ed1f6aea1581e358a9ff545be78b61e923175" + integrity sha512-O8Rt7MAZT/WT2AwrB/+HY76ktnXA9cDFO9rhyKWZGTHdplbzuJgfsGzu8Xv0Ind+w+a8xLfqtWGPlwiETnDyrw== dependencies: - "@lerna/command" "6.3.0" - "@lerna/package-graph" "6.3.0" - "@lerna/symlink-dependencies" "6.3.0" - "@lerna/validation-error" "6.3.0" + "@lerna/command" "6.4.1" + "@lerna/package-graph" "6.4.1" + "@lerna/symlink-dependencies" "6.4.1" + "@lerna/validation-error" "6.4.1" p-map "^4.0.0" slash "^3.0.0" -"@lerna/list@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/list/-/list-6.3.0.tgz#85bd2aae8f5f794ec68d4914c0d4491caaf09573" - integrity sha512-0+T4kITNq5ojrAQ9pKBA2vSyKD9ZsTSzf13b4twDaH7qvgixP+ukTGnwWDFld3kg/5wNLjj13ZMgGXkbdnDaZw== +"@lerna/list@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/list/-/list-6.4.1.tgz#12ad83902e148d1e5ba007149b72b14636f9f1ba" + integrity sha512-7a6AKgXgC4X7nK6twVPNrKCiDhrCiAhL/FE4u9HYhHqw9yFwyq8Qe/r1RVOkAOASNZzZ8GuBvob042bpunupCw== dependencies: - "@lerna/command" "6.3.0" - "@lerna/filter-options" "6.3.0" - "@lerna/listable" "6.3.0" - "@lerna/output" "6.3.0" + "@lerna/command" "6.4.1" + "@lerna/filter-options" "6.4.1" + "@lerna/listable" "6.4.1" + "@lerna/output" "6.4.1" -"@lerna/listable@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/listable/-/listable-6.3.0.tgz#bc74d424341bf8a252fa2efb696f3e91c54838dc" - integrity sha512-b0eytzZ8TLlovADaUDM8k0PuLhpvg7O5dblP9SWZoyFy2BkDIhbpVZQGQcoiEghEHdXhsEiYAsaVMxsEbx7+eQ== +"@lerna/listable@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/listable/-/listable-6.4.1.tgz#6f5c83865391c6beeb41802951c674e2de119bde" + integrity sha512-L8ANeidM10aoF8aL3L/771Bb9r/TRkbEPzAiC8Iy2IBTYftS87E3rT/4k5KBEGYzMieSKJaskSFBV0OQGYV1Cw== dependencies: - "@lerna/query-graph" "6.3.0" + "@lerna/query-graph" "6.4.1" chalk "^4.1.0" columnify "^1.6.0" -"@lerna/log-packed@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/log-packed/-/log-packed-6.3.0.tgz#397a008b7257760b3da6628e2a7b967d86cde239" - integrity sha512-tREuXKswpbPpFX+h0wPYOX9WdytfztdiSHggmSwH8dS5dC0mpf19MYapYN8QsLFvTWiSpZAo6JASqHIlSHPIpA== +"@lerna/log-packed@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/log-packed/-/log-packed-6.4.1.tgz#43eae50d5c0cd906b1977a58b62b35541cf89ec1" + integrity sha512-Pwv7LnIgWqZH4vkM1rWTVF+pmWJu7d0ZhVwyhCaBJUsYbo+SyB2ZETGygo3Z/A+vZ/S7ImhEEKfIxU9bg5lScQ== dependencies: byte-size "^7.0.0" columnify "^1.6.0" has-unicode "^2.0.1" npmlog "^6.0.2" -"@lerna/npm-conf@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/npm-conf/-/npm-conf-6.3.0.tgz#70b8419f5be939dde6d942ab82e43a0b9c3d4fca" - integrity sha512-8wnsmwXwbA0R3lTykv/Kn9WsFpg/iK68OuqTlXi8gVJEKDKkCmUHEO+6xUZynr1cS6LOQA6Pzcu4tA0rF0vu9g== +"@lerna/npm-conf@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/npm-conf/-/npm-conf-6.4.1.tgz#64dba237ff41472a24f96192669c1bc0dce15edb" + integrity sha512-Q+83uySGXYk3n1pYhvxtzyGwBGijYgYecgpiwRG1YNyaeGy+Mkrj19cyTWubT+rU/kM5c6If28+y9kdudvc7zQ== dependencies: config-chain "^1.1.12" pify "^5.0.0" -"@lerna/npm-dist-tag@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/npm-dist-tag/-/npm-dist-tag-6.3.0.tgz#6deda086592d6b6f54165cd46d70e030a0e662ee" - integrity sha512-ypimtgfkhMKPIpnXV+P1DQn/t0xasErujDvP23Ga51TTpwkbBVINAOV+u9CvI1jOzQ2SKHDkF6l/24D1nA5WNg== +"@lerna/npm-dist-tag@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/npm-dist-tag/-/npm-dist-tag-6.4.1.tgz#f14e7176f7e323284e8aa8636b44818a61738fd1" + integrity sha512-If1Hn4q9fn0JWuBm455iIZDWE6Fsn4Nv8Tpqb+dYf0CtoT5Hn+iT64xSiU5XJw9Vc23IR7dIujkEXm2MVbnvZw== dependencies: - "@lerna/otplease" "6.3.0" + "@lerna/otplease" "6.4.1" npm-package-arg "8.1.1" npm-registry-fetch "^13.3.0" npmlog "^6.0.2" -"@lerna/npm-install@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/npm-install/-/npm-install-6.3.0.tgz#6ba385ebaa8616ee5ff124483730a6f1ca05c31c" - integrity sha512-HGmAN38t3SdO9G5UCjnBYofU8Ng/zp8bwSY1o/GjhGn8JrXY7C+buQ/C5Lvtk6RUEMIGoMdbURLuShPEnH77Gw== +"@lerna/npm-install@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/npm-install/-/npm-install-6.4.1.tgz#99f5748cb43de9786ea2b538c94a7183d38fc476" + integrity sha512-7gI1txMA9qTaT3iiuk/8/vL78wIhtbbOLhMf8m5yQ2G+3t47RUA8MNgUMsq4Zszw9C83drayqesyTf0u8BzVRg== dependencies: - "@lerna/child-process" "6.3.0" - "@lerna/get-npm-exec-opts" "6.3.0" + "@lerna/child-process" "6.4.1" + "@lerna/get-npm-exec-opts" "6.4.1" 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@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/npm-publish/-/npm-publish-6.3.0.tgz#5824e953aeda9a9d7e5aded0577e40a5ce74b00f" - integrity sha512-V25wNY7xl96kOgV1ObNliS+i+lic8FOuZUm+A0Xy1chuAFRNYIPpQVe4S/0aimRRgeishoU+2bJYTqP+JNQdoQ== +"@lerna/npm-publish@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/npm-publish/-/npm-publish-6.4.1.tgz#baf07b108ae8b32932612db63206bcd5b5ee0e88" + integrity sha512-lbNEg+pThPAD8lIgNArm63agtIuCBCF3umxvgTQeLzyqUX6EtGaKJFyz/6c2ANcAuf8UfU7WQxFFbOiolibXTQ== dependencies: - "@lerna/otplease" "6.3.0" - "@lerna/run-lifecycle" "6.3.0" + "@lerna/otplease" "6.4.1" + "@lerna/run-lifecycle" "6.4.1" fs-extra "^9.1.0" libnpmpublish "^6.0.4" npm-package-arg "8.1.1" @@ -3559,85 +3512,85 @@ pify "^5.0.0" read-package-json "^5.0.1" -"@lerna/npm-run-script@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/npm-run-script/-/npm-run-script-6.3.0.tgz#c7b0ce417e1c250c6fef8a367a9dbd9aa6d122a0" - integrity sha512-vzFtHABhFlvp5ehRHe7rAZlHOpItCPhixmli7kv1ULrPyoflnHRF7hQSQH0G/vPOQ+5Kf8pAWJ6YlmMRwG3bGA== +"@lerna/npm-run-script@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/npm-run-script/-/npm-run-script-6.4.1.tgz#86db4f15d359b8a371db666aa51c9b2b87b602f3" + integrity sha512-HyvwuyhrGqDa1UbI+pPbI6v+wT6I34R0PW3WCADn6l59+AyqLOCUQQr+dMW7jdYNwjO6c/Ttbvj4W58EWsaGtQ== dependencies: - "@lerna/child-process" "6.3.0" - "@lerna/get-npm-exec-opts" "6.3.0" + "@lerna/child-process" "6.4.1" + "@lerna/get-npm-exec-opts" "6.4.1" npmlog "^6.0.2" -"@lerna/otplease@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/otplease/-/otplease-6.3.0.tgz#831c938d0f348083127a489cf50f7ec4539e2da3" - integrity sha512-fEsaI3oehsxQ4wFXmtYzuVjNUigKMN10HorUsXZlsoZGJ+M+l5KbHUYbwjMjSqmxqqWLXCvsNi9eRKAqJegjnQ== +"@lerna/otplease@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/otplease/-/otplease-6.4.1.tgz#9573e053c43e7139442da96fe655aa02749cb8a3" + integrity sha512-ePUciFfFdythHNMp8FP5K15R/CoGzSLVniJdD50qm76c4ATXZHnGCW2PGwoeAZCy4QTzhlhdBq78uN0wAs75GA== dependencies: - "@lerna/prompt" "6.3.0" + "@lerna/prompt" "6.4.1" -"@lerna/output@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/output/-/output-6.3.0.tgz#52d2da9b2947521f25afd825c90f4d74618d77e5" - integrity sha512-T88KWZYMbpdODbV6mrdDdlVKS7SUHKyJ1TcfjVl1c+RXWaks9v4m027zPZF4KE4qy89FGD23pqWUiUQewc7hIQ== +"@lerna/output@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/output/-/output-6.4.1.tgz#327baf768b8fb63db9d52f68288d387379f814f7" + integrity sha512-A1yRLF0bO+lhbIkrryRd6hGSD0wnyS1rTPOWJhScO/Zyv8vIPWhd2fZCLR1gI2d/Kt05qmK3T/zETTwloK7Fww== dependencies: npmlog "^6.0.2" -"@lerna/pack-directory@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/pack-directory/-/pack-directory-6.3.0.tgz#08b74b28e9ba092b34ede700428a14efbc8d6399" - integrity sha512-3gYvmc/jLvSsXUI/zvp28mrXGkk1Yu/QshJKKxrI4b3B6m9OWzxAmGpK/pwvoNEe/iwcOFD3ZB4um7jcLW6U9A== +"@lerna/pack-directory@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/pack-directory/-/pack-directory-6.4.1.tgz#e78aae4e7944057d8fc6cb4dd8ae50be7a95c2fd" + integrity sha512-kBtDL9bPP72/Nl7Gqa2CA3Odb8CYY1EF2jt801f+B37TqRLf57UXQom7yF3PbWPCPmhoU+8Fc4RMpUwSbFC46Q== dependencies: - "@lerna/get-packed" "6.3.0" - "@lerna/package" "6.3.0" - "@lerna/run-lifecycle" "6.3.0" - "@lerna/temp-write" "6.3.0" + "@lerna/get-packed" "6.4.1" + "@lerna/package" "6.4.1" + "@lerna/run-lifecycle" "6.4.1" + "@lerna/temp-write" "6.4.1" npm-packlist "^5.1.1" npmlog "^6.0.2" tar "^6.1.0" -"@lerna/package-graph@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/package-graph/-/package-graph-6.3.0.tgz#b7667847da211c67b73b608be392ce3be826722d" - integrity sha512-79S4DzxL4tkADAtSRgZ7o7mHdaWU9QN75UrxBnMjw/5KvBgX/o5r59FpAKxLHEFgo3fLbVHXxyGpPNBT/8ikpg== +"@lerna/package-graph@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/package-graph/-/package-graph-6.4.1.tgz#7a18024d531f0bd88609944e572b4861f0f8868f" + integrity sha512-fQvc59stRYOqxT3Mn7g/yI9/Kw5XetJoKcW5l8XeqKqcTNDURqKnN0qaNBY6lTTLOe4cR7gfXF2l1u3HOz0qEg== dependencies: - "@lerna/prerelease-id-from-version" "6.3.0" - "@lerna/validation-error" "6.3.0" + "@lerna/prerelease-id-from-version" "6.4.1" + "@lerna/validation-error" "6.4.1" npm-package-arg "8.1.1" npmlog "^6.0.2" semver "^7.3.4" -"@lerna/package@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/package/-/package-6.3.0.tgz#869ab54ee3868ca2f6298bfeff9890035553bfcc" - integrity sha512-u/m7Kvs72SqWchIOX2sTZAI87bcgUAUXEmCdwt5lnT50w3LADr57OtPJh8UhBW7SmdLgDoz3SsTLc5psZi12lw== +"@lerna/package@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/package/-/package-6.4.1.tgz#ebbd4c5f58f4b6cf77019271a686be9585272a3b" + integrity sha512-TrOah58RnwS9R8d3+WgFFTu5lqgZs7M+e1dvcRga7oSJeKscqpEK57G0xspvF3ycjfXQwRMmEtwPmpkeEVLMzA== dependencies: load-json-file "^6.2.0" npm-package-arg "8.1.1" write-pkg "^4.0.0" -"@lerna/prerelease-id-from-version@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/prerelease-id-from-version/-/prerelease-id-from-version-6.3.0.tgz#374f49a3807b3eb7172c59f6d58c27ef3789d7eb" - integrity sha512-kyGOMEdtYzG2luhg26uIy9fsnyHO70Uu3KW2C92D4UI9oTLYqfbf8o5pCa3d3GifOMoRmYf9OzJtJitERYAyOw== +"@lerna/prerelease-id-from-version@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/prerelease-id-from-version/-/prerelease-id-from-version-6.4.1.tgz#65eb1835cdfd112783eea6b596812c64f535386b" + integrity sha512-uGicdMFrmfHXeC0FTosnUKRgUjrBJdZwrmw7ZWMb5DAJGOuTzrvJIcz5f0/eL3XqypC/7g+9DoTgKjX3hlxPZA== dependencies: semver "^7.3.4" -"@lerna/profiler@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/profiler/-/profiler-6.3.0.tgz#473d680f8550f1d50ef73247956a0ac65e8aa5d2" - integrity sha512-KzV3bI9/17YRXaiGZankkTg9FZotliUYfUaz4WhL/iSjYwx8sHD7GicsNQD2wMtkyNCfR/OsZ0jVDs9B7d0qPw== +"@lerna/profiler@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/profiler/-/profiler-6.4.1.tgz#0d5e017e1389e35960d671f43db7eb16337fda1b" + integrity sha512-dq2uQxcu0aq6eSoN+JwnvHoAnjtZAVngMvywz5bTAfzz/sSvIad1v8RCpJUMBQHxaPtbfiNvOIQgDZOmCBIM4g== dependencies: fs-extra "^9.1.0" npmlog "^6.0.2" upath "^2.0.1" -"@lerna/project@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/project/-/project-6.3.0.tgz#61fd197a69c8385414196b1eafbf38b9957f78a0" - integrity sha512-ZDMl2GYDyCw4bCdcLFyvg4b3txLor1u3rqvZdhfhjLMDD8alZ56IItSEIR//dpI0jSLVGBFe214ZC5hFz/GrpA== +"@lerna/project@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/project/-/project-6.4.1.tgz#0519323aa8bde5b73fc0bf1c428385a556a445f0" + integrity sha512-BPFYr4A0mNZ2jZymlcwwh7PfIC+I6r52xgGtJ4KIrIOB6mVKo9u30dgYJbUQxmSuMRTOnX7PJZttQQzSda4gEg== dependencies: - "@lerna/package" "6.3.0" - "@lerna/validation-error" "6.3.0" + "@lerna/package" "6.4.1" + "@lerna/validation-error" "6.4.1" cosmiconfig "^7.0.0" dedent "^0.7.0" dot-prop "^6.0.1" @@ -3650,38 +3603,38 @@ resolve-from "^5.0.0" write-json-file "^4.3.0" -"@lerna/prompt@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/prompt/-/prompt-6.3.0.tgz#bceb81b8070ef78c0134668560853dde472ecff0" - integrity sha512-Q3b0xFRTrustHwvAuQUIh6c6ZTL3WyuwvymPlC7PaeW4BKVLZoK1lAjMyypDLFiEApp0GadNmOAMXJdAdw3Vtg== +"@lerna/prompt@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/prompt/-/prompt-6.4.1.tgz#5ede06b4c8e17ec3045180b10ec5bd313cbc8585" + integrity sha512-vMxCIgF9Vpe80PnargBGAdS/Ib58iYEcfkcXwo7mYBCxEVcaUJFKZ72FEW8rw+H5LkxBlzrBJyfKRoOe0ks9gQ== dependencies: inquirer "^8.2.4" npmlog "^6.0.2" -"@lerna/publish@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/publish/-/publish-6.3.0.tgz#c3a563cb70bd24a47b3d251e463146a16d40d4c1" - integrity sha512-RZQBsD72wCQnzku8U1ov0kTvM8fkyzmuqI6m4tyrWtSGzNk8iALzJ8dBUD8DHkvcauLrdqB4HTKC2IPACeuFqg== - dependencies: - "@lerna/check-working-tree" "6.3.0" - "@lerna/child-process" "6.3.0" - "@lerna/collect-updates" "6.3.0" - "@lerna/command" "6.3.0" - "@lerna/describe-ref" "6.3.0" - "@lerna/log-packed" "6.3.0" - "@lerna/npm-conf" "6.3.0" - "@lerna/npm-dist-tag" "6.3.0" - "@lerna/npm-publish" "6.3.0" - "@lerna/otplease" "6.3.0" - "@lerna/output" "6.3.0" - "@lerna/pack-directory" "6.3.0" - "@lerna/prerelease-id-from-version" "6.3.0" - "@lerna/prompt" "6.3.0" - "@lerna/pulse-till-done" "6.3.0" - "@lerna/run-lifecycle" "6.3.0" - "@lerna/run-topologically" "6.3.0" - "@lerna/validation-error" "6.3.0" - "@lerna/version" "6.3.0" +"@lerna/publish@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/publish/-/publish-6.4.1.tgz#e1bdfa67297ca4a3054863e7acfc8482bf613c35" + integrity sha512-/D/AECpw2VNMa1Nh4g29ddYKRIqygEV1ftV8PYXVlHpqWN7VaKrcbRU6pn0ldgpFlMyPtESfv1zS32F5CQ944w== + dependencies: + "@lerna/check-working-tree" "6.4.1" + "@lerna/child-process" "6.4.1" + "@lerna/collect-updates" "6.4.1" + "@lerna/command" "6.4.1" + "@lerna/describe-ref" "6.4.1" + "@lerna/log-packed" "6.4.1" + "@lerna/npm-conf" "6.4.1" + "@lerna/npm-dist-tag" "6.4.1" + "@lerna/npm-publish" "6.4.1" + "@lerna/otplease" "6.4.1" + "@lerna/output" "6.4.1" + "@lerna/pack-directory" "6.4.1" + "@lerna/prerelease-id-from-version" "6.4.1" + "@lerna/prompt" "6.4.1" + "@lerna/pulse-till-done" "6.4.1" + "@lerna/run-lifecycle" "6.4.1" + "@lerna/run-topologically" "6.4.1" + "@lerna/validation-error" "6.4.1" + "@lerna/version" "6.4.1" fs-extra "^9.1.0" libnpmaccess "^6.0.3" npm-package-arg "8.1.1" @@ -3692,99 +3645,100 @@ pacote "^13.6.1" semver "^7.3.4" -"@lerna/pulse-till-done@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/pulse-till-done/-/pulse-till-done-6.3.0.tgz#1f1d8c309b55ea9ef5e598d0fecb5a15d6b05a86" - integrity sha512-VldNIj5TD75ymvCCip81c9s4hlzd52WRpRvYRV2I5i5yTNmSOQbL+8CBdBs1AWVySpRIx7IrUFJFDsCIHYPsfw== +"@lerna/pulse-till-done@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/pulse-till-done/-/pulse-till-done-6.4.1.tgz#85c38a43939bf5e21b61091d0bcf73a1109a59db" + integrity sha512-efAkOC1UuiyqYBfrmhDBL6ufYtnpSqAG+lT4d/yk3CzJEJKkoCwh2Hb692kqHHQ5F74Uusc8tcRB7GBcfNZRWA== dependencies: npmlog "^6.0.2" -"@lerna/query-graph@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/query-graph/-/query-graph-6.3.0.tgz#f3424bbd1390f5d76eb1b8487269578dfbb0bdd5" - integrity sha512-6hnJQiqboRU1yDHGjlDgTAb/y7KUn1NxhwYxU6LQxxitvRhIa7k1abigJpyncmfX8plaof77pIA6gNYgKgdk5A== +"@lerna/query-graph@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/query-graph/-/query-graph-6.4.1.tgz#3c224a49ff392d08ce8aeeaa1af4458f522a2b78" + integrity sha512-gBGZLgu2x6L4d4ZYDn4+d5rxT9RNBC+biOxi0QrbaIq83I+JpHVmFSmExXK3rcTritrQ3JT9NCqb+Yu9tL9adQ== dependencies: - "@lerna/package-graph" "6.3.0" + "@lerna/package-graph" "6.4.1" -"@lerna/resolve-symlink@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/resolve-symlink/-/resolve-symlink-6.3.0.tgz#f27a864a00d24433087c6cb33aa2da2907196bee" - integrity sha512-q63uQreQvzBOPPnaZYXMjJgmmBZP3HlBNSGIb15ZdpNbKbehg/+ysnwcYOkNDSDwSjUx/MtZ+sVRjK42/z8BFQ== +"@lerna/resolve-symlink@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/resolve-symlink/-/resolve-symlink-6.4.1.tgz#ab42dcbd03bc4028ec77ee481c5db8884ebaf40a" + integrity sha512-gnqltcwhWVLUxCuwXWe/ch9WWTxXRI7F0ZvCtIgdfOpbosm3f1g27VO1LjXeJN2i6ks03qqMowqy4xB4uMR9IA== dependencies: fs-extra "^9.1.0" npmlog "^6.0.2" read-cmd-shim "^3.0.0" -"@lerna/rimraf-dir@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/rimraf-dir/-/rimraf-dir-6.3.0.tgz#e5a458aaf8d7bc50653a02d97bf4e74acce606c7" - integrity sha512-+CMkQzYgJa4YYXxrPeN1nvRL3Oa2Uve+9cKWaJQh9gCyZudR0rTO5CHgvjm+NIoaDBC+zHMUj+i1ZEHqK+R/lg== +"@lerna/rimraf-dir@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/rimraf-dir/-/rimraf-dir-6.4.1.tgz#116e379f653135b3ae955dcba703bdf212cab51a" + integrity sha512-5sDOmZmVj0iXIiEgdhCm0Prjg5q2SQQKtMd7ImimPtWKkV0IyJWxrepJFbeQoFj5xBQF7QB5jlVNEfQfKhD6pQ== dependencies: - "@lerna/child-process" "6.3.0" + "@lerna/child-process" "6.4.1" npmlog "^6.0.2" path-exists "^4.0.0" rimraf "^3.0.2" -"@lerna/run-lifecycle@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/run-lifecycle/-/run-lifecycle-6.3.0.tgz#2ef8d1eab33c8a56486b142df6313dff9fc83fc0" - integrity sha512-v9eUqh0lzVqADWYIEiOjBvvQDeZlSA3LMMZfyT4iJFu+vh5bC1l5LYEU1votlrsRpU8y1moXhRM7w4Bq9sM77w== +"@lerna/run-lifecycle@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/run-lifecycle/-/run-lifecycle-6.4.1.tgz#1eac136afae97e197bdb564e67fb385f4d346685" + integrity sha512-42VopI8NC8uVCZ3YPwbTycGVBSgukJltW5Saein0m7TIqFjwSfrcP0n7QJOr+WAu9uQkk+2kBstF5WmvKiqgEA== dependencies: - "@lerna/npm-conf" "6.3.0" + "@lerna/npm-conf" "6.4.1" "@npmcli/run-script" "^4.1.7" npmlog "^6.0.2" p-queue "^6.6.2" -"@lerna/run-topologically@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/run-topologically/-/run-topologically-6.3.0.tgz#260d514b9eafafe5221163ebbee1ae25bb93b47e" - integrity sha512-fANp3x59wHt8DdyAUbGgWKDboN0EpSr3eZ6zzgrPJ/tYyZBeEdxdN3hh6wZdijtEOAIV1xnBrdInwrzHWAuoXw== +"@lerna/run-topologically@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/run-topologically/-/run-topologically-6.4.1.tgz#640b07d83f1d1e6d3bc36f81a74957839bb1672f" + integrity sha512-gXlnAsYrjs6KIUGDnHM8M8nt30Amxq3r0lSCNAt+vEu2sMMEOh9lffGGaJobJZ4bdwoXnKay3uER/TU8E9owMw== dependencies: - "@lerna/query-graph" "6.3.0" + "@lerna/query-graph" "6.4.1" p-queue "^6.6.2" -"@lerna/run@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/run/-/run-6.3.0.tgz#8eb58af1d542f197ac7bc96d01f460f8ee0e5c6e" - integrity sha512-ee2xa5siTar28Tmug1omMD6QPdN2ltcuKFYVu/k3uNo9MvhmJzssmk85BnkDcP1ZHoJK2jciAAFeyOU5JukyZQ== - dependencies: - "@lerna/command" "6.3.0" - "@lerna/filter-options" "6.3.0" - "@lerna/npm-run-script" "6.3.0" - "@lerna/output" "6.3.0" - "@lerna/profiler" "6.3.0" - "@lerna/run-topologically" "6.3.0" - "@lerna/timer" "6.3.0" - "@lerna/validation-error" "6.3.0" +"@lerna/run@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/run/-/run-6.4.1.tgz#985279f071ff23ae15f92837f85f979a1352fc01" + integrity sha512-HRw7kS6KNqTxqntFiFXPEeBEct08NjnL6xKbbOV6pXXf+lXUQbJlF8S7t6UYqeWgTZ4iU9caIxtZIY+EpW93mQ== + dependencies: + "@lerna/command" "6.4.1" + "@lerna/filter-options" "6.4.1" + "@lerna/npm-run-script" "6.4.1" + "@lerna/output" "6.4.1" + "@lerna/profiler" "6.4.1" + "@lerna/run-topologically" "6.4.1" + "@lerna/timer" "6.4.1" + "@lerna/validation-error" "6.4.1" fs-extra "^9.1.0" + nx ">=15.4.2 < 16" p-map "^4.0.0" -"@lerna/symlink-binary@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/symlink-binary/-/symlink-binary-6.3.0.tgz#137ec5f177d557fddb495d4072ab424b20e3182e" - integrity sha512-KEJo0W3ifwUT5K23nDuSm6+1LYkmvvOCtoQFKfDebRD1PJ1mBX7GLET/0k3/Fss6VZBvVO7kBrR3XRM40V/eaw== +"@lerna/symlink-binary@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/symlink-binary/-/symlink-binary-6.4.1.tgz#d8e1b653a7ae9fe38834851c66c92278e3bb25ae" + integrity sha512-poZX90VmXRjL/JTvxaUQPeMDxFUIQvhBkHnH+dwW0RjsHB/2Tu4QUAsE0OlFnlWQGsAtXF4FTtW8Xs57E/19Kw== dependencies: - "@lerna/create-symlink" "6.3.0" - "@lerna/package" "6.3.0" + "@lerna/create-symlink" "6.4.1" + "@lerna/package" "6.4.1" fs-extra "^9.1.0" p-map "^4.0.0" -"@lerna/symlink-dependencies@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/symlink-dependencies/-/symlink-dependencies-6.3.0.tgz#7caf2e96f652c65c380db299b06d46f30d56b8b4" - integrity sha512-Ur0YoBF61/MYgoHAzUQL8yBtmHJ7zZPBbalVXoJjqlLuXKvxGUaiNpU4B5FF3+ihe8s8veoGwHRG2iKy1srYjQ== +"@lerna/symlink-dependencies@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/symlink-dependencies/-/symlink-dependencies-6.4.1.tgz#988203cc260406b64d61294367821a0f26419ee6" + integrity sha512-43W2uLlpn3TTYuHVeO/2A6uiTZg6TOk/OSKi21ujD7IfVIYcRYCwCV+8LPP12R3rzyab0JWkWnhp80Z8A2Uykw== dependencies: - "@lerna/create-symlink" "6.3.0" - "@lerna/resolve-symlink" "6.3.0" - "@lerna/symlink-binary" "6.3.0" + "@lerna/create-symlink" "6.4.1" + "@lerna/resolve-symlink" "6.4.1" + "@lerna/symlink-binary" "6.4.1" fs-extra "^9.1.0" p-map "^4.0.0" p-map-series "^2.1.0" -"@lerna/temp-write@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/temp-write/-/temp-write-6.3.0.tgz#99926d47516669e8a453b85ef2c8d86fdab4bd6a" - integrity sha512-lO16B55xj6+ETrM6adggdKj1MPrCZkIDrshbaLKqEVNHLAo+rd6SkhHVyvKT1oP9+BIX10q3yL/bc/szU+euUg== +"@lerna/temp-write@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/temp-write/-/temp-write-6.4.1.tgz#1c46d05b633597c77b0c5f5ab46c1315195f7786" + integrity sha512-7uiGFVoTyos5xXbVQg4bG18qVEn9dFmboXCcHbMj5mc/+/QmU9QeNz/Cq36O5TY6gBbLnyj3lfL5PhzERWKMFg== dependencies: graceful-fs "^4.1.15" is-stream "^2.0.0" @@ -3792,38 +3746,38 @@ temp-dir "^1.0.0" uuid "^8.3.2" -"@lerna/timer@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/timer/-/timer-6.3.0.tgz#3cecd7f8ddc1b373eddcbe1ac5ee978e3741cfbc" - integrity sha512-BRB5RI2dYSD4TGPbjablUBJNqQHOjdtfqksfSFWRGUHZvRgMmYyDNocQp+mYZO6PPAEuCRpdf5Me3zNlDOtacw== +"@lerna/timer@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/timer/-/timer-6.4.1.tgz#47fe50b56bd2fc32396a2559f7bb65de8200f07d" + integrity sha512-ogmjFTWwRvevZr76a2sAbhmu3Ut2x73nDIn0bcwZwZ3Qc3pHD8eITdjs/wIKkHse3J7l3TO5BFJPnrvDS7HLnw== -"@lerna/validation-error@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/validation-error/-/validation-error-6.3.0.tgz#81a1b1189295416dced701edcdfb1ce999af5f08" - integrity sha512-XLfMZxxfzql56joLpiLNR0KeivpsYkhJByB11zcWLjErT0HOA/zCRJfJ24vgpyzi5JgFIEpkUZYlsawBuQnfYQ== +"@lerna/validation-error@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/validation-error/-/validation-error-6.4.1.tgz#2cab92c2be395158c3d65fa57ddb73892617d7e8" + integrity sha512-fxfJvl3VgFd7eBfVMRX6Yal9omDLs2mcGKkNYeCEyt4Uwlz1B5tPAXyk/sNMfkKV2Aat/mlK5tnY13vUrMKkyA== dependencies: npmlog "^6.0.2" -"@lerna/version@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/version/-/version-6.3.0.tgz#1f6b5df8626aa519b787df1ac2e5015993bd0041" - integrity sha512-KUJPOiLbPjGHFe4IXxsNSqw3hJJlinrc4bhXklQWGd/OvKjJwTI57/ZeO3ALJIKcRnS57DnPqQCgwr9zZ4UIrw== - dependencies: - "@lerna/check-working-tree" "6.3.0" - "@lerna/child-process" "6.3.0" - "@lerna/collect-updates" "6.3.0" - "@lerna/command" "6.3.0" - "@lerna/conventional-commits" "6.3.0" - "@lerna/github-client" "6.3.0" - "@lerna/gitlab-client" "6.3.0" - "@lerna/output" "6.3.0" - "@lerna/prerelease-id-from-version" "6.3.0" - "@lerna/prompt" "6.3.0" - "@lerna/run-lifecycle" "6.3.0" - "@lerna/run-topologically" "6.3.0" - "@lerna/temp-write" "6.3.0" - "@lerna/validation-error" "6.3.0" - "@nrwl/devkit" ">=14.8.6 < 16" +"@lerna/version@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/version/-/version-6.4.1.tgz#01011364df04240ce92dffed1d2fa76bb9f959ff" + integrity sha512-1/krPq0PtEqDXtaaZsVuKev9pXJCkNC1vOo2qCcn6PBkODw/QTAvGcUi0I+BM2c//pdxge9/gfmbDo1lC8RtAQ== + dependencies: + "@lerna/check-working-tree" "6.4.1" + "@lerna/child-process" "6.4.1" + "@lerna/collect-updates" "6.4.1" + "@lerna/command" "6.4.1" + "@lerna/conventional-commits" "6.4.1" + "@lerna/github-client" "6.4.1" + "@lerna/gitlab-client" "6.4.1" + "@lerna/output" "6.4.1" + "@lerna/prerelease-id-from-version" "6.4.1" + "@lerna/prompt" "6.4.1" + "@lerna/run-lifecycle" "6.4.1" + "@lerna/run-topologically" "6.4.1" + "@lerna/temp-write" "6.4.1" + "@lerna/validation-error" "6.4.1" + "@nrwl/devkit" ">=15.4.2 < 16" chalk "^4.1.0" dedent "^0.7.0" load-json-file "^6.2.0" @@ -3837,10 +3791,10 @@ slash "^3.0.0" write-json-file "^4.3.0" -"@lerna/write-log-file@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@lerna/write-log-file/-/write-log-file-6.3.0.tgz#a2114816f5f8ddfcfafbe2ae0c085d4c76f1811b" - integrity sha512-Bmb0Z8qaWS47asssdtYY8E73oT4D2jd3LgBiqz6T738woPQcrh+H2L/2Japg95io53XLClBKh6rrfXhFDcdM5g== +"@lerna/write-log-file@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/write-log-file/-/write-log-file-6.4.1.tgz#b9b959e4b853cdabf0309bc5da1513fa025117ec" + integrity sha512-LE4fueQSDrQo76F4/gFXL0wnGhqdG7WHVH8D8TrKouF2Afl4NHltObCm4WsSMPjcfciVnZQFfx1ruxU4r/enHQ== dependencies: npmlog "^6.0.2" write-file-atomic "^4.0.1" @@ -3866,14 +3820,14 @@ "@lezer/highlight" "^1.0.0" "@lezer/lr" "^1.0.0" -"@lezer/highlight@^1.0.0": +"@lezer/highlight@^1.0.0", "@lezer/highlight@^1.1.3": version "1.1.3" resolved "https://registry.yarnpkg.com/@lezer/highlight/-/highlight-1.1.3.tgz#bf5a36c2ee227f526d74997ac91f7777e29bd25d" integrity sha512-3vLKLPThO4td43lYRBygmMY18JN3CPh9w+XS2j8WC30vR4yZeFG4z1iFe4jXE43NtGqe//zHW5q8ENLlHvz9gw== dependencies: "@lezer/common" "^1.0.0" -"@lezer/html@^1.1.0": +"@lezer/html@^1.3.0": version "1.3.0" resolved "https://registry.yarnpkg.com/@lezer/html/-/html-1.3.0.tgz#7e353dcefcdee9c4d3cd6bfc59416d0037f70c4c" integrity sha512-jU/ah8DEoiECLTMouU/X/ujIg6k9WQMIOFMaCLebzaXfrguyGaR3DpTgmk0tbljiuIJ7hlmVJPcJcxGzmCd0Mg== @@ -3883,20 +3837,20 @@ "@lezer/lr" "^1.0.0" "@lezer/java@^1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@lezer/java/-/java-1.0.0.tgz#fe74e062350f7a4268107e7562971bfbad994f49" - integrity sha512-z2EA0JHq2WoiKfQy5uOOd4t17PJtq8guh58gPkSzOnNcQ7DNbkrU+Axak+jL8+Noinwyz2tRNOseQFj+Tg+P0A== + version "1.0.1" + resolved "https://registry.yarnpkg.com/@lezer/java/-/java-1.0.1.tgz#7ce33c7868cf43416ea3d2eb0c78cf8b2cd3a817" + integrity sha512-d3ruSeKAm1Taz7yWsTrp1qjqyi/MKMJA6tnBAtYXb8wY/RuDja4PnHM+RnyGKC4JOLHVbhglqsaHOr8GROQ+QQ== dependencies: "@lezer/highlight" "^1.0.0" "@lezer/lr" "^1.0.0" "@lezer/javascript@^1.0.0": - version "1.4.0" - resolved "https://registry.yarnpkg.com/@lezer/javascript/-/javascript-1.4.0.tgz#fe71474fcadc6112fb0978310faed0788d0af824" - integrity sha512-MQ3oLJGEtpUgZ03LOLI60tDnjSkKO6h9hZSe31qJ1UQV+I9bpv3pwSnPUnX0+e+3E1PBVkox0GB2/MXkxg0M2w== + version "1.4.1" + resolved "https://registry.yarnpkg.com/@lezer/javascript/-/javascript-1.4.1.tgz#97a15042c76b5979af6a069fac83cf6485628cbf" + integrity sha512-Hqx36DJeYhKtdpc7wBYPR0XF56ZzIp0IkMO/zNNj80xcaFOV4Oj/P7TQc/8k2TxNhzl7tV5tXS8ZOCPbT4L3nA== dependencies: - "@lezer/highlight" "^1.0.0" - "@lezer/lr" "^1.0.0" + "@lezer/highlight" "^1.1.3" + "@lezer/lr" "^1.3.0" "@lezer/json@^1.0.0": version "1.0.0" @@ -3906,10 +3860,10 @@ "@lezer/highlight" "^1.0.0" "@lezer/lr" "^1.0.0" -"@lezer/lr@^1.0.0": - version "1.2.5" - resolved "https://registry.yarnpkg.com/@lezer/lr/-/lr-1.2.5.tgz#e9088164a711690596f17378665e0554157c9b03" - integrity sha512-f9319YG1A/3ysgUE3bqCHEd7g+3ZZ71MWlwEc42mpnLVYXgfJJgtu1XAyBB4Kz8FmqmnFe9caopDqKeMMMAU6g== +"@lezer/lr@^1.0.0", "@lezer/lr@^1.1.0", "@lezer/lr@^1.3.0": + version "1.3.3" + resolved "https://registry.yarnpkg.com/@lezer/lr/-/lr-1.3.3.tgz#0ac6c889f1235874f33c45a1b9785d7054f60708" + integrity sha512-JPQe3mwJlzEVqy67iQiiGozhcngbO8QBgpqZM6oL1Wj/dXckrEexpBLeFkq0edtW5IqnPRFxA24BHJni8Js69w== dependencies: "@lezer/common" "^1.0.0" @@ -3922,17 +3876,17 @@ "@lezer/highlight" "^1.0.0" "@lezer/php@^1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@lezer/php/-/php-1.0.0.tgz#522d2d2d8a4eee6c598060e2a222526953c66adb" - integrity sha512-kFQu/mk/vmjpA+fjQU87d9eimqKJ9PFCa8CZCPFWGEwNnm7Ahpw32N+HYEU/YAQ0XcfmOAnW/YJCEa8WpUOMMw== + version "1.0.1" + resolved "https://registry.yarnpkg.com/@lezer/php/-/php-1.0.1.tgz#4496b58c980ca710c0433fd743d27e9964fd74ea" + integrity sha512-aqdCQJOXJ66De22vzdwnuC502hIaG9EnPK2rSi+ebXyUd+j7GAX1mRjWZOVOmf3GST1YUfUCu6WXDiEgDGOVwA== dependencies: "@lezer/highlight" "^1.0.0" - "@lezer/lr" "^1.0.0" + "@lezer/lr" "^1.1.0" "@lezer/python@^1.0.0": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@lezer/python/-/python-1.1.1.tgz#6d688071ed93d063a589a7d31df3279b1eba607a" - integrity sha512-ArUGh9kvdaOVu6IkSaYUS9WFQeMAFVWKRuZo6vexnxoeCLnxf0Y9DCFEAMMa7W9SQBGYE55OarSpPqSkdOXSCA== + version "1.1.2" + resolved "https://registry.yarnpkg.com/@lezer/python/-/python-1.1.2.tgz#1db9faf182ca04815b2c7e0f1ce37104b2564ec5" + integrity sha512-ukm4VhDasFX7/9BUYHTyUNXH0xQ5B7/QBlZD8P51+dh6GtXRSCQqNxloez5d+MxVb2Sg+31S8E/33qoFREfkpA== dependencies: "@lezer/highlight" "^1.0.0" "@lezer/lr" "^1.0.0" @@ -3958,49 +3912,49 @@ resolved "https://registry.yarnpkg.com/@lumino/algorithm/-/algorithm-1.9.2.tgz#b95e6419aed58ff6b863a51bfb4add0f795141d3" integrity sha512-Z06lp/yuhz8CtIir3PNTGnuk7909eXt4ukJsCzChsGuot2l5Fbs96RJ/FOHgwCedaX74CtxPjXHXoszFbUA+4A== -"@lumino/algorithm@^2.0.0-alpha.6", "@lumino/algorithm@^2.0.0-alpha.7": - version "2.0.0-alpha.7" - resolved "https://registry.yarnpkg.com/@lumino/algorithm/-/algorithm-2.0.0-alpha.7.tgz#cb7c2125b314f473f3f7c5ab0c5379decd203af9" - integrity sha512-quzWWp2TxxNH0NNTWdM3T+v/gp4ZNUg2slICM+c2eVJBM5RJO/AIF61L6TB7oX4Ehfk/HWzoFwMfG01d3TgY0Q== +"@lumino/algorithm@^2.0.0-alpha.6", "@lumino/algorithm@^2.0.0-beta.0": + version "2.0.0-beta.0" + resolved "https://registry.yarnpkg.com/@lumino/algorithm/-/algorithm-2.0.0-beta.0.tgz#97c13c7b62ed3c86a3b40c34ac9b1e61c9cb1742" + integrity sha512-Uh2luxjC8L80Z1lTHUzRWp/2fc3ZaWy+db0SvqYU61xrp73nyUpwp237E/s4IaLSGP3TVkp5WFcUagt6Ehy+5w== "@lumino/application@^2.0.0-alpha.6": - version "2.0.0-alpha.7" - resolved "https://registry.yarnpkg.com/@lumino/application/-/application-2.0.0-alpha.7.tgz#fa9455d71f0ff6d4a63dbfabfd9ab75081f6ad5a" - integrity sha512-tZEQzzq5XJMcbScwzyl4yQvcaANTGE8b6ehpUY0iAa4GGJUQiYIuPHCqiDVmAZHfuNwpcRF/k9Gb+8BscaIV9A== - dependencies: - "@lumino/commands" "^2.0.0-alpha.7" - "@lumino/coreutils" "^2.0.0-alpha.7" - "@lumino/widgets" "^2.0.0-alpha.7" - -"@lumino/collections@^2.0.0-alpha.7": - version "2.0.0-alpha.7" - resolved "https://registry.yarnpkg.com/@lumino/collections/-/collections-2.0.0-alpha.7.tgz#798d343918c828280db49f1b29b37d90e2b4ed52" - integrity sha512-f8lwGfy8UaOaBtrLLnqAuRD62eC6bADkTduJDSfxu8uREYRQKbjM5W8CvyWqw4CsTwsOsvZbeKoglXpSM6AxVg== - dependencies: - "@lumino/algorithm" "^2.0.0-alpha.7" - -"@lumino/commands@^2.0.0-alpha.6", "@lumino/commands@^2.0.0-alpha.7": - version "2.0.0-alpha.7" - resolved "https://registry.yarnpkg.com/@lumino/commands/-/commands-2.0.0-alpha.7.tgz#a206cebd87293b6f1caf58525719e820687b5b08" - integrity sha512-mmVLhpzCI36PFXYDYpsKLbNl4M7FiC6FC7v49mtCCGwLLhmm2+P/VCaAmAyK97X4abSkMCF6CkUAbCVKVZaQtA== - dependencies: - "@lumino/algorithm" "^2.0.0-alpha.7" - "@lumino/coreutils" "^2.0.0-alpha.7" - "@lumino/disposable" "^2.0.0-alpha.7" - "@lumino/domutils" "^2.0.0-alpha.7" - "@lumino/keyboard" "^2.0.0-alpha.7" - "@lumino/signaling" "^2.0.0-alpha.7" - "@lumino/virtualdom" "^2.0.0-alpha.7" + version "2.0.0-beta.1" + resolved "https://registry.yarnpkg.com/@lumino/application/-/application-2.0.0-beta.1.tgz#e92ef42008c437d353120e87784d1597868a0f71" + integrity sha512-QBEHd0KbAP4eQIy12bxxuoIGyvWd1awgdFF1nOY2wjKN9V6qhi7OROXR+6WubXGIlK4AC0L6iBi+9TOev9cI5Q== + dependencies: + "@lumino/commands" "^2.0.0-beta.1" + "@lumino/coreutils" "^2.0.0-beta.0" + "@lumino/widgets" "^2.0.0-beta.1" + +"@lumino/collections@^2.0.0-beta.0": + version "2.0.0-beta.0" + resolved "https://registry.yarnpkg.com/@lumino/collections/-/collections-2.0.0-beta.0.tgz#72ccc98effd904b90e4b5e6ce4301146b3fdb1c3" + integrity sha512-mO7zOS+lkes/Ouy8ibdPexEh5Nu6ec7XEw5lffhGlbBfrg/s/mkHUjOdnKrtiTAI2Nq4APLHZftcZuCHCVWknA== + dependencies: + "@lumino/algorithm" "^2.0.0-beta.0" + +"@lumino/commands@^2.0.0-alpha.6", "@lumino/commands@^2.0.0-beta.1": + version "2.0.0-beta.1" + resolved "https://registry.yarnpkg.com/@lumino/commands/-/commands-2.0.0-beta.1.tgz#1cb4f00180d5fd501d0fee361727076c291d1e1f" + integrity sha512-1VhFwJGuGaUMUdoUbWW0zhiVw8D8VhXtTdy3c8nUi3+D0iaI+PgWutZh/BmIC9/uCYeYttQiIm2lcEZrjoCS9w== + dependencies: + "@lumino/algorithm" "^2.0.0-beta.0" + "@lumino/coreutils" "^2.0.0-beta.0" + "@lumino/disposable" "^2.0.0-beta.1" + "@lumino/domutils" "^2.0.0-beta.0" + "@lumino/keyboard" "^2.0.0-beta.0" + "@lumino/signaling" "^2.0.0-beta.1" + "@lumino/virtualdom" "^2.0.0-beta.0" "@lumino/coreutils@^1.11.0", "@lumino/coreutils@^1.11.0 || ^2.0.0-alpha.6": version "1.12.1" resolved "https://registry.yarnpkg.com/@lumino/coreutils/-/coreutils-1.12.1.tgz#79860c9937483ddf6cda87f6c2b9da8eb1a5d768" integrity sha512-JLu3nTHzJk9N8ohZ85u75YxemMrmDzJdNgZztfP7F7T7mxND3YVNCkJG35a6aJ7edu1sIgCjBxOvV+hv27iYvQ== -"@lumino/coreutils@^2.0.0-alpha.6", "@lumino/coreutils@^2.0.0-alpha.7": - version "2.0.0-alpha.7" - resolved "https://registry.yarnpkg.com/@lumino/coreutils/-/coreutils-2.0.0-alpha.7.tgz#9ffc06d21fb3eb43792715c559d03793c0ff601c" - integrity sha512-Bi7VfvJfs3711fhyTbcZlhGMwuLUhanWnJIb1/10yRl8I/vyvrwZkosF7pRh8FCCr02xrbZymlexXs7MpxHDuA== +"@lumino/coreutils@^2.0.0-alpha.6", "@lumino/coreutils@^2.0.0-beta.0": + version "2.0.0-beta.0" + resolved "https://registry.yarnpkg.com/@lumino/coreutils/-/coreutils-2.0.0-beta.0.tgz#7be152e1d507365524c7b284360d6b78b6c93d2d" + integrity sha512-leOyutyBztkWdb3v8keD7+y5FyZvU0LKsws79I3zm68pqi4XecqzZdKkcJ8OuyG8N9Ug5Xtw3uNXC2kyt9/eIA== "@lumino/datagrid@^1.0.0-alpha.6": version "1.0.0-alpha.6" @@ -4018,105 +3972,104 @@ "@lumino/widgets" "^2.0.0-alpha.6" "@lumino/disposable@^1.10.0 || ^2.0.0-alpha.6": - version "1.10.3" - resolved "https://registry.yarnpkg.com/@lumino/disposable/-/disposable-1.10.3.tgz#c9778204f997605b00dab342029d488196d4baef" - integrity sha512-a+LplaVGuubmM0KcgAK5NCcJxo0vuw020p3r5AaM/uvAtvLHM+po0wqD0Lcz633ERunf+bDdQ+8BcOhrQLPofQ== + version "1.10.4" + resolved "https://registry.yarnpkg.com/@lumino/disposable/-/disposable-1.10.4.tgz#73b452044fecf988d7fa73fac9451b1a7f987323" + integrity sha512-4ZxyYcyzUS+ZeB2KAH9oAH3w0DUUceiVr+FIZHZ2TAYGWZI/85WlqJtfm0xjwEpCwLLW1TDqJrISuZu3iMmVMA== dependencies: "@lumino/algorithm" "^1.9.2" - "@lumino/signaling" "^1.11.0" + "@lumino/signaling" "^1.11.1" -"@lumino/disposable@^2.0.0-alpha.6", "@lumino/disposable@^2.0.0-alpha.7": - version "2.0.0-alpha.7" - resolved "https://registry.yarnpkg.com/@lumino/disposable/-/disposable-2.0.0-alpha.7.tgz#5103c6616c16032d8010da9ed5d6ecbeacb653a3" - integrity sha512-L/4cibVUyzanHz407FJYXa6OIyUKnmEPxpp+uaOEpJ9KBwIwRPXx3sZBFbaEnztBovJtwSUv//L0bpp27NgR6Q== +"@lumino/disposable@^2.0.0-alpha.6", "@lumino/disposable@^2.0.0-beta.1": + version "2.0.0-beta.1" + resolved "https://registry.yarnpkg.com/@lumino/disposable/-/disposable-2.0.0-beta.1.tgz#0b1fa3492d31c3c6d34cc7ec5c1f031d95178e3e" + integrity sha512-QkQC4LXK+slgRVmIQDwAbN5vdGXV+S/meRHqSYJxyJj5PDJsilCn4TKohRA4ld+n1yuBqKuuFurui5wXnYjjKw== dependencies: - "@lumino/signaling" "^2.0.0-alpha.7" + "@lumino/signaling" "^2.0.0-beta.1" -"@lumino/domutils@^2.0.0-alpha.6", "@lumino/domutils@^2.0.0-alpha.7": - version "2.0.0-alpha.7" - resolved "https://registry.yarnpkg.com/@lumino/domutils/-/domutils-2.0.0-alpha.7.tgz#2625abf1ad5d916a599528e2351aeb7e13a6a7fd" - integrity sha512-8tFmZJFg0rKDvkWHoqtp/v84s5/l5lel+6TCSTyLEqknGXrWSerHmHcuGRSaU3jWvoCIPJBz+tNisw94csPXnQ== +"@lumino/domutils@^2.0.0-alpha.6", "@lumino/domutils@^2.0.0-beta.0": + version "2.0.0-beta.0" + resolved "https://registry.yarnpkg.com/@lumino/domutils/-/domutils-2.0.0-beta.0.tgz#9d6d0ccc2f878dbf229ed9e6865f677fbbebf123" + integrity sha512-fuht6bEWEuoTxQPtrEwKb2dIe8MLS5clXEg1ERVdPiALkwQZyQjcqv0hj2izE+g+qca8uZ/IWe4cXu96uOgTzA== -"@lumino/dragdrop@^2.0.0-alpha.6", "@lumino/dragdrop@^2.0.0-alpha.7": - version "2.0.0-alpha.7" - resolved "https://registry.yarnpkg.com/@lumino/dragdrop/-/dragdrop-2.0.0-alpha.7.tgz#3b367d492f4e334c738cffb0c6ed1efc533d8e91" - integrity sha512-M/dUGeY9gdUufcULZ+Dy49m0slduYcjzQYF4JElNtyDUSK/sfyl7NXyvk0FTgxLgSyuAYwB+I/qtfBHpA1J+yQ== +"@lumino/dragdrop@^2.0.0-alpha.6", "@lumino/dragdrop@^2.0.0-beta.1": + version "2.0.0-beta.1" + resolved "https://registry.yarnpkg.com/@lumino/dragdrop/-/dragdrop-2.0.0-beta.1.tgz#9563acac5156377a7038374e88a53f5a60f559fb" + integrity sha512-IF2v17h38PwkMQw0xb2wl8QvM4viC1NkYaMI7VRU9yprH+9kuJ23IfxcBvVYJgONxLDvUMARlsAHXwQEhkVFKw== dependencies: - "@lumino/coreutils" "^2.0.0-alpha.7" - "@lumino/disposable" "^2.0.0-alpha.7" + "@lumino/coreutils" "^2.0.0-beta.0" + "@lumino/disposable" "^2.0.0-beta.1" -"@lumino/keyboard@^2.0.0-alpha.6", "@lumino/keyboard@^2.0.0-alpha.7": - version "2.0.0-alpha.7" - resolved "https://registry.yarnpkg.com/@lumino/keyboard/-/keyboard-2.0.0-alpha.7.tgz#2640c21bf62b0737158ba66267f44e555a826cd6" - integrity sha512-k7HniUkFdkBD3q1sjhKo4DNAV13iSF67EUo9YNuR13YVpPjUKps6yP29PWD1nSLLhr+ptFgkuXofOf73bKeCPA== +"@lumino/keyboard@^2.0.0-alpha.6", "@lumino/keyboard@^2.0.0-beta.0": + version "2.0.0-beta.0" + resolved "https://registry.yarnpkg.com/@lumino/keyboard/-/keyboard-2.0.0-beta.0.tgz#21368492984acef4d593c033b92dadee17689128" + integrity sha512-YUwfgzvDCtTcctWvQ71ZRj6JBGL1HfR9MBcP4fFJnqWI96Zuht/VEH745U/WK1pwa0FKq3gWcDlwf4b61y2/eg== -"@lumino/messaging@^2.0.0-alpha.6", "@lumino/messaging@^2.0.0-alpha.7": - version "2.0.0-alpha.7" - resolved "https://registry.yarnpkg.com/@lumino/messaging/-/messaging-2.0.0-alpha.7.tgz#02ff9228f22048c3cd8cecf20ffec4b7ec756ea1" - integrity sha512-ywPAaFcogVRdMocLwz4XuosBf1x9I8DQ1c3T9qayfgAb6BZN2f/RTfpvyKllMlSxn1vwHYNVm687lN4zbfjA1w== +"@lumino/messaging@^2.0.0-alpha.6", "@lumino/messaging@^2.0.0-beta.0": + version "2.0.0-beta.0" + resolved "https://registry.yarnpkg.com/@lumino/messaging/-/messaging-2.0.0-beta.0.tgz#c1a11ef66e1e2645fad2953761973d8c4eb453a8" + integrity sha512-EP28kYRQO1Y8fuAoM6ANieIQyu4iF9AP1vPqzPBxLK3GiYWZo0b1wwjxqBIFxMfx2fovpM9mLrU9aDnQIOZqJw== dependencies: - "@lumino/algorithm" "^2.0.0-alpha.7" - "@lumino/collections" "^2.0.0-alpha.7" + "@lumino/algorithm" "^2.0.0-beta.0" + "@lumino/collections" "^2.0.0-beta.0" -"@lumino/polling@^2.0.0-alpha.6", "@lumino/polling@^2.0.0-alpha.7": - version "2.0.0-alpha.7" - resolved "https://registry.yarnpkg.com/@lumino/polling/-/polling-2.0.0-alpha.7.tgz#992b83f2b0ba569520026ea7bcfa1a7cb4f7ee9a" - integrity sha512-OEYsah74vCaCJW6YaeBfb7PO28i0UvVItLlwdV6QlqGIoZ1VAveWaq7xyN67R0jEKwXIJfpm0E7EMdIuPttqzA== +"@lumino/polling@^2.0.0-alpha.6", "@lumino/polling@^2.0.0-beta.1": + version "2.0.0-beta.1" + resolved "https://registry.yarnpkg.com/@lumino/polling/-/polling-2.0.0-beta.1.tgz#f6cef4884a5969f71d55e8bfcea71692fde42fbd" + integrity sha512-MaxtQsbtSWZmNtVa5/kHz74LJn1COdA2jtDIt/YZEv8A1U4UOL6++Q863HPIKttYIcuDk/16K0kBAEoAJPJQ6Q== dependencies: - "@lumino/coreutils" "^2.0.0-alpha.7" - "@lumino/disposable" "^2.0.0-alpha.7" - "@lumino/signaling" "^2.0.0-alpha.7" + "@lumino/coreutils" "^2.0.0-beta.0" + "@lumino/disposable" "^2.0.0-beta.1" + "@lumino/signaling" "^2.0.0-beta.1" "@lumino/properties@^1.8.2": version "1.8.2" resolved "https://registry.yarnpkg.com/@lumino/properties/-/properties-1.8.2.tgz#91131f2ca91a902faa138771eb63341db78fc0fd" integrity sha512-EkjI9Cw8R0U+xC9HxdFSu7X1tz1H1vKu20cGvJ2gU+CXlMB1DvoYJCYxCThByHZ+kURTAap4SE5x8HvKwNPbig== -"@lumino/properties@^2.0.0-alpha.6", "@lumino/properties@^2.0.0-alpha.7": - version "2.0.0-alpha.7" - resolved "https://registry.yarnpkg.com/@lumino/properties/-/properties-2.0.0-alpha.7.tgz#0628235daf6aecde57cb73c8197ffcd3bcec4046" - integrity sha512-FTeoP6eFTVd/FzgQXxe90A+cu88iGTZDNaBITtrynqVaKSlbP0tw8UEqV5rOMd3e/g8b3bOTMq7f6/l7NENClQ== +"@lumino/properties@^2.0.0-alpha.6", "@lumino/properties@^2.0.0-beta.0": + version "2.0.0-beta.0" + resolved "https://registry.yarnpkg.com/@lumino/properties/-/properties-2.0.0-beta.0.tgz#df0852e6b040ab063f25a74d16655ed53570d06d" + integrity sha512-Yt1EFrDXUx4fNPLZtNf1j5hscVJrDAzarrmAv3haeN78vG8VZM6IacG0/wetYPFs5/d4ploz07+TkHlUnFDHfQ== -"@lumino/signaling@^1.10.0 || ^2.0.0-alpha.6", "@lumino/signaling@^1.11.0": - version "1.11.0" - resolved "https://registry.yarnpkg.com/@lumino/signaling/-/signaling-1.11.0.tgz#b61071875a69a02e7b14b779657ebdb099aac676" - integrity sha512-c4mfkmwr9RDh/cUF7BFoPj8KdSsmJRfGLt0e2ez4sgnbSX2afeMNQBIi/gKsD4mMmhI5bXa17tVDYQn6ICBXAw== +"@lumino/signaling@^1.10.0 || ^2.0.0-alpha.6", "@lumino/signaling@^1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@lumino/signaling/-/signaling-1.11.1.tgz#438f447a1b644fd286549804f9851b5aec9679a2" + integrity sha512-YCUmgw08VoyMN5KxzqPO3KMx+cwdPv28tAN06C0K7Q/dQf+oufb1XocuhZb5selTrTmmuXeizaYxgLIQGdS1fA== dependencies: "@lumino/algorithm" "^1.9.2" "@lumino/properties" "^1.8.2" -"@lumino/signaling@^2.0.0-alpha.6", "@lumino/signaling@^2.0.0-alpha.7": - version "2.0.0-alpha.7" - resolved "https://registry.yarnpkg.com/@lumino/signaling/-/signaling-2.0.0-alpha.7.tgz#6061184bbb7617a85011dc206cd4f331e1da1371" - integrity sha512-Owzct2tv5SBOowbNfHwcx0vueyX9tk4bsYpFJyNXGd4V66HodXoNLXM2A1HQHT0Qx8jPEU8jhOMt4gPQptGkrA== - dependencies: - "@lumino/algorithm" "^2.0.0-alpha.7" - "@lumino/coreutils" "^2.0.0-alpha.7" - "@lumino/properties" "^2.0.0-alpha.7" - -"@lumino/virtualdom@^2.0.0-alpha.6", "@lumino/virtualdom@^2.0.0-alpha.7": - version "2.0.0-alpha.7" - resolved "https://registry.yarnpkg.com/@lumino/virtualdom/-/virtualdom-2.0.0-alpha.7.tgz#6359e2e8b120f6b720d498c02b34323e057de483" - integrity sha512-U+O2Gor8uauZ6iR4Thy7puUPE3BxJiHNf1vAsxqj3xbXeCjYXKf8LPwSDqSeYdLkl0h7nS84Rg7q058OE1x0gw== - dependencies: - "@lumino/algorithm" "^2.0.0-alpha.7" - -"@lumino/widgets@^2.0.0-alpha.6", "@lumino/widgets@^2.0.0-alpha.7": - version "2.0.0-alpha.7" - resolved "https://registry.yarnpkg.com/@lumino/widgets/-/widgets-2.0.0-alpha.7.tgz#f3fb94442466698a8f1880c65cdaebd8c9d10c31" - integrity sha512-9k1xK2yIW+iLf1u0k+0aIPBqsB9m4DD52aQOaPkt5IETDFmaguVM57opo1yp62cnoWGEPS3Ra2QxnHj8MbU13w== - dependencies: - "@lumino/algorithm" "^2.0.0-alpha.7" - "@lumino/commands" "^2.0.0-alpha.7" - "@lumino/coreutils" "^2.0.0-alpha.7" - "@lumino/disposable" "^2.0.0-alpha.7" - "@lumino/domutils" "^2.0.0-alpha.7" - "@lumino/dragdrop" "^2.0.0-alpha.7" - "@lumino/keyboard" "^2.0.0-alpha.7" - "@lumino/messaging" "^2.0.0-alpha.7" - "@lumino/properties" "^2.0.0-alpha.7" - "@lumino/signaling" "^2.0.0-alpha.7" - "@lumino/virtualdom" "^2.0.0-alpha.7" +"@lumino/signaling@^2.0.0-alpha.6", "@lumino/signaling@^2.0.0-beta.1": + version "2.0.0-beta.1" + resolved "https://registry.yarnpkg.com/@lumino/signaling/-/signaling-2.0.0-beta.1.tgz#ad0a02aba49718084b5e5c630c1e40a1b75eacd3" + integrity sha512-hmQDMCSA7pGuOB0sb9I7e73Pome2dyWc1z9W6I/4n7+qzcqVlFrx07hN01SosSldZ5I769ZIscAIuKaUrey86g== + dependencies: + "@lumino/algorithm" "^2.0.0-beta.0" + "@lumino/coreutils" "^2.0.0-beta.0" + +"@lumino/virtualdom@^2.0.0-alpha.6", "@lumino/virtualdom@^2.0.0-beta.0": + version "2.0.0-beta.0" + resolved "https://registry.yarnpkg.com/@lumino/virtualdom/-/virtualdom-2.0.0-beta.0.tgz#134bd2023b95591de687aed883f892ba1edbc451" + integrity sha512-oVrV//M0xpGZ9yeA2oQ6kWTRaNbS8JAzzY7yw5sqOkZxLJ/MFpebnq31L6CHXPmTnW4xkZK7hsFKbZjfgMnCyQ== + dependencies: + "@lumino/algorithm" "^2.0.0-beta.0" + +"@lumino/widgets@^2.0.0-alpha.6", "@lumino/widgets@^2.0.0-beta.1": + version "2.0.0-beta.1" + resolved "https://registry.yarnpkg.com/@lumino/widgets/-/widgets-2.0.0-beta.1.tgz#d4cf14b216dccc3e9d2a5b30ce5d4069c64730bd" + integrity sha512-YjSA0yUA+8CfzkpX4PXlp0PfEEbKBHBqtwe+GvkWmY8k3Sqbjtkpmf2L+N1QA2Z5EW6d6vct4mqV3NlHd9qrLg== + dependencies: + "@lumino/algorithm" "^2.0.0-beta.0" + "@lumino/commands" "^2.0.0-beta.1" + "@lumino/coreutils" "^2.0.0-beta.0" + "@lumino/disposable" "^2.0.0-beta.1" + "@lumino/domutils" "^2.0.0-beta.0" + "@lumino/dragdrop" "^2.0.0-beta.1" + "@lumino/keyboard" "^2.0.0-beta.0" + "@lumino/messaging" "^2.0.0-beta.0" + "@lumino/properties" "^2.0.0-beta.0" + "@lumino/signaling" "^2.0.0-beta.1" + "@lumino/virtualdom" "^2.0.0-beta.0" "@nodelib/fs.scandir@2.1.5": version "2.1.5" @@ -4273,17 +4226,17 @@ read-package-json-fast "^2.0.3" which "^2.0.2" -"@nrwl/cli@15.4.4": - version "15.4.4" - resolved "https://registry.yarnpkg.com/@nrwl/cli/-/cli-15.4.4.tgz#1a0bf08adee8a748ad25c62f84fccdf25b378dde" - integrity sha512-29f1No6eJAZczwVsJTjujyE40Lav6iwkfwTxnoiTUWaHHw9S95a8dMXelUB/BT2Tyf7OOFpwWZMXtDcRktrgGA== +"@nrwl/cli@15.6.3": + version "15.6.3" + resolved "https://registry.yarnpkg.com/@nrwl/cli/-/cli-15.6.3.tgz#999531d6efb30afc39373bdcbd7e78254a3a3fd3" + integrity sha512-K4E0spofThZXMnhA6R8hkUTdfqmwSnUE2+DlD5Y3jqsvKTAgwF5U41IFkEouFZCf+dWjy0RA20bWoX48EVFtmQ== dependencies: - nx "15.4.4" + nx "15.6.3" -"@nrwl/devkit@>=14.8.6 < 16": - version "15.4.4" - resolved "https://registry.yarnpkg.com/@nrwl/devkit/-/devkit-15.4.4.tgz#6c062bc5834df839a79a7f5cb2a384a9a16b6a23" - integrity sha512-/kDPYyiwRfvtJReE7DrzK/hMtbuhUpO4HQm+TeJvMuxMwCeqSJQP930GUipRqGUfH5aVkbSBkEaa50F7dLE+kg== +"@nrwl/devkit@>=15.4.2 < 16": + version "15.6.3" + resolved "https://registry.yarnpkg.com/@nrwl/devkit/-/devkit-15.6.3.tgz#e4e96c53ba3304786a49034286c8511534b2b194" + integrity sha512-/JDvdzNxUM+C1PCZPCrvmFx+OfywqZdOq1GS9QR8C0VctTLG4D/SGSFD88O1SAdcbH/f1mMiBGfEYZYd23fghQ== dependencies: "@phenomnomnominal/tsquery" "4.1.1" ejs "^3.1.7" @@ -4291,118 +4244,118 @@ semver "7.3.4" tslib "^2.3.0" -"@nrwl/tao@15.4.4": - version "15.4.4" - resolved "https://registry.yarnpkg.com/@nrwl/tao/-/tao-15.4.4.tgz#d618f03d8697da0626717a29084210c11e7b64ee" - integrity sha512-ekPYVpz1y3XlCPu6UkQfcpwyNHQ0SsXMN8omB4MPTSknvEhKmcVOPG3Kr4W9fk1UjmBr58ItAGmtx2sjVMH7XQ== +"@nrwl/tao@15.6.3": + version "15.6.3" + resolved "https://registry.yarnpkg.com/@nrwl/tao/-/tao-15.6.3.tgz#b24e11345375dea96bc386c60b9b1102a7584932" + integrity sha512-bDZbPIbU5Mf2BvX0q8GjPxrm1WkYyfW+gp7mLuuJth2sEpZiCr47mSwuGko/y4CKXvIX46VQcAS0pKQMKugXsg== dependencies: - nx "15.4.4" + nx "15.6.3" "@octokit/auth-token@^3.0.0": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@octokit/auth-token/-/auth-token-3.0.2.tgz#a0fc8de149fd15876e1ac78f6525c1c5ab48435f" - integrity sha512-pq7CwIMV1kmzkFTimdwjAINCXKTajZErLB4wMLYapR2nuB/Jpr66+05wOTZMSCBXP6n4DdDWT2W19Bm17vU69Q== + version "3.0.3" + resolved "https://registry.yarnpkg.com/@octokit/auth-token/-/auth-token-3.0.3.tgz#ce7e48a3166731f26068d7a7a7996b5da58cbe0c" + integrity sha512-/aFM2M4HVDBT/jjDBa84sJniv1t9Gm/rLkalaz9htOm+L+8JMj1k9w0CkUdcxNyNxZPlTxKPVko+m1VlM58ZVA== dependencies: - "@octokit/types" "^8.0.0" + "@octokit/types" "^9.0.0" "@octokit/core@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@octokit/core/-/core-4.1.0.tgz#b6b03a478f1716de92b3f4ec4fd64d05ba5a9251" - integrity sha512-Czz/59VefU+kKDy+ZfDwtOIYIkFjExOKf+HA92aiTZJ6EfWpFzYQWw0l54ji8bVmyhc+mGaLUbSUmXazG7z5OQ== + version "4.2.0" + resolved "https://registry.yarnpkg.com/@octokit/core/-/core-4.2.0.tgz#8c253ba9605aca605bc46187c34fcccae6a96648" + integrity sha512-AgvDRUg3COpR82P7PBdGZF/NNqGmtMq2NiPqeSsDIeCfYFOZ9gddqWNQHnFdEUf+YwOj4aZYmJnlPp7OXmDIDg== dependencies: "@octokit/auth-token" "^3.0.0" "@octokit/graphql" "^5.0.0" "@octokit/request" "^6.0.0" "@octokit/request-error" "^3.0.0" - "@octokit/types" "^8.0.0" + "@octokit/types" "^9.0.0" before-after-hook "^2.2.0" universal-user-agent "^6.0.0" "@octokit/endpoint@^7.0.0": - version "7.0.3" - resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-7.0.3.tgz#0b96035673a9e3bedf8bab8f7335de424a2147ed" - integrity sha512-57gRlb28bwTsdNXq+O3JTQ7ERmBTuik9+LelgcLIVfYwf235VHbN9QNo4kXExtp/h8T423cR5iJThKtFYxC7Lw== + version "7.0.5" + resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-7.0.5.tgz#2bb2a911c12c50f10014183f5d596ce30ac67dd1" + integrity sha512-LG4o4HMY1Xoaec87IqQ41TQ+glvIeTKqfjkCEmt5AIwDZJwQeVZFIEYXrYY6yLwK+pAScb9Gj4q+Nz2qSw1roA== dependencies: - "@octokit/types" "^8.0.0" + "@octokit/types" "^9.0.0" is-plain-object "^5.0.0" universal-user-agent "^6.0.0" "@octokit/graphql@^5.0.0": - version "5.0.3" - resolved "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-5.0.3.tgz#1ff6577d356632c594f0f0db7bb5903e4e3ddb8d" - integrity sha512-VjhqOu2CHo2hwank1y2k8YcqF83zJW6upyP1+0l3wegvpq+4H31zOA5Rkyx76uJBUdJooUR5UnFyclBptzl86Q== + version "5.0.5" + resolved "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-5.0.5.tgz#a4cb3ea73f83b861893a6370ee82abb36e81afd2" + integrity sha512-Qwfvh3xdqKtIznjX9lz2D458r7dJPP8l6r4GQkIdWQouZwHQK0mVT88uwiU2bdTU2OtT1uOlKpRciUWldpG0yQ== dependencies: "@octokit/request" "^6.0.0" - "@octokit/types" "^8.0.0" + "@octokit/types" "^9.0.0" universal-user-agent "^6.0.0" -"@octokit/openapi-types@^14.0.0": - version "14.0.0" - resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-14.0.0.tgz#949c5019028c93f189abbc2fb42f333290f7134a" - integrity sha512-HNWisMYlR8VCnNurDU6os2ikx0s0VyEjDYHNS/h4cgb8DeOxQ0n72HyinUtdDVxJhFy3FWLGl0DJhfEWk3P5Iw== +"@octokit/openapi-types@^16.0.0": + version "16.0.0" + resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-16.0.0.tgz#d92838a6cd9fb4639ca875ddb3437f1045cc625e" + integrity sha512-JbFWOqTJVLHZSUUoF4FzAZKYtqdxWu9Z5m2QQnOyEa04fOFljvyh7D3GYKbfuaSWisqehImiVIMG4eyJeP5VEA== "@octokit/plugin-enterprise-rest@^6.0.1": version "6.0.1" resolved "https://registry.yarnpkg.com/@octokit/plugin-enterprise-rest/-/plugin-enterprise-rest-6.0.1.tgz#e07896739618dab8da7d4077c658003775f95437" integrity sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw== -"@octokit/plugin-paginate-rest@^5.0.0": - version "5.0.1" - resolved "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-5.0.1.tgz#93d7e74f1f69d68ba554fa6b888c2a9cf1f99a83" - integrity sha512-7A+rEkS70pH36Z6JivSlR7Zqepz3KVucEFVDnSrgHXzG7WLAzYwcHZbKdfTXHwuTHbkT1vKvz7dHl1+HNf6Qyw== +"@octokit/plugin-paginate-rest@^6.0.0": + version "6.0.0" + resolved "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-6.0.0.tgz#f34b5a7d9416019126042cd7d7b811e006c0d561" + integrity sha512-Sq5VU1PfT6/JyuXPyt04KZNVsFOSBaYOAq2QRZUwzVlI10KFvcbUo8lR258AAQL1Et60b0WuVik+zOWKLuDZxw== dependencies: - "@octokit/types" "^8.0.0" + "@octokit/types" "^9.0.0" "@octokit/plugin-request-log@^1.0.4": version "1.0.4" resolved "https://registry.yarnpkg.com/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz#5e50ed7083a613816b1e4a28aeec5fb7f1462e85" integrity sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA== -"@octokit/plugin-rest-endpoint-methods@^6.7.0": - version "6.7.0" - resolved "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-6.7.0.tgz#2f6f17f25b6babbc8b41d2bb0a95a8839672ce7c" - integrity sha512-orxQ0fAHA7IpYhG2flD2AygztPlGYNAdlzYz8yrD8NDgelPfOYoRPROfEyIe035PlxvbYrgkfUZIhSBKju/Cvw== +"@octokit/plugin-rest-endpoint-methods@^7.0.0": + version "7.0.1" + resolved "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-7.0.1.tgz#f7ebe18144fd89460f98f35a587b056646e84502" + integrity sha512-pnCaLwZBudK5xCdrR823xHGNgqOzRnJ/mpC/76YPpNP7DybdsJtP7mdOwh+wYZxK5jqeQuhu59ogMI4NRlBUvA== dependencies: - "@octokit/types" "^8.0.0" + "@octokit/types" "^9.0.0" deprecation "^2.3.1" "@octokit/request-error@^3.0.0": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-3.0.2.tgz#f74c0f163d19463b87528efe877216c41d6deb0a" - integrity sha512-WMNOFYrSaX8zXWoJg9u/pKgWPo94JXilMLb2VManNOby9EZxrQaBe/QSC4a1TzpAlpxofg2X/jMnCyZgL6y7eg== + version "3.0.3" + resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-3.0.3.tgz#ef3dd08b8e964e53e55d471acfe00baa892b9c69" + integrity sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ== dependencies: - "@octokit/types" "^8.0.0" + "@octokit/types" "^9.0.0" deprecation "^2.0.0" once "^1.4.0" "@octokit/request@^6.0.0": - version "6.2.2" - resolved "https://registry.yarnpkg.com/@octokit/request/-/request-6.2.2.tgz#a2ba5ac22bddd5dcb3f539b618faa05115c5a255" - integrity sha512-6VDqgj0HMc2FUX2awIs+sM6OwLgwHvAi4KCK3mT2H2IKRt6oH9d0fej5LluF5mck1lRR/rFWN0YIDSYXYSylbw== + version "6.2.3" + resolved "https://registry.yarnpkg.com/@octokit/request/-/request-6.2.3.tgz#76d5d6d44da5c8d406620a4c285d280ae310bdb4" + integrity sha512-TNAodj5yNzrrZ/VxP+H5HiYaZep0H3GU0O7PaF+fhDrt8FPrnkei9Aal/txsN/1P7V3CPiThG0tIvpPDYUsyAA== dependencies: "@octokit/endpoint" "^7.0.0" "@octokit/request-error" "^3.0.0" - "@octokit/types" "^8.0.0" + "@octokit/types" "^9.0.0" is-plain-object "^5.0.0" node-fetch "^2.6.7" universal-user-agent "^6.0.0" "@octokit/rest@^19.0.3": - version "19.0.5" - resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-19.0.5.tgz#4dbde8ae69b27dca04b5f1d8119d282575818f6c" - integrity sha512-+4qdrUFq2lk7Va+Qff3ofREQWGBeoTKNqlJO+FGjFP35ZahP+nBenhZiGdu8USSgmq4Ky3IJ/i4u0xbLqHaeow== + version "19.0.7" + resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-19.0.7.tgz#d2e21b4995ab96ae5bfae50b4969da7e04e0bb70" + integrity sha512-HRtSfjrWmWVNp2uAkEpQnuGMJsu/+dBr47dRc5QVgsCbnIc1+GFEaoKBWkYG+zjrsHpSqcAElMio+n10c0b5JA== dependencies: "@octokit/core" "^4.1.0" - "@octokit/plugin-paginate-rest" "^5.0.0" + "@octokit/plugin-paginate-rest" "^6.0.0" "@octokit/plugin-request-log" "^1.0.4" - "@octokit/plugin-rest-endpoint-methods" "^6.7.0" + "@octokit/plugin-rest-endpoint-methods" "^7.0.0" -"@octokit/types@^8.0.0": - version "8.0.0" - resolved "https://registry.yarnpkg.com/@octokit/types/-/types-8.0.0.tgz#93f0b865786c4153f0f6924da067fe0bb7426a9f" - integrity sha512-65/TPpOJP1i3K4lBJMnWqPUJ6zuOtzhtagDvydAWbEXpbFYA0oMKKyLb95NFZZP0lSh/4b6K+DQlzvYQJQQePg== +"@octokit/types@^9.0.0": + version "9.0.0" + resolved "https://registry.yarnpkg.com/@octokit/types/-/types-9.0.0.tgz#6050db04ddf4188ec92d60e4da1a2ce0633ff635" + integrity sha512-LUewfj94xCMH2rbD5YJ+6AQ4AVjFYTgpp6rboWM5T7N3IsIF65SBEOVcYMGAEzO/kKNiNaW4LoWtoThOhH06gw== dependencies: - "@octokit/openapi-types" "^14.0.0" + "@octokit/openapi-types" "^16.0.0" "@parcel/watcher@2.0.4": version "2.0.4" @@ -4440,29 +4393,29 @@ prop-types "^15.7.2" react-is "16.9.0" -"@sinclair/typebox@^0.24.1": - version "0.24.51" - resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.24.51.tgz#645f33fe4e02defe26f2f5c0410e1c094eac7f5f" - integrity sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA== +"@sinclair/typebox@^0.25.16": + version "0.25.21" + resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.25.21.tgz#763b05a4b472c93a8db29b2c3e359d55b29ce272" + integrity sha512-gFukHN4t8K4+wVC+ECqeqwzBDeFeTzBXroBTqE6vcWrQGbEUpHO7LYdG0f4xnvYq4VOEwITSlHlp0JBAIFMS/g== "@sindresorhus/is@^4.0.0": version "4.6.0" resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.6.0.tgz#3c7c9c46e678feefe7a2e5bb609d3dbd665ffb3f" integrity sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw== -"@sinonjs/commons@^1.7.0": - version "1.8.6" - resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.6.tgz#80c516a4dc264c2a69115e7578d62581ff455ed9" - integrity sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ== +"@sinonjs/commons@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-2.0.0.tgz#fd4ca5b063554307e8327b4564bd56d3b73924a3" + integrity sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg== dependencies: type-detect "4.0.8" -"@sinonjs/fake-timers@^9.1.2": - version "9.1.2" - resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-9.1.2.tgz#4eaab737fab77332ab132d396a3c0d364bd0ea8c" - integrity sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw== +"@sinonjs/fake-timers@^10.0.2": + version "10.0.2" + resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-10.0.2.tgz#d10549ed1f423d80639c528b6c7f5a1017747d0c" + integrity sha512-SwUDyjWnah1AaNl7kxsa7cfLhlTYoiyhDAIgyh+El30YvXs/o7OLXpYH88Zdhyx9JExKrmHDJ+10bwIcY80Jmw== dependencies: - "@sinonjs/commons" "^1.7.0" + "@sinonjs/commons" "^2.0.0" "@szmarczak/http-timer@^4.0.5": version "4.0.6" @@ -4477,12 +4430,12 @@ integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A== "@types/babel__core@^7.1.14": - version "7.1.20" - resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.20.tgz#e168cdd612c92a2d335029ed62ac94c95b362359" - integrity sha512-PVb6Bg2QuscZ30FvOU7z4guG6c926D9YRvOxEaelzndpMsvP+YM74Q/dAFASpg2l6+XLalxSGxcq/lrgYWZtyQ== + version "7.20.0" + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.0.tgz#61bc5a4cae505ce98e1e36c5445e4bee060d8891" + integrity sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ== dependencies: - "@babel/parser" "^7.1.0" - "@babel/types" "^7.0.0" + "@babel/parser" "^7.20.7" + "@babel/types" "^7.20.7" "@types/babel__generator" "*" "@types/babel__template" "*" "@types/babel__traverse" "*" @@ -4538,9 +4491,9 @@ "@types/estree" "*" "@types/eslint@*": - version "8.4.10" - resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.4.10.tgz#19731b9685c19ed1552da7052b6f668ed7eb64bb" - integrity sha512-Sl/HOqN8NKPmhWo2VBEPm0nvHnu2LL3v9vKo8MEq0EtbJ4eVzGPl41VNPvn5E1i5poMk4/XD8UriLHpJvEP/Nw== + version "8.21.0" + resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.21.0.tgz#21724cfe12b96696feafab05829695d4d7bd7c48" + integrity sha512-35EhHNOXgxnUgh4XCJsGhE7zdlDhYDN/aMG6UbkByCFFNgQ7b3U+uVoqBpicFydR8JEfgdjCF7SJ7MiJfzuiTA== dependencies: "@types/estree" "*" "@types/json-schema" "*" @@ -4568,11 +4521,11 @@ "@types/node" "*" "@types/glob@*": - version "8.0.0" - resolved "https://registry.yarnpkg.com/@types/glob/-/glob-8.0.0.tgz#321607e9cbaec54f687a0792b2d1d370739455d2" - integrity sha512-l6NQsDDyQUVeoTynNpC9uRvCUint/gSUXQA2euwmTuWGvPY5LSDUu6tkCtJB2SvGQlJQzLaKqcGZP4//7EDveA== + version "8.0.1" + resolved "https://registry.yarnpkg.com/@types/glob/-/glob-8.0.1.tgz#6e3041640148b7764adf21ce5c7138ad454725b0" + integrity sha512-8bVUjXZvJacUFkJXHdyZ9iH1Eaj5V7I8c4NdH5sQJsdXkqT4CA5Dhb4yb4VE/3asyx4L9ayZr1NIhTsWHczmMw== dependencies: - "@types/minimatch" "*" + "@types/minimatch" "^5.1.2" "@types/node" "*" "@types/glob@^7.1.1": @@ -4584,9 +4537,9 @@ "@types/node" "*" "@types/graceful-fs@^4.1.3": - version "4.1.5" - resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15" - integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw== + version "4.1.6" + resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.6.tgz#e14b2576a1c25026b7f02ede1de3b84c3a1efeae" + integrity sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw== dependencies: "@types/node" "*" @@ -4615,9 +4568,9 @@ "@types/istanbul-lib-report" "*" "@types/jest@^29.2.5": - version "29.2.5" - resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.2.5.tgz#c27f41a9d6253f288d1910d3c5f09484a56b73c0" - integrity sha512-H2cSxkKgVmqNHXP7TC2L/WUorrZu8ZigyRywfVzv6EyBlxj39n4C00hjXYQWsbwqgElaj/CiAeSRmk5GoaKTgw== + version "29.4.0" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.4.0.tgz#a8444ad1704493e84dbf07bb05990b275b3b9206" + integrity sha512-VaywcGQ9tPorCX/Jkkni7RWGFfI11whqzs8dvxF41P17Z+z872thvEvlIbznjPJ02kl1HMX3LmLOonsj2n7HeQ== dependencies: expect "^29.0.0" pretty-format "^29.0.0" @@ -4643,12 +4596,12 @@ dependencies: "@types/node" "*" -"@types/lodash@^4.14.178": +"@types/lodash@^4.14.175", "@types/lodash@^4.14.178": version "4.14.191" resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.191.tgz#09511e7f7cba275acd8b419ddac8da9a6a79e2fa" integrity sha512-BdZ5BCCvho3EIXw6wUCXHe7rS53AIDPLE+JzwgT+OsJk53oBfbSmZZ7CX4VaRoN78N+TJpFi9QPlfIVNmJYWxQ== -"@types/minimatch@*": +"@types/minimatch@*", "@types/minimatch@^5.1.2": version "5.1.2" resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-5.1.2.tgz#07508b45797cb81ec3f273011b054cd0755eddca" integrity sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA== @@ -4664,14 +4617,14 @@ integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ== "@types/node@*": - version "18.8.5" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.8.5.tgz#6a31f820c1077c3f8ce44f9e203e68a176e8f59e" - integrity sha512-Bq7G3AErwe5A/Zki5fdD3O6+0zDChhg671NfPjtIcbtzDNZTv4NPKMRFr7gtYPG7y+B8uTiNK4Ngd9T0FTar6Q== + version "18.11.19" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.19.tgz#35e26df9ec441ab99d73e99e9aca82935eea216d" + integrity sha512-YUgMWAQBWLObABqrvx8qKO1enAvBUdjZOAWQ5grBAkp5LQv45jBvYKZ3oFS9iKRCQyFjqw6iuEa1vmFqtxYLZw== "@types/node@^14.6.1": - version "14.18.32" - resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.32.tgz#8074f7106731f1a12ba993fe8bad86ee73905014" - integrity sha512-Y6S38pFr04yb13qqHf8uk1nHE3lXgQ30WZbv1mLliV9pt0NjvqdWttLcrOYLnXbOafknVYRHZGoMSpR9UwfYow== + version "14.18.36" + resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.36.tgz#c414052cb9d43fab67d679d5f3c641be911f5835" + integrity sha512-FXKWbsJ6a1hIrRxv+FoukuHnGTgEzKYGi7kilfMae96AL9UNkPFNWJEEYWzdRI9ooIkbr4AKldyuSTLql06vLQ== "@types/normalize-package-data@^2.4.0": version "2.4.1" @@ -4693,10 +4646,10 @@ resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== -"@types/react@^17.0.0": - version "17.0.52" - resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.52.tgz#10d8b907b5c563ac014a541f289ae8eaa9bf2e9b" - integrity sha512-vwk8QqVODi0VaZZpDXQCmEmiOuyjEFPY7Ttaw5vjM112LOq37yz1CDJGrRJwA1fYEq4Iitd5rnjd1yWAc/bT+A== +"@types/react@^18.0.27": + version "18.0.27" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.27.tgz#d9425abe187a00f8a5ec182b010d4fd9da703b71" + integrity sha512-3vtRKHgVxu3Jp9t718R9BuzoD4NcQ8YJ5XRzsSKxNDiDonD2MXIT1TmSkenxuCycZJoQT5d2vE8LwWJxBC1gmA== dependencies: "@types/prop-types" "*" "@types/scheduler" "*" @@ -4757,9 +4710,9 @@ integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA== "@types/yargs@^17.0.8": - version "17.0.19" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.19.tgz#8dbecdc9ab48bee0cb74f6e3327de3fa0d0c98ae" - integrity sha512-cAx3qamwaYX9R0fzOIZAlFpo4A+1uBVCxqpKz9D26uTF4srRXaGTTsikQmaotCtNdbhzyUH7ft6p9ktz9s6UNQ== + version "17.0.22" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.22.tgz#7dd37697691b5f17d020f3c63e7a45971ff71e9a" + integrity sha512-pet5WJ9U8yPVRhkwuEIp5ktAeAqRZOq4UdAyWLWzxbtpyXnzbtLdKiXAjJzi/KLmPGS9wk86lUFWZFN6sISo4g== dependencies: "@types/yargs-parser" "*" @@ -4807,23 +4760,23 @@ "@typescript-eslint/types" "4.33.0" "@typescript-eslint/visitor-keys" "4.33.0" -"@typescript-eslint/scope-manager@5.48.0": - version "5.48.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.48.0.tgz#607731cb0957fbc52fd754fd79507d1b6659cecf" - integrity sha512-0AA4LviDtVtZqlyUQnZMVHydDATpD9SAX/RC5qh6cBd3xmyWvmXYF+WT1oOmxkeMnWDlUVTwdODeucUnjz3gow== +"@typescript-eslint/scope-manager@5.50.0": + version "5.50.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.50.0.tgz#90b8a3b337ad2c52bbfe4eac38f9164614e40584" + integrity sha512-rt03kaX+iZrhssaT974BCmoUikYtZI24Vp/kwTSy841XhiYShlqoshRFDvN1FKKvU2S3gK+kcBW1EA7kNUrogg== dependencies: - "@typescript-eslint/types" "5.48.0" - "@typescript-eslint/visitor-keys" "5.48.0" + "@typescript-eslint/types" "5.50.0" + "@typescript-eslint/visitor-keys" "5.50.0" "@typescript-eslint/types@4.33.0": version "4.33.0" resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.33.0.tgz#a1e59036a3b53ae8430ceebf2a919dc7f9af6d72" integrity sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ== -"@typescript-eslint/types@5.48.0": - version "5.48.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.48.0.tgz#d725da8dfcff320aab2ac6f65c97b0df30058449" - integrity sha512-UTe67B0Ypius0fnEE518NB2N8gGutIlTojeTg4nt0GQvikReVkurqxd2LvYa9q9M5MQ6rtpNyWTBxdscw40Xhw== +"@typescript-eslint/types@5.50.0": + version "5.50.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.50.0.tgz#c461d3671a6bec6c2f41f38ed60bd87aa8a30093" + integrity sha512-atruOuJpir4OtyNdKahiHZobPKFvZnBnfDiyEaBf6d9vy9visE7gDjlmhl+y29uxZ2ZDgvXijcungGFjGGex7w== "@typescript-eslint/typescript-estree@4.33.0": version "4.33.0" @@ -4838,13 +4791,13 @@ semver "^7.3.5" tsutils "^3.21.0" -"@typescript-eslint/typescript-estree@5.48.0": - version "5.48.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.48.0.tgz#a7f04bccb001003405bb5452d43953a382c2fac2" - integrity sha512-7pjd94vvIjI1zTz6aq/5wwE/YrfIyEPLtGJmRfyNR9NYIW+rOvzzUv3Cmq2hRKpvt6e9vpvPUQ7puzX7VSmsEw== +"@typescript-eslint/typescript-estree@5.50.0": + version "5.50.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.50.0.tgz#0b9b82975bdfa40db9a81fdabc7f93396867ea97" + integrity sha512-Gq4zapso+OtIZlv8YNAStFtT6d05zyVCK7Fx3h5inlLBx2hWuc/0465C2mg/EQDDU2LKe52+/jN4f0g9bd+kow== dependencies: - "@typescript-eslint/types" "5.48.0" - "@typescript-eslint/visitor-keys" "5.48.0" + "@typescript-eslint/types" "5.50.0" + "@typescript-eslint/visitor-keys" "5.50.0" debug "^4.3.4" globby "^11.1.0" is-glob "^4.0.3" @@ -4852,15 +4805,15 @@ tsutils "^3.21.0" "@typescript-eslint/utils@^5.10.0": - version "5.48.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.48.0.tgz#eee926af2733f7156ad8d15e51791e42ce300273" - integrity sha512-x2jrMcPaMfsHRRIkL+x96++xdzvrdBCnYRd5QiW5Wgo1OB4kDYPbC1XjWP/TNqlfK93K/lUL92erq5zPLgFScQ== + version "5.50.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.50.0.tgz#807105f5ffb860644d30d201eefad7017b020816" + integrity sha512-v/AnUFImmh8G4PH0NDkf6wA8hujNNcrwtecqW4vtQ1UOSNBaZl49zP1SHoZ/06e+UiwzHpgb5zP5+hwlYYWYAw== dependencies: "@types/json-schema" "^7.0.9" "@types/semver" "^7.3.12" - "@typescript-eslint/scope-manager" "5.48.0" - "@typescript-eslint/types" "5.48.0" - "@typescript-eslint/typescript-estree" "5.48.0" + "@typescript-eslint/scope-manager" "5.50.0" + "@typescript-eslint/types" "5.50.0" + "@typescript-eslint/typescript-estree" "5.50.0" eslint-scope "^5.1.1" eslint-utils "^3.0.0" semver "^7.3.7" @@ -4873,12 +4826,12 @@ "@typescript-eslint/types" "4.33.0" eslint-visitor-keys "^2.0.0" -"@typescript-eslint/visitor-keys@5.48.0": - version "5.48.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.48.0.tgz#4446d5e7f6cadde7140390c0e284c8702d944904" - integrity sha512-5motVPz5EgxQ0bHjut3chzBkJ3Z3sheYVcSwS5BpHZpLqSptSmELNtGixmgj65+rIfhvtQTz5i9OP2vtzdDH7Q== +"@typescript-eslint/visitor-keys@5.50.0": + version "5.50.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.50.0.tgz#b752ffc143841f3d7bc57d6dd01ac5c40f8c4903" + integrity sha512-cdMeD9HGu6EXIeGOh2yVW6oGf9wq8asBgZx7nsR/D36gTfQ0odE5kcRYe5M81vjEFAcPeugXrHg78Imu55F6gg== dependencies: - "@typescript-eslint/types" "5.48.0" + "@typescript-eslint/types" "5.50.0" eslint-visitor-keys "^3.3.0" "@verdaccio/commons-api@10.2.0": @@ -4889,6 +4842,31 @@ http-errors "2.0.0" http-status-codes "2.2.0" +"@verdaccio/config@6.0.0-6-next.55": + version "6.0.0-6-next.55" + resolved "https://registry.yarnpkg.com/@verdaccio/config/-/config-6.0.0-6-next.55.tgz#a88436376ad07563d769a68c4b10a60d25114ae4" + integrity sha512-fZnk9Z4BY5e77F2zZmezfpjdJa65acitOWHI5EUirQ0yaez+eHDLAqHYq4YZ04cBXyk0aF6k9QTXJqj8Y6Luww== + dependencies: + "@verdaccio/core" "6.0.0-6-next.55" + "@verdaccio/utils" "6.0.0-6-next.23" + debug "4.3.4" + lodash "4.17.21" + minimatch "3.1.2" + yaml "2.2.0" + yup "0.32.11" + +"@verdaccio/core@6.0.0-6-next.55": + version "6.0.0-6-next.55" + resolved "https://registry.yarnpkg.com/@verdaccio/core/-/core-6.0.0-6-next.55.tgz#1421d6be7d8933d987bcd87f0740e19b9318e5a1" + integrity sha512-7VNhZw3f92FzUmim3KgQAbG+IuPOtjk9QkeYoI3tvRFmcOVdjg4eh7e6ALu4GiCcTEOpZj6JJMK5PpbflmzMHQ== + dependencies: + ajv "8.11.2" + core-js "3.27.0" + http-errors "1.8.1" + http-status-codes "2.2.0" + process-warning "1.0.0" + semver "7.3.8" + "@verdaccio/file-locking@10.3.0": version "10.3.0" resolved "https://registry.yarnpkg.com/@verdaccio/file-locking/-/file-locking-10.3.0.tgz#a4342665c549163817c267bfa451e32ed3009767" @@ -4915,15 +4893,46 @@ resolved "https://registry.yarnpkg.com/@verdaccio/streams/-/streams-10.2.0.tgz#e01d2bfdcfe8aa2389f31bc6b72a602628bd025b" integrity sha512-FaIzCnDg0x0Js5kSQn1Le3YzDHl7XxrJ0QdIw5LrDUmLsH3VXNi4/NMlSHnw5RiTTMs4UbEf98V3RJRB8exqJA== -"@verdaccio/ui-theme@6.0.0-6-next.52": - version "6.0.0-6-next.52" - resolved "https://registry.yarnpkg.com/@verdaccio/ui-theme/-/ui-theme-6.0.0-6-next.52.tgz#afffd2c2da1c011162a665a549c6f4d115075ba4" - integrity sha512-fbN7LYp36t17vXiIH7qmEtlNtw4LC7LvGjsUkSYhESlMYx3oCrhZdG1D8H1lvDYpn/aGYYfwUWTHGMCHKqFgLA== +"@verdaccio/tarball@11.0.0-6-next.24": + version "11.0.0-6-next.24" + resolved "https://registry.yarnpkg.com/@verdaccio/tarball/-/tarball-11.0.0-6-next.24.tgz#2b94f8fce425d18a98868409504e58ceece687b1" + integrity sha512-dcXkLw/b3Elt8xzU0vWc+Yqpb+g6et8vrclgqHhRE0HdArngNMmb8KynvDlkbWpNQJNNdM/bPidCOI3nt7KEnQ== + dependencies: + "@verdaccio/core" "6.0.0-6-next.55" + "@verdaccio/url" "11.0.0-6-next.21" + "@verdaccio/utils" "6.0.0-6-next.23" + debug "4.3.4" + lodash "4.17.21" + +"@verdaccio/ui-theme@6.0.0-6-next.55": + version "6.0.0-6-next.55" + resolved "https://registry.yarnpkg.com/@verdaccio/ui-theme/-/ui-theme-6.0.0-6-next.55.tgz#faf4f4a0e2c949d7ea5ff58762ba290502a318e6" + integrity sha512-EnMYW5vmN8z8gC3WHuS0T/wS+AK+I1/SRmY5IoLUxoaGOAnZmHCeFF7eRIuhRwSQ/qTGCdtvvV6RRT8OaUjSCw== + +"@verdaccio/url@11.0.0-6-next.21": + version "11.0.0-6-next.21" + resolved "https://registry.yarnpkg.com/@verdaccio/url/-/url-11.0.0-6-next.21.tgz#b772c05a0a1559502c26b8c687e1d874ebc8005f" + integrity sha512-ojDaaDWsq/mvIZu+fxXX+VL/8pEObtAhy0dr5wp3Zo3UrBu4m8ltLqH5RUnj2vUc/5YB/krv/FffgSjWciVPQg== + dependencies: + "@verdaccio/core" "6.0.0-6-next.55" + debug "4.3.4" + lodash "4.17.21" + validator "13.7.0" + +"@verdaccio/utils@6.0.0-6-next.23": + version "6.0.0-6-next.23" + resolved "https://registry.yarnpkg.com/@verdaccio/utils/-/utils-6.0.0-6-next.23.tgz#19b8f41702be5c76420f3360c55fed155d420989" + integrity sha512-PpKgisv6cRm43JNyFaUTTclyOy8VRubjniA3CmbEQIAImZ1YQMSAQ06nsWpZEhIx4NuRXmB5CiUHg2U4/0+oCg== + dependencies: + "@verdaccio/core" "6.0.0-6-next.55" + lodash "4.17.21" + minimatch "3.1.2" + semver "7.3.8" "@vscode/debugprotocol@^1.51.0": - version "1.58.0" - resolved "https://registry.yarnpkg.com/@vscode/debugprotocol/-/debugprotocol-1.58.0.tgz#3416047d72103784daebab27b3834481e2960598" - integrity sha512-64gY3PdU7jmYDwLRJFZ5XL2BC8TK5mdhZ60XLTZn17yfbJPKCcmFDuQAkVfOPsjn7o4f6YWFy3AXSR0V9gY6jA== + version "1.59.0" + resolved "https://registry.yarnpkg.com/@vscode/debugprotocol/-/debugprotocol-1.59.0.tgz#f173ff725f60e4ff1002f089105634900c88bd77" + integrity sha512-Ks8NiZrCvybf9ebGLP8OUZQbEMIJYC8X0Ds54Q/szpT/SYEDjTksPvZlcWGTo7B9t5abjvbd0jkNH3blYaSuVw== "@webassemblyjs/ast@1.11.1": version "1.11.1" @@ -5094,9 +5103,9 @@ integrity sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ== "@yarnpkg/parsers@^3.0.0-rc.18": - version "3.0.0-rc.34" - resolved "https://registry.yarnpkg.com/@yarnpkg/parsers/-/parsers-3.0.0-rc.34.tgz#db1d16e082e167db6dbc67f1c264639e0b4c5e1a" - integrity sha512-NhEA0BusInyk7EiJ7i7qF1Mkrb6gGjZcQQ/W1xxGazxapubEmGO7v5WSll6hWxFXE2ngtLj8lflq1Ff5VtqEww== + version "3.0.0-rc.38" + resolved "https://registry.yarnpkg.com/@yarnpkg/parsers/-/parsers-3.0.0-rc.38.tgz#91b393554017016e12d2f4ea33f589dcfe7d5670" + integrity sha512-YqkUSOZSBjbhzvU/ZbK6yoE70L/KVXAQTyUMaKAFoHEpy7csAljivTBu0C3SZKbDxMRjFWAvnLS8US7W3hFLow== dependencies: js-yaml "^3.10.0" tslib "^2.4.0" @@ -5116,7 +5125,7 @@ JSONStream@1.3.5, JSONStream@^1.0.4: jsonparse "^1.2.0" through ">=2.2.7 <3" -abab@^2.0.6: +abab@^2.0.3, abab@^2.0.6: version "2.0.6" resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291" integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA== @@ -5184,15 +5193,10 @@ acorn@^7.4.0: resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== -acorn@^8.0.4, acorn@^8.5.0, acorn@^8.7.1: - version "8.8.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.0.tgz#88c0187620435c7f6015803f5539dae05a9dbea8" - integrity sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w== - -acorn@^8.1.0, acorn@^8.8.1: - version "8.8.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.1.tgz#0a3f9cbecc4ec3bea6f0a80b66ae8dd2da250b73" - integrity sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA== +acorn@^8.0.4, acorn@^8.1.0, acorn@^8.5.0, acorn@^8.7.1, acorn@^8.8.1: + version "8.8.2" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a" + integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw== add-stream@^1.0.0: version "1.0.0" @@ -5247,6 +5251,16 @@ ajv-keywords@^5.0.0: dependencies: fast-deep-equal "^3.1.3" +ajv@8.11.2: + version "8.11.2" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.11.2.tgz#aecb20b50607acf2569b6382167b65a96008bb78" + integrity sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg== + dependencies: + fast-deep-equal "^3.1.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + uri-js "^4.2.2" + ajv@^6.1.0, ajv@^6.10.0, ajv@^6.12.3, ajv@^6.12.4, ajv@^6.12.5, ajv@^6.7.0: version "6.12.6" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" @@ -5303,7 +5317,7 @@ ansi-styles@^5.0.0: resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== -anymatch@^3.0.3, anymatch@~3.1.2: +anymatch@^3.0.3: version "3.1.3" resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== @@ -5461,28 +5475,28 @@ aws-sign2@~0.7.0: integrity sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA== aws4@^1.8.0: - version "1.11.0" - resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.11.0.tgz#d61f46d83b2519250e2784daf5b09479a8b41c59" - integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA== + version "1.12.0" + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.12.0.tgz#ce1c9d143389679e253b314241ea9aa5cec980d3" + integrity sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg== axios@^1.0.0: - version "1.2.2" - resolved "https://registry.yarnpkg.com/axios/-/axios-1.2.2.tgz#72681724c6e6a43a9fea860fc558127dbe32f9f1" - integrity sha512-bz/J4gS2S3I7mpN/YZfGFTqhXTYzRho8Ay38w2otuuDR322KzFIWm/4W2K6gIwvWaws5n+mnb7D1lN9uD+QH6Q== + version "1.3.2" + resolved "https://registry.yarnpkg.com/axios/-/axios-1.3.2.tgz#7ac517f0fa3ec46e0e636223fd973713a09c72b3" + integrity sha512-1M3O703bYqYuPhbHeya5bnhpYVsDDRyQSabNja04mZtboLNSuZ4YrltestrLXfHgmzua4TpUqRiVKbiQuo2epw== dependencies: follow-redirects "^1.15.0" form-data "^4.0.0" proxy-from-env "^1.1.0" -babel-jest@^29.3.1: - version "29.3.1" - resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-29.3.1.tgz#05c83e0d128cd48c453eea851482a38782249f44" - integrity sha512-aard+xnMoxgjwV70t0L6wkW/3HQQtV+O0PEimxKgzNqCJnbYmroPojdP2tqKSOAt8QAKV/uSZU8851M7B5+fcA== +babel-jest@^29.4.1: + version "29.4.1" + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-29.4.1.tgz#01fa167e27470b35c2d4a1b841d9586b1764da19" + integrity sha512-xBZa/pLSsF/1sNpkgsiT3CmY7zV1kAsZ9OxxtrFqYucnOuRftXAfcJqcDVyOPeN4lttWTwhLdu0T9f8uvoPEUg== dependencies: - "@jest/transform" "^29.3.1" + "@jest/transform" "^29.4.1" "@types/babel__core" "^7.1.14" babel-plugin-istanbul "^6.1.1" - babel-preset-jest "^29.2.0" + babel-preset-jest "^29.4.0" chalk "^4.0.0" graceful-fs "^4.2.9" slash "^3.0.0" @@ -5497,13 +5511,6 @@ babel-loader@^8.0.6: make-dir "^3.1.0" schema-utils "^2.6.5" -babel-plugin-dynamic-import-node@^2.3.3: - version "2.3.3" - resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3" - integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== - dependencies: - object.assign "^4.1.0" - babel-plugin-istanbul@^6.1.1: version "6.1.1" resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" @@ -5515,10 +5522,10 @@ babel-plugin-istanbul@^6.1.1: istanbul-lib-instrument "^5.0.4" test-exclude "^6.0.0" -babel-plugin-jest-hoist@^29.2.0: - version "29.2.0" - resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.2.0.tgz#23ee99c37390a98cfddf3ef4a78674180d823094" - integrity sha512-TnspP2WNiR3GLfCsUNHqeXw0RoQ2f9U5hQ5L3XFpwuO8htQmSrhh8qsB6vi5Yi8+kuynN1yjDjQsPfkebmB6ZA== +babel-plugin-jest-hoist@^29.4.0: + version "29.4.0" + resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.4.0.tgz#3fd3dfcedf645932df6d0c9fc3d9a704dd860248" + integrity sha512-a/sZRLQJEmsmejQ2rPEUe35nO1+C9dc9O1gplH1SXmJxveQSRUYdBk8yGZG/VOUuZs1u2aHZJusEGoRMbhhwCg== dependencies: "@babel/template" "^7.3.3" "@babel/types" "^7.3.3" @@ -5567,12 +5574,12 @@ babel-preset-current-node-syntax@^1.0.0: "@babel/plugin-syntax-optional-chaining" "^7.8.3" "@babel/plugin-syntax-top-level-await" "^7.8.3" -babel-preset-jest@^29.2.0: - version "29.2.0" - resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-29.2.0.tgz#3048bea3a1af222e3505e4a767a974c95a7620dc" - integrity sha512-z9JmMJppMxNv8N7fNRHvhMg9cvIkMxQBXgFkane3yKVEvEOP+kB50lk8DFRvF9PGqbyXxlmebKWhuDORO8RgdA== +babel-preset-jest@^29.4.0: + version "29.4.0" + resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-29.4.0.tgz#c2b03c548b02dea0a18ae21d5759c136f9251ee4" + integrity sha512-fUB9vZflUSM3dO/6M2TCAepTzvA4VkOvl67PjErcrQMGt9Eve7uazaeyCZ2th3UtI7ljpiBJES0F7A1vBRsLZA== dependencies: - babel-plugin-jest-hoist "^29.2.0" + babel-plugin-jest-hoist "^29.4.0" babel-preset-current-node-syntax "^1.0.0" balanced-match@^1.0.0: @@ -5624,11 +5631,6 @@ bin-links@^3.0.0: rimraf "^3.0.0" write-file-atomic "^4.0.0" -binary-extensions@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" - integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== - bl@^4.0.3, bl@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" @@ -5676,7 +5678,7 @@ brace-expansion@^2.0.1: dependencies: balanced-match "^1.0.0" -braces@^3.0.2, braces@~3.0.2: +braces@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== @@ -5684,14 +5686,14 @@ braces@^3.0.2, braces@~3.0.2: fill-range "^7.0.1" browserslist@^4.14.5, browserslist@^4.21.3, browserslist@^4.21.4: - version "4.21.4" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.4.tgz#e7496bbc67b9e39dd0f98565feccdcb0d4ff6987" - integrity sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw== + version "4.21.5" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.5.tgz#75c5dae60063ee641f977e00edd3cfb2fb7af6a7" + integrity sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w== dependencies: - caniuse-lite "^1.0.30001400" - electron-to-chromium "^1.4.251" - node-releases "^2.0.6" - update-browserslist-db "^1.0.9" + caniuse-lite "^1.0.30001449" + electron-to-chromium "^1.4.284" + node-releases "^2.0.8" + update-browserslist-db "^1.0.10" bs-logger@0.x: version "0.2.6" @@ -5826,24 +5828,16 @@ camelcase@^6.2.0: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== -caniuse-lite@^1.0.30001400: - version "1.0.30001419" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001419.tgz#3542722d57d567c8210d5e4d0f9f17336b776457" - integrity sha512-aFO1r+g6R7TW+PNQxKzjITwLOyDhVRLjW0LcwS/HCZGUUKTGNp9+IwLC4xyDSZBygVL/mxaFR3HIV6wEKQuSzw== +caniuse-lite@^1.0.30001449: + version "1.0.30001450" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001450.tgz#022225b91200589196b814b51b1bbe45144cf74f" + integrity sha512-qMBmvmQmFXaSxexkjjfMvD5rnDL0+m+dUMZKoDYsGG8iZN29RuYh9eRoMvKsT6uMAWlyUUGDEQGJJYjzCIO9ew== caseless@~0.12.0: version "0.12.0" resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" integrity sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw== -chalk@4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" - integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== - dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" - chalk@^2.0.0, chalk@^2.3.0, chalk@^2.4.1: version "2.4.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" @@ -5876,21 +5870,6 @@ child_process@~1.0.2: resolved "https://registry.yarnpkg.com/child_process/-/child_process-1.0.2.tgz#b1f7e7fc73d25e7fd1d455adc94e143830182b5a" integrity sha512-Wmza/JzL0SiWz7kl6MhIKT5ceIlnFPJX+lwUGj7Clhy5MMldsSoJR0+uvRzOS5Kv45Mq7t1PoE8TsOA9bzvb6g== -chokidar@^3.5.1: - version "3.5.3" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" - integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== - dependencies: - anymatch "~3.1.2" - braces "~3.0.2" - glob-parent "~5.1.2" - is-binary-path "~2.1.0" - is-glob "~4.0.1" - normalize-path "~3.0.0" - readdirp "~3.6.0" - optionalDependencies: - fsevents "~2.3.2" - chownr@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" @@ -5943,12 +5922,12 @@ cli-width@^3.0.0: resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6" integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== -clipanion@3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/clipanion/-/clipanion-3.1.0.tgz#3e217dd6476bb9236638b07eb4673f7309839819" - integrity sha512-v025Hz+IDQ15FpOyK8p02h5bFznMu6rLFsJSyOPR+7WrbSnZ1Ek6pblPukV7K5tC/dsWfncQPIrJ4iUy2PXkbw== +clipanion@3.2.0-rc.14: + version "3.2.0-rc.14" + resolved "https://registry.yarnpkg.com/clipanion/-/clipanion-3.2.0-rc.14.tgz#d98154a74ae533a940de1af041e6246ba9725f0e" + integrity sha512-lj5zydbH786t6gpXe6oNX7CM5YKhd0CDhcXG8pKyRa2Nz5cgj1yhnNKxDi/MyPYwjyvAG5oVBeDdYCGUAgD8lQ== dependencies: - typanion "^3.3.1" + typanion "^3.8.0" cliui@^7.0.2: version "7.0.4" @@ -6097,9 +6076,9 @@ commander@^6.2.0: integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== commander@^9.4.1: - version "9.4.1" - resolved "https://registry.yarnpkg.com/commander/-/commander-9.4.1.tgz#d1dd8f2ce6faf93147295c0df13c7c21141cfbdd" - integrity sha512-5EEkTNyHNGFPD2H+c/dXXfQZYa/scCKasxWcXJaWnNJ99pnQN9Vnmqow+p+PlFPE63Q6mThaZws1T+HxfpgtPw== + version "9.5.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-9.5.0.tgz#bc08d1eb5cedf7ccb797a96199d41c7bc3e60d30" + integrity sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ== common-ancestor-path@^1.0.1: version "1.0.1" @@ -6194,9 +6173,9 @@ content-disposition@0.5.4: safe-buffer "5.2.1" content-type@~1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" - integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== + version "1.0.5" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918" + integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== conventional-changelog-angular@^5.0.12: version "5.0.13" @@ -6309,16 +6288,21 @@ cookies@0.8.0: keygrip "~1.1.0" core-js-compat@^3.25.1: - 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== + version "3.27.2" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.27.2.tgz#607c50ad6db8fd8326af0b2883ebb987be3786da" + integrity sha512-welaYuF7ZtbYKGrIy7y3eb40d37rG1FvzEOfe7hSLd2iD6duMDqUhRfSvCGyC46HhR6Y8JXXdZ2lnRUMkPBpvg== dependencies: browserslist "^4.21.4" core-js-pure@^3.6.5: - 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== + version "3.27.2" + resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.27.2.tgz#47e9cc96c639eefc910da03c3ece26c5067c7553" + integrity sha512-Cf2jqAbXgWH3VVzjyaaFkY1EBazxugUepGymDoeteyYr9ByX51kD2jdHZlsEF/xnJMyN3Prua7mQuzwMg6Zc9A== + +core-js@3.27.0: + version "3.27.0" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.27.0.tgz#a343bc614f29d9dcffa7616e65e10f9001cdd332" + integrity sha512-wY6cKosevs430KRkHUIsvepDXHGjlXOZO3hYXNyqpD6JvB0X28aXyv0t1Y1vZMwE7SoKmtfa6IASHCPN52FwBQ== core-util-is@1.0.2: version "1.0.2" @@ -6452,9 +6436,9 @@ csstype@^3.0.10, csstype@^3.0.2: integrity sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw== "d3-array@1 - 3", "d3-array@2 - 3", "d3-array@2.10.0 - 3", "d3-array@2.5.0 - 3", d3-array@^3.1.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-3.2.1.tgz#39331ea706f5709417d31bbb6ec152e0328b39b3" - integrity sha512-gUY/qeHq/yNqqoCKNq4vtpFLdoCdvyNpWoC/KNjhGbhDuQpAM9sIQQKkXSNpXa9h5KySs/gzm7R88WkUutgwWQ== + version "3.2.2" + resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-3.2.2.tgz#f8ac4705c5b06914a7e0025bbf8d5f1513f6a86e" + integrity sha512-yEEyEAbDrF8C6Ob2myOBLjwBLck1Z89jMGFee0oPsn95GqjerpaOA4ch+vc2l0FNFFwMD5N7OCSEN5eAlsUbgQ== dependencies: internmap "1 - 2" @@ -6580,14 +6564,6 @@ d3-shape@^3.1.0: resolved "https://registry.yarnpkg.com/d3-timer/-/d3-timer-3.0.1.tgz#6284d2a2708285b1abb7e201eda4380af35e63b0" integrity sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA== -d@1, d@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/d/-/d-1.0.1.tgz#8698095372d58dbee346ffd0c7093f99f8f9eb5a" - integrity sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA== - dependencies: - es5-ext "^0.10.50" - type "^1.0.1" - dargs@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/dargs/-/dargs-7.0.0.tgz#04015c41de0bcb69ec84050f3d9be0caf8d6d5cc" @@ -6600,6 +6576,15 @@ dashdash@^1.12.0: dependencies: assert-plus "^1.0.0" +data-urls@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b" + integrity sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ== + dependencies: + abab "^2.0.3" + whatwg-mimetype "^2.3.0" + whatwg-url "^8.0.0" + data-urls@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-3.0.2.tgz#9cf24a477ae22bcef5cd5f6f0bfbc1d2d3be9143" @@ -6633,13 +6618,6 @@ debug@4, debug@4.3.4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, de dependencies: ms "2.1.2" -debug@^3.2.7: - version "3.2.7" - resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" - integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== - dependencies: - ms "^2.1.1" - debuglog@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/debuglog/-/debuglog-1.0.1.tgz#aa24ffb9ac3df9a2351837cfb2d279360cd78492" @@ -6686,9 +6664,9 @@ deep-is@^0.1.3, deep-is@~0.1.3: integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== deepmerge@^4.2.2: - version "4.2.2" - resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" - integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== + version "4.3.0" + resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.0.tgz#65491893ec47756d44719ae520e0e2609233b59b" + integrity sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og== defaults@^1.0.3: version "1.0.4" @@ -6745,7 +6723,7 @@ depd@2.0.0, depd@~2.0.0: resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== -depd@^1.1.2: +depd@^1.1.2, depd@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ== @@ -6912,10 +6890,10 @@ ejs@^3.1.7: dependencies: jake "^10.8.5" -electron-to-chromium@^1.4.251: - version "1.4.282" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.282.tgz#02af3fd6051e97ac3388a4b11d455bc1ca49838f" - integrity sha512-Dki0WhHNh/br/Xi1vAkueU5mtIc9XLHcMKB6tNfQKk+kPG0TEUjRh5QEMAUbRp30/rYNMFD1zKKvbVzwq/4wmg== +electron-to-chromium@^1.4.284: + version "1.4.286" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.286.tgz#0e039de59135f44ab9a8ec9025e53a9135eba11f" + integrity sha512-Vp3CVhmYpgf4iXNKAucoQUDcCrBQX3XLBtwgFqP9BUXuucgvAV9zWp1kYU7LL9j4++s9O+12cb3wMtN4SJy6UQ== emittery@^0.13.1: version "0.13.1" @@ -6962,9 +6940,9 @@ end-of-stream@^1.1.0, end-of-stream@^1.4.1: once "^1.4.0" enhanced-resolve@^5.10.0: - version "5.10.0" - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.10.0.tgz#0dc579c3bb2a1032e357ac45b8f3a6f3ad4fb1e6" - integrity sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ== + version "5.12.0" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz#300e1c90228f5b570c4d35babf263f6da7155634" + integrity sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ== dependencies: graceful-fs "^4.2.4" tapable "^2.2.0" @@ -7015,43 +6993,14 @@ error-ex@^1.3.1: dependencies: is-arrayish "^0.2.1" -es-abstract@^1.19.0: - 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" - function-bind "^1.1.1" - function.prototype.name "^1.1.5" - get-intrinsic "^1.1.3" - get-symbol-description "^1.0.0" - has "^1.0.3" - has-property-descriptors "^1.0.0" - has-symbols "^1.0.3" - internal-slot "^1.0.3" - is-callable "^1.2.7" - is-negative-zero "^2.0.2" - is-regex "^1.1.4" - is-shared-array-buffer "^1.0.2" - is-string "^1.0.7" - is-weakref "^1.0.2" - object-inspect "^1.12.2" - object-keys "^1.1.1" - object.assign "^4.1.4" - regexp.prototype.flags "^1.4.3" - safe-regex-test "^1.0.0" - string.prototype.trimend "^1.0.5" - string.prototype.trimstart "^1.0.5" - unbox-primitive "^1.0.2" - -es-abstract@^1.20.4: - version "1.21.0" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.21.0.tgz#dd1b69ea5bfc3c27199c9753efd4de015102c252" - integrity sha512-GUGtW7eXQay0c+PRq0sGIKSdaBorfVqsCMhGHo4elP7YVqZu9nCZS4UkK4gv71gOWNMra/PaSKD3ao1oWExO0g== +es-abstract@^1.19.0, es-abstract@^1.20.4: + version "1.21.1" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.21.1.tgz#e6105a099967c08377830a0c9cb589d570dd86c6" + integrity sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg== dependencies: + available-typed-arrays "^1.0.5" call-bind "^1.0.2" - es-set-tostringtag "^2.0.0" + es-set-tostringtag "^2.0.1" es-to-primitive "^1.2.1" function-bind "^1.1.1" function.prototype.name "^1.1.5" @@ -7064,7 +7013,7 @@ es-abstract@^1.20.4: has-proto "^1.0.1" has-symbols "^1.0.3" internal-slot "^1.0.4" - is-array-buffer "^3.0.0" + is-array-buffer "^3.0.1" is-callable "^1.2.7" is-negative-zero "^2.0.2" is-regex "^1.1.4" @@ -7088,12 +7037,13 @@ es-module-lexer@^0.9.0: resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-0.9.3.tgz#6f13db00cc38417137daf74366f535c8eb438f19" integrity sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ== -es-set-tostringtag@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.0.tgz#b33fdef554fb35a264fe022c1f095f1f2022fa85" - integrity sha512-vZVAIWss0FcR/+a08s6e2/GjGjjYBCZJXDrOnj6l5kJCKhQvJs4cnVqUxkVepIhqHbKHm3uwOvPb8lRcqA3DSg== +es-set-tostringtag@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz#338d502f6f674301d710b80c8592de8a15f09cd8" + integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg== dependencies: get-intrinsic "^1.1.3" + has "^1.0.3" has-tostringtag "^1.0.0" es-shim-unscopables@^1.0.0: @@ -7112,42 +7062,6 @@ es-to-primitive@^1.2.1: is-date-object "^1.0.1" is-symbol "^1.0.2" -es5-ext@^0.10.35, es5-ext@^0.10.46, es5-ext@^0.10.50, es5-ext@^0.10.53, es5-ext@~0.10.14, es5-ext@~0.10.2, es5-ext@~0.10.46: - version "0.10.62" - resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.62.tgz#5e6adc19a6da524bf3d1e02bbc8960e5eb49a9a5" - integrity sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA== - dependencies: - es6-iterator "^2.0.3" - es6-symbol "^3.1.3" - next-tick "^1.1.0" - -es6-iterator@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" - integrity sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g== - dependencies: - d "1" - es5-ext "^0.10.35" - es6-symbol "^3.1.1" - -es6-symbol@^3.1.1, es6-symbol@^3.1.3: - version "3.1.3" - resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.3.tgz#bad5d3c1bcdac28269f4cb331e431c78ac705d18" - integrity sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA== - dependencies: - d "^1.0.1" - ext "^1.1.2" - -es6-weak-map@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.3.tgz#b6da1f16cc2cc0d9be43e6bdbfc5e7dfcdf31d53" - integrity sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA== - dependencies: - d "1" - es5-ext "^0.10.46" - es6-iterator "^2.0.3" - es6-symbol "^3.1.1" - escalade@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" @@ -7192,18 +7106,10 @@ eslint-config-prettier@^6.15.0: dependencies: get-stdin "^6.0.0" -eslint-import-resolver-node@0.3.6: - version "0.3.6" - resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd" - integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw== - dependencies: - debug "^3.2.7" - resolve "^1.20.0" - eslint-plugin-jest@^27.2.0: - version "27.2.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-27.2.0.tgz#8e9976705642bea1981596c0ba5e3f46d449f3fc" - integrity sha512-KGIYtelk4rIhKocxRKUEeX+kJ0ZCab/CiSgS8BMcKD7AY7YxXhlg/d51oF5jq2rOrtuJEDYWRwXD95l6l2vtrA== + version "27.2.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-27.2.1.tgz#b85b4adf41c682ea29f1f01c8b11ccc39b5c672c" + integrity sha512-l067Uxx7ZT8cO9NJuf+eJHvt6bqJyz2Z29wykyEdz/OtmcELQl2MQGQLX8J94O1cSJWAwUSEvCjwjA7KEK3Hmg== dependencies: "@typescript-eslint/utils" "^5.10.0" @@ -7215,9 +7121,9 @@ eslint-plugin-prettier@^3.1.4: prettier-linter-helpers "^1.0.0" eslint-plugin-react@^7.21.5: - version "7.31.11" - resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.31.11.tgz#011521d2b16dcf95795df688a4770b4eaab364c8" - integrity sha512-TTvq5JsT5v56wPa9OYHzsrOlHzKZKjV+aLgS+55NJP/cuzdiQPC7PfYoUjMoxlffKtvijpk7vA/jmuqRb9nohw== + version "7.32.2" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz#e71f21c7c265ebce01bcbc9d0955170c55571f10" + integrity sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg== dependencies: array-includes "^3.1.6" array.prototype.flatmap "^1.3.1" @@ -7231,7 +7137,7 @@ eslint-plugin-react@^7.21.5: object.hasown "^1.1.2" object.values "^1.1.6" prop-types "^15.8.1" - resolve "^2.0.0-next.3" + resolve "^2.0.0-next.4" semver "^6.3.0" string.prototype.matchall "^4.0.8" @@ -7366,14 +7272,6 @@ etag@~1.8.1: resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== -event-emitter@^0.3.5: - version "0.3.5" - resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" - integrity sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA== - dependencies: - d "1" - es5-ext "~0.10.14" - eventemitter3@^4.0.4: version "4.0.7" resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" @@ -7411,16 +7309,16 @@ exit@^0.1.2: resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" integrity sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ== -expect@^29.0.0, expect@^29.3.1: - version "29.3.1" - resolved "https://registry.yarnpkg.com/expect/-/expect-29.3.1.tgz#92877aad3f7deefc2e3f6430dd195b92295554a6" - integrity sha512-gGb1yTgU30Q0O/tQq+z30KBWv24ApkMgFUpvKBkyLUBL68Wv8dHdJxTBZFl/iT8K/bqDHvUYRH6IIN3rToopPA== +expect@^29.0.0, expect@^29.4.1: + version "29.4.1" + resolved "https://registry.yarnpkg.com/expect/-/expect-29.4.1.tgz#58cfeea9cbf479b64ed081fd1e074ac8beb5a1fe" + integrity sha512-OKrGESHOaMxK3b6zxIq9SOW8kEXztKff/Dvg88j4xIJxur1hspEbedVkR3GpHe5LO+WB2Qw7OWN0RMTdp6as5A== dependencies: - "@jest/expect-utils" "^29.3.1" + "@jest/expect-utils" "^29.4.1" jest-get-type "^29.2.0" - jest-matcher-utils "^29.3.1" - jest-message-util "^29.3.1" - jest-util "^29.3.1" + jest-matcher-utils "^29.4.1" + jest-message-util "^29.4.1" + jest-util "^29.4.1" express-rate-limit@5.5.1: version "5.5.1" @@ -7464,13 +7362,6 @@ express@4.18.2: utils-merge "1.0.1" vary "~1.1.2" -ext@^1.1.2: - version "1.7.0" - resolved "https://registry.yarnpkg.com/ext/-/ext-1.7.0.tgz#0ea4383c0103d60e70be99e9a7f11027a33c4f5f" - integrity sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw== - dependencies: - type "^2.7.2" - extend@~3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" @@ -7746,6 +7637,15 @@ fs-extra@^10.1.0: jsonfile "^6.0.1" universalify "^2.0.0" +fs-extra@^11.1.0: + version "11.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.1.0.tgz#5784b102104433bb0e090f48bfc4a30742c357ed" + integrity sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + fs-extra@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" @@ -7777,7 +7677,7 @@ fs.realpath@^1.0.0: resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== -fsevents@^2.3.2, fsevents@~2.3.2: +fsevents@^2.3.2: version "2.3.2" resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== @@ -7832,9 +7732,9 @@ get-caller-file@^2.0.5: integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385" - integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A== + version "1.2.0" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.0.tgz#7ad1dc0535f3a2904bba075772763e5051f6d05f" + integrity sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q== dependencies: function-bind "^1.1.1" has "^1.0.3" @@ -7946,7 +7846,7 @@ gitconfiglocal@^1.0.0: dependencies: ini "^1.3.2" -glob-parent@^5.1.1, glob-parent@^5.1.2, glob-parent@~5.1.2: +glob-parent@^5.1.1, glob-parent@^5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== @@ -7994,9 +7894,9 @@ glob@^7.1.2, glob@^7.1.3, glob@^7.1.4: path-is-absolute "^1.0.0" glob@^8.0.1: - version "8.0.3" - resolved "https://registry.yarnpkg.com/glob/-/glob-8.0.3.tgz#415c6eb2deed9e502c68fa44a272e6da6eeca42e" - integrity sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ== + version "8.1.0" + resolved "https://registry.yarnpkg.com/glob/-/glob-8.1.0.tgz#d388f656593ef708ee3e34640fdfb99a9fd1c33e" + integrity sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ== dependencies: fs.realpath "^1.0.0" inflight "^1.0.4" @@ -8022,9 +7922,9 @@ globals@^11.1.0: integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== globals@^13.6.0, globals@^13.9.0: - version "13.19.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-13.19.0.tgz#7a42de8e6ad4f7242fbcca27ea5b23aca367b5c8" - integrity sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ== + version "13.20.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.20.0.tgz#ea276a1e508ffd4f1612888f9d1bad1e2717bf82" + integrity sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ== dependencies: type-fest "^0.20.2" @@ -8232,9 +8132,20 @@ htmlparser2@^6.0.0: entities "^2.0.0" http-cache-semantics@^4.0.0, http-cache-semantics@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390" - integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ== + version "4.1.1" + resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz#abe02fcb2985460bf0323be664436ec3476a6d5a" + integrity sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ== + +http-errors@1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.8.1.tgz#7c3f28577cbc8a207388455dbd62295ed07bd68c" + integrity sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g== + dependencies: + depd "~1.1.2" + inherits "2.0.4" + setprototypeof "1.2.0" + statuses ">= 1.5.0 < 2" + toidentifier "1.0.1" http-errors@2.0.0: version "2.0.0" @@ -8487,13 +8398,14 @@ ipaddr.js@1.9.1: resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== -is-array-buffer@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.0.tgz#d93aaf24dade5e5391e2992e884c378482f078c1" - integrity sha512-TI2hnvT6dPUnn/jARFCJBKL1eeabAfLnKZ2lmW5Uh317s1Ii2IMroL1yMciEk/G+OETykVzlsH6x/L4q/avhgw== +is-array-buffer@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.1.tgz#deb1db4fcae48308d54ef2442706c0393997052a" + integrity sha512-ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ== dependencies: call-bind "^1.0.2" get-intrinsic "^1.1.3" + is-typed-array "^1.1.10" is-arrayish@^0.2.1: version "0.2.1" @@ -8512,13 +8424,6 @@ is-bigint@^1.0.1: dependencies: has-bigints "^1.0.1" -is-binary-path@~2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" - integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== - dependencies: - binary-extensions "^2.0.0" - is-boolean-object@^1.1.0: version "1.1.2" resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" @@ -8573,7 +8478,7 @@ is-generator-fn@^2.0.0: resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== -is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: version "4.0.3" resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== @@ -8639,7 +8544,7 @@ is-potential-custom-element-name@^1.0.1: resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5" integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== -is-promise@^2.1.0, is-promise@^2.2.2: +is-promise@^2.1.0: version "2.2.2" resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1" integrity sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ== @@ -8804,94 +8709,94 @@ jake@^10.8.5: filelist "^1.0.1" minimatch "^3.0.4" -jest-changed-files@^29.2.0: - version "29.2.0" - resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-29.2.0.tgz#b6598daa9803ea6a4dce7968e20ab380ddbee289" - integrity sha512-qPVmLLyBmvF5HJrY7krDisx6Voi8DmlV3GZYX0aFNbaQsZeoz1hfxcCMbqDGuQCxU1dJy9eYc2xscE8QrCCYaA== +jest-changed-files@^29.4.0: + version "29.4.0" + resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-29.4.0.tgz#ac2498bcd394228f7eddcadcf928b3583bf2779d" + integrity sha512-rnI1oPxgFghoz32Y8eZsGJMjW54UlqT17ycQeCEktcxxwqqKdlj9afl8LNeO0Pbu+h2JQHThQP0BzS67eTRx4w== dependencies: execa "^5.0.0" p-limit "^3.1.0" -jest-circus@^29.3.1: - version "29.3.1" - resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-29.3.1.tgz#177d07c5c0beae8ef2937a67de68f1e17bbf1b4a" - integrity sha512-wpr26sEvwb3qQQbdlmei+gzp6yoSSoSL6GsLPxnuayZSMrSd5Ka7IjAvatpIernBvT2+Ic6RLTg+jSebScmasg== +jest-circus@^29.4.1: + version "29.4.1" + resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-29.4.1.tgz#ff1b63eb04c3b111cefea9489e8dbadd23ce49bd" + integrity sha512-v02NuL5crMNY4CGPHBEflLzl4v91NFb85a+dH9a1pUNx6Xjggrd8l9pPy4LZ1VYNRXlb+f65+7O/MSIbLir6pA== dependencies: - "@jest/environment" "^29.3.1" - "@jest/expect" "^29.3.1" - "@jest/test-result" "^29.3.1" - "@jest/types" "^29.3.1" + "@jest/environment" "^29.4.1" + "@jest/expect" "^29.4.1" + "@jest/test-result" "^29.4.1" + "@jest/types" "^29.4.1" "@types/node" "*" chalk "^4.0.0" co "^4.6.0" dedent "^0.7.0" is-generator-fn "^2.0.0" - jest-each "^29.3.1" - jest-matcher-utils "^29.3.1" - jest-message-util "^29.3.1" - jest-runtime "^29.3.1" - jest-snapshot "^29.3.1" - jest-util "^29.3.1" + jest-each "^29.4.1" + jest-matcher-utils "^29.4.1" + jest-message-util "^29.4.1" + jest-runtime "^29.4.1" + jest-snapshot "^29.4.1" + jest-util "^29.4.1" p-limit "^3.1.0" - pretty-format "^29.3.1" + pretty-format "^29.4.1" slash "^3.0.0" stack-utils "^2.0.3" -jest-cli@^29.3.1: - version "29.3.1" - resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-29.3.1.tgz#e89dff427db3b1df50cea9a393ebd8640790416d" - integrity sha512-TO/ewvwyvPOiBBuWZ0gm04z3WWP8TIK8acgPzE4IxgsLKQgb377NYGrQLc3Wl/7ndWzIH2CDNNsUjGxwLL43VQ== +jest-cli@^29.4.1: + version "29.4.1" + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-29.4.1.tgz#7abef96944f300feb9b76f68b1eb2d68774fe553" + integrity sha512-jz7GDIhtxQ37M+9dlbv5K+/FVcIo1O/b1sX3cJgzlQUf/3VG25nvuWzlDC4F1FLLzUThJeWLu8I7JF9eWpuURQ== dependencies: - "@jest/core" "^29.3.1" - "@jest/test-result" "^29.3.1" - "@jest/types" "^29.3.1" + "@jest/core" "^29.4.1" + "@jest/test-result" "^29.4.1" + "@jest/types" "^29.4.1" chalk "^4.0.0" exit "^0.1.2" graceful-fs "^4.2.9" import-local "^3.0.2" - jest-config "^29.3.1" - jest-util "^29.3.1" - jest-validate "^29.3.1" + jest-config "^29.4.1" + jest-util "^29.4.1" + jest-validate "^29.4.1" prompts "^2.0.1" yargs "^17.3.1" -jest-config@^29.3.1: - version "29.3.1" - resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-29.3.1.tgz#0bc3dcb0959ff8662957f1259947aedaefb7f3c6" - integrity sha512-y0tFHdj2WnTEhxmGUK1T7fgLen7YK4RtfvpLFBXfQkh2eMJAQq24Vx9472lvn5wg0MAO6B+iPfJfzdR9hJYalg== +jest-config@^29.4.1: + version "29.4.1" + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-29.4.1.tgz#e62670c6c980ec21d75941806ec4d0c0c6402728" + integrity sha512-g7p3q4NuXiM4hrS4XFATTkd+2z0Ml2RhFmFPM8c3WyKwVDNszbl4E7cV7WIx1YZeqqCtqbtTtZhGZWJlJqngzg== dependencies: "@babel/core" "^7.11.6" - "@jest/test-sequencer" "^29.3.1" - "@jest/types" "^29.3.1" - babel-jest "^29.3.1" + "@jest/test-sequencer" "^29.4.1" + "@jest/types" "^29.4.1" + babel-jest "^29.4.1" chalk "^4.0.0" ci-info "^3.2.0" deepmerge "^4.2.2" glob "^7.1.3" graceful-fs "^4.2.9" - jest-circus "^29.3.1" - jest-environment-node "^29.3.1" + jest-circus "^29.4.1" + jest-environment-node "^29.4.1" jest-get-type "^29.2.0" jest-regex-util "^29.2.0" - jest-resolve "^29.3.1" - jest-runner "^29.3.1" - jest-util "^29.3.1" - jest-validate "^29.3.1" + jest-resolve "^29.4.1" + jest-runner "^29.4.1" + jest-util "^29.4.1" + jest-validate "^29.4.1" micromatch "^4.0.4" parse-json "^5.2.0" - pretty-format "^29.3.1" + pretty-format "^29.4.1" slash "^3.0.0" strip-json-comments "^3.1.1" -jest-diff@^29.3.1: - version "29.3.1" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.3.1.tgz#d8215b72fed8f1e647aed2cae6c752a89e757527" - integrity sha512-vU8vyiO7568tmin2lA3r2DP8oRvzhvRcD4DjpXc6uGveQodyk7CKLhQlCSiwgx3g0pFaE88/KLZ0yaTWMc4Uiw== +jest-diff@^29.4.1: + version "29.4.1" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.4.1.tgz#9a6dc715037e1fa7a8a44554e7d272088c4029bd" + integrity sha512-uazdl2g331iY56CEyfbNA0Ut7Mn2ulAG5vUaEHXycf1L6IPyuImIxSz4F0VYBKi7LYIuxOwTZzK3wh5jHzASMw== dependencies: chalk "^4.0.0" diff-sequences "^29.3.1" jest-get-type "^29.2.0" - pretty-format "^29.3.1" + pretty-format "^29.4.1" jest-docblock@^29.2.0: version "29.2.0" @@ -8900,62 +8805,62 @@ jest-docblock@^29.2.0: dependencies: detect-newline "^3.0.0" -jest-each@^29.3.1: - version "29.3.1" - resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-29.3.1.tgz#bc375c8734f1bb96625d83d1ca03ef508379e132" - integrity sha512-qrZH7PmFB9rEzCSl00BWjZYuS1BSOH8lLuC0azQE9lQrAx3PWGKHTDudQiOSwIy5dGAJh7KA0ScYlCP7JxvFYA== +jest-each@^29.4.1: + version "29.4.1" + resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-29.4.1.tgz#05ce9979e7486dbd0f5d41895f49ccfdd0afce01" + integrity sha512-QlYFiX3llJMWUV0BtWht/esGEz9w+0i7BHwODKCze7YzZzizgExB9MOfiivF/vVT0GSQ8wXLhvHXh3x2fVD4QQ== dependencies: - "@jest/types" "^29.3.1" + "@jest/types" "^29.4.1" chalk "^4.0.0" jest-get-type "^29.2.0" - jest-util "^29.3.1" - pretty-format "^29.3.1" + jest-util "^29.4.1" + pretty-format "^29.4.1" jest-environment-jsdom@^29.3.0: - version "29.3.1" - resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-29.3.1.tgz#14ca63c3e0ef5c63c5bcb46033e50bc649e3b639" - integrity sha512-G46nKgiez2Gy4zvYNhayfMEAFlVHhWfncqvqS6yCd0i+a4NsSUD2WtrKSaYQrYiLQaupHXxCRi8xxVL2M9PbhA== + version "29.4.1" + resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-29.4.1.tgz#34d491244ddd6fe3d666da603b576bd0ae6aef78" + integrity sha512-+KfYmRTl5CBHQst9hIz77TiiriHYvuWoLjMT855gx2AMxhHxpk1vtKvag1DQfyWCPVTWV/AG7SIqVh5WI1O/uw== dependencies: - "@jest/environment" "^29.3.1" - "@jest/fake-timers" "^29.3.1" - "@jest/types" "^29.3.1" + "@jest/environment" "^29.4.1" + "@jest/fake-timers" "^29.4.1" + "@jest/types" "^29.4.1" "@types/jsdom" "^20.0.0" "@types/node" "*" - jest-mock "^29.3.1" - jest-util "^29.3.1" + jest-mock "^29.4.1" + jest-util "^29.4.1" jsdom "^20.0.0" -jest-environment-node@^29.3.1: - version "29.3.1" - resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-29.3.1.tgz#5023b32472b3fba91db5c799a0d5624ad4803e74" - integrity sha512-xm2THL18Xf5sIHoU7OThBPtuH6Lerd+Y1NLYiZJlkE3hbE+7N7r8uvHIl/FkZ5ymKXJe/11SQuf3fv4v6rUMag== +jest-environment-node@^29.4.1: + version "29.4.1" + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-29.4.1.tgz#22550b7d0f8f0b16228639c9f88ca04bbf3c1974" + integrity sha512-x/H2kdVgxSkxWAIlIh9MfMuBa0hZySmfsC5lCsWmWr6tZySP44ediRKDUiNggX/eHLH7Cd5ZN10Rw+XF5tXsqg== dependencies: - "@jest/environment" "^29.3.1" - "@jest/fake-timers" "^29.3.1" - "@jest/types" "^29.3.1" + "@jest/environment" "^29.4.1" + "@jest/fake-timers" "^29.4.1" + "@jest/types" "^29.4.1" "@types/node" "*" - jest-mock "^29.3.1" - jest-util "^29.3.1" + jest-mock "^29.4.1" + jest-util "^29.4.1" jest-get-type@^29.2.0: version "29.2.0" resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.2.0.tgz#726646f927ef61d583a3b3adb1ab13f3a5036408" integrity sha512-uXNJlg8hKFEnDgFsrCjznB+sTxdkuqiCL6zMgA75qEbAJjJYTs9XPrvDctrEig2GDow22T/LvHgO57iJhXB/UA== -jest-haste-map@^29.3.1: - version "29.3.1" - resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-29.3.1.tgz#af83b4347f1dae5ee8c2fb57368dc0bb3e5af843" - integrity sha512-/FFtvoG1xjbbPXQLFef+WSU4yrc0fc0Dds6aRPBojUid7qlPqZvxdUBA03HW0fnVHXVCnCdkuoghYItKNzc/0A== +jest-haste-map@^29.4.1: + version "29.4.1" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-29.4.1.tgz#b0579dc82d94b40ed9041af56ad25c2f80bedaeb" + integrity sha512-imTjcgfVVTvg02khXL11NNLTx9ZaofbAWhilrMg/G8dIkp+HYCswhxf0xxJwBkfhWb3e8dwbjuWburvxmcr58w== dependencies: - "@jest/types" "^29.3.1" + "@jest/types" "^29.4.1" "@types/graceful-fs" "^4.1.3" "@types/node" "*" anymatch "^3.0.3" fb-watchman "^2.0.0" graceful-fs "^4.2.9" jest-regex-util "^29.2.0" - jest-util "^29.3.1" - jest-worker "^29.3.1" + jest-util "^29.4.1" + jest-worker "^29.4.1" micromatch "^4.0.4" walker "^1.0.8" optionalDependencies: @@ -8971,47 +8876,47 @@ jest-junit@^15.0.0: uuid "^8.3.2" xml "^1.0.1" -jest-leak-detector@^29.3.1: - version "29.3.1" - resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-29.3.1.tgz#95336d020170671db0ee166b75cd8ef647265518" - integrity sha512-3DA/VVXj4zFOPagGkuqHnSQf1GZBmmlagpguxEERO6Pla2g84Q1MaVIB3YMxgUaFIaYag8ZnTyQgiZ35YEqAQA== +jest-leak-detector@^29.4.1: + version "29.4.1" + resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-29.4.1.tgz#632186c546e084da2b490b7496fee1a1c9929637" + integrity sha512-akpZv7TPyGMnH2RimOCgy+hPmWZf55EyFUvymQ4LMsQP8xSPlZumCPtXGoDhFNhUE2039RApZkTQDKU79p/FiQ== dependencies: jest-get-type "^29.2.0" - pretty-format "^29.3.1" + pretty-format "^29.4.1" -jest-matcher-utils@^29.3.1: - version "29.3.1" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.3.1.tgz#6e7f53512f80e817dfa148672bd2d5d04914a572" - integrity sha512-fkRMZUAScup3txIKfMe3AIZZmPEjWEdsPJFK3AIy5qRohWqQFg1qrmKfYXR9qEkNc7OdAu2N4KPHibEmy4HPeQ== +jest-matcher-utils@^29.4.1: + version "29.4.1" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.4.1.tgz#73d834e305909c3b43285fbc76f78bf0ad7e1954" + integrity sha512-k5h0u8V4nAEy6lSACepxL/rw78FLDkBnXhZVgFneVpnJONhb2DhZj/Gv4eNe+1XqQ5IhgUcqj745UwH0HJmMnA== dependencies: chalk "^4.0.0" - jest-diff "^29.3.1" + jest-diff "^29.4.1" jest-get-type "^29.2.0" - pretty-format "^29.3.1" + pretty-format "^29.4.1" -jest-message-util@^29.3.1: - version "29.3.1" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.3.1.tgz#37bc5c468dfe5120712053dd03faf0f053bd6adb" - integrity sha512-lMJTbgNcDm5z+6KDxWtqOFWlGQxD6XaYwBqHR8kmpkP+WWWG90I35kdtQHY67Ay5CSuydkTBbJG+tH9JShFCyA== +jest-message-util@^29.4.1: + version "29.4.1" + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.4.1.tgz#522623aa1df9a36ebfdffb06495c7d9d19e8a845" + integrity sha512-H4/I0cXUaLeCw6FM+i4AwCnOwHRgitdaUFOdm49022YD5nfyr8C/DrbXOBEyJaj+w/y0gGJ57klssOaUiLLQGQ== dependencies: "@babel/code-frame" "^7.12.13" - "@jest/types" "^29.3.1" + "@jest/types" "^29.4.1" "@types/stack-utils" "^2.0.0" chalk "^4.0.0" graceful-fs "^4.2.9" micromatch "^4.0.4" - pretty-format "^29.3.1" + pretty-format "^29.4.1" slash "^3.0.0" stack-utils "^2.0.3" -jest-mock@^29.3.1: - version "29.3.1" - resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-29.3.1.tgz#60287d92e5010979d01f218c6b215b688e0f313e" - integrity sha512-H8/qFDtDVMFvFP4X8NuOT3XRDzOUTz+FeACjufHzsOIBAxivLqkB1PoLCaJx9iPPQ8dZThHPp/G3WRWyMgA3JA== +jest-mock@^29.4.1: + version "29.4.1" + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-29.4.1.tgz#a218a2abf45c99c501d4665207748a6b9e29afbd" + integrity sha512-MwA4hQ7zBOcgVCVnsM8TzaFLVUD/pFWTfbkY953Y81L5ret3GFRZtmPmRFAjKQSdCKoJvvqOu6Bvfpqlwwb0dQ== dependencies: - "@jest/types" "^29.3.1" + "@jest/types" "^29.4.1" "@types/node" "*" - jest-util "^29.3.1" + jest-util "^29.4.1" jest-pnp-resolver@^1.2.2: version "1.2.3" @@ -9023,88 +8928,89 @@ jest-regex-util@^29.2.0: resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-29.2.0.tgz#82ef3b587e8c303357728d0322d48bbfd2971f7b" integrity sha512-6yXn0kg2JXzH30cr2NlThF+70iuO/3irbaB4mh5WyqNIvLLP+B6sFdluO1/1RJmslyh/f9osnefECflHvTbwVA== -jest-resolve-dependencies@^29.3.1: - version "29.3.1" - resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-29.3.1.tgz#a6a329708a128e68d67c49f38678a4a4a914c3bf" - integrity sha512-Vk0cYq0byRw2WluNmNWGqPeRnZ3p3hHmjJMp2dyyZeYIfiBskwq4rpiuGFR6QGAdbj58WC7HN4hQHjf2mpvrLA== +jest-resolve-dependencies@^29.4.1: + version "29.4.1" + resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-29.4.1.tgz#02420a2e055da105e5fca8218c471d8b9553c904" + integrity sha512-Y3QG3M1ncAMxfjbYgtqNXC5B595zmB6e//p/qpA/58JkQXu/IpLDoLeOa8YoYfsSglBKQQzNUqtfGJJT/qLmJg== dependencies: jest-regex-util "^29.2.0" - jest-snapshot "^29.3.1" + jest-snapshot "^29.4.1" -jest-resolve@^29.3.1: - version "29.3.1" - resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-29.3.1.tgz#9a4b6b65387a3141e4a40815535c7f196f1a68a7" - integrity sha512-amXJgH/Ng712w3Uz5gqzFBBjxV8WFLSmNjoreBGMqxgCz5cH7swmBZzgBaCIOsvb0NbpJ0vgaSFdJqMdT+rADw== +jest-resolve@^29.4.1: + version "29.4.1" + resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-29.4.1.tgz#4c6bf71a07b8f0b79c5fdf4f2a2cf47317694c5e" + integrity sha512-j/ZFNV2lm9IJ2wmlq1uYK0Y/1PiyDq9g4HEGsNTNr3viRbJdV+8Lf1SXIiLZXFvyiisu0qUyIXGBnw+OKWkJwQ== dependencies: chalk "^4.0.0" graceful-fs "^4.2.9" - jest-haste-map "^29.3.1" + jest-haste-map "^29.4.1" jest-pnp-resolver "^1.2.2" - jest-util "^29.3.1" - jest-validate "^29.3.1" + jest-util "^29.4.1" + jest-validate "^29.4.1" resolve "^1.20.0" - resolve.exports "^1.1.0" + resolve.exports "^2.0.0" slash "^3.0.0" -jest-runner@^29.3.1: - version "29.3.1" - resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-29.3.1.tgz#a92a879a47dd096fea46bb1517b0a99418ee9e2d" - integrity sha512-oFvcwRNrKMtE6u9+AQPMATxFcTySyKfLhvso7Sdk/rNpbhg4g2GAGCopiInk1OP4q6gz3n6MajW4+fnHWlU3bA== - dependencies: - "@jest/console" "^29.3.1" - "@jest/environment" "^29.3.1" - "@jest/test-result" "^29.3.1" - "@jest/transform" "^29.3.1" - "@jest/types" "^29.3.1" +jest-runner@^29.4.1: + version "29.4.1" + resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-29.4.1.tgz#57460d9ebb0eea2e27eeddca1816cf8537469661" + integrity sha512-8d6XXXi7GtHmsHrnaqBKWxjKb166Eyj/ksSaUYdcBK09VbjPwIgWov1VwSmtupCIz8q1Xv4Qkzt/BTo3ZqiCeg== + dependencies: + "@jest/console" "^29.4.1" + "@jest/environment" "^29.4.1" + "@jest/test-result" "^29.4.1" + "@jest/transform" "^29.4.1" + "@jest/types" "^29.4.1" "@types/node" "*" chalk "^4.0.0" emittery "^0.13.1" graceful-fs "^4.2.9" jest-docblock "^29.2.0" - jest-environment-node "^29.3.1" - jest-haste-map "^29.3.1" - jest-leak-detector "^29.3.1" - jest-message-util "^29.3.1" - jest-resolve "^29.3.1" - jest-runtime "^29.3.1" - jest-util "^29.3.1" - jest-watcher "^29.3.1" - jest-worker "^29.3.1" + jest-environment-node "^29.4.1" + jest-haste-map "^29.4.1" + jest-leak-detector "^29.4.1" + jest-message-util "^29.4.1" + jest-resolve "^29.4.1" + jest-runtime "^29.4.1" + jest-util "^29.4.1" + jest-watcher "^29.4.1" + jest-worker "^29.4.1" p-limit "^3.1.0" source-map-support "0.5.13" -jest-runtime@^29.3.1: - version "29.3.1" - resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-29.3.1.tgz#21efccb1a66911d6d8591276a6182f520b86737a" - integrity sha512-jLzkIxIqXwBEOZx7wx9OO9sxoZmgT2NhmQKzHQm1xwR1kNW/dn0OjxR424VwHHf1SPN6Qwlb5pp1oGCeFTQ62A== +jest-runtime@^29.4.1: + version "29.4.1" + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-29.4.1.tgz#9a50f9c69d3a391690897c01b0bfa8dc5dd45808" + integrity sha512-UXTMU9uKu2GjYwTtoAw5rn4STxWw/nadOfW7v1sx6LaJYa3V/iymdCLQM6xy3+7C6mY8GfX22vKpgxY171UIoA== dependencies: - "@jest/environment" "^29.3.1" - "@jest/fake-timers" "^29.3.1" - "@jest/globals" "^29.3.1" + "@jest/environment" "^29.4.1" + "@jest/fake-timers" "^29.4.1" + "@jest/globals" "^29.4.1" "@jest/source-map" "^29.2.0" - "@jest/test-result" "^29.3.1" - "@jest/transform" "^29.3.1" - "@jest/types" "^29.3.1" + "@jest/test-result" "^29.4.1" + "@jest/transform" "^29.4.1" + "@jest/types" "^29.4.1" "@types/node" "*" chalk "^4.0.0" cjs-module-lexer "^1.0.0" collect-v8-coverage "^1.0.0" glob "^7.1.3" graceful-fs "^4.2.9" - jest-haste-map "^29.3.1" - jest-message-util "^29.3.1" - jest-mock "^29.3.1" + jest-haste-map "^29.4.1" + jest-message-util "^29.4.1" + jest-mock "^29.4.1" jest-regex-util "^29.2.0" - jest-resolve "^29.3.1" - jest-snapshot "^29.3.1" - jest-util "^29.3.1" + jest-resolve "^29.4.1" + jest-snapshot "^29.4.1" + jest-util "^29.4.1" + semver "^7.3.5" slash "^3.0.0" strip-bom "^4.0.0" -jest-snapshot@^29.3.1: - version "29.3.1" - resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-29.3.1.tgz#17bcef71a453adc059a18a32ccbd594b8cc4e45e" - integrity sha512-+3JOc+s28upYLI2OJM4PWRGK9AgpsMs/ekNryUV0yMBClT9B1DF2u2qay8YxcQd338PPYSFNb0lsar1B49sLDA== +jest-snapshot@^29.4.1: + version "29.4.1" + resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-29.4.1.tgz#5692210b3690c94f19317913d4082b123bd83dd9" + integrity sha512-l4iV8EjGgQWVz3ee/LR9sULDk2pCkqb71bjvlqn+qp90lFwpnulHj4ZBT8nm1hA1C5wowXLc7MGnw321u0tsYA== dependencies: "@babel/core" "^7.11.6" "@babel/generator" "^7.7.2" @@ -9112,61 +9018,61 @@ jest-snapshot@^29.3.1: "@babel/plugin-syntax-typescript" "^7.7.2" "@babel/traverse" "^7.7.2" "@babel/types" "^7.3.3" - "@jest/expect-utils" "^29.3.1" - "@jest/transform" "^29.3.1" - "@jest/types" "^29.3.1" + "@jest/expect-utils" "^29.4.1" + "@jest/transform" "^29.4.1" + "@jest/types" "^29.4.1" "@types/babel__traverse" "^7.0.6" "@types/prettier" "^2.1.5" babel-preset-current-node-syntax "^1.0.0" chalk "^4.0.0" - expect "^29.3.1" + expect "^29.4.1" graceful-fs "^4.2.9" - jest-diff "^29.3.1" + jest-diff "^29.4.1" jest-get-type "^29.2.0" - jest-haste-map "^29.3.1" - jest-matcher-utils "^29.3.1" - jest-message-util "^29.3.1" - jest-util "^29.3.1" + jest-haste-map "^29.4.1" + jest-matcher-utils "^29.4.1" + jest-message-util "^29.4.1" + jest-util "^29.4.1" natural-compare "^1.4.0" - pretty-format "^29.3.1" + pretty-format "^29.4.1" semver "^7.3.5" -jest-util@^29.0.0, jest-util@^29.3.1: - version "29.3.1" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.3.1.tgz#1dda51e378bbcb7e3bc9d8ab651445591ed373e1" - integrity sha512-7YOVZaiX7RJLv76ZfHt4nbNEzzTRiMW/IiOG7ZOKmTXmoGBxUDefgMAxQubu6WPVqP5zSzAdZG0FfLcC7HOIFQ== +jest-util@^29.0.0, jest-util@^29.4.1: + version "29.4.1" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.4.1.tgz#2eeed98ff4563b441b5a656ed1a786e3abc3e4c4" + integrity sha512-bQy9FPGxVutgpN4VRc0hk6w7Hx/m6L53QxpDreTZgJd9gfx/AV2MjyPde9tGyZRINAUrSv57p2inGBu2dRLmkQ== dependencies: - "@jest/types" "^29.3.1" + "@jest/types" "^29.4.1" "@types/node" "*" chalk "^4.0.0" ci-info "^3.2.0" graceful-fs "^4.2.9" picomatch "^2.2.3" -jest-validate@^29.3.1: - version "29.3.1" - resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-29.3.1.tgz#d56fefaa2e7d1fde3ecdc973c7f7f8f25eea704a" - integrity sha512-N9Lr3oYR2Mpzuelp1F8negJR3YE+L1ebk1rYA5qYo9TTY3f9OWdptLoNSPP9itOCBIRBqjt/S5XHlzYglLN67g== +jest-validate@^29.4.1: + version "29.4.1" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-29.4.1.tgz#0d5174510415083ec329d4f981bf6779211f17e9" + integrity sha512-qNZXcZQdIQx4SfUB/atWnI4/I2HUvhz8ajOSYUu40CSmf9U5emil8EDHgE7M+3j9/pavtk3knlZBDsgFvv/SWw== dependencies: - "@jest/types" "^29.3.1" + "@jest/types" "^29.4.1" camelcase "^6.2.0" chalk "^4.0.0" jest-get-type "^29.2.0" leven "^3.1.0" - pretty-format "^29.3.1" + pretty-format "^29.4.1" -jest-watcher@^29.3.1: - version "29.3.1" - resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-29.3.1.tgz#3341547e14fe3c0f79f9c3a4c62dbc3fc977fd4a" - integrity sha512-RspXG2BQFDsZSRKGCT/NiNa8RkQ1iKAjrO0//soTMWx/QUt+OcxMqMSBxz23PYGqUuWm2+m2mNNsmj0eIoOaFg== +jest-watcher@^29.4.1: + version "29.4.1" + resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-29.4.1.tgz#6e3e2486918bd778849d4d6e67fd77b814f3e6ed" + integrity sha512-vFOzflGFs27nU6h8dpnVRER3O2rFtL+VMEwnG0H3KLHcllLsU8y9DchSh0AL/Rg5nN1/wSiQ+P4ByMGpuybaVw== dependencies: - "@jest/test-result" "^29.3.1" - "@jest/types" "^29.3.1" + "@jest/test-result" "^29.4.1" + "@jest/types" "^29.4.1" "@types/node" "*" ansi-escapes "^4.2.1" chalk "^4.0.0" emittery "^0.13.1" - jest-util "^29.3.1" + jest-util "^29.4.1" string-length "^4.0.1" jest-worker@^27.4.5: @@ -9178,25 +9084,25 @@ jest-worker@^27.4.5: merge-stream "^2.0.0" supports-color "^8.0.0" -jest-worker@^29.3.1: - version "29.3.1" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.3.1.tgz#e9462161017a9bb176380d721cab022661da3d6b" - integrity sha512-lY4AnnmsEWeiXirAIA0c9SDPbuCBq8IYuDVL8PMm0MZ2PEs2yPvRA/J64QBXuZp7CYKrDM/rmNrc9/i3KJQncw== +jest-worker@^29.4.1: + version "29.4.1" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.4.1.tgz#7cb4a99a38975679600305650f86f4807460aab1" + integrity sha512-O9doU/S1EBe+yp/mstQ0VpPwpv0Clgn68TkNwGxL6/usX/KUW9Arnn4ag8C3jc6qHcXznhsT5Na1liYzAsuAbQ== dependencies: "@types/node" "*" - jest-util "^29.3.1" + jest-util "^29.4.1" merge-stream "^2.0.0" supports-color "^8.0.0" jest@^29.2.0, jest@^29.3.1: - version "29.3.1" - resolved "https://registry.yarnpkg.com/jest/-/jest-29.3.1.tgz#c130c0d551ae6b5459b8963747fed392ddbde122" - integrity sha512-6iWfL5DTT0Np6UYs/y5Niu7WIfNv/wRTtN5RSXt2DIEft3dx3zPuw/3WJQBCJfmEzvDiEKwoqMbGD9n49+qLSA== + version "29.4.1" + resolved "https://registry.yarnpkg.com/jest/-/jest-29.4.1.tgz#bb34baca8e05901b49c02c62f1183a6182ea1785" + integrity sha512-cknimw7gAXPDOmj0QqztlxVtBVCw2lYY9CeIE5N6kD+kET1H4H79HSNISJmijb1HF+qk+G+ploJgiDi5k/fRlg== dependencies: - "@jest/core" "^29.3.1" - "@jest/types" "^29.3.1" + "@jest/core" "^29.4.1" + "@jest/types" "^29.4.1" import-local "^3.0.2" - jest-cli "^29.3.1" + jest-cli "^29.4.1" "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: version "4.0.0" @@ -9338,7 +9244,7 @@ json5@^1.0.1: dependencies: minimist "^1.2.0" -json5@^2.1.1, json5@^2.1.2, json5@^2.2.1, json5@^2.2.2: +json5@^2.1.2, json5@^2.2.2, json5@^2.2.3: version "2.2.3" resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== @@ -9459,32 +9365,34 @@ kleur@^3.0.3: integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== lerna@^6.0.1: - version "6.3.0" - resolved "https://registry.yarnpkg.com/lerna/-/lerna-6.3.0.tgz#5cac7b4c9df9ef194cecf828571f1415cd20fb79" - integrity sha512-AlAIabKU7tW2p6C0sNPKoCAq6GBpS+iGcSfnHEGTDsg/daMySMacnJMOuD7cN9O2o5UxZeZDtGIr2tEPfCN7Eg== - dependencies: - "@lerna/add" "6.3.0" - "@lerna/bootstrap" "6.3.0" - "@lerna/changed" "6.3.0" - "@lerna/clean" "6.3.0" - "@lerna/cli" "6.3.0" - "@lerna/command" "6.3.0" - "@lerna/create" "6.3.0" - "@lerna/diff" "6.3.0" - "@lerna/exec" "6.3.0" - "@lerna/import" "6.3.0" - "@lerna/info" "6.3.0" - "@lerna/init" "6.3.0" - "@lerna/link" "6.3.0" - "@lerna/list" "6.3.0" - "@lerna/publish" "6.3.0" - "@lerna/run" "6.3.0" - "@lerna/version" "6.3.0" - "@nrwl/devkit" ">=14.8.6 < 16" + version "6.4.1" + resolved "https://registry.yarnpkg.com/lerna/-/lerna-6.4.1.tgz#a1e5abcb6c00de3367f50d75eca449e382525e0f" + integrity sha512-0t8TSG4CDAn5+vORjvTFn/ZEGyc4LOEsyBUpzcdIxODHPKM4TVOGvbW9dBs1g40PhOrQfwhHS+3fSx/42j42dQ== + dependencies: + "@lerna/add" "6.4.1" + "@lerna/bootstrap" "6.4.1" + "@lerna/changed" "6.4.1" + "@lerna/clean" "6.4.1" + "@lerna/cli" "6.4.1" + "@lerna/command" "6.4.1" + "@lerna/create" "6.4.1" + "@lerna/diff" "6.4.1" + "@lerna/exec" "6.4.1" + "@lerna/filter-options" "6.4.1" + "@lerna/import" "6.4.1" + "@lerna/info" "6.4.1" + "@lerna/init" "6.4.1" + "@lerna/link" "6.4.1" + "@lerna/list" "6.4.1" + "@lerna/publish" "6.4.1" + "@lerna/run" "6.4.1" + "@lerna/validation-error" "6.4.1" + "@lerna/version" "6.4.1" + "@nrwl/devkit" ">=15.4.2 < 16" import-local "^3.0.2" inquirer "^8.2.4" npmlog "^6.0.2" - nx ">=14.8.6 < 16" + nx ">=15.4.2 < 16" typescript "^3 || ^4" level-codec@^9.0.0: @@ -9591,9 +9499,9 @@ levn@~0.3.0: type-check "~0.3.2" lib0@^0.2.31, lib0@^0.2.42, lib0@^0.2.49, lib0@^0.2.52: - version "0.2.58" - resolved "https://registry.yarnpkg.com/lib0/-/lib0-0.2.58.tgz#bb5326a1e028f72fd3a5bdb20e61404bff08d0a5" - integrity sha512-6ovqPaYfOKU7GkkVxz/wjMR0zsqmNsISLvH+h9Lx5YNtWDZey69aYsTGXaSVpUPpJ+ZFtIvcZHsTGL3MbwOM8A== + version "0.2.61" + resolved "https://registry.yarnpkg.com/lib0/-/lib0-0.2.61.tgz#a33133db526cff1bbccaa6ddd779821d0524ed12" + integrity sha512-yVhT0uMXNWk50KqBgsZPxmcoO7Yft341wDTByKjXIzBpkhUjEzXl/M9b/GfqyDFBdiLCGg19Cv26NHUEnbL1pA== dependencies: isomorphic.js "^0.2.4" @@ -9631,6 +9539,11 @@ lines-and-columns@^1.1.6: resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== +lines-and-columns@~2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-2.0.3.tgz#b2f0badedb556b747020ab8ea7f0373e22efac1b" + integrity sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w== + load-json-file@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" @@ -9696,7 +9609,7 @@ lockfile@1.0.4: dependencies: signal-exit "^3.0.2" -lodash-es@^4.17.15: +lodash-es@^4.17.15, lodash-es@^4.17.21: 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== @@ -9746,7 +9659,7 @@ lodash.uniq@^4.5.0: resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" integrity sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ== -lodash@4, lodash@4.17.21, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.4: +lodash@4, lodash@4.17.21, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.4, lodash@^4.7.0: version "4.17.21" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== @@ -9787,6 +9700,13 @@ lru-cache@7.14.1, lru-cache@^7.4.4, lru-cache@^7.5.1, lru-cache@^7.7.1: resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.14.1.tgz#8da8d2f5f59827edb388e63e459ac23d6d408fea" integrity sha512-ysxwsnTKdAx96aTRdhDOCQfDgbHnt8SK0KY8SEjO0wHinhWOFTESbjVCMPbU1uGXg/ch4lifqx0wfjOawU2+WA== +lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== + dependencies: + yallist "^3.0.2" + lru-cache@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" @@ -9794,13 +9714,6 @@ lru-cache@^6.0.0: dependencies: yallist "^4.0.0" -lru-queue@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/lru-queue/-/lru-queue-0.1.0.tgz#2738bd9f0d3cf4f84490c5736c48699ac632cda3" - integrity sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ== - dependencies: - es5-ext "~0.10.2" - ltgt@^2.1.2: version "2.2.1" resolved "https://registry.yarnpkg.com/ltgt/-/ltgt-2.2.1.tgz#f35ca91c493f7b73da0e07495304f17b31f87ee5" @@ -9878,29 +9791,15 @@ map-obj@^4.0.0: integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ== marked@^4.0.17: - version "4.2.5" - resolved "https://registry.yarnpkg.com/marked/-/marked-4.2.5.tgz#979813dfc1252cc123a79b71b095759a32f42a5d" - integrity sha512-jPueVhumq7idETHkb203WDD4fMA3yV9emQ5vLwop58lu8bTclMghBWcYAavlDqIEMaisADinV1TooIFCfqOsYQ== + version "4.2.12" + resolved "https://registry.yarnpkg.com/marked/-/marked-4.2.12.tgz#d69a64e21d71b06250da995dcd065c11083bebb5" + integrity sha512-yr8hSKa3Fv4D3jdZmtMMPghgVt6TWbk86WQaWhDloQjRSQhMMYCAro7jP7VDJrjjdV8pxVxMssXS8B8Y5DZ5aw== media-typer@0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== -memoizee@0.4.15: - version "0.4.15" - resolved "https://registry.yarnpkg.com/memoizee/-/memoizee-0.4.15.tgz#e6f3d2da863f318d02225391829a6c5956555b72" - integrity sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ== - dependencies: - d "^1.0.1" - es5-ext "^0.10.53" - es6-weak-map "^2.0.3" - event-emitter "^0.3.5" - is-promise "^2.2.2" - lru-queue "^0.1.0" - next-tick "^1.1.0" - timers-ext "^0.1.7" - memorystream@^0.3.1: version "0.3.1" resolved "https://registry.yarnpkg.com/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2" @@ -10020,7 +9919,7 @@ mini-svg-data-uri@^1.4.4: resolved "https://registry.yarnpkg.com/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz#8ab0aabcdf8c29ad5693ca595af19dd2ead09939" integrity sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg== -"minimatch@2 || 3", minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2: +"minimatch@2 || 3", minimatch@3.1.2, minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2: version "3.1.2" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== @@ -10034,17 +9933,10 @@ minimatch@3.0.5: dependencies: brace-expansion "^1.1.7" -minimatch@5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.1.tgz#6c9dffcf9927ff2a31e74b5af11adf8b9604b022" - integrity sha512-362NP+zlprccbEt/SkxKfRMHnNY85V74mVnpUpNyr3F35covl09Kec7/sEFLt3RA4oXmewtoaanoIf67SE5Y5g== - dependencies: - brace-expansion "^2.0.1" - minimatch@^5.0.1: - version "5.1.2" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.2.tgz#0939d7d6f0898acbd1508abe534d1929368a8fff" - integrity sha512-bNH9mmM9qsJ2X4r2Nat1B//1dJVcn3+iBLa3IgqJ7EbGaDNepL9QSHOxN4ng33s52VMMhhIfgCYDk3C4ZmlDAg== + version "5.1.6" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96" + integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g== dependencies: brace-expansion "^2.0.1" @@ -10124,11 +10016,9 @@ minipass@^3.0.0, minipass@^3.1.1, minipass@^3.1.6: yallist "^4.0.0" minipass@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-4.0.0.tgz#7cebb0f9fa7d56f0c5b17853cbe28838a8dbbd3b" - integrity sha512-g2Uuh2jEKoht+zvO6vJqXmYpflPqzRBT+Th2h01DKh5z7wbY/AZ2gCQ78cP70YoHPyFdY30YBV5WxgLOEwOykw== - dependencies: - yallist "^4.0.0" + version "4.0.2" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-4.0.2.tgz#26fc3364d5ea6cb971c6e5259eac67a0887510d1" + integrity sha512-4Hbzei7ZyBp+1aw0874YWpKOubZd/jc53/XU+gkYry1QV+VvrbO8icLM5CUtm4F0hyXn85DXYKEMIS26gitD3A== minizlib@^2.1.1, minizlib@^2.1.2: version "2.1.2" @@ -10164,11 +10054,6 @@ modify-values@^1.0.0: resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022" integrity sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw== -moment@^2.24.0: - version "2.29.4" - resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.4.tgz#3dbe052889fe7c1b2ed966fcb3a77328964ef108" - integrity sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w== - mrmime@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/mrmime/-/mrmime-1.0.1.tgz#5f90c825fad4bdd41dc914eff5d1a8cfdaf24f27" @@ -10214,6 +10099,11 @@ mv@2.1.1: ncp "~2.0.0" rimraf "~2.4.0" +nanoclone@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/nanoclone/-/nanoclone-0.2.1.tgz#dd4090f8f1a110d26bb32c49ed2f5b9235209ed4" + integrity sha512-wynEP02LmIbLpcYw8uBKpcfF6dmg2vcpKqxeH5UcoKEYdExslsdUA4ugFauuaeYdTB76ez6gJW8XAZ6CgkXYxA== + nanoid@^3.1.23, nanoid@^3.3.4: version "3.3.4" resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab" @@ -10244,11 +10134,6 @@ neo-async@^2.6.0, neo-async@^2.6.2: resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== -next-tick@1, next-tick@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.1.0.tgz#1836ee30ad56d67ef281b22bd199f709449b35eb" - integrity sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ== - nice-try@^1.0.4: version "1.0.5" resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" @@ -10259,17 +10144,24 @@ node-addon-api@^3.2.1: resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-3.2.1.tgz#81325e0a2117789c0128dab65e7e38f07ceba161" integrity sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A== -node-fetch@2.6.7, node-fetch@^2.6.0, node-fetch@^2.6.1, node-fetch@^2.6.7: - version "2.6.7" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" - integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== +node-fetch@2.6.8: + version "2.6.8" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.8.tgz#a68d30b162bc1d8fd71a367e81b997e1f4d4937e" + integrity sha512-RZ6dBYuj8dRSfxpUSu+NsdF1dpPpluJxwOp+6IoDp/sH2QNDSvurYsAa+F1WxY2RjA1iP93xhcsUoYbF2XBqVg== + dependencies: + whatwg-url "^5.0.0" + +node-fetch@^2.6.0, node-fetch@^2.6.1, node-fetch@^2.6.7: + version "2.6.9" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.9.tgz#7c7f744b5cc6eb5fd404e0c7a9fec630a55657e6" + integrity sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg== dependencies: whatwg-url "^5.0.0" node-gyp-build@^4.3.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.5.0.tgz#7a64eefa0b21112f89f58379da128ac177f20e40" - integrity sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg== + version "4.6.0" + resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.6.0.tgz#0c52e4cbf54bbd28b709820ef7b6a3c2d6209055" + integrity sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ== node-gyp-build@~4.1.0: version "4.1.1" @@ -10297,10 +10189,10 @@ node-int64@^0.4.0: resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== -node-releases@^2.0.6: - version "2.0.8" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.8.tgz#0f349cdc8fcfa39a92ac0be9bc48b7706292b9ae" - integrity sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A== +node-releases@^2.0.8: + version "2.0.10" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.10.tgz#c311ebae3b6a148c89b1813fd7c4d3c024ef537f" + integrity sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w== nopt@^5.0.0: version "5.0.0" @@ -10346,7 +10238,7 @@ normalize-package-data@^4.0.0: semver "^7.3.5" validate-npm-package-license "^3.0.4" -normalize-path@^3.0.0, normalize-path@~3.0.0: +normalize-path@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== @@ -10486,20 +10378,19 @@ nwsapi@^2.2.2: resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.2.tgz#e5418863e7905df67d51ec95938d67bf801f0bb0" integrity sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw== -nx@15.4.4, "nx@>=14.8.6 < 16": - version "15.4.4" - resolved "https://registry.yarnpkg.com/nx/-/nx-15.4.4.tgz#4cb3d3861972c6fc75df50dd526a2c7e1a26410c" - integrity sha512-JWYeGcKsQVHR6nlk7XSL1/dAuSo2eyW+ahmMmK3j3vSnqRlZiN0q53ALZ4nD8VemAwtZCJ3CiOi4D/HExi5wbw== +nx@15.6.3, "nx@>=15.4.2 < 16": + version "15.6.3" + resolved "https://registry.yarnpkg.com/nx/-/nx-15.6.3.tgz#900087bce38c6e5975660c23ebd41ead1bf54f98" + integrity sha512-3t0A0GPLNen1yPAyE+VGZ3nkAzZYb5nfXtAcx8SHBlKq4u42yBY3khBmP1y4Og3jhIwFIj7J7Npeh8ZKrthmYQ== dependencies: - "@nrwl/cli" "15.4.4" - "@nrwl/tao" "15.4.4" + "@nrwl/cli" "15.6.3" + "@nrwl/tao" "15.6.3" "@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" + chalk "^4.1.0" cli-cursor "3.1.0" cli-spinners "2.6.1" cliui "^7.0.2" @@ -10508,11 +10399,12 @@ nx@15.4.4, "nx@>=14.8.6 < 16": fast-glob "3.2.7" figures "3.2.0" flat "^5.0.2" - fs-extra "^10.1.0" + fs-extra "^11.1.0" glob "7.1.4" ignore "^5.0.4" js-yaml "4.1.0" jsonc-parser "3.2.0" + lines-and-columns "~2.0.3" minimatch "3.0.5" npm-run-path "^4.0.1" open "^8.4.0" @@ -10538,16 +10430,16 @@ object-assign@^4, object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1 integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== object-inspect@^1.12.2, object-inspect@^1.9.0: - version "1.12.2" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" - integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== + version "1.12.3" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" + integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== object-keys@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== -object.assign@^4.1.0, object.assign@^4.1.3, object.assign@^4.1.4: +object.assign@^4.1.3, object.assign@^4.1.4: version "4.1.4" resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== @@ -10949,7 +10841,7 @@ picocolors@^1.0.0: resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== -picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3, picomatch@^2.3.1: +picomatch@^2.0.4, picomatch@^2.2.3, picomatch@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== @@ -11055,19 +10947,10 @@ postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0: resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== -postcss@^8.2.4, postcss@^8.3.11: - version "8.4.18" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.18.tgz#6d50046ea7d3d66a85e0e782074e7203bc7fbca2" - integrity sha512-Wi8mWhncLJm11GATDaQKobXSNEYGUHeQLiQqDFG1qQ5UTDPTEvKw0Xt5NsTpktGTwLps3ByrWsBrG0rB8YQ9oA== - dependencies: - nanoid "^3.3.4" - picocolors "^1.0.0" - source-map-js "^1.0.2" - -postcss@^8.4.19: - version "8.4.20" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.20.tgz#64c52f509644cecad8567e949f4081d98349dc56" - integrity sha512-6Q04AXR1212bXr5fh03u8aAwbLxAQNGQ/Q1LNa0VfOI06ZAlhPHtQvE4OIdpj4kLThXilalPnmDSOD65DcHt+g== +postcss@^8.2.4, postcss@^8.3.11, postcss@^8.4.19: + version "8.4.21" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.21.tgz#c639b719a57efc3187b13a1d765675485f4134f4" + integrity sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg== dependencies: nanoid "^3.3.4" picocolors "^1.0.0" @@ -11110,12 +10993,12 @@ prettier@~2.6.0: resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.6.2.tgz#e26d71a18a74c3d0f0597f55f01fb6c06c206032" integrity sha512-PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew== -pretty-format@^29.0.0, pretty-format@^29.3.1: - version "29.3.1" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.3.1.tgz#1841cac822b02b4da8971dacb03e8a871b4722da" - integrity sha512-FyLnmb1cYJV8biEIiRyzRFvs2lry7PPIvOqKVe1GCUEYg4YGmlx1qG9EJNMxArYm7piII4qb8UV1Pncq5dxmcg== +pretty-format@^29.0.0, pretty-format@^29.4.1: + version "29.4.1" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.4.1.tgz#0da99b532559097b8254298da7c75a0785b1751c" + integrity sha512-dt/Z761JUVsrIKaY215o1xQJBGlSmTx/h4cSqXqjHLnU1+Kt+mavVE7UgqJJO5ukx5HjSswHfmXz4LjS2oIJfg== dependencies: - "@jest/schemas" "^29.0.0" + "@jest/schemas" "^29.4.0" ansi-styles "^5.0.0" react-is "^18.0.0" @@ -11136,7 +11019,7 @@ process-nextick-args@~2.0.0: resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== -process-warning@^1.0.0: +process-warning@1.0.0, process-warning@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/process-warning/-/process-warning-1.0.0.tgz#980a0b25dc38cd6034181be4b7726d89066b4616" integrity sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q== @@ -11198,6 +11081,11 @@ prop-types@^15.6.0, prop-types@^15.7.2, prop-types@^15.8.1: object-assign "^4.1.1" react-is "^16.13.1" +property-expr@^2.0.4: + version "2.0.5" + resolved "https://registry.yarnpkg.com/property-expr/-/property-expr-2.0.5.tgz#278bdb15308ae16af3e3b9640024524f4dc02cb4" + integrity sha512-IJUkICM5dP5znhCckHSv30Q4b5/JA5enCtkRHYaOVOAocnH/1BQEYTC5NMfT3AVl/iXKdr3aqQbQn9DxyWknwA== + proto-list@~1.2.1: version "1.2.4" resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" @@ -11245,9 +11133,9 @@ punycode@^1.4.1: integrity sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ== punycode@^2.1.0, punycode@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" - integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + version "2.3.0" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" + integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== q@^1.5.1: version "1.5.1" @@ -11344,14 +11232,13 @@ react-base16-styling@^0.9.1: csstype "^3.0.10" lodash.curry "^4.1.1" -react-dom@^17.0.1: - version "17.0.2" - resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.2.tgz#ecffb6845e3ad8dbfcdc498f0d0a939736502c23" - integrity sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA== +react-dom@^18.2.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" + integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== dependencies: loose-envify "^1.1.0" - object-assign "^4.1.1" - scheduler "^0.20.2" + scheduler "^0.23.0" react-highlighter@^0.4.3: version "0.4.3" @@ -11395,13 +11282,12 @@ react-toastify@^9.0.8: dependencies: clsx "^1.1.1" -react@^17.0.1: - version "17.0.2" - resolved "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz#d0b5cc516d29eb3eee383f75b62864cfb6800037" - integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA== +react@^18.2.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" + integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== dependencies: loose-envify "^1.1.0" - object-assign "^4.1.1" read-cmd-shim@^3.0.0: version "3.0.1" @@ -11501,13 +11387,6 @@ readdir-scoped-modules@^1.1.0: graceful-fs "^4.1.2" once "^1.3.0" -readdirp@~3.6.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" - integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== - dependencies: - picomatch "^2.2.1" - rechoir@^0.7.0: version "0.7.1" resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.7.1.tgz#9478a96a1ca135b5e88fc027f03ee92d6c645686" @@ -11542,12 +11421,12 @@ regenerate@^1.4.2: resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== -regenerator-runtime@^0.13.4: - version "0.13.10" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz#ed07b19616bcbec5da6274ebc75ae95634bfc2ee" - integrity sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw== +regenerator-runtime@^0.13.11: + version "0.13.11" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" + integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== -regenerator-transform@^0.15.0: +regenerator-transform@^0.15.1: version "0.15.1" resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.1.tgz#f6c4e99fc1b4591f780db2586328e4d9a9d8dc56" integrity sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg== @@ -11681,10 +11560,10 @@ resolve-from@^5.0.0: resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== -resolve.exports@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-1.1.0.tgz#5ce842b94b05146c0e03076985d1d0e7e48c90c9" - integrity sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ== +resolve.exports@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-2.0.0.tgz#c1a0028c2d166ec2fbf7d0644584927e76e7400e" + integrity sha512-6K/gDlqgQscOlg9fSRpWstA8sYe8rbELsSTNpx+3kTrsVCzvSl0zIvRErM7fdl9ERWDsKnrLnwB+Ne89918XOg== resolve@^1.10.0, resolve@^1.14.2, resolve@^1.20.0, resolve@^1.9.0: version "1.22.1" @@ -11695,7 +11574,7 @@ resolve@^1.10.0, resolve@^1.14.2, resolve@^1.20.0, resolve@^1.9.0: path-parse "^1.0.7" supports-preserve-symlinks-flag "^1.0.0" -resolve@^2.0.0-next.3: +resolve@^2.0.0-next.4: version "2.0.0-next.4" resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.4.tgz#3d37a113d6429f496ec4752d2a2e58efb1fd4660" integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ== @@ -11822,13 +11701,12 @@ saxes@^6.0.0: dependencies: xmlchars "^2.2.0" -scheduler@^0.20.2: - version "0.20.2" - resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz#4baee39436e34aa93b4874bddcbf0fe8b8b50e91" - integrity sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ== +scheduler@^0.23.0: + version "0.23.0" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe" + integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== dependencies: loose-envify "^1.1.0" - object-assign "^4.1.1" schema-utils@^0.4.0: version "0.4.7" @@ -11847,7 +11725,7 @@ schema-utils@^1.0.0: ajv-errors "^1.0.0" ajv-keywords "^3.1.0" -schema-utils@^2.0.1, schema-utils@^2.6.5: +schema-utils@^2.0.1, schema-utils@^2.6.5, schema-utils@^2.7.0: version "2.7.1" resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.1.tgz#1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7" integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg== @@ -11919,9 +11797,9 @@ send@0.18.0: statuses "2.0.1" serialize-javascript@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8" - integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag== + version "6.0.1" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.1.tgz#b206efb27c3da0b0ab6b52f48d170b7996458e5c" + integrity sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w== dependencies: randombytes "^2.1.0" @@ -11977,9 +11855,9 @@ shebang-regex@^3.0.0: integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== shell-quote@^1.6.1: - version "1.7.4" - resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.4.tgz#33fe15dee71ab2a81fcbd3a52106c5cfb9fb75d8" - integrity sha512-8o/QEhSSRb1a5i7TFR0iM4G16Z0vYB2OQVs4G3aAFXjn3T6yEx8AZxy1PgDF7I00LZHYA3WxaSYIf5e5sAX8Rw== + version "1.8.0" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.0.tgz#20d078d0eaf71d54f43bd2ba14a1b5b9bfa5c8ba" + integrity sha512-QHsz8GgQIGKlRi24yFc6a6lN69Idnx634w49ay6+jA5yFh7a1UY+4Rp6HPx/L/1zcEDPEij8cIsiqR6bQsE5VQ== side-channel@^1.0.4: version "1.0.4" @@ -12115,6 +11993,17 @@ source-map-js@^1.0.2: resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== +source-map-loader@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/source-map-loader/-/source-map-loader-1.0.2.tgz#b0a6582b2eaa387ede1ecf8061ae0b93c23f9eb0" + integrity sha512-oX8d6ndRjN+tVyjj6PlXSyFPhDdVAPsZA30nD3/II8g4uOv8fCz0DMn5sy8KtVbDfKQxOpGwGJnK3xIW3tauDw== + dependencies: + data-urls "^2.0.0" + iconv-lite "^0.6.2" + loader-utils "^2.0.0" + schema-utils "^2.7.0" + source-map "^0.6.1" + source-map-support@0.5.13: version "0.5.13" resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932" @@ -12215,6 +12104,11 @@ statuses@2.0.1: resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== +"statuses@>= 1.5.0 < 2": + version "1.5.0" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" + integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== + steno@^0.4.1: version "0.4.4" resolved "https://registry.yarnpkg.com/steno/-/steno-0.4.4.tgz#071105bdfc286e6615c0403c27e9d7b5dcb855cb" @@ -12267,7 +12161,7 @@ string.prototype.padend@^3.0.0: define-properties "^1.1.4" es-abstract "^1.20.4" -string.prototype.trimend@^1.0.5, string.prototype.trimend@^1.0.6: +string.prototype.trimend@^1.0.6: version "1.0.6" resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533" integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ== @@ -12276,7 +12170,7 @@ string.prototype.trimend@^1.0.5, string.prototype.trimend@^1.0.6: define-properties "^1.1.4" es-abstract "^1.20.4" -string.prototype.trimstart@^1.0.5, string.prototype.trimstart@^1.0.6: +string.prototype.trimstart@^1.0.6: version "1.0.6" resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4" integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA== @@ -12460,9 +12354,9 @@ terser-webpack-plugin@^5.1.3, terser-webpack-plugin@^5.3.6: terser "^5.14.1" terser@^5.14.1: - version "5.15.1" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.15.1.tgz#8561af6e0fd6d839669c73b92bdd5777d870ed6c" - integrity sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw== + version "5.16.3" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.16.3.tgz#3266017a9b682edfe019b8ecddd2abaae7b39c6b" + integrity sha512-v8wWLaS/xt3nE9dgKEWhNUFP6q4kngO5B8eYFUuebsu7Dw/UNAnpUod6UHo04jSSkv8TzKHjZDSd7EXdDQAl8Q== dependencies: "@jridgewell/source-map" "^0.3.2" acorn "^8.5.0" @@ -12508,14 +12402,6 @@ through@2, "through@>=2.2.7 <3", through@^2.3.4, through@^2.3.6: resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== -timers-ext@^0.1.7: - version "0.1.7" - resolved "https://registry.yarnpkg.com/timers-ext/-/timers-ext-0.1.7.tgz#6f57ad8578e07a3fb9f91d9387d65647555e25c6" - integrity sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ== - dependencies: - es5-ext "~0.10.46" - next-tick "1" - tmp@^0.0.33: version "0.0.33" resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" @@ -12559,6 +12445,11 @@ topojson-client@^3.1.0: dependencies: commander "2" +toposort@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/toposort/-/toposort-2.0.2.tgz#ae21768175d1559d48bef35420b2f4962f09c330" + integrity sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg== + totalist@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/totalist/-/totalist-1.1.0.tgz#a4d65a3e546517701e3e5c37a47a70ac97fe56df" @@ -12582,6 +12473,13 @@ tough-cookie@~2.4.3: psl "^1.1.24" punycode "^1.4.1" +tr46@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.1.0.tgz#fa87aa81ca5d5941da8cbf1f9b749dc969a4e240" + integrity sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw== + dependencies: + punycode "^2.1.1" + tr46@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/tr46/-/tr46-3.0.0.tgz#555c4e297a950617e8eeddef633c87d4d9d6cbf9" @@ -12605,14 +12503,14 @@ trim-newlines@^3.0.0: integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw== ts-jest@^29.0.0, ts-jest@^29.0.3: - version "29.0.3" - resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.0.3.tgz#63ea93c5401ab73595440733cefdba31fcf9cb77" - integrity sha512-Ibygvmuyq1qp/z3yTh9QTwVVAbFdDy/+4BtIQR2sp6baF2SJU/8CKK/hhnGIDY2L90Az2jIqTwZPnN2p+BweiQ== + version "29.0.5" + resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.0.5.tgz#c5557dcec8fe434fcb8b70c3e21c6b143bfce066" + integrity sha512-PL3UciSgIpQ7f6XjVOmbi96vmDHUqAyqDr8YxzopDqX3kfgYtX1cuNeBjP+L9sFXi6nzsGGA6R3fP3DDDJyrxA== dependencies: bs-logger "0.x" fast-json-stable-stringify "2.x" jest-util "^29.0.0" - json5 "^2.2.1" + json5 "^2.2.3" lodash.memoize "4.x" make-error "1.x" semver "7.x" @@ -12632,7 +12530,12 @@ tslib@^1.8.1, tslib@^1.9.0: resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== -tslib@^2.1.0, tslib@^2.3.0, tslib@^2.4.0, tslib@~2.4.0: +tslib@^2.1.0, tslib@^2.3.0, tslib@^2.4.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf" + integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg== + +tslib@~2.4.0: version "2.4.1" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.1.tgz#0d0bfbaac2880b91e22df0768e55be9753a5b17e" integrity sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA== @@ -12661,10 +12564,10 @@ tweetnacl@^0.14.3, tweetnacl@~0.14.0: resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" integrity sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA== -typanion@^3.3.1: - version "3.12.0" - resolved "https://registry.yarnpkg.com/typanion/-/typanion-3.12.0.tgz#8352830e5cf26ebfc5832da265886c9fb3ebb323" - integrity sha512-o59ZobUBsG+2dHnGVI2shscqqzHdzCOixCU0t8YXLxM2Su42J2ha7hY9V5+6SIBjVsw6aLqrlYznCgQGJN4Kag== +typanion@^3.8.0: + version "3.12.1" + resolved "https://registry.yarnpkg.com/typanion/-/typanion-3.12.1.tgz#d33deb130aba23ef6f2a3c69e7fb28148dd9089a" + integrity sha512-3SJF/czpzqq6G3lprGFLa6ps12yb1uQ1EmitNnep2fDMNh1aO/Zbq9sWY+3lem0zYb2oHJnQWyabTGUZ+L1ScQ== type-check@^0.4.0, type-check@~0.4.0: version "0.4.0" @@ -12723,16 +12626,6 @@ type-is@~1.6.18: media-typer "0.3.0" mime-types "~2.1.24" -type@^1.0.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/type/-/type-1.2.0.tgz#848dd7698dafa3e54a6c479e759c4bc3f18847a0" - integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg== - -type@^2.7.2: - version "2.7.2" - resolved "https://registry.yarnpkg.com/type/-/type-2.7.2.tgz#2376a15a3a28b1efa0f5350dcf72d24df6ef98d0" - integrity sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw== - typed-array-length@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb" @@ -12755,9 +12648,9 @@ typedarray@^0.0.6: integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== "typescript@^3 || ^4", typescript@~4.9.3: - version "4.9.4" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.4.tgz#a2a3d2756c079abda241d75f149df9d561091e78" - integrity sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg== + version "4.9.5" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a" + integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== typescript@~4.7.3: version "4.7.4" @@ -12773,9 +12666,9 @@ typestyle@^2.0.4: free-style "3.1.0" uglify-js@^3.1.4: - version "3.17.3" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.3.tgz#f0feedf019c4510f164099e8d7e72ff2d7304377" - integrity sha512-JmMFDME3iufZnBpyKL+uS78LRiC+mK55zWfM5f/pWBJfpOttXAqYfdDGRukYhJuyRinvPVAtUhvy7rlDybNtFg== + version "3.17.4" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.4.tgz#61678cf5fa3f5b7eb789bb345df29afb8257c22c" + integrity sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g== unbox-primitive@^1.0.2: version "1.0.2" @@ -12859,7 +12752,7 @@ upath@^2.0.1: resolved "https://registry.yarnpkg.com/upath/-/upath-2.0.1.tgz#50c73dea68d6f6b990f51d279ce6081665d61a8b" integrity sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w== -update-browserslist-db@^1.0.9: +update-browserslist-db@^1.0.10: 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== @@ -13344,20 +13237,20 @@ vega@^5.20.0: vega-voronoi "~4.2.0" vega-wordcloud "~4.1.3" -verdaccio-audit@10.2.3: - version "10.2.3" - resolved "https://registry.yarnpkg.com/verdaccio-audit/-/verdaccio-audit-10.2.3.tgz#a0746541a3bc733174775f75961a9102f551d6b6" - integrity sha512-mXOT6EiB9hK5dMjRTtJlL+hu2YswXuGSw28xOAPyZLWLTASDJy6Zs++o4P/6FyQ03yB0peK2KX7gHZ7APGZk2Q== +verdaccio-audit@10.2.4: + version "10.2.4" + resolved "https://registry.yarnpkg.com/verdaccio-audit/-/verdaccio-audit-10.2.4.tgz#3c1742eedbf338213bb580260efb28c69448cc5c" + integrity sha512-/0H6/JFVnhHwucUfMRVjL6gtGnB5gr3dDxq93Ja1Y0ob+2jxAfpqNMHg8c6/d/ZyHFf0y4tXzHESDruXCzTiaQ== dependencies: body-parser "1.20.1" express "4.18.2" https-proxy-agent "5.0.1" - node-fetch "2.6.7" + node-fetch "2.6.8" -verdaccio-htpasswd@10.5.1: - version "10.5.1" - resolved "https://registry.yarnpkg.com/verdaccio-htpasswd/-/verdaccio-htpasswd-10.5.1.tgz#d49e13dec82d17a1f6aa491285e914e3535467e9" - integrity sha512-DCUOITs+Ta4Hep429BjopYrUw9hEJsJ1mbMP0l9Glan1S2YvTPanhtm5Ahw/joljUlt3xawKz9Gmt1QJujfMew== +verdaccio-htpasswd@10.5.2: + version "10.5.2" + resolved "https://registry.yarnpkg.com/verdaccio-htpasswd/-/verdaccio-htpasswd-10.5.2.tgz#981f39ad1c8a002926469b50927f077fc8676367" + integrity sha512-bO5Wm8w07pWswNvwFWjNEoznuUU37CcfblcrU0Ci8c038EgTu2V47uwh4AyZ4PTK6ps9oxHqA7a1b+83sY0OkA== dependencies: "@verdaccio/file-locking" "10.3.0" apache-md5 "1.1.8" @@ -13365,26 +13258,29 @@ verdaccio-htpasswd@10.5.1: http-errors "2.0.0" unix-crypt-td-js "1.1.4" -verdaccio@^5.13.3: - version "5.19.0" - resolved "https://registry.yarnpkg.com/verdaccio/-/verdaccio-5.19.0.tgz#823bf2db91d89226133338088e2c343ada771371" - integrity sha512-NibY6AXSedA9eer0T6hh9Jmiu3pFHXkmZ/nJR+r5TeLQkn6fbJJ1rTSj4xnjITSHS5lQk9y4E40PYKN7OgoUHg== +verdaccio@^5.19.1: + version "5.20.1" + resolved "https://registry.yarnpkg.com/verdaccio/-/verdaccio-5.20.1.tgz#4bf90b602aac4ef759358744b9e1ef5eff154998" + integrity sha512-zKQXYubQOfl2w09gO9BR7U9ZZkFPPby8tvV+na86/2vGZnY79kNSVnSbK8CM1bpJHTCQ80AGsmIGovg2FgXhdQ== dependencies: - "@verdaccio/commons-api" "10.2.0" + "@verdaccio/config" "6.0.0-6-next.55" + "@verdaccio/core" "6.0.0-6-next.55" "@verdaccio/local-storage" "10.3.1" "@verdaccio/streams" "10.2.0" - "@verdaccio/ui-theme" "6.0.0-6-next.52" + "@verdaccio/tarball" "11.0.0-6-next.24" + "@verdaccio/ui-theme" "6.0.0-6-next.55" + "@verdaccio/url" "11.0.0-6-next.21" + "@verdaccio/utils" "6.0.0-6-next.23" JSONStream "1.3.5" async "3.2.4" body-parser "1.20.1" - clipanion "3.1.0" + clipanion "3.2.0-rc.14" compression "1.7.4" cookies "0.8.0" cors "2.8.5" dayjs "1.11.7" debug "^4.3.4" envinfo "7.8.1" - eslint-import-resolver-node "0.3.6" express "4.18.2" express-rate-limit "5.5.1" fast-safe-stringify "2.1.1" @@ -13396,9 +13292,7 @@ verdaccio@^5.13.3: lodash "4.17.21" lru-cache "7.14.1" lunr-mutable-indexes "2.3.2" - memoizee "0.4.15" mime "3.0.0" - minimatch "5.1.1" mkdirp "1.0.4" mv "2.1.1" pino "6.14.0" @@ -13408,8 +13302,8 @@ verdaccio@^5.13.3: request "2.88.0" semver "7.3.8" validator "13.7.0" - verdaccio-audit "10.2.3" - verdaccio-htpasswd "10.5.1" + verdaccio-audit "10.2.4" + verdaccio-htpasswd "10.5.2" verror@1.10.0: version "1.10.0" @@ -13502,6 +13396,11 @@ webidl-conversions@^3.0.0: resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== +webidl-conversions@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514" + integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w== + webidl-conversions@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-7.0.0.tgz#256b4e1882be7debbf01d05f0aa2039778ea080a" @@ -13581,9 +13480,9 @@ webpack-sources@^3.2.3: integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== webpack@^5.72.0: - version "5.74.0" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.74.0.tgz#02a5dac19a17e0bb47093f2be67c695102a55980" - integrity sha512-A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA== + version "5.75.0" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.75.0.tgz#1e440468647b2505860e94c9ff3e44d5b582c152" + integrity sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ== dependencies: "@types/eslint-scope" "^3.7.3" "@types/estree" "^0.0.51" @@ -13622,6 +13521,11 @@ whatwg-fetch@^3.0.0: resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz#dced24f37f2624ed0281725d51d0e2e3fe677f8c" integrity sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA== +whatwg-mimetype@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" + integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== + whatwg-mimetype@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz#5fa1a7623867ff1af6ca3dc72ad6b8a4208beba7" @@ -13643,6 +13547,15 @@ whatwg-url@^5.0.0: tr46 "~0.0.3" webidl-conversions "^3.0.0" +whatwg-url@^8.0.0: + version "8.7.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.7.0.tgz#656a78e510ff8f3937bc0bcbe9f5c0ac35941b77" + integrity sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg== + dependencies: + lodash "^4.7.0" + tr46 "^2.1.0" + webidl-conversions "^6.1.0" + which-boxed-primitive@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" @@ -13751,6 +13664,14 @@ write-file-atomic@^4.0.0, write-file-atomic@^4.0.1: imurmurhash "^0.1.4" signal-exit "^3.0.7" +write-file-atomic@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-5.0.0.tgz#54303f117e109bf3d540261125c8ea5a7320fab0" + integrity sha512-R7NYMnHSlV42K54lwY9lvW6MnSm1HSJqZL3xiSgi9E7//FYaI74r2G0rd+/X6VAMkHEdzxQaU5HUOXWUz5kA/w== + dependencies: + imurmurhash "^0.1.4" + signal-exit "^3.0.7" + write-json-file@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-3.2.0.tgz#65bbdc9ecd8a1458e15952770ccbadfcff5fe62a" @@ -13797,9 +13718,9 @@ ws@^7.3.1: integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== ws@^8.11.0: - version "8.11.0" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.11.0.tgz#6a0d36b8edfd9f96d8b25683db2f8d7de6e8e143" - integrity sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg== + version "8.12.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.12.0.tgz#485074cc392689da78e1828a9ff23585e06cddd8" + integrity sha512-kU62emKIdKVeEIOIKVegvqpXMSTAMLJozpHZaJNDYqBjzlSYXQGviYwN1osDLJ9av68qHd4a2oSjd7yD4pacig== xml-name-validator@^4.0.0: version "4.0.0" @@ -13821,20 +13742,30 @@ xtend@^4.0.1, xtend@^4.0.2, xtend@~4.0.0, xtend@~4.0.1: resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== -xterm-addon-fit@~0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/xterm-addon-fit/-/xterm-addon-fit-0.5.0.tgz#2d51b983b786a97dcd6cde805e700c7f913bc596" - integrity sha512-DsS9fqhXHacEmsPxBJZvfj2la30Iz9xk+UKjhQgnYNkrUIN5CYLbw7WEfz117c7+S86S/tpHPfvNxJsF5/G8wQ== +xterm-addon-canvas@~0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/xterm-addon-canvas/-/xterm-addon-canvas-0.3.0.tgz#8cfb5a13297f4a31a12870c1119af2c139392b50" + integrity sha512-2deF4ev6T+NjgSM56H+jcAWz4k5viEoaBtuDEyfo5Qdh1r7HOvNzLC45HSeegdH38qmEcL9XIt0KXyOINpSFRA== -xterm-addon-web-links@~0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/xterm-addon-web-links/-/xterm-addon-web-links-0.6.0.tgz#0296cb6c99588847894670d998c9ea6a6aeb26ee" - integrity sha512-H6XzjWWZu8FBo+fnYpxdPk9w5M6drbsvwPEJZGRS38MihiQaVFpKlCMKdfRgDbKGE530tw1yH54rhpZfHgt2/A== +xterm-addon-fit@~0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/xterm-addon-fit/-/xterm-addon-fit-0.7.0.tgz#b8ade6d96e63b47443862088f6670b49fb752c6a" + integrity sha512-tQgHGoHqRTgeROPnvmtEJywLKoC/V9eNs4bLLz7iyJr1aW/QFzRwfd3MGiJ6odJd9xEfxcW36/xRU47JkD5NKQ== + +xterm-addon-web-links@~0.8.0: + version "0.8.0" + resolved "https://registry.yarnpkg.com/xterm-addon-web-links/-/xterm-addon-web-links-0.8.0.tgz#2cb1d57129271022569208578b0bf4774e7e6ea9" + integrity sha512-J4tKngmIu20ytX9SEJjAP3UGksah7iALqBtfTwT9ZnmFHVplCumYQsUJfKuS+JwMhjsjH61YXfndenLNvjRrEw== + +xterm-addon-webgl@~0.14.0: + version "0.14.0" + resolved "https://registry.yarnpkg.com/xterm-addon-webgl/-/xterm-addon-webgl-0.14.0.tgz#bd9136710bd5d130a0a51fd42e6d14ea39348236" + integrity sha512-zcxL4RVVjeS7NNFeKe5HHQI8OUEx3wZpE4EqLoTVipa2UrTR+qLsigo16UEp/yVcYBMhK7tsJ/AJokoEe/f0mw== -xterm@~4.19.0: - version "4.19.0" - resolved "https://registry.yarnpkg.com/xterm/-/xterm-4.19.0.tgz#c0f9d09cd61de1d658f43ca75f992197add9ef6d" - integrity sha512-c3Cp4eOVsYY5Q839dR5IejghRPpxciGmLWWaP9g+ppfMeBChMeLa1DCA+pmX/jyDZ+zxFOmlJL/82qVdayVoGQ== +xterm@~5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/xterm/-/xterm-5.1.0.tgz#3e160d60e6801c864b55adf19171c49d2ff2b4fc" + integrity sha512-LovENH4WDzpwynj+OTkLyZgJPeDom9Gra4DMlGAgz6pZhIDCQ+YuO7yfwanY+gVbn/mmZIStNOnVRU/ikQuAEQ== y-codemirror.next@^0.3.2: version "0.3.2" @@ -13844,9 +13775,9 @@ y-codemirror.next@^0.3.2: lib0 "^0.2.42" y-leveldb@^0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/y-leveldb/-/y-leveldb-0.1.1.tgz#c2c35bc2b12a6c195b807a127c56c7c5a50cc610" - integrity sha512-L8Q0MQmxCQ0qWIOuPzLbWn95TNhrCI7M6LaHnilU4I2IX08e4Dmfg5Tgy4JZ3tnl2aiuZyDOJplHl/msIB/IsA== + version "0.1.2" + resolved "https://registry.yarnpkg.com/y-leveldb/-/y-leveldb-0.1.2.tgz#43f6c5004b6891b57926d8a1e0eb0c883003e34b" + integrity sha512-6ulEn5AXfXJYi89rXPEg2mMHAyyw8+ZfeMMdOtBbV8FJpQ1NOrcgi6DTAcXof0dap84NjHPT2+9d0rb6cFsjEg== dependencies: level "^6.0.1" lib0 "^0.2.31" @@ -13875,11 +13806,21 @@ y18n@^5.0.5: resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== +yallist@^3.0.2: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== + yallist@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== +yaml@2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.2.0.tgz#882c762992888b4144bffdec5745df340627fdd3" + integrity sha512-auf7Gi6QwO7HW//GA9seGvTXVGWl1CM/ADWh1+RxtXr6XOxnT65ovDl9fTi4e0monEyJxCHqDpF6QnFDXmJE4g== + yaml@^1.10.0: version "1.10.2" resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" @@ -13927,9 +13868,9 @@ yargs@^17.3.1, yargs@^17.6.2, yargs@~17.6.0: yargs-parser "^21.1.1" yjs@^13.5.40: - version "13.5.44" - resolved "https://registry.yarnpkg.com/yjs/-/yjs-13.5.44.tgz#1c79ec7407963e07f44174cffcfde5b58a62b0da" - integrity sha512-UL+abIh2lQonqXfaJ+en7z9eGshpY11j1zNLc2kDYs0vrTjee4gZJUXC3ZsuhP6geQt0IRU04epCGRaVPQAVCA== + version "13.5.45" + resolved "https://registry.yarnpkg.com/yjs/-/yjs-13.5.45.tgz#fd30e41371abbc83c07e5c042296f52e041d22fe" + integrity sha512-9VUNDvb9oJHdYSMdzIpdM/agVm+EEFKRN+843CFqQuq5bo/BP3EAaxofRG9jQut3sqtGQT4A9YdQvOeeAjU6aA== dependencies: lib0 "^0.2.49" @@ -13937,3 +13878,16 @@ yocto-queue@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== + +yup@0.32.11: + version "0.32.11" + resolved "https://registry.yarnpkg.com/yup/-/yup-0.32.11.tgz#d67fb83eefa4698607982e63f7ca4c5ed3cf18c5" + integrity sha512-Z2Fe1bn+eLstG8DRR6FTavGD+MeAwyfmouhHsIUgaADz8jvFKbO/fXc2trJKZg+5EBjh4gGm3iU/t3onKlXHIg== + dependencies: + "@babel/runtime" "^7.15.4" + "@types/lodash" "^4.14.175" + lodash "^4.17.21" + lodash-es "^4.17.21" + nanoclone "^0.2.1" + property-expr "^2.0.4" + toposort "^2.0.2"