diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d96f15036b38..56c57d9a7321 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4, 1, 5, "final", 0 +current_version = 4, 1, 6, "final", 0 commit = False tag = False parse = (?P\d+)\,\ (?P\d+)\,\ (?P\d+)\,\ \"(?P\S+)\"\,\ (?P\d+) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 000000000000..304adf777c1b --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,67 @@ +// For format details, see https://aka.ms/devcontainer.json. For config options, see the +// README at: https://github.com/devcontainers/templates/tree/main/src/python +{ + "name": "Python 3", + "build": { + "dockerfile": "../docker/Dockerfile", + "context": "..", + "target": "base" + }, + + // Use 'forwardPorts' to make a list of ports inside the container available locally. + "forwardPorts": [8888], + + // Use 'postCreateCommand' to run commands after the container is created. + // Populate the yarn cache + "postCreateCommand": "micromamba run pip install -e .", + + // Configure tool-specific properties. + "customizations": { + "vscode": { + "extensions": [ + "charliermarsh.ruff", + "dbaeumer.vscode-eslint", + "eamodio.gitlens", + "esbenp.prettier-vscode", + "github.vscode-github-actions", + "github.vscode-pull-request-github", + "meganrogge.template-string-converter", + "ms-python.python", + "streetsidesoftware.code-spell-checker" + ], + "settings": { + "[javascript]": { + "editor.defaultFormatter": "dbaeumer.vscode-eslint", + "editor.tabSize": 2 + }, + "[javascriptreact]": { + "editor.defaultFormatter": "dbaeumer.vscode-eslint", + "editor.tabSize": 2 + }, + "[typescript]": { + "editor.defaultFormatter": "esbenp.prettier-vscode", + "editor.tabSize": 2 + }, + "[typescriptreact]": { + "editor.defaultFormatter": "esbenp.prettier-vscode", + "editor.tabSize": 2 + }, + "[python]": { + "editor.tabSize": 4 + }, + "terminal.integrated.profiles.linux": { + "bash": { + "path": "bash", + "icon": "terminal-bash" + }, + "zsh": { + "path": "zsh" + } + } + } + } + } + + // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. + // "remoteUser": "root" +} diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 88ba7c03034d..392b288b8dc1 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -18,7 +18,7 @@ updates: # Align with pre-commit configuration .pre-commit-config.yaml interval: "monthly" groups: - actions: + pip: patterns: - "*" ignore: diff --git a/.github/workflows/linuxtests.yml b/.github/workflows/linuxtests.yml index d1bf5199621b..1e76368ad1f0 100644 --- a/.github/workflows/linuxtests.yml +++ b/.github/workflows/linuxtests.yml @@ -89,8 +89,7 @@ jobs: uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 with: python_version: "3.8" - - name: Install minimum versions - uses: jupyterlab/maintainer-tools/.github/actions/install-minimums@v1 + dependency_type: minimum - name: Install dependencies run: | bash ./scripts/ci_install.sh diff --git a/.github/workflows/prep-release.yml b/.github/workflows/prep-release.yml index 1853434a0e22..396330bb9729 100644 --- a/.github/workflows/prep-release.yml +++ b/.github/workflows/prep-release.yml @@ -26,6 +26,8 @@ on: jobs: prep_release: runs-on: ubuntu-latest + permissions: + contents: write steps: - uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 @@ -33,11 +35,12 @@ jobs: id: prep-release uses: jupyter-server/jupyter_releaser/.github/actions/prep-release@v2 with: - token: ${{ secrets.ADMIN_GITHUB_TOKEN }} + token: ${{ secrets.GITHUB_TOKEN }} version_spec: ${{ github.event.inputs.version_spec }} + silent: ${{ github.event.inputs.silent }} post_version_spec: ${{ github.event.inputs.post_version_spec }} + target: ${{ github.event.inputs.target }} branch: ${{ github.event.inputs.branch }} - silent: ${{ github.event.inputs.silent }} since: ${{ github.event.inputs.since }} since_last_stable: ${{ github.event.inputs.since_last_stable }} diff --git a/.github/workflows/publish-changelog.yml b/.github/workflows/publish-changelog.yml index ad612f26c1f3..60af4c5f1674 100644 --- a/.github/workflows/publish-changelog.yml +++ b/.github/workflows/publish-changelog.yml @@ -12,13 +12,21 @@ on: jobs: publish_changelog: runs-on: ubuntu-latest + environment: release steps: - uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 + + - uses: actions/create-github-app-token@v1 + id: app-token + with: + app-id: ${{ vars.APP_ID }} + private-key: ${{ secrets.APP_PRIVATE_KEY }} + - name: Publish changelog id: publish-changelog uses: jupyter-server/jupyter_releaser/.github/actions/publish-changelog@v2 with: - token: ${{ secrets.ADMIN_GITHUB_TOKEN }} + token: ${{ steps.app-token.outputs.token }} branch: ${{ github.event.inputs.branch }} - name: "** Next Step **" diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 288b33c6a239..c1881060de28 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -15,18 +15,23 @@ on: jobs: publish_release: runs-on: ubuntu-latest + environment: release permissions: - # This is useful if you want to use PyPI trusted publisher - # and NPM provenance id-token: write steps: - uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 + - uses: actions/create-github-app-token@v1 + id: app-token + with: + app-id: ${{ vars.APP_ID }} + private-key: ${{ secrets.APP_PRIVATE_KEY }} + - name: Populate Release id: populate-release uses: jupyter-server/jupyter_releaser/.github/actions/populate-release@v2 with: - token: ${{ secrets.ADMIN_GITHUB_TOKEN }} + token: ${{ steps.app-token.outputs.token }} branch: ${{ github.event.inputs.branch }} release_url: ${{ github.event.inputs.release_url }} steps_to_skip: ${{ github.event.inputs.steps_to_skip }} @@ -37,7 +42,7 @@ jobs: NPM_TOKEN: ${{ secrets.NPM_TOKEN }} uses: jupyter-server/jupyter_releaser/.github/actions/finalize-release@v2 with: - token: ${{ secrets.ADMIN_GITHUB_TOKEN }} + token: ${{ steps.app-token.outputs.token }} release_url: ${{ steps.populate-release.outputs.release_url }} - name: "** Next Step **" diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ec1c68189a7..03b585900c6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -266,6 +266,46 @@ To ease code migration to JupyterLab 4, developers should review the [migration +## 4.1.6 + +([Full Changelog](https://github.com/jupyterlab/jupyterlab/compare/v4.1.5...5edd1a2f71250022b1f2660235fe41b755d4cc8a)) + +### Bugs fixed + +- Fix outputarea collapse expand [#16124](https://github.com/jupyterlab/jupyterlab/pull/16124) ([@FoSuCloud](https://github.com/FoSuCloud)) +- Disable placeholder for password input [#16128](https://github.com/jupyterlab/jupyterlab/pull/16128) ([@Alanhou1222](https://github.com/Alanhou1222)) +- Fix for existing shortcuts getting triggered while edit shortcut [#16126](https://github.com/jupyterlab/jupyterlab/pull/16126) ([@Susilkessav](https://github.com/Susilkessav)) +- Use `smart` scroll in debugger to minimize distraction [#16084](https://github.com/jupyterlab/jupyterlab/pull/16084) ([@krassowski](https://github.com/krassowski)) +- Store the real position of the item in reactive toolbar [#16111](https://github.com/jupyterlab/jupyterlab/pull/16111) ([@brichet](https://github.com/brichet)) +- Fix extension installation on Windows [#16064](https://github.com/jupyterlab/jupyterlab/pull/16064) ([@fcollonval](https://github.com/fcollonval)) +- Removes dotted outline from active code cell [#16070](https://github.com/jupyterlab/jupyterlab/pull/16070) ([@JasonWeill](https://github.com/JasonWeill)) +- Long items should not wrap [#15844](https://github.com/jupyterlab/jupyterlab/pull/15844) ([@mdietz94](https://github.com/mdietz94)) +- Fix manager isDisposed is not set [#15997](https://github.com/jupyterlab/jupyterlab/pull/15997) ([@fcollonval](https://github.com/fcollonval)) + +### Maintenance and upkeep improvements + +- Bump semver from 5.7.1 to 7.6.0 [#16121](https://github.com/jupyterlab/jupyterlab/pull/16121) ([@dependabot\[bot\]](https://github.com/apps/dependabot)) +- Revert traitlets pin [#16118](https://github.com/jupyterlab/jupyterlab/pull/16118) ([@krassowski](https://github.com/krassowski)) +- Use `dependency_type: minimum` for Minimum Versions check [#16105](https://github.com/jupyterlab/jupyterlab/pull/16105) ([@krassowski](https://github.com/krassowski)) +- Fix migration script, use extras for its dependencies [#16088](https://github.com/jupyterlab/jupyterlab/pull/16088) ([@krassowski](https://github.com/krassowski)) +- Add devcontainer [#15909](https://github.com/jupyterlab/jupyterlab/pull/15909) ([@fcollonval](https://github.com/fcollonval)) +- Update Release Scripts [#15973](https://github.com/jupyterlab/jupyterlab/pull/15973) ([@blink1073](https://github.com/blink1073)) +- Adjust search test assertion to allow both Node 18 and 20+ [#16024](https://github.com/jupyterlab/jupyterlab/pull/16024) ([@krassowski](https://github.com/krassowski)) + +### Documentation improvements + +- Fix migration script, use extras for its dependencies [#16088](https://github.com/jupyterlab/jupyterlab/pull/16088) ([@krassowski](https://github.com/krassowski)) +- Fix missing backtick in plugin manager docs [#16083](https://github.com/jupyterlab/jupyterlab/pull/16083) ([@krassowski](https://github.com/krassowski)) +- Add devcontainer [#15909](https://github.com/jupyterlab/jupyterlab/pull/15909) ([@fcollonval](https://github.com/fcollonval)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyterlab/jupyterlab/graphs/contributors?from=2024-03-14&to=2024-04-08&type=c)) + +[@afshin](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Aafshin+updated%3A2024-03-14..2024-04-08&type=Issues) | [@brichet](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Abrichet+updated%3A2024-03-14..2024-04-08&type=Issues) | [@fcollonval](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Afcollonval+updated%3A2024-03-14..2024-04-08&type=Issues) | [@gabalafou](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Agabalafou+updated%3A2024-03-14..2024-04-08&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Agithub-actions+updated%3A2024-03-14..2024-04-08&type=Issues) | [@JasonWeill](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3AJasonWeill+updated%3A2024-03-14..2024-04-08&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ajtpio+updated%3A2024-03-14..2024-04-08&type=Issues) | [@jupyterlab-probot](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ajupyterlab-probot+updated%3A2024-03-14..2024-04-08&type=Issues) | [@krassowski](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Akrassowski+updated%3A2024-03-14..2024-04-08&type=Issues) | [@lumberbot-app](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Alumberbot-app+updated%3A2024-03-14..2024-04-08&type=Issues) | [@meeseeksmachine](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ameeseeksmachine+updated%3A2024-03-14..2024-04-08&type=Issues) | [@Mehak261124](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3AMehak261124+updated%3A2024-03-14..2024-04-08&type=Issues) | [@RRosio](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3ARRosio+updated%3A2024-03-14..2024-04-08&type=Issues) | [@trungleduc](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Atrungleduc+updated%3A2024-03-14..2024-04-08&type=Issues) | [@welcome](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Awelcome+updated%3A2024-03-14..2024-04-08&type=Issues) + + + ## 4.1.5 ([Full Changelog](https://github.com/jupyterlab/jupyterlab/compare/v4.1.4...a5fa0aa9ba3b561f116d9b4d2e9bf775f95b67a1)) @@ -290,8 +330,6 @@ To ease code migration to JupyterLab 4, developers should review the [migration [@andrii-i](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Aandrii-i+updated%3A2024-03-07..2024-03-14&type=Issues) | [@brichet](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Abrichet+updated%3A2024-03-07..2024-03-14&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ajtpio+updated%3A2024-03-07..2024-03-14&type=Issues) | [@jupyterlab-probot](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ajupyterlab-probot+updated%3A2024-03-07..2024-03-14&type=Issues) | [@krassowski](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Akrassowski+updated%3A2024-03-07..2024-03-14&type=Issues) | [@linlol](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Alinlol+updated%3A2024-03-07..2024-03-14&type=Issues) | [@meeseeksmachine](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ameeseeksmachine+updated%3A2024-03-07..2024-03-14&type=Issues) | [@welcome](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Awelcome+updated%3A2024-03-07..2024-03-14&type=Issues) - - ## 4.1.4 ([Full Changelog](https://github.com/jupyterlab/jupyterlab/compare/v4.1.3...3eab4adc3053485cacfefc02dd5e8bc6fb256442)) diff --git a/builder/package.json b/builder/package.json index 72d207261efd..595dd15a4feb 100644 --- a/builder/package.json +++ b/builder/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/builder", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Extension Builder", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { diff --git a/buildutils/package.json b/buildutils/package.json index be6ef0f49782..1e1991bc5563 100644 --- a/buildutils/package.json +++ b/buildutils/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/buildutils", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Build Utilities", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { diff --git a/buildutils/template/package.json b/buildutils/template/package.json index ad4993093698..5960600c81f3 100644 --- a/buildutils/template/package.json +++ b/buildutils/template/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/template", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Package Template", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,7 +37,7 @@ "watch": "tsc -b --watch" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "rimraf": "~5.0.5", "typescript": "~5.1.6" diff --git a/dev_mode/package.json b/dev_mode/package.json index 813a3deb6753..1be204d761a6 100644 --- a/dev_mode/package.json +++ b/dev_mode/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/application-top", - "version": "4.1.5", + "version": "4.1.6", "private": true, "license": "BSD-3-Clause", "scripts": { @@ -23,101 +23,101 @@ "@jupyter/react-components": "~0.13.3", "@jupyter/web-components": "~0.13.3", "@jupyter/ydoc": "~1.1.1", - "@jupyterlab/application": "~4.1.5", - "@jupyterlab/application-extension": "~4.1.5", - "@jupyterlab/apputils": "~4.2.5", - "@jupyterlab/apputils-extension": "~4.1.5", - "@jupyterlab/attachments": "~4.1.5", - "@jupyterlab/cell-toolbar": "~4.1.5", - "@jupyterlab/cell-toolbar-extension": "~4.1.5", - "@jupyterlab/cells": "~4.1.5", - "@jupyterlab/celltags-extension": "~4.1.5", - "@jupyterlab/codeeditor": "~4.1.5", - "@jupyterlab/codemirror": "~4.1.5", - "@jupyterlab/codemirror-extension": "~4.1.5", - "@jupyterlab/completer": "~4.1.5", - "@jupyterlab/completer-extension": "~4.1.5", - "@jupyterlab/console": "~4.1.5", - "@jupyterlab/console-extension": "~4.1.5", - "@jupyterlab/coreutils": "~6.1.5", - "@jupyterlab/csvviewer": "~4.1.5", - "@jupyterlab/csvviewer-extension": "~4.1.5", - "@jupyterlab/debugger": "~4.1.5", - "@jupyterlab/debugger-extension": "~4.1.5", - "@jupyterlab/docmanager": "~4.1.5", - "@jupyterlab/docmanager-extension": "~4.1.5", - "@jupyterlab/docregistry": "~4.1.5", - "@jupyterlab/documentsearch": "~4.1.5", - "@jupyterlab/documentsearch-extension": "~4.1.5", - "@jupyterlab/extensionmanager": "~4.1.5", - "@jupyterlab/extensionmanager-extension": "~4.1.5", - "@jupyterlab/filebrowser": "~4.1.5", - "@jupyterlab/filebrowser-extension": "~4.1.5", - "@jupyterlab/fileeditor": "~4.1.5", - "@jupyterlab/fileeditor-extension": "~4.1.5", - "@jupyterlab/help-extension": "~4.1.5", - "@jupyterlab/htmlviewer": "~4.1.5", - "@jupyterlab/htmlviewer-extension": "~4.1.5", - "@jupyterlab/hub-extension": "~4.1.5", - "@jupyterlab/imageviewer": "~4.1.5", - "@jupyterlab/imageviewer-extension": "~4.1.5", - "@jupyterlab/inspector": "~4.1.5", - "@jupyterlab/inspector-extension": "~4.1.5", - "@jupyterlab/javascript-extension": "~4.1.5", - "@jupyterlab/json-extension": "~4.1.5", - "@jupyterlab/launcher": "~4.1.5", - "@jupyterlab/launcher-extension": "~4.1.5", - "@jupyterlab/logconsole": "~4.1.5", - "@jupyterlab/logconsole-extension": "~4.1.5", - "@jupyterlab/lsp": "~4.1.5", - "@jupyterlab/lsp-extension": "~4.1.5", - "@jupyterlab/mainmenu": "~4.1.5", - "@jupyterlab/mainmenu-extension": "~4.1.5", - "@jupyterlab/markdownviewer": "~4.1.5", - "@jupyterlab/markdownviewer-extension": "~4.1.5", - "@jupyterlab/markedparser-extension": "~4.1.5", - "@jupyterlab/mathjax-extension": "~4.1.5", - "@jupyterlab/mermaid": "~4.1.5", - "@jupyterlab/mermaid-extension": "~4.1.5", - "@jupyterlab/metadataform": "~4.1.5", - "@jupyterlab/metadataform-extension": "~4.1.5", - "@jupyterlab/metapackage": "~4.1.5", - "@jupyterlab/nbconvert-css": "~4.1.5", - "@jupyterlab/nbformat": "~4.1.5", - "@jupyterlab/notebook": "~4.1.5", - "@jupyterlab/notebook-extension": "~4.1.5", - "@jupyterlab/observables": "~5.1.5", - "@jupyterlab/outputarea": "~4.1.5", - "@jupyterlab/pdf-extension": "~4.1.5", - "@jupyterlab/pluginmanager": "~4.1.5", - "@jupyterlab/pluginmanager-extension": "~4.1.5", - "@jupyterlab/property-inspector": "~4.1.5", - "@jupyterlab/rendermime": "~4.1.5", - "@jupyterlab/rendermime-extension": "~4.1.5", - "@jupyterlab/rendermime-interfaces": "~3.9.5", - "@jupyterlab/running": "~4.1.5", - "@jupyterlab/running-extension": "~4.1.5", + "@jupyterlab/application": "~4.1.6", + "@jupyterlab/application-extension": "~4.1.6", + "@jupyterlab/apputils": "~4.2.6", + "@jupyterlab/apputils-extension": "~4.1.6", + "@jupyterlab/attachments": "~4.1.6", + "@jupyterlab/cell-toolbar": "~4.1.6", + "@jupyterlab/cell-toolbar-extension": "~4.1.6", + "@jupyterlab/cells": "~4.1.6", + "@jupyterlab/celltags-extension": "~4.1.6", + "@jupyterlab/codeeditor": "~4.1.6", + "@jupyterlab/codemirror": "~4.1.6", + "@jupyterlab/codemirror-extension": "~4.1.6", + "@jupyterlab/completer": "~4.1.6", + "@jupyterlab/completer-extension": "~4.1.6", + "@jupyterlab/console": "~4.1.6", + "@jupyterlab/console-extension": "~4.1.6", + "@jupyterlab/coreutils": "~6.1.6", + "@jupyterlab/csvviewer": "~4.1.6", + "@jupyterlab/csvviewer-extension": "~4.1.6", + "@jupyterlab/debugger": "~4.1.6", + "@jupyterlab/debugger-extension": "~4.1.6", + "@jupyterlab/docmanager": "~4.1.6", + "@jupyterlab/docmanager-extension": "~4.1.6", + "@jupyterlab/docregistry": "~4.1.6", + "@jupyterlab/documentsearch": "~4.1.6", + "@jupyterlab/documentsearch-extension": "~4.1.6", + "@jupyterlab/extensionmanager": "~4.1.6", + "@jupyterlab/extensionmanager-extension": "~4.1.6", + "@jupyterlab/filebrowser": "~4.1.6", + "@jupyterlab/filebrowser-extension": "~4.1.6", + "@jupyterlab/fileeditor": "~4.1.6", + "@jupyterlab/fileeditor-extension": "~4.1.6", + "@jupyterlab/help-extension": "~4.1.6", + "@jupyterlab/htmlviewer": "~4.1.6", + "@jupyterlab/htmlviewer-extension": "~4.1.6", + "@jupyterlab/hub-extension": "~4.1.6", + "@jupyterlab/imageviewer": "~4.1.6", + "@jupyterlab/imageviewer-extension": "~4.1.6", + "@jupyterlab/inspector": "~4.1.6", + "@jupyterlab/inspector-extension": "~4.1.6", + "@jupyterlab/javascript-extension": "~4.1.6", + "@jupyterlab/json-extension": "~4.1.6", + "@jupyterlab/launcher": "~4.1.6", + "@jupyterlab/launcher-extension": "~4.1.6", + "@jupyterlab/logconsole": "~4.1.6", + "@jupyterlab/logconsole-extension": "~4.1.6", + "@jupyterlab/lsp": "~4.1.6", + "@jupyterlab/lsp-extension": "~4.1.6", + "@jupyterlab/mainmenu": "~4.1.6", + "@jupyterlab/mainmenu-extension": "~4.1.6", + "@jupyterlab/markdownviewer": "~4.1.6", + "@jupyterlab/markdownviewer-extension": "~4.1.6", + "@jupyterlab/markedparser-extension": "~4.1.6", + "@jupyterlab/mathjax-extension": "~4.1.6", + "@jupyterlab/mermaid": "~4.1.6", + "@jupyterlab/mermaid-extension": "~4.1.6", + "@jupyterlab/metadataform": "~4.1.6", + "@jupyterlab/metadataform-extension": "~4.1.6", + "@jupyterlab/metapackage": "~4.1.6", + "@jupyterlab/nbconvert-css": "~4.1.6", + "@jupyterlab/nbformat": "~4.1.6", + "@jupyterlab/notebook": "~4.1.6", + "@jupyterlab/notebook-extension": "~4.1.6", + "@jupyterlab/observables": "~5.1.6", + "@jupyterlab/outputarea": "~4.1.6", + "@jupyterlab/pdf-extension": "~4.1.6", + "@jupyterlab/pluginmanager": "~4.1.6", + "@jupyterlab/pluginmanager-extension": "~4.1.6", + "@jupyterlab/property-inspector": "~4.1.6", + "@jupyterlab/rendermime": "~4.1.6", + "@jupyterlab/rendermime-extension": "~4.1.6", + "@jupyterlab/rendermime-interfaces": "~3.9.6", + "@jupyterlab/running": "~4.1.6", + "@jupyterlab/running-extension": "~4.1.6", "@jupyterlab/services": "../packages/services", - "@jupyterlab/settingeditor": "~4.1.5", - "@jupyterlab/settingeditor-extension": "~4.1.5", - "@jupyterlab/settingregistry": "~4.1.5", - "@jupyterlab/shortcuts-extension": "~4.1.5", - "@jupyterlab/statedb": "~4.1.5", - "@jupyterlab/statusbar": "~4.1.5", - "@jupyterlab/statusbar-extension": "~4.1.5", - "@jupyterlab/terminal": "~4.1.5", - "@jupyterlab/terminal-extension": "~4.1.5", - "@jupyterlab/theme-dark-extension": "~4.1.5", - "@jupyterlab/theme-light-extension": "~4.1.5", - "@jupyterlab/toc": "~6.1.5", - "@jupyterlab/toc-extension": "~6.1.5", - "@jupyterlab/tooltip": "~4.1.5", - "@jupyterlab/tooltip-extension": "~4.1.5", - "@jupyterlab/translation": "~4.1.5", - "@jupyterlab/translation-extension": "~4.1.5", - "@jupyterlab/ui-components": "~4.1.5", - "@jupyterlab/ui-components-extension": "~4.1.5", - "@jupyterlab/vega5-extension": "~4.1.5", + "@jupyterlab/settingeditor": "~4.1.6", + "@jupyterlab/settingeditor-extension": "~4.1.6", + "@jupyterlab/settingregistry": "~4.1.6", + "@jupyterlab/shortcuts-extension": "~4.1.6", + "@jupyterlab/statedb": "~4.1.6", + "@jupyterlab/statusbar": "~4.1.6", + "@jupyterlab/statusbar-extension": "~4.1.6", + "@jupyterlab/terminal": "~4.1.6", + "@jupyterlab/terminal-extension": "~4.1.6", + "@jupyterlab/theme-dark-extension": "~4.1.6", + "@jupyterlab/theme-light-extension": "~4.1.6", + "@jupyterlab/toc": "~6.1.6", + "@jupyterlab/toc-extension": "~6.1.6", + "@jupyterlab/tooltip": "~4.1.6", + "@jupyterlab/tooltip-extension": "~4.1.6", + "@jupyterlab/translation": "~4.1.6", + "@jupyterlab/translation-extension": "~4.1.6", + "@jupyterlab/ui-components": "~4.1.6", + "@jupyterlab/ui-components-extension": "~4.1.6", + "@jupyterlab/vega5-extension": "~4.1.6", "@lezer/common": "^1.0.0", "@lezer/highlight": "^1.0.0", "@lumino/algorithm": "^2.0.0", @@ -142,58 +142,58 @@ "yjs": "^13.5.40" }, "dependencies": { - "@jupyterlab/application": "~4.1.5", - "@jupyterlab/application-extension": "~4.1.5", - "@jupyterlab/apputils-extension": "~4.1.5", - "@jupyterlab/cell-toolbar-extension": "~4.1.5", - "@jupyterlab/celltags-extension": "~4.1.5", - "@jupyterlab/codemirror-extension": "~4.1.5", - "@jupyterlab/completer-extension": "~4.1.5", - "@jupyterlab/console-extension": "~4.1.5", - "@jupyterlab/coreutils": "~6.1.5", - "@jupyterlab/csvviewer-extension": "~4.1.5", - "@jupyterlab/debugger-extension": "~4.1.5", - "@jupyterlab/docmanager-extension": "~4.1.5", - "@jupyterlab/documentsearch-extension": "~4.1.5", - "@jupyterlab/extensionmanager-extension": "~4.1.5", - "@jupyterlab/filebrowser-extension": "~4.1.5", - "@jupyterlab/fileeditor-extension": "~4.1.5", - "@jupyterlab/help-extension": "~4.1.5", - "@jupyterlab/htmlviewer-extension": "~4.1.5", - "@jupyterlab/hub-extension": "~4.1.5", - "@jupyterlab/imageviewer-extension": "~4.1.5", - "@jupyterlab/inspector-extension": "~4.1.5", - "@jupyterlab/javascript-extension": "~4.1.5", - "@jupyterlab/json-extension": "~4.1.5", - "@jupyterlab/launcher-extension": "~4.1.5", - "@jupyterlab/logconsole-extension": "~4.1.5", - "@jupyterlab/lsp-extension": "~4.1.5", - "@jupyterlab/mainmenu-extension": "~4.1.5", - "@jupyterlab/markdownviewer-extension": "~4.1.5", - "@jupyterlab/markedparser-extension": "~4.1.5", - "@jupyterlab/mathjax-extension": "~4.1.5", - "@jupyterlab/mermaid-extension": "~4.1.5", - "@jupyterlab/metadataform-extension": "~4.1.5", - "@jupyterlab/notebook-extension": "~4.1.5", - "@jupyterlab/pdf-extension": "~4.1.5", - "@jupyterlab/pluginmanager-extension": "~4.1.5", - "@jupyterlab/rendermime-extension": "~4.1.5", - "@jupyterlab/running-extension": "~4.1.5", - "@jupyterlab/settingeditor-extension": "~4.1.5", - "@jupyterlab/shortcuts-extension": "~4.1.5", - "@jupyterlab/statusbar-extension": "~4.1.5", - "@jupyterlab/terminal-extension": "~4.1.5", - "@jupyterlab/theme-dark-extension": "~4.1.5", - "@jupyterlab/theme-light-extension": "~4.1.5", - "@jupyterlab/toc-extension": "~6.1.5", - "@jupyterlab/tooltip-extension": "~4.1.5", - "@jupyterlab/translation-extension": "~4.1.5", - "@jupyterlab/ui-components-extension": "~4.1.5", - "@jupyterlab/vega5-extension": "~4.1.5" + "@jupyterlab/application": "~4.1.6", + "@jupyterlab/application-extension": "~4.1.6", + "@jupyterlab/apputils-extension": "~4.1.6", + "@jupyterlab/cell-toolbar-extension": "~4.1.6", + "@jupyterlab/celltags-extension": "~4.1.6", + "@jupyterlab/codemirror-extension": "~4.1.6", + "@jupyterlab/completer-extension": "~4.1.6", + "@jupyterlab/console-extension": "~4.1.6", + "@jupyterlab/coreutils": "~6.1.6", + "@jupyterlab/csvviewer-extension": "~4.1.6", + "@jupyterlab/debugger-extension": "~4.1.6", + "@jupyterlab/docmanager-extension": "~4.1.6", + "@jupyterlab/documentsearch-extension": "~4.1.6", + "@jupyterlab/extensionmanager-extension": "~4.1.6", + "@jupyterlab/filebrowser-extension": "~4.1.6", + "@jupyterlab/fileeditor-extension": "~4.1.6", + "@jupyterlab/help-extension": "~4.1.6", + "@jupyterlab/htmlviewer-extension": "~4.1.6", + "@jupyterlab/hub-extension": "~4.1.6", + "@jupyterlab/imageviewer-extension": "~4.1.6", + "@jupyterlab/inspector-extension": "~4.1.6", + "@jupyterlab/javascript-extension": "~4.1.6", + "@jupyterlab/json-extension": "~4.1.6", + "@jupyterlab/launcher-extension": "~4.1.6", + "@jupyterlab/logconsole-extension": "~4.1.6", + "@jupyterlab/lsp-extension": "~4.1.6", + "@jupyterlab/mainmenu-extension": "~4.1.6", + "@jupyterlab/markdownviewer-extension": "~4.1.6", + "@jupyterlab/markedparser-extension": "~4.1.6", + "@jupyterlab/mathjax-extension": "~4.1.6", + "@jupyterlab/mermaid-extension": "~4.1.6", + "@jupyterlab/metadataform-extension": "~4.1.6", + "@jupyterlab/notebook-extension": "~4.1.6", + "@jupyterlab/pdf-extension": "~4.1.6", + "@jupyterlab/pluginmanager-extension": "~4.1.6", + "@jupyterlab/rendermime-extension": "~4.1.6", + "@jupyterlab/running-extension": "~4.1.6", + "@jupyterlab/settingeditor-extension": "~4.1.6", + "@jupyterlab/shortcuts-extension": "~4.1.6", + "@jupyterlab/statusbar-extension": "~4.1.6", + "@jupyterlab/terminal-extension": "~4.1.6", + "@jupyterlab/theme-dark-extension": "~4.1.6", + "@jupyterlab/theme-light-extension": "~4.1.6", + "@jupyterlab/toc-extension": "~6.1.6", + "@jupyterlab/tooltip-extension": "~4.1.6", + "@jupyterlab/translation-extension": "~4.1.6", + "@jupyterlab/ui-components-extension": "~4.1.6", + "@jupyterlab/vega5-extension": "~4.1.6" }, "devDependencies": { - "@jupyterlab/builder": "^4.1.5", - "@jupyterlab/buildutils": "^4.1.5", + "@jupyterlab/builder": "^4.1.6", + "@jupyterlab/buildutils": "^4.1.6", "chokidar": "^3.4.0", "css-loader": "^6.7.1", "duplicate-package-checker-webpack-plugin": "^3.0.0", @@ -222,7 +222,7 @@ }, "jupyterlab": { "name": "JupyterLab", - "version": "4.1.5", + "version": "4.1.6", "extensions": { "@jupyterlab/application-extension": "", "@jupyterlab/apputils-extension": "", diff --git a/docker/Dockerfile b/docker/Dockerfile index 766c7d045e5d..06feb357aefc 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,13 +1,12 @@ # Copyright (c) Jupyter Development Team. # Distributed under the terms of the Modified BSD License. -FROM --platform=linux/amd64 mambaorg/micromamba:1.5.5-jammy +FROM --platform=linux/amd64 mambaorg/micromamba:1.5.5-jammy as base # Create new user ARG NEW_MAMBA_USER_ID=57440 ARG NEW_MAMBA_USER_GID=57440 - USER root RUN if grep -q '^ID=alpine$' /etc/os-release; then \ @@ -28,20 +27,35 @@ RUN if grep -q '^ID=alpine$' /etc/os-release; then \ USER $MAMBA_USER +# Add the pip user installation path +ENV PATH="/home/${MAMBA_USER}/.local/bin:${PATH}" + +# Install base dev tools with conda +RUN --mount=type=cache,target=/jupyterlab/conda-cache,uid=${NEW_MAMBA_USER_ID},gid=${NEW_MAMBA_USER_GID} \ + CONDA_PKGS_DIRS="/jupyterlab/conda-cache" micromamba install -c nodefaults -c conda-forge -yn base nodejs=20.1 yarn=3 git python=3 + WORKDIR /home/$MAMBA_USER/jupyterlab_cache -COPY --chown=$MAMBA_USER:$MAMBA_USER docker/environment.yml ./docker/environment.yml +COPY --chown=$MAMBA_USER:$MAMBA_USER pyproject.toml LICENSE README.md ./ +COPY --chown=$MAMBA_USER:$MAMBA_USER jupyterlab/_version.py ./jupyterlab/_version.py -RUN micromamba install -n base -c conda-forge git rsync -y && micromamba install -y -n base -f ./docker/environment.yml && micromamba clean --all --yes +# Install all python dependencies only with pip to maximize using its cache +RUN --mount=type=cache,target=/jupyterlab/pip-cache,uid=${NEW_MAMBA_USER_ID},gid=${NEW_MAMBA_USER_GID} \ + PIP_CACHE_DIR="/jupyterlab/pip-cache" SKIP_JUPYTER_BUILDER=1 micromamba run python -m pip install -e ".[dev,docs,test]" && \ + cd / && \ + rm -rf /home/$MAMBA_USER/jupyterlab_cache -COPY --chown=$MAMBA_USER:$MAMBA_USER . . +EXPOSE 8888 -RUN micromamba run jlpm install +FROM base as dev -WORKDIR /home/$MAMBA_USER/jupyterlab +COPY --chown=$MAMBA_USER:$MAMBA_USER . . -RUN micromamba run rsync -ar /home/$MAMBA_USER/jupyterlab_cache/. /home/$MAMBA_USER/jupyterlab && micromamba run python -m pip install -e ".[dev,docs,test]" +# Build the cache in /home/$MAMBA_USER/jupyterlab_cache +RUN micromamba run yarn install -EXPOSE 8888 +WORKDIR /home/$MAMBA_USER/jupyterlab -WORKDIR /home/$MAMBA_USER/jupyterlab +RUN micromamba install -n base -c conda-forge rsync -y && \ + micromamba run rsync -ar /home/$MAMBA_USER/jupyterlab_cache/. /home/$MAMBA_USER/jupyterlab && \ + micromamba run python -m pip install -e "." diff --git a/docker/environment.yml b/docker/environment.yml deleted file mode 100644 index 543e566069d4..000000000000 --- a/docker/environment.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: base - -channels: - - conda-forge - - nodefaults - -dependencies: - # runtimes - - nodejs ==20.1 - - python =3.11 - # package managers - - pip - - yarn >=3,<4 - # build - - hatch-jupyter-builder >=0.3.2 - - hatchling >=1.5.0 - - jupyterlab >=4,<5 diff --git a/docs/source/developer/contributing.rst b/docs/source/developer/contributing.rst index 307e2e0c6312..9a0e8e054edc 100644 --- a/docs/source/developer/contributing.rst +++ b/docs/source/developer/contributing.rst @@ -279,13 +279,17 @@ Contributing from within the browser Contributing to JupyterLab codebase is also possible without setting up a local environment, directly from the Web browser: -- `Gitpod `__ integration is enabled, - however it is not actively maintained, +- GitHub's + `codespace `__ + is available (free account have + `limited monthly resources `__). - GitHub's `built-in editor `__ is suitable for contributing very small fixes, - more advanced `github.dev `__ editor can be accessed by pressing the dot (``.``) key while in the JupyterLab GitHub repository, +- `Gitpod `__ integration is enabled, + however it is not actively maintained, - `jupyterlab-playground `__, allows to prototype JupyterLab extensions from within JupyterLab and can be run without installation in the browser using Binder. @@ -302,8 +306,15 @@ about 7 minutes again. Setting up a local development environment ------------------------------------------ + +.. note:: + + Look at the :ref:`automated dev environment ` section, + for some automation ways to set up a local development environment. + This section explains how to set up a local development environment. We assume you use GNU/Linux, -macOS, or Windows Subsystem for Linux. If using Windows, we recommend installing `Anaconda for windows `__ and then using the Anaconda command prompt for all installation steps. +macOS, or Windows Subsystem for Linux. If using Windows, we recommend installing `Anaconda for windows `__ +and then using the Anaconda command prompt for all installation steps. Installing Node.js and jlpm ^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -352,19 +363,48 @@ With Homebrew: brew install pkg-config cairo pango libpng jpeg giflib librsvg +.. _automatic_local_dev_env: + Using automation to set up a local development environment ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -While there is a lot to learn by following the steps above, they can be automated to save time. The main advantages of using automation are: reduced time to get the environment up-and-running, reduced time to +While there is a lot to learn by following the steps above, they can be automated to save time. +The main advantages of using automation are: reduced time to get the environment up-and-running, reduced time to re-build the environment, better standardisation ("baseline", reproducible environments). -This section shows how to do that using Docker and Vagrant. +This section shows how to do that using VS Code dev containers, Docker and Vagrant. + +**Setup for VS Code** +""""""""""""""""""""" + +To start a local development environment for JupyterLab using VS Code dev containers, +you need to: + +1. Install the VS Code `Dev Containers extension `__. + +2. Fork the JupyterLab `repository `__. + +3. Clone your fork locally: + +.. code:: bash + + git clone https://github.com//jupyterlab.git + +4. Open the local clone with VS Code. + +5. Open the repository in a container. + VS Code should prompt you with a pop-up to do so. In case it does not, you can click on the + icon ``><`` on the bottom left. Then choose *Reopen in container*. + +.. note:: + + It will take quite some times the first time. **Setup using Docker** -"""""""""""""""""""""""" +"""""""""""""""""""""" To start a JupyterLab development container in a UNIX system with docker installed: -1. Fork the JupyterLab `repository `__. +1. Fork the JupyterLab `repository `__. 2. Start the container: @@ -401,7 +441,7 @@ To add TypeScript dependencies to the project, you need to log into the containe bash docker/start.sh build **Setup using Vagrant** -"""""""""""""""""""""""""""" +""""""""""""""""""""""" A practical example can be found `there `_ and includes a ``Vagrantfile``, the bootstrap files and additional documentation. diff --git a/docs/source/extension/extension_migration.rst b/docs/source/extension/extension_migration.rst index 279d301e31ce..76226c861783 100644 --- a/docs/source/extension/extension_migration.rst +++ b/docs/source/extension/extension_migration.rst @@ -146,15 +146,14 @@ First, make sure to update to JupyterLab 4 and install ``copier`` and some depen .. code:: bash - pip install -U jupyterlab - pip install "copier~=8.0" jinja2-time tomli-w + pip install -U jupyterlab[upgrade-extension] Or with ``conda``: .. code:: bash - conda install -c conda-forge jupyterlab=4 "copier=8" jinja2-time tomli-w + conda install -c conda-forge jupyterlab=4 "copier=8" jinja2-time tomli-w "pydantic<2" "pyyaml-include<2.0" Then at the root folder of the extension, run: diff --git a/docs/source/user/extensions.rst b/docs/source/user/extensions.rst index 236ed2558616..f9ee830a95a2 100644 --- a/docs/source/user/extensions.rst +++ b/docs/source/user/extensions.rst @@ -380,7 +380,7 @@ running the ``jupyter labextension enable`` or ``jupyter labextension disable`` Plugins can be enabled/disabled on ``system``, ``sys-prefix`` (default) or ``user`` level, which influences where the ``page_config.json`` configuration -file is written to (see ``config` section in results of ``jupyter --paths``). +file is written to (see ``config`` section in results of ``jupyter --paths``). To change the level for the plugin manager and the default extension manager use ``PluginManager.level`` trait (extension manager inherits from plugin manager). diff --git a/docs/source/user/lsp.rst b/docs/source/user/lsp.rst index 35268a4442a7..e76b51325987 100644 --- a/docs/source/user/lsp.rst +++ b/docs/source/user/lsp.rst @@ -4,95 +4,27 @@ .. _lsp: Language Server Protocol support -===================================== +================================ .. warning:: - Language Server Protocol (LSP) support for JupyterLab is an experimental feature. It is based on the `jupyterlab-lsp `_ extension. More detailed documentation can be found on their page. + As of JupyterLab 4.2, there is no user-facing integration of Language Server Protocol (LSP); to take advantage of LSP you need to install an extension, such as `jupyterlab-lsp `_. -JupyterLab 4.0 ships with components on both backend and frontend to lay the infrastructure for handling and communicating with language servers. - -This means that other extensions can be built on top of JupyterLab's services to provide LSP features for notebooks and files. +JupyterLab ships with components enabling extensions to handle and communicate with language servers. The LSP service is disabled by default, it can be enabled by togging the *Activate* option in the *Language Servers* section of the setting page. +Enabling the service will not have any effect unless extensions providing integration with the editor (or other elements of JupyterLab UI) are installed. Requirements ------------ -By default JupyterLab does not come with any language servers preinstalled; you need to install the servers yourself. Supported language servers and the suggested package managers to install them are listed in the tables below: - -.. role:: raw-html(raw) - :format: html - - -.. list-table:: Notebook-optimized Language Servers - :widths: auto - :header-rows: 1 - - * - Languages - - Implementation - - Installation - * - python - - `jedi-language-server `_ - - pip: ``pip install -U jedi-language-server`` :raw-html:`
` conda: ``conda install -c conda-forge jedi-language-server`` - * - python - - `pylsp `_ - - pip: ``pip install 'python-lsp-server[all]'`` :raw-html:`
` conda: ``conda install -c conda-forge python-lsp-server`` - * - julia - - `julia-language-server `_ - - julia: ``using Pkg; Pkg.add("LanguageServer")`` - * - r - - `r-languageserver `_ - - cran: ``install.packages("languageserver")`` :raw-html:`
` conda: ``conda install -c conda-forge r-languageserver`` - * - robotframework - - `robotframework_ls `_ - - pip: ``pip install robotframework-lsp`` :raw-html:`
` conda: ``conda install -c conda-forge robotframework-lsp`` - - -.. list-table:: NodeJS-based Language Servers - :widths: auto - :header-rows: 1 - - * - Languages - - Implementation - - Installation - * - bash :raw-html:`
` sh - - `bash-language-server `_ - - npm: ``npm install --save-dev bash-language-server`` :raw-html:`
` yarn: ``yarn add --dev bash-language-server`` - * - dockerfile - - `dockerfile-language-server-nodejs `_ - - npm: ``npm install --save-dev dockerfile-language-server-node`` :raw-html:`
` yarn: ``yarn add --dev dockerfile-language-server-node`` - * - python - - `pyright `_ - - npm: ``npm install --save-dev pyright`` :raw-html:`
` yarn: ``yarn add --dev pyright`` - * - sql - - `sql-language-server `_ - - npm: ``npm install --save-dev sql-language-server`` :raw-html:`
` yarn: ``yarn add --dev sql-language-server`` - * - javascript :raw-html:`
` typescript - - `typescript-language-server `_ - - npm: ``npm install --save-dev typescript-language-server`` :raw-html:`
` yarn: ``yarn add --dev typescript-language-server`` - * - markdown :raw-html:`
` ipythongfm :raw-html:`
` gfm - - `unified-language-server `_ - - npm: ``npm install --save-dev unified-language-server`` :raw-html:`
` yarn: ``yarn add --dev unified-language-server`` - * - css :raw-html:`
` less :raw-html:`
` scss - - `vscode-css-languageserver-bin `_ - - npm: ``npm install --save-dev vscode-css-languageserver-bin`` :raw-html:`
` yarn: ``yarn add --dev vscode-css-languageserver-bin`` - * - html - - `vscode-html-languageserver-bin `_ - - npm: ``npm install --save-dev vscode-html-languageserver-bin`` :raw-html:`
` yarn: ``yarn add --dev vscode-html-languageserver-bin`` - * - json - - `vscode-json-languageserver-bin `_ - - npm: ``npm install --save-dev vscode-json-languageserver-bin`` :raw-html:`
` yarn: ``yarn add --dev vscode-json-languageserver-bin`` - * - yaml - - `yaml-language-server `_ - - npm: ``npm install --save-dev yaml-language-server`` :raw-html:`
` yarn: ``yarn add --dev yaml-language-server`` - -For other community-supported language servers, see `the extension documentation `_. +By default JupyterLab does not come with any language servers installed. +For the list of LSP servers tested with ``jupyter-lsp``, the jupyter-server extension which spawns and communicates with the servers, see the `documentation of the extension `_. Settings ------------ -The settings for language servers can be found on the settings page of JupyterLab (*Settings > Settings Editor > Language Servers*). +The settings for language servers can be found on the settings page of JupyterLab (*Settings > Settings Editor > Language Servers (Experimental)*). - **Activate**: this option allows users to enable or disable the LSP services. - **Language Server**: this section allows users to configure the installed language servers. @@ -100,3 +32,5 @@ The settings for language servers can be found on the settings page of JupyterLa .. figure:: ./images/lsp/settings.png Language servers setting page. + +Please note that this settings page will be replaced by a more sophisticated editor accessible under *Language Servers* section when `jupyterlab-lsp` is installed. diff --git a/examples/app/package.json b/examples/app/package.json index 2d7b871ab796..0dd11d3163f6 100644 --- a/examples/app/package.json +++ b/examples/app/package.json @@ -1,45 +1,45 @@ { "name": "@jupyterlab/example-app", - "version": "4.1.5", + "version": "4.1.6", "private": true, "scripts": { "build": "webpack", "clean": "rimraf build" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/application-extension": "^4.1.5", - "@jupyterlab/apputils-extension": "^4.1.5", - "@jupyterlab/builder": "^4.1.5", - "@jupyterlab/celltags-extension": "^4.1.5", - "@jupyterlab/codemirror-extension": "^4.1.5", - "@jupyterlab/completer-extension": "^4.1.5", - "@jupyterlab/console-extension": "^4.1.5", - "@jupyterlab/csvviewer-extension": "^4.1.5", - "@jupyterlab/docmanager-extension": "^4.1.5", - "@jupyterlab/filebrowser-extension": "^4.1.5", - "@jupyterlab/fileeditor-extension": "^4.1.5", - "@jupyterlab/help-extension": "^4.1.5", - "@jupyterlab/imageviewer-extension": "^4.1.5", - "@jupyterlab/inspector-extension": "^4.1.5", - "@jupyterlab/launcher-extension": "^4.1.5", - "@jupyterlab/mainmenu-extension": "^4.1.5", - "@jupyterlab/markdownviewer-extension": "^4.1.5", - "@jupyterlab/mathjax-extension": "^4.1.5", - "@jupyterlab/metadataform-extension": "^4.1.5", - "@jupyterlab/notebook-extension": "^4.1.5", - "@jupyterlab/rendermime-extension": "^4.1.5", - "@jupyterlab/running-extension": "^4.1.5", - "@jupyterlab/settingeditor-extension": "^4.1.5", - "@jupyterlab/shortcuts-extension": "^4.1.5", - "@jupyterlab/statusbar-extension": "^4.1.5", - "@jupyterlab/theme-dark-extension": "^4.1.5", - "@jupyterlab/theme-light-extension": "^4.1.5", - "@jupyterlab/toc-extension": "^6.1.5", - "@jupyterlab/tooltip-extension": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/translation-extension": "^4.1.5", - "@jupyterlab/ui-components-extension": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/application-extension": "^4.1.6", + "@jupyterlab/apputils-extension": "^4.1.6", + "@jupyterlab/builder": "^4.1.6", + "@jupyterlab/celltags-extension": "^4.1.6", + "@jupyterlab/codemirror-extension": "^4.1.6", + "@jupyterlab/completer-extension": "^4.1.6", + "@jupyterlab/console-extension": "^4.1.6", + "@jupyterlab/csvviewer-extension": "^4.1.6", + "@jupyterlab/docmanager-extension": "^4.1.6", + "@jupyterlab/filebrowser-extension": "^4.1.6", + "@jupyterlab/fileeditor-extension": "^4.1.6", + "@jupyterlab/help-extension": "^4.1.6", + "@jupyterlab/imageviewer-extension": "^4.1.6", + "@jupyterlab/inspector-extension": "^4.1.6", + "@jupyterlab/launcher-extension": "^4.1.6", + "@jupyterlab/mainmenu-extension": "^4.1.6", + "@jupyterlab/markdownviewer-extension": "^4.1.6", + "@jupyterlab/mathjax-extension": "^4.1.6", + "@jupyterlab/metadataform-extension": "^4.1.6", + "@jupyterlab/notebook-extension": "^4.1.6", + "@jupyterlab/rendermime-extension": "^4.1.6", + "@jupyterlab/running-extension": "^4.1.6", + "@jupyterlab/settingeditor-extension": "^4.1.6", + "@jupyterlab/shortcuts-extension": "^4.1.6", + "@jupyterlab/statusbar-extension": "^4.1.6", + "@jupyterlab/theme-dark-extension": "^4.1.6", + "@jupyterlab/theme-light-extension": "^4.1.6", + "@jupyterlab/toc-extension": "^6.1.6", + "@jupyterlab/tooltip-extension": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/translation-extension": "^4.1.6", + "@jupyterlab/ui-components-extension": "^4.1.6", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/examples/cell/example.spec.ts-snapshots/example-linux.png b/examples/cell/example.spec.ts-snapshots/example-linux.png index b4f97d61a7d2..f12bfb3ad1e7 100644 Binary files a/examples/cell/example.spec.ts-snapshots/example-linux.png and b/examples/cell/example.spec.ts-snapshots/example-linux.png differ diff --git a/examples/cell/package.json b/examples/cell/package.json index 7e228188f4b5..eee7020a3d10 100644 --- a/examples/cell/package.json +++ b/examples/cell/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-cell", - "version": "4.1.5", + "version": "4.1.6", "private": true, "scripts": { "build": "tsc -p src && webpack", @@ -9,16 +9,16 @@ "dependencies": { "@jupyter/web-components": "^0.15.2", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/cells": "^4.1.5", - "@jupyterlab/codemirror": "^4.1.5", - "@jupyterlab/completer": "^4.1.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/rendermime": "^4.1.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/theme-light-extension": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/cells": "^4.1.6", + "@jupyterlab/codemirror": "^4.1.6", + "@jupyterlab/completer": "^4.1.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/rendermime": "^4.1.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/theme-light-extension": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/commands": "^2.2.0", "@lumino/widgets": "^2.3.1" }, diff --git a/examples/console/package.json b/examples/console/package.json index 9bb6b24d97e9..b40df1e6cc61 100644 --- a/examples/console/package.json +++ b/examples/console/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-console", - "version": "4.1.5", + "version": "4.1.6", "private": true, "scripts": { "build": "tsc -p src && webpack", @@ -9,14 +9,14 @@ "dependencies": { "@jupyter/web-components": "^0.15.2", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/codemirror": "^4.1.5", - "@jupyterlab/console": "^4.1.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/rendermime": "^4.1.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/theme-light-extension": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/codemirror": "^4.1.6", + "@jupyterlab/console": "^4.1.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/rendermime": "^4.1.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/theme-light-extension": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", "@lumino/commands": "^2.2.0", "@lumino/widgets": "^2.3.1" }, diff --git a/examples/federated/core_package/package.json b/examples/federated/core_package/package.json index df98c985b351..2de28c6319b6 100644 --- a/examples/federated/core_package/package.json +++ b/examples/federated/core_package/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-federated-core", - "version": "3.1.5", + "version": "3.1.6", "private": true, "scripts": { "build": "npm run clean && webpack", @@ -8,77 +8,77 @@ "watch": "npm run clean && webpack --watch" }, "resolutions": { - "@jupyterlab/application": "~4.1.5", - "@jupyterlab/application-extension": "~4.1.5", + "@jupyterlab/application": "~4.1.6", + "@jupyterlab/application-extension": "~4.1.6", "@jupyterlab/apputils": "~4.1.0-alpha.0", - "@jupyterlab/apputils-extension": "~4.1.5", + "@jupyterlab/apputils-extension": "~4.1.6", "@jupyterlab/attachments": "~4.1.0-alpha.0", "@jupyterlab/cells": "~4.1.0-alpha.0", - "@jupyterlab/celltags-extension": "~4.1.5", + "@jupyterlab/celltags-extension": "~4.1.6", "@jupyterlab/codeeditor": "~4.1.0-alpha.0", - "@jupyterlab/codemirror-extension": "~4.1.5", + "@jupyterlab/codemirror-extension": "~4.1.6", "@jupyterlab/completer": "~4.1.0-alpha.0", - "@jupyterlab/completer-extension": "~4.1.5", + "@jupyterlab/completer-extension": "~4.1.6", "@jupyterlab/console": "~4.1.0-alpha.0", - "@jupyterlab/console-extension": "~4.1.5", - "@jupyterlab/coreutils": "~6.1.5", - "@jupyterlab/csvviewer-extension": "~4.1.5", + "@jupyterlab/console-extension": "~4.1.6", + "@jupyterlab/coreutils": "~6.1.6", + "@jupyterlab/csvviewer-extension": "~4.1.6", "@jupyterlab/debugger": "~4.1.0-alpha.0", - "@jupyterlab/debugger-extension": "~4.1.5", + "@jupyterlab/debugger-extension": "~4.1.6", "@jupyterlab/docmanager": "~4.1.0-alpha.0", - "@jupyterlab/docmanager-extension": "~4.1.5", + "@jupyterlab/docmanager-extension": "~4.1.6", "@jupyterlab/documentsearch": "~4.1.0-alpha.0", - "@jupyterlab/documentsearch-extension": "~4.1.5", + "@jupyterlab/documentsearch-extension": "~4.1.6", "@jupyterlab/extensionmanager": "~4.1.0-alpha.0", - "@jupyterlab/extensionmanager-extension": "~4.1.5", + "@jupyterlab/extensionmanager-extension": "~4.1.6", "@jupyterlab/filebrowser": "~4.1.0-alpha.0", - "@jupyterlab/filebrowser-extension": "~4.1.5", + "@jupyterlab/filebrowser-extension": "~4.1.6", "@jupyterlab/fileeditor": "~4.1.0-alpha.0", - "@jupyterlab/fileeditor-extension": "~4.1.5", - "@jupyterlab/help-extension": "~4.1.5", - "@jupyterlab/htmlviewer-extension": "~4.1.5", - "@jupyterlab/hub-extension": "~4.1.5", + "@jupyterlab/fileeditor-extension": "~4.1.6", + "@jupyterlab/help-extension": "~4.1.6", + "@jupyterlab/htmlviewer-extension": "~4.1.6", + "@jupyterlab/hub-extension": "~4.1.6", "@jupyterlab/imageviewer": "~4.1.0-alpha.0", - "@jupyterlab/imageviewer-extension": "~4.1.5", + "@jupyterlab/imageviewer-extension": "~4.1.6", "@jupyterlab/inspector": "~4.1.0-alpha.0", - "@jupyterlab/inspector-extension": "~4.1.5", - "@jupyterlab/javascript-extension": "~4.1.5", - "@jupyterlab/json-extension": "~4.1.5", + "@jupyterlab/inspector-extension": "~4.1.6", + "@jupyterlab/javascript-extension": "~4.1.6", + "@jupyterlab/json-extension": "~4.1.6", "@jupyterlab/launcher": "~4.1.0-alpha.0", - "@jupyterlab/launcher-extension": "~4.1.5", + "@jupyterlab/launcher-extension": "~4.1.6", "@jupyterlab/logconsole": "~4.1.0-alpha.0", - "@jupyterlab/logconsole-extension": "~4.1.5", + "@jupyterlab/logconsole-extension": "~4.1.6", "@jupyterlab/lsp": "~4.1.0-alpha.0", - "@jupyterlab/lsp-extension": "~4.1.5", + "@jupyterlab/lsp-extension": "~4.1.6", "@jupyterlab/mainmenu": "~4.1.0-alpha.0", - "@jupyterlab/mainmenu-extension": "~4.1.5", + "@jupyterlab/mainmenu-extension": "~4.1.6", "@jupyterlab/markedparser-extension": "~4.1.0-alpha.0", - "@jupyterlab/mathjax-extension": "~4.1.5", + "@jupyterlab/mathjax-extension": "~4.1.6", "@jupyterlab/metadataform": "~4.1.0-alpha.0", - "@jupyterlab/metadataform-extension": "~4.1.5", + "@jupyterlab/metadataform-extension": "~4.1.6", "@jupyterlab/notebook": "~4.1.0-alpha.0", - "@jupyterlab/notebook-extension": "~4.1.5", - "@jupyterlab/pdf-extension": "~4.1.5", + "@jupyterlab/notebook-extension": "~4.1.6", + "@jupyterlab/pdf-extension": "~4.1.6", "@jupyterlab/rendermime": "~4.1.0-alpha.0", - "@jupyterlab/rendermime-extension": "~4.1.5", + "@jupyterlab/rendermime-extension": "~4.1.6", "@jupyterlab/rendermime-interfaces": "^3.9.0-alpha.1", "@jupyterlab/services": "~7.1.0-alpha.0", "@jupyterlab/settingeditor": "~4.1.0-alpha.0", - "@jupyterlab/settingeditor-extension": "~4.1.5", + "@jupyterlab/settingeditor-extension": "~4.1.6", "@jupyterlab/settingregistry": "~4.1.0-alpha.0", - "@jupyterlab/shortcuts-extension": "~4.1.5", + "@jupyterlab/shortcuts-extension": "~4.1.6", "@jupyterlab/statedb": "~4.1.0-alpha.0", "@jupyterlab/statusbar": "~4.1.0-alpha.0", - "@jupyterlab/statusbar-extension": "~4.1.5", - "@jupyterlab/theme-light-extension": "~4.1.5", - "@jupyterlab/toc-extension": "~6.1.5", + "@jupyterlab/statusbar-extension": "~4.1.6", + "@jupyterlab/theme-light-extension": "~4.1.6", + "@jupyterlab/toc-extension": "~6.1.6", "@jupyterlab/tooltip": "~4.1.0-alpha.0", - "@jupyterlab/tooltip-extension": "~4.1.5", - "@jupyterlab/translation": "~4.1.5", - "@jupyterlab/translation-extension": "~4.1.5", + "@jupyterlab/tooltip-extension": "~4.1.6", + "@jupyterlab/translation": "~4.1.6", + "@jupyterlab/translation-extension": "~4.1.6", "@jupyterlab/ui-components": "~4.1.0-alpha.0", - "@jupyterlab/ui-components-extension": "~4.1.5", - "@jupyterlab/vega5-extension": "~4.1.5", + "@jupyterlab/ui-components-extension": "~4.1.6", + "@jupyterlab/vega5-extension": "~4.1.6", "@lumino/algorithm": "^2.0.0", "@lumino/application": "^2.3.0-alpha.0", "@lumino/commands": "^2.0.1", @@ -96,50 +96,50 @@ "yjs": "^13.5.40" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/application-extension": "^4.1.5", - "@jupyterlab/apputils-extension": "^4.1.5", - "@jupyterlab/celltags-extension": "^4.1.5", - "@jupyterlab/codemirror-extension": "^4.1.5", - "@jupyterlab/completer-extension": "^4.1.5", - "@jupyterlab/console-extension": "^4.1.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/csvviewer-extension": "^4.1.5", - "@jupyterlab/debugger-extension": "^4.1.5", - "@jupyterlab/docmanager-extension": "^4.1.5", - "@jupyterlab/documentsearch-extension": "^4.1.5", - "@jupyterlab/extensionmanager-extension": "^4.1.5", - "@jupyterlab/filebrowser-extension": "^4.1.5", - "@jupyterlab/fileeditor-extension": "^4.1.5", - "@jupyterlab/help-extension": "^4.1.5", - "@jupyterlab/htmlviewer-extension": "^4.1.5", - "@jupyterlab/hub-extension": "^4.1.5", - "@jupyterlab/imageviewer-extension": "^4.1.5", - "@jupyterlab/inspector-extension": "^4.1.5", - "@jupyterlab/javascript-extension": "^4.1.5", - "@jupyterlab/json-extension": "^4.1.5", - "@jupyterlab/launcher-extension": "^4.1.5", - "@jupyterlab/logconsole-extension": "^4.1.5", - "@jupyterlab/lsp-extension": "^4.1.5", - "@jupyterlab/mainmenu-extension": "^4.1.5", - "@jupyterlab/mathjax-extension": "^4.1.5", - "@jupyterlab/metadataform-extension": "^4.1.5", - "@jupyterlab/notebook-extension": "^4.1.5", - "@jupyterlab/pdf-extension": "^4.1.5", - "@jupyterlab/rendermime-extension": "^4.1.5", - "@jupyterlab/settingeditor-extension": "^4.1.5", - "@jupyterlab/shortcuts-extension": "^4.1.5", - "@jupyterlab/statusbar-extension": "^4.1.5", - "@jupyterlab/theme-light-extension": "^4.1.5", - "@jupyterlab/toc-extension": "^6.1.5", - "@jupyterlab/tooltip-extension": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/translation-extension": "^4.1.5", - "@jupyterlab/ui-components-extension": "^4.1.5", - "@jupyterlab/vega5-extension": "^4.1.5" + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/application-extension": "^4.1.6", + "@jupyterlab/apputils-extension": "^4.1.6", + "@jupyterlab/celltags-extension": "^4.1.6", + "@jupyterlab/codemirror-extension": "^4.1.6", + "@jupyterlab/completer-extension": "^4.1.6", + "@jupyterlab/console-extension": "^4.1.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/csvviewer-extension": "^4.1.6", + "@jupyterlab/debugger-extension": "^4.1.6", + "@jupyterlab/docmanager-extension": "^4.1.6", + "@jupyterlab/documentsearch-extension": "^4.1.6", + "@jupyterlab/extensionmanager-extension": "^4.1.6", + "@jupyterlab/filebrowser-extension": "^4.1.6", + "@jupyterlab/fileeditor-extension": "^4.1.6", + "@jupyterlab/help-extension": "^4.1.6", + "@jupyterlab/htmlviewer-extension": "^4.1.6", + "@jupyterlab/hub-extension": "^4.1.6", + "@jupyterlab/imageviewer-extension": "^4.1.6", + "@jupyterlab/inspector-extension": "^4.1.6", + "@jupyterlab/javascript-extension": "^4.1.6", + "@jupyterlab/json-extension": "^4.1.6", + "@jupyterlab/launcher-extension": "^4.1.6", + "@jupyterlab/logconsole-extension": "^4.1.6", + "@jupyterlab/lsp-extension": "^4.1.6", + "@jupyterlab/mainmenu-extension": "^4.1.6", + "@jupyterlab/mathjax-extension": "^4.1.6", + "@jupyterlab/metadataform-extension": "^4.1.6", + "@jupyterlab/notebook-extension": "^4.1.6", + "@jupyterlab/pdf-extension": "^4.1.6", + "@jupyterlab/rendermime-extension": "^4.1.6", + "@jupyterlab/settingeditor-extension": "^4.1.6", + "@jupyterlab/shortcuts-extension": "^4.1.6", + "@jupyterlab/statusbar-extension": "^4.1.6", + "@jupyterlab/theme-light-extension": "^4.1.6", + "@jupyterlab/toc-extension": "^6.1.6", + "@jupyterlab/tooltip-extension": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/translation-extension": "^4.1.6", + "@jupyterlab/ui-components-extension": "^4.1.6", + "@jupyterlab/vega5-extension": "^4.1.6" }, "devDependencies": { - "@jupyterlab/builder": "^4.1.5", + "@jupyterlab/builder": "^4.1.6", "copy-webpack-plugin": "^11.0.0", "css-loader": "^6.7.1", "fs-extra": "^10.1.0", diff --git a/examples/federated/md_package/package.json b/examples/federated/md_package/package.json index 30759dd990b0..ef29b8a33eaf 100644 --- a/examples/federated/md_package/package.json +++ b/examples/federated/md_package/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-federated-md", - "version": "3.1.5", + "version": "3.1.6", "private": true, "main": "./index.js", "scripts": { @@ -8,13 +8,13 @@ "clean": "rimraf ../labextensions/@jupyterlab/example-federated-md" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/example-federated-middle": "^3.0.8", - "@jupyterlab/markdownviewer-extension": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/example-federated-middle": "^3.0.9", + "@jupyterlab/markdownviewer-extension": "^4.1.6", "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/builder": "^4.1.5", + "@jupyterlab/builder": "^4.1.6", "rimraf": "~5.0.5" }, "jupyterlab": { diff --git a/examples/federated/middle_package/package.json b/examples/federated/middle_package/package.json index bfa53ad73c51..feb5901411a3 100644 --- a/examples/federated/middle_package/package.json +++ b/examples/federated/middle_package/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-federated-middle", - "version": "3.0.8", + "version": "3.0.9", "private": true, "scripts": { "build": "npm run clean && build-labextension --core-path ../core_package .", @@ -10,7 +10,7 @@ "@lumino/coreutils": "^2.1.2" }, "devDependencies": { - "@jupyterlab/builder": "^4.1.5", + "@jupyterlab/builder": "^4.1.6", "rimraf": "~5.0.5" }, "publishConfig": { diff --git a/examples/federated/package.json b/examples/federated/package.json index 54a3cc06ead6..49c645d6a578 100644 --- a/examples/federated/package.json +++ b/examples/federated/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-federated", - "version": "3.1.5", + "version": "3.1.6", "private": true, "scripts": { "build": "npm run build:core && npm run build:middle && npm run build:md", diff --git a/examples/filebrowser/package.json b/examples/filebrowser/package.json index a1af8eb0d051..6ba7b9767057 100644 --- a/examples/filebrowser/package.json +++ b/examples/filebrowser/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-filebrowser", - "version": "4.1.5", + "version": "4.1.6", "private": true, "scripts": { "build": "tsc -p src && webpack", @@ -8,18 +8,18 @@ }, "dependencies": { "@jupyter/web-components": "^0.15.2", - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/codemirror": "^4.1.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/docmanager": "^4.1.5", - "@jupyterlab/docregistry": "^4.1.5", - "@jupyterlab/filebrowser": "^4.1.5", - "@jupyterlab/fileeditor": "^4.1.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/theme-light-extension": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/codemirror": "^4.1.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/docmanager": "^4.1.6", + "@jupyterlab/docregistry": "^4.1.6", + "@jupyterlab/filebrowser": "^4.1.6", + "@jupyterlab/fileeditor": "^4.1.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/theme-light-extension": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/commands": "^2.2.0", "@lumino/widgets": "^2.3.1" }, diff --git a/examples/notebook/package.json b/examples/notebook/package.json index 6d4aee17331d..7a8de76f8867 100644 --- a/examples/notebook/package.json +++ b/examples/notebook/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-notebook", - "version": "4.1.5", + "version": "4.1.6", "private": true, "scripts": { "build": "tsc -p src && webpack", @@ -9,22 +9,22 @@ "dependencies": { "@jupyter/web-components": "^0.15.2", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/codemirror": "^4.1.5", - "@jupyterlab/completer": "^4.1.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/docmanager": "^4.1.5", - "@jupyterlab/docregistry": "^4.1.5", - "@jupyterlab/documentsearch": "^4.1.5", - "@jupyterlab/markedparser-extension": "^4.1.5", - "@jupyterlab/mathjax-extension": "^4.1.5", - "@jupyterlab/notebook": "^4.1.5", - "@jupyterlab/rendermime": "^4.1.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/theme-light-extension": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/codemirror": "^4.1.6", + "@jupyterlab/completer": "^4.1.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/docmanager": "^4.1.6", + "@jupyterlab/docregistry": "^4.1.6", + "@jupyterlab/documentsearch": "^4.1.6", + "@jupyterlab/markedparser-extension": "^4.1.6", + "@jupyterlab/mathjax-extension": "^4.1.6", + "@jupyterlab/notebook": "^4.1.6", + "@jupyterlab/rendermime": "^4.1.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/theme-light-extension": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/commands": "^2.2.0", "@lumino/widgets": "^2.3.1" }, diff --git a/examples/terminal/package.json b/examples/terminal/package.json index 2bcd9083655a..3d85255d8b02 100644 --- a/examples/terminal/package.json +++ b/examples/terminal/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-terminal", - "version": "4.1.5", + "version": "4.1.6", "private": true, "scripts": { "build": "tsc -p src && webpack", @@ -8,11 +8,11 @@ }, "dependencies": { "@jupyter/web-components": "^0.15.2", - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/terminal": "^4.1.5", - "@jupyterlab/theme-light-extension": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/terminal": "^4.1.6", + "@jupyterlab/theme-light-extension": "^4.1.6", "@lumino/widgets": "^2.3.1" }, "devDependencies": { diff --git a/galata/extension/package.json b/galata/extension/package.json index 3a140b5bcf07..e3b378c0fe99 100644 --- a/galata/extension/package.json +++ b/galata/extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/galata-extension", - "version": "5.1.5", + "version": "5.1.6", "private": true, "description": "JupyterLab UI Testing Framework Extension.", "keywords": [ @@ -32,20 +32,20 @@ "clean:lib": "rimraf ../lib/extension tsconfig.tsbuildinfo" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/cells": "^4.1.5", - "@jupyterlab/debugger": "^4.1.5", - "@jupyterlab/docmanager": "^4.1.5", - "@jupyterlab/nbformat": "^4.1.5", - "@jupyterlab/notebook": "^4.1.5", - "@jupyterlab/settingregistry": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/cells": "^4.1.6", + "@jupyterlab/debugger": "^4.1.6", + "@jupyterlab/docmanager": "^4.1.6", + "@jupyterlab/nbformat": "^4.1.6", + "@jupyterlab/notebook": "^4.1.6", + "@jupyterlab/settingregistry": "^4.1.6", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/signaling": "^2.1.2" }, "devDependencies": { - "@jupyterlab/builder": "^4.1.5", + "@jupyterlab/builder": "^4.1.6", "rimraf": "~5.0.5", "typescript": "~5.1.6" }, diff --git a/galata/package.json b/galata/package.json index 76509028475b..64562b930a51 100644 --- a/galata/package.json +++ b/galata/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/galata", - "version": "5.1.5", + "version": "5.1.6", "description": "JupyterLab UI Testing Framework", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -44,15 +44,15 @@ "test:update": "jlpm test:base:update && jlpm test:benchmark:update" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/debugger": "^4.1.5", - "@jupyterlab/docmanager": "^4.1.5", - "@jupyterlab/nbformat": "^4.1.5", - "@jupyterlab/notebook": "^4.1.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/settingregistry": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/debugger": "^4.1.6", + "@jupyterlab/docmanager": "^4.1.6", + "@jupyterlab/nbformat": "^4.1.6", + "@jupyterlab/notebook": "^4.1.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/settingregistry": "^4.1.6", "@lumino/coreutils": "^2.1.2", "@playwright/test": "^1.32.2", "@stdlib/stats": "~0.0.13", diff --git a/galata/test/documentation/general.test.ts b/galata/test/documentation/general.test.ts index 395f2170ed61..2aebdbd56e89 100644 --- a/galata/test/documentation/general.test.ts +++ b/galata/test/documentation/general.test.ts @@ -77,6 +77,12 @@ test.describe('General', () => { await page.mouse.move(viewerBBox.x + 0.5 * viewerBBox.width, 600); await page.mouse.up(); + // wait for the debugger bug icon to settle + const panel = (await page.activity.getPanelLocator('Lorenz.ipynb'))!; + await panel + .locator('.jp-DebuggerBugButton[aria-disabled="false"]') + .waitFor(); + expect(await page.screenshot()).toMatchSnapshot('jupyterlab.png'); }); @@ -592,6 +598,9 @@ test.describe('General', () => { await page.notebook.createNew(); + // Ensure focus on a cell + await page.notebook.enterCellEditingMode(0); + await page.keyboard.press('Control+Shift+H'); expect(await page.locator('.jp-Notebook').screenshot()).toMatchSnapshot( diff --git a/galata/test/documentation/general.test.ts-snapshots/file-formats-html-display-documentation-linux.png b/galata/test/documentation/general.test.ts-snapshots/file-formats-html-display-documentation-linux.png index f22ff7a73e90..89b7f255f2a1 100644 Binary files a/galata/test/documentation/general.test.ts-snapshots/file-formats-html-display-documentation-linux.png and b/galata/test/documentation/general.test.ts-snapshots/file-formats-html-display-documentation-linux.png differ diff --git a/galata/test/jupyterlab/completer.test.ts-snapshots/completer-filter-jupyterlab-linux.png b/galata/test/jupyterlab/completer.test.ts-snapshots/completer-filter-jupyterlab-linux.png index 17ca32f2bb2c..04fca6342aa9 100644 Binary files a/galata/test/jupyterlab/completer.test.ts-snapshots/completer-filter-jupyterlab-linux.png and b/galata/test/jupyterlab/completer.test.ts-snapshots/completer-filter-jupyterlab-linux.png differ diff --git a/galata/test/jupyterlab/completer.test.ts-snapshots/completer-jupyterlab-linux.png b/galata/test/jupyterlab/completer.test.ts-snapshots/completer-jupyterlab-linux.png index b7c303c429de..de740594f0e1 100644 Binary files a/galata/test/jupyterlab/completer.test.ts-snapshots/completer-jupyterlab-linux.png and b/galata/test/jupyterlab/completer.test.ts-snapshots/completer-jupyterlab-linux.png differ diff --git a/galata/test/jupyterlab/history.test.ts-snapshots/history-jupyterlab-linux.png b/galata/test/jupyterlab/history.test.ts-snapshots/history-jupyterlab-linux.png index 85d6ca614369..05ca1e6e2fb6 100644 Binary files a/galata/test/jupyterlab/history.test.ts-snapshots/history-jupyterlab-linux.png and b/galata/test/jupyterlab/history.test.ts-snapshots/history-jupyterlab-linux.png differ diff --git a/galata/test/jupyterlab/notebook-edit.test.ts-snapshots/split-cell-jupyterlab-linux.png b/galata/test/jupyterlab/notebook-edit.test.ts-snapshots/split-cell-jupyterlab-linux.png index fee56510df93..dec8ad2da077 100644 Binary files a/galata/test/jupyterlab/notebook-edit.test.ts-snapshots/split-cell-jupyterlab-linux.png and b/galata/test/jupyterlab/notebook-edit.test.ts-snapshots/split-cell-jupyterlab-linux.png differ diff --git a/galata/test/jupyterlab/notebook-toolbar.test.ts-snapshots/run-cell-jupyterlab-linux.png b/galata/test/jupyterlab/notebook-toolbar.test.ts-snapshots/run-cell-jupyterlab-linux.png index 7fd1ee3ffa6f..c380395bc92f 100644 Binary files a/galata/test/jupyterlab/notebook-toolbar.test.ts-snapshots/run-cell-jupyterlab-linux.png and b/galata/test/jupyterlab/notebook-toolbar.test.ts-snapshots/run-cell-jupyterlab-linux.png differ diff --git a/jupyterlab/_version.py b/jupyterlab/_version.py index c3ecb3c048a8..a860c8cbe557 100644 --- a/jupyterlab/_version.py +++ b/jupyterlab/_version.py @@ -6,7 +6,7 @@ VersionInfo = namedtuple("VersionInfo", ["major", "minor", "micro", "releaselevel", "serial"]) # DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion -version_info = VersionInfo(4, 1, 5, "final", 0) +version_info = VersionInfo(4, 1, 6, "final", 0) _specifier_ = {"alpha": "a", "beta": "b", "candidate": "rc", "final": ""} diff --git a/jupyterlab/extensions/pypi.py b/jupyterlab/extensions/pypi.py index 22e8ada90623..9c3ac366cd39 100644 --- a/jupyterlab/extensions/pypi.py +++ b/jupyterlab/extensions/pypi.py @@ -332,7 +332,9 @@ async def install(self, name: str, version: Optional[str] = None) -> ActionResul The action result """ current_loop = tornado.ioloop.IOLoop.current() - with tempfile.NamedTemporaryFile(mode="w+", delete=True) as fconstraint: + with tempfile.TemporaryDirectory() as ve_dir, tempfile.NamedTemporaryFile( + mode="w+", dir=ve_dir, delete=False + ) as fconstraint: fconstraint.write(f"jupyterlab=={__version__}") fconstraint.flush() diff --git a/jupyterlab/semver.py b/jupyterlab/semver.py index 6a6ce6bc96ad..301187855a70 100644 --- a/jupyterlab/semver.py +++ b/jupyterlab/semver.py @@ -748,7 +748,7 @@ def make_range(range_, loose): class Range: def __init__(self, range_, loose): if "/services" in range_: - range_ = "~7.1.0" + range_ = "~7.1.6" self.loose = loose # First, split based on boolean or || diff --git a/jupyterlab/staging/package.json b/jupyterlab/staging/package.json index 286f66b2146f..8dd629f35eaf 100644 --- a/jupyterlab/staging/package.json +++ b/jupyterlab/staging/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/application-top", - "version": "4.1.5", + "version": "4.1.6", "private": true, "license": "BSD-3-Clause", "scripts": { @@ -23,101 +23,101 @@ "@jupyter/react-components": "~0.13.3", "@jupyter/web-components": "~0.13.3", "@jupyter/ydoc": "~1.1.1", - "@jupyterlab/application": "~4.1.5", - "@jupyterlab/application-extension": "~4.1.5", - "@jupyterlab/apputils": "~4.2.5", - "@jupyterlab/apputils-extension": "~4.1.5", - "@jupyterlab/attachments": "~4.1.5", - "@jupyterlab/cell-toolbar": "~4.1.5", - "@jupyterlab/cell-toolbar-extension": "~4.1.5", - "@jupyterlab/cells": "~4.1.5", - "@jupyterlab/celltags-extension": "~4.1.5", - "@jupyterlab/codeeditor": "~4.1.5", - "@jupyterlab/codemirror": "~4.1.5", - "@jupyterlab/codemirror-extension": "~4.1.5", - "@jupyterlab/completer": "~4.1.5", - "@jupyterlab/completer-extension": "~4.1.5", - "@jupyterlab/console": "~4.1.5", - "@jupyterlab/console-extension": "~4.1.5", - "@jupyterlab/coreutils": "~6.1.5", - "@jupyterlab/csvviewer": "~4.1.5", - "@jupyterlab/csvviewer-extension": "~4.1.5", - "@jupyterlab/debugger": "~4.1.5", - "@jupyterlab/debugger-extension": "~4.1.5", - "@jupyterlab/docmanager": "~4.1.5", - "@jupyterlab/docmanager-extension": "~4.1.5", - "@jupyterlab/docregistry": "~4.1.5", - "@jupyterlab/documentsearch": "~4.1.5", - "@jupyterlab/documentsearch-extension": "~4.1.5", - "@jupyterlab/extensionmanager": "~4.1.5", - "@jupyterlab/extensionmanager-extension": "~4.1.5", - "@jupyterlab/filebrowser": "~4.1.5", - "@jupyterlab/filebrowser-extension": "~4.1.5", - "@jupyterlab/fileeditor": "~4.1.5", - "@jupyterlab/fileeditor-extension": "~4.1.5", - "@jupyterlab/help-extension": "~4.1.5", - "@jupyterlab/htmlviewer": "~4.1.5", - "@jupyterlab/htmlviewer-extension": "~4.1.5", - "@jupyterlab/hub-extension": "~4.1.5", - "@jupyterlab/imageviewer": "~4.1.5", - "@jupyterlab/imageviewer-extension": "~4.1.5", - "@jupyterlab/inspector": "~4.1.5", - "@jupyterlab/inspector-extension": "~4.1.5", - "@jupyterlab/javascript-extension": "~4.1.5", - "@jupyterlab/json-extension": "~4.1.5", - "@jupyterlab/launcher": "~4.1.5", - "@jupyterlab/launcher-extension": "~4.1.5", - "@jupyterlab/logconsole": "~4.1.5", - "@jupyterlab/logconsole-extension": "~4.1.5", - "@jupyterlab/lsp": "~4.1.5", - "@jupyterlab/lsp-extension": "~4.1.5", - "@jupyterlab/mainmenu": "~4.1.5", - "@jupyterlab/mainmenu-extension": "~4.1.5", - "@jupyterlab/markdownviewer": "~4.1.5", - "@jupyterlab/markdownviewer-extension": "~4.1.5", - "@jupyterlab/markedparser-extension": "~4.1.5", - "@jupyterlab/mathjax-extension": "~4.1.5", - "@jupyterlab/mermaid": "~4.1.5", - "@jupyterlab/mermaid-extension": "~4.1.5", - "@jupyterlab/metadataform": "~4.1.5", - "@jupyterlab/metadataform-extension": "~4.1.5", - "@jupyterlab/metapackage": "~4.1.5", - "@jupyterlab/nbconvert-css": "~4.1.5", - "@jupyterlab/nbformat": "~4.1.5", - "@jupyterlab/notebook": "~4.1.5", - "@jupyterlab/notebook-extension": "~4.1.5", - "@jupyterlab/observables": "~5.1.5", - "@jupyterlab/outputarea": "~4.1.5", - "@jupyterlab/pdf-extension": "~4.1.5", - "@jupyterlab/pluginmanager": "~4.1.5", - "@jupyterlab/pluginmanager-extension": "~4.1.5", - "@jupyterlab/property-inspector": "~4.1.5", - "@jupyterlab/rendermime": "~4.1.5", - "@jupyterlab/rendermime-extension": "~4.1.5", - "@jupyterlab/rendermime-interfaces": "~3.9.5", - "@jupyterlab/running": "~4.1.5", - "@jupyterlab/running-extension": "~4.1.5", + "@jupyterlab/application": "~4.1.6", + "@jupyterlab/application-extension": "~4.1.6", + "@jupyterlab/apputils": "~4.2.6", + "@jupyterlab/apputils-extension": "~4.1.6", + "@jupyterlab/attachments": "~4.1.6", + "@jupyterlab/cell-toolbar": "~4.1.6", + "@jupyterlab/cell-toolbar-extension": "~4.1.6", + "@jupyterlab/cells": "~4.1.6", + "@jupyterlab/celltags-extension": "~4.1.6", + "@jupyterlab/codeeditor": "~4.1.6", + "@jupyterlab/codemirror": "~4.1.6", + "@jupyterlab/codemirror-extension": "~4.1.6", + "@jupyterlab/completer": "~4.1.6", + "@jupyterlab/completer-extension": "~4.1.6", + "@jupyterlab/console": "~4.1.6", + "@jupyterlab/console-extension": "~4.1.6", + "@jupyterlab/coreutils": "~6.1.6", + "@jupyterlab/csvviewer": "~4.1.6", + "@jupyterlab/csvviewer-extension": "~4.1.6", + "@jupyterlab/debugger": "~4.1.6", + "@jupyterlab/debugger-extension": "~4.1.6", + "@jupyterlab/docmanager": "~4.1.6", + "@jupyterlab/docmanager-extension": "~4.1.6", + "@jupyterlab/docregistry": "~4.1.6", + "@jupyterlab/documentsearch": "~4.1.6", + "@jupyterlab/documentsearch-extension": "~4.1.6", + "@jupyterlab/extensionmanager": "~4.1.6", + "@jupyterlab/extensionmanager-extension": "~4.1.6", + "@jupyterlab/filebrowser": "~4.1.6", + "@jupyterlab/filebrowser-extension": "~4.1.6", + "@jupyterlab/fileeditor": "~4.1.6", + "@jupyterlab/fileeditor-extension": "~4.1.6", + "@jupyterlab/help-extension": "~4.1.6", + "@jupyterlab/htmlviewer": "~4.1.6", + "@jupyterlab/htmlviewer-extension": "~4.1.6", + "@jupyterlab/hub-extension": "~4.1.6", + "@jupyterlab/imageviewer": "~4.1.6", + "@jupyterlab/imageviewer-extension": "~4.1.6", + "@jupyterlab/inspector": "~4.1.6", + "@jupyterlab/inspector-extension": "~4.1.6", + "@jupyterlab/javascript-extension": "~4.1.6", + "@jupyterlab/json-extension": "~4.1.6", + "@jupyterlab/launcher": "~4.1.6", + "@jupyterlab/launcher-extension": "~4.1.6", + "@jupyterlab/logconsole": "~4.1.6", + "@jupyterlab/logconsole-extension": "~4.1.6", + "@jupyterlab/lsp": "~4.1.6", + "@jupyterlab/lsp-extension": "~4.1.6", + "@jupyterlab/mainmenu": "~4.1.6", + "@jupyterlab/mainmenu-extension": "~4.1.6", + "@jupyterlab/markdownviewer": "~4.1.6", + "@jupyterlab/markdownviewer-extension": "~4.1.6", + "@jupyterlab/markedparser-extension": "~4.1.6", + "@jupyterlab/mathjax-extension": "~4.1.6", + "@jupyterlab/mermaid": "~4.1.6", + "@jupyterlab/mermaid-extension": "~4.1.6", + "@jupyterlab/metadataform": "~4.1.6", + "@jupyterlab/metadataform-extension": "~4.1.6", + "@jupyterlab/metapackage": "~4.1.6", + "@jupyterlab/nbconvert-css": "~4.1.6", + "@jupyterlab/nbformat": "~4.1.6", + "@jupyterlab/notebook": "~4.1.6", + "@jupyterlab/notebook-extension": "~4.1.6", + "@jupyterlab/observables": "~5.1.6", + "@jupyterlab/outputarea": "~4.1.6", + "@jupyterlab/pdf-extension": "~4.1.6", + "@jupyterlab/pluginmanager": "~4.1.6", + "@jupyterlab/pluginmanager-extension": "~4.1.6", + "@jupyterlab/property-inspector": "~4.1.6", + "@jupyterlab/rendermime": "~4.1.6", + "@jupyterlab/rendermime-extension": "~4.1.6", + "@jupyterlab/rendermime-interfaces": "~3.9.6", + "@jupyterlab/running": "~4.1.6", + "@jupyterlab/running-extension": "~4.1.6", "@jupyterlab/services": "../../packages/services", - "@jupyterlab/settingeditor": "~4.1.5", - "@jupyterlab/settingeditor-extension": "~4.1.5", - "@jupyterlab/settingregistry": "~4.1.5", - "@jupyterlab/shortcuts-extension": "~4.1.5", - "@jupyterlab/statedb": "~4.1.5", - "@jupyterlab/statusbar": "~4.1.5", - "@jupyterlab/statusbar-extension": "~4.1.5", - "@jupyterlab/terminal": "~4.1.5", - "@jupyterlab/terminal-extension": "~4.1.5", - "@jupyterlab/theme-dark-extension": "~4.1.5", - "@jupyterlab/theme-light-extension": "~4.1.5", - "@jupyterlab/toc": "~6.1.5", - "@jupyterlab/toc-extension": "~6.1.5", - "@jupyterlab/tooltip": "~4.1.5", - "@jupyterlab/tooltip-extension": "~4.1.5", - "@jupyterlab/translation": "~4.1.5", - "@jupyterlab/translation-extension": "~4.1.5", - "@jupyterlab/ui-components": "~4.1.5", - "@jupyterlab/ui-components-extension": "~4.1.5", - "@jupyterlab/vega5-extension": "~4.1.5", + "@jupyterlab/settingeditor": "~4.1.6", + "@jupyterlab/settingeditor-extension": "~4.1.6", + "@jupyterlab/settingregistry": "~4.1.6", + "@jupyterlab/shortcuts-extension": "~4.1.6", + "@jupyterlab/statedb": "~4.1.6", + "@jupyterlab/statusbar": "~4.1.6", + "@jupyterlab/statusbar-extension": "~4.1.6", + "@jupyterlab/terminal": "~4.1.6", + "@jupyterlab/terminal-extension": "~4.1.6", + "@jupyterlab/theme-dark-extension": "~4.1.6", + "@jupyterlab/theme-light-extension": "~4.1.6", + "@jupyterlab/toc": "~6.1.6", + "@jupyterlab/toc-extension": "~6.1.6", + "@jupyterlab/tooltip": "~4.1.6", + "@jupyterlab/tooltip-extension": "~4.1.6", + "@jupyterlab/translation": "~4.1.6", + "@jupyterlab/translation-extension": "~4.1.6", + "@jupyterlab/ui-components": "~4.1.6", + "@jupyterlab/ui-components-extension": "~4.1.6", + "@jupyterlab/vega5-extension": "~4.1.6", "@lezer/common": "^1.0.0", "@lezer/highlight": "^1.0.0", "@lumino/algorithm": "^2.0.0", @@ -142,58 +142,58 @@ "yjs": "^13.5.40" }, "dependencies": { - "@jupyterlab/application": "~4.1.5", - "@jupyterlab/application-extension": "~4.1.5", - "@jupyterlab/apputils-extension": "~4.1.5", - "@jupyterlab/cell-toolbar-extension": "~4.1.5", - "@jupyterlab/celltags-extension": "~4.1.5", - "@jupyterlab/codemirror-extension": "~4.1.5", - "@jupyterlab/completer-extension": "~4.1.5", - "@jupyterlab/console-extension": "~4.1.5", - "@jupyterlab/coreutils": "~6.1.5", - "@jupyterlab/csvviewer-extension": "~4.1.5", - "@jupyterlab/debugger-extension": "~4.1.5", - "@jupyterlab/docmanager-extension": "~4.1.5", - "@jupyterlab/documentsearch-extension": "~4.1.5", - "@jupyterlab/extensionmanager-extension": "~4.1.5", - "@jupyterlab/filebrowser-extension": "~4.1.5", - "@jupyterlab/fileeditor-extension": "~4.1.5", - "@jupyterlab/help-extension": "~4.1.5", - "@jupyterlab/htmlviewer-extension": "~4.1.5", - "@jupyterlab/hub-extension": "~4.1.5", - "@jupyterlab/imageviewer-extension": "~4.1.5", - "@jupyterlab/inspector-extension": "~4.1.5", - "@jupyterlab/javascript-extension": "~4.1.5", - "@jupyterlab/json-extension": "~4.1.5", - "@jupyterlab/launcher-extension": "~4.1.5", - "@jupyterlab/logconsole-extension": "~4.1.5", - "@jupyterlab/lsp-extension": "~4.1.5", - "@jupyterlab/mainmenu-extension": "~4.1.5", - "@jupyterlab/markdownviewer-extension": "~4.1.5", - "@jupyterlab/markedparser-extension": "~4.1.5", - "@jupyterlab/mathjax-extension": "~4.1.5", - "@jupyterlab/mermaid-extension": "~4.1.5", - "@jupyterlab/metadataform-extension": "~4.1.5", - "@jupyterlab/notebook-extension": "~4.1.5", - "@jupyterlab/pdf-extension": "~4.1.5", - "@jupyterlab/pluginmanager-extension": "~4.1.5", - "@jupyterlab/rendermime-extension": "~4.1.5", - "@jupyterlab/running-extension": "~4.1.5", - "@jupyterlab/settingeditor-extension": "~4.1.5", - "@jupyterlab/shortcuts-extension": "~4.1.5", - "@jupyterlab/statusbar-extension": "~4.1.5", - "@jupyterlab/terminal-extension": "~4.1.5", - "@jupyterlab/theme-dark-extension": "~4.1.5", - "@jupyterlab/theme-light-extension": "~4.1.5", - "@jupyterlab/toc-extension": "~6.1.5", - "@jupyterlab/tooltip-extension": "~4.1.5", - "@jupyterlab/translation-extension": "~4.1.5", - "@jupyterlab/ui-components-extension": "~4.1.5", - "@jupyterlab/vega5-extension": "~4.1.5" + "@jupyterlab/application": "~4.1.6", + "@jupyterlab/application-extension": "~4.1.6", + "@jupyterlab/apputils-extension": "~4.1.6", + "@jupyterlab/cell-toolbar-extension": "~4.1.6", + "@jupyterlab/celltags-extension": "~4.1.6", + "@jupyterlab/codemirror-extension": "~4.1.6", + "@jupyterlab/completer-extension": "~4.1.6", + "@jupyterlab/console-extension": "~4.1.6", + "@jupyterlab/coreutils": "~6.1.6", + "@jupyterlab/csvviewer-extension": "~4.1.6", + "@jupyterlab/debugger-extension": "~4.1.6", + "@jupyterlab/docmanager-extension": "~4.1.6", + "@jupyterlab/documentsearch-extension": "~4.1.6", + "@jupyterlab/extensionmanager-extension": "~4.1.6", + "@jupyterlab/filebrowser-extension": "~4.1.6", + "@jupyterlab/fileeditor-extension": "~4.1.6", + "@jupyterlab/help-extension": "~4.1.6", + "@jupyterlab/htmlviewer-extension": "~4.1.6", + "@jupyterlab/hub-extension": "~4.1.6", + "@jupyterlab/imageviewer-extension": "~4.1.6", + "@jupyterlab/inspector-extension": "~4.1.6", + "@jupyterlab/javascript-extension": "~4.1.6", + "@jupyterlab/json-extension": "~4.1.6", + "@jupyterlab/launcher-extension": "~4.1.6", + "@jupyterlab/logconsole-extension": "~4.1.6", + "@jupyterlab/lsp-extension": "~4.1.6", + "@jupyterlab/mainmenu-extension": "~4.1.6", + "@jupyterlab/markdownviewer-extension": "~4.1.6", + "@jupyterlab/markedparser-extension": "~4.1.6", + "@jupyterlab/mathjax-extension": "~4.1.6", + "@jupyterlab/mermaid-extension": "~4.1.6", + "@jupyterlab/metadataform-extension": "~4.1.6", + "@jupyterlab/notebook-extension": "~4.1.6", + "@jupyterlab/pdf-extension": "~4.1.6", + "@jupyterlab/pluginmanager-extension": "~4.1.6", + "@jupyterlab/rendermime-extension": "~4.1.6", + "@jupyterlab/running-extension": "~4.1.6", + "@jupyterlab/settingeditor-extension": "~4.1.6", + "@jupyterlab/shortcuts-extension": "~4.1.6", + "@jupyterlab/statusbar-extension": "~4.1.6", + "@jupyterlab/terminal-extension": "~4.1.6", + "@jupyterlab/theme-dark-extension": "~4.1.6", + "@jupyterlab/theme-light-extension": "~4.1.6", + "@jupyterlab/toc-extension": "~6.1.6", + "@jupyterlab/tooltip-extension": "~4.1.6", + "@jupyterlab/translation-extension": "~4.1.6", + "@jupyterlab/ui-components-extension": "~4.1.6", + "@jupyterlab/vega5-extension": "~4.1.6" }, "devDependencies": { - "@jupyterlab/builder": "^4.1.5", - "@jupyterlab/buildutils": "^4.1.5", + "@jupyterlab/builder": "^4.1.6", + "@jupyterlab/buildutils": "^4.1.6", "chokidar": "^3.4.0", "css-loader": "^6.7.1", "duplicate-package-checker-webpack-plugin": "^3.0.0", @@ -222,7 +222,7 @@ }, "jupyterlab": { "name": "JupyterLab", - "version": "4.1.5", + "version": "4.1.6", "extensions": { "@jupyterlab/application-extension": "", "@jupyterlab/apputils-extension": "", diff --git a/jupyterlab/staging/yarn.lock b/jupyterlab/staging/yarn.lock index 18db4f029b4a..fb799c2c74f8 100644 --- a/jupyterlab/staging/yarn.lock +++ b/jupyterlab/staging/yarn.lock @@ -420,26 +420,26 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/application-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/application-extension@npm:4.1.5" - dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/property-inspector": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 +"@jupyterlab/application-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/application-extension@npm:4.1.6" + dependencies: + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/property-inspector": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/statedb": ^4.1.6 + "@jupyterlab/statusbar": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 0e07b2a433ad90a2f8fc596f7ed19b78edfb64acd50c9f8bcf6d2f321c340627253e266d5b24f5c2ee276f90d5479795cdbc2490d7e1fdeec89ac7faf5e3d318 + checksum: 39bd8b95e3e6d3fc5c5266e0218618695eac0dd8df305b1c5474afc1b3b20f869219286d9ba403b417ed69cf64e7d569f9c65a477d9a46f5ab92af569bcfd697 languageName: node linkType: hard @@ -447,56 +447,56 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/application-top@workspace:." dependencies: - "@jupyterlab/application": ~4.1.5 - "@jupyterlab/application-extension": ~4.1.5 - "@jupyterlab/apputils-extension": ~4.1.5 - "@jupyterlab/builder": ^4.1.5 - "@jupyterlab/buildutils": ^4.1.5 - "@jupyterlab/cell-toolbar-extension": ~4.1.5 - "@jupyterlab/celltags-extension": ~4.1.5 - "@jupyterlab/codemirror-extension": ~4.1.5 - "@jupyterlab/completer-extension": ~4.1.5 - "@jupyterlab/console-extension": ~4.1.5 - "@jupyterlab/coreutils": ~6.1.5 - "@jupyterlab/csvviewer-extension": ~4.1.5 - "@jupyterlab/debugger-extension": ~4.1.5 - "@jupyterlab/docmanager-extension": ~4.1.5 - "@jupyterlab/documentsearch-extension": ~4.1.5 - "@jupyterlab/extensionmanager-extension": ~4.1.5 - "@jupyterlab/filebrowser-extension": ~4.1.5 - "@jupyterlab/fileeditor-extension": ~4.1.5 - "@jupyterlab/help-extension": ~4.1.5 - "@jupyterlab/htmlviewer-extension": ~4.1.5 - "@jupyterlab/hub-extension": ~4.1.5 - "@jupyterlab/imageviewer-extension": ~4.1.5 - "@jupyterlab/inspector-extension": ~4.1.5 - "@jupyterlab/javascript-extension": ~4.1.5 - "@jupyterlab/json-extension": ~4.1.5 - "@jupyterlab/launcher-extension": ~4.1.5 - "@jupyterlab/logconsole-extension": ~4.1.5 - "@jupyterlab/lsp-extension": ~4.1.5 - "@jupyterlab/mainmenu-extension": ~4.1.5 - "@jupyterlab/markdownviewer-extension": ~4.1.5 - "@jupyterlab/markedparser-extension": ~4.1.5 - "@jupyterlab/mathjax-extension": ~4.1.5 - "@jupyterlab/mermaid-extension": ~4.1.5 - "@jupyterlab/metadataform-extension": ~4.1.5 - "@jupyterlab/notebook-extension": ~4.1.5 - "@jupyterlab/pdf-extension": ~4.1.5 - "@jupyterlab/pluginmanager-extension": ~4.1.5 - "@jupyterlab/rendermime-extension": ~4.1.5 - "@jupyterlab/running-extension": ~4.1.5 - "@jupyterlab/settingeditor-extension": ~4.1.5 - "@jupyterlab/shortcuts-extension": ~4.1.5 - "@jupyterlab/statusbar-extension": ~4.1.5 - "@jupyterlab/terminal-extension": ~4.1.5 - "@jupyterlab/theme-dark-extension": ~4.1.5 - "@jupyterlab/theme-light-extension": ~4.1.5 - "@jupyterlab/toc-extension": ~6.1.5 - "@jupyterlab/tooltip-extension": ~4.1.5 - "@jupyterlab/translation-extension": ~4.1.5 - "@jupyterlab/ui-components-extension": ~4.1.5 - "@jupyterlab/vega5-extension": ~4.1.5 + "@jupyterlab/application": ~4.1.6 + "@jupyterlab/application-extension": ~4.1.6 + "@jupyterlab/apputils-extension": ~4.1.6 + "@jupyterlab/builder": ^4.1.6 + "@jupyterlab/buildutils": ^4.1.6 + "@jupyterlab/cell-toolbar-extension": ~4.1.6 + "@jupyterlab/celltags-extension": ~4.1.6 + "@jupyterlab/codemirror-extension": ~4.1.6 + "@jupyterlab/completer-extension": ~4.1.6 + "@jupyterlab/console-extension": ~4.1.6 + "@jupyterlab/coreutils": ~6.1.6 + "@jupyterlab/csvviewer-extension": ~4.1.6 + "@jupyterlab/debugger-extension": ~4.1.6 + "@jupyterlab/docmanager-extension": ~4.1.6 + "@jupyterlab/documentsearch-extension": ~4.1.6 + "@jupyterlab/extensionmanager-extension": ~4.1.6 + "@jupyterlab/filebrowser-extension": ~4.1.6 + "@jupyterlab/fileeditor-extension": ~4.1.6 + "@jupyterlab/help-extension": ~4.1.6 + "@jupyterlab/htmlviewer-extension": ~4.1.6 + "@jupyterlab/hub-extension": ~4.1.6 + "@jupyterlab/imageviewer-extension": ~4.1.6 + "@jupyterlab/inspector-extension": ~4.1.6 + "@jupyterlab/javascript-extension": ~4.1.6 + "@jupyterlab/json-extension": ~4.1.6 + "@jupyterlab/launcher-extension": ~4.1.6 + "@jupyterlab/logconsole-extension": ~4.1.6 + "@jupyterlab/lsp-extension": ~4.1.6 + "@jupyterlab/mainmenu-extension": ~4.1.6 + "@jupyterlab/markdownviewer-extension": ~4.1.6 + "@jupyterlab/markedparser-extension": ~4.1.6 + "@jupyterlab/mathjax-extension": ~4.1.6 + "@jupyterlab/mermaid-extension": ~4.1.6 + "@jupyterlab/metadataform-extension": ~4.1.6 + "@jupyterlab/notebook-extension": ~4.1.6 + "@jupyterlab/pdf-extension": ~4.1.6 + "@jupyterlab/pluginmanager-extension": ~4.1.6 + "@jupyterlab/rendermime-extension": ~4.1.6 + "@jupyterlab/running-extension": ~4.1.6 + "@jupyterlab/settingeditor-extension": ~4.1.6 + "@jupyterlab/shortcuts-extension": ~4.1.6 + "@jupyterlab/statusbar-extension": ~4.1.6 + "@jupyterlab/terminal-extension": ~4.1.6 + "@jupyterlab/theme-dark-extension": ~4.1.6 + "@jupyterlab/theme-light-extension": ~4.1.6 + "@jupyterlab/toc-extension": ~6.1.6 + "@jupyterlab/tooltip-extension": ~4.1.6 + "@jupyterlab/translation-extension": ~4.1.6 + "@jupyterlab/ui-components-extension": ~4.1.6 + "@jupyterlab/vega5-extension": ~4.1.6 chokidar: ^3.4.0 css-loader: ^6.7.1 duplicate-package-checker-webpack-plugin: ^3.0.0 @@ -522,20 +522,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/application@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/application@npm:4.1.5" +"@jupyterlab/application@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/application@npm:4.1.6" dependencies: "@fortawesome/fontawesome-free": ^5.12.0 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/statedb": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/application": ^2.3.0 "@lumino/commands": ^2.2.0 @@ -546,27 +546,27 @@ __metadata: "@lumino/properties": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: 53feb2574cecc408aa4fec223dc9e2864f16593b3bdc6fb25904d350908883aef60e8a07ceb4da6224af6b9c810a8f311c6edc1b21ed7e2a9f83567e49f8a029 - languageName: node - linkType: hard - -"@jupyterlab/apputils-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/apputils-extension@npm:4.1.5" - dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/filebrowser": ^4.1.5 - "@jupyterlab/mainmenu": ^4.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + checksum: 7b240381f1c661b75c9d165686cb2cd6d376596d1450c1e40a4bdb4dc608bbe71622f7e6f0520da385c7ad1dc10f5d21e88a074cb8077d3ba57280f7dd65ed84 + languageName: node + linkType: hard + +"@jupyterlab/apputils-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/apputils-extension@npm:4.1.6" + dependencies: + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/filebrowser": ^4.1.6 + "@jupyterlab/mainmenu": ^4.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/statedb": ^4.1.6 + "@jupyterlab/statusbar": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -577,23 +577,23 @@ __metadata: react: ^18.2.0 react-dom: ^18.2.0 react-toastify: ^9.0.8 - checksum: 21cbe8c4b1e1f5a3afb24a365d4f7c36d79ef3830dfd8e8eee8ba11ae1eb36ea588103266df6635362def813bbb98e9aa7c0e30ea33ce87e646289d1a7d1057b + checksum: ee8dbd0c93087f85ad1039993236da6484c490847cde44db5e14b60dd3e8710f86591586f4077da72971efdaef7b46cc942f5dc54501d2887bae6c3cbf7553a3 languageName: node linkType: hard -"@jupyterlab/apputils@npm:~4.2.5": - version: 4.2.5 - resolution: "@jupyterlab/apputils@npm:4.2.5" +"@jupyterlab/apputils@npm:~4.2.6": + version: 4.2.6 + resolution: "@jupyterlab/apputils@npm:4.2.6" dependencies: - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/statedb": ^4.1.6 + "@jupyterlab/statusbar": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -606,27 +606,27 @@ __metadata: "@types/react": ^18.0.26 react: ^18.2.0 sanitize-html: ~2.7.3 - checksum: e5652a14d1d7972bcff84cec13fc2849a6520f6e7cb82275eff37869afdb7aa856af88dad5621dfb967ea99733539488164d3b5f54885248a87adf4c86c2ce65 + checksum: 2ca507223fb1ca3a527ce6c544c6fc1433a0eef9a41db54031f1b159a3ef29f4908e7408c22ce0cbf6e8a2e46999ab3f9175e06df54412dd6f583a5bdf11fb6a languageName: node linkType: hard -"@jupyterlab/attachments@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/attachments@npm:4.1.5" +"@jupyterlab/attachments@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/attachments@npm:4.1.6" dependencies: - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 + "@jupyterlab/nbformat": ^4.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 - checksum: 82a7c475a0eb4b7622d2d1290e4eb3aef9f9f4d104625def1ae4404628bcdcd543355cbe70a2f7675bca6a08e2a02d7ceedec376dcd3d7115ccfcd3497562690 + checksum: 94080c9c2b925315b221fbd3cef167740a7ba553d435813c3cca6da0740bdb556e73614440795a05d4027eb3114b3935e951f1aa10769afc1af7fa57c137b3e2 languageName: node linkType: hard -"@jupyterlab/builder@npm:^4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/builder@npm:4.1.5" +"@jupyterlab/builder@npm:^4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/builder@npm:4.1.6" dependencies: "@lumino/algorithm": ^2.0.1 "@lumino/application": ^2.3.0 @@ -661,13 +661,13 @@ __metadata: worker-loader: ^3.0.2 bin: build-labextension: lib/build-labextension.js - checksum: f7618f4ab388337248018680456f886d106e096a425c406f743559f11ef21380b9fc1d578bc008f7336e38b050ebe945e45d26bb18e7f6c28b27e2ff72e8be0e + checksum: 7807bc85d319ed43cedba7431a100219b5fb36fde40088f78faaf03d161a04c3a9fa2811e7d7ff47882c478e3fc264b19cce7e7bc2994329fb391e3975fdfb4b languageName: node linkType: hard -"@jupyterlab/buildutils@npm:^4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/buildutils@npm:4.1.5" +"@jupyterlab/buildutils@npm:^4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/buildutils@npm:4.1.6" dependencies: "@yarnpkg/core": ^3.0.0 "@yarnpkg/parsers": ^2.0.0 @@ -695,65 +695,65 @@ __metadata: update-dependency: lib/update-dependency.js update-dist-tag: lib/update-dist-tag.js update-staging-lock: lib/update-staging-lock.js - checksum: 73c069190a555fd4aa52d6b26c2b15e43b321445adfa6558118675957c5565d743a92945077038b15f4550761bda765aa2a117c315419baf3d24a1c519063b1f + checksum: 3b12059c85c91d0ab5a46d54794f09174395bf4acb6eef373ca7ddd9170010cec873de9a88a33a80000af13c21b4d4f08b2051a1e4cc650d853f870db0db936f languageName: node linkType: hard -"@jupyterlab/cell-toolbar-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/cell-toolbar-extension@npm:4.1.5" +"@jupyterlab/cell-toolbar-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/cell-toolbar-extension@npm:4.1.6" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/cell-toolbar": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - checksum: 07e8b9c70bc8dce8febf134e26a9dede3a998d0a83831c6edf8febb51af823ab304e51122a1cbc68f5f9ac29b249671bf704c8ecb97d3640963f0af42688e28f + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/cell-toolbar": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + checksum: 217f8a606401419c353ba26f390a060934259752832291b2c4e6768a899804041dd3771d5908ebf48125b438b4fc0667bbe33146481a13079176cbddd67667a4 languageName: node linkType: hard -"@jupyterlab/cell-toolbar@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/cell-toolbar@npm:4.1.5" +"@jupyterlab/cell-toolbar@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/cell-toolbar@npm:4.1.6" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/cells": ^4.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/notebook": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/cells": ^4.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/notebook": ^4.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: bffddd58bc536980e082ecd1521ad5b41730fa1bac2f55f869ed4f4214d19d86c6337c5b51b154324cb5c66d305fa57e30ca76ebae450a2933f2fa9e4d133405 + checksum: 3a1b8baafce38698fddde0354d7a1134dfb8cc81efa89d3e2bc9e5c2f31bd064c49f6c19d3f9ddfd3bc3bb9aa2e41a7b31e102ba2674bc0368b9c566bd857a2b languageName: node linkType: hard -"@jupyterlab/cells@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/cells@npm:4.1.5" +"@jupyterlab/cells@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/cells@npm:4.1.6" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/attachments": ^4.1.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/documentsearch": ^4.1.5 - "@jupyterlab/filebrowser": ^4.1.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/outputarea": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/toc": ^6.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/attachments": ^4.1.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/codemirror": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/documentsearch": ^4.1.6 + "@jupyterlab/filebrowser": ^4.1.6 + "@jupyterlab/nbformat": ^4.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/outputarea": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/toc": ^6.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/domutils": ^2.0.1 @@ -764,38 +764,38 @@ __metadata: "@lumino/virtualdom": ^2.0.1 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 49a9eec0323f4fcc96016303185dae72571a9b846c3ec0fc188e99b66ce7be6cd82efdd8056d041f9a4e55a1156b22004143a4c175b339fe83621e592e11c923 + checksum: 03c0d032a4a25795d5f086deae22343d52e0034fbd5098151565cfe5dcb17126bf6a277f5ef6e5d3358abc72a989e3000033e1b35e03b4fd4e2e3c45fbb0cde0 languageName: node linkType: hard -"@jupyterlab/celltags-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/celltags-extension@npm:4.1.5" +"@jupyterlab/celltags-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/celltags-extension@npm:4.1.6" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/notebook": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/notebook": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: 4061f787e363211cd86c7505ce43e21440944c5b40237437c37c62f7e11ed1a0b0c11dd144a51cf99b0645ceaca51aee167e0152b8d907c1b383bb09acee1b98 + checksum: e1733e5205f8c1147085a33f6aee80b89e1a74af093d420b6cf4e7b4b12a4c9aa217ce180ff2e8c4bea7e8a4f4259c194c29a3a920a7f049aad89cc511e33d15 languageName: node linkType: hard -"@jupyterlab/codeeditor@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/codeeditor@npm:4.1.5" +"@jupyterlab/codeeditor@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/codeeditor@npm:4.1.6" dependencies: "@codemirror/state": ^6.2.0 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/nbformat": ^4.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/statusbar": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/dragdrop": ^2.1.4 @@ -803,37 +803,37 @@ __metadata: "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: f9f52122fa90058f716023489a66e2c7c2830580484a4f5474570da302452c4fa8680e55c18988cfe7e19f204839628bfada358d46027d9971ba91f56b79be78 + checksum: 0c34e3f30e20aa590ac8308b00b1dc89a51b0b214cd0d548311b5b7392ae072db42e7823963ca0faf7761eadf5c4b62a1b25e467e44c93a0ccb9ac5ad645d1c3 languageName: node linkType: hard -"@jupyterlab/codemirror-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/codemirror-extension@npm:4.1.5" +"@jupyterlab/codemirror-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/codemirror-extension@npm:4.1.6" dependencies: "@codemirror/lang-markdown": ^6.1.1 "@codemirror/language": ^6.6.0 "@codemirror/legacy-modes": ^6.3.2 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/codemirror": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/statusbar": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 "@rjsf/utils": ^5.13.4 "@rjsf/validator-ajv8": ^5.13.4 react: ^18.2.0 - checksum: 81a23ea40845d2c6c175730fa45bbd1fda74b6ebae43edf01a5a0e9784a02a329bc51fbfb2c46d74ead1dbcaf4a0f7753630088ef3d89af062d07544dd9e15df + checksum: f16f2d62fe81acd6448eeea566d0bf1cc6efd8fc4dc22ad7ea396130c98477757b3af5469f98dd7f945ff86d89d58c74950d7a307174dad0d8889102b66cddf6 languageName: node linkType: hard -"@jupyterlab/codemirror@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/codemirror@npm:4.1.5" +"@jupyterlab/codemirror@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/codemirror@npm:4.1.6" dependencies: "@codemirror/autocomplete": ^6.5.1 "@codemirror/commands": ^6.2.3 @@ -856,11 +856,11 @@ __metadata: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/documentsearch": ^4.1.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/documentsearch": ^4.1.6 + "@jupyterlab/nbformat": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 "@lezer/common": ^1.0.2 "@lezer/generator": ^1.2.2 "@lezer/highlight": ^1.1.4 @@ -869,44 +869,44 @@ __metadata: "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 yjs: ^13.5.40 - checksum: 8f6f30fbaebb2a88d50c5af5732058e2e605077871c079524d6466949973660a862cf75a205100019bd02d9888a9d7d85460269bfe646257dd50e4c61c4d0af3 + checksum: 3083fad1754ef15d9ffc02a6c0d6f6c368cd90a40943245b92f321befc8c61ffe26a9bc260224e6ec32fc3df67feacf4fb925a51cc24aa90036d6ab3e7b7e9f2 languageName: node linkType: hard -"@jupyterlab/completer-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/completer-extension@npm:4.1.5" +"@jupyterlab/completer-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/completer-extension@npm:4.1.6" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/completer": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/completer": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: ae198c739290e18230f0509ac8d0b5ed437e6c1ade25e853cdd25782576087aa29622cdfe93e44ebb78bbf4b45973e095a6ecea071ea03ae6661b942bc47a4e5 + checksum: b433e9b63e5baba10b9116ce93079eddbf16cead892667e9a56ca867dd6c3fca0ecde33fadf347248d1e06eca2d203bf891a85da24eafd77af9605e5592cb548 languageName: node linkType: hard -"@jupyterlab/completer@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/completer@npm:4.1.5" +"@jupyterlab/completer@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/completer@npm:4.1.6" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/codemirror": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/statedb": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -914,65 +914,65 @@ __metadata: "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: 49e481b45d73f4cdec6bbf4a01665f946b436c38953f360abf8043fc8952c22192f05dabb3a582d40c5d91ef022b6d969ee797b6976a6e2b462887a524445f56 - languageName: node - linkType: hard - -"@jupyterlab/console-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/console-extension@npm:4.1.5" - dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/completer": ^4.1.5 - "@jupyterlab/console": ^4.1.5 - "@jupyterlab/filebrowser": ^4.1.5 - "@jupyterlab/launcher": ^4.1.5 - "@jupyterlab/mainmenu": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + checksum: f39665df61c22fcbabb03b7de94ad028047e59def2e394a70d99b3efa7c54730bec28bcc7c5a6728349e7ced7d9bf6c5407aa3bc4b8b85bd27e27af27360eabd + languageName: node + linkType: hard + +"@jupyterlab/console-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/console-extension@npm:4.1.6" + dependencies: + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/completer": ^4.1.6 + "@jupyterlab/console": ^4.1.6 + "@jupyterlab/filebrowser": ^4.1.6 + "@jupyterlab/launcher": ^4.1.6 + "@jupyterlab/mainmenu": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/properties": ^2.0.1 "@lumino/widgets": ^2.3.1 - checksum: e58d3d63ec6fde0e41e5ea51f915f99555e5cc468cde3d2d18b16161cd168c7244020a4652a5e24fdc8cc7ada4b88f003f0ff976fadd445dcb9d152b4303042b + checksum: f4871a4e127c56a7550fbac8349ec0b97bc7eb22a140988786cc4310668296784758696be20958dc24a82aa96a29268f0ca6c8ca962914fa2122a20c354dafbf languageName: node linkType: hard -"@jupyterlab/console@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/console@npm:4.1.5" +"@jupyterlab/console@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/console@npm:4.1.6" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/cells": ^4.1.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/cells": ^4.1.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/nbformat": ^4.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/dragdrop": ^2.1.4 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: 01e90b8527583c5ed0ad4b17db3d8062b96cac8517319d6a8a4fecec31e612264c06f5434adf3313b6a16eec190c456116c2095fcb9e4234f30d8d042ee7d734 + checksum: 140e8e4e240907251fb107fda9463380c07929b930a73c911b7db37e6ee89c9bd60c03310daf1ed852f711b10d9efdbfc5aa6d9693c5818b3de23c024061a96d languageName: node linkType: hard -"@jupyterlab/coreutils@npm:~6.1.5": - version: 6.1.5 - resolution: "@jupyterlab/coreutils@npm:6.1.5" +"@jupyterlab/coreutils@npm:~6.1.6": + version: 6.1.6 + resolution: "@jupyterlab/coreutils@npm:6.1.6" dependencies: "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -980,92 +980,92 @@ __metadata: minimist: ~1.2.0 path-browserify: ^1.0.0 url-parse: ~1.5.4 - checksum: b91c5a374f3c97d62e2442bb5f12cb79c6e440b5f6aa4d4ed6e492e8ca38836f7068106bb7029834a4e5de1947a9c44c342d23bedf9a4611aafca33629aed049 + checksum: f351f327f9c7ab14ac291e4ca85a8f4289dd315e9f2e68fc6acb52efab6c47fde158f65a83ba780c382665459995bad68c7b1f9c4ffef6b9038ac81252a3f07a languageName: node linkType: hard -"@jupyterlab/csvviewer-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/csvviewer-extension@npm:4.1.5" - dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/csvviewer": ^4.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/documentsearch": ^4.1.5 - "@jupyterlab/mainmenu": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 +"@jupyterlab/csvviewer-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/csvviewer-extension@npm:4.1.6" + dependencies: + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/csvviewer": ^4.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/documentsearch": ^4.1.6 + "@jupyterlab/mainmenu": ^4.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 "@lumino/datagrid": ^2.3.0 "@lumino/widgets": ^2.3.1 - checksum: 29125c98a1c58511552860e260e3d7c2152679896a19942e32b2d990467aa40741ddeda3ad27e07df3326f6095a1ab0d7c50156f4921499c713e2ce6e331ac96 + checksum: 861732c4a8b352a0d73e2c0619cbeb988d5e05435476af0f149fc31c4a3479d8701619f59bf67a83f0a9a9e0ab429f1ad51eb230f7a8bb764fced52cf3aff1de languageName: node linkType: hard -"@jupyterlab/csvviewer@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/csvviewer@npm:4.1.5" +"@jupyterlab/csvviewer@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/csvviewer@npm:4.1.6" dependencies: - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/datagrid": ^2.3.0 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: 1ceeea1d8dfc6da9bfd800b89ce2e7f0a146ba190b8cf366aa2a2b27ff9013a239fa7beb588b8ff12695feb92e521cd55cfea52631aaa8e634a50167e60210dd + checksum: 3e19c0df0d26221c8357029832c3e626977043e60bb01e5492bee6a0089be0e5a1b32b6a9bed7aee662f75bdad69c969cb86a3b24bd101e78d4c6984446ce8c2 languageName: node linkType: hard -"@jupyterlab/debugger-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/debugger-extension@npm:4.1.5" - dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/cells": ^4.1.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/console": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/debugger": ^4.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/fileeditor": ^4.1.5 - "@jupyterlab/logconsole": ^4.1.5 - "@jupyterlab/notebook": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - checksum: b93e13531f309d89f00bf106e2d23d4f39f0072131f69635e43ef22a18b2c6c280efc62837d7056995f599c5625d5e843680e12934a737eab4ed8ab72f09d6d7 - languageName: node - linkType: hard - -"@jupyterlab/debugger@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/debugger@npm:4.1.5" +"@jupyterlab/debugger-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/debugger-extension@npm:4.1.6" + dependencies: + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/cells": ^4.1.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/console": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/debugger": ^4.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/fileeditor": ^4.1.6 + "@jupyterlab/logconsole": ^4.1.6 + "@jupyterlab/notebook": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + checksum: 8630fb26892a8293504cae7d23474f4c9927020ffe93642a7addc166ae4735c8258ff6c150c4076984ccdc1722c9fa8626e167ecd54c9795a367362625009e43 + languageName: node + linkType: hard + +"@jupyterlab/debugger@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/debugger@npm:4.1.6" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/cells": ^4.1.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/console": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/fileeditor": ^4.1.5 - "@jupyterlab/notebook": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/cells": ^4.1.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/codemirror": ^4.1.6 + "@jupyterlab/console": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/fileeditor": ^4.1.6 + "@jupyterlab/notebook": ^4.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -1077,24 +1077,24 @@ __metadata: "@lumino/widgets": ^2.3.1 "@vscode/debugprotocol": ^1.51.0 react: ^18.2.0 - checksum: 729fafacac228d2034a42fd216b50502ef34db828f5324731206e3558d8eed91a33ba4422da45a86d239e970a878686a188c8ae443e22cf47ed136a827f4d083 + checksum: df7162a6ce0afc82bdc1d5ce2acadf3d278a0160dc0a970ccfe973ac56b42e208b476c419706fc93603f38a15b78e613ea66805132516f8b53d17e63cc2793fe languageName: node linkType: hard -"@jupyterlab/docmanager-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/docmanager-extension@npm:4.1.5" - dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docmanager": ^4.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 +"@jupyterlab/docmanager-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/docmanager-extension@npm:4.1.6" + dependencies: + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docmanager": ^4.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/statusbar": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -1102,21 +1102,21 @@ __metadata: "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: a3794e9228d55d68beeabefae1b4acffc3a51f4e745b302408ed663aacd4db727613a18cb2d3ba7650f1104238f38082d45b111a99150511b97574cc95f77275 + checksum: 633a8890fc8ac4bd26de26446e33e263ba537f9dce49d3f5508e5517443def1f48ce60636861d167934a16b082a1e07d55d74c27fc69b31ae0a3c5cf3911de36 languageName: node linkType: hard -"@jupyterlab/docmanager@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/docmanager@npm:4.1.5" - dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 +"@jupyterlab/docmanager@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/docmanager@npm:4.1.6" + dependencies: + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/statusbar": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -1125,24 +1125,24 @@ __metadata: "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: d56e8ab83f523c5c90593147cd5bf12a704348bcdec243f8ecaa375f91f6f4c7646a76e9c10920f4f7d1cd19f09f79adc5eb0fbc5d1ac817b6031d3ad6ce600b + checksum: 890a8f86fc3d96d896e86ed64ef3c713152d781c941eea99d1b2d021bf5d1844f2d0a52d8cb077b1e8a1d31f13a6253c118cbe70440e10df20a490ab2595bab2 languageName: node linkType: hard -"@jupyterlab/docregistry@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/docregistry@npm:4.1.5" +"@jupyterlab/docregistry@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/docregistry@npm:4.1.6" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -1151,32 +1151,32 @@ __metadata: "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 9b017d775c31dfb4ac60908afd9d24210e9434bf6d090fb3d55fcdc0ec9c16b23b6a009fe54a376f89363882f7c25f5e5eadf3b096fa72ce1a148b14773675e4 + checksum: 0b7db803cd0013e1b65f0294b5bec2f6d4047cd7b191080ade3d67ff78d1d5a2d0e3a7016532dd316899b291bbc0b07561a958b2dd750dbcf3fc34927552c0d8 languageName: node linkType: hard -"@jupyterlab/documentsearch-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/documentsearch-extension@npm:4.1.5" +"@jupyterlab/documentsearch-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/documentsearch-extension@npm:4.1.6" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/documentsearch": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/documentsearch": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 "@lumino/commands": ^2.2.0 "@lumino/widgets": ^2.3.1 - checksum: 5fb96a1e59a52b47f938b311a45f5c83bb03e5e767a8f15159c357400e0aad17ce3720dd86458e0a62e3253c1ffd03bea5b3482a5f875723aec11e793acb2bc3 + checksum: a250784148d58650cc251d5b9434ab40382ebb050fc535fa6aca9241f08cbccc094357ae7d66176f6b3680e48d7d1d5a99c5737c012bd9a7ba2e3d4a8813d381 languageName: node linkType: hard -"@jupyterlab/documentsearch@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/documentsearch@npm:4.1.5" +"@jupyterlab/documentsearch@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/documentsearch@npm:4.1.6" dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -1185,79 +1185,79 @@ __metadata: "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 496748a03177574a79305a42e29e996bf3633523cf9a6624ac117c97df2f5d4697cd45bf421033068539f94f568811307d0deccf2d1e24885d8f7d205b13a481 + checksum: 911fd30871b5087c1ad8c3decd3c5ac184aa61ae02e3bd7577665ad941d4078082df6ddf25af2acf937f4674f7fc1f2347698eef352ebbac67702e1a4b296491 languageName: node linkType: hard -"@jupyterlab/extensionmanager-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/extensionmanager-extension@npm:4.1.5" +"@jupyterlab/extensionmanager-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/extensionmanager-extension@npm:4.1.6" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/extensionmanager": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 - checksum: a301ba918e38bee5cd11f4eb817aa386a5a7e7ee15f79e148a19ca54f6b0234c477401acc0d4cbdb450931d83b3b0309f85d136755acc57e7f7587e418ceb8d5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/extensionmanager": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 + checksum: dcde0b36625f652ae8700370d789f444f053deb8486bbfe5baea1c2003a38fb4c902743f6288f87ebe36bf818252e78dc07d9efbcbcc9cd68d93c7ea4d3872d6 languageName: node linkType: hard -"@jupyterlab/extensionmanager@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/extensionmanager@npm:4.1.5" +"@jupyterlab/extensionmanager@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/extensionmanager@npm:4.1.6" dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/messaging": ^2.0.1 "@lumino/polling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 react-paginate: ^6.3.2 semver: ^7.3.2 - checksum: 35a464bba21244dba9515344f57abd3c06b680842f8d8a6805385ab06fba508f6cd8157dfe5036793d7a53c236da9ce4f36529c069e12784e7c40300a6ab51ca - languageName: node - linkType: hard - -"@jupyterlab/filebrowser-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/filebrowser-extension@npm:4.1.5" - dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docmanager": ^4.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/filebrowser": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + checksum: 1b537f909d48c810ee9a44b1c6c369a3934c6a10cbc8f84ee66a575312f080689224592ac6523d926c7930385f771818de8c2431e83e2fae14198cecbc6c7cfd + languageName: node + linkType: hard + +"@jupyterlab/filebrowser-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/filebrowser-extension@npm:4.1.6" + dependencies: + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docmanager": ^4.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/filebrowser": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/statedb": ^4.1.6 + "@jupyterlab/statusbar": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/widgets": ^2.3.1 - checksum: cf2aa75f18863a4df723a35f0dc3796886ce6a855e90370c7f3b7847894edc85f303e27505bc5b677d7c1287e19b928a1db90a2f3a804621e863b32a7cab0992 + checksum: f5af2f183a8798506281f22572a74b1e586e2c1128144bc44da9aeec99fa80bbb4ad975ff792929ef6687b65607484feb6b1e75abc794318d8835086221b2aba languageName: node linkType: hard -"@jupyterlab/filebrowser@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/filebrowser@npm:4.1.5" - dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docmanager": ^4.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 +"@jupyterlab/filebrowser@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/filebrowser@npm:4.1.6" + dependencies: + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docmanager": ^4.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/statedb": ^4.1.6 + "@jupyterlab/statusbar": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -1269,221 +1269,221 @@ __metadata: "@lumino/virtualdom": ^2.0.1 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 6ec08114012ab6ec8c3263fcff932c6949445c4d01f1f8aeefb9e6c496628025ca84683ae212aa03c5342b43e5df9082c812c6bf2b05fc0e2dc7aefeedf47cd2 + checksum: 886d086b183b3d92af0dcafc7f752ef9bcaabd8e48af39794446897240091390989c5c9dd5e602d5f29a240e99ca4134f802d63c55b2a5f87168adf20a9bc26e languageName: node linkType: hard -"@jupyterlab/fileeditor-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/fileeditor-extension@npm:4.1.5" +"@jupyterlab/fileeditor-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/fileeditor-extension@npm:4.1.6" dependencies: "@codemirror/commands": ^6.2.3 "@codemirror/search": ^6.3.0 - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/completer": ^4.1.5 - "@jupyterlab/console": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/documentsearch": ^4.1.5 - "@jupyterlab/filebrowser": ^4.1.5 - "@jupyterlab/fileeditor": ^4.1.5 - "@jupyterlab/launcher": ^4.1.5 - "@jupyterlab/lsp": ^4.1.5 - "@jupyterlab/mainmenu": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/toc": ^6.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/codemirror": ^4.1.6 + "@jupyterlab/completer": ^4.1.6 + "@jupyterlab/console": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/documentsearch": ^4.1.6 + "@jupyterlab/filebrowser": ^4.1.6 + "@jupyterlab/fileeditor": ^4.1.6 + "@jupyterlab/launcher": ^4.1.6 + "@jupyterlab/lsp": ^4.1.6 + "@jupyterlab/mainmenu": ^4.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/statusbar": ^4.1.6 + "@jupyterlab/toc": ^6.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: 91e7d97b71d814cabb75b9f67462dd613f1f1eb5a96254e1598b4e7efb17b6422db58b10a0776f84d91998f221bc7bb08e4ae475e57bd7e99c138d65c6ef8c1d + checksum: e33e13adbb5ec6c488e62f12346a0b5aeb679d6b1aa3b234eee3a2ce26a05c9c8097aa8a86f7e781423dbc4534ed671dba409dcb62ab2bf56d8ab11f22f9ad6a languageName: node linkType: hard -"@jupyterlab/fileeditor@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/fileeditor@npm:4.1.5" +"@jupyterlab/fileeditor@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/fileeditor@npm:4.1.6" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/documentsearch": ^4.1.5 - "@jupyterlab/lsp": ^4.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/toc": ^6.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/codemirror": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/documentsearch": ^4.1.6 + "@jupyterlab/lsp": ^4.1.6 + "@jupyterlab/statusbar": ^4.1.6 + "@jupyterlab/toc": ^6.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.1 react: ^18.2.0 regexp-match-indices: ^1.0.2 - checksum: 88fe63f91ed7266afa0447f4d919b57cd8bae944d8661bc570562b570a8196cc23c5f92777058515cfeb0c12c5fb98b6906b5d8c91190dd8c961b921f268d1af + checksum: 440bd5a1ad36bbb775f6590486b759319ce87e243a49981004bc0dbc1ac90a3f605d741ec22b2de19949668781604688c10aa738134e4bf564ee4b81d93c1f54 languageName: node linkType: hard -"@jupyterlab/help-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/help-extension@npm:4.1.5" - dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/mainmenu": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 +"@jupyterlab/help-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/help-extension@npm:4.1.6" + dependencies: + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/mainmenu": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/virtualdom": ^2.0.1 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: f6b5d13d0181a5cd49110a7ba11779f78933da52c2ebfd11839e2a080549be460121ac8a11d441c5a18aeccab4f6885554ad28caa91ea43d8bc91e93652de698 + checksum: 4734bb9ae26c79197dad69a237d0425732a7b22b3559c0538e85f1ab5c2da64c9346e1517300934a02090cc5b7aeb29217457abdbed46d673af778bf6f032f13 languageName: node linkType: hard -"@jupyterlab/htmlviewer-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/htmlviewer-extension@npm:4.1.5" +"@jupyterlab/htmlviewer-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/htmlviewer-extension@npm:4.1.6" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/htmlviewer": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 - checksum: e46ed0fc0df1f27eceab067e34f3b45fdb5703f2f98b03b0da352ccd95c8256859fd07b12fd1bf94ee9fa3fc3f20a8dfc9f1bd08de59238d2945d0b61d61495f + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/htmlviewer": ^4.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 + checksum: 3680074acb578288cfddf0bd7adce183e4486d5c0c5614c504496009c008b499f2c1db8347605c89a32a05e8dd9621803158332a69406d5bb40ace0f6297e35a languageName: node linkType: hard -"@jupyterlab/htmlviewer@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/htmlviewer@npm:4.1.5" +"@jupyterlab/htmlviewer@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/htmlviewer@npm:4.1.6" dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: e1bb9fa7d385dca7781d42d665d30f6983fdaf29155f0d7c9f6f7f1f4c47973d8bf3d28a9b711c9abd988b2cc2de5f07f8841e736fb7c5a33cf9855ea03da990 + checksum: 9a00ab14bdb595d5bb144850ca0d9b41b27f7170cc6af22bd58fc0cc16b7b9dcb4f52b9fd2ea80e472cd15fee7e70f3c7930e41e49e196d2ece9093ac70912d1 languageName: node linkType: hard -"@jupyterlab/hub-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/hub-extension@npm:4.1.5" +"@jupyterlab/hub-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/hub-extension@npm:4.1.6" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/translation": ^4.1.5 - checksum: 90a8287e76b7e5f84f73e6a0590c73a287f5f33db7a568e0a01234ef2056d36250ff1ffbfa99d606d46b714fba522409431efbb545a051a4464565540149a130 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/translation": ^4.1.6 + checksum: 7b718c44c73a060c5f9fe0786304d64c551cb1a99d531dc26d83f66920519f81dd7b5edd10aa9171e3c4b0b11c3630c1bf324c20f1931af99bdd6016f92e452c languageName: node linkType: hard -"@jupyterlab/imageviewer-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/imageviewer-extension@npm:4.1.5" +"@jupyterlab/imageviewer-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/imageviewer-extension@npm:4.1.6" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/imageviewer": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - checksum: 57b41a940e7728ea3bbbcd4a243b71fd9108711764e566f6de894ae23816b92046106cd27f46fa42b529565dcdda23e91629e602d5864061f191b4503530c9b9 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/imageviewer": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + checksum: 7b297526f692f6d5fe769907d1796a8893c0d5f3cf8dec82d32e4335a2528e4d5dce8a31a7e0118fc1627424f0d8189c11431cee531f3935ea673b9aa61b4b6b languageName: node linkType: hard -"@jupyterlab/imageviewer@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/imageviewer@npm:4.1.5" +"@jupyterlab/imageviewer@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/imageviewer@npm:4.1.6" dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docregistry": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.1 - checksum: 963e9f58f55d63dba9cab7ebe06fd80d0a3f403b0366b91d7161a3d834bd044b32cca3a539923f3dd29003b2bf4b5cb5f581ba40b8fc459ea3e5e45f32e6fe39 + checksum: b23f38fd65b97f6d71d407a0e7e31d72204c3c44725518b00e64039ec0138f2a11538caf868c2b4570ef3088a2e1f16d7a831d886960b59ae8c12c1cc4d6399b languageName: node linkType: hard -"@jupyterlab/inspector-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/inspector-extension@npm:4.1.5" - dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/console": ^4.1.5 - "@jupyterlab/inspector": ^4.1.5 - "@jupyterlab/launcher": ^4.1.5 - "@jupyterlab/notebook": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 +"@jupyterlab/inspector-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/inspector-extension@npm:4.1.6" + dependencies: + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/console": ^4.1.6 + "@jupyterlab/inspector": ^4.1.6 + "@jupyterlab/launcher": ^4.1.6 + "@jupyterlab/notebook": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/widgets": ^2.3.1 - checksum: be7f5a2c1452f8722fdecb0b7856925a38286a3a2abe5b06dac167eb405df128e4e8e99c73469d2fbe3e683b236e2c64aaa6797035658ba40e5e6d1a72395461 + checksum: 8724fdce3d6a2e0a9f4112512760256aca5a60550265d9ed1bd2898b6e0f5c2f48962c5f4e32fae86fefb63858fa89e80429d3ff1314bac96b6b705c5f87f494 languageName: node linkType: hard -"@jupyterlab/inspector@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/inspector@npm:4.1.5" - dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 +"@jupyterlab/inspector@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/inspector@npm:4.1.6" + dependencies: + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/statedb": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/polling": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: ab98848ad92a8a38c88a15df79b2d15772aa3bec2d46022ffffb8d80abe57f0ce865f13177ccfb2736921208cb539cd4aef353bb8ee8eade5e59825fcd13ee0f + checksum: 348bb54359685c310d24cfa3628eaf2213dba167130de96193bd8e5dedcbc1871fadf460ed799b5db94d8affa25dcd05dc37cb537b976095f41c07c9c0965a81 languageName: node linkType: hard -"@jupyterlab/javascript-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/javascript-extension@npm:4.1.5" +"@jupyterlab/javascript-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/javascript-extension@npm:4.1.6" dependencies: - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - checksum: 111ade14cda8d41e636b95c06266c0b9b6b5048256395f2eeafffaadd71ffab9aaf3077f09220e31fb343aa73c109c7ca46244bd54325089a58f099f4c0bf77a + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 + checksum: 152a9225731b15be68f53ce7c81cf1e918b964d41a339ceec5fc86b4e9dc5e5400e34e1dcc24904796883edf4388cb17ab9fc19b07156e69c8b76483e03aa208 languageName: node linkType: hard -"@jupyterlab/json-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/json-extension@npm:4.1.5" +"@jupyterlab/json-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/json-extension@npm:4.1.6" dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/codemirror": ^4.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lezer/highlight": ^1.1.4 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 @@ -1493,34 +1493,34 @@ __metadata: react-highlight-words: ^0.20.0 react-json-tree: ^0.18.0 style-mod: ^4.0.0 - checksum: 0af66d40dc2c81add879a01472e73a34fa9c7cc2d2528c7cbab6f7f8076779cb8fcc378b555e5592236c60740279ef9dc0882cf56365ba6b66f702ac895936c4 + checksum: ecc2f7fbec89a666b8f04329c19a3635bf6a6a43c3005d9ccd8bccdf7d1d27b3746b3e2746298f280168eb607c7ac098b345fbe035e6dfa02377d94ba33ace4e languageName: node linkType: hard -"@jupyterlab/launcher-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/launcher-extension@npm:4.1.5" - dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/filebrowser": ^4.1.5 - "@jupyterlab/launcher": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 +"@jupyterlab/launcher-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/launcher-extension@npm:4.1.6" + dependencies: + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/filebrowser": ^4.1.6 + "@jupyterlab/launcher": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: e774e8a0c8493777990536b072b72ff00d9f5e0e01fa9c1d020465d0acb409f79a7120745a03457083c7bca36513085e055dc9fb15f53b70630078dfedb6f5b6 + checksum: b0047fb6365f61fe79f7815ca8999b39c8f2f43dfeeb0b286714fdbfbeef61c519919e8aa74760f0a6362744dd76bf01e59398879c1b3a3c6f42ae0fd8cbe9dc languageName: node linkType: hard -"@jupyterlab/launcher@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/launcher@npm:4.1.5" +"@jupyterlab/launcher@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/launcher@npm:4.1.6" dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -1528,81 +1528,81 @@ __metadata: "@lumino/properties": ^2.0.1 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 78ffd573f18f21e954969e29e4d2002631b7ccee4f44dc32373e8fe64fdc0ba523aec6f535e636e0395953cc1013a22b1cc520ad75cfc3029c842335030785b1 + checksum: 50168b135751f3a20dab73f5fb62bac2d5a784fa818eac64dddc6fdc96f12da58dc0de3292c9ccd6ce717ff89c0ac99090dfeeafbf5dd5bbea9a71ecf0fa2c1a languageName: node linkType: hard -"@jupyterlab/logconsole-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/logconsole-extension@npm:4.1.5" - dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/logconsole": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 +"@jupyterlab/logconsole-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/logconsole-extension@npm:4.1.6" + dependencies: + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/logconsole": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/statusbar": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 91e98fdddcc3fe5babeb1168cfe018ecbe163542877dd9bb727b6650b10190b98bed923070f2f1de98996ad77b18d8fd465f9d12f1ca952b775dea3b0a880cc3 + checksum: 457ef5b7136e0eeda8583c90492c351517c314254eb183a873c31e2ee33cb083a271df3fe3ceba66620a0e0e525804309a85612fbc452f4bc32408c549b7e696 languageName: node linkType: hard -"@jupyterlab/logconsole@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/logconsole@npm:4.1.5" - dependencies: - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/outputarea": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/translation": ^4.1.5 +"@jupyterlab/logconsole@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/logconsole@npm:4.1.6" + dependencies: + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/nbformat": ^4.1.6 + "@jupyterlab/outputarea": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/translation": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: 9a6ce7edc30d3511d59fc81476539c4508bb117d2a6d9bc276abc48983daa9819584bcc7c8bd61bd5c09b80aa010b70d61f17d128ff480b413cb2206b87e089f + checksum: b159bb3066237845fcbf7dd843b6e31f4245a9e0c7c1d1bf2f9a232e168d3c06c0f0a8d923ac88b2fc6bfb4ea5d95a2245bbc59b547ab7513053ed3181ff1d93 languageName: node linkType: hard -"@jupyterlab/lsp-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/lsp-extension@npm:4.1.5" - dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/lsp": ^4.1.5 - "@jupyterlab/running": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 +"@jupyterlab/lsp-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/lsp-extension@npm:4.1.6" + dependencies: + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/lsp": ^4.1.6 + "@jupyterlab/running": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/polling": ^2.1.2 "@lumino/signaling": ^2.1.2 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: c51ad772fdff756a53122ddd07e7207753e42342113d94631d3bf74a432b15b681445eda9f881e8b16124ef0d3a23ac2b31c6e7acf0bcde2a306f710b1457bf8 + checksum: ddcfd3a99724b42d043c304678400c1b766c422941d78b36efabc1c0e2a1477a6f72e91178b58646b0759efec668b790c4c613ccc70a71729ba86a3ad6d56923 languageName: node linkType: hard -"@jupyterlab/lsp@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/lsp@npm:4.1.5" - dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/translation": ^4.1.5 +"@jupyterlab/lsp@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/lsp@npm:4.1.6" + dependencies: + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/codemirror": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/translation": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 @@ -1611,160 +1611,160 @@ __metadata: vscode-jsonrpc: ^6.0.0 vscode-languageserver-protocol: ^3.17.0 vscode-ws-jsonrpc: ~1.0.2 - checksum: 2f8a63214684c5dde76eed7c7b22dbf3a4b33babdf081d3f321b00caae83045b97d4df216a903ecc0ed22950e8c213b11885f7efc94d1ce0ac30a5ca5b9362f6 + checksum: d777321cdc78896a7a184394937fdccbab1c623d4f4897335c4da419862ef09e62919667ba7a5a5da5df10a474e9da1ebb0e8f8dde444c3efdf3d9ddaf4a2e67 languageName: node linkType: hard -"@jupyterlab/mainmenu-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/mainmenu-extension@npm:4.1.5" - dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/mainmenu": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 +"@jupyterlab/mainmenu-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/mainmenu-extension@npm:4.1.6" + dependencies: + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/mainmenu": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: 6a7e5a2246806cbfb81bfd2acd8095d816381fc08afa7d08684e9e09cce220f7977f673df0fc09604dd64c6413cf8fe1cebc1696614ff635a90736d80ffc014d + checksum: d6f017e665a66a7ef619697b08c886cead2d68938cb429c59e3a8ca6c541e2487a8265331f7178049c5c56c01740db0e1662b8cf9a9196006b9226357dc55f3e languageName: node linkType: hard -"@jupyterlab/mainmenu@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/mainmenu@npm:4.1.5" +"@jupyterlab/mainmenu@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/mainmenu@npm:4.1.6" dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: 7e0e3fe6635dee022cdc5326306ed0abe4b1a04b4f110c2393c825479e5959b9e33a6fc030e61324d09f7dadfc39dd041a58ad299dc522ce55988e6aa06fdc0b + checksum: 2204d6417ec786efab1689f1349b1df59754ea717d9d4fe647866a5fdf9931a58505a18cbf9615f8706ca482fb36fad707e5d42a5c4837535650f5dcb9ea650c languageName: node linkType: hard -"@jupyterlab/markdownviewer-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/markdownviewer-extension@npm:4.1.5" +"@jupyterlab/markdownviewer-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/markdownviewer-extension@npm:4.1.6" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/markdownviewer": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/toc": ^6.1.5 - "@jupyterlab/translation": ^4.1.5 - checksum: f125de07cf1f6d62cea6cd0fb518eed285483524af8751c3ff622a86d06997ab1535ab24195f9cfe3acb6052811f74c08e0d62f28caaad22f350f7179261ae4b + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/markdownviewer": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/toc": ^6.1.6 + "@jupyterlab/translation": ^4.1.6 + checksum: e09e713618933d13ab184da88366b47a19adbb635db60bfe16737d0eecb3dce4c2b05087ed1440af8e0e2f0f5280380df096f8ff2b7cc4639f1842b8b85ccb3f languageName: node linkType: hard -"@jupyterlab/markdownviewer@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/markdownviewer@npm:4.1.5" - dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/toc": ^6.1.5 - "@jupyterlab/translation": ^4.1.5 +"@jupyterlab/markdownviewer@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/markdownviewer@npm:4.1.6" + dependencies: + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/toc": ^6.1.6 + "@jupyterlab/translation": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: 45f4397265fd44144a948588f6770498ba07a7b93a81697fc6f0423d4e9730149eff8213f9371954439d7ee5ba526f43c216696a752d213647c2068b10931686 + checksum: ebd82f6e116dfed32e391435e079672f83017fa8037473861d4a5a930a3b7caa2cefab6e25f5edc71ae0a304617be32a03b99153c3a13de6aa93460e384b6dfb languageName: node linkType: hard -"@jupyterlab/markedparser-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/markedparser-extension@npm:4.1.5" +"@jupyterlab/markedparser-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/markedparser-extension@npm:4.1.6" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/mermaid": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/codemirror": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/mermaid": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 "@lumino/coreutils": ^2.1.2 marked: ^9.1.2 marked-gfm-heading-id: ^3.1.0 marked-mangle: ^1.1.4 - checksum: d8b651e3e3eb339d4a9f44bb49323dc3c55e27a7afe8c397c149c2b0adca3f36a3d46306e37341f376587af25c60d7e910afb4114e4112056ba677c145dd99b7 + checksum: f4ce60b400ed6be5c07ba9ca084a5dcdf27ade5bd05f32887475f3daa0144d996de91802753dd0f23d8d3881bd5192f909b20b727abd6a33ca5a306c0a8294ac languageName: node linkType: hard -"@jupyterlab/mathjax-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/mathjax-extension@npm:4.1.5" +"@jupyterlab/mathjax-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/mathjax-extension@npm:4.1.6" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 "@lumino/coreutils": ^2.1.2 mathjax-full: ^3.2.2 - checksum: 91714e7913c32fd054db9ae0040023eba2addccc1261e109feb4bf58f51f5bd08b447f7cfce3e7cbaf4a1ee3adb300fe4ddcd9bc45d008483dd1483cdb5638b7 + checksum: 6cff09609b72744340ba173201d1a35847d5efdefa33155883ab663b07dd5ed8179084fbc257a7829d1c11113175f97dbdfb720eeee3c2d34ee8ccfb9220d82f languageName: node linkType: hard -"@jupyterlab/mermaid-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/mermaid-extension@npm:4.1.5" +"@jupyterlab/mermaid-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/mermaid-extension@npm:4.1.6" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/mermaid": ^4.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/translation": ^4.1.5 - checksum: 60a98c69c382af0ed10cca4aa50f3e744635ba483256360213d648eb2bf2b7eb291c4f2a926b8e8663d5e0b65c95a48fe9b791bfc7cc612982caa508bf7f0342 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/mermaid": ^4.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/translation": ^4.1.6 + checksum: f4a28a1f4b6b62c96b388934748d940a89d5f95e8dc0b304f27742c19e8d6abccd12b398fbaee5656b46537150cde037f3c554dc599756781f10e6ff36fb5dc1 languageName: node linkType: hard -"@jupyterlab/mermaid@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/mermaid@npm:4.1.5" +"@jupyterlab/mermaid@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/mermaid@npm:4.1.6" dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 mermaid: ^10.7.0 - checksum: 32d3d8ec5658a8549cd22b9a78948116d45dc36f741a2a66c3b0f26d87cbe8d7c796a71df4363c4760e9d8b76bd15a76a09893330d2eda89bf117e86988ddfbe + checksum: 375245985efbced62893754b214afba0231b1e1067313e98d0c9685a1c97a6370ed92aade3e67eda7963876f5e5d94c97a234d0c68373b70101e7693e26cea3e languageName: node linkType: hard -"@jupyterlab/metadataform-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/metadataform-extension@npm:4.1.5" - dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/metadataform": ^4.1.5 - "@jupyterlab/notebook": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 +"@jupyterlab/metadataform-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/metadataform-extension@npm:4.1.6" + dependencies: + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/metadataform": ^4.1.6 + "@jupyterlab/notebook": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 - checksum: 0b7a2b39b0a332e4f103c9a93244221c6fab39fc90da7ba961233baaaf58da683ac3f51a5665120f7c1c9fc23eed9def9059f6afe5a4d987069953da09e5eb0b + checksum: 56782c5d8a65c731993149232bde968935ea56bfce9b3be87c77b26d686d178ce9b8822f96d3a57299f23df817073dd1aa18e0874900d381c12ff38082ee3a2b languageName: node linkType: hard -"@jupyterlab/metadataform@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/metadataform@npm:4.1.5" - dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/notebook": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 +"@jupyterlab/metadataform@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/metadataform@npm:4.1.6" + dependencies: + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/nbformat": ^4.1.6 + "@jupyterlab/notebook": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.1 @@ -1772,53 +1772,53 @@ __metadata: "@rjsf/validator-ajv8": ^5.13.4 json-schema: ^0.4.0 react: ^18.2.0 - checksum: dcb7feffc47a8a72cf7533c4327036fc09ee09cc635a47d45060fe954942424265971ec0223c9991b6466b526f5ba20e2da2ec355facd2c008676fa7a50f3639 + checksum: 26ff4ff4ccef5c02345c3dabff8a6ba32e35feac49789670ab92bf3822cffcf6d23694d6589df6ef86e1f71523d59c93caf6abca6a40bc0e7b5a904f04d0eac2 languageName: node linkType: hard -"@jupyterlab/nbformat@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/nbformat@npm:4.1.5" +"@jupyterlab/nbformat@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/nbformat@npm:4.1.6" dependencies: "@lumino/coreutils": ^2.1.2 - checksum: d417d7eade40d389fea8593358b6455158cf3e67fa40c0c4c05c865852520acc466102109723c9cb16eecf95952617d79f7fe6be9da6ca3f601749bdecdfda97 + checksum: 4ef43fdaaecec06732528753c5316adaa883c77ae86d129fb5d1f0542124acc0e7bb5692aae799463722b8c47ce8934356572c040d682e0ce41548eca3ca421b languageName: node linkType: hard -"@jupyterlab/notebook-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/notebook-extension@npm:4.1.5" +"@jupyterlab/notebook-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/notebook-extension@npm:4.1.6" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/cells": ^4.1.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/completer": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docmanager": ^4.1.5 - "@jupyterlab/docmanager-extension": ^4.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/documentsearch": ^4.1.5 - "@jupyterlab/filebrowser": ^4.1.5 - "@jupyterlab/launcher": ^4.1.5 - "@jupyterlab/logconsole": ^4.1.5 - "@jupyterlab/lsp": ^4.1.5 - "@jupyterlab/mainmenu": ^4.1.5 - "@jupyterlab/metadataform": ^4.1.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/notebook": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/property-inspector": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/toc": ^6.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/cells": ^4.1.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/codemirror": ^4.1.6 + "@jupyterlab/completer": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docmanager": ^4.1.6 + "@jupyterlab/docmanager-extension": ^4.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/documentsearch": ^4.1.6 + "@jupyterlab/filebrowser": ^4.1.6 + "@jupyterlab/launcher": ^4.1.6 + "@jupyterlab/logconsole": ^4.1.6 + "@jupyterlab/lsp": ^4.1.6 + "@jupyterlab/mainmenu": ^4.1.6 + "@jupyterlab/metadataform": ^4.1.6 + "@jupyterlab/nbformat": ^4.1.6 + "@jupyterlab/notebook": ^4.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/property-inspector": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/statedb": ^4.1.6 + "@jupyterlab/statusbar": ^4.1.6 + "@jupyterlab/toc": ^6.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -1828,32 +1828,32 @@ __metadata: "@lumino/widgets": ^2.3.1 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: a129f0cf3784624768e75ed4f509b496a56bee8aebfb373a830ec37de4e010add8732330d14f35657b367230a6d6701915d5d9cc5bd474808a5c13f386530c26 + checksum: b19d76845253a70e117fed0675fefd5e1105d8b370f3a45839c2d5858d4ed4e00397b1e5e8dae17cabd97d95555a379420db628d225b23e3afd9cee3cd4b1fab languageName: node linkType: hard -"@jupyterlab/notebook@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/notebook@npm:4.1.5" +"@jupyterlab/notebook@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/notebook@npm:4.1.6" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/cells": ^4.1.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/documentsearch": ^4.1.5 - "@jupyterlab/lsp": ^4.1.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/toc": ^6.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/cells": ^4.1.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/codemirror": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/documentsearch": ^4.1.6 + "@jupyterlab/lsp": ^4.1.6 + "@jupyterlab/nbformat": ^4.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/statusbar": ^4.1.6 + "@jupyterlab/toc": ^6.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -1865,34 +1865,34 @@ __metadata: "@lumino/virtualdom": ^2.0.1 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 63ae9f1ec558b48cd81f4155d52a5c0ae9cf4bc76fe21273762e45077a7e5768b071b20aeee616cfdfee767f26667b2b896304c90ced3db96605e6e655a00903 + checksum: 46401d9bd70bffec69d226a2cf35b6194cbdd4b47f2833a39e31fbd95e1f75b3ddc71c13286c25eed5c7e7092de566a89301fadb2923841ecf11e1802c874469 languageName: node linkType: hard -"@jupyterlab/observables@npm:~5.1.5": - version: 5.1.5 - resolution: "@jupyterlab/observables@npm:5.1.5" +"@jupyterlab/observables@npm:~5.1.6": + version: 5.1.6 + resolution: "@jupyterlab/observables@npm:5.1.6" dependencies: "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 - checksum: 6d45de8a137c79566818ff56460366419b2603a06ab5d9cef4f0b311df3fd69c755b357ab3bd9c26ed56dec5a2247ef0cfc15cfa6e2e180aa46af7f96c6ab10c + checksum: 930e53ca38dd08232ec46585acf8d49ebbef9628a792619fbf51a1da13f3249da24a7a8b24c34a2c7ce3fa50145a4e647b65e19275ea5ce92946a2ad805faa82 languageName: node linkType: hard -"@jupyterlab/outputarea@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/outputarea@npm:4.1.5" - dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/translation": ^4.1.5 +"@jupyterlab/outputarea@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/outputarea@npm:4.1.6" + dependencies: + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/nbformat": ^4.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/translation": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -1900,201 +1900,201 @@ __metadata: "@lumino/properties": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: 3cd51dd9ba4d613c42ec2917065c8b6f39b418e3a892b7662741f31aceaca816e55af80af97513e783a6b1e4d152497e03062b18ee80dc1bace0b4d2a7f4b439 + checksum: e45e0db75b1d4def07ff48323ac84ef1b7eedfd09cff24a9c669db8da9bc846fd8186eaa34a210e66fdab2c0b6a9be93e406e7e54456063fbe879bf2c2ffcbea languageName: node linkType: hard -"@jupyterlab/pdf-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/pdf-extension@npm:4.1.5" +"@jupyterlab/pdf-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/pdf-extension@npm:4.1.6" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.9.5 + "@jupyterlab/rendermime-interfaces": ^3.9.6 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: a8a567c1dc4d49d6561df272626a44cc8d40c2d859f1860b8d9200831bd0724bb529b93ec3ab614bf677d1ec3ed9abec553cc68a48d256ad835cf0dac98a7b3b + checksum: f36e0c4bc00d5c8e9f8671b2946658f5303a91ac81fe9cf276bf3a9580b835f426b72b844149f80f822faf98fd070d86743caa4b671ae17393a657780afb915c languageName: node linkType: hard -"@jupyterlab/pluginmanager-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/pluginmanager-extension@npm:4.1.5" +"@jupyterlab/pluginmanager-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/pluginmanager-extension@npm:4.1.6" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/pluginmanager": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/pluginmanager": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 - checksum: 34a3799ddc2b1bc0ac29c8084565b37ccac83285500b9df70af7e38b01cdf0f065b38d49037d23c6852cbd74995159131329c9a892997ee82887441603fba289 + checksum: d734f1044e2b9ad87f9b84e83d44eba72d5b2a78fa04332f84fd1c427c9b6674dfc815ca81a5e7b12e207599790ff4ff3731093dd4dcbd24731926928d264fc3 languageName: node linkType: hard -"@jupyterlab/pluginmanager@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/pluginmanager@npm:4.1.5" - dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 +"@jupyterlab/pluginmanager@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/pluginmanager@npm:4.1.6" + dependencies: + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 5b8dc56f2970c57059b2a4429decd61e7062654084008f85abe7ef8eb2580ad1d6776ceb4f4e1709b365812605edd30be61d5d20adcdaba99227ab9819fe7feb + checksum: 4c09dbcab4db1e9900995fcb64a5266bad04898c98e000f62c4e4f77f74c21f35fe45442d2cc70f94ea42c2b04ceeea16be5c2bf0dd5804830c9371e4664b5f5 languageName: node linkType: hard -"@jupyterlab/property-inspector@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/property-inspector@npm:4.1.5" +"@jupyterlab/property-inspector@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/property-inspector@npm:4.1.6" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: b24cfcb8f5aeb598d02b02aefa2b2dab2621fb5c2cf38f3ef6ea24bebdf26a765b87e89869d357eda5a423eb806f1b28f036f33ac3365dae25e3dd655e820b5b + checksum: aaea35dcbf5fae8aa264c233d740b90d485e77f4b6d6d59aa58325f9d74ce457ad4d28f802e5cda6e923163f8adc3b81014b05e481cc06b5de90c8e0d68949dc languageName: node linkType: hard -"@jupyterlab/rendermime-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/rendermime-extension@npm:4.1.5" +"@jupyterlab/rendermime-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/rendermime-extension@npm:4.1.6" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/docmanager": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - checksum: d3bec65c77ec5205ade4063a040be632175848d484619b6dc90964e31b9375cdc0cc10e1cdd18d61f98c5680f624fd80680c3c5b85303ff33f984f11b20bffde + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/docmanager": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + checksum: c0c801e68f155beba4435f8734bd30cb5caa640614f2c5c3f907e6a606ecfb3a06e681f8b6455ec018176675a9f507954d98f7a30ab1c38586118287361473c2 languageName: node linkType: hard -"@jupyterlab/rendermime-interfaces@npm:~3.9.5": - version: 3.9.5 - resolution: "@jupyterlab/rendermime-interfaces@npm:3.9.5" +"@jupyterlab/rendermime-interfaces@npm:~3.9.6": + version: 3.9.6 + resolution: "@jupyterlab/rendermime-interfaces@npm:3.9.6" dependencies: "@lumino/coreutils": ^1.11.0 || ^2.1.2 "@lumino/widgets": ^1.37.2 || ^2.3.1 - checksum: 790c8d4d58213c02470599b2c69e8ccff8d3496750fc88403aafe4e7bc26bb262d40c9ed3fdd27fdfd77268b94e7ea4e178f73897dd42d9ab18cbe5a359d925c + checksum: 9dd08d4c71ece6e68e2972b4ce950153e2d38cc876208bb1f0e5d533daf50b062bd6aa1711c94934ea2a1f8445cf49dc6370cda80e1372b3fbede0d4534b0235 languageName: node linkType: hard -"@jupyterlab/rendermime@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/rendermime@npm:4.1.5" - dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/translation": ^4.1.5 +"@jupyterlab/rendermime@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/rendermime@npm:4.1.6" + dependencies: + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/nbformat": ^4.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/translation": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 lodash.escape: ^4.0.1 - checksum: b96a56aa5e32cfcb99ac757ccb41cad29f2be9ded204c6f7bdc5b1bf55cdb4e2129aef596c0ee21ac96384e809c3aea59cd2885c7e2c8d39d45bdf373041259b + checksum: f79430851e97c4a26938bdbd3d834a0beba2860630f5f8bcccda433a2b3c52d26b180e89d016ec7cd0fce28cbc71dc825307b8b37ca63951775965cb091381ab languageName: node linkType: hard -"@jupyterlab/running-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/running-extension@npm:4.1.5" - dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/running": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 +"@jupyterlab/running-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/running-extension@npm:4.1.6" + dependencies: + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/running": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/commands": ^2.2.0 "@lumino/polling": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: 781997edc1a8f4db25412cf989e52eb4f22e4e7ffb74f3245f1dad696303572b8546180957f3c17acb4fa62c4d38f4d16acae40bc129af22efeafccd91c2cce8 + checksum: a8565ee24465672e3ce2d683c82b34c47749cfb28667f326cb89fb5786202314b6d5bc31b142beae21a5a4d2fd69a1a28cb6a2ae76dbb7861a8c62d3d0a95260 languageName: node linkType: hard -"@jupyterlab/running@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/running@npm:4.1.5" +"@jupyterlab/running@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/running@npm:4.1.6" dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 650102b49e54ad725c99e49382921b05418f922ee7ae99f0404a146516e54387ec0ebb26c6e9255beadc94a1fd3111c2fae12148e196879ef7ec3ea4b1fde6f1 + checksum: 759f378d6b755b8d60373212bd6fca29ffd817ef59b41694d9f2913983a328be5bb300188572cefbb7b6f1c67d5951502207b4de6f9e8a525edb670c339b5c2c languageName: node linkType: hard -"@jupyterlab/services@npm:~7.1.5": - version: 7.1.5 - resolution: "@jupyterlab/services@npm:7.1.5" +"@jupyterlab/services@npm:~7.1.6": + version: 7.1.6 + resolution: "@jupyterlab/services@npm:7.1.6" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statedb": ^4.1.5 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/nbformat": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/statedb": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/polling": ^2.1.2 "@lumino/properties": ^2.0.1 "@lumino/signaling": ^2.1.2 ws: ^8.11.0 - checksum: f4b20ee62e5c3c7e0fa5942d3deb95329beb5a9ea6295403eefc0d5a723665379a09c58b21bc6a9fed7a69990570e5cfb66bc314e037a452b678fc4ec237dc55 + checksum: ad47d3c9b211be4be3aad2714f3028e66ad381a6367a57f347644c693f055ee9c7655d15630a637d9181b42e89c2b8183675abc561c3959820a6bc03d3f2af12 languageName: node linkType: hard -"@jupyterlab/settingeditor-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/settingeditor-extension@npm:4.1.5" - dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/pluginmanager": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/settingeditor": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 +"@jupyterlab/settingeditor-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/settingeditor-extension@npm:4.1.6" + dependencies: + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/pluginmanager": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/settingeditor": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/statedb": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/disposable": ^2.1.2 - checksum: df1911e98001f3ff5fdde35a2aa101e0c9a21e7d3ee7e69ca8c852d54fb80f5951e0eb01e6a0aa7fe1b1e12da06ea90c445aa970d413ed9973eee5cff17665b0 + checksum: 5fe04e36e9da13dacb0663fafefeb24c9f009023cd404f827b5f977dbef82b36d84eb8a0cf2f28e4a99336fd8907bf85657d909beb7b1bed6e28ff5acb109a36 languageName: node linkType: hard -"@jupyterlab/settingeditor@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/settingeditor@npm:4.1.5" - dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/inspector": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 +"@jupyterlab/settingeditor@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/settingeditor@npm:4.1.6" + dependencies: + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/inspector": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/statedb": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -2108,16 +2108,16 @@ __metadata: "@rjsf/validator-ajv8": ^5.13.4 json-schema: ^0.4.0 react: ^18.2.0 - checksum: fff554b0a736a724ca8c5df9a8cce44ff540a58402aef348187d7740f0308e0e9ac724f950c18e27925d895e593190bc3e4e0bdfa472561278755609b37fb4c1 + checksum: 7fe9e0f41d20c6f4b79b57df816d3cdcabac15efe483696a1aefa0ecf6de0eecaed9f6f2231c8937a145a9db028dea38b34f17bfa76b0901b59f46270a92c3e7 languageName: node linkType: hard -"@jupyterlab/settingregistry@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/settingregistry@npm:4.1.5" +"@jupyterlab/settingregistry@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/settingregistry@npm:4.1.6" dependencies: - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/statedb": ^4.1.5 + "@jupyterlab/nbformat": ^4.1.6 + "@jupyterlab/statedb": ^4.1.6 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -2127,18 +2127,18 @@ __metadata: json5: ^2.2.3 peerDependencies: react: ">=16" - checksum: 576d49cbbb4a18ba5f55230938b67c6dbc6819dfafb75ece2d9d030913e69768ddcb2616de4f7dbd3bcd8aa35e292aee90fe98b91e7dccdaae2610c64ec07f94 + checksum: 93c1a4921a30243f2bd2c9591319e749e2f5cb5884f6962241857640afb6b67600cdba44fb308a23bffacc7defa3c6fc3d2ad15be52ff5946f0a8fd873b5fddd languageName: node linkType: hard -"@jupyterlab/shortcuts-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/shortcuts-extension@npm:4.1.5" +"@jupyterlab/shortcuts-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/shortcuts-extension@npm:4.1.6" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -2147,41 +2147,41 @@ __metadata: "@lumino/keyboard": ^2.0.1 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 07e26178994bb5c147f945d9ecafd5298b5b92b7ef8eb9f13a049375189aee273d133d938375f129838552940f966e840a8e3129ae00c93455cb6b5d76f6c378 + checksum: 4d8fb4f411609faa56559f421618b426023e4e7578676aacf4473c5724c1738fdf7fdfaff4bd7b6929bc88012d2068488ff9aedae9ae786e5ef8cd7cc8df983f languageName: node linkType: hard -"@jupyterlab/statedb@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/statedb@npm:4.1.5" +"@jupyterlab/statedb@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/statedb@npm:4.1.6" dependencies: "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/properties": ^2.0.1 "@lumino/signaling": ^2.1.2 - checksum: e7f3ea9a5ebb04a602d93d1ddc9175a5b24a0f3814e99410ec3dba2dd3a86572ea61917d8a65e1b4b8c4ed25c8eaa814646a817a3b5d39b8a74a7b6cbb0071c1 + checksum: 4aba49eeead6ac6306ec2d8146543230db9296e7bf088380290eb4b89698b66573c00ba630890b821047b584fc59716b64ba06a013d4698551adeaf20b034301 languageName: node linkType: hard -"@jupyterlab/statusbar-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/statusbar-extension@npm:4.1.5" +"@jupyterlab/statusbar-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/statusbar-extension@npm:4.1.6" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - checksum: 2a9046edd3e98797ab1b38ea89da24bcf2c8840226277d9e2bd252db74f7fec85e05f30a5082c4290ebef59b79bfad5b4e1c989b3e721a65ed6d16aeb5a55e31 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/statusbar": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + checksum: 16688658637c2ab0b43121d9d295070eaff21363fefc888d82286b4b08c929d4a95e7ff34f4e19972e0f9a3d83dec25783063e6eae380cfd60c9cfcf561bada4 languageName: node linkType: hard -"@jupyterlab/statusbar@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/statusbar@npm:4.1.5" +"@jupyterlab/statusbar@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/statusbar@npm:4.1.6" dependencies: - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -2189,36 +2189,36 @@ __metadata: "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 402f3b80495c155f6c08447ca6ef348dbaae030cc6c20d11a7f4f365445f389dd71fefe9649296d59e8c698aa31347fb563b9a962e51b8712ed3bbe2cfd0ca37 + checksum: ad8a7f366b8a3b3f1f6a4993a0b890192f5de99f0fe3b29aecb7a6474d568203798bee63b77012d4cfdc793b7b376ec8bd64b3c5e67cb26511b13801e7a75f77 languageName: node linkType: hard -"@jupyterlab/terminal-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/terminal-extension@npm:4.1.5" - dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/launcher": ^4.1.5 - "@jupyterlab/mainmenu": ^4.1.5 - "@jupyterlab/running": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/terminal": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 +"@jupyterlab/terminal-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/terminal-extension@npm:4.1.6" + dependencies: + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/launcher": ^4.1.6 + "@jupyterlab/mainmenu": ^4.1.6 + "@jupyterlab/running": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/terminal": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/widgets": ^2.3.1 - checksum: dc92ea109d4cd89e84a6dda5259623e8f7c0f315789bb3876d5a63089e889e5b33a9174b81f205533a7261b82b1ea021da9e2f047372889b6693e0e433a7cb8a + checksum: ad8af1cb7d0235ca700ca740783e36a38482fc796488c47befa1a465b50cffb26b6d1af6716d942320d1c06b95335d78e258cff74cabdffd3dbfeef23353eb2f languageName: node linkType: hard -"@jupyterlab/terminal@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/terminal@npm:4.1.5" +"@jupyterlab/terminal@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/terminal@npm:4.1.6" dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/translation": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/domutils": ^2.0.1 "@lumino/messaging": ^2.0.1 @@ -2228,149 +2228,149 @@ __metadata: xterm-addon-fit: ~0.7.0 xterm-addon-web-links: ~0.8.0 xterm-addon-webgl: ~0.14.0 - checksum: d30bb6e6892d884a9df0de726a2f6c91bc5acec7eaa31e7185ebc65656ee587c019d964ca656e74c7f72c49d5a3ff6a469056c54bd0f8d6fabfafa61024a0ed1 + checksum: 22704365949aa624442de3ac21fc184f19083a1a1089be88267b4991c64226f4de6dbf550974f18bba8fc4d4e4d868acfd3f5e3bff9893f4c48fe77cecb1a7f3 languageName: node linkType: hard -"@jupyterlab/theme-dark-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/theme-dark-extension@npm:4.1.5" +"@jupyterlab/theme-dark-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/theme-dark-extension@npm:4.1.6" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/translation": ^4.1.5 - checksum: 4e56da100c8679f809cf5f9aa5e85f1c4e4a41d89998bd49c1738e7cb25bdad45e7d807aad63855f25c5b66d5967081f03f3dd450f6e870c109d01aceea923e9 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/translation": ^4.1.6 + checksum: abcb3b6507020d58e170ffad6b8aaff8466a08e74f05bd95afed750c6579e41c066032905c18325012b85927bda8c4a8fed029360bc1eba4aaf2d4f10cb3d568 languageName: node linkType: hard -"@jupyterlab/theme-light-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/theme-light-extension@npm:4.1.5" +"@jupyterlab/theme-light-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/theme-light-extension@npm:4.1.6" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/translation": ^4.1.5 - checksum: a70fc06adbe75ad6d34a74c7fa3b17e99619cd2af23d6955fc7644e08b9df2031f91c6532e5d5842c2c32fad1e0a69fa46933fb6eeb8a7d7e53d110ecbd0b573 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/translation": ^4.1.6 + checksum: 24a9ab38e2337897cdf5e506cb8a48078c783b5a7f40120dcad60aa5f64da85cc24a752e0711ffed755804957ff0e1f538d7bf3f0fee3a405c87987b0ee8a2a7 languageName: node linkType: hard -"@jupyterlab/toc-extension@npm:~6.1.5": - version: 6.1.5 - resolution: "@jupyterlab/toc-extension@npm:6.1.5" +"@jupyterlab/toc-extension@npm:~6.1.6": + version: 6.1.6 + resolution: "@jupyterlab/toc-extension@npm:6.1.6" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/toc": ^6.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 - checksum: f4b16a6f0330b82bf7fe64098172402bfe84cd95f0be1bcac1fd808bc7a5d80a288fb7ca1c9e65d1ce60c5b245c0a943fe8230d198538daefa18456c6ee7fcfe + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/toc": ^6.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 + checksum: bc23c519e841c263b88b83f69de379b9f81a54a3c62efe6bffd0a5ed65c5719ac47a6988d1bd7ce68c51703d6ed3ca720b7073737ce7023c3d1793bc3c6bb153 languageName: node linkType: hard -"@jupyterlab/toc@npm:~6.1.5": - version: 6.1.5 - resolution: "@jupyterlab/toc@npm:6.1.5" +"@jupyterlab/toc@npm:~6.1.6": + version: 6.1.6 + resolution: "@jupyterlab/toc@npm:6.1.6" dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 8be983a63ecd0ee33da196e3b9f254704230b4bd3ee5a59064e1bc32599a4c798274d68b0155360b95f5cb2893a2558156039c49cef542ea9aef2354ee82aeab + checksum: 45111e9a02f9e9bd96b6a7024d1374abacb00924dc4b5c2dce0a5f1cfb18d7a60b749a56d71196d6cab843f5c9f9a06ca18cdf8f176292bf0f13880fd332cfc7 languageName: node linkType: hard -"@jupyterlab/tooltip-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/tooltip-extension@npm:4.1.5" - dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/console": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/fileeditor": ^4.1.5 - "@jupyterlab/notebook": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/tooltip": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 +"@jupyterlab/tooltip-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/tooltip-extension@npm:4.1.6" + dependencies: + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/console": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/fileeditor": ^4.1.6 + "@jupyterlab/notebook": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/tooltip": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: da9a1a085600f27e631db6becfc079bd58b9576596e0268486645d442e14e2fa3b7aa9fe622e4da904f66a743b6d28f52735f046888aa0cfd81ebe07a58b0e39 + checksum: ec32eb4f89809d2c512113537c47ec2679349ee75cd3022656616671842f95c78a236c0575df1843e567e436e6494d12e833ab48facc948039a7bb71dce944b5 languageName: node linkType: hard -"@jupyterlab/tooltip@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/tooltip@npm:4.1.5" +"@jupyterlab/tooltip@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/tooltip@npm:4.1.6" dependencies: - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.1 - checksum: 03eae761133fc79aca9e28261e5ab98f12b248536d1ee7f03b8d4e002c6645af8decd038b92787af5a9e6008a2e9ce4dd0be0c76ceca9c5594fcc0931086038d + checksum: d983042527f4f8e90fa2451be695ee0b0ce187cff7d549b3a81d07aae1ee1e1ce24c3f0a42ddc4dba60d1998d887c846e59e309ca42aa4fc1582de0cfed83f45 languageName: node linkType: hard -"@jupyterlab/translation-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/translation-extension@npm:4.1.5" +"@jupyterlab/translation-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/translation-extension@npm:4.1.6" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/mainmenu": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - checksum: 6cf2b911e5bd43fbc7b80b624b579edb19778283f13a0c63172e54cb226c48063e0f3143675cc59089086ef7819693e9d2634f49399e7740212eedd764dd7cbf + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/mainmenu": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + checksum: 2cf2c5c7ab717122c6955c4ed269d4a437c3d03e8fadbfbaff8507be7175a25cf310a20a8b0594429d90316de354c91f16d25a0ac3fe90d4a5fa7d410727e69d languageName: node linkType: hard -"@jupyterlab/translation@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/translation@npm:4.1.5" +"@jupyterlab/translation@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/translation@npm:4.1.6" dependencies: - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/statedb": ^4.1.5 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/statedb": ^4.1.6 "@lumino/coreutils": ^2.1.2 - checksum: f12e2f13048cd1628a9a03003401009972a3439a038314e2c7cdf19ab4c29fa02a0091475bdd1ddb7cb26e2175c401a86ab8664f54b99bb47962cbd595e6f643 + checksum: 6de45e310d7ac83f2ed2e3e0c372ba71d087e597891d9e9a7ff791f6fc7fc3804d0d18dad5b152757c5a2b583d564ed7f4361561fa993be303e415a47e8b2fa6 languageName: node linkType: hard -"@jupyterlab/ui-components-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/ui-components-extension@npm:4.1.5" +"@jupyterlab/ui-components-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/ui-components-extension@npm:4.1.6" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 - checksum: 9250e0751857cf02cce82ee7433b94fe31fac600c40cda5ec1876445289d83620de3ac28732ad1d36971e8f2a2a7e531ed2ca1a0033ec72d59e1ba65bc775fe6 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 + checksum: 3e501ae67c851c1230ed75bc736881b86281f1451df0eb6baaa739fbce5bb3d4eb95316068039afe9fbb5a09d23ae9adcd427e920bce431c97ac205f73100dec languageName: node linkType: hard -"@jupyterlab/ui-components@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/ui-components@npm:4.1.5" +"@jupyterlab/ui-components@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/ui-components@npm:4.1.6" dependencies: "@jupyter/react-components": ^0.15.2 "@jupyter/web-components": ^0.15.2 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/translation": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -2388,21 +2388,21 @@ __metadata: typestyle: ^2.0.4 peerDependencies: react: ^18.2.0 - checksum: a50315549c03718b5e953bdb695757b1d39db293131dd5c2c26587612e0ed30ad208d1d65c86ddc153a241df2e01d3a9a162f0e4b5f86d2a20816260c9aefe67 + checksum: f555138b2345aac6ee5c580b517fd563b55b8a6b33f132de362d559a514bbbec970bd690970676173872674f802a5dd9de7ac75b897a0a2b09d7428dddc3c04d languageName: node linkType: hard -"@jupyterlab/vega5-extension@npm:~4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/vega5-extension@npm:4.1.5" +"@jupyterlab/vega5-extension@npm:~4.1.6": + version: 4.1.6 + resolution: "@jupyterlab/vega5-extension@npm:4.1.6" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.9.5 + "@jupyterlab/rendermime-interfaces": ^3.9.6 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 vega: ^5.20.0 vega-embed: ^6.2.1 vega-lite: ^5.6.1-next.1 - checksum: 49a128b356c77c39f56bf2e7d8bc42bb102774638fdca94a7f9b282255b1cc405209d069b25c716412ed8a86c7420317f64357c2775139d279b13668b7d34d4f + checksum: eee4671d08ad731093b841cde280bf0f04c2a37958da1fc6117e84a7cf2069220a2be7b0b67c64622e68bcc43365e5741e2eb7ea14e7b55f07decbb3e5f2b027 languageName: node linkType: hard diff --git a/jupyterlab/tests/mock_packages/extension/package.json b/jupyterlab/tests/mock_packages/extension/package.json index d6d406f26a89..0c24d180fd8e 100644 --- a/jupyterlab/tests/mock_packages/extension/package.json +++ b/jupyterlab/tests/mock_packages/extension/package.json @@ -1,12 +1,12 @@ { "name": "@jupyterlab/mock-extension", - "version": "4.1.5", + "version": "4.1.6", "private": true, "dependencies": { - "@jupyterlab/launcher": "^4.1.5" + "@jupyterlab/launcher": "^4.1.6" }, "devDependencies": { - "@jupyterlab/builder": "^4.1.5" + "@jupyterlab/builder": "^4.1.6" }, "jupyterlab": { "extension": true, diff --git a/jupyterlab/tests/mock_packages/interop/consumer/package.json b/jupyterlab/tests/mock_packages/interop/consumer/package.json index e0e4ab2bde3a..f2be8521b2c2 100644 --- a/jupyterlab/tests/mock_packages/interop/consumer/package.json +++ b/jupyterlab/tests/mock_packages/interop/consumer/package.json @@ -1,12 +1,12 @@ { "name": "@jupyterlab/mock-consumer", - "version": "4.1.5", + "version": "4.1.6", "private": true, "dependencies": { - "@jupyterlab/mock-token": "^4.1.5" + "@jupyterlab/mock-token": "^4.1.6" }, "devDependencies": { - "@jupyterlab/builder": "^4.1.5" + "@jupyterlab/builder": "^4.1.6" }, "jupyterlab": { "extension": true, diff --git a/jupyterlab/tests/mock_packages/interop/provider/package.json b/jupyterlab/tests/mock_packages/interop/provider/package.json index 147130955478..f6546352316b 100644 --- a/jupyterlab/tests/mock_packages/interop/provider/package.json +++ b/jupyterlab/tests/mock_packages/interop/provider/package.json @@ -1,12 +1,12 @@ { "name": "@jupyterlab/mock-provider", - "version": "4.1.5", + "version": "4.1.6", "private": true, "dependencies": { - "@jupyterlab/mock-token": "^4.1.5" + "@jupyterlab/mock-token": "^4.1.6" }, "devDependencies": { - "@jupyterlab/builder": "^4.1.5" + "@jupyterlab/builder": "^4.1.6" }, "jupyterlab": { "extension": true diff --git a/jupyterlab/tests/mock_packages/interop/token/package.json b/jupyterlab/tests/mock_packages/interop/token/package.json index 27ca6be95e7e..814ab83f1fcf 100644 --- a/jupyterlab/tests/mock_packages/interop/token/package.json +++ b/jupyterlab/tests/mock_packages/interop/token/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mock-token", - "version": "4.1.5", + "version": "4.1.6", "private": true, "dependencies": { "@lumino/coreutils": "^2.1.2" diff --git a/jupyterlab/upgrade_extension.py b/jupyterlab/upgrade_extension.py index 77c1bda18df4..55abc7652606 100644 --- a/jupyterlab/upgrade_extension.py +++ b/jupyterlab/upgrade_extension.py @@ -22,8 +22,8 @@ try: import copier -except ImportError: - msg = "Please install copier and jinja2-time" +except ModuleNotFoundError: + msg = "Please install copier; you can use `pip install jupyterlab[upgrade-extension]`" raise RuntimeError(msg) from None # List of files recommended to be overridden diff --git a/packages/application-extension/package.json b/packages/application-extension/package.json index ca18876f5a67..120ec88d8dd0 100644 --- a/packages/application-extension/package.json +++ b/packages/application-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/application-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Application Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,15 +38,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/property-inspector": "^4.1.5", - "@jupyterlab/settingregistry": "^4.1.5", - "@jupyterlab/statedb": "^4.1.5", - "@jupyterlab/statusbar": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/property-inspector": "^4.1.6", + "@jupyterlab/settingregistry": "^4.1.6", + "@jupyterlab/statedb": "^4.1.6", + "@jupyterlab/statusbar": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", diff --git a/packages/application/package.json b/packages/application/package.json index 67bff2cf3d8d..411f2ed5261e 100644 --- a/packages/application/package.json +++ b/packages/application/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/application", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Application", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -43,15 +43,15 @@ }, "dependencies": { "@fortawesome/fontawesome-free": "^5.12.0", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/docregistry": "^4.1.5", - "@jupyterlab/rendermime": "^4.1.5", - "@jupyterlab/rendermime-interfaces": "^3.9.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/statedb": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/docregistry": "^4.1.6", + "@jupyterlab/rendermime": "^4.1.6", + "@jupyterlab/rendermime-interfaces": "^3.9.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/statedb": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/algorithm": "^2.0.1", "@lumino/application": "^2.3.0", "@lumino/commands": "^2.2.0", @@ -64,7 +64,7 @@ "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/apputils-extension/package.json b/packages/apputils-extension/package.json index d9a379f197a9..dc6d02d7af34 100644 --- a/packages/apputils-extension/package.json +++ b/packages/apputils-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/apputils-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Application Utilities Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,19 +38,19 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/docregistry": "^4.1.5", - "@jupyterlab/filebrowser": "^4.1.5", - "@jupyterlab/mainmenu": "^4.1.5", - "@jupyterlab/rendermime-interfaces": "^3.9.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/settingregistry": "^4.1.5", - "@jupyterlab/statedb": "^4.1.5", - "@jupyterlab/statusbar": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/docregistry": "^4.1.6", + "@jupyterlab/filebrowser": "^4.1.6", + "@jupyterlab/mainmenu": "^4.1.6", + "@jupyterlab/rendermime-interfaces": "^3.9.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/settingregistry": "^4.1.6", + "@jupyterlab/statedb": "^4.1.6", + "@jupyterlab/statusbar": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", diff --git a/packages/apputils/package.json b/packages/apputils/package.json index 01dcd585b72a..0f14a54c4291 100644 --- a/packages/apputils/package.json +++ b/packages/apputils/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/apputils", - "version": "4.2.5", + "version": "4.2.6", "description": "JupyterLab - Application Utilities", "keywords": [ "jupyter", @@ -45,15 +45,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/observables": "^5.1.5", - "@jupyterlab/rendermime-interfaces": "^3.9.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/settingregistry": "^4.1.5", - "@jupyterlab/statedb": "^4.1.5", - "@jupyterlab/statusbar": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/observables": "^5.1.6", + "@jupyterlab/rendermime-interfaces": "^3.9.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/settingregistry": "^4.1.6", + "@jupyterlab/statedb": "^4.1.6", + "@jupyterlab/statusbar": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", @@ -68,7 +68,7 @@ "sanitize-html": "~2.7.3" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "@types/sanitize-html": "^2.3.1", "jest": "^29.2.0", diff --git a/packages/attachments/package.json b/packages/attachments/package.json index 5e804ccab87b..8552d4bf4532 100644 --- a/packages/attachments/package.json +++ b/packages/attachments/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/attachments", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Notebook Cell Attachments", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,10 +37,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/nbformat": "^4.1.5", - "@jupyterlab/observables": "^5.1.5", - "@jupyterlab/rendermime": "^4.1.5", - "@jupyterlab/rendermime-interfaces": "^3.9.5", + "@jupyterlab/nbformat": "^4.1.6", + "@jupyterlab/observables": "^5.1.6", + "@jupyterlab/rendermime": "^4.1.6", + "@jupyterlab/rendermime-interfaces": "^3.9.6", "@lumino/disposable": "^2.1.2", "@lumino/signaling": "^2.1.2" }, diff --git a/packages/cell-toolbar-extension/package.json b/packages/cell-toolbar-extension/package.json index d27343bf0ce5..6c1a32d1ff8d 100644 --- a/packages/cell-toolbar-extension/package.json +++ b/packages/cell-toolbar-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/cell-toolbar-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "Extension for cell toolbar adapted from jlab-enhanced-cell-toolbar", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -34,11 +34,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/cell-toolbar": "^4.1.5", - "@jupyterlab/settingregistry": "^4.1.5", - "@jupyterlab/translation": "^4.1.5" + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/cell-toolbar": "^4.1.6", + "@jupyterlab/settingregistry": "^4.1.6", + "@jupyterlab/translation": "^4.1.6" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/cell-toolbar/package.json b/packages/cell-toolbar/package.json index 82132fca28c9..a0013bd61046 100644 --- a/packages/cell-toolbar/package.json +++ b/packages/cell-toolbar/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/cell-toolbar", - "version": "4.1.5", + "version": "4.1.6", "description": "Contextual cell toolbar adapted from jlab-enhanced-cell-toolbar", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,12 +41,12 @@ }, "dependencies": { "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/cells": "^4.1.5", - "@jupyterlab/docregistry": "^4.1.5", - "@jupyterlab/notebook": "^4.1.5", - "@jupyterlab/observables": "^5.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/cells": "^4.1.6", + "@jupyterlab/docregistry": "^4.1.6", + "@jupyterlab/notebook": "^4.1.6", + "@jupyterlab/observables": "^5.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/disposable": "^2.1.2", @@ -54,7 +54,7 @@ "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/cells/package.json b/packages/cells/package.json index db73b5c52967..d9bfc206c22d 100644 --- a/packages/cells/package.json +++ b/packages/cells/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/cells", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Notebook Cells", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -46,21 +46,21 @@ "@codemirror/state": "^6.2.0", "@codemirror/view": "^6.9.6", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/attachments": "^4.1.5", - "@jupyterlab/codeeditor": "^4.1.5", - "@jupyterlab/codemirror": "^4.1.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/documentsearch": "^4.1.5", - "@jupyterlab/filebrowser": "^4.1.5", - "@jupyterlab/nbformat": "^4.1.5", - "@jupyterlab/observables": "^5.1.5", - "@jupyterlab/outputarea": "^4.1.5", - "@jupyterlab/rendermime": "^4.1.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/toc": "^6.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/attachments": "^4.1.6", + "@jupyterlab/codeeditor": "^4.1.6", + "@jupyterlab/codemirror": "^4.1.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/documentsearch": "^4.1.6", + "@jupyterlab/filebrowser": "^4.1.6", + "@jupyterlab/nbformat": "^4.1.6", + "@jupyterlab/observables": "^5.1.6", + "@jupyterlab/outputarea": "^4.1.6", + "@jupyterlab/rendermime": "^4.1.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/toc": "^6.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/domutils": "^2.0.1", @@ -73,7 +73,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "@types/react": "^18.0.26", "jest": "^29.2.0", diff --git a/packages/cells/src/widget.ts b/packages/cells/src/widget.ts index d8a3479d2a93..b2d9a83bf076 100644 --- a/packages/cells/src/widget.ts +++ b/packages/cells/src/widget.ts @@ -1350,6 +1350,7 @@ export class CodeCell extends Cell { if (this.outputsScrolled) { this.model.setMetadata('scrolled', true); } else { + this.outputArea.node.style.height = ''; this.model.deleteMetadata('scrolled'); } } diff --git a/packages/celltags-extension/package.json b/packages/celltags-extension/package.json index 654915d78383..976134b6b06c 100644 --- a/packages/celltags-extension/package.json +++ b/packages/celltags-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/celltags-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "An extension for manipulating tags in cell metadata", "keywords": [ "jupyter", @@ -40,10 +40,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/notebook": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/notebook": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/algorithm": "^2.0.1", "@rjsf/utils": "^5.13.4", "react": "^18.2.0" diff --git a/packages/codeeditor/package.json b/packages/codeeditor/package.json index 23da09e9b5dc..a788f66555b6 100644 --- a/packages/codeeditor/package.json +++ b/packages/codeeditor/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/codeeditor", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Abstract Code Editor", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -44,13 +44,13 @@ "dependencies": { "@codemirror/state": "^6.2.0", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/nbformat": "^4.1.5", - "@jupyterlab/observables": "^5.1.5", - "@jupyterlab/statusbar": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/nbformat": "^4.1.6", + "@jupyterlab/observables": "^5.1.6", + "@jupyterlab/statusbar": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/dragdrop": "^2.1.4", @@ -60,7 +60,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/codemirror-extension/package.json b/packages/codemirror-extension/package.json index 467b9e600086..562e276f1693 100644 --- a/packages/codemirror-extension/package.json +++ b/packages/codemirror-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/codemirror-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - CodeMirror Provider Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,13 +42,13 @@ "@codemirror/language": "^6.6.0", "@codemirror/legacy-modes": "^6.3.2", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/codeeditor": "^4.1.5", - "@jupyterlab/codemirror": "^4.1.5", - "@jupyterlab/settingregistry": "^4.1.5", - "@jupyterlab/statusbar": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/codeeditor": "^4.1.6", + "@jupyterlab/codemirror": "^4.1.6", + "@jupyterlab/settingregistry": "^4.1.6", + "@jupyterlab/statusbar": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/coreutils": "^2.1.2", "@lumino/widgets": "^2.3.1", "@rjsf/utils": "^5.13.4", diff --git a/packages/codemirror/package.json b/packages/codemirror/package.json index c795773141eb..a4c2a7f937ee 100644 --- a/packages/codemirror/package.json +++ b/packages/codemirror/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/codemirror", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - CodeMirror Editor Provider", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -59,11 +59,11 @@ "@codemirror/state": "^6.2.0", "@codemirror/view": "^6.9.6", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/codeeditor": "^4.1.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/documentsearch": "^4.1.5", - "@jupyterlab/nbformat": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", + "@jupyterlab/codeeditor": "^4.1.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/documentsearch": "^4.1.6", + "@jupyterlab/nbformat": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", "@lezer/common": "^1.0.2", "@lezer/generator": "^1.2.2", "@lezer/highlight": "^1.1.4", @@ -74,7 +74,7 @@ "yjs": "^13.5.40" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@lezer/generator": "^1.2.2", "@lezer/lr": "^1.3.3", "@types/jest": "^29.2.0", diff --git a/packages/codemirror/style/base.css b/packages/codemirror/style/base.css index f81fae3f9499..349d64050de5 100644 --- a/packages/codemirror/style/base.css +++ b/packages/codemirror/style/base.css @@ -14,6 +14,11 @@ /* Changed to auto to autogrow */ } +/* Suppress automatic focus indicator outline */ +.cm-editor.cm-focused { + outline: unset; +} + .cm-editor pre { padding: 0 var(--jp-code-padding); } diff --git a/packages/completer-extension/package.json b/packages/completer-extension/package.json index 9cda80d58200..0d484031ea4d 100644 --- a/packages/completer-extension/package.json +++ b/packages/completer-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/completer-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Completer Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,11 +38,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/completer": "^4.1.5", - "@jupyterlab/settingregistry": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/completer": "^4.1.6", + "@jupyterlab/settingregistry": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", "@rjsf/utils": "^5.13.4", diff --git a/packages/completer/package.json b/packages/completer/package.json index ae99eff0b3a9..47fcf55f27ab 100644 --- a/packages/completer/package.json +++ b/packages/completer/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/completer", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Completer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -49,16 +49,16 @@ "@codemirror/state": "^6.2.0", "@codemirror/view": "^6.9.6", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/codeeditor": "^4.1.5", - "@jupyterlab/codemirror": "^4.1.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/rendermime": "^4.1.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/settingregistry": "^4.1.5", - "@jupyterlab/statedb": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/codeeditor": "^4.1.6", + "@jupyterlab/codemirror": "^4.1.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/rendermime": "^4.1.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/settingregistry": "^4.1.6", + "@jupyterlab/statedb": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -68,7 +68,7 @@ "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/completer/style/base.css b/packages/completer/style/base.css index 8a7e3aa50f7f..4c824fa4db12 100644 --- a/packages/completer/style/base.css +++ b/packages/completer/style/base.css @@ -74,6 +74,7 @@ font-family: var(--jp-code-font-family); font-size: var(--jp-code-font-size); line-height: var(--jp-private-completer-item-height); + white-space: nowrap; } .jp-Completer-deprecated .jp-Completer-match { diff --git a/packages/console-extension/package.json b/packages/console-extension/package.json index 479a277a12d0..9cc3b6588fb0 100644 --- a/packages/console-extension/package.json +++ b/packages/console-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/console-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Code Console Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,18 +38,18 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/codeeditor": "^4.1.5", - "@jupyterlab/completer": "^4.1.5", - "@jupyterlab/console": "^4.1.5", - "@jupyterlab/filebrowser": "^4.1.5", - "@jupyterlab/launcher": "^4.1.5", - "@jupyterlab/mainmenu": "^4.1.5", - "@jupyterlab/rendermime": "^4.1.5", - "@jupyterlab/settingregistry": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/codeeditor": "^4.1.6", + "@jupyterlab/completer": "^4.1.6", + "@jupyterlab/console": "^4.1.6", + "@jupyterlab/filebrowser": "^4.1.6", + "@jupyterlab/launcher": "^4.1.6", + "@jupyterlab/mainmenu": "^4.1.6", + "@jupyterlab/rendermime": "^4.1.6", + "@jupyterlab/settingregistry": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", diff --git a/packages/console/package.json b/packages/console/package.json index 2a795e76a7c5..cd924b2d9b2a 100644 --- a/packages/console/package.json +++ b/packages/console/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/console", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Code Console", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -46,16 +46,16 @@ "@codemirror/state": "^6.2.0", "@codemirror/view": "^6.9.6", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/cells": "^4.1.5", - "@jupyterlab/codeeditor": "^4.1.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/nbformat": "^4.1.5", - "@jupyterlab/observables": "^5.1.5", - "@jupyterlab/rendermime": "^4.1.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/cells": "^4.1.6", + "@jupyterlab/codeeditor": "^4.1.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/nbformat": "^4.1.6", + "@jupyterlab/observables": "^5.1.6", + "@jupyterlab/rendermime": "^4.1.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/dragdrop": "^2.1.4", @@ -64,8 +64,8 @@ "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/codemirror": "^4.1.5", - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/codemirror": "^4.1.6", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/coreutils/package.json b/packages/coreutils/package.json index e1c7d28bb5d0..e75bbb785f0f 100644 --- a/packages/coreutils/package.json +++ b/packages/coreutils/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/coreutils", - "version": "6.1.5", + "version": "6.1.6", "description": "JupyterLab - Core Utilities", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { diff --git a/packages/csvviewer-extension/package.json b/packages/csvviewer-extension/package.json index f29a9fd6161e..6f38489cda13 100644 --- a/packages/csvviewer-extension/package.json +++ b/packages/csvviewer-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/csvviewer-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - CSV Widget Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,15 +38,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/csvviewer": "^4.1.5", - "@jupyterlab/docregistry": "^4.1.5", - "@jupyterlab/documentsearch": "^4.1.5", - "@jupyterlab/mainmenu": "^4.1.5", - "@jupyterlab/observables": "^5.1.5", - "@jupyterlab/settingregistry": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/csvviewer": "^4.1.6", + "@jupyterlab/docregistry": "^4.1.6", + "@jupyterlab/documentsearch": "^4.1.6", + "@jupyterlab/mainmenu": "^4.1.6", + "@jupyterlab/observables": "^5.1.6", + "@jupyterlab/settingregistry": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", "@lumino/datagrid": "^2.3.0", "@lumino/widgets": "^2.3.1" }, diff --git a/packages/csvviewer/package.json b/packages/csvviewer/package.json index 04857c6f4f07..eadeb2e7553a 100644 --- a/packages/csvviewer/package.json +++ b/packages/csvviewer/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/csvviewer", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - CSV Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,10 +42,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/docregistry": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/docregistry": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/coreutils": "^2.1.2", "@lumino/datagrid": "^2.3.0", "@lumino/disposable": "^2.1.2", @@ -54,7 +54,7 @@ "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "canvas": "^2.11.2", "csv-spectrum": "^1.0.0", diff --git a/packages/debugger-extension/package.json b/packages/debugger-extension/package.json index 0b88ecd8d3af..ed3acacfa96f 100644 --- a/packages/debugger-extension/package.json +++ b/packages/debugger-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/debugger-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Debugger Extension", "keywords": [ "jupyter", @@ -44,24 +44,24 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/cells": "^4.1.5", - "@jupyterlab/codeeditor": "^4.1.5", - "@jupyterlab/console": "^4.1.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/debugger": "^4.1.5", - "@jupyterlab/docregistry": "^4.1.5", - "@jupyterlab/fileeditor": "^4.1.5", - "@jupyterlab/logconsole": "^4.1.5", - "@jupyterlab/notebook": "^4.1.5", - "@jupyterlab/rendermime": "^4.1.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/settingregistry": "^4.1.5", - "@jupyterlab/translation": "^4.1.5" + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/cells": "^4.1.6", + "@jupyterlab/codeeditor": "^4.1.6", + "@jupyterlab/console": "^4.1.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/debugger": "^4.1.6", + "@jupyterlab/docregistry": "^4.1.6", + "@jupyterlab/fileeditor": "^4.1.6", + "@jupyterlab/logconsole": "^4.1.6", + "@jupyterlab/notebook": "^4.1.6", + "@jupyterlab/rendermime": "^4.1.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/settingregistry": "^4.1.6", + "@jupyterlab/translation": "^4.1.6" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "@types/react-dom": "^18.0.9", "rimraf": "~5.0.5", diff --git a/packages/debugger/package.json b/packages/debugger/package.json index ccc18f10d36e..6f0397f6369d 100644 --- a/packages/debugger/package.json +++ b/packages/debugger/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/debugger", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Debugger Extension", "keywords": [ "jupyter", @@ -52,21 +52,21 @@ "@codemirror/state": "^6.2.0", "@codemirror/view": "^6.9.6", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/cells": "^4.1.5", - "@jupyterlab/codeeditor": "^4.1.5", - "@jupyterlab/codemirror": "^4.1.5", - "@jupyterlab/console": "^4.1.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/docregistry": "^4.1.5", - "@jupyterlab/fileeditor": "^4.1.5", - "@jupyterlab/notebook": "^4.1.5", - "@jupyterlab/observables": "^5.1.5", - "@jupyterlab/rendermime": "^4.1.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/cells": "^4.1.6", + "@jupyterlab/codeeditor": "^4.1.6", + "@jupyterlab/codemirror": "^4.1.6", + "@jupyterlab/console": "^4.1.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/docregistry": "^4.1.6", + "@jupyterlab/fileeditor": "^4.1.6", + "@jupyterlab/notebook": "^4.1.6", + "@jupyterlab/observables": "^5.1.6", + "@jupyterlab/rendermime": "^4.1.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", @@ -80,7 +80,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "canvas": "^2.11.2", "jest": "^29.2.0", diff --git a/packages/debugger/src/sources.ts b/packages/debugger/src/sources.ts index 16916d6a710c..f9312e356a3f 100644 --- a/packages/debugger/src/sources.ts +++ b/packages/debugger/src/sources.ts @@ -105,9 +105,11 @@ export class DebuggerSources implements IDebugger.ISources { if (focus) { notebook.activeCellIndex = i; if (notebook.activeCell) { - notebook.scrollToItem(notebook.activeCellIndex).catch(reason => { - // no-op - }); + notebook + .scrollToItem(notebook.activeCellIndex, 'smart') + .catch(reason => { + // no-op + }); } this._shell.activateById(notebookPanel.id); } @@ -115,7 +117,7 @@ export class DebuggerSources implements IDebugger.ISources { editors.push( Object.freeze({ get: () => cell.editor, - reveal: () => notebook.scrollToItem(i), + reveal: () => notebook.scrollToItem(i, 'smart'), src: cell.model.sharedModel }) ); diff --git a/packages/docmanager-extension/package.json b/packages/docmanager-extension/package.json index 438b5688b0e5..a3a06505da9f 100644 --- a/packages/docmanager-extension/package.json +++ b/packages/docmanager-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/docmanager-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Document Manager Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,16 +38,16 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/docmanager": "^4.1.5", - "@jupyterlab/docregistry": "^4.1.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/settingregistry": "^4.1.5", - "@jupyterlab/statusbar": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/docmanager": "^4.1.6", + "@jupyterlab/docregistry": "^4.1.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/settingregistry": "^4.1.6", + "@jupyterlab/statusbar": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", diff --git a/packages/docmanager/package.json b/packages/docmanager/package.json index 5866f4c79c59..c968c5d5ec32 100644 --- a/packages/docmanager/package.json +++ b/packages/docmanager/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/docmanager", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Document Manager", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,13 +42,13 @@ "watch": "npm run test -- --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/docregistry": "^4.1.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/statusbar": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/docregistry": "^4.1.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/statusbar": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -59,7 +59,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/docregistry/package.json b/packages/docregistry/package.json index cb62055648dd..59e479a50421 100644 --- a/packages/docregistry/package.json +++ b/packages/docregistry/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/docregistry", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Document Registry", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -43,15 +43,15 @@ }, "dependencies": { "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/codeeditor": "^4.1.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/observables": "^5.1.5", - "@jupyterlab/rendermime": "^4.1.5", - "@jupyterlab/rendermime-interfaces": "^3.9.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/codeeditor": "^4.1.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/observables": "^5.1.6", + "@jupyterlab/rendermime": "^4.1.6", + "@jupyterlab/rendermime-interfaces": "^3.9.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -62,7 +62,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/documentsearch-extension/package.json b/packages/documentsearch-extension/package.json index 7a7132ff796c..27fdfe86739d 100644 --- a/packages/documentsearch-extension/package.json +++ b/packages/documentsearch-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/documentsearch-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Document Search Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -34,11 +34,11 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/documentsearch": "^4.1.5", - "@jupyterlab/settingregistry": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/documentsearch": "^4.1.6", + "@jupyterlab/settingregistry": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", "@lumino/commands": "^2.2.0", "@lumino/widgets": "^2.3.1" }, diff --git a/packages/documentsearch/package.json b/packages/documentsearch/package.json index fd689720fe1a..7eba6177138b 100644 --- a/packages/documentsearch/package.json +++ b/packages/documentsearch/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/documentsearch", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Document Search", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,9 +38,9 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -51,7 +51,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/documentsearch/test/searchmodel.spec.ts b/packages/documentsearch/test/searchmodel.spec.ts index 4a0adf8ea7a6..499cbab1020c 100644 --- a/packages/documentsearch/test/searchmodel.spec.ts +++ b/packages/documentsearch/test/searchmodel.spec.ts @@ -87,9 +87,12 @@ describe('documentsearch/searchmodel', () => { expect(model.parsingError).toEqual(''); model.searchExpression = 'query\\'; await signalToPromise(model.stateChanged); - expect(model.parsingError).toEqual( - 'SyntaxError: Invalid regular expression: /query\\/: \\ at end of pattern' - ); + expect([ + // Node 18.x and older + 'SyntaxError: Invalid regular expression: /query\\/: \\ at end of pattern', + // Node 20.x and newer + 'SyntaxError: Invalid regular expression: /query\\/gim: \\ at end of pattern' + ]).toContain(model.parsingError); }); }); diff --git a/packages/extensionmanager-extension/package.json b/packages/extensionmanager-extension/package.json index 5cf62dd4b455..f565b611668d 100644 --- a/packages/extensionmanager-extension/package.json +++ b/packages/extensionmanager-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/extensionmanager-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Extension Manager Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -39,12 +39,12 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/extensionmanager": "^4.1.5", - "@jupyterlab/settingregistry": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5" + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/extensionmanager": "^4.1.6", + "@jupyterlab/settingregistry": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/extensionmanager/package.json b/packages/extensionmanager/package.json index 611d464c9750..8c3e9467e67b 100644 --- a/packages/extensionmanager/package.json +++ b/packages/extensionmanager/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/extensionmanager", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Extension Manager", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,11 +37,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/messaging": "^2.0.1", "@lumino/polling": "^2.1.2", "@lumino/widgets": "^2.3.1", diff --git a/packages/filebrowser-extension/package.json b/packages/filebrowser-extension/package.json index a324108a176c..2e461b4f371b 100644 --- a/packages/filebrowser-extension/package.json +++ b/packages/filebrowser-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/filebrowser-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Filebrowser Widget Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,18 +38,18 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/docmanager": "^4.1.5", - "@jupyterlab/docregistry": "^4.1.5", - "@jupyterlab/filebrowser": "^4.1.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/settingregistry": "^4.1.5", - "@jupyterlab/statedb": "^4.1.5", - "@jupyterlab/statusbar": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/docmanager": "^4.1.6", + "@jupyterlab/docregistry": "^4.1.6", + "@jupyterlab/filebrowser": "^4.1.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/settingregistry": "^4.1.6", + "@jupyterlab/statedb": "^4.1.6", + "@jupyterlab/statusbar": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/widgets": "^2.3.1" diff --git a/packages/filebrowser/package.json b/packages/filebrowser/package.json index 7702a0281903..686952f9e926 100644 --- a/packages/filebrowser/package.json +++ b/packages/filebrowser/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/filebrowser", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - FileBrowser Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,15 +42,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/docmanager": "^4.1.5", - "@jupyterlab/docregistry": "^4.1.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/statedb": "^4.1.5", - "@jupyterlab/statusbar": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/docmanager": "^4.1.6", + "@jupyterlab/docregistry": "^4.1.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/statedb": "^4.1.6", + "@jupyterlab/statusbar": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -64,7 +64,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/fileeditor-extension/package.json b/packages/fileeditor-extension/package.json index a97f0041c9dd..a4c1b14fdbf0 100644 --- a/packages/fileeditor-extension/package.json +++ b/packages/fileeditor-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/fileeditor-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Editor Widget Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -40,28 +40,28 @@ "dependencies": { "@codemirror/commands": "^6.2.3", "@codemirror/search": "^6.3.0", - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/codeeditor": "^4.1.5", - "@jupyterlab/codemirror": "^4.1.5", - "@jupyterlab/completer": "^4.1.5", - "@jupyterlab/console": "^4.1.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/docregistry": "^4.1.5", - "@jupyterlab/documentsearch": "^4.1.5", - "@jupyterlab/filebrowser": "^4.1.5", - "@jupyterlab/fileeditor": "^4.1.5", - "@jupyterlab/launcher": "^4.1.5", - "@jupyterlab/lsp": "^4.1.5", - "@jupyterlab/mainmenu": "^4.1.5", - "@jupyterlab/observables": "^5.1.5", - "@jupyterlab/rendermime-interfaces": "^3.9.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/settingregistry": "^4.1.5", - "@jupyterlab/statusbar": "^4.1.5", - "@jupyterlab/toc": "^6.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/codeeditor": "^4.1.6", + "@jupyterlab/codemirror": "^4.1.6", + "@jupyterlab/completer": "^4.1.6", + "@jupyterlab/console": "^4.1.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/docregistry": "^4.1.6", + "@jupyterlab/documentsearch": "^4.1.6", + "@jupyterlab/filebrowser": "^4.1.6", + "@jupyterlab/fileeditor": "^4.1.6", + "@jupyterlab/launcher": "^4.1.6", + "@jupyterlab/lsp": "^4.1.6", + "@jupyterlab/mainmenu": "^4.1.6", + "@jupyterlab/observables": "^5.1.6", + "@jupyterlab/rendermime-interfaces": "^3.9.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/settingregistry": "^4.1.6", + "@jupyterlab/statusbar": "^4.1.6", + "@jupyterlab/toc": "^6.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", diff --git a/packages/fileeditor/package.json b/packages/fileeditor/package.json index 1e184f6a27e9..e8de8cdba15b 100644 --- a/packages/fileeditor/package.json +++ b/packages/fileeditor/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/fileeditor", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Editor Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,17 +41,17 @@ }, "dependencies": { "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/codeeditor": "^4.1.5", - "@jupyterlab/codemirror": "^4.1.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/docregistry": "^4.1.5", - "@jupyterlab/documentsearch": "^4.1.5", - "@jupyterlab/lsp": "^4.1.5", - "@jupyterlab/statusbar": "^4.1.5", - "@jupyterlab/toc": "^6.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/codeeditor": "^4.1.6", + "@jupyterlab/codemirror": "^4.1.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/docregistry": "^4.1.6", + "@jupyterlab/documentsearch": "^4.1.6", + "@jupyterlab/lsp": "^4.1.6", + "@jupyterlab/statusbar": "^4.1.6", + "@jupyterlab/toc": "^6.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", "@lumino/messaging": "^2.0.1", @@ -60,7 +60,7 @@ "regexp-match-indices": "^1.0.2" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/help-extension/package.json b/packages/help-extension/package.json index ae2d5b6b02cf..4c81bc98b060 100644 --- a/packages/help-extension/package.json +++ b/packages/help-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/help-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Help Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,13 +38,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/mainmenu": "^4.1.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/mainmenu": "^4.1.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/coreutils": "^2.1.2", "@lumino/signaling": "^2.1.2", "@lumino/virtualdom": "^2.0.1", diff --git a/packages/htmlviewer-extension/package.json b/packages/htmlviewer-extension/package.json index 4fa86ad3bc8d..0b873b049af6 100644 --- a/packages/htmlviewer-extension/package.json +++ b/packages/htmlviewer-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/htmlviewer-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab extension to render HTML files", "keywords": [ "jupyter", @@ -35,14 +35,14 @@ "watch": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/docregistry": "^4.1.5", - "@jupyterlab/htmlviewer": "^4.1.5", - "@jupyterlab/observables": "^5.1.5", - "@jupyterlab/settingregistry": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5" + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/docregistry": "^4.1.6", + "@jupyterlab/htmlviewer": "^4.1.6", + "@jupyterlab/observables": "^5.1.6", + "@jupyterlab/settingregistry": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/htmlviewer/package.json b/packages/htmlviewer/package.json index fb5975f9f304..82c83caea032 100644 --- a/packages/htmlviewer/package.json +++ b/packages/htmlviewer/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/htmlviewer", - "version": "4.1.5", + "version": "4.1.6", "description": "A viewer for HTML documents.", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -33,11 +33,11 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/docregistry": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/docregistry": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/coreutils": "^2.1.2", "@lumino/signaling": "^2.1.2", "@lumino/widgets": "^2.3.1", diff --git a/packages/hub-extension/package.json b/packages/hub-extension/package.json index 257159b41043..20b32cb50c28 100644 --- a/packages/hub-extension/package.json +++ b/packages/hub-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/hub-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab integration for JupyterHub", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -34,11 +34,11 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/translation": "^4.1.5" + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/translation": "^4.1.6" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/imageviewer-extension/package.json b/packages/imageviewer-extension/package.json index 783bd21c5581..3b885ba622d2 100644 --- a/packages/imageviewer-extension/package.json +++ b/packages/imageviewer-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/imageviewer-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Image Widget Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,11 +38,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/docregistry": "^4.1.5", - "@jupyterlab/imageviewer": "^4.1.5", - "@jupyterlab/translation": "^4.1.5" + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/docregistry": "^4.1.6", + "@jupyterlab/imageviewer": "^4.1.6", + "@jupyterlab/translation": "^4.1.6" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/imageviewer/package.json b/packages/imageviewer/package.json index 88809dc02425..36045b222576 100644 --- a/packages/imageviewer/package.json +++ b/packages/imageviewer/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/imageviewer", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Image Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,15 +42,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/docregistry": "^4.1.5", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/docregistry": "^4.1.6", "@lumino/coreutils": "^2.1.2", "@lumino/messaging": "^2.0.1", "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/inspector-extension/package.json b/packages/inspector-extension/package.json index dd9773684278..2639ce395a85 100644 --- a/packages/inspector-extension/package.json +++ b/packages/inspector-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/inspector-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Code Inspector Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,14 +38,14 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/console": "^4.1.5", - "@jupyterlab/inspector": "^4.1.5", - "@jupyterlab/launcher": "^4.1.5", - "@jupyterlab/notebook": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/console": "^4.1.6", + "@jupyterlab/inspector": "^4.1.6", + "@jupyterlab/launcher": "^4.1.6", + "@jupyterlab/notebook": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/widgets": "^2.3.1" }, "devDependencies": { diff --git a/packages/inspector/package.json b/packages/inspector/package.json index 2e55fb05f85e..634ae391166d 100644 --- a/packages/inspector/package.json +++ b/packages/inspector/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/inspector", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Code Inspector", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,13 +42,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/codeeditor": "^4.1.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/rendermime": "^4.1.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/statedb": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/codeeditor": "^4.1.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/rendermime": "^4.1.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/statedb": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/polling": "^2.1.2", @@ -56,7 +56,7 @@ "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/javascript-extension/package.json b/packages/javascript-extension/package.json index 9ab52ba14ad1..100079f97699 100644 --- a/packages/javascript-extension/package.json +++ b/packages/javascript-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/javascript-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Javascript Renderer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -33,8 +33,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/rendermime": "^4.1.5", - "@jupyterlab/rendermime-interfaces": "^3.9.5" + "@jupyterlab/rendermime": "^4.1.6", + "@jupyterlab/rendermime-interfaces": "^3.9.6" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/json-extension/README.md b/packages/json-extension/README.md index 6c7280a2af86..b32df7ba58bc 100644 --- a/packages/json-extension/README.md +++ b/packages/json-extension/README.md @@ -2,8 +2,6 @@ A JupyterLab extension for rendering JSON as a tree -![demo](http://g.recordit.co/mqve0QPqyM.gif) - This extension is in the official JupyterLab distribution. ## Usage diff --git a/packages/json-extension/package.json b/packages/json-extension/package.json index f7c58bc8c180..e18e202a4d96 100644 --- a/packages/json-extension/package.json +++ b/packages/json-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/json-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - JSON Renderer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -33,11 +33,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/codemirror": "^4.1.5", - "@jupyterlab/rendermime-interfaces": "^3.9.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/codemirror": "^4.1.6", + "@jupyterlab/rendermime-interfaces": "^3.9.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lezer/highlight": "^1.1.4", "@lumino/coreutils": "^2.1.2", "@lumino/messaging": "^2.0.1", diff --git a/packages/launcher-extension/package.json b/packages/launcher-extension/package.json index c1a0086446c7..b7fab2593f0b 100644 --- a/packages/launcher-extension/package.json +++ b/packages/launcher-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/launcher-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Launcher Page Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,12 +38,12 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/filebrowser": "^4.1.5", - "@jupyterlab/launcher": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/filebrowser": "^4.1.6", + "@jupyterlab/launcher": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/widgets": "^2.3.1" diff --git a/packages/launcher/package.json b/packages/launcher/package.json index 064f5d20ebe9..03aa1dab294b 100644 --- a/packages/launcher/package.json +++ b/packages/launcher/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/launcher", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Launcher Panel", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,9 +37,9 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", diff --git a/packages/logconsole-extension/package.json b/packages/logconsole-extension/package.json index bf4a05eccfda..66643862cb9c 100644 --- a/packages/logconsole-extension/package.json +++ b/packages/logconsole-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/logconsole-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Log Console Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -34,15 +34,15 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/logconsole": "^4.1.5", - "@jupyterlab/rendermime": "^4.1.5", - "@jupyterlab/settingregistry": "^4.1.5", - "@jupyterlab/statusbar": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/logconsole": "^4.1.6", + "@jupyterlab/rendermime": "^4.1.6", + "@jupyterlab/settingregistry": "^4.1.6", + "@jupyterlab/statusbar": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/coreutils": "^2.1.2", "@lumino/signaling": "^2.1.2", "@lumino/widgets": "^2.3.1", diff --git a/packages/logconsole/package.json b/packages/logconsole/package.json index ee106d997671..3c325de6c22b 100644 --- a/packages/logconsole/package.json +++ b/packages/logconsole/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/logconsole", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Log Console", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,12 +38,12 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/nbformat": "^4.1.5", - "@jupyterlab/outputarea": "^4.1.5", - "@jupyterlab/rendermime": "^4.1.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/translation": "^4.1.5", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/nbformat": "^4.1.6", + "@jupyterlab/outputarea": "^4.1.6", + "@jupyterlab/rendermime": "^4.1.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/translation": "^4.1.6", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/messaging": "^2.0.1", @@ -51,7 +51,7 @@ "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/lsp-extension/package.json b/packages/lsp-extension/package.json index b0c4a8cab65f..76969b0f3dd9 100644 --- a/packages/lsp-extension/package.json +++ b/packages/lsp-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/lsp-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -36,13 +36,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/lsp": "^4.1.5", - "@jupyterlab/running": "^4.1.5", - "@jupyterlab/settingregistry": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/lsp": "^4.1.6", + "@jupyterlab/running": "^4.1.6", + "@jupyterlab/settingregistry": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/coreutils": "^2.1.2", "@lumino/polling": "^2.1.2", "@lumino/signaling": "^2.1.2", diff --git a/packages/lsp/package.json b/packages/lsp/package.json index 901d7c06f49f..766fcfb605c7 100644 --- a/packages/lsp/package.json +++ b/packages/lsp/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/lsp", - "version": "4.1.5", + "version": "4.1.6", "description": "", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,13 +41,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/codeeditor": "^4.1.5", - "@jupyterlab/codemirror": "^4.1.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/docregistry": "^4.1.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/translation": "^4.1.5", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/codeeditor": "^4.1.6", + "@jupyterlab/codemirror": "^4.1.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/docregistry": "^4.1.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/translation": "^4.1.6", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/signaling": "^2.1.2", @@ -58,7 +58,7 @@ "vscode-ws-jsonrpc": "~1.0.2" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "@types/lodash.mergewith": "^4.6.1", "jest": "^29.2.0", diff --git a/packages/mainmenu-extension/package.json b/packages/mainmenu-extension/package.json index df3db7c667e9..25fcf67688c6 100644 --- a/packages/mainmenu-extension/package.json +++ b/packages/mainmenu-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mainmenu-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Main Menu Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,14 +38,14 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/mainmenu": "^4.1.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/settingregistry": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/mainmenu": "^4.1.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/settingregistry": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", diff --git a/packages/mainmenu/package.json b/packages/mainmenu/package.json index 6b99ac33d14d..cde62a59ef13 100644 --- a/packages/mainmenu/package.json +++ b/packages/mainmenu/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mainmenu", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Main Menu", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,16 +42,16 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/markdownviewer-extension/package.json b/packages/markdownviewer-extension/package.json index e4a9f964923f..e8de33efaa30 100644 --- a/packages/markdownviewer-extension/package.json +++ b/packages/markdownviewer-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/markdownviewer-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Markdown Renderer Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,14 +38,14 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/markdownviewer": "^4.1.5", - "@jupyterlab/rendermime": "^4.1.5", - "@jupyterlab/settingregistry": "^4.1.5", - "@jupyterlab/toc": "^6.1.5", - "@jupyterlab/translation": "^4.1.5" + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/markdownviewer": "^4.1.6", + "@jupyterlab/rendermime": "^4.1.6", + "@jupyterlab/settingregistry": "^4.1.6", + "@jupyterlab/toc": "^6.1.6", + "@jupyterlab/translation": "^4.1.6" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/markdownviewer/package.json b/packages/markdownviewer/package.json index 2c3ca5971f41..73a79ef1fae6 100644 --- a/packages/markdownviewer/package.json +++ b/packages/markdownviewer/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/markdownviewer", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Markdown viewer Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,12 +37,12 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/docregistry": "^4.1.5", - "@jupyterlab/rendermime": "^4.1.5", - "@jupyterlab/toc": "^6.1.5", - "@jupyterlab/translation": "^4.1.5", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/docregistry": "^4.1.6", + "@jupyterlab/rendermime": "^4.1.6", + "@jupyterlab/toc": "^6.1.6", + "@jupyterlab/translation": "^4.1.6", "@lumino/coreutils": "^2.1.2", "@lumino/messaging": "^2.0.1", "@lumino/signaling": "^2.1.2", diff --git a/packages/markedparser-extension/package.json b/packages/markedparser-extension/package.json index eb2cdfe54c1b..4fd18b805004 100644 --- a/packages/markedparser-extension/package.json +++ b/packages/markedparser-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/markedparser-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Markdown parser provider", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -36,11 +36,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/codemirror": "^4.1.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/mermaid": "^4.1.5", - "@jupyterlab/rendermime": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/codemirror": "^4.1.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/mermaid": "^4.1.6", + "@jupyterlab/rendermime": "^4.1.6", "@lumino/coreutils": "^2.1.2", "marked": "^9.1.2", "marked-gfm-heading-id": "^3.1.0", diff --git a/packages/mathjax-extension/package.json b/packages/mathjax-extension/package.json index db73e1108a25..4175bbd57623 100644 --- a/packages/mathjax-extension/package.json +++ b/packages/mathjax-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mathjax-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "A JupyterLab extension providing MathJax Typesetting", "keywords": [ "jupyter", @@ -43,8 +43,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/rendermime": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/rendermime": "^4.1.6", "@lumino/coreutils": "^2.1.2", "mathjax-full": "^3.2.2" }, diff --git a/packages/mermaid-extension/package.json b/packages/mermaid-extension/package.json index a0cdf2c60aac..2dd37230ba58 100644 --- a/packages/mermaid-extension/package.json +++ b/packages/mermaid-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mermaid-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Mermaid Viewer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,11 +37,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/mermaid": "^4.1.5", - "@jupyterlab/rendermime-interfaces": "^3.9.5", - "@jupyterlab/translation": "^4.1.5" + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/mermaid": "^4.1.6", + "@jupyterlab/rendermime-interfaces": "^3.9.6", + "@jupyterlab/translation": "^4.1.6" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/mermaid/package.json b/packages/mermaid/package.json index 95f0e0e37ac2..89f63f804fe4 100644 --- a/packages/mermaid/package.json +++ b/packages/mermaid/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mermaid", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Mermaid Renderer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,9 +42,9 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/rendermime-interfaces": "^3.9.5", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/rendermime-interfaces": "^3.9.6", "@lumino/coreutils": "^2.1.2", "@lumino/widgets": "^2.3.1", "mermaid": "^10.7.0" diff --git a/packages/metadataform-extension/package.json b/packages/metadataform-extension/package.json index 8420a3d09fab..556348ba1344 100644 --- a/packages/metadataform-extension/package.json +++ b/packages/metadataform-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/metadataform-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "A helper to build form for metadata", "keywords": [ "jupyter", @@ -39,12 +39,12 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/metadataform": "^4.1.5", - "@jupyterlab/notebook": "^4.1.5", - "@jupyterlab/settingregistry": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/metadataform": "^4.1.6", + "@jupyterlab/notebook": "^4.1.6", + "@jupyterlab/settingregistry": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/coreutils": "^2.1.2" }, "devDependencies": { diff --git a/packages/metadataform/package.json b/packages/metadataform/package.json index 789a95cbae87..182e8b018249 100644 --- a/packages/metadataform/package.json +++ b/packages/metadataform/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/metadataform", - "version": "4.1.5", + "version": "4.1.6", "description": "A helper to build form for metadata", "keywords": [ "jupyter", @@ -45,12 +45,12 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/nbformat": "^4.1.5", - "@jupyterlab/notebook": "^4.1.5", - "@jupyterlab/settingregistry": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/nbformat": "^4.1.6", + "@jupyterlab/notebook": "^4.1.6", + "@jupyterlab/settingregistry": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/coreutils": "^2.1.2", "@lumino/messaging": "^2.0.1", "@lumino/widgets": "^2.3.1", @@ -60,7 +60,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "@types/react": "^18.0.26", "jest": "^29.2.0", diff --git a/packages/metapackage/package.json b/packages/metapackage/package.json index a39d3f8e743c..daa564d7d124 100644 --- a/packages/metapackage/package.json +++ b/packages/metapackage/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/metapackage", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Meta Package. All of the packages used by the core JupyterLab application", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,103 +37,103 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/application-extension": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/apputils-extension": "^4.1.5", - "@jupyterlab/attachments": "^4.1.5", - "@jupyterlab/cell-toolbar": "^4.1.5", - "@jupyterlab/cell-toolbar-extension": "^4.1.5", - "@jupyterlab/cells": "^4.1.5", - "@jupyterlab/celltags-extension": "^4.1.5", - "@jupyterlab/codeeditor": "^4.1.5", - "@jupyterlab/codemirror": "^4.1.5", - "@jupyterlab/codemirror-extension": "^4.1.5", - "@jupyterlab/completer": "^4.1.5", - "@jupyterlab/completer-extension": "^4.1.5", - "@jupyterlab/console": "^4.1.5", - "@jupyterlab/console-extension": "^4.1.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/csvviewer": "^4.1.5", - "@jupyterlab/csvviewer-extension": "^4.1.5", - "@jupyterlab/debugger": "^4.1.5", - "@jupyterlab/debugger-extension": "^4.1.5", - "@jupyterlab/docmanager": "^4.1.5", - "@jupyterlab/docmanager-extension": "^4.1.5", - "@jupyterlab/docregistry": "^4.1.5", - "@jupyterlab/documentsearch": "^4.1.5", - "@jupyterlab/documentsearch-extension": "^4.1.5", - "@jupyterlab/extensionmanager": "^4.1.5", - "@jupyterlab/extensionmanager-extension": "^4.1.5", - "@jupyterlab/filebrowser": "^4.1.5", - "@jupyterlab/filebrowser-extension": "^4.1.5", - "@jupyterlab/fileeditor": "^4.1.5", - "@jupyterlab/fileeditor-extension": "^4.1.5", - "@jupyterlab/help-extension": "^4.1.5", - "@jupyterlab/htmlviewer": "^4.1.5", - "@jupyterlab/htmlviewer-extension": "^4.1.5", - "@jupyterlab/hub-extension": "^4.1.5", - "@jupyterlab/imageviewer": "^4.1.5", - "@jupyterlab/imageviewer-extension": "^4.1.5", - "@jupyterlab/inspector": "^4.1.5", - "@jupyterlab/inspector-extension": "^4.1.5", - "@jupyterlab/javascript-extension": "^4.1.5", - "@jupyterlab/json-extension": "^4.1.5", - "@jupyterlab/launcher": "^4.1.5", - "@jupyterlab/launcher-extension": "^4.1.5", - "@jupyterlab/logconsole": "^4.1.5", - "@jupyterlab/logconsole-extension": "^4.1.5", - "@jupyterlab/lsp": "^4.1.5", - "@jupyterlab/lsp-extension": "^4.1.5", - "@jupyterlab/mainmenu": "^4.1.5", - "@jupyterlab/mainmenu-extension": "^4.1.5", - "@jupyterlab/markdownviewer": "^4.1.5", - "@jupyterlab/markdownviewer-extension": "^4.1.5", - "@jupyterlab/markedparser-extension": "^4.1.5", - "@jupyterlab/mathjax-extension": "^4.1.5", - "@jupyterlab/mermaid": "^4.1.5", - "@jupyterlab/mermaid-extension": "^4.1.5", - "@jupyterlab/metadataform": "^4.1.5", - "@jupyterlab/metadataform-extension": "^4.1.5", - "@jupyterlab/nbconvert-css": "^4.1.5", - "@jupyterlab/nbformat": "^4.1.5", - "@jupyterlab/notebook": "^4.1.5", - "@jupyterlab/notebook-extension": "^4.1.5", - "@jupyterlab/observables": "^5.1.5", - "@jupyterlab/outputarea": "^4.1.5", - "@jupyterlab/pdf-extension": "^4.1.5", - "@jupyterlab/pluginmanager": "^4.1.5", - "@jupyterlab/pluginmanager-extension": "^4.1.5", - "@jupyterlab/property-inspector": "^4.1.5", - "@jupyterlab/rendermime": "^4.1.5", - "@jupyterlab/rendermime-extension": "^4.1.5", - "@jupyterlab/rendermime-interfaces": "^3.9.5", - "@jupyterlab/running": "^4.1.5", - "@jupyterlab/running-extension": "^4.1.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/settingeditor": "^4.1.5", - "@jupyterlab/settingeditor-extension": "^4.1.5", - "@jupyterlab/settingregistry": "^4.1.5", - "@jupyterlab/shortcuts-extension": "^4.1.5", - "@jupyterlab/statedb": "^4.1.5", - "@jupyterlab/statusbar": "^4.1.5", - "@jupyterlab/statusbar-extension": "^4.1.5", - "@jupyterlab/terminal": "^4.1.5", - "@jupyterlab/terminal-extension": "^4.1.5", - "@jupyterlab/theme-dark-extension": "^4.1.5", - "@jupyterlab/theme-light-extension": "^4.1.5", - "@jupyterlab/toc": "^6.1.5", - "@jupyterlab/toc-extension": "^6.1.5", - "@jupyterlab/tooltip": "^4.1.5", - "@jupyterlab/tooltip-extension": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/translation-extension": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", - "@jupyterlab/ui-components-extension": "^4.1.5", - "@jupyterlab/vega5-extension": "^4.1.5" + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/application-extension": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/apputils-extension": "^4.1.6", + "@jupyterlab/attachments": "^4.1.6", + "@jupyterlab/cell-toolbar": "^4.1.6", + "@jupyterlab/cell-toolbar-extension": "^4.1.6", + "@jupyterlab/cells": "^4.1.6", + "@jupyterlab/celltags-extension": "^4.1.6", + "@jupyterlab/codeeditor": "^4.1.6", + "@jupyterlab/codemirror": "^4.1.6", + "@jupyterlab/codemirror-extension": "^4.1.6", + "@jupyterlab/completer": "^4.1.6", + "@jupyterlab/completer-extension": "^4.1.6", + "@jupyterlab/console": "^4.1.6", + "@jupyterlab/console-extension": "^4.1.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/csvviewer": "^4.1.6", + "@jupyterlab/csvviewer-extension": "^4.1.6", + "@jupyterlab/debugger": "^4.1.6", + "@jupyterlab/debugger-extension": "^4.1.6", + "@jupyterlab/docmanager": "^4.1.6", + "@jupyterlab/docmanager-extension": "^4.1.6", + "@jupyterlab/docregistry": "^4.1.6", + "@jupyterlab/documentsearch": "^4.1.6", + "@jupyterlab/documentsearch-extension": "^4.1.6", + "@jupyterlab/extensionmanager": "^4.1.6", + "@jupyterlab/extensionmanager-extension": "^4.1.6", + "@jupyterlab/filebrowser": "^4.1.6", + "@jupyterlab/filebrowser-extension": "^4.1.6", + "@jupyterlab/fileeditor": "^4.1.6", + "@jupyterlab/fileeditor-extension": "^4.1.6", + "@jupyterlab/help-extension": "^4.1.6", + "@jupyterlab/htmlviewer": "^4.1.6", + "@jupyterlab/htmlviewer-extension": "^4.1.6", + "@jupyterlab/hub-extension": "^4.1.6", + "@jupyterlab/imageviewer": "^4.1.6", + "@jupyterlab/imageviewer-extension": "^4.1.6", + "@jupyterlab/inspector": "^4.1.6", + "@jupyterlab/inspector-extension": "^4.1.6", + "@jupyterlab/javascript-extension": "^4.1.6", + "@jupyterlab/json-extension": "^4.1.6", + "@jupyterlab/launcher": "^4.1.6", + "@jupyterlab/launcher-extension": "^4.1.6", + "@jupyterlab/logconsole": "^4.1.6", + "@jupyterlab/logconsole-extension": "^4.1.6", + "@jupyterlab/lsp": "^4.1.6", + "@jupyterlab/lsp-extension": "^4.1.6", + "@jupyterlab/mainmenu": "^4.1.6", + "@jupyterlab/mainmenu-extension": "^4.1.6", + "@jupyterlab/markdownviewer": "^4.1.6", + "@jupyterlab/markdownviewer-extension": "^4.1.6", + "@jupyterlab/markedparser-extension": "^4.1.6", + "@jupyterlab/mathjax-extension": "^4.1.6", + "@jupyterlab/mermaid": "^4.1.6", + "@jupyterlab/mermaid-extension": "^4.1.6", + "@jupyterlab/metadataform": "^4.1.6", + "@jupyterlab/metadataform-extension": "^4.1.6", + "@jupyterlab/nbconvert-css": "^4.1.6", + "@jupyterlab/nbformat": "^4.1.6", + "@jupyterlab/notebook": "^4.1.6", + "@jupyterlab/notebook-extension": "^4.1.6", + "@jupyterlab/observables": "^5.1.6", + "@jupyterlab/outputarea": "^4.1.6", + "@jupyterlab/pdf-extension": "^4.1.6", + "@jupyterlab/pluginmanager": "^4.1.6", + "@jupyterlab/pluginmanager-extension": "^4.1.6", + "@jupyterlab/property-inspector": "^4.1.6", + "@jupyterlab/rendermime": "^4.1.6", + "@jupyterlab/rendermime-extension": "^4.1.6", + "@jupyterlab/rendermime-interfaces": "^3.9.6", + "@jupyterlab/running": "^4.1.6", + "@jupyterlab/running-extension": "^4.1.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/settingeditor": "^4.1.6", + "@jupyterlab/settingeditor-extension": "^4.1.6", + "@jupyterlab/settingregistry": "^4.1.6", + "@jupyterlab/shortcuts-extension": "^4.1.6", + "@jupyterlab/statedb": "^4.1.6", + "@jupyterlab/statusbar": "^4.1.6", + "@jupyterlab/statusbar-extension": "^4.1.6", + "@jupyterlab/terminal": "^4.1.6", + "@jupyterlab/terminal-extension": "^4.1.6", + "@jupyterlab/theme-dark-extension": "^4.1.6", + "@jupyterlab/theme-light-extension": "^4.1.6", + "@jupyterlab/toc": "^6.1.6", + "@jupyterlab/toc-extension": "^6.1.6", + "@jupyterlab/tooltip": "^4.1.6", + "@jupyterlab/tooltip-extension": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/translation-extension": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/ui-components-extension": "^4.1.6", + "@jupyterlab/vega5-extension": "^4.1.6" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "fs-extra": "^10.1.0", "jest": "^29.2.0", diff --git a/packages/nbconvert-css/package.json b/packages/nbconvert-css/package.json index 052e17c5c3b6..b9a675dc75f5 100644 --- a/packages/nbconvert-css/package.json +++ b/packages/nbconvert-css/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/nbconvert-css", - "version": "4.1.5", + "version": "4.1.6", "description": "CSS bundle for the JupyterLab nbconvert template", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -31,13 +31,13 @@ "watch": "webpack --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/cells": "^4.1.5", - "@jupyterlab/codemirror": "^4.1.5", - "@jupyterlab/notebook": "^4.1.5", - "@jupyterlab/outputarea": "^4.1.5", - "@jupyterlab/rendermime": "^4.1.5" + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/cells": "^4.1.6", + "@jupyterlab/codemirror": "^4.1.6", + "@jupyterlab/notebook": "^4.1.6", + "@jupyterlab/outputarea": "^4.1.6", + "@jupyterlab/rendermime": "^4.1.6" }, "devDependencies": { "css-loader": "^6.7.1", diff --git a/packages/nbformat/package.json b/packages/nbformat/package.json index 6b251e3e4655..b9a77e625d7b 100644 --- a/packages/nbformat/package.json +++ b/packages/nbformat/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/nbformat", - "version": "4.1.5", + "version": "4.1.6", "description": "Notebook format interfaces", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,7 +41,7 @@ "@lumino/coreutils": "^2.1.2" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/notebook-extension/package.json b/packages/notebook-extension/package.json index 529286beca37..a1b5b271a5fc 100644 --- a/packages/notebook-extension/package.json +++ b/packages/notebook-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/notebook-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Notebook Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,35 +38,35 @@ }, "dependencies": { "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/cells": "^4.1.5", - "@jupyterlab/codeeditor": "^4.1.5", - "@jupyterlab/codemirror": "^4.1.5", - "@jupyterlab/completer": "^4.1.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/docmanager": "^4.1.5", - "@jupyterlab/docmanager-extension": "^4.1.5", - "@jupyterlab/docregistry": "^4.1.5", - "@jupyterlab/documentsearch": "^4.1.5", - "@jupyterlab/filebrowser": "^4.1.5", - "@jupyterlab/launcher": "^4.1.5", - "@jupyterlab/logconsole": "^4.1.5", - "@jupyterlab/lsp": "^4.1.5", - "@jupyterlab/mainmenu": "^4.1.5", - "@jupyterlab/metadataform": "^4.1.5", - "@jupyterlab/nbformat": "^4.1.5", - "@jupyterlab/notebook": "^4.1.5", - "@jupyterlab/observables": "^5.1.5", - "@jupyterlab/property-inspector": "^4.1.5", - "@jupyterlab/rendermime": "^4.1.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/settingregistry": "^4.1.5", - "@jupyterlab/statedb": "^4.1.5", - "@jupyterlab/statusbar": "^4.1.5", - "@jupyterlab/toc": "^6.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/cells": "^4.1.6", + "@jupyterlab/codeeditor": "^4.1.6", + "@jupyterlab/codemirror": "^4.1.6", + "@jupyterlab/completer": "^4.1.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/docmanager": "^4.1.6", + "@jupyterlab/docmanager-extension": "^4.1.6", + "@jupyterlab/docregistry": "^4.1.6", + "@jupyterlab/documentsearch": "^4.1.6", + "@jupyterlab/filebrowser": "^4.1.6", + "@jupyterlab/launcher": "^4.1.6", + "@jupyterlab/logconsole": "^4.1.6", + "@jupyterlab/lsp": "^4.1.6", + "@jupyterlab/mainmenu": "^4.1.6", + "@jupyterlab/metadataform": "^4.1.6", + "@jupyterlab/nbformat": "^4.1.6", + "@jupyterlab/notebook": "^4.1.6", + "@jupyterlab/observables": "^5.1.6", + "@jupyterlab/property-inspector": "^4.1.6", + "@jupyterlab/rendermime": "^4.1.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/settingregistry": "^4.1.6", + "@jupyterlab/statedb": "^4.1.6", + "@jupyterlab/statusbar": "^4.1.6", + "@jupyterlab/toc": "^6.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", diff --git a/packages/notebook/package.json b/packages/notebook/package.json index 9d2e84d35327..2263c846ba6a 100644 --- a/packages/notebook/package.json +++ b/packages/notebook/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/notebook", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Notebook", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,23 +42,23 @@ }, "dependencies": { "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/cells": "^4.1.5", - "@jupyterlab/codeeditor": "^4.1.5", - "@jupyterlab/codemirror": "^4.1.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/docregistry": "^4.1.5", - "@jupyterlab/documentsearch": "^4.1.5", - "@jupyterlab/lsp": "^4.1.5", - "@jupyterlab/nbformat": "^4.1.5", - "@jupyterlab/observables": "^5.1.5", - "@jupyterlab/rendermime": "^4.1.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/settingregistry": "^4.1.5", - "@jupyterlab/statusbar": "^4.1.5", - "@jupyterlab/toc": "^6.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/cells": "^4.1.6", + "@jupyterlab/codeeditor": "^4.1.6", + "@jupyterlab/codemirror": "^4.1.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/docregistry": "^4.1.6", + "@jupyterlab/documentsearch": "^4.1.6", + "@jupyterlab/lsp": "^4.1.6", + "@jupyterlab/nbformat": "^4.1.6", + "@jupyterlab/observables": "^5.1.6", + "@jupyterlab/rendermime": "^4.1.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/settingregistry": "^4.1.6", + "@jupyterlab/statusbar": "^4.1.6", + "@jupyterlab/toc": "^6.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -72,7 +72,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/observables/package.json b/packages/observables/package.json index 99a1b1c9cd4c..0f650f709e68 100644 --- a/packages/observables/package.json +++ b/packages/observables/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/observables", - "version": "5.1.5", + "version": "5.1.6", "description": "Data structures which may be observed for changes.", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -44,7 +44,7 @@ "@lumino/signaling": "^2.1.2" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/outputarea/package.json b/packages/outputarea/package.json index da11f98d1640..fc0c608ecbd5 100644 --- a/packages/outputarea/package.json +++ b/packages/outputarea/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/outputarea", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Notebook Output Area", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,13 +42,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/nbformat": "^4.1.5", - "@jupyterlab/observables": "^5.1.5", - "@jupyterlab/rendermime": "^4.1.5", - "@jupyterlab/rendermime-interfaces": "^3.9.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/translation": "^4.1.5", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/nbformat": "^4.1.6", + "@jupyterlab/observables": "^5.1.6", + "@jupyterlab/rendermime": "^4.1.6", + "@jupyterlab/rendermime-interfaces": "^3.9.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/translation": "^4.1.6", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -58,7 +58,7 @@ "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/outputarea/src/widget.ts b/packages/outputarea/src/widget.ts index 29192f0d4bba..2564928321ed 100644 --- a/packages/outputarea/src/widget.ts +++ b/packages/outputarea/src/widget.ts @@ -1093,9 +1093,13 @@ export class Stdin extends Widget implements IStdin { this._input = this.node.getElementsByTagName('input')[0]; // make users aware of the line history feature - this._input.placeholder = this._trans.__( - '↑↓ for history. Search history with c-↑/c-↓' - ); + if (!this._password) { + this._input.placeholder = this._trans.__( + '↑↓ for history. Search history with c-↑/c-↓' + ); + } else { + this._input.placeholder = ''; + } // initialize line history if (!Stdin._history.has(this._historyKey)) { diff --git a/packages/pdf-extension/package.json b/packages/pdf-extension/package.json index 51f4e24c5431..b082b247ef73 100644 --- a/packages/pdf-extension/package.json +++ b/packages/pdf-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/pdf-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - PDF Viewer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,7 +37,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/rendermime-interfaces": "^3.9.5", + "@jupyterlab/rendermime-interfaces": "^3.9.6", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/widgets": "^2.3.1" diff --git a/packages/pluginmanager-extension/package.json b/packages/pluginmanager-extension/package.json index 293e9adc97d8..398b08cf4fae 100644 --- a/packages/pluginmanager-extension/package.json +++ b/packages/pluginmanager-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/pluginmanager-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "Enable/disable plugins from user interface", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -35,11 +35,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/pluginmanager": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/pluginmanager": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/coreutils": "^2.1.2" }, "devDependencies": { diff --git a/packages/pluginmanager/package.json b/packages/pluginmanager/package.json index 50e37765c8be..2622f6faf3f0 100644 --- a/packages/pluginmanager/package.json +++ b/packages/pluginmanager/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/pluginmanager", - "version": "4.1.5", + "version": "4.1.6", "description": "List, enable or disable individual plugins.", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -39,19 +39,19 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/coreutils": "^2.1.2", "@lumino/signaling": "^2.1.2", "@lumino/widgets": "^2.3.1", "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/property-inspector/package.json b/packages/property-inspector/package.json index bf7b96cfe5b2..ce85752a776e 100644 --- a/packages/property-inspector/package.json +++ b/packages/property-inspector/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/property-inspector", - "version": "4.1.5", + "version": "4.1.6", "description": "A property inspector display for widgets", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -34,9 +34,9 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/signaling": "^2.1.2", diff --git a/packages/rendermime-extension/package.json b/packages/rendermime-extension/package.json index 6f06ce348dd3..13df2c60d9dc 100644 --- a/packages/rendermime-extension/package.json +++ b/packages/rendermime-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/rendermime-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "A rendermime extension for JupyterLab", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -34,11 +34,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/docmanager": "^4.1.5", - "@jupyterlab/rendermime": "^4.1.5", - "@jupyterlab/translation": "^4.1.5" + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/docmanager": "^4.1.6", + "@jupyterlab/rendermime": "^4.1.6", + "@jupyterlab/translation": "^4.1.6" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/rendermime-interfaces/package.json b/packages/rendermime-interfaces/package.json index 597b8ddd5a85..3a58f132314e 100644 --- a/packages/rendermime-interfaces/package.json +++ b/packages/rendermime-interfaces/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/rendermime-interfaces", - "version": "3.9.5", + "version": "3.9.6", "description": "JupyterLab - Interfaces for Mime Renderers", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { diff --git a/packages/rendermime/package.json b/packages/rendermime/package.json index 4c75e0affe5f..8bdc323fbf98 100644 --- a/packages/rendermime/package.json +++ b/packages/rendermime/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/rendermime", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - RenderMime", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,13 +42,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/nbformat": "^4.1.5", - "@jupyterlab/observables": "^5.1.5", - "@jupyterlab/rendermime-interfaces": "^3.9.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/translation": "^4.1.5", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/nbformat": "^4.1.6", + "@jupyterlab/observables": "^5.1.6", + "@jupyterlab/rendermime-interfaces": "^3.9.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/translation": "^4.1.6", "@lumino/coreutils": "^2.1.2", "@lumino/messaging": "^2.0.1", "@lumino/signaling": "^2.1.2", @@ -56,7 +56,7 @@ "lodash.escape": "^4.0.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "@types/lodash.escape": "^4.0.6", "fs-extra": "^10.1.0", diff --git a/packages/running-extension/package.json b/packages/running-extension/package.json index 7a8c7963bfd7..8b3fe9f87b5c 100644 --- a/packages/running-extension/package.json +++ b/packages/running-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/running-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Running Sessions Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,14 +38,14 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/docregistry": "^4.1.5", - "@jupyterlab/rendermime-interfaces": "^3.9.5", - "@jupyterlab/running": "^4.1.5", - "@jupyterlab/services": "^7.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/docregistry": "^4.1.6", + "@jupyterlab/rendermime-interfaces": "^3.9.6", + "@jupyterlab/running": "^4.1.6", + "@jupyterlab/services": "^7.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/commands": "^2.2.0", "@lumino/polling": "^2.1.2", "@lumino/signaling": "^2.1.2", diff --git a/packages/running/package.json b/packages/running/package.json index 339f2d7714a0..8840e3ef9c76 100644 --- a/packages/running/package.json +++ b/packages/running/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/running", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Running Sessions Panel", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,9 +37,9 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/messaging": "^2.0.1", diff --git a/packages/services/examples/browser/package.json b/packages/services/examples/browser/package.json index 49e5429883b6..8d9fe000656b 100644 --- a/packages/services/examples/browser/package.json +++ b/packages/services/examples/browser/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-services-browser", - "version": "4.1.5", + "version": "4.1.6", "private": true, "files": [ "lib/*.{d.ts,js,js.map}" @@ -10,8 +10,8 @@ "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo" }, "dependencies": { - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/services": "^7.1.5", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/services": "^7.1.6", "@lumino/coreutils": "^2.1.2" }, "devDependencies": { diff --git a/packages/services/examples/node/package.json b/packages/services/examples/node/package.json index 4874ae1ac014..f65a23a4abba 100644 --- a/packages/services/examples/node/package.json +++ b/packages/services/examples/node/package.json @@ -1,13 +1,13 @@ { "name": "node-example", - "version": "4.1.5", + "version": "4.1.6", "private": true, "scripts": { "clean": "rimraf node_modules", "update": "rimraf node_modules/@jupyterlab/services && npm install" }, "dependencies": { - "@jupyterlab/services": "^7.1.5", + "@jupyterlab/services": "^7.1.6", "ws": "^8.11.0" }, "devDependencies": { diff --git a/packages/services/examples/typescript-browser-with-output/package.json b/packages/services/examples/typescript-browser-with-output/package.json index 515473b7783d..3384f767fd8b 100644 --- a/packages/services/examples/typescript-browser-with-output/package.json +++ b/packages/services/examples/typescript-browser-with-output/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-services-outputarea", - "version": "4.1.5", + "version": "4.1.6", "private": true, "sideEffects": [ "style/*" @@ -16,10 +16,10 @@ "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo" }, "dependencies": { - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/outputarea": "^4.1.5", - "@jupyterlab/rendermime": "^4.1.5", - "@jupyterlab/services": "^7.1.5" + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/outputarea": "^4.1.6", + "@jupyterlab/rendermime": "^4.1.6", + "@jupyterlab/services": "^7.1.6" }, "devDependencies": { "css-loader": "^6.7.1", diff --git a/packages/services/package.json b/packages/services/package.json index fdee0c92e382..e0e90dfcb8f8 100644 --- a/packages/services/package.json +++ b/packages/services/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/services", - "version": "7.1.5", + "version": "7.1.6", "description": "Client APIs for the Jupyter services REST APIs", "keywords": [ "jupyter", @@ -47,10 +47,10 @@ }, "dependencies": { "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/coreutils": "^6.1.5", - "@jupyterlab/nbformat": "^4.1.5", - "@jupyterlab/settingregistry": "^4.1.5", - "@jupyterlab/statedb": "^4.1.5", + "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/nbformat": "^4.1.6", + "@jupyterlab/settingregistry": "^4.1.6", + "@jupyterlab/statedb": "^4.1.6", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/polling": "^2.1.2", @@ -59,7 +59,7 @@ "ws": "^8.11.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "@types/ws": "^8.5.3", "jest": "^29.2.0", diff --git a/packages/services/src/basemanager.ts b/packages/services/src/basemanager.ts index 1438d2fc1692..22e75c9cd5a5 100644 --- a/packages/services/src/basemanager.ts +++ b/packages/services/src/basemanager.ts @@ -86,6 +86,7 @@ export abstract class BaseManager implements IManager { if (this.isDisposed) { return; } + this._isDisposed = true; this._disposed.emit(undefined); Signal.clearData(this); } diff --git a/packages/services/test/kernelspec/manager.spec.ts b/packages/services/test/kernelspec/manager.spec.ts index 8d9d8320138b..0c959e861aba 100644 --- a/packages/services/test/kernelspec/manager.spec.ts +++ b/packages/services/test/kernelspec/manager.spec.ts @@ -59,6 +59,17 @@ describe('kernel/manager', () => { }); }); + describe('#isDisposed', () => { + it('should be false when instantiating', () => { + expect(manager.isDisposed).toBe(false); + }); + + it('should true when disposing', () => { + manager.dispose(); + expect(manager.isDisposed).toBe(true); + }); + }); + describe('#serverSettings', () => { it('should get the server settings', () => { manager.dispose(); diff --git a/packages/settingeditor-extension/package.json b/packages/settingeditor-extension/package.json index 7de507c9ff10..56a6108f11d4 100644 --- a/packages/settingeditor-extension/package.json +++ b/packages/settingeditor-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/settingeditor-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Setting Editor Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,16 +38,16 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/codeeditor": "^4.1.5", - "@jupyterlab/pluginmanager": "^4.1.5", - "@jupyterlab/rendermime": "^4.1.5", - "@jupyterlab/settingeditor": "^4.1.5", - "@jupyterlab/settingregistry": "^4.1.5", - "@jupyterlab/statedb": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/codeeditor": "^4.1.6", + "@jupyterlab/pluginmanager": "^4.1.6", + "@jupyterlab/rendermime": "^4.1.6", + "@jupyterlab/settingeditor": "^4.1.6", + "@jupyterlab/settingregistry": "^4.1.6", + "@jupyterlab/statedb": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/disposable": "^2.1.2" }, "devDependencies": { diff --git a/packages/settingeditor/package.json b/packages/settingeditor/package.json index 36f985964530..f54314c91fd2 100644 --- a/packages/settingeditor/package.json +++ b/packages/settingeditor/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/settingeditor", - "version": "4.1.5", + "version": "4.1.6", "description": "The JupyterLab default setting editor interface", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,15 +42,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/codeeditor": "^4.1.5", - "@jupyterlab/inspector": "^4.1.5", - "@jupyterlab/rendermime": "^4.1.5", - "@jupyterlab/settingregistry": "^4.1.5", - "@jupyterlab/statedb": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/codeeditor": "^4.1.6", + "@jupyterlab/inspector": "^4.1.6", + "@jupyterlab/rendermime": "^4.1.6", + "@jupyterlab/settingregistry": "^4.1.6", + "@jupyterlab/statedb": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", @@ -66,7 +66,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "@types/react": "^18.0.26", "@types/react-test-renderer": "^18.0.0", diff --git a/packages/settingregistry/package.json b/packages/settingregistry/package.json index 123279b34032..e1a0abc1aa18 100644 --- a/packages/settingregistry/package.json +++ b/packages/settingregistry/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/settingregistry", - "version": "4.1.5", + "version": "4.1.6", "description": "Settings registry for Jupyterlab", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,8 +37,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/nbformat": "^4.1.5", - "@jupyterlab/statedb": "^4.1.5", + "@jupyterlab/nbformat": "^4.1.6", + "@jupyterlab/statedb": "^4.1.6", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -48,7 +48,7 @@ "json5": "^2.2.3" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/shortcuts-extension/package.json b/packages/shortcuts-extension/package.json index a9af526aa791..20cd5eb0cea4 100644 --- a/packages/shortcuts-extension/package.json +++ b/packages/shortcuts-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/shortcuts-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Shortcuts Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,10 +41,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/settingregistry": "^4.1.5", - "@jupyterlab/translation": "^4.1.5", - "@jupyterlab/ui-components": "^4.1.5", + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/settingregistry": "^4.1.6", + "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.6", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", @@ -55,7 +55,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.5", + "@jupyterlab/testing": "^4.1.6", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/shortcuts-extension/src/components/ShortcutInput.tsx b/packages/shortcuts-extension/src/components/ShortcutInput.tsx index 62cd1b3f2b90..8075a53261c3 100644 --- a/packages/shortcuts-extension/src/components/ShortcutInput.tsx +++ b/packages/shortcuts-extension/src/components/ShortcutInput.tsx @@ -431,6 +431,7 @@ export class ShortcutInput extends React.Component< className={inputClassName} onKeyDown={this.handleInput} ref={input => input && input.focus()} + data-lm-suppress-shortcuts="true" >

{ if (widget instanceof ToolbarPopupOpener) { status = super.insertItem(index, name, widget); } else { + // Insert the widget in the toolbar at axpected index if possible, otherwise + // before the popup opener. This position may change when invoking the resizer + // at the end of this function. const j = Math.max( 0, Math.min(index, (this.layout as ToolbarLayout).widgets.length - 1) ); status = super.insertItem(j, name, widget); + + if (j !== index) { + // This happens if the widget has been inserted at a wrong position: + // - not enough widgets in the toolbar to insert it at the expected index + // - the widget at the expected index should be in the popup + // In the first situation, the stored index should be changed to match a + // realistic index. + index = Math.max(0, Math.min(index, this._widgetPositions.size)); + } } // Save the widgets position when a widget is inserted or moved. diff --git a/packages/ui-components/test/toolbar.spec.ts b/packages/ui-components/test/toolbar.spec.ts index 0152e8fce9a9..fd2c8cfa54bc 100644 --- a/packages/ui-components/test/toolbar.spec.ts +++ b/packages/ui-components/test/toolbar.spec.ts @@ -426,6 +426,39 @@ describe('@jupyterlab/ui-components', () => { ).toEqual(-1); }); }); + + describe('#storedPositions', () => { + it('should store the correct position of items', () => { + const w = new Widget(); + const names = ['test0', 'test1', 'test2', 'test3']; + for (let i = 0; i < 3; i++) { + toolbar.insertItem(i, names[i], w); + } + toolbar.insertItem(1, names[3], w); + const positions = (toolbar as any)._widgetPositions; + let stored: number[] = []; + for (let i = 0; i < 4; i++) { + stored.push(positions.get(names[i])); + } + expect(stored).toEqual([0, 2, 3, 1]); + }); + + it('should not store unexpected index', () => { + const w = new Widget(); + const names = ['test0', 'test1', 'test2', 'test3']; + for (let i = 0; i < 2; i++) { + toolbar.insertItem(i, names[i], w); + } + toolbar.insertItem(-5, names[2], w); + toolbar.insertItem(10, names[3], w); + const positions = (toolbar as any)._widgetPositions; + let stored: number[] = []; + for (let i = 0; i < 4; i++) { + stored.push(positions.get(names[i])); + } + expect(stored).toEqual([1, 2, 0, 3]); + }); + }); }); describe('ToolbarButton', () => { diff --git a/packages/vega5-extension/README.md b/packages/vega5-extension/README.md index 958ee25e2610..1584b2f466bd 100644 --- a/packages/vega5-extension/README.md +++ b/packages/vega5-extension/README.md @@ -2,8 +2,6 @@ A JupyterLab extension for rendering [Vega](https://vega.github.io/vega) 5 and [Vega-Lite](https://vega.github.io/vega-lite) 3. -![demo](http://g.recordit.co/USoTkuCOfR.gif) - This extension is in the official JupyterLab distribution. ## Usage diff --git a/packages/vega5-extension/package.json b/packages/vega5-extension/package.json index 942b12bb5df2..88aacf94f0c4 100644 --- a/packages/vega5-extension/package.json +++ b/packages/vega5-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/vega5-extension", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Vega 5 and Vega-Lite 5 Mime Renderer Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/rendermime-interfaces": "^3.9.5", + "@jupyterlab/rendermime-interfaces": "^3.9.6", "@lumino/coreutils": "^2.1.2", "@lumino/widgets": "^2.3.1", "vega": "^5.20.0", @@ -46,7 +46,7 @@ "vega-lite": "^5.6.1-next.1" }, "devDependencies": { - "@jupyterlab/testutils": "^4.1.5", + "@jupyterlab/testutils": "^4.1.6", "@types/jest": "^29.2.0", "@types/webpack-env": "^1.18.0", "jest": "^29.2.0", diff --git a/pyproject.toml b/pyproject.toml index 0d1563513243..a9821d251bde 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,7 +38,7 @@ dependencies = [ "httpx>=0.25.0", "importlib-metadata>=4.8.3;python_version<\"3.10\"", "importlib-resources>=1.4;python_version<\"3.9\"", - "ipykernel", + "ipykernel>=6.5.0", "jinja2>=3.0.3", "jupyter_core", "jupyter_server@git+https://github.com/spotinst/jupyter_server.git@ocean-spark-jupyterserver-jlab", @@ -46,7 +46,7 @@ dependencies = [ "jupyterlab_server>=2.19.0,<3", "notebook_shim>=0.2", "packaging", - "tomli;python_version<\"3.11\"", + "tomli>=1.2.2;python_version<\"3.11\"", "tornado>=6.2.0", "traitlets", ] @@ -122,6 +122,13 @@ dev = [ "bump2version", "ruff==0.2.0", ] +upgrade-extension = [ + "pyyaml-include<2.0", + "copier~=8.0", + "jinja2-time<0.3", + "pydantic<2.0", + "tomli-w<2.0" +] [tool.check-wheel-contents] ignore = ["W002", "W004"] diff --git a/scripts/ci_script.sh b/scripts/ci_script.sh index 9d7d60b9dad8..2e838e4f2f66 100755 --- a/scripts/ci_script.sh +++ b/scripts/ci_script.sh @@ -259,7 +259,7 @@ if [[ $GROUP == usage ]]; then jlpm run get:dependency react-native # Use the extension upgrade script - python -m pip install copier jinja2-time "pydantic<2" + python -m pip install .[upgrade-extension] python -m jupyterlab.upgrade_extension --no-input jupyterlab/tests/mock_packages/extension fi diff --git a/testutils/package.json b/testutils/package.json index c0a0f5aac65f..3574f1b4d7bc 100644 --- a/testutils/package.json +++ b/testutils/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/testutils", - "version": "4.1.5", + "version": "4.1.6", "description": "JupyterLab - Test Utilities", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -31,11 +31,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.5", - "@jupyterlab/apputils": "^4.2.5", - "@jupyterlab/notebook": "^4.1.5", - "@jupyterlab/rendermime": "^4.1.5", - "@jupyterlab/testing": "^4.1.5" + "@jupyterlab/application": "^4.1.6", + "@jupyterlab/apputils": "^4.2.6", + "@jupyterlab/notebook": "^4.1.6", + "@jupyterlab/rendermime": "^4.1.6", + "@jupyterlab/testing": "^4.1.6" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/yarn.lock b/yarn.lock index a8e0063b2a86..8ede0524ad93 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2096,19 +2096,19 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/application-extension@^4.1.5, @jupyterlab/application-extension@workspace:packages/application-extension, @jupyterlab/application-extension@~4.1.5": +"@jupyterlab/application-extension@^4.1.6, @jupyterlab/application-extension@workspace:packages/application-extension, @jupyterlab/application-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/application-extension@workspace:packages/application-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/property-inspector": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/property-inspector": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/statedb": ^4.1.6 + "@jupyterlab/statusbar": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -2125,56 +2125,56 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/application-top@workspace:dev_mode" dependencies: - "@jupyterlab/application": ~4.1.5 - "@jupyterlab/application-extension": ~4.1.5 - "@jupyterlab/apputils-extension": ~4.1.5 - "@jupyterlab/builder": ^4.1.5 - "@jupyterlab/buildutils": ^4.1.5 - "@jupyterlab/cell-toolbar-extension": ~4.1.5 - "@jupyterlab/celltags-extension": ~4.1.5 - "@jupyterlab/codemirror-extension": ~4.1.5 - "@jupyterlab/completer-extension": ~4.1.5 - "@jupyterlab/console-extension": ~4.1.5 - "@jupyterlab/coreutils": ~6.1.5 - "@jupyterlab/csvviewer-extension": ~4.1.5 - "@jupyterlab/debugger-extension": ~4.1.5 - "@jupyterlab/docmanager-extension": ~4.1.5 - "@jupyterlab/documentsearch-extension": ~4.1.5 - "@jupyterlab/extensionmanager-extension": ~4.1.5 - "@jupyterlab/filebrowser-extension": ~4.1.5 - "@jupyterlab/fileeditor-extension": ~4.1.5 - "@jupyterlab/help-extension": ~4.1.5 - "@jupyterlab/htmlviewer-extension": ~4.1.5 - "@jupyterlab/hub-extension": ~4.1.5 - "@jupyterlab/imageviewer-extension": ~4.1.5 - "@jupyterlab/inspector-extension": ~4.1.5 - "@jupyterlab/javascript-extension": ~4.1.5 - "@jupyterlab/json-extension": ~4.1.5 - "@jupyterlab/launcher-extension": ~4.1.5 - "@jupyterlab/logconsole-extension": ~4.1.5 - "@jupyterlab/lsp-extension": ~4.1.5 - "@jupyterlab/mainmenu-extension": ~4.1.5 - "@jupyterlab/markdownviewer-extension": ~4.1.5 - "@jupyterlab/markedparser-extension": ~4.1.5 - "@jupyterlab/mathjax-extension": ~4.1.5 - "@jupyterlab/mermaid-extension": ~4.1.5 - "@jupyterlab/metadataform-extension": ~4.1.5 - "@jupyterlab/notebook-extension": ~4.1.5 - "@jupyterlab/pdf-extension": ~4.1.5 - "@jupyterlab/pluginmanager-extension": ~4.1.5 - "@jupyterlab/rendermime-extension": ~4.1.5 - "@jupyterlab/running-extension": ~4.1.5 - "@jupyterlab/settingeditor-extension": ~4.1.5 - "@jupyterlab/shortcuts-extension": ~4.1.5 - "@jupyterlab/statusbar-extension": ~4.1.5 - "@jupyterlab/terminal-extension": ~4.1.5 - "@jupyterlab/theme-dark-extension": ~4.1.5 - "@jupyterlab/theme-light-extension": ~4.1.5 - "@jupyterlab/toc-extension": ~6.1.5 - "@jupyterlab/tooltip-extension": ~4.1.5 - "@jupyterlab/translation-extension": ~4.1.5 - "@jupyterlab/ui-components-extension": ~4.1.5 - "@jupyterlab/vega5-extension": ~4.1.5 + "@jupyterlab/application": ~4.1.6 + "@jupyterlab/application-extension": ~4.1.6 + "@jupyterlab/apputils-extension": ~4.1.6 + "@jupyterlab/builder": ^4.1.6 + "@jupyterlab/buildutils": ^4.1.6 + "@jupyterlab/cell-toolbar-extension": ~4.1.6 + "@jupyterlab/celltags-extension": ~4.1.6 + "@jupyterlab/codemirror-extension": ~4.1.6 + "@jupyterlab/completer-extension": ~4.1.6 + "@jupyterlab/console-extension": ~4.1.6 + "@jupyterlab/coreutils": ~6.1.6 + "@jupyterlab/csvviewer-extension": ~4.1.6 + "@jupyterlab/debugger-extension": ~4.1.6 + "@jupyterlab/docmanager-extension": ~4.1.6 + "@jupyterlab/documentsearch-extension": ~4.1.6 + "@jupyterlab/extensionmanager-extension": ~4.1.6 + "@jupyterlab/filebrowser-extension": ~4.1.6 + "@jupyterlab/fileeditor-extension": ~4.1.6 + "@jupyterlab/help-extension": ~4.1.6 + "@jupyterlab/htmlviewer-extension": ~4.1.6 + "@jupyterlab/hub-extension": ~4.1.6 + "@jupyterlab/imageviewer-extension": ~4.1.6 + "@jupyterlab/inspector-extension": ~4.1.6 + "@jupyterlab/javascript-extension": ~4.1.6 + "@jupyterlab/json-extension": ~4.1.6 + "@jupyterlab/launcher-extension": ~4.1.6 + "@jupyterlab/logconsole-extension": ~4.1.6 + "@jupyterlab/lsp-extension": ~4.1.6 + "@jupyterlab/mainmenu-extension": ~4.1.6 + "@jupyterlab/markdownviewer-extension": ~4.1.6 + "@jupyterlab/markedparser-extension": ~4.1.6 + "@jupyterlab/mathjax-extension": ~4.1.6 + "@jupyterlab/mermaid-extension": ~4.1.6 + "@jupyterlab/metadataform-extension": ~4.1.6 + "@jupyterlab/notebook-extension": ~4.1.6 + "@jupyterlab/pdf-extension": ~4.1.6 + "@jupyterlab/pluginmanager-extension": ~4.1.6 + "@jupyterlab/rendermime-extension": ~4.1.6 + "@jupyterlab/running-extension": ~4.1.6 + "@jupyterlab/settingeditor-extension": ~4.1.6 + "@jupyterlab/shortcuts-extension": ~4.1.6 + "@jupyterlab/statusbar-extension": ~4.1.6 + "@jupyterlab/terminal-extension": ~4.1.6 + "@jupyterlab/theme-dark-extension": ~4.1.6 + "@jupyterlab/theme-light-extension": ~4.1.6 + "@jupyterlab/toc-extension": ~6.1.6 + "@jupyterlab/tooltip-extension": ~4.1.6 + "@jupyterlab/translation-extension": ~4.1.6 + "@jupyterlab/ui-components-extension": ~4.1.6 + "@jupyterlab/vega5-extension": ~4.1.6 chokidar: ^3.4.0 css-loader: ^6.7.1 duplicate-package-checker-webpack-plugin: ^3.0.0 @@ -2200,21 +2200,21 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/application@^4.1.5, @jupyterlab/application@workspace:packages/application, @jupyterlab/application@~4.1.5": +"@jupyterlab/application@^4.1.6, @jupyterlab/application@workspace:packages/application, @jupyterlab/application@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/application@workspace:packages/application" dependencies: "@fortawesome/fontawesome-free": ^5.12.0 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/statedb": ^4.1.6 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/application": ^2.3.0 "@lumino/commands": ^2.2.0 @@ -2233,23 +2233,23 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/apputils-extension@^4.1.5, @jupyterlab/apputils-extension@workspace:packages/apputils-extension, @jupyterlab/apputils-extension@~4.1.5": +"@jupyterlab/apputils-extension@^4.1.6, @jupyterlab/apputils-extension@workspace:packages/apputils-extension, @jupyterlab/apputils-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/apputils-extension@workspace:packages/apputils-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/filebrowser": ^4.1.5 - "@jupyterlab/mainmenu": ^4.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/filebrowser": ^4.1.6 + "@jupyterlab/mainmenu": ^4.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/statedb": ^4.1.6 + "@jupyterlab/statusbar": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -2266,20 +2266,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/apputils@^4.2.5, @jupyterlab/apputils@workspace:packages/apputils": +"@jupyterlab/apputils@^4.2.6, @jupyterlab/apputils@workspace:packages/apputils": version: 0.0.0-use.local resolution: "@jupyterlab/apputils@workspace:packages/apputils" dependencies: - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/statedb": ^4.1.6 + "@jupyterlab/statusbar": ^4.1.6 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -2301,14 +2301,14 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/attachments@^4.1.5, @jupyterlab/attachments@workspace:packages/attachments": +"@jupyterlab/attachments@^4.1.6, @jupyterlab/attachments@workspace:packages/attachments": version: 0.0.0-use.local resolution: "@jupyterlab/attachments@workspace:packages/attachments" dependencies: - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 + "@jupyterlab/nbformat": ^4.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 rimraf: ~5.0.5 @@ -2317,7 +2317,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/builder@^4.1.5, @jupyterlab/builder@workspace:builder": +"@jupyterlab/builder@^4.1.6, @jupyterlab/builder@workspace:builder": version: 0.0.0-use.local resolution: "@jupyterlab/builder@workspace:builder" dependencies: @@ -2363,7 +2363,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/buildutils@^4.1.5, @jupyterlab/buildutils@workspace:buildutils": +"@jupyterlab/buildutils@^4.1.6, @jupyterlab/buildutils@workspace:buildutils": version: 0.0.0-use.local resolution: "@jupyterlab/buildutils@workspace:buildutils" dependencies: @@ -2403,32 +2403,32 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/cell-toolbar-extension@^4.1.5, @jupyterlab/cell-toolbar-extension@workspace:packages/cell-toolbar-extension, @jupyterlab/cell-toolbar-extension@~4.1.5": +"@jupyterlab/cell-toolbar-extension@^4.1.6, @jupyterlab/cell-toolbar-extension@workspace:packages/cell-toolbar-extension, @jupyterlab/cell-toolbar-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/cell-toolbar-extension@workspace:packages/cell-toolbar-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/cell-toolbar": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/cell-toolbar": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/cell-toolbar@^4.1.5, @jupyterlab/cell-toolbar@workspace:packages/cell-toolbar": +"@jupyterlab/cell-toolbar@^4.1.6, @jupyterlab/cell-toolbar@workspace:packages/cell-toolbar": version: 0.0.0-use.local resolution: "@jupyterlab/cell-toolbar@workspace:packages/cell-toolbar" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/cells": ^4.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/notebook": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/cells": ^4.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/notebook": ^4.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/disposable": ^2.1.2 @@ -2441,29 +2441,29 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/cells@^4.1.5, @jupyterlab/cells@workspace:packages/cells": +"@jupyterlab/cells@^4.1.6, @jupyterlab/cells@workspace:packages/cells": version: 0.0.0-use.local resolution: "@jupyterlab/cells@workspace:packages/cells" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/attachments": ^4.1.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/documentsearch": ^4.1.5 - "@jupyterlab/filebrowser": ^4.1.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/outputarea": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/toc": ^6.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/attachments": ^4.1.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/codemirror": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/documentsearch": ^4.1.6 + "@jupyterlab/filebrowser": ^4.1.6 + "@jupyterlab/nbformat": ^4.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/outputarea": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/toc": ^6.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/domutils": ^2.0.1 @@ -2483,14 +2483,14 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/celltags-extension@^4.1.5, @jupyterlab/celltags-extension@workspace:packages/celltags-extension, @jupyterlab/celltags-extension@~4.1.5": +"@jupyterlab/celltags-extension@^4.1.6, @jupyterlab/celltags-extension@workspace:packages/celltags-extension, @jupyterlab/celltags-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/celltags-extension@workspace:packages/celltags-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/notebook": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/notebook": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@rjsf/utils": ^5.13.4 react: ^18.2.0 @@ -2499,20 +2499,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/codeeditor@^4.1.5, @jupyterlab/codeeditor@workspace:packages/codeeditor": +"@jupyterlab/codeeditor@^4.1.6, @jupyterlab/codeeditor@workspace:packages/codeeditor": version: 0.0.0-use.local resolution: "@jupyterlab/codeeditor@workspace:packages/codeeditor" dependencies: "@codemirror/state": ^6.2.0 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/nbformat": ^4.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/statusbar": ^4.1.6 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/dragdrop": ^2.1.4 @@ -2528,7 +2528,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/codemirror-extension@^4.1.5, @jupyterlab/codemirror-extension@workspace:packages/codemirror-extension, @jupyterlab/codemirror-extension@~4.1.5": +"@jupyterlab/codemirror-extension@^4.1.6, @jupyterlab/codemirror-extension@workspace:packages/codemirror-extension, @jupyterlab/codemirror-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/codemirror-extension@workspace:packages/codemirror-extension" dependencies: @@ -2536,13 +2536,13 @@ __metadata: "@codemirror/language": ^6.6.0 "@codemirror/legacy-modes": ^6.3.2 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/codemirror": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/statusbar": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 "@rjsf/utils": ^5.13.4 @@ -2555,7 +2555,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/codemirror@^4.1.5, @jupyterlab/codemirror@workspace:packages/codemirror": +"@jupyterlab/codemirror@^4.1.6, @jupyterlab/codemirror@workspace:packages/codemirror": version: 0.0.0-use.local resolution: "@jupyterlab/codemirror@workspace:packages/codemirror" dependencies: @@ -2580,12 +2580,12 @@ __metadata: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/documentsearch": ^4.1.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/documentsearch": ^4.1.6 + "@jupyterlab/nbformat": ^4.1.6 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 "@lezer/common": ^1.0.2 "@lezer/generator": ^1.2.2 "@lezer/highlight": ^1.1.4 @@ -2603,15 +2603,15 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/completer-extension@^4.1.5, @jupyterlab/completer-extension@workspace:packages/completer-extension, @jupyterlab/completer-extension@~4.1.5": +"@jupyterlab/completer-extension@^4.1.6, @jupyterlab/completer-extension@workspace:packages/completer-extension, @jupyterlab/completer-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/completer-extension@workspace:packages/completer-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/completer": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/completer": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@rjsf/utils": ^5.13.4 @@ -2622,24 +2622,24 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/completer@^4.1.5, @jupyterlab/completer@workspace:packages/completer": +"@jupyterlab/completer@^4.1.6, @jupyterlab/completer@workspace:packages/completer": version: 0.0.0-use.local resolution: "@jupyterlab/completer@workspace:packages/completer" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/codemirror": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/statedb": ^4.1.6 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -2655,22 +2655,22 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/console-extension@^4.1.5, @jupyterlab/console-extension@workspace:packages/console-extension, @jupyterlab/console-extension@~4.1.5": +"@jupyterlab/console-extension@^4.1.6, @jupyterlab/console-extension@workspace:packages/console-extension, @jupyterlab/console-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/console-extension@workspace:packages/console-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/completer": ^4.1.5 - "@jupyterlab/console": ^4.1.5 - "@jupyterlab/filebrowser": ^4.1.5 - "@jupyterlab/launcher": ^4.1.5 - "@jupyterlab/mainmenu": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/completer": ^4.1.6 + "@jupyterlab/console": ^4.1.6 + "@jupyterlab/filebrowser": ^4.1.6 + "@jupyterlab/launcher": ^4.1.6 + "@jupyterlab/mainmenu": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -2682,25 +2682,25 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/console@^4.1.5, @jupyterlab/console@workspace:packages/console": +"@jupyterlab/console@^4.1.6, @jupyterlab/console@workspace:packages/console": version: 0.0.0-use.local resolution: "@jupyterlab/console@workspace:packages/console" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/cells": ^4.1.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/cells": ^4.1.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/codemirror": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/nbformat": ^4.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/dragdrop": ^2.1.4 @@ -2715,7 +2715,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/coreutils@^6.1.5, @jupyterlab/coreutils@workspace:packages/coreutils, @jupyterlab/coreutils@~6.1.5": +"@jupyterlab/coreutils@^6.1.6, @jupyterlab/coreutils@workspace:packages/coreutils, @jupyterlab/coreutils@~6.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/coreutils@workspace:packages/coreutils" dependencies: @@ -2740,19 +2740,19 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/csvviewer-extension@^4.1.5, @jupyterlab/csvviewer-extension@workspace:packages/csvviewer-extension, @jupyterlab/csvviewer-extension@~4.1.5": +"@jupyterlab/csvviewer-extension@^4.1.6, @jupyterlab/csvviewer-extension@workspace:packages/csvviewer-extension, @jupyterlab/csvviewer-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/csvviewer-extension@workspace:packages/csvviewer-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/csvviewer": ^4.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/documentsearch": ^4.1.5 - "@jupyterlab/mainmenu": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/csvviewer": ^4.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/documentsearch": ^4.1.6 + "@jupyterlab/mainmenu": ^4.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 "@lumino/datagrid": ^2.3.0 "@lumino/widgets": ^2.3.1 rimraf: ~5.0.5 @@ -2761,15 +2761,15 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/csvviewer@^4.1.5, @jupyterlab/csvviewer@workspace:packages/csvviewer": +"@jupyterlab/csvviewer@^4.1.6, @jupyterlab/csvviewer@workspace:packages/csvviewer": version: 0.0.0-use.local resolution: "@jupyterlab/csvviewer@workspace:packages/csvviewer" dependencies: - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/datagrid": ^2.3.0 "@lumino/disposable": ^2.1.2 @@ -2786,26 +2786,26 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/debugger-extension@^4.1.5, @jupyterlab/debugger-extension@workspace:packages/debugger-extension, @jupyterlab/debugger-extension@~4.1.5": +"@jupyterlab/debugger-extension@^4.1.6, @jupyterlab/debugger-extension@workspace:packages/debugger-extension, @jupyterlab/debugger-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/debugger-extension@workspace:packages/debugger-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/cells": ^4.1.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/console": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/debugger": ^4.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/fileeditor": ^4.1.5 - "@jupyterlab/logconsole": ^4.1.5 - "@jupyterlab/notebook": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/cells": ^4.1.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/console": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/debugger": ^4.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/fileeditor": ^4.1.6 + "@jupyterlab/logconsole": ^4.1.6 + "@jupyterlab/notebook": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 "@types/jest": ^29.2.0 "@types/react-dom": ^18.0.9 rimraf: ~5.0.5 @@ -2814,29 +2814,29 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/debugger@^4.1.5, @jupyterlab/debugger@workspace:packages/debugger": +"@jupyterlab/debugger@^4.1.6, @jupyterlab/debugger@workspace:packages/debugger": version: 0.0.0-use.local resolution: "@jupyterlab/debugger@workspace:packages/debugger" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/cells": ^4.1.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/console": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/fileeditor": ^4.1.5 - "@jupyterlab/notebook": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/cells": ^4.1.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/codemirror": ^4.1.6 + "@jupyterlab/console": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/fileeditor": ^4.1.6 + "@jupyterlab/notebook": ^4.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -2857,20 +2857,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/docmanager-extension@^4.1.5, @jupyterlab/docmanager-extension@workspace:packages/docmanager-extension, @jupyterlab/docmanager-extension@~4.1.5": +"@jupyterlab/docmanager-extension@^4.1.6, @jupyterlab/docmanager-extension@workspace:packages/docmanager-extension, @jupyterlab/docmanager-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/docmanager-extension@workspace:packages/docmanager-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docmanager": ^4.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docmanager": ^4.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/statusbar": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -2884,18 +2884,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/docmanager@^4.1.5, @jupyterlab/docmanager@workspace:packages/docmanager": +"@jupyterlab/docmanager@^4.1.6, @jupyterlab/docmanager@workspace:packages/docmanager": version: 0.0.0-use.local resolution: "@jupyterlab/docmanager@workspace:packages/docmanager" dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/statusbar": ^4.1.6 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -2912,21 +2912,21 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/docregistry@^4.1.5, @jupyterlab/docregistry@workspace:packages/docregistry": +"@jupyterlab/docregistry@^4.1.6, @jupyterlab/docregistry@workspace:packages/docregistry": version: 0.0.0-use.local resolution: "@jupyterlab/docregistry@workspace:packages/docregistry" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -2943,15 +2943,15 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/documentsearch-extension@^4.1.5, @jupyterlab/documentsearch-extension@workspace:packages/documentsearch-extension, @jupyterlab/documentsearch-extension@~4.1.5": +"@jupyterlab/documentsearch-extension@^4.1.6, @jupyterlab/documentsearch-extension@workspace:packages/documentsearch-extension, @jupyterlab/documentsearch-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/documentsearch-extension@workspace:packages/documentsearch-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/documentsearch": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/documentsearch": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 "@lumino/commands": ^2.2.0 "@lumino/widgets": ^2.3.1 rimraf: ~5.0.5 @@ -2959,14 +2959,14 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/documentsearch@^4.1.5, @jupyterlab/documentsearch@workspace:packages/documentsearch": +"@jupyterlab/documentsearch@^4.1.6, @jupyterlab/documentsearch@workspace:packages/documentsearch": version: 0.0.0-use.local resolution: "@jupyterlab/documentsearch@workspace:packages/documentsearch" dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -2986,39 +2986,39 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/example-app@workspace:examples/app" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/application-extension": ^4.1.5 - "@jupyterlab/apputils-extension": ^4.1.5 - "@jupyterlab/builder": ^4.1.5 - "@jupyterlab/celltags-extension": ^4.1.5 - "@jupyterlab/codemirror-extension": ^4.1.5 - "@jupyterlab/completer-extension": ^4.1.5 - "@jupyterlab/console-extension": ^4.1.5 - "@jupyterlab/csvviewer-extension": ^4.1.5 - "@jupyterlab/docmanager-extension": ^4.1.5 - "@jupyterlab/filebrowser-extension": ^4.1.5 - "@jupyterlab/fileeditor-extension": ^4.1.5 - "@jupyterlab/help-extension": ^4.1.5 - "@jupyterlab/imageviewer-extension": ^4.1.5 - "@jupyterlab/inspector-extension": ^4.1.5 - "@jupyterlab/launcher-extension": ^4.1.5 - "@jupyterlab/mainmenu-extension": ^4.1.5 - "@jupyterlab/markdownviewer-extension": ^4.1.5 - "@jupyterlab/mathjax-extension": ^4.1.5 - "@jupyterlab/metadataform-extension": ^4.1.5 - "@jupyterlab/notebook-extension": ^4.1.5 - "@jupyterlab/rendermime-extension": ^4.1.5 - "@jupyterlab/running-extension": ^4.1.5 - "@jupyterlab/settingeditor-extension": ^4.1.5 - "@jupyterlab/shortcuts-extension": ^4.1.5 - "@jupyterlab/statusbar-extension": ^4.1.5 - "@jupyterlab/theme-dark-extension": ^4.1.5 - "@jupyterlab/theme-light-extension": ^4.1.5 - "@jupyterlab/toc-extension": ^6.1.5 - "@jupyterlab/tooltip-extension": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/translation-extension": ^4.1.5 - "@jupyterlab/ui-components-extension": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/application-extension": ^4.1.6 + "@jupyterlab/apputils-extension": ^4.1.6 + "@jupyterlab/builder": ^4.1.6 + "@jupyterlab/celltags-extension": ^4.1.6 + "@jupyterlab/codemirror-extension": ^4.1.6 + "@jupyterlab/completer-extension": ^4.1.6 + "@jupyterlab/console-extension": ^4.1.6 + "@jupyterlab/csvviewer-extension": ^4.1.6 + "@jupyterlab/docmanager-extension": ^4.1.6 + "@jupyterlab/filebrowser-extension": ^4.1.6 + "@jupyterlab/fileeditor-extension": ^4.1.6 + "@jupyterlab/help-extension": ^4.1.6 + "@jupyterlab/imageviewer-extension": ^4.1.6 + "@jupyterlab/inspector-extension": ^4.1.6 + "@jupyterlab/launcher-extension": ^4.1.6 + "@jupyterlab/mainmenu-extension": ^4.1.6 + "@jupyterlab/markdownviewer-extension": ^4.1.6 + "@jupyterlab/mathjax-extension": ^4.1.6 + "@jupyterlab/metadataform-extension": ^4.1.6 + "@jupyterlab/notebook-extension": ^4.1.6 + "@jupyterlab/rendermime-extension": ^4.1.6 + "@jupyterlab/running-extension": ^4.1.6 + "@jupyterlab/settingeditor-extension": ^4.1.6 + "@jupyterlab/shortcuts-extension": ^4.1.6 + "@jupyterlab/statusbar-extension": ^4.1.6 + "@jupyterlab/theme-dark-extension": ^4.1.6 + "@jupyterlab/theme-light-extension": ^4.1.6 + "@jupyterlab/toc-extension": ^6.1.6 + "@jupyterlab/tooltip-extension": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/translation-extension": ^4.1.6 + "@jupyterlab/ui-components-extension": ^4.1.6 css-loader: ^6.7.1 fs-extra: ^10.1.0 glob: ~7.1.6 @@ -3040,16 +3040,16 @@ __metadata: dependencies: "@jupyter/web-components": ^0.15.2 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/cells": ^4.1.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/completer": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/theme-light-extension": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/cells": ^4.1.6 + "@jupyterlab/codemirror": ^4.1.6 + "@jupyterlab/completer": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/theme-light-extension": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/commands": ^2.2.0 "@lumino/widgets": ^2.3.1 css-loader: ^6.7.1 @@ -3070,14 +3070,14 @@ __metadata: dependencies: "@jupyter/web-components": ^0.15.2 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/console": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/theme-light-extension": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/codemirror": ^4.1.6 + "@jupyterlab/console": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/theme-light-extension": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 "@lumino/commands": ^2.2.0 "@lumino/widgets": ^2.3.1 css-loader: ^6.7.1 @@ -3095,48 +3095,48 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/example-federated-core@workspace:examples/federated/core_package" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/application-extension": ^4.1.5 - "@jupyterlab/apputils-extension": ^4.1.5 - "@jupyterlab/builder": ^4.1.5 - "@jupyterlab/celltags-extension": ^4.1.5 - "@jupyterlab/codemirror-extension": ^4.1.5 - "@jupyterlab/completer-extension": ^4.1.5 - "@jupyterlab/console-extension": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/csvviewer-extension": ^4.1.5 - "@jupyterlab/debugger-extension": ^4.1.5 - "@jupyterlab/docmanager-extension": ^4.1.5 - "@jupyterlab/documentsearch-extension": ^4.1.5 - "@jupyterlab/extensionmanager-extension": ^4.1.5 - "@jupyterlab/filebrowser-extension": ^4.1.5 - "@jupyterlab/fileeditor-extension": ^4.1.5 - "@jupyterlab/help-extension": ^4.1.5 - "@jupyterlab/htmlviewer-extension": ^4.1.5 - "@jupyterlab/hub-extension": ^4.1.5 - "@jupyterlab/imageviewer-extension": ^4.1.5 - "@jupyterlab/inspector-extension": ^4.1.5 - "@jupyterlab/javascript-extension": ^4.1.5 - "@jupyterlab/json-extension": ^4.1.5 - "@jupyterlab/launcher-extension": ^4.1.5 - "@jupyterlab/logconsole-extension": ^4.1.5 - "@jupyterlab/lsp-extension": ^4.1.5 - "@jupyterlab/mainmenu-extension": ^4.1.5 - "@jupyterlab/mathjax-extension": ^4.1.5 - "@jupyterlab/metadataform-extension": ^4.1.5 - "@jupyterlab/notebook-extension": ^4.1.5 - "@jupyterlab/pdf-extension": ^4.1.5 - "@jupyterlab/rendermime-extension": ^4.1.5 - "@jupyterlab/settingeditor-extension": ^4.1.5 - "@jupyterlab/shortcuts-extension": ^4.1.5 - "@jupyterlab/statusbar-extension": ^4.1.5 - "@jupyterlab/theme-light-extension": ^4.1.5 - "@jupyterlab/toc-extension": ^6.1.5 - "@jupyterlab/tooltip-extension": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/translation-extension": ^4.1.5 - "@jupyterlab/ui-components-extension": ^4.1.5 - "@jupyterlab/vega5-extension": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/application-extension": ^4.1.6 + "@jupyterlab/apputils-extension": ^4.1.6 + "@jupyterlab/builder": ^4.1.6 + "@jupyterlab/celltags-extension": ^4.1.6 + "@jupyterlab/codemirror-extension": ^4.1.6 + "@jupyterlab/completer-extension": ^4.1.6 + "@jupyterlab/console-extension": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/csvviewer-extension": ^4.1.6 + "@jupyterlab/debugger-extension": ^4.1.6 + "@jupyterlab/docmanager-extension": ^4.1.6 + "@jupyterlab/documentsearch-extension": ^4.1.6 + "@jupyterlab/extensionmanager-extension": ^4.1.6 + "@jupyterlab/filebrowser-extension": ^4.1.6 + "@jupyterlab/fileeditor-extension": ^4.1.6 + "@jupyterlab/help-extension": ^4.1.6 + "@jupyterlab/htmlviewer-extension": ^4.1.6 + "@jupyterlab/hub-extension": ^4.1.6 + "@jupyterlab/imageviewer-extension": ^4.1.6 + "@jupyterlab/inspector-extension": ^4.1.6 + "@jupyterlab/javascript-extension": ^4.1.6 + "@jupyterlab/json-extension": ^4.1.6 + "@jupyterlab/launcher-extension": ^4.1.6 + "@jupyterlab/logconsole-extension": ^4.1.6 + "@jupyterlab/lsp-extension": ^4.1.6 + "@jupyterlab/mainmenu-extension": ^4.1.6 + "@jupyterlab/mathjax-extension": ^4.1.6 + "@jupyterlab/metadataform-extension": ^4.1.6 + "@jupyterlab/notebook-extension": ^4.1.6 + "@jupyterlab/pdf-extension": ^4.1.6 + "@jupyterlab/rendermime-extension": ^4.1.6 + "@jupyterlab/settingeditor-extension": ^4.1.6 + "@jupyterlab/shortcuts-extension": ^4.1.6 + "@jupyterlab/statusbar-extension": ^4.1.6 + "@jupyterlab/theme-light-extension": ^4.1.6 + "@jupyterlab/toc-extension": ^6.1.6 + "@jupyterlab/tooltip-extension": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/translation-extension": ^4.1.6 + "@jupyterlab/ui-components-extension": ^4.1.6 + "@jupyterlab/vega5-extension": ^4.1.6 copy-webpack-plugin: ^11.0.0 css-loader: ^6.7.1 fs-extra: ^10.1.0 @@ -3157,20 +3157,20 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/example-federated-md@workspace:examples/federated/md_package" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/builder": ^4.1.5 - "@jupyterlab/example-federated-middle": ^3.0.8 - "@jupyterlab/markdownviewer-extension": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/builder": ^4.1.6 + "@jupyterlab/example-federated-middle": ^3.0.9 + "@jupyterlab/markdownviewer-extension": ^4.1.6 "@lumino/widgets": ^2.3.1 rimraf: ~5.0.5 languageName: unknown linkType: soft -"@jupyterlab/example-federated-middle@^3.0.8, @jupyterlab/example-federated-middle@workspace:examples/federated/middle_package": +"@jupyterlab/example-federated-middle@^3.0.9, @jupyterlab/example-federated-middle@workspace:examples/federated/middle_package": version: 0.0.0-use.local resolution: "@jupyterlab/example-federated-middle@workspace:examples/federated/middle_package" dependencies: - "@jupyterlab/builder": ^4.1.5 + "@jupyterlab/builder": ^4.1.6 "@lumino/coreutils": ^2.1.2 rimraf: ~5.0.5 languageName: unknown @@ -3187,18 +3187,18 @@ __metadata: resolution: "@jupyterlab/example-filebrowser@workspace:examples/filebrowser" dependencies: "@jupyter/web-components": ^0.15.2 - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docmanager": ^4.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/filebrowser": ^4.1.5 - "@jupyterlab/fileeditor": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/theme-light-extension": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/codemirror": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docmanager": ^4.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/filebrowser": ^4.1.6 + "@jupyterlab/fileeditor": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/theme-light-extension": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/commands": ^2.2.0 "@lumino/widgets": ^2.3.1 css-loader: ^6.7.1 @@ -3219,22 +3219,22 @@ __metadata: dependencies: "@jupyter/web-components": ^0.15.2 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/completer": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docmanager": ^4.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/documentsearch": ^4.1.5 - "@jupyterlab/markedparser-extension": ^4.1.5 - "@jupyterlab/mathjax-extension": ^4.1.5 - "@jupyterlab/notebook": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/theme-light-extension": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/codemirror": ^4.1.6 + "@jupyterlab/completer": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docmanager": ^4.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/documentsearch": ^4.1.6 + "@jupyterlab/markedparser-extension": ^4.1.6 + "@jupyterlab/mathjax-extension": ^4.1.6 + "@jupyterlab/notebook": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/theme-light-extension": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/commands": ^2.2.0 "@lumino/widgets": ^2.3.1 css-loader: ^6.7.1 @@ -3253,8 +3253,8 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/example-services-browser@workspace:packages/services/examples/browser" dependencies: - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/services": ^7.1.5 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/services": ^7.1.6 "@lumino/coreutils": ^2.1.2 rimraf: ~5.0.5 typescript: ~5.1.6 @@ -3267,10 +3267,10 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/example-services-outputarea@workspace:packages/services/examples/typescript-browser-with-output" dependencies: - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/outputarea": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/services": ^7.1.5 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/outputarea": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/services": ^7.1.6 css-loader: ^6.7.1 rimraf: ~5.0.5 style-loader: ~3.3.1 @@ -3284,11 +3284,11 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/example-simple-list@workspace:packages/ui-components/examples/simple-windowed-list" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/theme-light-extension": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/theme-light-extension": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.1 css-loader: ^6.7.1 @@ -3307,11 +3307,11 @@ __metadata: resolution: "@jupyterlab/example-terminal@workspace:examples/terminal" dependencies: "@jupyter/web-components": ^0.15.2 - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/terminal": ^4.1.5 - "@jupyterlab/theme-light-extension": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/terminal": ^4.1.6 + "@jupyterlab/theme-light-extension": ^4.1.6 "@lumino/widgets": ^2.3.1 css-loader: ^6.7.1 mini-css-extract-plugin: ^2.7.0 @@ -3325,31 +3325,31 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/extensionmanager-extension@^4.1.5, @jupyterlab/extensionmanager-extension@workspace:packages/extensionmanager-extension, @jupyterlab/extensionmanager-extension@~4.1.5": +"@jupyterlab/extensionmanager-extension@^4.1.6, @jupyterlab/extensionmanager-extension@workspace:packages/extensionmanager-extension, @jupyterlab/extensionmanager-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/extensionmanager-extension@workspace:packages/extensionmanager-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/extensionmanager": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/extensionmanager": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 rimraf: ~5.0.5 typedoc: ~0.24.7 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/extensionmanager@^4.1.5, @jupyterlab/extensionmanager@workspace:packages/extensionmanager": +"@jupyterlab/extensionmanager@^4.1.6, @jupyterlab/extensionmanager@workspace:packages/extensionmanager": version: 0.0.0-use.local resolution: "@jupyterlab/extensionmanager@workspace:packages/extensionmanager" dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/messaging": ^2.0.1 "@lumino/polling": ^2.1.2 "@lumino/widgets": ^2.3.1 @@ -3366,22 +3366,22 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/filebrowser-extension@^4.1.5, @jupyterlab/filebrowser-extension@workspace:packages/filebrowser-extension, @jupyterlab/filebrowser-extension@~4.1.5": +"@jupyterlab/filebrowser-extension@^4.1.6, @jupyterlab/filebrowser-extension@workspace:packages/filebrowser-extension, @jupyterlab/filebrowser-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/filebrowser-extension@workspace:packages/filebrowser-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docmanager": ^4.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/filebrowser": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docmanager": ^4.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/filebrowser": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/statedb": ^4.1.6 + "@jupyterlab/statusbar": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/widgets": ^2.3.1 @@ -3391,20 +3391,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/filebrowser@^4.1.5, @jupyterlab/filebrowser@workspace:packages/filebrowser": +"@jupyterlab/filebrowser@^4.1.6, @jupyterlab/filebrowser@workspace:packages/filebrowser": version: 0.0.0-use.local resolution: "@jupyterlab/filebrowser@workspace:packages/filebrowser" dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docmanager": ^4.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docmanager": ^4.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/statedb": ^4.1.6 + "@jupyterlab/statusbar": ^4.1.6 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -3424,34 +3424,34 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/fileeditor-extension@^4.1.5, @jupyterlab/fileeditor-extension@workspace:packages/fileeditor-extension, @jupyterlab/fileeditor-extension@~4.1.5": +"@jupyterlab/fileeditor-extension@^4.1.6, @jupyterlab/fileeditor-extension@workspace:packages/fileeditor-extension, @jupyterlab/fileeditor-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/fileeditor-extension@workspace:packages/fileeditor-extension" dependencies: "@codemirror/commands": ^6.2.3 "@codemirror/search": ^6.3.0 - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/completer": ^4.1.5 - "@jupyterlab/console": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/documentsearch": ^4.1.5 - "@jupyterlab/filebrowser": ^4.1.5 - "@jupyterlab/fileeditor": ^4.1.5 - "@jupyterlab/launcher": ^4.1.5 - "@jupyterlab/lsp": ^4.1.5 - "@jupyterlab/mainmenu": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/toc": ^6.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/codemirror": ^4.1.6 + "@jupyterlab/completer": ^4.1.6 + "@jupyterlab/console": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/documentsearch": ^4.1.6 + "@jupyterlab/filebrowser": ^4.1.6 + "@jupyterlab/fileeditor": ^4.1.6 + "@jupyterlab/launcher": ^4.1.6 + "@jupyterlab/lsp": ^4.1.6 + "@jupyterlab/mainmenu": ^4.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/statusbar": ^4.1.6 + "@jupyterlab/toc": ^6.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -3462,23 +3462,23 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/fileeditor@^4.1.5, @jupyterlab/fileeditor@workspace:packages/fileeditor": +"@jupyterlab/fileeditor@^4.1.6, @jupyterlab/fileeditor@workspace:packages/fileeditor": version: 0.0.0-use.local resolution: "@jupyterlab/fileeditor@workspace:packages/fileeditor" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/documentsearch": ^4.1.5 - "@jupyterlab/lsp": ^4.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/toc": ^6.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/codemirror": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/documentsearch": ^4.1.6 + "@jupyterlab/lsp": ^4.1.6 + "@jupyterlab/statusbar": ^4.1.6 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/toc": ^6.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 @@ -3497,15 +3497,15 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/galata-extension@workspace:galata/extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/builder": ^4.1.5 - "@jupyterlab/cells": ^4.1.5 - "@jupyterlab/debugger": ^4.1.5 - "@jupyterlab/docmanager": ^4.1.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/notebook": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/builder": ^4.1.6 + "@jupyterlab/cells": ^4.1.6 + "@jupyterlab/debugger": ^4.1.6 + "@jupyterlab/docmanager": ^4.1.6 + "@jupyterlab/nbformat": ^4.1.6 + "@jupyterlab/notebook": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 @@ -3518,15 +3518,15 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/galata@workspace:galata" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/debugger": ^4.1.5 - "@jupyterlab/docmanager": ^4.1.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/notebook": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/settingregistry": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/debugger": ^4.1.6 + "@jupyterlab/docmanager": ^4.1.6 + "@jupyterlab/nbformat": ^4.1.6 + "@jupyterlab/notebook": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/settingregistry": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@playwright/test": ^1.32.2 "@stdlib/stats": ~0.0.13 @@ -3542,17 +3542,17 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/help-extension@^4.1.5, @jupyterlab/help-extension@workspace:packages/help-extension, @jupyterlab/help-extension@~4.1.5": +"@jupyterlab/help-extension@^4.1.6, @jupyterlab/help-extension@workspace:packages/help-extension, @jupyterlab/help-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/help-extension@workspace:packages/help-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/mainmenu": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/mainmenu": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/virtualdom": ^2.0.1 @@ -3564,32 +3564,32 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/htmlviewer-extension@^4.1.5, @jupyterlab/htmlviewer-extension@workspace:packages/htmlviewer-extension, @jupyterlab/htmlviewer-extension@~4.1.5": +"@jupyterlab/htmlviewer-extension@^4.1.6, @jupyterlab/htmlviewer-extension@workspace:packages/htmlviewer-extension, @jupyterlab/htmlviewer-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/htmlviewer-extension@workspace:packages/htmlviewer-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/htmlviewer": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/htmlviewer": ^4.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/htmlviewer@^4.1.5, @jupyterlab/htmlviewer@workspace:packages/htmlviewer": +"@jupyterlab/htmlviewer@^4.1.6, @jupyterlab/htmlviewer@workspace:packages/htmlviewer": version: 0.0.0-use.local resolution: "@jupyterlab/htmlviewer@workspace:packages/htmlviewer" dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 @@ -3599,43 +3599,43 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/hub-extension@^4.1.5, @jupyterlab/hub-extension@workspace:packages/hub-extension, @jupyterlab/hub-extension@~4.1.5": +"@jupyterlab/hub-extension@^4.1.6, @jupyterlab/hub-extension@workspace:packages/hub-extension, @jupyterlab/hub-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/hub-extension@workspace:packages/hub-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/translation": ^4.1.6 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/imageviewer-extension@^4.1.5, @jupyterlab/imageviewer-extension@workspace:packages/imageviewer-extension, @jupyterlab/imageviewer-extension@~4.1.5": +"@jupyterlab/imageviewer-extension@^4.1.6, @jupyterlab/imageviewer-extension@workspace:packages/imageviewer-extension, @jupyterlab/imageviewer-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/imageviewer-extension@workspace:packages/imageviewer-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/imageviewer": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/imageviewer": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 rimraf: ~5.0.5 typedoc: ~0.24.7 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/imageviewer@^4.1.5, @jupyterlab/imageviewer@workspace:packages/imageviewer": +"@jupyterlab/imageviewer@^4.1.6, @jupyterlab/imageviewer@workspace:packages/imageviewer": version: 0.0.0-use.local resolution: "@jupyterlab/imageviewer@workspace:packages/imageviewer" dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/testing": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/testing": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.1 @@ -3647,18 +3647,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/inspector-extension@^4.1.5, @jupyterlab/inspector-extension@workspace:packages/inspector-extension, @jupyterlab/inspector-extension@~4.1.5": +"@jupyterlab/inspector-extension@^4.1.6, @jupyterlab/inspector-extension@workspace:packages/inspector-extension, @jupyterlab/inspector-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/inspector-extension@workspace:packages/inspector-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/console": ^4.1.5 - "@jupyterlab/inspector": ^4.1.5 - "@jupyterlab/launcher": ^4.1.5 - "@jupyterlab/notebook": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/console": ^4.1.6 + "@jupyterlab/inspector": ^4.1.6 + "@jupyterlab/launcher": ^4.1.6 + "@jupyterlab/notebook": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/widgets": ^2.3.1 rimraf: ~5.0.5 typedoc: ~0.24.7 @@ -3666,18 +3666,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/inspector@^4.1.5, @jupyterlab/inspector@workspace:packages/inspector": +"@jupyterlab/inspector@^4.1.6, @jupyterlab/inspector@workspace:packages/inspector": version: 0.0.0-use.local resolution: "@jupyterlab/inspector@workspace:packages/inspector" dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/statedb": ^4.1.6 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/polling": ^2.1.2 @@ -3691,27 +3691,27 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/javascript-extension@^4.1.5, @jupyterlab/javascript-extension@workspace:packages/javascript-extension, @jupyterlab/javascript-extension@~4.1.5": +"@jupyterlab/javascript-extension@^4.1.6, @jupyterlab/javascript-extension@workspace:packages/javascript-extension, @jupyterlab/javascript-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/javascript-extension@workspace:packages/javascript-extension" dependencies: - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 rimraf: ~5.0.5 typedoc: ~0.24.7 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/json-extension@^4.1.5, @jupyterlab/json-extension@workspace:packages/json-extension, @jupyterlab/json-extension@~4.1.5": +"@jupyterlab/json-extension@^4.1.6, @jupyterlab/json-extension@workspace:packages/json-extension, @jupyterlab/json-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/json-extension@workspace:packages/json-extension" dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/codemirror": ^4.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lezer/highlight": ^1.1.4 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 @@ -3730,16 +3730,16 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/launcher-extension@^4.1.5, @jupyterlab/launcher-extension@workspace:packages/launcher-extension, @jupyterlab/launcher-extension@~4.1.5": +"@jupyterlab/launcher-extension@^4.1.6, @jupyterlab/launcher-extension@workspace:packages/launcher-extension, @jupyterlab/launcher-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/launcher-extension@workspace:packages/launcher-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/filebrowser": ^4.1.5 - "@jupyterlab/launcher": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/filebrowser": ^4.1.6 + "@jupyterlab/launcher": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 @@ -3749,13 +3749,13 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/launcher@^4.1.5, @jupyterlab/launcher@workspace:packages/launcher": +"@jupyterlab/launcher@^4.1.6, @jupyterlab/launcher@workspace:packages/launcher": version: 0.0.0-use.local resolution: "@jupyterlab/launcher@workspace:packages/launcher" dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -3770,19 +3770,19 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/logconsole-extension@^4.1.5, @jupyterlab/logconsole-extension@workspace:packages/logconsole-extension, @jupyterlab/logconsole-extension@~4.1.5": +"@jupyterlab/logconsole-extension@^4.1.6, @jupyterlab/logconsole-extension@workspace:packages/logconsole-extension, @jupyterlab/logconsole-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/logconsole-extension@workspace:packages/logconsole-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/logconsole": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/logconsole": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/statusbar": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 @@ -3792,17 +3792,17 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/logconsole@^4.1.5, @jupyterlab/logconsole@workspace:packages/logconsole": +"@jupyterlab/logconsole@^4.1.6, @jupyterlab/logconsole@workspace:packages/logconsole": version: 0.0.0-use.local resolution: "@jupyterlab/logconsole@workspace:packages/logconsole" dependencies: - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/outputarea": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/nbformat": ^4.1.6 + "@jupyterlab/outputarea": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 @@ -3815,17 +3815,17 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/lsp-extension@^4.1.5, @jupyterlab/lsp-extension@workspace:packages/lsp-extension, @jupyterlab/lsp-extension@~4.1.5": +"@jupyterlab/lsp-extension@^4.1.6, @jupyterlab/lsp-extension@workspace:packages/lsp-extension, @jupyterlab/lsp-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/lsp-extension@workspace:packages/lsp-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/lsp": ^4.1.5 - "@jupyterlab/running": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/lsp": ^4.1.6 + "@jupyterlab/running": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/polling": ^2.1.2 "@lumino/signaling": ^2.1.2 @@ -3836,18 +3836,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/lsp@^4.1.5, @jupyterlab/lsp@workspace:packages/lsp": +"@jupyterlab/lsp@^4.1.6, @jupyterlab/lsp@workspace:packages/lsp": version: 0.0.0-use.local resolution: "@jupyterlab/lsp@workspace:packages/lsp" dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/codemirror": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 @@ -3865,18 +3865,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/mainmenu-extension@^4.1.5, @jupyterlab/mainmenu-extension@workspace:packages/mainmenu-extension, @jupyterlab/mainmenu-extension@~4.1.5": +"@jupyterlab/mainmenu-extension@^4.1.6, @jupyterlab/mainmenu-extension@workspace:packages/mainmenu-extension, @jupyterlab/mainmenu-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/mainmenu-extension@workspace:packages/mainmenu-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/mainmenu": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/mainmenu": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -3887,14 +3887,14 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/mainmenu@^4.1.5, @jupyterlab/mainmenu@workspace:packages/mainmenu": +"@jupyterlab/mainmenu@^4.1.6, @jupyterlab/mainmenu@workspace:packages/mainmenu": version: 0.0.0-use.local resolution: "@jupyterlab/mainmenu@workspace:packages/mainmenu" dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -3907,34 +3907,34 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/markdownviewer-extension@^4.1.5, @jupyterlab/markdownviewer-extension@workspace:packages/markdownviewer-extension, @jupyterlab/markdownviewer-extension@~4.1.5": +"@jupyterlab/markdownviewer-extension@^4.1.6, @jupyterlab/markdownviewer-extension@workspace:packages/markdownviewer-extension, @jupyterlab/markdownviewer-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/markdownviewer-extension@workspace:packages/markdownviewer-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/markdownviewer": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/toc": ^6.1.5 - "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/markdownviewer": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/toc": ^6.1.6 + "@jupyterlab/translation": ^4.1.6 rimraf: ~5.0.5 typedoc: ~0.24.7 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/markdownviewer@^4.1.5, @jupyterlab/markdownviewer@workspace:packages/markdownviewer": +"@jupyterlab/markdownviewer@^4.1.6, @jupyterlab/markdownviewer@workspace:packages/markdownviewer": version: 0.0.0-use.local resolution: "@jupyterlab/markdownviewer@workspace:packages/markdownviewer" dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/toc": ^6.1.5 - "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/toc": ^6.1.6 + "@jupyterlab/translation": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 @@ -3945,15 +3945,15 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/markedparser-extension@^4.1.5, @jupyterlab/markedparser-extension@workspace:packages/markedparser-extension, @jupyterlab/markedparser-extension@~4.1.5": +"@jupyterlab/markedparser-extension@^4.1.6, @jupyterlab/markedparser-extension@workspace:packages/markedparser-extension, @jupyterlab/markedparser-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/markedparser-extension@workspace:packages/markedparser-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/mermaid": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/codemirror": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/mermaid": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@types/d3": ^7.4.0 "@types/dompurify": ^2.4.0 @@ -3966,12 +3966,12 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/mathjax-extension@^4.1.5, @jupyterlab/mathjax-extension@workspace:packages/mathjax-extension, @jupyterlab/mathjax-extension@~4.1.5": +"@jupyterlab/mathjax-extension@^4.1.6, @jupyterlab/mathjax-extension@workspace:packages/mathjax-extension, @jupyterlab/mathjax-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/mathjax-extension@workspace:packages/mathjax-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 "@lumino/coreutils": ^2.1.2 mathjax-full: ^3.2.2 rimraf: ~5.0.5 @@ -3980,28 +3980,28 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/mermaid-extension@^4.1.5, @jupyterlab/mermaid-extension@workspace:packages/mermaid-extension, @jupyterlab/mermaid-extension@~4.1.5": +"@jupyterlab/mermaid-extension@^4.1.6, @jupyterlab/mermaid-extension@workspace:packages/mermaid-extension, @jupyterlab/mermaid-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/mermaid-extension@workspace:packages/mermaid-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/mermaid": ^4.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/mermaid": ^4.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/translation": ^4.1.6 rimraf: ~5.0.5 typedoc: ~0.24.7 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/mermaid@^4.1.5, @jupyterlab/mermaid@workspace:packages/mermaid": +"@jupyterlab/mermaid@^4.1.6, @jupyterlab/mermaid@workspace:packages/mermaid": version: 0.0.0-use.local resolution: "@jupyterlab/mermaid@workspace:packages/mermaid" dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 "@types/jest": ^29.2.0 @@ -4013,33 +4013,33 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/metadataform-extension@^4.1.5, @jupyterlab/metadataform-extension@workspace:packages/metadataform-extension, @jupyterlab/metadataform-extension@~4.1.5": +"@jupyterlab/metadataform-extension@^4.1.6, @jupyterlab/metadataform-extension@workspace:packages/metadataform-extension, @jupyterlab/metadataform-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/metadataform-extension@workspace:packages/metadataform-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/metadataform": ^4.1.5 - "@jupyterlab/notebook": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/metadataform": ^4.1.6 + "@jupyterlab/notebook": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/metadataform@^4.1.5, @jupyterlab/metadataform@workspace:packages/metadataform": +"@jupyterlab/metadataform@^4.1.6, @jupyterlab/metadataform@workspace:packages/metadataform": version: 0.0.0-use.local resolution: "@jupyterlab/metadataform@workspace:packages/metadataform" dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/notebook": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/nbformat": ^4.1.6 + "@jupyterlab/notebook": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.1 @@ -4060,101 +4060,101 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/metapackage@workspace:packages/metapackage" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/application-extension": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/apputils-extension": ^4.1.5 - "@jupyterlab/attachments": ^4.1.5 - "@jupyterlab/cell-toolbar": ^4.1.5 - "@jupyterlab/cell-toolbar-extension": ^4.1.5 - "@jupyterlab/cells": ^4.1.5 - "@jupyterlab/celltags-extension": ^4.1.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/codemirror-extension": ^4.1.5 - "@jupyterlab/completer": ^4.1.5 - "@jupyterlab/completer-extension": ^4.1.5 - "@jupyterlab/console": ^4.1.5 - "@jupyterlab/console-extension": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/csvviewer": ^4.1.5 - "@jupyterlab/csvviewer-extension": ^4.1.5 - "@jupyterlab/debugger": ^4.1.5 - "@jupyterlab/debugger-extension": ^4.1.5 - "@jupyterlab/docmanager": ^4.1.5 - "@jupyterlab/docmanager-extension": ^4.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/documentsearch": ^4.1.5 - "@jupyterlab/documentsearch-extension": ^4.1.5 - "@jupyterlab/extensionmanager": ^4.1.5 - "@jupyterlab/extensionmanager-extension": ^4.1.5 - "@jupyterlab/filebrowser": ^4.1.5 - "@jupyterlab/filebrowser-extension": ^4.1.5 - "@jupyterlab/fileeditor": ^4.1.5 - "@jupyterlab/fileeditor-extension": ^4.1.5 - "@jupyterlab/help-extension": ^4.1.5 - "@jupyterlab/htmlviewer": ^4.1.5 - "@jupyterlab/htmlviewer-extension": ^4.1.5 - "@jupyterlab/hub-extension": ^4.1.5 - "@jupyterlab/imageviewer": ^4.1.5 - "@jupyterlab/imageviewer-extension": ^4.1.5 - "@jupyterlab/inspector": ^4.1.5 - "@jupyterlab/inspector-extension": ^4.1.5 - "@jupyterlab/javascript-extension": ^4.1.5 - "@jupyterlab/json-extension": ^4.1.5 - "@jupyterlab/launcher": ^4.1.5 - "@jupyterlab/launcher-extension": ^4.1.5 - "@jupyterlab/logconsole": ^4.1.5 - "@jupyterlab/logconsole-extension": ^4.1.5 - "@jupyterlab/lsp": ^4.1.5 - "@jupyterlab/lsp-extension": ^4.1.5 - "@jupyterlab/mainmenu": ^4.1.5 - "@jupyterlab/mainmenu-extension": ^4.1.5 - "@jupyterlab/markdownviewer": ^4.1.5 - "@jupyterlab/markdownviewer-extension": ^4.1.5 - "@jupyterlab/markedparser-extension": ^4.1.5 - "@jupyterlab/mathjax-extension": ^4.1.5 - "@jupyterlab/mermaid": ^4.1.5 - "@jupyterlab/mermaid-extension": ^4.1.5 - "@jupyterlab/metadataform": ^4.1.5 - "@jupyterlab/metadataform-extension": ^4.1.5 - "@jupyterlab/nbconvert-css": ^4.1.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/notebook": ^4.1.5 - "@jupyterlab/notebook-extension": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/outputarea": ^4.1.5 - "@jupyterlab/pdf-extension": ^4.1.5 - "@jupyterlab/pluginmanager": ^4.1.5 - "@jupyterlab/pluginmanager-extension": ^4.1.5 - "@jupyterlab/property-inspector": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/rendermime-extension": ^4.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/running": ^4.1.5 - "@jupyterlab/running-extension": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/settingeditor": ^4.1.5 - "@jupyterlab/settingeditor-extension": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/shortcuts-extension": ^4.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/statusbar-extension": ^4.1.5 - "@jupyterlab/terminal": ^4.1.5 - "@jupyterlab/terminal-extension": ^4.1.5 - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/theme-dark-extension": ^4.1.5 - "@jupyterlab/theme-light-extension": ^4.1.5 - "@jupyterlab/toc": ^6.1.5 - "@jupyterlab/toc-extension": ^6.1.5 - "@jupyterlab/tooltip": ^4.1.5 - "@jupyterlab/tooltip-extension": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/translation-extension": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 - "@jupyterlab/ui-components-extension": ^4.1.5 - "@jupyterlab/vega5-extension": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/application-extension": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/apputils-extension": ^4.1.6 + "@jupyterlab/attachments": ^4.1.6 + "@jupyterlab/cell-toolbar": ^4.1.6 + "@jupyterlab/cell-toolbar-extension": ^4.1.6 + "@jupyterlab/cells": ^4.1.6 + "@jupyterlab/celltags-extension": ^4.1.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/codemirror": ^4.1.6 + "@jupyterlab/codemirror-extension": ^4.1.6 + "@jupyterlab/completer": ^4.1.6 + "@jupyterlab/completer-extension": ^4.1.6 + "@jupyterlab/console": ^4.1.6 + "@jupyterlab/console-extension": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/csvviewer": ^4.1.6 + "@jupyterlab/csvviewer-extension": ^4.1.6 + "@jupyterlab/debugger": ^4.1.6 + "@jupyterlab/debugger-extension": ^4.1.6 + "@jupyterlab/docmanager": ^4.1.6 + "@jupyterlab/docmanager-extension": ^4.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/documentsearch": ^4.1.6 + "@jupyterlab/documentsearch-extension": ^4.1.6 + "@jupyterlab/extensionmanager": ^4.1.6 + "@jupyterlab/extensionmanager-extension": ^4.1.6 + "@jupyterlab/filebrowser": ^4.1.6 + "@jupyterlab/filebrowser-extension": ^4.1.6 + "@jupyterlab/fileeditor": ^4.1.6 + "@jupyterlab/fileeditor-extension": ^4.1.6 + "@jupyterlab/help-extension": ^4.1.6 + "@jupyterlab/htmlviewer": ^4.1.6 + "@jupyterlab/htmlviewer-extension": ^4.1.6 + "@jupyterlab/hub-extension": ^4.1.6 + "@jupyterlab/imageviewer": ^4.1.6 + "@jupyterlab/imageviewer-extension": ^4.1.6 + "@jupyterlab/inspector": ^4.1.6 + "@jupyterlab/inspector-extension": ^4.1.6 + "@jupyterlab/javascript-extension": ^4.1.6 + "@jupyterlab/json-extension": ^4.1.6 + "@jupyterlab/launcher": ^4.1.6 + "@jupyterlab/launcher-extension": ^4.1.6 + "@jupyterlab/logconsole": ^4.1.6 + "@jupyterlab/logconsole-extension": ^4.1.6 + "@jupyterlab/lsp": ^4.1.6 + "@jupyterlab/lsp-extension": ^4.1.6 + "@jupyterlab/mainmenu": ^4.1.6 + "@jupyterlab/mainmenu-extension": ^4.1.6 + "@jupyterlab/markdownviewer": ^4.1.6 + "@jupyterlab/markdownviewer-extension": ^4.1.6 + "@jupyterlab/markedparser-extension": ^4.1.6 + "@jupyterlab/mathjax-extension": ^4.1.6 + "@jupyterlab/mermaid": ^4.1.6 + "@jupyterlab/mermaid-extension": ^4.1.6 + "@jupyterlab/metadataform": ^4.1.6 + "@jupyterlab/metadataform-extension": ^4.1.6 + "@jupyterlab/nbconvert-css": ^4.1.6 + "@jupyterlab/nbformat": ^4.1.6 + "@jupyterlab/notebook": ^4.1.6 + "@jupyterlab/notebook-extension": ^4.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/outputarea": ^4.1.6 + "@jupyterlab/pdf-extension": ^4.1.6 + "@jupyterlab/pluginmanager": ^4.1.6 + "@jupyterlab/pluginmanager-extension": ^4.1.6 + "@jupyterlab/property-inspector": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/rendermime-extension": ^4.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/running": ^4.1.6 + "@jupyterlab/running-extension": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/settingeditor": ^4.1.6 + "@jupyterlab/settingeditor-extension": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/shortcuts-extension": ^4.1.6 + "@jupyterlab/statedb": ^4.1.6 + "@jupyterlab/statusbar": ^4.1.6 + "@jupyterlab/statusbar-extension": ^4.1.6 + "@jupyterlab/terminal": ^4.1.6 + "@jupyterlab/terminal-extension": ^4.1.6 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/theme-dark-extension": ^4.1.6 + "@jupyterlab/theme-light-extension": ^4.1.6 + "@jupyterlab/toc": ^6.1.6 + "@jupyterlab/toc-extension": ^6.1.6 + "@jupyterlab/tooltip": ^4.1.6 + "@jupyterlab/tooltip-extension": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/translation-extension": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/ui-components-extension": ^4.1.6 + "@jupyterlab/vega5-extension": ^4.1.6 "@types/jest": ^29.2.0 fs-extra: ^10.1.0 jest: ^29.2.0 @@ -4169,8 +4169,8 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/mock-consumer@workspace:jupyterlab/tests/mock_packages/interop/consumer" dependencies: - "@jupyterlab/builder": ^4.1.5 - "@jupyterlab/mock-token": ^4.1.5 + "@jupyterlab/builder": ^4.1.6 + "@jupyterlab/mock-token": ^4.1.6 languageName: unknown linkType: soft @@ -4178,8 +4178,8 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/mock-extension@workspace:jupyterlab/tests/mock_packages/extension" dependencies: - "@jupyterlab/builder": ^4.1.5 - "@jupyterlab/launcher": ^4.1.5 + "@jupyterlab/builder": ^4.1.6 + "@jupyterlab/launcher": ^4.1.6 languageName: unknown linkType: soft @@ -4187,12 +4187,12 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/mock-provider@workspace:jupyterlab/tests/mock_packages/interop/provider" dependencies: - "@jupyterlab/builder": ^4.1.5 - "@jupyterlab/mock-token": ^4.1.5 + "@jupyterlab/builder": ^4.1.6 + "@jupyterlab/mock-token": ^4.1.6 languageName: unknown linkType: soft -"@jupyterlab/mock-token@^4.1.5, @jupyterlab/mock-token@workspace:jupyterlab/tests/mock_packages/interop/token": +"@jupyterlab/mock-token@^4.1.6, @jupyterlab/mock-token@workspace:jupyterlab/tests/mock_packages/interop/token": version: 0.0.0-use.local resolution: "@jupyterlab/mock-token@workspace:jupyterlab/tests/mock_packages/interop/token" dependencies: @@ -4200,17 +4200,17 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/nbconvert-css@^4.1.5, @jupyterlab/nbconvert-css@workspace:packages/nbconvert-css": +"@jupyterlab/nbconvert-css@^4.1.6, @jupyterlab/nbconvert-css@workspace:packages/nbconvert-css": version: 0.0.0-use.local resolution: "@jupyterlab/nbconvert-css@workspace:packages/nbconvert-css" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/cells": ^4.1.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/notebook": ^4.1.5 - "@jupyterlab/outputarea": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/cells": ^4.1.6 + "@jupyterlab/codemirror": ^4.1.6 + "@jupyterlab/notebook": ^4.1.6 + "@jupyterlab/outputarea": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 css-loader: ^6.7.1 mini-css-extract-plugin: ^2.7.0 null-loader: ^4.0.0 @@ -4220,11 +4220,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/nbformat@^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@^4.1.5, @jupyterlab/nbformat@workspace:packages/nbformat": +"@jupyterlab/nbformat@^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@^4.1.6, @jupyterlab/nbformat@workspace:packages/nbformat": version: 0.0.0-use.local resolution: "@jupyterlab/nbformat@workspace:packages/nbformat" dependencies: - "@jupyterlab/testing": ^4.1.5 + "@jupyterlab/testing": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@types/jest": ^29.2.0 jest: ^29.2.0 @@ -4233,40 +4233,40 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/notebook-extension@^4.1.5, @jupyterlab/notebook-extension@workspace:packages/notebook-extension, @jupyterlab/notebook-extension@~4.1.5": +"@jupyterlab/notebook-extension@^4.1.6, @jupyterlab/notebook-extension@workspace:packages/notebook-extension, @jupyterlab/notebook-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/notebook-extension@workspace:packages/notebook-extension" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/cells": ^4.1.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/completer": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docmanager": ^4.1.5 - "@jupyterlab/docmanager-extension": ^4.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/documentsearch": ^4.1.5 - "@jupyterlab/filebrowser": ^4.1.5 - "@jupyterlab/launcher": ^4.1.5 - "@jupyterlab/logconsole": ^4.1.5 - "@jupyterlab/lsp": ^4.1.5 - "@jupyterlab/mainmenu": ^4.1.5 - "@jupyterlab/metadataform": ^4.1.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/notebook": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/property-inspector": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/toc": ^6.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/cells": ^4.1.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/codemirror": ^4.1.6 + "@jupyterlab/completer": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docmanager": ^4.1.6 + "@jupyterlab/docmanager-extension": ^4.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/documentsearch": ^4.1.6 + "@jupyterlab/filebrowser": ^4.1.6 + "@jupyterlab/launcher": ^4.1.6 + "@jupyterlab/logconsole": ^4.1.6 + "@jupyterlab/lsp": ^4.1.6 + "@jupyterlab/mainmenu": ^4.1.6 + "@jupyterlab/metadataform": ^4.1.6 + "@jupyterlab/nbformat": ^4.1.6 + "@jupyterlab/notebook": ^4.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/property-inspector": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/statedb": ^4.1.6 + "@jupyterlab/statusbar": ^4.1.6 + "@jupyterlab/toc": ^6.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -4282,29 +4282,29 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/notebook@^4.1.5, @jupyterlab/notebook@workspace:packages/notebook": +"@jupyterlab/notebook@^4.1.6, @jupyterlab/notebook@workspace:packages/notebook": version: 0.0.0-use.local resolution: "@jupyterlab/notebook@workspace:packages/notebook" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/cells": ^4.1.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/codemirror": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/documentsearch": ^4.1.5 - "@jupyterlab/lsp": ^4.1.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/toc": ^6.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/cells": ^4.1.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/codemirror": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/documentsearch": ^4.1.6 + "@jupyterlab/lsp": ^4.1.6 + "@jupyterlab/nbformat": ^4.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/statusbar": ^4.1.6 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/toc": ^6.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -4324,11 +4324,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/observables@^5.1.5, @jupyterlab/observables@workspace:packages/observables": +"@jupyterlab/observables@^5.1.6, @jupyterlab/observables@workspace:packages/observables": version: 0.0.0-use.local resolution: "@jupyterlab/observables@workspace:packages/observables" dependencies: - "@jupyterlab/testing": ^4.1.5 + "@jupyterlab/testing": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -4342,18 +4342,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/outputarea@^4.1.5, @jupyterlab/outputarea@workspace:packages/outputarea": +"@jupyterlab/outputarea@^4.1.6, @jupyterlab/outputarea@workspace:packages/outputarea": version: 0.0.0-use.local resolution: "@jupyterlab/outputarea@workspace:packages/outputarea" dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/nbformat": ^4.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -4369,11 +4369,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/pdf-extension@^4.1.5, @jupyterlab/pdf-extension@workspace:packages/pdf-extension, @jupyterlab/pdf-extension@~4.1.5": +"@jupyterlab/pdf-extension@^4.1.6, @jupyterlab/pdf-extension@workspace:packages/pdf-extension, @jupyterlab/pdf-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/pdf-extension@workspace:packages/pdf-extension" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.9.5 + "@jupyterlab/rendermime-interfaces": ^3.9.6 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/widgets": ^2.3.1 @@ -4383,32 +4383,32 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/pluginmanager-extension@^4.1.5, @jupyterlab/pluginmanager-extension@workspace:packages/pluginmanager-extension, @jupyterlab/pluginmanager-extension@~4.1.5": +"@jupyterlab/pluginmanager-extension@^4.1.6, @jupyterlab/pluginmanager-extension@workspace:packages/pluginmanager-extension, @jupyterlab/pluginmanager-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/pluginmanager-extension@workspace:packages/pluginmanager-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/pluginmanager": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/pluginmanager": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/pluginmanager@^4.1.5, @jupyterlab/pluginmanager@workspace:packages/pluginmanager": +"@jupyterlab/pluginmanager@^4.1.6, @jupyterlab/pluginmanager@workspace:packages/pluginmanager": version: 0.0.0-use.local resolution: "@jupyterlab/pluginmanager@workspace:packages/pluginmanager" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 @@ -4420,13 +4420,13 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/property-inspector@^4.1.5, @jupyterlab/property-inspector@workspace:packages/property-inspector": +"@jupyterlab/property-inspector@^4.1.6, @jupyterlab/property-inspector@workspace:packages/property-inspector": version: 0.0.0-use.local resolution: "@jupyterlab/property-inspector@workspace:packages/property-inspector" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 @@ -4438,22 +4438,22 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/rendermime-extension@^4.1.5, @jupyterlab/rendermime-extension@workspace:packages/rendermime-extension, @jupyterlab/rendermime-extension@~4.1.5": +"@jupyterlab/rendermime-extension@^4.1.6, @jupyterlab/rendermime-extension@workspace:packages/rendermime-extension, @jupyterlab/rendermime-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/rendermime-extension@workspace:packages/rendermime-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/docmanager": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/docmanager": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 rimraf: ~5.0.5 typedoc: ~0.24.7 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/rendermime-interfaces@^3.9.5, @jupyterlab/rendermime-interfaces@workspace:packages/rendermime-interfaces": +"@jupyterlab/rendermime-interfaces@^3.9.6, @jupyterlab/rendermime-interfaces@workspace:packages/rendermime-interfaces": version: 0.0.0-use.local resolution: "@jupyterlab/rendermime-interfaces@workspace:packages/rendermime-interfaces" dependencies: @@ -4465,18 +4465,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/rendermime@^4.1.5, @jupyterlab/rendermime@workspace:packages/rendermime": +"@jupyterlab/rendermime@^4.1.6, @jupyterlab/rendermime@workspace:packages/rendermime": version: 0.0.0-use.local resolution: "@jupyterlab/rendermime@workspace:packages/rendermime" dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/nbformat": ^4.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 @@ -4516,18 +4516,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/running-extension@^4.1.5, @jupyterlab/running-extension@workspace:packages/running-extension, @jupyterlab/running-extension@~4.1.5": +"@jupyterlab/running-extension@^4.1.6, @jupyterlab/running-extension@workspace:packages/running-extension, @jupyterlab/running-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/running-extension@workspace:packages/running-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/running": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/running": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/commands": ^2.2.0 "@lumino/polling": ^2.1.2 "@lumino/signaling": ^2.1.2 @@ -4538,13 +4538,13 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/running@^4.1.5, @jupyterlab/running@workspace:packages/running": +"@jupyterlab/running@^4.1.6, @jupyterlab/running@workspace:packages/running": version: 0.0.0-use.local resolution: "@jupyterlab/running@workspace:packages/running" dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 @@ -4557,16 +4557,16 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/services@^7.1.5, @jupyterlab/services@workspace:packages/services": +"@jupyterlab/services@^7.1.6, @jupyterlab/services@workspace:packages/services": version: 0.0.0-use.local resolution: "@jupyterlab/services@workspace:packages/services" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@jupyterlab/testing": ^4.1.5 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/nbformat": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/statedb": ^4.1.6 + "@jupyterlab/testing": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/polling": ^2.1.2 @@ -4584,20 +4584,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/settingeditor-extension@^4.1.5, @jupyterlab/settingeditor-extension@workspace:packages/settingeditor-extension, @jupyterlab/settingeditor-extension@~4.1.5": +"@jupyterlab/settingeditor-extension@^4.1.6, @jupyterlab/settingeditor-extension@workspace:packages/settingeditor-extension, @jupyterlab/settingeditor-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/settingeditor-extension@workspace:packages/settingeditor-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/pluginmanager": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/settingeditor": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/pluginmanager": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/settingeditor": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/statedb": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/disposable": ^2.1.2 rimraf: ~5.0.5 typedoc: ~0.24.7 @@ -4605,20 +4605,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/settingeditor@^4.1.5, @jupyterlab/settingeditor@workspace:packages/settingeditor": +"@jupyterlab/settingeditor@^4.1.6, @jupyterlab/settingeditor@workspace:packages/settingeditor": version: 0.0.0-use.local resolution: "@jupyterlab/settingeditor@workspace:packages/settingeditor" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/inspector": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/inspector": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/statedb": ^4.1.6 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -4644,13 +4644,13 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/settingregistry@^4.1.5, @jupyterlab/settingregistry@workspace:packages/settingregistry": +"@jupyterlab/settingregistry@^4.1.6, @jupyterlab/settingregistry@workspace:packages/settingregistry": version: 0.0.0-use.local resolution: "@jupyterlab/settingregistry@workspace:packages/settingregistry" dependencies: - "@jupyterlab/nbformat": ^4.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@jupyterlab/testing": ^4.1.5 + "@jupyterlab/nbformat": ^4.1.6 + "@jupyterlab/statedb": ^4.1.6 + "@jupyterlab/testing": ^4.1.6 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -4667,15 +4667,15 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/shortcuts-extension@^4.1.5, @jupyterlab/shortcuts-extension@workspace:packages/shortcuts-extension, @jupyterlab/shortcuts-extension@~4.1.5": +"@jupyterlab/shortcuts-extension@^4.1.6, @jupyterlab/shortcuts-extension@workspace:packages/shortcuts-extension, @jupyterlab/shortcuts-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/shortcuts-extension@workspace:packages/shortcuts-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -4692,11 +4692,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/statedb@^4.1.5, @jupyterlab/statedb@workspace:packages/statedb": +"@jupyterlab/statedb@^4.1.6, @jupyterlab/statedb@workspace:packages/statedb": version: 0.0.0-use.local resolution: "@jupyterlab/statedb@workspace:packages/statedb" dependencies: - "@jupyterlab/testing": ^4.1.5 + "@jupyterlab/testing": ^4.1.6 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -4710,15 +4710,15 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/statusbar-extension@^4.1.5, @jupyterlab/statusbar-extension@workspace:packages/statusbar-extension, @jupyterlab/statusbar-extension@~4.1.5": +"@jupyterlab/statusbar-extension@^4.1.6, @jupyterlab/statusbar-extension@workspace:packages/statusbar-extension, @jupyterlab/statusbar-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/statusbar-extension@workspace:packages/statusbar-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/statusbar": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/statusbar": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 "@types/react": ^18.0.26 "@types/react-dom": ^18.0.9 rimraf: ~5.0.5 @@ -4727,12 +4727,12 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/statusbar@^4.1.5, @jupyterlab/statusbar@workspace:packages/statusbar": +"@jupyterlab/statusbar@^4.1.6, @jupyterlab/statusbar@workspace:packages/statusbar": version: 0.0.0-use.local resolution: "@jupyterlab/statusbar@workspace:packages/statusbar" dependencies: - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -4751,27 +4751,27 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/template@workspace:buildutils/template" dependencies: - "@jupyterlab/testing": ^4.1.5 + "@jupyterlab/testing": ^4.1.6 "@types/jest": ^29.2.0 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/terminal-extension@^4.1.5, @jupyterlab/terminal-extension@workspace:packages/terminal-extension, @jupyterlab/terminal-extension@~4.1.5": +"@jupyterlab/terminal-extension@^4.1.6, @jupyterlab/terminal-extension@workspace:packages/terminal-extension, @jupyterlab/terminal-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/terminal-extension@workspace:packages/terminal-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/launcher": ^4.1.5 - "@jupyterlab/mainmenu": ^4.1.5 - "@jupyterlab/running": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/terminal": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/launcher": ^4.1.6 + "@jupyterlab/mainmenu": ^4.1.6 + "@jupyterlab/running": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/terminal": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/widgets": ^2.3.1 "@types/webpack-env": ^1.18.0 rimraf: ~5.0.5 @@ -4780,14 +4780,14 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/terminal@^4.1.5, @jupyterlab/terminal@workspace:packages/terminal": +"@jupyterlab/terminal@^4.1.6, @jupyterlab/terminal@workspace:packages/terminal": version: 0.0.0-use.local resolution: "@jupyterlab/terminal@workspace:packages/terminal" dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/domutils": ^2.0.1 "@lumino/messaging": ^2.0.1 @@ -4806,13 +4806,13 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/testing@^4.1.5, @jupyterlab/testing@workspace:packages/testing": +"@jupyterlab/testing@^4.1.6, @jupyterlab/testing@workspace:packages/testing": version: 0.0.0-use.local resolution: "@jupyterlab/testing@workspace:packages/testing" dependencies: "@babel/core": ^7.10.2 "@babel/preset-env": ^7.10.2 - "@jupyterlab/coreutils": ^6.1.5 + "@jupyterlab/coreutils": ^6.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@types/jest": ^29.2.0 @@ -4835,74 +4835,74 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/testutils@^4.1.5, @jupyterlab/testutils@workspace:testutils": +"@jupyterlab/testutils@^4.1.6, @jupyterlab/testutils@workspace:testutils": version: 0.0.0-use.local resolution: "@jupyterlab/testutils@workspace:testutils" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/notebook": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/testing": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/notebook": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/testing": ^4.1.6 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/theme-dark-extension@^4.1.5, @jupyterlab/theme-dark-extension@workspace:packages/theme-dark-extension, @jupyterlab/theme-dark-extension@~4.1.5": +"@jupyterlab/theme-dark-extension@^4.1.6, @jupyterlab/theme-dark-extension@workspace:packages/theme-dark-extension, @jupyterlab/theme-dark-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/theme-dark-extension@workspace:packages/theme-dark-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/translation": ^4.1.6 rimraf: ~5.0.5 typedoc: ~0.24.7 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/theme-light-extension@^4.1.5, @jupyterlab/theme-light-extension@workspace:packages/theme-light-extension, @jupyterlab/theme-light-extension@~4.1.5": +"@jupyterlab/theme-light-extension@^4.1.6, @jupyterlab/theme-light-extension@workspace:packages/theme-light-extension, @jupyterlab/theme-light-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/theme-light-extension@workspace:packages/theme-light-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/translation": ^4.1.6 rimraf: ~5.0.5 typedoc: ~0.24.7 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/toc-extension@^6.1.5, @jupyterlab/toc-extension@workspace:packages/toc-extension, @jupyterlab/toc-extension@~6.1.5": +"@jupyterlab/toc-extension@^6.1.6, @jupyterlab/toc-extension@workspace:packages/toc-extension, @jupyterlab/toc-extension@~6.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/toc-extension@workspace:packages/toc-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/toc": ^6.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/toc": ^6.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 rimraf: ~5.0.5 typedoc: ~0.24.7 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/toc@^6.1.5, @jupyterlab/toc@workspace:packages/toc": +"@jupyterlab/toc@^6.1.6, @jupyterlab/toc@workspace:packages/toc": version: 0.0.0-use.local resolution: "@jupyterlab/toc@workspace:packages/toc" dependencies: - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/docregistry": ^4.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 @@ -4918,20 +4918,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/tooltip-extension@^4.1.5, @jupyterlab/tooltip-extension@workspace:packages/tooltip-extension, @jupyterlab/tooltip-extension@~4.1.5": +"@jupyterlab/tooltip-extension@^4.1.6, @jupyterlab/tooltip-extension@workspace:packages/tooltip-extension, @jupyterlab/tooltip-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/tooltip-extension@workspace:packages/tooltip-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/console": ^4.1.5 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/fileeditor": ^4.1.5 - "@jupyterlab/notebook": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/tooltip": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/console": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/fileeditor": ^4.1.6 + "@jupyterlab/notebook": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/tooltip": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 @@ -4941,14 +4941,14 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/tooltip@^4.1.5, @jupyterlab/tooltip@workspace:packages/tooltip": +"@jupyterlab/tooltip@^4.1.6, @jupyterlab/tooltip@workspace:packages/tooltip": version: 0.0.0-use.local resolution: "@jupyterlab/tooltip@workspace:packages/tooltip" dependencies: - "@jupyterlab/codeeditor": ^4.1.5 - "@jupyterlab/rendermime": ^4.1.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/codeeditor": ^4.1.6 + "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/ui-components": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.1 @@ -4958,29 +4958,29 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/translation-extension@^4.1.5, @jupyterlab/translation-extension@workspace:packages/translation-extension, @jupyterlab/translation-extension@~4.1.5": +"@jupyterlab/translation-extension@^4.1.6, @jupyterlab/translation-extension@workspace:packages/translation-extension, @jupyterlab/translation-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/translation-extension@workspace:packages/translation-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/apputils": ^4.2.5 - "@jupyterlab/mainmenu": ^4.1.5 - "@jupyterlab/settingregistry": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/apputils": ^4.2.6 + "@jupyterlab/mainmenu": ^4.1.6 + "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/translation@^4.1.5, @jupyterlab/translation@workspace:packages/translation": +"@jupyterlab/translation@^4.1.6, @jupyterlab/translation@workspace:packages/translation": version: 0.0.0-use.local resolution: "@jupyterlab/translation@workspace:packages/translation" dependencies: - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/services": ^7.1.5 - "@jupyterlab/statedb": ^4.1.5 - "@jupyterlab/testing": ^4.1.5 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/services": ^7.1.6 + "@jupyterlab/statedb": ^4.1.6 + "@jupyterlab/testing": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@types/jest": ^29.2.0 jest: ^29.2.0 @@ -4989,29 +4989,29 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/ui-components-extension@^4.1.5, @jupyterlab/ui-components-extension@workspace:packages/ui-components-extension, @jupyterlab/ui-components-extension@~4.1.5": +"@jupyterlab/ui-components-extension@^4.1.6, @jupyterlab/ui-components-extension@workspace:packages/ui-components-extension, @jupyterlab/ui-components-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/ui-components-extension@workspace:packages/ui-components-extension" dependencies: - "@jupyterlab/application": ^4.1.5 - "@jupyterlab/ui-components": ^4.1.5 + "@jupyterlab/application": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.6 rimraf: ~5.0.5 typedoc: ~0.24.7 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/ui-components@^4.1.5, @jupyterlab/ui-components@workspace:packages/ui-components": +"@jupyterlab/ui-components@^4.1.6, @jupyterlab/ui-components@workspace:packages/ui-components": version: 0.0.0-use.local resolution: "@jupyterlab/ui-components@workspace:packages/ui-components" dependencies: "@jupyter/react-components": ^0.15.2 "@jupyter/web-components": ^0.15.2 - "@jupyterlab/coreutils": ^6.1.5 - "@jupyterlab/observables": ^5.1.5 - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/testing": ^4.1.5 - "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/observables": ^5.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/translation": ^4.1.6 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -5039,12 +5039,12 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/vega5-extension@^4.1.5, @jupyterlab/vega5-extension@workspace:packages/vega5-extension, @jupyterlab/vega5-extension@~4.1.5": +"@jupyterlab/vega5-extension@^4.1.6, @jupyterlab/vega5-extension@workspace:packages/vega5-extension, @jupyterlab/vega5-extension@~4.1.6": version: 0.0.0-use.local resolution: "@jupyterlab/vega5-extension@workspace:packages/vega5-extension" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.9.5 - "@jupyterlab/testutils": ^4.1.5 + "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/testutils": ^4.1.6 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 "@types/jest": ^29.2.0 @@ -16285,7 +16285,7 @@ __metadata: version: 0.0.0-use.local resolution: "node-example@workspace:packages/services/examples/node" dependencies: - "@jupyterlab/services": ^7.1.5 + "@jupyterlab/services": ^7.1.6 rimraf: ~5.0.5 ws: ^8.11.0 languageName: unknown @@ -18801,13 +18801,13 @@ __metadata: linkType: hard "semver@npm:7.x, semver@npm:^7.0.0, semver@npm:^7.1.1, semver@npm:^7.1.2, semver@npm:^7.3.2, semver@npm:^7.3.4, semver@npm:^7.3.5, semver@npm:^7.3.7, semver@npm:^7.3.8, semver@npm:^7.5.4": - version: 7.5.4 - resolution: "semver@npm:7.5.4" + version: 7.6.0 + resolution: "semver@npm:7.6.0" dependencies: lru-cache: ^6.0.0 bin: semver: bin/semver.js - checksum: 12d8ad952fa353b0995bf180cdac205a4068b759a140e5d3c608317098b3575ac2f1e09182206bf2eb26120e1c0ed8fb92c48c592f6099680de56bb071423ca3 + checksum: 7427f05b70786c696640edc29fdd4bc33b2acf3bbe1740b955029044f80575fc664e1a512e4113c3af21e767154a94b4aa214bf6cd6e42a1f6dba5914e0b208c languageName: node linkType: hard