From bf1530f1b6aac9314a274f7bf559c1865c4d749f Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Tue, 11 Mar 2025 22:10:21 +0100 Subject: [PATCH 001/143] Add devcontainer support, backed by pixi (#7602) * Add pixi based devcontainer * Update devcontainer.json * update pixi deps * fixes * tweaks * add start task * lint * Mention codespaces in the contributing guide * add install command * tweaks * fix * fix * update contributing --- .devcontainer/Dockerfile | 13 + .devcontainer/devcontainer.json | 21 + .eslintignore | 3 + .gitattributes | 2 + .gitignore | 4 + .pre-commit-config.yaml | 1 + .prettierignore | 1 + CONTRIBUTING.md | 8 +- pixi.lock | 3322 +++++++++++++++++++++++++++++++ pyproject.toml | 22 + 10 files changed, 3395 insertions(+), 2 deletions(-) create mode 100644 .devcontainer/Dockerfile create mode 100644 .devcontainer/devcontainer.json create mode 100644 .gitattributes create mode 100644 pixi.lock diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 0000000000..2e773add9b --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,13 @@ +FROM mcr.microsoft.com/devcontainers/base:jammy + +ARG PIXI_VERSION=v0.42.1 + +RUN curl -L -o /usr/local/bin/pixi -fsSL --compressed "https://github.com/prefix-dev/pixi/releases/download/${PIXI_VERSION}/pixi-$(uname -m)-unknown-linux-musl" \ + && chmod +x /usr/local/bin/pixi \ + && pixi info + +# set some user and workdir settings to work nicely with vscode +USER vscode +WORKDIR /home/vscode + +RUN echo 'eval "$(pixi completion -s bash)"' >> /home/vscode/.bashrc diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000000..7a475ea4da --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,21 @@ +{ + "name": "Jupyter Notebook", + "build": { + "dockerfile": "Dockerfile", + "context": ".." + }, + "forwardPorts": [8888], + "customizations": { + "vscode": { + "settings": {}, + "extensions": ["ms-python.python", "charliermarsh.ruff", "GitHub.copilot"] + } + }, + "features": { + "ghcr.io/devcontainers/features/docker-in-docker:2": {} + }, + "mounts": [ + "source=${localWorkspaceFolderBasename}-pixi,target=${containerWorkspaceFolder}/.pixi,type=volume" + ], + "postCreateCommand": "sudo chown vscode .pixi && pixi install && pixi run develop && pixi run pre-commit install -f" +} diff --git a/.eslintignore b/.eslintignore index 9c096a5451..09a9b90d5f 100644 --- a/.eslintignore +++ b/.eslintignore @@ -18,3 +18,6 @@ app/index.template.js # ms IDE stuff .history/ .vscode/ + +# Pixi environments +.pixi diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000..887a2c18f0 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# SCM syntax highlighting & preventing 3-way merges +pixi.lock merge=binary linguist-language=YAML linguist-generated=true diff --git a/.gitignore b/.gitignore index 22987ba4a1..c2da64815b 100644 --- a/.gitignore +++ b/.gitignore @@ -138,3 +138,7 @@ ui-tests/.pnp.* # generated html notebook/templates/*.html + +# pixi environments +.pixi +*.egg-info diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 705e4c7d8d..c70cd4e688 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -33,6 +33,7 @@ repos: exclude: | (?x)^( yarn.lock| + pixi.lock| binder/example.ipynb| docs/source/examples/images/FrontendKernel.graffle/data.plist| )$ diff --git a/.prettierignore b/.prettierignore index fa9ec48cae..8eba6956bf 100644 --- a/.prettierignore +++ b/.prettierignore @@ -9,3 +9,4 @@ node_modules build CHANGELOG.md app/index.template.js +.pixi diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 16a6e6bc6f..ec580f2e62 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -22,7 +22,7 @@ mamba create -n notebook -c conda-forge python nodejs -y mamba activate notebook # Install package in development mode -pip install -e ".[dev,test]" +pip install -e ".[dev,docs,test]" # Install dependencies and build packages jlpm @@ -240,6 +240,10 @@ Now open a web browser and navigate to `http://localhost:8000` to access the doc Alternatively you can also contribute to Jupyter Notebook without setting up a local environment, directly from a web browser: +- [GitHub CodeSpaces](https://github.com/codespaces) is directly integrated into GitHub. This repository uses the [pixi](https://pixi.sh/) package manager to set up the development environment. To contribute after the Codespace is started: + - Run `pixi shell` in a terminal to activate the development environment + - Use the commands above for building the extension and running the tests, for example: `jlpm build` + - To start the application: `pixi run start`. A popup should appear with a button to open the Jupyter Notebook in a new browser tab. If the popup does not appear, you can navigate to the "Forwarded ports" panel to find the URL to the application. - [Gitpod](https://gitpod.io/#https://github.com/jupyter/notebook) integration is enabled. The Gitpod config automatically builds the Jupyter Notebook application and the documentation. - GitHub’s [built-in editor](https://docs.github.com/en/repositories/working-with-files/managing-files/editing-files) is suitable for contributing small fixes -- A more advanced [github.dev](https://docs.github.com/en/codespaces/the-githubdev-web-based-editor) editor can be accessed by pressing the dot (.) key while in the Jupyter Notebook GitHub repository, +- A more advanced [github.dev](https://docs.github.com/en/codespaces/the-githubdev-web-based-editor) editor can be accessed by pressing the dot (.) key while in the Jupyter Notebook GitHub repository diff --git a/pixi.lock b/pixi.lock new file mode 100644 index 0000000000..b027242e18 --- /dev/null +++ b/pixi.lock @@ -0,0 +1,3322 @@ +version: 6 +environments: + default: + channels: + - url: https://conda.anaconda.org/conda-forge/ + indexes: + - https://pypi.org/simple + packages: + linux-64: + - conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.4-h5888daf_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h767d61c_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.6.4-hb9d3cd8_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-h4bc722e_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.50.0-hb9d3cd8_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/nodejs-22.12.0-hf235a45_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.1-h7b32b05_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pip-25.0.1-pyh145f28c_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.13.2-hf636f53_101_cp313.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.13-5_cp313.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025a-h78e105d_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-hb9d3cd8_2.conda + - pypi: https://files.pythonhosted.org/packages/8d/3f/95338030883d8c8b91223b4e21744b04d11b161a3ef117295d8241f50ab4/accessible_pygments-0.0.5-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/7e/b3/6b4067be973ae96ba0d615946e314c5ae35f9f993eca561b356540bb0c2b/alabaster-1.0.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/46/eb/e7f063ad1fec6b3178a3cd82d1a3c4de82cccf283fc42746168188e1cdd5/anyio-4.8.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/a4/6a/e8a041599e78b6b3752da48000b14c8d1e8a04ded09c88c714ba047f34f5/argon2_cffi-23.1.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ec/f7/378254e6dd7ae6f31fe40c8649eea7d4832a42243acaf0f1fff9083b2bed/argon2_cffi_bindings-21.2.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/f8/ed/e97229a566617f2ae958a6b13e7cc0f585470eac730a73e9e82c32a3cdd2/arrow-1.3.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/25/8a/c46dcc25341b5bce5472c718902eb3d38600a903b14fa6aeecef3f21a46f/asttokens-3.0.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/fa/9f/3c3503693386c4b0f245eaf5ca6198e3b28879ca0a40bde6b0e319793453/async_lru-2.0.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/fc/30/d4986a882011f9df997a55e6becd864812ccfcd821d64aac8570ee39f719/attrs-25.1.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b7/b8/3fe70c75fe32afc4bb507f75563d39bc5642255d1d94f1f23604725780bf/babel-2.17.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f9/49/6abb616eb3cbab6a7cca303dc02fdf3836de2e0b834bf966a7f5271a34d8/beautifulsoup4-4.13.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/fc/55/96142937f66150805c25c4d0f31ee4132fd33497753400734f9dfdcbdc66/bleach-6.2.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/26/9f/1aab65a6c0db35f43c4d1b4f580e8df53914310afc10ae0397d29d697af4/cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/c5/55/51844dd50c4fc7a33b653bfaba4c2456f06955289ca770a5dbd5fd267374/cfgv-3.4.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/52/ed/b7f4f07de100bdb95c1756d3a4d17b90c1a3c53715c1a476f8738058e0fa/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/7e/d4/7ebdbd03970677812aac39c869717059dbb71a4cfc033ca6e5221787892c/click-8.1.8-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e6/75/49e5bfe642f71f272236b5b2d2691cf915a7283cc0ceda56357b61daa538/comm-0.2.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/78/2b/999b2a1e1ba2206f2d3bca267d68f350beb2b048a41ea827e08ce7260098/cryptography-44.0.2-cp39-abi3-manylinux_2_28_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/ec/ed/db4b10ff3b5bb30fe41d9e86444a08bb6448e4d8265e7768450b8408dd36/debugpy-1.8.13-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/4e/8c/f3147f5c4b73e7550fe5f9352eaa956ae838d5c51eb58e7a25b9f3e2643b/decorator-5.2.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/07/6c/aa3f2f849e01cb6a001cd8554a88d4c77c5c1a31c95bdf1cf9301e6d9ef4/defusedxml-0.7.1-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/91/a1/cf2472db20f7ce4a6be1253a81cfdf85ad9c7885ffbed7047fb72c24cf87/distlib-0.3.9-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/8f/d7/9322c609343d929e75e7e5e6255e614fcc67572cfd083959cdef3b7aad79/docutils-0.21.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/7b/8f/c4d9bafc34ad7ad5d8dc16dd1347ee0e507a52c3adb6bfa8887e1c6a26ba/executing-2.2.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/90/2b/0817a2b257fe88725c25589d89aec060581aabf668707a8d03b2e9e0cb2a/fastjsonschema-2.21.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/89/ec/00d68c4ddfedfe64159999e5f8a98fb8442729a63e2077eb9dcd89623d27/filelock-3.17.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/cf/58/8acf1b3e91c58313ce5cb67df61001fc9dcd21be4fadb76c1a2d540e09ed/fqdn-1.5.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/95/04/ff642e65ad6b90db43e668d70ffb6736436c7ce41fcc549f4e9472234127/h11-0.14.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/85/c6/ad910cdb79600af0100b7c4f7093eb4b95a2b44e589e66b6b938b09cc6f9/hatch-1.14.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/08/e7/ae38d7a6dfba0533684e0b2136817d667588ae3ec984c1a4e5df5eb88482/hatchling-1.27.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/87/f5/72347bc88306acb359581ac4d52f23c0ef445b57157adedb9aee0cd689d2/httpcore-1.0.7-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/6e/aa/8caf6a0a3e62863cbb9dab27135660acba46903b703e224f14f447e57934/hyperlink-21.0.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/78/8c/4bfcab2d8286473b8d83ea742716f4b79290172e75f91142bc1534b05b9a/identify-2.6.8-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ff/62/85c4c919272577931d407be5ba5d71c20f0b616d31a0befe0ae45bb79abd/imagesize-1.4.1-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/94/5c/368ae6c01c7628438358e6d337c19b05425727fbb221d2a3c4303c372f42/ipykernel-6.29.5-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/28/39/fda74f8215ef94a812dd780073c61a826a88a01e51f627a3454f7ae6951d/ipython-9.0.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/d9/33/1f075bf72b0b747cb3288d011319aaf64083cf2efef8354174e3ed4540e2/ipython_pygments_lexers-1.1.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/7b/55/e5326141505c5d5e34c5e0935d2908a74e4561eca44108fbfb9c13d2911a/isoduration-20.11.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/7f/66/b15ce62552d84bbfcec9a4873ab79d993a1dd4edb922cbfccae192bd5b5f/jaraco.classes-3.4.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ff/db/0c52c4cf5e4bd9f5d7135ec7669a3a767af21b3a308e1ed3674881e52b62/jaraco.context-6.0.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/9f/4f/24b319316142c44283d7540e76c7b5a6dbd5db623abd86bb7b3491c21018/jaraco.functools-4.1.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c0/5a/9cac0c82afec3d09ccd97c8b6502d48f165f9124db81b4bcb90b4af974ee/jedi-0.19.2-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b2/a3/e137168c9c44d18eff0376253da9f1e9234d0239e0ee230d2fee6cea8e55/jeepney-0.9.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/aa/42/797895b952b682c3dafe23b1834507ee7f02f4d6299b65aaa61425763278/json5-0.10.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/71/92/5e77f98553e9e75130c78900d000368476aed74276eb8ae8796f65f00918/jsonpointer-3.0.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/69/4a/4f9dbeb84e8850557c02365a0eee0649abe5eb1d84af92a25731c6c0f922/jsonschema-4.23.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/1c/24/83349ac2189cc2435e84da3f69ba3c97314d3c0622628e55171c6798ed80/jsonschema_specifications-2023.7.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/11/85/b0394e0b6fcccd2c1eeefc230978a6f8cb0c5df1e4cd3e7625735a0d7d1e/jupyter_client-8.6.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c9/fb/108ecd1fe961941959ad0ee4e12ee7b8b1477247f30b1fdfd83ceaf017f0/jupyter_core-5.7.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e2/48/577993f1f99c552f18a0428731a755e06171f9902fa118c379eb7c04ea22/jupyter_events-0.12.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/07/e0/7bd7cff65594fd9936e2f9385701e44574fc7d721331ff676ce440b14100/jupyter_lsp-2.2.5-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e2/a2/89eeaf0bb954a123a909859fa507fa86f96eb61b62dc30667b60dbd5fdaf/jupyter_server-2.15.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/07/2d/2b32cdbe8d2a602f697a649798554e4f072115438e92249624e532e8aca6/jupyter_server_terminals-0.5.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/03/3c/82e775e8af2955206aa089bc065660760fa4b415c52e7ce3ebf6d5e9fa38/jupyterlab-4.4.0b0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/54/09/2032e7d15c544a0e3cd831c51d77a8ca57f7555b2e1b2922142eddb02a84/jupyterlab_server-2.27.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/d3/32/da7f44bcb1105d3e88a0b74ebdca50c59121d2ddf71c9e34ba47df7f3a56/keyring-25.6.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/0c/91/96cf928db8236f1bfab6ce15ad070dfdd02ed88261c2afafd4b43575e9e9/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/8f/8e/9ad090d3553c280a8060fbf6e24dc1c0c29704ee7d1c372f0c174aa59285/matplotlib_inline-0.1.7-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/a7/f7/7782a043553ee469c1ff49cfa1cdace2d6bf99a1f333cf38676b3ddf30da/mdit_py_plugins-0.4.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/12/92/30b4e54c4d7c48c06db61595cffbbf4f19588ea177896f9b78f0fbe021fd/mistune-3.1.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/23/62/0fe302c6d1be1c777cab0616e6302478251dfbf9055ad426f5d0def75c89/more_itertools-10.6.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/5f/df/76d0321c3797b54b60fef9ec3bd6f4cfd124b9e422182156a1dd418722cf/myst_parser-4.0.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/cc/9a/cd673b2f773a12c992f41309ef81b99da1690426bd2f96957a7ade0d3ed7/nbconvert-7.16.6-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/49/2d/8c8e635bcc6757573d311bb3c5445426382f280da32b8cd6d82d501ef4a4/nbsphinx-0.9.7-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/d2/1d/1b658dbd2b9fa9c4c9f32accbfc0205d532c8c6194dc0f2a4c0428e7128a/nodeenv-1.9.1-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f9/33/bd5b9137445ea4b680023eb0469b2bb969d61303dedb2aac6560ff3d14a1/notebook_shim-0.2.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/2c/ab/fc8290c6a4c722e5514d80f62b2dc4c4df1a68a41d1364e625c35990fcf3/overrides-7.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ef/af/4fbc8cab944db5d21b7e2a5b8e9211a03a79852b1157e2c102fcc61ac440/pandocfilters-1.5.1-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c6/ac/dac4a63f978e4dcb3c6d3a78c4d8e0192a113d288502a1216950c41b1027/parso-0.8.4-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/3c/a6/bc1012356d8ece4d66dd75c4b9fc6c1f6650ddd5991e421177d9f8f671be/platformdirs-4.3.6-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/88/5f/e351af9a41f866ac3f1fac4ca0613908d9a41741cfcf2228f4ad853b697d/pluggy-1.5.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/43/b3/df14c580d82b9627d173ceea305ba898dca135feb360b6d84019d0803d3b/pre_commit-4.1.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ff/c2/ab7d37426c179ceb9aeb109a85cda8948bb269b7561a0be870cc656eefe4/prometheus_client-0.21.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e4/ea/d836f008d33151c7a1f62caf3d8dd782e4d15f6a43897f64480c2b8de2ad/prompt_toolkit-3.0.50-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/bf/b9/b0eb3f3cbcb734d930fdf839431606844a825b23eaf9a6ab371edac8162c/psutil-7.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/22/a6/858897256d0deac81a172289110f31629fc4cee19b6f01283303e18c8db3/ptyprocess-0.7.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e2/0d/8ba33fa83a7dcde13eb3c1c2a0c1cc29950a048bfed6d9b0d8b6bd710b4c/pydata_sphinx_theme-0.16.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/54/4c/a741dddab6ad96f257d90cb4d23067ffadac526c9cab3a99ca6ce3c05477/pyenchant-3.2.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/08/20/0f2523b9e50a8052bc6a8b732dfc8568abbdc42010aef03a2d750bdab3b2/python_json_logger-3.3.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/04/24/b7721e4845c2f162d26f50521b825fb061bc0a5afcf9a386840f23ea19fa/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/c9/48/15d5f415504572dd4b92b52db5de7a5befc76bb75340ba9f36f71306a66d/pyzmq-26.2.1-cp313-cp313-manylinux_2_28_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/be/8e/56d6f1e2d591f4d6cbcba446cac4a1b0dc4f584537e2071d9bcee8eeab6b/referencing-0.30.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/7b/44/4e421b96b67b2daff264473f7465db72fbdf36a07e05494f50300cc7b0c6/rfc3339_validator-0.1.4-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/9e/51/17023c0f8f1869d8806b979a2bffa3f861f26a3f1a66b094288323fba52f/rfc3986_validator-0.1.1-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/19/71/39c7c0d87f8d4e6c020a393182060eaefeeae6c01dab6a84ec346f2567df/rich-13.9.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f6/55/b3c18c04a460d951bf8e91f2abf46ce5b6426fb69784166a6a25827cb90a/rpds_py-0.23.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/54/24/b4293291fa1dd830f353d2cb163295742fa87f179fcc8a20a306a81978b7/SecretStorage-3.3.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/40/b0/4562db6223154aa4e22f939003cb92514c79f3d4dccca3444253fd17f902/Send2Trash-1.8.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/a9/38/7d7362e031bd6dc121e5081d8cb6aa6f6fedf2b67bf889962134c6da4705/setuptools-75.8.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e0/f9/0595336914c5619e5f28a1fb793285925a8cd4b432c9da0a987836c7f822/shellingham-1.5.4-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ed/dc/c02e01294f7265e63a7315fe086dd1df7dacb9f840a804da846b96d01b96/snowballstemmer-2.2.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/d1/c2/fe97d779f3ef3b15f05c94a2f1e3d21732574ed441687474db9d342a7315/soupsieve-2.6-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/26/60/1ddff83a56d33aaf6f10ec8ce84b4c007d9368b21008876fceda7e7381ef/sphinx-8.1.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/5d/85/9ebeae2f76e9e77b952f4b274c27238156eae7979c5421fba91a28f4970d/sphinxcontrib_applehelp-2.0.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/35/7a/987e583882f985fe4d7323774889ec58049171828b58c2217e7f79cdf44e/sphinxcontrib_devhelp-2.0.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/70/12/d9b6bf8093906108017f3cdbecae3e2b3b4963c5112b28f0cd482b433182/sphinxcontrib_github_alt-1.2-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/0a/7b/18a8c0bcec9182c05a0b3ec2a776bba4ead82750a55ff798e8d406dae604/sphinxcontrib_htmlhelp-2.1.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c2/42/4c8646762ee83602e3fb3fbe774c2fac12f317deb0b5dbeeedd2d3ba4b77/sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/27/83/859ecdd180cacc13b1f7e857abf8582a64552ea7a061057a6c716e790fce/sphinxcontrib_qthelp-2.0.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/52/a7/d2782e4e3f77c8450f727ba74a8f12756d5ba823d81b941f1b04da9d033a/sphinxcontrib_serializinghtml-2.0.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/03/30/05efe7261eac789cf3ba28ef5dfb76d719df30baae6881cb54a6801c0e8f/sphinxcontrib_spelling-8.0.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f1/7b/ce1eafaf1a76852e2ec9b22edecf1daa58175c090266e9f6c64afcd81d91/stack_data-0.6.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/6a/9e/2064975477fdc887e47ad42157e214526dcad8f317a948dee17e1659a62f/terminado-0.18.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e6/34/ebdc18bae6aa14fbee1a08b63c015c72b64868ff7dae68808ab500c492e2/tinycss2-1.4.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c7/18/c86eb8e0202e32dd3df50d43d7ff9854f8e0603945ff398974c1d91ac1ef/tomli_w-1.2.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f9/b6/a447b5e4ec71e13871be01ba81f5dfc9d0af7e473da256ff46bc0e24026f/tomlkit-0.13.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/22/55/b78a464de78051a30599ceb6983b01d8f732e6f69bf37b4ed07f642ac0fc/tornado-6.4.2-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ef/bf/44195f3d9c3c4fe4cccf1c261c80d50781b9e8a0a6febf084c09c66740ff/trove_classifiers-2025.3.3.18-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/0f/b3/ca41df24db5eb99b00d97f89d7674a90cb6b3134c52fb8121b6d8d30f15c/types_python_dateutil-2.9.0.20241206-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/26/9f/ad63fc0248c5379346306f8668cda6e2e2e9c95e01216d2b8ffd9ff037d0/typing_extensions-4.12.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e7/00/3fca040d7cf8a32776d3d81a00c8ee7457e00f80c649f1e4a863c8321ae9/uri_template-1.3.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c8/19/4ec628951a74043532ca2cf5d97b7b14863931476d117c471e8e2b1eb39f/urllib3-2.3.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/43/99/3ec6335ded5b88c2f7ed25c56ffd952546f7ed007ffb1e1539dc3b57015a/userpath-1.9.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/66/32/ad9944c9716360c82fb62516aca72bdeaedf7991483383f3a06734cb2cf4/uv-0.6.5-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/c2/eb/c6db6e3001d58c6a9e67c74bb7b4206767caa3ccc28c6b9eaf4c23fb4e34/virtualenv-20.29.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/fd/84/fd2ba7aafacbad3c4201d395674fc6348826569da3c0937e75505ead3528/wcwidth-0.2.13-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/60/e8/c0e05e4684d13459f93d312077a9a2efbe04d59c393bc2b8802248c908d4/webcolors-24.11.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f4/24/2a3e3df732393fed8b3ebf2ec078f05546de641fe1b667ee316ec1dcf3b7/webencodings-0.5.1-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/5a/84/44687a29792a70e111c5c477230a72c4b957d88d16141199bf9acb7537a3/websocket_client-1.8.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/fa/18/89ac62eac46b69948bf35fcd90d37103f38722968e2981f752d69081ec4d/zstandard-0.23.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: . + dev: + channels: + - url: https://conda.anaconda.org/conda-forge/ + indexes: + - https://pypi.org/simple + packages: + linux-64: + - conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.4-h5888daf_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h767d61c_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.6.4-hb9d3cd8_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-h4bc722e_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.50.0-hb9d3cd8_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/nodejs-22.12.0-hf235a45_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.1-h7b32b05_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pip-25.0.1-pyh145f28c_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.13.2-hf636f53_101_cp313.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.13-5_cp313.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025a-h78e105d_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-hb9d3cd8_2.conda + - pypi: https://files.pythonhosted.org/packages/8d/3f/95338030883d8c8b91223b4e21744b04d11b161a3ef117295d8241f50ab4/accessible_pygments-0.0.5-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/7e/b3/6b4067be973ae96ba0d615946e314c5ae35f9f993eca561b356540bb0c2b/alabaster-1.0.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/46/eb/e7f063ad1fec6b3178a3cd82d1a3c4de82cccf283fc42746168188e1cdd5/anyio-4.8.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/a4/6a/e8a041599e78b6b3752da48000b14c8d1e8a04ded09c88c714ba047f34f5/argon2_cffi-23.1.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ec/f7/378254e6dd7ae6f31fe40c8649eea7d4832a42243acaf0f1fff9083b2bed/argon2_cffi_bindings-21.2.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/f8/ed/e97229a566617f2ae958a6b13e7cc0f585470eac730a73e9e82c32a3cdd2/arrow-1.3.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/25/8a/c46dcc25341b5bce5472c718902eb3d38600a903b14fa6aeecef3f21a46f/asttokens-3.0.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/fa/9f/3c3503693386c4b0f245eaf5ca6198e3b28879ca0a40bde6b0e319793453/async_lru-2.0.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/fc/30/d4986a882011f9df997a55e6becd864812ccfcd821d64aac8570ee39f719/attrs-25.1.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b7/b8/3fe70c75fe32afc4bb507f75563d39bc5642255d1d94f1f23604725780bf/babel-2.17.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f9/49/6abb616eb3cbab6a7cca303dc02fdf3836de2e0b834bf966a7f5271a34d8/beautifulsoup4-4.13.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/fc/55/96142937f66150805c25c4d0f31ee4132fd33497753400734f9dfdcbdc66/bleach-6.2.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/26/9f/1aab65a6c0db35f43c4d1b4f580e8df53914310afc10ae0397d29d697af4/cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/c5/55/51844dd50c4fc7a33b653bfaba4c2456f06955289ca770a5dbd5fd267374/cfgv-3.4.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/52/ed/b7f4f07de100bdb95c1756d3a4d17b90c1a3c53715c1a476f8738058e0fa/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/7e/d4/7ebdbd03970677812aac39c869717059dbb71a4cfc033ca6e5221787892c/click-8.1.8-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e6/75/49e5bfe642f71f272236b5b2d2691cf915a7283cc0ceda56357b61daa538/comm-0.2.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/78/2b/999b2a1e1ba2206f2d3bca267d68f350beb2b048a41ea827e08ce7260098/cryptography-44.0.2-cp39-abi3-manylinux_2_28_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/ec/ed/db4b10ff3b5bb30fe41d9e86444a08bb6448e4d8265e7768450b8408dd36/debugpy-1.8.13-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/4e/8c/f3147f5c4b73e7550fe5f9352eaa956ae838d5c51eb58e7a25b9f3e2643b/decorator-5.2.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/07/6c/aa3f2f849e01cb6a001cd8554a88d4c77c5c1a31c95bdf1cf9301e6d9ef4/defusedxml-0.7.1-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/91/a1/cf2472db20f7ce4a6be1253a81cfdf85ad9c7885ffbed7047fb72c24cf87/distlib-0.3.9-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/8f/d7/9322c609343d929e75e7e5e6255e614fcc67572cfd083959cdef3b7aad79/docutils-0.21.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/7b/8f/c4d9bafc34ad7ad5d8dc16dd1347ee0e507a52c3adb6bfa8887e1c6a26ba/executing-2.2.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/90/2b/0817a2b257fe88725c25589d89aec060581aabf668707a8d03b2e9e0cb2a/fastjsonschema-2.21.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/89/ec/00d68c4ddfedfe64159999e5f8a98fb8442729a63e2077eb9dcd89623d27/filelock-3.17.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/cf/58/8acf1b3e91c58313ce5cb67df61001fc9dcd21be4fadb76c1a2d540e09ed/fqdn-1.5.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/95/04/ff642e65ad6b90db43e668d70ffb6736436c7ce41fcc549f4e9472234127/h11-0.14.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/85/c6/ad910cdb79600af0100b7c4f7093eb4b95a2b44e589e66b6b938b09cc6f9/hatch-1.14.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/08/e7/ae38d7a6dfba0533684e0b2136817d667588ae3ec984c1a4e5df5eb88482/hatchling-1.27.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/87/f5/72347bc88306acb359581ac4d52f23c0ef445b57157adedb9aee0cd689d2/httpcore-1.0.7-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/6e/aa/8caf6a0a3e62863cbb9dab27135660acba46903b703e224f14f447e57934/hyperlink-21.0.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/78/8c/4bfcab2d8286473b8d83ea742716f4b79290172e75f91142bc1534b05b9a/identify-2.6.8-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ff/62/85c4c919272577931d407be5ba5d71c20f0b616d31a0befe0ae45bb79abd/imagesize-1.4.1-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/94/5c/368ae6c01c7628438358e6d337c19b05425727fbb221d2a3c4303c372f42/ipykernel-6.29.5-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/28/39/fda74f8215ef94a812dd780073c61a826a88a01e51f627a3454f7ae6951d/ipython-9.0.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/d9/33/1f075bf72b0b747cb3288d011319aaf64083cf2efef8354174e3ed4540e2/ipython_pygments_lexers-1.1.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/7b/55/e5326141505c5d5e34c5e0935d2908a74e4561eca44108fbfb9c13d2911a/isoduration-20.11.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/7f/66/b15ce62552d84bbfcec9a4873ab79d993a1dd4edb922cbfccae192bd5b5f/jaraco.classes-3.4.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ff/db/0c52c4cf5e4bd9f5d7135ec7669a3a767af21b3a308e1ed3674881e52b62/jaraco.context-6.0.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/9f/4f/24b319316142c44283d7540e76c7b5a6dbd5db623abd86bb7b3491c21018/jaraco.functools-4.1.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c0/5a/9cac0c82afec3d09ccd97c8b6502d48f165f9124db81b4bcb90b4af974ee/jedi-0.19.2-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b2/a3/e137168c9c44d18eff0376253da9f1e9234d0239e0ee230d2fee6cea8e55/jeepney-0.9.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/aa/42/797895b952b682c3dafe23b1834507ee7f02f4d6299b65aaa61425763278/json5-0.10.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/71/92/5e77f98553e9e75130c78900d000368476aed74276eb8ae8796f65f00918/jsonpointer-3.0.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/69/4a/4f9dbeb84e8850557c02365a0eee0649abe5eb1d84af92a25731c6c0f922/jsonschema-4.23.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/1c/24/83349ac2189cc2435e84da3f69ba3c97314d3c0622628e55171c6798ed80/jsonschema_specifications-2023.7.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/11/85/b0394e0b6fcccd2c1eeefc230978a6f8cb0c5df1e4cd3e7625735a0d7d1e/jupyter_client-8.6.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c9/fb/108ecd1fe961941959ad0ee4e12ee7b8b1477247f30b1fdfd83ceaf017f0/jupyter_core-5.7.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e2/48/577993f1f99c552f18a0428731a755e06171f9902fa118c379eb7c04ea22/jupyter_events-0.12.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/07/e0/7bd7cff65594fd9936e2f9385701e44574fc7d721331ff676ce440b14100/jupyter_lsp-2.2.5-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e2/a2/89eeaf0bb954a123a909859fa507fa86f96eb61b62dc30667b60dbd5fdaf/jupyter_server-2.15.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/07/2d/2b32cdbe8d2a602f697a649798554e4f072115438e92249624e532e8aca6/jupyter_server_terminals-0.5.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/03/3c/82e775e8af2955206aa089bc065660760fa4b415c52e7ce3ebf6d5e9fa38/jupyterlab-4.4.0b0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/54/09/2032e7d15c544a0e3cd831c51d77a8ca57f7555b2e1b2922142eddb02a84/jupyterlab_server-2.27.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/d3/32/da7f44bcb1105d3e88a0b74ebdca50c59121d2ddf71c9e34ba47df7f3a56/keyring-25.6.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/0c/91/96cf928db8236f1bfab6ce15ad070dfdd02ed88261c2afafd4b43575e9e9/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/8f/8e/9ad090d3553c280a8060fbf6e24dc1c0c29704ee7d1c372f0c174aa59285/matplotlib_inline-0.1.7-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/a7/f7/7782a043553ee469c1ff49cfa1cdace2d6bf99a1f333cf38676b3ddf30da/mdit_py_plugins-0.4.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/12/92/30b4e54c4d7c48c06db61595cffbbf4f19588ea177896f9b78f0fbe021fd/mistune-3.1.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/23/62/0fe302c6d1be1c777cab0616e6302478251dfbf9055ad426f5d0def75c89/more_itertools-10.6.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/5f/df/76d0321c3797b54b60fef9ec3bd6f4cfd124b9e422182156a1dd418722cf/myst_parser-4.0.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/cc/9a/cd673b2f773a12c992f41309ef81b99da1690426bd2f96957a7ade0d3ed7/nbconvert-7.16.6-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/49/2d/8c8e635bcc6757573d311bb3c5445426382f280da32b8cd6d82d501ef4a4/nbsphinx-0.9.7-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/d2/1d/1b658dbd2b9fa9c4c9f32accbfc0205d532c8c6194dc0f2a4c0428e7128a/nodeenv-1.9.1-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f9/33/bd5b9137445ea4b680023eb0469b2bb969d61303dedb2aac6560ff3d14a1/notebook_shim-0.2.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/2c/ab/fc8290c6a4c722e5514d80f62b2dc4c4df1a68a41d1364e625c35990fcf3/overrides-7.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ef/af/4fbc8cab944db5d21b7e2a5b8e9211a03a79852b1157e2c102fcc61ac440/pandocfilters-1.5.1-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c6/ac/dac4a63f978e4dcb3c6d3a78c4d8e0192a113d288502a1216950c41b1027/parso-0.8.4-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/3c/a6/bc1012356d8ece4d66dd75c4b9fc6c1f6650ddd5991e421177d9f8f671be/platformdirs-4.3.6-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/88/5f/e351af9a41f866ac3f1fac4ca0613908d9a41741cfcf2228f4ad853b697d/pluggy-1.5.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/43/b3/df14c580d82b9627d173ceea305ba898dca135feb360b6d84019d0803d3b/pre_commit-4.1.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ff/c2/ab7d37426c179ceb9aeb109a85cda8948bb269b7561a0be870cc656eefe4/prometheus_client-0.21.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e4/ea/d836f008d33151c7a1f62caf3d8dd782e4d15f6a43897f64480c2b8de2ad/prompt_toolkit-3.0.50-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/bf/b9/b0eb3f3cbcb734d930fdf839431606844a825b23eaf9a6ab371edac8162c/psutil-7.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/22/a6/858897256d0deac81a172289110f31629fc4cee19b6f01283303e18c8db3/ptyprocess-0.7.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e2/0d/8ba33fa83a7dcde13eb3c1c2a0c1cc29950a048bfed6d9b0d8b6bd710b4c/pydata_sphinx_theme-0.16.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/54/4c/a741dddab6ad96f257d90cb4d23067ffadac526c9cab3a99ca6ce3c05477/pyenchant-3.2.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/08/20/0f2523b9e50a8052bc6a8b732dfc8568abbdc42010aef03a2d750bdab3b2/python_json_logger-3.3.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/04/24/b7721e4845c2f162d26f50521b825fb061bc0a5afcf9a386840f23ea19fa/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/c9/48/15d5f415504572dd4b92b52db5de7a5befc76bb75340ba9f36f71306a66d/pyzmq-26.2.1-cp313-cp313-manylinux_2_28_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/be/8e/56d6f1e2d591f4d6cbcba446cac4a1b0dc4f584537e2071d9bcee8eeab6b/referencing-0.30.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/7b/44/4e421b96b67b2daff264473f7465db72fbdf36a07e05494f50300cc7b0c6/rfc3339_validator-0.1.4-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/9e/51/17023c0f8f1869d8806b979a2bffa3f861f26a3f1a66b094288323fba52f/rfc3986_validator-0.1.1-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/19/71/39c7c0d87f8d4e6c020a393182060eaefeeae6c01dab6a84ec346f2567df/rich-13.9.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f6/55/b3c18c04a460d951bf8e91f2abf46ce5b6426fb69784166a6a25827cb90a/rpds_py-0.23.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/54/24/b4293291fa1dd830f353d2cb163295742fa87f179fcc8a20a306a81978b7/SecretStorage-3.3.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/40/b0/4562db6223154aa4e22f939003cb92514c79f3d4dccca3444253fd17f902/Send2Trash-1.8.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/a9/38/7d7362e031bd6dc121e5081d8cb6aa6f6fedf2b67bf889962134c6da4705/setuptools-75.8.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e0/f9/0595336914c5619e5f28a1fb793285925a8cd4b432c9da0a987836c7f822/shellingham-1.5.4-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ed/dc/c02e01294f7265e63a7315fe086dd1df7dacb9f840a804da846b96d01b96/snowballstemmer-2.2.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/d1/c2/fe97d779f3ef3b15f05c94a2f1e3d21732574ed441687474db9d342a7315/soupsieve-2.6-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/26/60/1ddff83a56d33aaf6f10ec8ce84b4c007d9368b21008876fceda7e7381ef/sphinx-8.1.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/5d/85/9ebeae2f76e9e77b952f4b274c27238156eae7979c5421fba91a28f4970d/sphinxcontrib_applehelp-2.0.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/35/7a/987e583882f985fe4d7323774889ec58049171828b58c2217e7f79cdf44e/sphinxcontrib_devhelp-2.0.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/70/12/d9b6bf8093906108017f3cdbecae3e2b3b4963c5112b28f0cd482b433182/sphinxcontrib_github_alt-1.2-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/0a/7b/18a8c0bcec9182c05a0b3ec2a776bba4ead82750a55ff798e8d406dae604/sphinxcontrib_htmlhelp-2.1.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c2/42/4c8646762ee83602e3fb3fbe774c2fac12f317deb0b5dbeeedd2d3ba4b77/sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/27/83/859ecdd180cacc13b1f7e857abf8582a64552ea7a061057a6c716e790fce/sphinxcontrib_qthelp-2.0.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/52/a7/d2782e4e3f77c8450f727ba74a8f12756d5ba823d81b941f1b04da9d033a/sphinxcontrib_serializinghtml-2.0.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/03/30/05efe7261eac789cf3ba28ef5dfb76d719df30baae6881cb54a6801c0e8f/sphinxcontrib_spelling-8.0.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f1/7b/ce1eafaf1a76852e2ec9b22edecf1daa58175c090266e9f6c64afcd81d91/stack_data-0.6.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/6a/9e/2064975477fdc887e47ad42157e214526dcad8f317a948dee17e1659a62f/terminado-0.18.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e6/34/ebdc18bae6aa14fbee1a08b63c015c72b64868ff7dae68808ab500c492e2/tinycss2-1.4.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c7/18/c86eb8e0202e32dd3df50d43d7ff9854f8e0603945ff398974c1d91ac1ef/tomli_w-1.2.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f9/b6/a447b5e4ec71e13871be01ba81f5dfc9d0af7e473da256ff46bc0e24026f/tomlkit-0.13.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/22/55/b78a464de78051a30599ceb6983b01d8f732e6f69bf37b4ed07f642ac0fc/tornado-6.4.2-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ef/bf/44195f3d9c3c4fe4cccf1c261c80d50781b9e8a0a6febf084c09c66740ff/trove_classifiers-2025.3.3.18-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/0f/b3/ca41df24db5eb99b00d97f89d7674a90cb6b3134c52fb8121b6d8d30f15c/types_python_dateutil-2.9.0.20241206-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/26/9f/ad63fc0248c5379346306f8668cda6e2e2e9c95e01216d2b8ffd9ff037d0/typing_extensions-4.12.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e7/00/3fca040d7cf8a32776d3d81a00c8ee7457e00f80c649f1e4a863c8321ae9/uri_template-1.3.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c8/19/4ec628951a74043532ca2cf5d97b7b14863931476d117c471e8e2b1eb39f/urllib3-2.3.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/43/99/3ec6335ded5b88c2f7ed25c56ffd952546f7ed007ffb1e1539dc3b57015a/userpath-1.9.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/66/32/ad9944c9716360c82fb62516aca72bdeaedf7991483383f3a06734cb2cf4/uv-0.6.5-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/c2/eb/c6db6e3001d58c6a9e67c74bb7b4206767caa3ccc28c6b9eaf4c23fb4e34/virtualenv-20.29.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/fd/84/fd2ba7aafacbad3c4201d395674fc6348826569da3c0937e75505ead3528/wcwidth-0.2.13-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/60/e8/c0e05e4684d13459f93d312077a9a2efbe04d59c393bc2b8802248c908d4/webcolors-24.11.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f4/24/2a3e3df732393fed8b3ebf2ec078f05546de641fe1b667ee316ec1dcf3b7/webencodings-0.5.1-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/5a/84/44687a29792a70e111c5c477230a72c4b957d88d16141199bf9acb7537a3/websocket_client-1.8.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/fa/18/89ac62eac46b69948bf35fcd90d37103f38722968e2981f752d69081ec4d/zstandard-0.23.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: . + docs: + channels: + - url: https://conda.anaconda.org/conda-forge/ + indexes: + - https://pypi.org/simple + packages: + linux-64: + - conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.4-h5888daf_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h767d61c_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.6.4-hb9d3cd8_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-h4bc722e_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.50.0-hb9d3cd8_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/nodejs-22.12.0-hf235a45_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.1-h7b32b05_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pip-25.0.1-pyh145f28c_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.13.2-hf636f53_101_cp313.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.13-5_cp313.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025a-h78e105d_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-hb9d3cd8_2.conda + - pypi: https://files.pythonhosted.org/packages/8d/3f/95338030883d8c8b91223b4e21744b04d11b161a3ef117295d8241f50ab4/accessible_pygments-0.0.5-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/7e/b3/6b4067be973ae96ba0d615946e314c5ae35f9f993eca561b356540bb0c2b/alabaster-1.0.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/46/eb/e7f063ad1fec6b3178a3cd82d1a3c4de82cccf283fc42746168188e1cdd5/anyio-4.8.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/a4/6a/e8a041599e78b6b3752da48000b14c8d1e8a04ded09c88c714ba047f34f5/argon2_cffi-23.1.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ec/f7/378254e6dd7ae6f31fe40c8649eea7d4832a42243acaf0f1fff9083b2bed/argon2_cffi_bindings-21.2.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/f8/ed/e97229a566617f2ae958a6b13e7cc0f585470eac730a73e9e82c32a3cdd2/arrow-1.3.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/25/8a/c46dcc25341b5bce5472c718902eb3d38600a903b14fa6aeecef3f21a46f/asttokens-3.0.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/fa/9f/3c3503693386c4b0f245eaf5ca6198e3b28879ca0a40bde6b0e319793453/async_lru-2.0.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/fc/30/d4986a882011f9df997a55e6becd864812ccfcd821d64aac8570ee39f719/attrs-25.1.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b7/b8/3fe70c75fe32afc4bb507f75563d39bc5642255d1d94f1f23604725780bf/babel-2.17.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f9/49/6abb616eb3cbab6a7cca303dc02fdf3836de2e0b834bf966a7f5271a34d8/beautifulsoup4-4.13.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/fc/55/96142937f66150805c25c4d0f31ee4132fd33497753400734f9dfdcbdc66/bleach-6.2.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/26/9f/1aab65a6c0db35f43c4d1b4f580e8df53914310afc10ae0397d29d697af4/cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/c5/55/51844dd50c4fc7a33b653bfaba4c2456f06955289ca770a5dbd5fd267374/cfgv-3.4.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/52/ed/b7f4f07de100bdb95c1756d3a4d17b90c1a3c53715c1a476f8738058e0fa/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/7e/d4/7ebdbd03970677812aac39c869717059dbb71a4cfc033ca6e5221787892c/click-8.1.8-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e6/75/49e5bfe642f71f272236b5b2d2691cf915a7283cc0ceda56357b61daa538/comm-0.2.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/78/2b/999b2a1e1ba2206f2d3bca267d68f350beb2b048a41ea827e08ce7260098/cryptography-44.0.2-cp39-abi3-manylinux_2_28_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/ec/ed/db4b10ff3b5bb30fe41d9e86444a08bb6448e4d8265e7768450b8408dd36/debugpy-1.8.13-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/4e/8c/f3147f5c4b73e7550fe5f9352eaa956ae838d5c51eb58e7a25b9f3e2643b/decorator-5.2.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/07/6c/aa3f2f849e01cb6a001cd8554a88d4c77c5c1a31c95bdf1cf9301e6d9ef4/defusedxml-0.7.1-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/91/a1/cf2472db20f7ce4a6be1253a81cfdf85ad9c7885ffbed7047fb72c24cf87/distlib-0.3.9-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/8f/d7/9322c609343d929e75e7e5e6255e614fcc67572cfd083959cdef3b7aad79/docutils-0.21.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/7b/8f/c4d9bafc34ad7ad5d8dc16dd1347ee0e507a52c3adb6bfa8887e1c6a26ba/executing-2.2.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/90/2b/0817a2b257fe88725c25589d89aec060581aabf668707a8d03b2e9e0cb2a/fastjsonschema-2.21.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/89/ec/00d68c4ddfedfe64159999e5f8a98fb8442729a63e2077eb9dcd89623d27/filelock-3.17.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/cf/58/8acf1b3e91c58313ce5cb67df61001fc9dcd21be4fadb76c1a2d540e09ed/fqdn-1.5.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/95/04/ff642e65ad6b90db43e668d70ffb6736436c7ce41fcc549f4e9472234127/h11-0.14.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/85/c6/ad910cdb79600af0100b7c4f7093eb4b95a2b44e589e66b6b938b09cc6f9/hatch-1.14.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/08/e7/ae38d7a6dfba0533684e0b2136817d667588ae3ec984c1a4e5df5eb88482/hatchling-1.27.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/87/f5/72347bc88306acb359581ac4d52f23c0ef445b57157adedb9aee0cd689d2/httpcore-1.0.7-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/6e/aa/8caf6a0a3e62863cbb9dab27135660acba46903b703e224f14f447e57934/hyperlink-21.0.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/78/8c/4bfcab2d8286473b8d83ea742716f4b79290172e75f91142bc1534b05b9a/identify-2.6.8-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ff/62/85c4c919272577931d407be5ba5d71c20f0b616d31a0befe0ae45bb79abd/imagesize-1.4.1-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/94/5c/368ae6c01c7628438358e6d337c19b05425727fbb221d2a3c4303c372f42/ipykernel-6.29.5-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/28/39/fda74f8215ef94a812dd780073c61a826a88a01e51f627a3454f7ae6951d/ipython-9.0.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/d9/33/1f075bf72b0b747cb3288d011319aaf64083cf2efef8354174e3ed4540e2/ipython_pygments_lexers-1.1.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/7b/55/e5326141505c5d5e34c5e0935d2908a74e4561eca44108fbfb9c13d2911a/isoduration-20.11.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/7f/66/b15ce62552d84bbfcec9a4873ab79d993a1dd4edb922cbfccae192bd5b5f/jaraco.classes-3.4.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ff/db/0c52c4cf5e4bd9f5d7135ec7669a3a767af21b3a308e1ed3674881e52b62/jaraco.context-6.0.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/9f/4f/24b319316142c44283d7540e76c7b5a6dbd5db623abd86bb7b3491c21018/jaraco.functools-4.1.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c0/5a/9cac0c82afec3d09ccd97c8b6502d48f165f9124db81b4bcb90b4af974ee/jedi-0.19.2-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b2/a3/e137168c9c44d18eff0376253da9f1e9234d0239e0ee230d2fee6cea8e55/jeepney-0.9.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/aa/42/797895b952b682c3dafe23b1834507ee7f02f4d6299b65aaa61425763278/json5-0.10.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/71/92/5e77f98553e9e75130c78900d000368476aed74276eb8ae8796f65f00918/jsonpointer-3.0.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/69/4a/4f9dbeb84e8850557c02365a0eee0649abe5eb1d84af92a25731c6c0f922/jsonschema-4.23.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/1c/24/83349ac2189cc2435e84da3f69ba3c97314d3c0622628e55171c6798ed80/jsonschema_specifications-2023.7.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/11/85/b0394e0b6fcccd2c1eeefc230978a6f8cb0c5df1e4cd3e7625735a0d7d1e/jupyter_client-8.6.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c9/fb/108ecd1fe961941959ad0ee4e12ee7b8b1477247f30b1fdfd83ceaf017f0/jupyter_core-5.7.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e2/48/577993f1f99c552f18a0428731a755e06171f9902fa118c379eb7c04ea22/jupyter_events-0.12.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/07/e0/7bd7cff65594fd9936e2f9385701e44574fc7d721331ff676ce440b14100/jupyter_lsp-2.2.5-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e2/a2/89eeaf0bb954a123a909859fa507fa86f96eb61b62dc30667b60dbd5fdaf/jupyter_server-2.15.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/07/2d/2b32cdbe8d2a602f697a649798554e4f072115438e92249624e532e8aca6/jupyter_server_terminals-0.5.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/03/3c/82e775e8af2955206aa089bc065660760fa4b415c52e7ce3ebf6d5e9fa38/jupyterlab-4.4.0b0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/54/09/2032e7d15c544a0e3cd831c51d77a8ca57f7555b2e1b2922142eddb02a84/jupyterlab_server-2.27.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/d3/32/da7f44bcb1105d3e88a0b74ebdca50c59121d2ddf71c9e34ba47df7f3a56/keyring-25.6.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/0c/91/96cf928db8236f1bfab6ce15ad070dfdd02ed88261c2afafd4b43575e9e9/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/8f/8e/9ad090d3553c280a8060fbf6e24dc1c0c29704ee7d1c372f0c174aa59285/matplotlib_inline-0.1.7-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/a7/f7/7782a043553ee469c1ff49cfa1cdace2d6bf99a1f333cf38676b3ddf30da/mdit_py_plugins-0.4.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/12/92/30b4e54c4d7c48c06db61595cffbbf4f19588ea177896f9b78f0fbe021fd/mistune-3.1.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/23/62/0fe302c6d1be1c777cab0616e6302478251dfbf9055ad426f5d0def75c89/more_itertools-10.6.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/5f/df/76d0321c3797b54b60fef9ec3bd6f4cfd124b9e422182156a1dd418722cf/myst_parser-4.0.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/cc/9a/cd673b2f773a12c992f41309ef81b99da1690426bd2f96957a7ade0d3ed7/nbconvert-7.16.6-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/49/2d/8c8e635bcc6757573d311bb3c5445426382f280da32b8cd6d82d501ef4a4/nbsphinx-0.9.7-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/d2/1d/1b658dbd2b9fa9c4c9f32accbfc0205d532c8c6194dc0f2a4c0428e7128a/nodeenv-1.9.1-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f9/33/bd5b9137445ea4b680023eb0469b2bb969d61303dedb2aac6560ff3d14a1/notebook_shim-0.2.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/2c/ab/fc8290c6a4c722e5514d80f62b2dc4c4df1a68a41d1364e625c35990fcf3/overrides-7.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ef/af/4fbc8cab944db5d21b7e2a5b8e9211a03a79852b1157e2c102fcc61ac440/pandocfilters-1.5.1-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c6/ac/dac4a63f978e4dcb3c6d3a78c4d8e0192a113d288502a1216950c41b1027/parso-0.8.4-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/3c/a6/bc1012356d8ece4d66dd75c4b9fc6c1f6650ddd5991e421177d9f8f671be/platformdirs-4.3.6-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/88/5f/e351af9a41f866ac3f1fac4ca0613908d9a41741cfcf2228f4ad853b697d/pluggy-1.5.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/43/b3/df14c580d82b9627d173ceea305ba898dca135feb360b6d84019d0803d3b/pre_commit-4.1.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ff/c2/ab7d37426c179ceb9aeb109a85cda8948bb269b7561a0be870cc656eefe4/prometheus_client-0.21.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e4/ea/d836f008d33151c7a1f62caf3d8dd782e4d15f6a43897f64480c2b8de2ad/prompt_toolkit-3.0.50-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/bf/b9/b0eb3f3cbcb734d930fdf839431606844a825b23eaf9a6ab371edac8162c/psutil-7.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/22/a6/858897256d0deac81a172289110f31629fc4cee19b6f01283303e18c8db3/ptyprocess-0.7.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e2/0d/8ba33fa83a7dcde13eb3c1c2a0c1cc29950a048bfed6d9b0d8b6bd710b4c/pydata_sphinx_theme-0.16.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/54/4c/a741dddab6ad96f257d90cb4d23067ffadac526c9cab3a99ca6ce3c05477/pyenchant-3.2.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/08/20/0f2523b9e50a8052bc6a8b732dfc8568abbdc42010aef03a2d750bdab3b2/python_json_logger-3.3.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/04/24/b7721e4845c2f162d26f50521b825fb061bc0a5afcf9a386840f23ea19fa/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/c9/48/15d5f415504572dd4b92b52db5de7a5befc76bb75340ba9f36f71306a66d/pyzmq-26.2.1-cp313-cp313-manylinux_2_28_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/be/8e/56d6f1e2d591f4d6cbcba446cac4a1b0dc4f584537e2071d9bcee8eeab6b/referencing-0.30.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/7b/44/4e421b96b67b2daff264473f7465db72fbdf36a07e05494f50300cc7b0c6/rfc3339_validator-0.1.4-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/9e/51/17023c0f8f1869d8806b979a2bffa3f861f26a3f1a66b094288323fba52f/rfc3986_validator-0.1.1-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/19/71/39c7c0d87f8d4e6c020a393182060eaefeeae6c01dab6a84ec346f2567df/rich-13.9.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f6/55/b3c18c04a460d951bf8e91f2abf46ce5b6426fb69784166a6a25827cb90a/rpds_py-0.23.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/54/24/b4293291fa1dd830f353d2cb163295742fa87f179fcc8a20a306a81978b7/SecretStorage-3.3.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/40/b0/4562db6223154aa4e22f939003cb92514c79f3d4dccca3444253fd17f902/Send2Trash-1.8.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/a9/38/7d7362e031bd6dc121e5081d8cb6aa6f6fedf2b67bf889962134c6da4705/setuptools-75.8.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e0/f9/0595336914c5619e5f28a1fb793285925a8cd4b432c9da0a987836c7f822/shellingham-1.5.4-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ed/dc/c02e01294f7265e63a7315fe086dd1df7dacb9f840a804da846b96d01b96/snowballstemmer-2.2.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/d1/c2/fe97d779f3ef3b15f05c94a2f1e3d21732574ed441687474db9d342a7315/soupsieve-2.6-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/26/60/1ddff83a56d33aaf6f10ec8ce84b4c007d9368b21008876fceda7e7381ef/sphinx-8.1.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/5d/85/9ebeae2f76e9e77b952f4b274c27238156eae7979c5421fba91a28f4970d/sphinxcontrib_applehelp-2.0.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/35/7a/987e583882f985fe4d7323774889ec58049171828b58c2217e7f79cdf44e/sphinxcontrib_devhelp-2.0.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/70/12/d9b6bf8093906108017f3cdbecae3e2b3b4963c5112b28f0cd482b433182/sphinxcontrib_github_alt-1.2-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/0a/7b/18a8c0bcec9182c05a0b3ec2a776bba4ead82750a55ff798e8d406dae604/sphinxcontrib_htmlhelp-2.1.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c2/42/4c8646762ee83602e3fb3fbe774c2fac12f317deb0b5dbeeedd2d3ba4b77/sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/27/83/859ecdd180cacc13b1f7e857abf8582a64552ea7a061057a6c716e790fce/sphinxcontrib_qthelp-2.0.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/52/a7/d2782e4e3f77c8450f727ba74a8f12756d5ba823d81b941f1b04da9d033a/sphinxcontrib_serializinghtml-2.0.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/03/30/05efe7261eac789cf3ba28ef5dfb76d719df30baae6881cb54a6801c0e8f/sphinxcontrib_spelling-8.0.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f1/7b/ce1eafaf1a76852e2ec9b22edecf1daa58175c090266e9f6c64afcd81d91/stack_data-0.6.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/6a/9e/2064975477fdc887e47ad42157e214526dcad8f317a948dee17e1659a62f/terminado-0.18.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e6/34/ebdc18bae6aa14fbee1a08b63c015c72b64868ff7dae68808ab500c492e2/tinycss2-1.4.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c7/18/c86eb8e0202e32dd3df50d43d7ff9854f8e0603945ff398974c1d91ac1ef/tomli_w-1.2.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f9/b6/a447b5e4ec71e13871be01ba81f5dfc9d0af7e473da256ff46bc0e24026f/tomlkit-0.13.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/22/55/b78a464de78051a30599ceb6983b01d8f732e6f69bf37b4ed07f642ac0fc/tornado-6.4.2-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ef/bf/44195f3d9c3c4fe4cccf1c261c80d50781b9e8a0a6febf084c09c66740ff/trove_classifiers-2025.3.3.18-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/0f/b3/ca41df24db5eb99b00d97f89d7674a90cb6b3134c52fb8121b6d8d30f15c/types_python_dateutil-2.9.0.20241206-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/26/9f/ad63fc0248c5379346306f8668cda6e2e2e9c95e01216d2b8ffd9ff037d0/typing_extensions-4.12.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e7/00/3fca040d7cf8a32776d3d81a00c8ee7457e00f80c649f1e4a863c8321ae9/uri_template-1.3.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c8/19/4ec628951a74043532ca2cf5d97b7b14863931476d117c471e8e2b1eb39f/urllib3-2.3.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/43/99/3ec6335ded5b88c2f7ed25c56ffd952546f7ed007ffb1e1539dc3b57015a/userpath-1.9.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/66/32/ad9944c9716360c82fb62516aca72bdeaedf7991483383f3a06734cb2cf4/uv-0.6.5-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/c2/eb/c6db6e3001d58c6a9e67c74bb7b4206767caa3ccc28c6b9eaf4c23fb4e34/virtualenv-20.29.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/fd/84/fd2ba7aafacbad3c4201d395674fc6348826569da3c0937e75505ead3528/wcwidth-0.2.13-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/60/e8/c0e05e4684d13459f93d312077a9a2efbe04d59c393bc2b8802248c908d4/webcolors-24.11.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f4/24/2a3e3df732393fed8b3ebf2ec078f05546de641fe1b667ee316ec1dcf3b7/webencodings-0.5.1-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/5a/84/44687a29792a70e111c5c477230a72c4b957d88d16141199bf9acb7537a3/websocket_client-1.8.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/fa/18/89ac62eac46b69948bf35fcd90d37103f38722968e2981f752d69081ec4d/zstandard-0.23.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: . + test: + channels: + - url: https://conda.anaconda.org/conda-forge/ + indexes: + - https://pypi.org/simple + packages: + linux-64: + - conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.4-h5888daf_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h767d61c_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.6.4-hb9d3cd8_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-h4bc722e_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.50.0-hb9d3cd8_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/nodejs-22.12.0-hf235a45_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.1-h7b32b05_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pip-25.0.1-pyh145f28c_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.13.2-hf636f53_101_cp313.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.13-5_cp313.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025a-h78e105d_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-hb9d3cd8_2.conda + - pypi: https://files.pythonhosted.org/packages/8d/3f/95338030883d8c8b91223b4e21744b04d11b161a3ef117295d8241f50ab4/accessible_pygments-0.0.5-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/7e/b3/6b4067be973ae96ba0d615946e314c5ae35f9f993eca561b356540bb0c2b/alabaster-1.0.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/46/eb/e7f063ad1fec6b3178a3cd82d1a3c4de82cccf283fc42746168188e1cdd5/anyio-4.8.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/a4/6a/e8a041599e78b6b3752da48000b14c8d1e8a04ded09c88c714ba047f34f5/argon2_cffi-23.1.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ec/f7/378254e6dd7ae6f31fe40c8649eea7d4832a42243acaf0f1fff9083b2bed/argon2_cffi_bindings-21.2.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/f8/ed/e97229a566617f2ae958a6b13e7cc0f585470eac730a73e9e82c32a3cdd2/arrow-1.3.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/39/e3/893e8757be2612e6c266d9bb58ad2e3651524b5b40cf56761e985a28b13e/asgiref-3.8.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/25/8a/c46dcc25341b5bce5472c718902eb3d38600a903b14fa6aeecef3f21a46f/asttokens-3.0.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/fa/9f/3c3503693386c4b0f245eaf5ca6198e3b28879ca0a40bde6b0e319793453/async_lru-2.0.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/fc/30/d4986a882011f9df997a55e6becd864812ccfcd821d64aac8570ee39f719/attrs-25.1.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b7/b8/3fe70c75fe32afc4bb507f75563d39bc5642255d1d94f1f23604725780bf/babel-2.17.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f9/49/6abb616eb3cbab6a7cca303dc02fdf3836de2e0b834bf966a7f5271a34d8/beautifulsoup4-4.13.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/fc/55/96142937f66150805c25c4d0f31ee4132fd33497753400734f9dfdcbdc66/bleach-6.2.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/26/9f/1aab65a6c0db35f43c4d1b4f580e8df53914310afc10ae0397d29d697af4/cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/c5/55/51844dd50c4fc7a33b653bfaba4c2456f06955289ca770a5dbd5fd267374/cfgv-3.4.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/52/ed/b7f4f07de100bdb95c1756d3a4d17b90c1a3c53715c1a476f8738058e0fa/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/7e/d4/7ebdbd03970677812aac39c869717059dbb71a4cfc033ca6e5221787892c/click-8.1.8-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e6/75/49e5bfe642f71f272236b5b2d2691cf915a7283cc0ceda56357b61daa538/comm-0.2.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/0c/4b/373be2be7dd42f2bcd6964059fd8fa307d265a29d2b9bcf1d044bcc156ed/coverage-7.6.12-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/78/2b/999b2a1e1ba2206f2d3bca267d68f350beb2b048a41ea827e08ce7260098/cryptography-44.0.2-cp39-abi3-manylinux_2_28_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/ec/ed/db4b10ff3b5bb30fe41d9e86444a08bb6448e4d8265e7768450b8408dd36/debugpy-1.8.13-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/4e/8c/f3147f5c4b73e7550fe5f9352eaa956ae838d5c51eb58e7a25b9f3e2643b/decorator-5.2.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/07/6c/aa3f2f849e01cb6a001cd8554a88d4c77c5c1a31c95bdf1cf9301e6d9ef4/defusedxml-0.7.1-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/91/a1/cf2472db20f7ce4a6be1253a81cfdf85ad9c7885ffbed7047fb72c24cf87/distlib-0.3.9-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/8f/d7/9322c609343d929e75e7e5e6255e614fcc67572cfd083959cdef3b7aad79/docutils-0.21.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/7b/8f/c4d9bafc34ad7ad5d8dc16dd1347ee0e507a52c3adb6bfa8887e1c6a26ba/executing-2.2.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/90/2b/0817a2b257fe88725c25589d89aec060581aabf668707a8d03b2e9e0cb2a/fastjsonschema-2.21.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/89/ec/00d68c4ddfedfe64159999e5f8a98fb8442729a63e2077eb9dcd89623d27/filelock-3.17.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/7f/b8/b830fc43663246c3f3dd1ae7dca4847b96ed992537e85311e27fa41ac40e/flaky-3.8.1-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/cf/58/8acf1b3e91c58313ce5cb67df61001fc9dcd21be4fadb76c1a2d540e09ed/fqdn-1.5.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/95/04/ff642e65ad6b90db43e668d70ffb6736436c7ce41fcc549f4e9472234127/h11-0.14.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/85/c6/ad910cdb79600af0100b7c4f7093eb4b95a2b44e589e66b6b938b09cc6f9/hatch-1.14.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/08/e7/ae38d7a6dfba0533684e0b2136817d667588ae3ec984c1a4e5df5eb88482/hatchling-1.27.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/87/f5/72347bc88306acb359581ac4d52f23c0ef445b57157adedb9aee0cd689d2/httpcore-1.0.7-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/6e/aa/8caf6a0a3e62863cbb9dab27135660acba46903b703e224f14f447e57934/hyperlink-21.0.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/78/8c/4bfcab2d8286473b8d83ea742716f4b79290172e75f91142bc1534b05b9a/identify-2.6.8-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ff/62/85c4c919272577931d407be5ba5d71c20f0b616d31a0befe0ae45bb79abd/imagesize-1.4.1-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/a4/ed/1f1afb2e9e7f38a545d628f864d562a5ae64fe6f7a10e28ffb9b185b4e89/importlib_resources-6.5.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/94/5c/368ae6c01c7628438358e6d337c19b05425727fbb221d2a3c4303c372f42/ipykernel-6.29.5-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/28/39/fda74f8215ef94a812dd780073c61a826a88a01e51f627a3454f7ae6951d/ipython-9.0.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/d9/33/1f075bf72b0b747cb3288d011319aaf64083cf2efef8354174e3ed4540e2/ipython_pygments_lexers-1.1.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/15/aa/0aca39a37d3c7eb941ba736ede56d689e7be91cab5d9ca846bde3999eba6/isodate-0.7.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/7b/55/e5326141505c5d5e34c5e0935d2908a74e4561eca44108fbfb9c13d2911a/isoduration-20.11.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/7f/66/b15ce62552d84bbfcec9a4873ab79d993a1dd4edb922cbfccae192bd5b5f/jaraco.classes-3.4.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ff/db/0c52c4cf5e4bd9f5d7135ec7669a3a767af21b3a308e1ed3674881e52b62/jaraco.context-6.0.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/9f/4f/24b319316142c44283d7540e76c7b5a6dbd5db623abd86bb7b3491c21018/jaraco.functools-4.1.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c0/5a/9cac0c82afec3d09ccd97c8b6502d48f165f9124db81b4bcb90b4af974ee/jedi-0.19.2-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b2/a3/e137168c9c44d18eff0376253da9f1e9234d0239e0ee230d2fee6cea8e55/jeepney-0.9.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/aa/42/797895b952b682c3dafe23b1834507ee7f02f4d6299b65aaa61425763278/json5-0.10.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/71/92/5e77f98553e9e75130c78900d000368476aed74276eb8ae8796f65f00918/jsonpointer-3.0.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/69/4a/4f9dbeb84e8850557c02365a0eee0649abe5eb1d84af92a25731c6c0f922/jsonschema-4.23.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/cb/58/3485da8cb93d2f393bce453adeef16896751f14ba3e2024bc21dc9597646/jsonschema_path-0.3.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/d9/a2/7759a4268e1d6d74559de8fb5be6c77d621b822ae64d28ab4f7467c22f63/jsonschema_spec-0.2.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/1c/24/83349ac2189cc2435e84da3f69ba3c97314d3c0622628e55171c6798ed80/jsonschema_specifications-2023.7.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/11/85/b0394e0b6fcccd2c1eeefc230978a6f8cb0c5df1e4cd3e7625735a0d7d1e/jupyter_client-8.6.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c9/fb/108ecd1fe961941959ad0ee4e12ee7b8b1477247f30b1fdfd83ceaf017f0/jupyter_core-5.7.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e2/48/577993f1f99c552f18a0428731a755e06171f9902fa118c379eb7c04ea22/jupyter_events-0.12.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/07/e0/7bd7cff65594fd9936e2f9385701e44574fc7d721331ff676ce440b14100/jupyter_lsp-2.2.5-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e2/a2/89eeaf0bb954a123a909859fa507fa86f96eb61b62dc30667b60dbd5fdaf/jupyter_server-2.15.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/07/2d/2b32cdbe8d2a602f697a649798554e4f072115438e92249624e532e8aca6/jupyter_server_terminals-0.5.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/03/3c/82e775e8af2955206aa089bc065660760fa4b415c52e7ce3ebf6d5e9fa38/jupyterlab-4.4.0b0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/54/09/2032e7d15c544a0e3cd831c51d77a8ca57f7555b2e1b2922142eddb02a84/jupyterlab_server-2.27.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/d3/32/da7f44bcb1105d3e88a0b74ebdca50c59121d2ddf71c9e34ba47df7f3a56/keyring-25.6.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/2c/f0/f02e2d150d581a294efded4020094a371bbab42423fe78625ac18854d89b/lazy-object-proxy-1.10.0.tar.gz + - pypi: https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/0c/91/96cf928db8236f1bfab6ce15ad070dfdd02ed88261c2afafd4b43575e9e9/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/8f/8e/9ad090d3553c280a8060fbf6e24dc1c0c29704ee7d1c372f0c174aa59285/matplotlib_inline-0.1.7-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/a7/f7/7782a043553ee469c1ff49cfa1cdace2d6bf99a1f333cf38676b3ddf30da/mdit_py_plugins-0.4.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/12/92/30b4e54c4d7c48c06db61595cffbbf4f19588ea177896f9b78f0fbe021fd/mistune-3.1.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/23/62/0fe302c6d1be1c777cab0616e6302478251dfbf9055ad426f5d0def75c89/more_itertools-10.6.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/5f/df/76d0321c3797b54b60fef9ec3bd6f4cfd124b9e422182156a1dd418722cf/myst_parser-4.0.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/cc/9a/cd673b2f773a12c992f41309ef81b99da1690426bd2f96957a7ade0d3ed7/nbconvert-7.16.6-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/49/2d/8c8e635bcc6757573d311bb3c5445426382f280da32b8cd6d82d501ef4a4/nbsphinx-0.9.7-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/2c/5c/eb1e3ce54c4e94c7734b3831756c63f21badb3de91a98d77b9e23c0ca76a/nbval-0.11.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/d2/1d/1b658dbd2b9fa9c4c9f32accbfc0205d532c8c6194dc0f2a4c0428e7128a/nodeenv-1.9.1-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f9/33/bd5b9137445ea4b680023eb0469b2bb969d61303dedb2aac6560ff3d14a1/notebook_shim-0.2.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/3c/b0/7e386f89c336d21577e01b77efbba60edfe1b5732124b746bc1d02efdd72/openapi_core-0.18.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/21/c6/ad0fba32775ae749016829dace42ed80f4407b171da41313d1a3a5f102e4/openapi_schema_validator-0.6.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/2b/4d/e744fff95aaf3aeafc968d5ba7297c8cda0d1ecb8e3acd21b25adae4d835/openapi_spec_validator-0.7.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/2c/ab/fc8290c6a4c722e5514d80f62b2dc4c4df1a68a41d1364e625c35990fcf3/overrides-7.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ef/af/4fbc8cab944db5d21b7e2a5b8e9211a03a79852b1157e2c102fcc61ac440/pandocfilters-1.5.1-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/d0/31/ba45bf0b2aa7898d81cbbfac0e88c267befb59ad91a19e36e1bc5578ddb1/parse-1.20.2-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c6/ac/dac4a63f978e4dcb3c6d3a78c4d8e0192a113d288502a1216950c41b1027/parso-0.8.4-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/7d/eb/b6260b31b1a96386c0a880edebe26f89669098acea8e0318bff6adb378fd/pathable-0.4.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/3c/a6/bc1012356d8ece4d66dd75c4b9fc6c1f6650ddd5991e421177d9f8f671be/platformdirs-4.3.6-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/88/5f/e351af9a41f866ac3f1fac4ca0613908d9a41741cfcf2228f4ad853b697d/pluggy-1.5.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/43/b3/df14c580d82b9627d173ceea305ba898dca135feb360b6d84019d0803d3b/pre_commit-4.1.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ff/c2/ab7d37426c179ceb9aeb109a85cda8948bb269b7561a0be870cc656eefe4/prometheus_client-0.21.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e4/ea/d836f008d33151c7a1f62caf3d8dd782e4d15f6a43897f64480c2b8de2ad/prompt_toolkit-3.0.50-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/bf/b9/b0eb3f3cbcb734d930fdf839431606844a825b23eaf9a6ab371edac8162c/psutil-7.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/22/a6/858897256d0deac81a172289110f31629fc4cee19b6f01283303e18c8db3/ptyprocess-0.7.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e2/0d/8ba33fa83a7dcde13eb3c1c2a0c1cc29950a048bfed6d9b0d8b6bd710b4c/pydata_sphinx_theme-0.16.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/54/4c/a741dddab6ad96f257d90cb4d23067ffadac526c9cab3a99ca6ce3c05477/pyenchant-3.2.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/51/ff/f6e8b8f39e08547faece4bd80f89d5a8de68a38b2d179cc1c4490ffa3286/pytest-7.4.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/32/12/149a568c244b58912350c7fd3b997ed6b57889a22098564cc43c3e511b76/pytest_console_scripts-1.4.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/36/3b/48e79f2cd6a61dbbd4807b4ed46cb564b4fd50a76166b1c4ea5c1d9e2371/pytest_cov-6.0.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/87/95/0166c428ea0ab4770f66de7804f2341caa9d8826d0022ce3d986d253d9c6/pytest_jupyter-0.10.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/03/27/14af9ef8321f5edc7527e47def2a21d8118c6f329a9342cc61387a0c0599/pytest_timeout-2.3.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/50/b9/3615ebfc3120bb949c3725b50793f42c3230d0175d6cfd358ea8bb6928ff/pytest_tornasync-0.6.0.post2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/08/20/0f2523b9e50a8052bc6a8b732dfc8568abbdc42010aef03a2d750bdab3b2/python_json_logger-3.3.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/04/24/b7721e4845c2f162d26f50521b825fb061bc0a5afcf9a386840f23ea19fa/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/c9/48/15d5f415504572dd4b92b52db5de7a5befc76bb75340ba9f36f71306a66d/pyzmq-26.2.1-cp313-cp313-manylinux_2_28_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/be/8e/56d6f1e2d591f4d6cbcba446cac4a1b0dc4f584537e2071d9bcee8eeab6b/referencing-0.30.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/97/ec/889fbc557727da0c34a33850950310240f2040f3b1955175fdb2b36a8910/requests_mock-1.12.1-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/7b/44/4e421b96b67b2daff264473f7465db72fbdf36a07e05494f50300cc7b0c6/rfc3339_validator-0.1.4-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/9e/51/17023c0f8f1869d8806b979a2bffa3f861f26a3f1a66b094288323fba52f/rfc3986_validator-0.1.1-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/19/71/39c7c0d87f8d4e6c020a393182060eaefeeae6c01dab6a84ec346f2567df/rich-13.9.4-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f6/55/b3c18c04a460d951bf8e91f2abf46ce5b6426fb69784166a6a25827cb90a/rpds_py-0.23.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/c2/36/dfc1ebc0081e6d39924a2cc53654497f967a084a436bb64402dfce4254d9/ruamel.yaml-0.18.10-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/54/24/b4293291fa1dd830f353d2cb163295742fa87f179fcc8a20a306a81978b7/SecretStorage-3.3.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/40/b0/4562db6223154aa4e22f939003cb92514c79f3d4dccca3444253fd17f902/Send2Trash-1.8.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/a9/38/7d7362e031bd6dc121e5081d8cb6aa6f6fedf2b67bf889962134c6da4705/setuptools-75.8.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e0/f9/0595336914c5619e5f28a1fb793285925a8cd4b432c9da0a987836c7f822/shellingham-1.5.4-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ed/dc/c02e01294f7265e63a7315fe086dd1df7dacb9f840a804da846b96d01b96/snowballstemmer-2.2.0-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/d1/c2/fe97d779f3ef3b15f05c94a2f1e3d21732574ed441687474db9d342a7315/soupsieve-2.6-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/26/60/1ddff83a56d33aaf6f10ec8ce84b4c007d9368b21008876fceda7e7381ef/sphinx-8.1.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/5d/85/9ebeae2f76e9e77b952f4b274c27238156eae7979c5421fba91a28f4970d/sphinxcontrib_applehelp-2.0.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/35/7a/987e583882f985fe4d7323774889ec58049171828b58c2217e7f79cdf44e/sphinxcontrib_devhelp-2.0.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/70/12/d9b6bf8093906108017f3cdbecae3e2b3b4963c5112b28f0cd482b433182/sphinxcontrib_github_alt-1.2-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/0a/7b/18a8c0bcec9182c05a0b3ec2a776bba4ead82750a55ff798e8d406dae604/sphinxcontrib_htmlhelp-2.1.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c2/42/4c8646762ee83602e3fb3fbe774c2fac12f317deb0b5dbeeedd2d3ba4b77/sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/27/83/859ecdd180cacc13b1f7e857abf8582a64552ea7a061057a6c716e790fce/sphinxcontrib_qthelp-2.0.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/52/a7/d2782e4e3f77c8450f727ba74a8f12756d5ba823d81b941f1b04da9d033a/sphinxcontrib_serializinghtml-2.0.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/03/30/05efe7261eac789cf3ba28ef5dfb76d719df30baae6881cb54a6801c0e8f/sphinxcontrib_spelling-8.0.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f1/7b/ce1eafaf1a76852e2ec9b22edecf1daa58175c090266e9f6c64afcd81d91/stack_data-0.6.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/56/e4/879ef1dbd6ddea1c77c0078cd59b503368b0456bcca7d063a870ca2119d3/strict-rfc3339-0.7.tar.gz + - pypi: https://files.pythonhosted.org/packages/6a/9e/2064975477fdc887e47ad42157e214526dcad8f317a948dee17e1659a62f/terminado-0.18.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e6/34/ebdc18bae6aa14fbee1a08b63c015c72b64868ff7dae68808ab500c492e2/tinycss2-1.4.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c7/18/c86eb8e0202e32dd3df50d43d7ff9854f8e0603945ff398974c1d91ac1ef/tomli_w-1.2.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f9/b6/a447b5e4ec71e13871be01ba81f5dfc9d0af7e473da256ff46bc0e24026f/tomlkit-0.13.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/22/55/b78a464de78051a30599ceb6983b01d8f732e6f69bf37b4ed07f642ac0fc/tornado-6.4.2-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/ef/bf/44195f3d9c3c4fe4cccf1c261c80d50781b9e8a0a6febf084c09c66740ff/trove_classifiers-2025.3.3.18-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/0f/b3/ca41df24db5eb99b00d97f89d7674a90cb6b3134c52fb8121b6d8d30f15c/types_python_dateutil-2.9.0.20241206-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/26/9f/ad63fc0248c5379346306f8668cda6e2e2e9c95e01216d2b8ffd9ff037d0/typing_extensions-4.12.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e7/00/3fca040d7cf8a32776d3d81a00c8ee7457e00f80c649f1e4a863c8321ae9/uri_template-1.3.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/c8/19/4ec628951a74043532ca2cf5d97b7b14863931476d117c471e8e2b1eb39f/urllib3-2.3.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/43/99/3ec6335ded5b88c2f7ed25c56ffd952546f7ed007ffb1e1539dc3b57015a/userpath-1.9.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/66/32/ad9944c9716360c82fb62516aca72bdeaedf7991483383f3a06734cb2cf4/uv-0.6.5-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/c2/eb/c6db6e3001d58c6a9e67c74bb7b4206767caa3ccc28c6b9eaf4c23fb4e34/virtualenv-20.29.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/fd/84/fd2ba7aafacbad3c4201d395674fc6348826569da3c0937e75505ead3528/wcwidth-0.2.13-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/60/e8/c0e05e4684d13459f93d312077a9a2efbe04d59c393bc2b8802248c908d4/webcolors-24.11.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f4/24/2a3e3df732393fed8b3ebf2ec078f05546de641fe1b667ee316ec1dcf3b7/webencodings-0.5.1-py2.py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/5a/84/44687a29792a70e111c5c477230a72c4b957d88d16141199bf9acb7537a3/websocket_client-1.8.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/52/24/ab44c871b0f07f491e5d2ad12c9bd7358e527510618cb1b803a88e986db1/werkzeug-3.1.3-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/fa/18/89ac62eac46b69948bf35fcd90d37103f38722968e2981f752d69081ec4d/zstandard-0.23.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: . +packages: +- conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 + sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 + md5: d7c89558ba9fa0495403155b64376d81 + license: None + purls: [] + size: 2562 + timestamp: 1578324546067 +- conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 + build_number: 16 + sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 + md5: 73aaf86a425cc6e73fcf236a5a46396d + depends: + - _libgcc_mutex 0.1 conda_forge + - libgomp >=7.5.0 + constrains: + - openmp_impl 9999 + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 23621 + timestamp: 1650670423406 +- pypi: https://files.pythonhosted.org/packages/8d/3f/95338030883d8c8b91223b4e21744b04d11b161a3ef117295d8241f50ab4/accessible_pygments-0.0.5-py3-none-any.whl + name: accessible-pygments + version: 0.0.5 + sha256: 88ae3211e68a1d0b011504b2ffc1691feafce124b845bd072ab6f9f66f34d4b7 + requires_dist: + - pygments>=1.5 + - pillow ; extra == 'dev' + - pkginfo>=1.10 ; extra == 'dev' + - playwright ; extra == 'dev' + - pre-commit ; extra == 'dev' + - setuptools ; extra == 'dev' + - twine>=5.0 ; extra == 'dev' + - hypothesis ; extra == 'tests' + - pytest ; extra == 'tests' + requires_python: '>=3.9' +- pypi: https://files.pythonhosted.org/packages/7e/b3/6b4067be973ae96ba0d615946e314c5ae35f9f993eca561b356540bb0c2b/alabaster-1.0.0-py3-none-any.whl + name: alabaster + version: 1.0.0 + sha256: fc6786402dc3fcb2de3cabd5fe455a2db534b371124f1f21de8731783dec828b + requires_python: '>=3.10' +- pypi: https://files.pythonhosted.org/packages/46/eb/e7f063ad1fec6b3178a3cd82d1a3c4de82cccf283fc42746168188e1cdd5/anyio-4.8.0-py3-none-any.whl + name: anyio + version: 4.8.0 + sha256: b5011f270ab5eb0abf13385f851315585cc37ef330dd88e27ec3d34d651fd47a + requires_dist: + - exceptiongroup>=1.0.2 ; python_full_version < '3.11' + - idna>=2.8 + - sniffio>=1.1 + - typing-extensions>=4.5 ; python_full_version < '3.13' + - trio>=0.26.1 ; extra == 'trio' + - anyio[trio] ; extra == 'test' + - coverage[toml]>=7 ; extra == 'test' + - exceptiongroup>=1.2.0 ; extra == 'test' + - hypothesis>=4.0 ; extra == 'test' + - psutil>=5.9 ; extra == 'test' + - pytest>=7.0 ; extra == 'test' + - trustme ; extra == 'test' + - truststore>=0.9.1 ; python_full_version >= '3.10' and extra == 'test' + - uvloop>=0.21 ; python_full_version < '3.14' and platform_python_implementation == 'CPython' and sys_platform != 'win32' and extra == 'test' + - packaging ; extra == 'doc' + - sphinx~=7.4 ; extra == 'doc' + - sphinx-rtd-theme ; extra == 'doc' + - sphinx-autodoc-typehints>=1.2.0 ; extra == 'doc' + requires_python: '>=3.9' +- pypi: https://files.pythonhosted.org/packages/a4/6a/e8a041599e78b6b3752da48000b14c8d1e8a04ded09c88c714ba047f34f5/argon2_cffi-23.1.0-py3-none-any.whl + name: argon2-cffi + version: 23.1.0 + sha256: c670642b78ba29641818ab2e68bd4e6a78ba53b7eff7b4c3815ae16abf91c7ea + requires_dist: + - argon2-cffi-bindings + - typing-extensions ; python_full_version < '3.8' + - argon2-cffi[tests,typing] ; extra == 'dev' + - tox>4 ; extra == 'dev' + - furo ; extra == 'docs' + - myst-parser ; extra == 'docs' + - sphinx ; extra == 'docs' + - sphinx-copybutton ; extra == 'docs' + - sphinx-notfound-page ; extra == 'docs' + - hypothesis ; extra == 'tests' + - pytest ; extra == 'tests' + - mypy ; extra == 'typing' + requires_python: '>=3.7' +- pypi: https://files.pythonhosted.org/packages/ec/f7/378254e6dd7ae6f31fe40c8649eea7d4832a42243acaf0f1fff9083b2bed/argon2_cffi_bindings-21.2.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + name: argon2-cffi-bindings + version: 21.2.0 + sha256: b746dba803a79238e925d9046a63aa26bf86ab2a2fe74ce6b009a1c3f5c8f2ae + requires_dist: + - cffi>=1.0.1 + - pytest ; extra == 'dev' + - cogapp ; extra == 'dev' + - pre-commit ; extra == 'dev' + - wheel ; extra == 'dev' + - pytest ; extra == 'tests' + requires_python: '>=3.6' +- pypi: https://files.pythonhosted.org/packages/f8/ed/e97229a566617f2ae958a6b13e7cc0f585470eac730a73e9e82c32a3cdd2/arrow-1.3.0-py3-none-any.whl + name: arrow + version: 1.3.0 + sha256: c728b120ebc00eb84e01882a6f5e7927a53960aa990ce7dd2b10f39005a67f80 + requires_dist: + - python-dateutil>=2.7.0 + - types-python-dateutil>=2.8.10 + - doc8 ; extra == 'doc' + - sphinx>=7.0.0 ; extra == 'doc' + - sphinx-autobuild ; extra == 'doc' + - sphinx-autodoc-typehints ; extra == 'doc' + - sphinx-rtd-theme>=1.3.0 ; extra == 'doc' + - dateparser==1.* ; extra == 'test' + - pre-commit ; extra == 'test' + - pytest ; extra == 'test' + - pytest-cov ; extra == 'test' + - pytest-mock ; extra == 'test' + - pytz==2021.1 ; extra == 'test' + - simplejson==3.* ; extra == 'test' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/39/e3/893e8757be2612e6c266d9bb58ad2e3651524b5b40cf56761e985a28b13e/asgiref-3.8.1-py3-none-any.whl + name: asgiref + version: 3.8.1 + sha256: 3e1e3ecc849832fe52ccf2cb6686b7a55f82bb1d6aee72a58826471390335e47 + requires_dist: + - typing-extensions>=4 ; python_full_version < '3.11' + - pytest ; extra == 'tests' + - pytest-asyncio ; extra == 'tests' + - mypy>=0.800 ; extra == 'tests' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/25/8a/c46dcc25341b5bce5472c718902eb3d38600a903b14fa6aeecef3f21a46f/asttokens-3.0.0-py3-none-any.whl + name: asttokens + version: 3.0.0 + sha256: e3078351a059199dd5138cb1c706e6430c05eff2ff136af5eb4790f9d28932e2 + requires_dist: + - astroid>=2,<4 ; extra == 'astroid' + - astroid>=2,<4 ; extra == 'test' + - pytest ; extra == 'test' + - pytest-cov ; extra == 'test' + - pytest-xdist ; extra == 'test' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/fa/9f/3c3503693386c4b0f245eaf5ca6198e3b28879ca0a40bde6b0e319793453/async_lru-2.0.4-py3-none-any.whl + name: async-lru + version: 2.0.4 + sha256: ff02944ce3c288c5be660c42dbcca0742b32c3b279d6dceda655190240b99224 + requires_dist: + - typing-extensions>=4.0.0 ; python_full_version < '3.11' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/fc/30/d4986a882011f9df997a55e6becd864812ccfcd821d64aac8570ee39f719/attrs-25.1.0-py3-none-any.whl + name: attrs + version: 25.1.0 + sha256: c75a69e28a550a7e93789579c22aa26b0f5b83b75dc4e08fe092980051e1090a + requires_dist: + - cloudpickle ; platform_python_implementation == 'CPython' and extra == 'benchmark' + - hypothesis ; extra == 'benchmark' + - mypy>=1.11.1 ; python_full_version >= '3.10' and platform_python_implementation == 'CPython' and extra == 'benchmark' + - pympler ; extra == 'benchmark' + - pytest-codspeed ; extra == 'benchmark' + - pytest-mypy-plugins ; python_full_version >= '3.10' and platform_python_implementation == 'CPython' and extra == 'benchmark' + - pytest-xdist[psutil] ; extra == 'benchmark' + - pytest>=4.3.0 ; extra == 'benchmark' + - cloudpickle ; platform_python_implementation == 'CPython' and extra == 'cov' + - coverage[toml]>=5.3 ; extra == 'cov' + - hypothesis ; extra == 'cov' + - mypy>=1.11.1 ; python_full_version >= '3.10' and platform_python_implementation == 'CPython' and extra == 'cov' + - pympler ; extra == 'cov' + - pytest-mypy-plugins ; python_full_version >= '3.10' and platform_python_implementation == 'CPython' and extra == 'cov' + - pytest-xdist[psutil] ; extra == 'cov' + - pytest>=4.3.0 ; extra == 'cov' + - cloudpickle ; platform_python_implementation == 'CPython' and extra == 'dev' + - hypothesis ; extra == 'dev' + - mypy>=1.11.1 ; python_full_version >= '3.10' and platform_python_implementation == 'CPython' and extra == 'dev' + - pre-commit-uv ; extra == 'dev' + - pympler ; extra == 'dev' + - pytest-mypy-plugins ; python_full_version >= '3.10' and platform_python_implementation == 'CPython' and extra == 'dev' + - pytest-xdist[psutil] ; extra == 'dev' + - pytest>=4.3.0 ; extra == 'dev' + - cogapp ; extra == 'docs' + - furo ; extra == 'docs' + - myst-parser ; extra == 'docs' + - sphinx ; extra == 'docs' + - sphinx-notfound-page ; extra == 'docs' + - sphinxcontrib-towncrier ; extra == 'docs' + - towncrier<24.7 ; extra == 'docs' + - cloudpickle ; platform_python_implementation == 'CPython' and extra == 'tests' + - hypothesis ; extra == 'tests' + - mypy>=1.11.1 ; python_full_version >= '3.10' and platform_python_implementation == 'CPython' and extra == 'tests' + - pympler ; extra == 'tests' + - pytest-mypy-plugins ; python_full_version >= '3.10' and platform_python_implementation == 'CPython' and extra == 'tests' + - pytest-xdist[psutil] ; extra == 'tests' + - pytest>=4.3.0 ; extra == 'tests' + - mypy>=1.11.1 ; python_full_version >= '3.10' and platform_python_implementation == 'CPython' and extra == 'tests-mypy' + - pytest-mypy-plugins ; python_full_version >= '3.10' and platform_python_implementation == 'CPython' and extra == 'tests-mypy' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/b7/b8/3fe70c75fe32afc4bb507f75563d39bc5642255d1d94f1f23604725780bf/babel-2.17.0-py3-none-any.whl + name: babel + version: 2.17.0 + sha256: 4d0b53093fdfb4b21c92b5213dba5a1b23885afa8383709427046b21c366e5f2 + requires_dist: + - pytz>=2015.7 ; python_full_version < '3.9' + - tzdata ; sys_platform == 'win32' and extra == 'dev' + - backports-zoneinfo ; python_full_version < '3.9' and extra == 'dev' + - freezegun~=1.0 ; extra == 'dev' + - jinja2>=3.0 ; extra == 'dev' + - pytest-cov ; extra == 'dev' + - pytest>=6.0 ; extra == 'dev' + - pytz ; extra == 'dev' + - setuptools ; extra == 'dev' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/f9/49/6abb616eb3cbab6a7cca303dc02fdf3836de2e0b834bf966a7f5271a34d8/beautifulsoup4-4.13.3-py3-none-any.whl + name: beautifulsoup4 + version: 4.13.3 + sha256: 99045d7d3f08f91f0d656bc9b7efbae189426cd913d830294a15eefa0ea4df16 + requires_dist: + - soupsieve>1.2 + - typing-extensions>=4.0.0 + - cchardet ; extra == 'cchardet' + - chardet ; extra == 'chardet' + - charset-normalizer ; extra == 'charset-normalizer' + - html5lib ; extra == 'html5lib' + - lxml ; extra == 'lxml' + requires_python: '>=3.7.0' +- pypi: https://files.pythonhosted.org/packages/fc/55/96142937f66150805c25c4d0f31ee4132fd33497753400734f9dfdcbdc66/bleach-6.2.0-py3-none-any.whl + name: bleach + version: 6.2.0 + sha256: 117d9c6097a7c3d22fd578fcd8d35ff1e125df6736f554da4e432fdd63f31e5e + requires_dist: + - webencodings + - tinycss2>=1.1.0,<1.5 ; extra == 'css' + requires_python: '>=3.9' +- conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda + sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d + md5: 62ee74e96c5ebb0af99386de58cf9553 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc-ng >=12 + license: bzip2-1.0.6 + license_family: BSD + purls: [] + size: 252783 + timestamp: 1720974456583 +- conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda + sha256: bf832198976d559ab44d6cdb315642655547e26d826e34da67cbee6624cda189 + md5: 19f3a56f68d2fd06c516076bff482c52 + license: ISC + purls: [] + size: 158144 + timestamp: 1738298224464 +- pypi: https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl + name: certifi + version: 2025.1.31 + sha256: ca78db4565a652026a4db2bcdf68f2fb589ea80d0be70e03929ed730746b84fe + requires_python: '>=3.6' +- pypi: https://files.pythonhosted.org/packages/26/9f/1aab65a6c0db35f43c4d1b4f580e8df53914310afc10ae0397d29d697af4/cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + name: cffi + version: 1.17.1 + sha256: dd398dbc6773384a17fe0d3e7eeb8d1a21c2200473ee6806bb5e6a8e62bb73dd + requires_dist: + - pycparser + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/c5/55/51844dd50c4fc7a33b653bfaba4c2456f06955289ca770a5dbd5fd267374/cfgv-3.4.0-py2.py3-none-any.whl + name: cfgv + version: 3.4.0 + sha256: b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9 + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/52/ed/b7f4f07de100bdb95c1756d3a4d17b90c1a3c53715c1a476f8738058e0fa/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + name: charset-normalizer + version: 3.4.1 + sha256: 955f8851919303c92343d2f66165294848d57e9bba6cf6e3625485a70a038d11 + requires_python: '>=3.7' +- pypi: https://files.pythonhosted.org/packages/7e/d4/7ebdbd03970677812aac39c869717059dbb71a4cfc033ca6e5221787892c/click-8.1.8-py3-none-any.whl + name: click + version: 8.1.8 + sha256: 63c132bbbed01578a06712a2d1f497bb62d9c1c0d329b7903a866228027263b2 + requires_dist: + - colorama ; sys_platform == 'win32' + - importlib-metadata ; python_full_version < '3.8' + requires_python: '>=3.7' +- pypi: https://files.pythonhosted.org/packages/e6/75/49e5bfe642f71f272236b5b2d2691cf915a7283cc0ceda56357b61daa538/comm-0.2.2-py3-none-any.whl + name: comm + version: 0.2.2 + sha256: e6fb86cb70ff661ee8c9c14e7d36d6de3b4066f1441be4063df9c5009f0a64d3 + requires_dist: + - traitlets>=4 + - pytest ; extra == 'test' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/0c/4b/373be2be7dd42f2bcd6964059fd8fa307d265a29d2b9bcf1d044bcc156ed/coverage-7.6.12-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl + name: coverage + version: 7.6.12 + sha256: 64cbb1a3027c79ca6310bf101014614f6e6e18c226474606cf725238cf5bc2d4 + requires_dist: + - tomli ; python_full_version <= '3.11' and extra == 'toml' + requires_python: '>=3.9' +- pypi: https://files.pythonhosted.org/packages/78/2b/999b2a1e1ba2206f2d3bca267d68f350beb2b048a41ea827e08ce7260098/cryptography-44.0.2-cp39-abi3-manylinux_2_28_x86_64.whl + name: cryptography + version: 44.0.2 + sha256: b042d2a275c8cee83a4b7ae30c45a15e6a4baa65a179a0ec2d78ebb90e4f6699 + requires_dist: + - cffi>=1.12 ; platform_python_implementation != 'PyPy' + - bcrypt>=3.1.5 ; extra == 'ssh' + - nox>=2024.4.15 ; extra == 'nox' + - nox[uv]>=2024.3.2 ; python_full_version >= '3.8' and extra == 'nox' + - cryptography-vectors==44.0.2 ; extra == 'test' + - pytest>=7.4.0 ; extra == 'test' + - pytest-benchmark>=4.0 ; extra == 'test' + - pytest-cov>=2.10.1 ; extra == 'test' + - pytest-xdist>=3.5.0 ; extra == 'test' + - pretend>=0.7 ; extra == 'test' + - certifi>=2024 ; extra == 'test' + - pytest-randomly ; extra == 'test-randomorder' + - sphinx>=5.3.0 ; extra == 'docs' + - sphinx-rtd-theme>=3.0.0 ; python_full_version >= '3.8' and extra == 'docs' + - pyenchant>=3 ; extra == 'docstest' + - readme-renderer>=30.0 ; extra == 'docstest' + - sphinxcontrib-spelling>=7.3.1 ; extra == 'docstest' + - build>=1.0.0 ; extra == 'sdist' + - ruff>=0.3.6 ; extra == 'pep8test' + - mypy>=1.4 ; extra == 'pep8test' + - check-sdist ; python_full_version >= '3.8' and extra == 'pep8test' + - click>=8.0.1 ; extra == 'pep8test' + requires_python: '>=3.7,!=3.9.0,!=3.9.1' +- pypi: https://files.pythonhosted.org/packages/ec/ed/db4b10ff3b5bb30fe41d9e86444a08bb6448e4d8265e7768450b8408dd36/debugpy-1.8.13-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl + name: debugpy + version: 1.8.13 + sha256: a0bd87557f97bced5513a74088af0b84982b6ccb2e254b9312e29e8a5c4270eb + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/4e/8c/f3147f5c4b73e7550fe5f9352eaa956ae838d5c51eb58e7a25b9f3e2643b/decorator-5.2.1-py3-none-any.whl + name: decorator + version: 5.2.1 + sha256: d316bb415a2d9e2d2b3abcc4084c6502fc09240e292cd76a76afc106a1c8e04a + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/07/6c/aa3f2f849e01cb6a001cd8554a88d4c77c5c1a31c95bdf1cf9301e6d9ef4/defusedxml-0.7.1-py2.py3-none-any.whl + name: defusedxml + version: 0.7.1 + sha256: a352e7e428770286cc899e2542b6cdaedb2b4953ff269a210103ec58f6198a61 + requires_python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*' +- pypi: https://files.pythonhosted.org/packages/91/a1/cf2472db20f7ce4a6be1253a81cfdf85ad9c7885ffbed7047fb72c24cf87/distlib-0.3.9-py2.py3-none-any.whl + name: distlib + version: 0.3.9 + sha256: 47f8c22fd27c27e25a65601af709b38e4f0a45ea4fc2e710f65755fa8caaaf87 +- pypi: https://files.pythonhosted.org/packages/8f/d7/9322c609343d929e75e7e5e6255e614fcc67572cfd083959cdef3b7aad79/docutils-0.21.2-py3-none-any.whl + name: docutils + version: 0.21.2 + sha256: dafca5b9e384f0e419294eb4d2ff9fa826435bf15f15b7bd45723e8ad76811b2 + requires_python: '>=3.9' +- pypi: https://files.pythonhosted.org/packages/7b/8f/c4d9bafc34ad7ad5d8dc16dd1347ee0e507a52c3adb6bfa8887e1c6a26ba/executing-2.2.0-py2.py3-none-any.whl + name: executing + version: 2.2.0 + sha256: 11387150cad388d62750327a53d3339fad4888b39a6fe233c3afbb54ecffd3aa + requires_dist: + - asttokens>=2.1.0 ; extra == 'tests' + - ipython ; extra == 'tests' + - pytest ; extra == 'tests' + - coverage ; extra == 'tests' + - coverage-enable-subprocess ; extra == 'tests' + - littleutils ; extra == 'tests' + - rich ; python_full_version >= '3.11' and extra == 'tests' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/90/2b/0817a2b257fe88725c25589d89aec060581aabf668707a8d03b2e9e0cb2a/fastjsonschema-2.21.1-py3-none-any.whl + name: fastjsonschema + version: 2.21.1 + sha256: c9e5b7e908310918cf494a434eeb31384dd84a98b57a30bcb1f535015b554667 + requires_dist: + - colorama ; extra == 'devel' + - jsonschema ; extra == 'devel' + - json-spec ; extra == 'devel' + - pylint ; extra == 'devel' + - pytest ; extra == 'devel' + - pytest-benchmark ; extra == 'devel' + - pytest-cache ; extra == 'devel' + - validictory ; extra == 'devel' +- pypi: https://files.pythonhosted.org/packages/89/ec/00d68c4ddfedfe64159999e5f8a98fb8442729a63e2077eb9dcd89623d27/filelock-3.17.0-py3-none-any.whl + name: filelock + version: 3.17.0 + sha256: 533dc2f7ba78dc2f0f531fc6c4940addf7b70a481e269a5a3b93be94ffbe8338 + requires_dist: + - furo>=2024.8.6 ; extra == 'docs' + - sphinx-autodoc-typehints>=3 ; extra == 'docs' + - sphinx>=8.1.3 ; extra == 'docs' + - covdefaults>=2.3 ; extra == 'testing' + - coverage>=7.6.10 ; extra == 'testing' + - diff-cover>=9.2.1 ; extra == 'testing' + - pytest-asyncio>=0.25.2 ; extra == 'testing' + - pytest-cov>=6 ; extra == 'testing' + - pytest-mock>=3.14 ; extra == 'testing' + - pytest-timeout>=2.3.1 ; extra == 'testing' + - pytest>=8.3.4 ; extra == 'testing' + - virtualenv>=20.28.1 ; extra == 'testing' + - typing-extensions>=4.12.2 ; python_full_version < '3.11' and extra == 'typing' + requires_python: '>=3.9' +- pypi: https://files.pythonhosted.org/packages/7f/b8/b830fc43663246c3f3dd1ae7dca4847b96ed992537e85311e27fa41ac40e/flaky-3.8.1-py2.py3-none-any.whl + name: flaky + version: 3.8.1 + sha256: 194ccf4f0d3a22b2de7130f4b62e45e977ac1b5ccad74d4d48f3005dcc38815e + requires_python: '>=3.5' +- pypi: https://files.pythonhosted.org/packages/cf/58/8acf1b3e91c58313ce5cb67df61001fc9dcd21be4fadb76c1a2d540e09ed/fqdn-1.5.1-py3-none-any.whl + name: fqdn + version: 1.5.1 + sha256: 3a179af3761e4df6eb2e026ff9e1a3033d3587bf980a0b1b2e1e5d08d7358014 + requires_dist: + - cached-property>=1.3.0 ; python_full_version < '3.8' + requires_python: '>=2.7,!=3.0,!=3.1,!=3.2,!=3.3,!=3.4,<4' +- pypi: https://files.pythonhosted.org/packages/95/04/ff642e65ad6b90db43e668d70ffb6736436c7ce41fcc549f4e9472234127/h11-0.14.0-py3-none-any.whl + name: h11 + version: 0.14.0 + sha256: e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761 + requires_dist: + - typing-extensions ; python_full_version < '3.8' + requires_python: '>=3.7' +- pypi: https://files.pythonhosted.org/packages/85/c6/ad910cdb79600af0100b7c4f7093eb4b95a2b44e589e66b6b938b09cc6f9/hatch-1.14.0-py3-none-any.whl + name: hatch + version: 1.14.0 + sha256: b12c7a2f4aaf6db7180e35c476e1a2ad4ec7197c20c4332964599424d4918ded + requires_dist: + - click>=8.0.6 + - hatchling>=1.26.3 + - httpx>=0.22.0 + - hyperlink>=21.0.0 + - keyring>=23.5.0 + - packaging>=23.2 + - pexpect~=4.8 + - platformdirs>=2.5.0 + - rich>=11.2.0 + - shellingham>=1.4.0 + - tomli-w>=1.0 + - tomlkit>=0.11.1 + - userpath~=1.7 + - uv>=0.1.35 + - virtualenv>=20.26.6 + - zstandard<1 + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/08/e7/ae38d7a6dfba0533684e0b2136817d667588ae3ec984c1a4e5df5eb88482/hatchling-1.27.0-py3-none-any.whl + name: hatchling + version: 1.27.0 + sha256: d3a2f3567c4f926ea39849cdf924c7e99e6686c9c8e288ae1037c8fa2a5d937b + requires_dist: + - packaging>=24.2 + - pathspec>=0.10.1 + - pluggy>=1.0.0 + - tomli>=1.2.2 ; python_full_version < '3.11' + - trove-classifiers + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/87/f5/72347bc88306acb359581ac4d52f23c0ef445b57157adedb9aee0cd689d2/httpcore-1.0.7-py3-none-any.whl + name: httpcore + version: 1.0.7 + sha256: a3fff8f43dc260d5bd363d9f9cf1830fa3a458b332856f34282de498ed420edd + requires_dist: + - certifi + - h11>=0.13,<0.15 + - anyio>=4.0,<5.0 ; extra == 'asyncio' + - h2>=3,<5 ; extra == 'http2' + - socksio==1.* ; extra == 'socks' + - trio>=0.22.0,<1.0 ; extra == 'trio' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl + name: httpx + version: 0.28.1 + sha256: d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad + requires_dist: + - anyio + - certifi + - httpcore==1.* + - idna + - brotli ; platform_python_implementation == 'CPython' and extra == 'brotli' + - brotlicffi ; platform_python_implementation != 'CPython' and extra == 'brotli' + - click==8.* ; extra == 'cli' + - pygments==2.* ; extra == 'cli' + - rich>=10,<14 ; extra == 'cli' + - h2>=3,<5 ; extra == 'http2' + - socksio==1.* ; extra == 'socks' + - zstandard>=0.18.0 ; extra == 'zstd' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/6e/aa/8caf6a0a3e62863cbb9dab27135660acba46903b703e224f14f447e57934/hyperlink-21.0.0-py2.py3-none-any.whl + name: hyperlink + version: 21.0.0 + sha256: e6b14c37ecb73e89c77d78cdb4c2cc8f3fb59a885c5b3f819ff4ed80f25af1b4 + requires_dist: + - idna>=2.5 + - typing ; python_full_version < '3.5' + requires_python: '>=2.6,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*' +- conda: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda + sha256: 71e750d509f5fa3421087ba88ef9a7b9be11c53174af3aa4d06aff4c18b38e8e + md5: 8b189310083baabfb622af68fd9d3ae3 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: MIT + license_family: MIT + purls: [] + size: 12129203 + timestamp: 1720853576813 +- pypi: https://files.pythonhosted.org/packages/78/8c/4bfcab2d8286473b8d83ea742716f4b79290172e75f91142bc1534b05b9a/identify-2.6.8-py2.py3-none-any.whl + name: identify + version: 2.6.8 + sha256: 83657f0f766a3c8d0eaea16d4ef42494b39b34629a4b3192a9d020d349b3e255 + requires_dist: + - ukkonen ; extra == 'license' + requires_python: '>=3.9' +- pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl + name: idna + version: '3.10' + sha256: 946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3 + requires_dist: + - ruff>=0.6.2 ; extra == 'all' + - mypy>=1.11.2 ; extra == 'all' + - pytest>=8.3.2 ; extra == 'all' + - flake8>=7.1.1 ; extra == 'all' + requires_python: '>=3.6' +- pypi: https://files.pythonhosted.org/packages/ff/62/85c4c919272577931d407be5ba5d71c20f0b616d31a0befe0ae45bb79abd/imagesize-1.4.1-py2.py3-none-any.whl + name: imagesize + version: 1.4.1 + sha256: 0d8d18d08f840c19d0ee7ca1fd82490fdc3729b7ac93f49870406ddde8ef8d8b + requires_python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*' +- pypi: https://files.pythonhosted.org/packages/a4/ed/1f1afb2e9e7f38a545d628f864d562a5ae64fe6f7a10e28ffb9b185b4e89/importlib_resources-6.5.2-py3-none-any.whl + name: importlib-resources + version: 6.5.2 + sha256: 789cfdc3ed28c78b67a06acb8126751ced69a3d5f79c095a98298cd8a760ccec + requires_dist: + - zipp>=3.1.0 ; python_full_version < '3.10' + - pytest>=6,!=8.1.* ; extra == 'test' + - zipp>=3.17 ; extra == 'test' + - jaraco-test>=5.4 ; extra == 'test' + - sphinx>=3.5 ; extra == 'doc' + - jaraco-packaging>=9.3 ; extra == 'doc' + - rst-linker>=1.9 ; extra == 'doc' + - furo ; extra == 'doc' + - sphinx-lint ; extra == 'doc' + - jaraco-tidelift>=1.4 ; extra == 'doc' + - pytest-checkdocs>=2.4 ; extra == 'check' + - pytest-ruff>=0.2.1 ; sys_platform != 'cygwin' and extra == 'check' + - pytest-cov ; extra == 'cover' + - pytest-enabler>=2.2 ; extra == 'enabler' + - pytest-mypy ; extra == 'type' + requires_python: '>=3.9' +- pypi: https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl + name: iniconfig + version: 2.0.0 + sha256: b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374 + requires_python: '>=3.7' +- pypi: https://files.pythonhosted.org/packages/94/5c/368ae6c01c7628438358e6d337c19b05425727fbb221d2a3c4303c372f42/ipykernel-6.29.5-py3-none-any.whl + name: ipykernel + version: 6.29.5 + sha256: afdb66ba5aa354b09b91379bac28ae4afebbb30e8b39510c9690afb7a10421b5 + requires_dist: + - appnope ; sys_platform == 'darwin' + - comm>=0.1.1 + - debugpy>=1.6.5 + - ipython>=7.23.1 + - jupyter-client>=6.1.12 + - jupyter-core>=4.12,!=5.0.* + - matplotlib-inline>=0.1 + - nest-asyncio + - packaging + - psutil + - pyzmq>=24 + - tornado>=6.1 + - traitlets>=5.4.0 + - coverage[toml] ; extra == 'cov' + - curio ; extra == 'cov' + - matplotlib ; extra == 'cov' + - pytest-cov ; extra == 'cov' + - trio ; extra == 'cov' + - myst-parser ; extra == 'docs' + - pydata-sphinx-theme ; extra == 'docs' + - sphinx ; extra == 'docs' + - sphinx-autodoc-typehints ; extra == 'docs' + - sphinxcontrib-github-alt ; extra == 'docs' + - sphinxcontrib-spelling ; extra == 'docs' + - trio ; extra == 'docs' + - pyqt5 ; extra == 'pyqt5' + - pyside6 ; extra == 'pyside6' + - flaky ; extra == 'test' + - ipyparallel ; extra == 'test' + - pre-commit ; extra == 'test' + - pytest-asyncio>=0.23.5 ; extra == 'test' + - pytest-cov ; extra == 'test' + - pytest-timeout ; extra == 'test' + - pytest>=7.0 ; extra == 'test' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/28/39/fda74f8215ef94a812dd780073c61a826a88a01e51f627a3454f7ae6951d/ipython-9.0.1-py3-none-any.whl + name: ipython + version: 9.0.1 + sha256: 3e878273824b52e0a2280ed84f8193aba8c4ba9a6f45a438348a3d5ef1a34bd0 + requires_dist: + - colorama ; sys_platform == 'win32' + - decorator + - ipython-pygments-lexers + - jedi>=0.16 + - matplotlib-inline + - pexpect>4.3 ; sys_platform != 'emscripten' and sys_platform != 'win32' + - prompt-toolkit>=3.0.41,<3.1.0 + - pygments>=2.4.0 + - stack-data + - traitlets>=5.13.0 + - typing-extensions>=4.6 ; python_full_version < '3.12' + - black ; extra == 'black' + - docrepr ; extra == 'doc' + - exceptiongroup ; extra == 'doc' + - intersphinx-registry ; extra == 'doc' + - ipykernel ; extra == 'doc' + - ipython[test] ; extra == 'doc' + - matplotlib ; extra == 'doc' + - setuptools>=18.5 ; extra == 'doc' + - sphinx-toml==0.0.4 ; extra == 'doc' + - sphinx-rtd-theme ; extra == 'doc' + - sphinx>=1.3 ; extra == 'doc' + - typing-extensions ; extra == 'doc' + - pytest ; extra == 'test' + - pytest-asyncio<0.22 ; extra == 'test' + - testpath ; extra == 'test' + - packaging ; extra == 'test' + - ipython[test] ; extra == 'test-extra' + - curio ; extra == 'test-extra' + - matplotlib!=3.2.0 ; extra == 'test-extra' + - nbformat ; extra == 'test-extra' + - numpy>=1.23 ; extra == 'test-extra' + - pandas ; extra == 'test-extra' + - trio ; extra == 'test-extra' + - matplotlib ; extra == 'matplotlib' + - ipython[doc,matplotlib,test,test-extra] ; extra == 'all' + requires_python: '>=3.11' +- pypi: https://files.pythonhosted.org/packages/d9/33/1f075bf72b0b747cb3288d011319aaf64083cf2efef8354174e3ed4540e2/ipython_pygments_lexers-1.1.1-py3-none-any.whl + name: ipython-pygments-lexers + version: 1.1.1 + sha256: a9462224a505ade19a605f71f8fa63c2048833ce50abc86768a0d81d876dc81c + requires_dist: + - pygments + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/15/aa/0aca39a37d3c7eb941ba736ede56d689e7be91cab5d9ca846bde3999eba6/isodate-0.7.2-py3-none-any.whl + name: isodate + version: 0.7.2 + sha256: 28009937d8031054830160fce6d409ed342816b543597cece116d966c6d99e15 + requires_python: '>=3.7' +- pypi: https://files.pythonhosted.org/packages/7b/55/e5326141505c5d5e34c5e0935d2908a74e4561eca44108fbfb9c13d2911a/isoduration-20.11.0-py3-none-any.whl + name: isoduration + version: 20.11.0 + sha256: b2904c2a4228c3d44f409c8ae8e2370eb21a26f7ac2ec5446df141dde3452042 + requires_dist: + - arrow>=0.15.0 + requires_python: '>=3.7' +- pypi: https://files.pythonhosted.org/packages/7f/66/b15ce62552d84bbfcec9a4873ab79d993a1dd4edb922cbfccae192bd5b5f/jaraco.classes-3.4.0-py3-none-any.whl + name: jaraco-classes + version: 3.4.0 + sha256: f662826b6bed8cace05e7ff873ce0f9283b5c924470fe664fff1c2f00f581790 + requires_dist: + - more-itertools + - sphinx>=3.5 ; extra == 'docs' + - jaraco-packaging>=9.3 ; extra == 'docs' + - rst-linker>=1.9 ; extra == 'docs' + - furo ; extra == 'docs' + - sphinx-lint ; extra == 'docs' + - jaraco-tidelift>=1.4 ; extra == 'docs' + - pytest>=6 ; extra == 'testing' + - pytest-checkdocs>=2.4 ; extra == 'testing' + - pytest-cov ; extra == 'testing' + - pytest-mypy ; extra == 'testing' + - pytest-enabler>=2.2 ; extra == 'testing' + - pytest-ruff>=0.2.1 ; extra == 'testing' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/ff/db/0c52c4cf5e4bd9f5d7135ec7669a3a767af21b3a308e1ed3674881e52b62/jaraco.context-6.0.1-py3-none-any.whl + name: jaraco-context + version: 6.0.1 + sha256: f797fc481b490edb305122c9181830a3a5b76d84ef6d1aef2fb9b47ab956f9e4 + requires_dist: + - backports-tarfile ; python_full_version < '3.12' + - sphinx>=3.5 ; extra == 'doc' + - jaraco-packaging>=9.3 ; extra == 'doc' + - rst-linker>=1.9 ; extra == 'doc' + - furo ; extra == 'doc' + - sphinx-lint ; extra == 'doc' + - jaraco-tidelift>=1.4 ; extra == 'doc' + - pytest>=6,!=8.1.* ; extra == 'test' + - pytest-checkdocs>=2.4 ; extra == 'test' + - pytest-cov ; extra == 'test' + - pytest-mypy ; extra == 'test' + - pytest-enabler>=2.2 ; extra == 'test' + - portend ; extra == 'test' + - pytest-ruff>=0.2.1 ; sys_platform != 'cygwin' and extra == 'test' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/9f/4f/24b319316142c44283d7540e76c7b5a6dbd5db623abd86bb7b3491c21018/jaraco.functools-4.1.0-py3-none-any.whl + name: jaraco-functools + version: 4.1.0 + sha256: ad159f13428bc4acbf5541ad6dec511f91573b90fba04df61dafa2a1231cf649 + requires_dist: + - more-itertools + - pytest-checkdocs>=2.4 ; extra == 'check' + - pytest-ruff>=0.2.1 ; sys_platform != 'cygwin' and extra == 'check' + - pytest-cov ; extra == 'cover' + - sphinx>=3.5 ; extra == 'doc' + - jaraco-packaging>=9.3 ; extra == 'doc' + - rst-linker>=1.9 ; extra == 'doc' + - furo ; extra == 'doc' + - sphinx-lint ; extra == 'doc' + - jaraco-tidelift>=1.4 ; extra == 'doc' + - pytest-enabler>=2.2 ; extra == 'enabler' + - pytest>=6,!=8.1.* ; extra == 'test' + - jaraco-classes ; extra == 'test' + - pytest-mypy ; extra == 'type' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/c0/5a/9cac0c82afec3d09ccd97c8b6502d48f165f9124db81b4bcb90b4af974ee/jedi-0.19.2-py2.py3-none-any.whl + name: jedi + version: 0.19.2 + sha256: a8ef22bde8490f57fe5c7681a3c83cb58874daf72b4784de3cce5b6ef6edb5b9 + requires_dist: + - parso>=0.8.4,<0.9.0 + - jinja2==2.11.3 ; extra == 'docs' + - markupsafe==1.1.1 ; extra == 'docs' + - pygments==2.8.1 ; extra == 'docs' + - alabaster==0.7.12 ; extra == 'docs' + - babel==2.9.1 ; extra == 'docs' + - chardet==4.0.0 ; extra == 'docs' + - commonmark==0.8.1 ; extra == 'docs' + - docutils==0.17.1 ; extra == 'docs' + - future==0.18.2 ; extra == 'docs' + - idna==2.10 ; extra == 'docs' + - imagesize==1.2.0 ; extra == 'docs' + - mock==1.0.1 ; extra == 'docs' + - packaging==20.9 ; extra == 'docs' + - pyparsing==2.4.7 ; extra == 'docs' + - pytz==2021.1 ; extra == 'docs' + - readthedocs-sphinx-ext==2.1.4 ; extra == 'docs' + - recommonmark==0.5.0 ; extra == 'docs' + - requests==2.25.1 ; extra == 'docs' + - six==1.15.0 ; extra == 'docs' + - snowballstemmer==2.1.0 ; extra == 'docs' + - sphinx-rtd-theme==0.4.3 ; extra == 'docs' + - sphinx==1.8.5 ; extra == 'docs' + - sphinxcontrib-serializinghtml==1.1.4 ; extra == 'docs' + - sphinxcontrib-websupport==1.2.4 ; extra == 'docs' + - urllib3==1.26.4 ; extra == 'docs' + - flake8==5.0.4 ; extra == 'qa' + - mypy==0.971 ; extra == 'qa' + - types-setuptools==67.2.0.1 ; extra == 'qa' + - django ; extra == 'testing' + - attrs ; extra == 'testing' + - colorama ; extra == 'testing' + - docopt ; extra == 'testing' + - pytest<9.0.0 ; extra == 'testing' + requires_python: '>=3.6' +- pypi: https://files.pythonhosted.org/packages/b2/a3/e137168c9c44d18eff0376253da9f1e9234d0239e0ee230d2fee6cea8e55/jeepney-0.9.0-py3-none-any.whl + name: jeepney + version: 0.9.0 + sha256: 97e5714520c16fc0a45695e5365a2e11b81ea79bba796e26f9f1d178cb182683 + requires_dist: + - pytest ; extra == 'test' + - pytest-trio ; extra == 'test' + - pytest-asyncio>=0.17 ; extra == 'test' + - testpath ; extra == 'test' + - trio ; extra == 'test' + - async-timeout ; python_full_version < '3.11' and extra == 'test' + - trio ; extra == 'trio' + requires_python: '>=3.7' +- pypi: https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl + name: jinja2 + version: 3.1.6 + sha256: 85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67 + requires_dist: + - markupsafe>=2.0 + - babel>=2.7 ; extra == 'i18n' + requires_python: '>=3.7' +- pypi: https://files.pythonhosted.org/packages/aa/42/797895b952b682c3dafe23b1834507ee7f02f4d6299b65aaa61425763278/json5-0.10.0-py3-none-any.whl + name: json5 + version: 0.10.0 + sha256: 19b23410220a7271e8377f81ba8aacba2fdd56947fbb137ee5977cbe1f5e8dfa + requires_dist: + - build==1.2.2.post1 ; extra == 'dev' + - coverage==7.5.3 ; extra == 'dev' + - mypy==1.13.0 ; extra == 'dev' + - pip==24.3.1 ; extra == 'dev' + - pylint==3.2.3 ; extra == 'dev' + - ruff==0.7.3 ; extra == 'dev' + - twine==5.1.1 ; extra == 'dev' + - uv==0.5.1 ; extra == 'dev' + requires_python: '>=3.8.0' +- pypi: https://files.pythonhosted.org/packages/71/92/5e77f98553e9e75130c78900d000368476aed74276eb8ae8796f65f00918/jsonpointer-3.0.0-py2.py3-none-any.whl + name: jsonpointer + version: 3.0.0 + sha256: 13e088adc14fca8b6aa8177c044e12701e6ad4b28ff10e65f2267a90109c9942 + requires_python: '>=3.7' +- pypi: https://files.pythonhosted.org/packages/69/4a/4f9dbeb84e8850557c02365a0eee0649abe5eb1d84af92a25731c6c0f922/jsonschema-4.23.0-py3-none-any.whl + name: jsonschema + version: 4.23.0 + sha256: fbadb6f8b144a8f8cf9f0b89ba94501d143e50411a1278633f56a7acf7fd5566 + requires_dist: + - attrs>=22.2.0 + - importlib-resources>=1.4.0 ; python_full_version < '3.9' + - jsonschema-specifications>=2023.3.6 + - pkgutil-resolve-name>=1.3.10 ; python_full_version < '3.9' + - referencing>=0.28.4 + - rpds-py>=0.7.1 + - fqdn ; extra == 'format' + - idna ; extra == 'format' + - isoduration ; extra == 'format' + - jsonpointer>1.13 ; extra == 'format' + - rfc3339-validator ; extra == 'format' + - rfc3987 ; extra == 'format' + - uri-template ; extra == 'format' + - webcolors>=1.11 ; extra == 'format' + - fqdn ; extra == 'format-nongpl' + - idna ; extra == 'format-nongpl' + - isoduration ; extra == 'format-nongpl' + - jsonpointer>1.13 ; extra == 'format-nongpl' + - rfc3339-validator ; extra == 'format-nongpl' + - rfc3986-validator>0.1.0 ; extra == 'format-nongpl' + - uri-template ; extra == 'format-nongpl' + - webcolors>=24.6.0 ; extra == 'format-nongpl' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/cb/58/3485da8cb93d2f393bce453adeef16896751f14ba3e2024bc21dc9597646/jsonschema_path-0.3.4-py3-none-any.whl + name: jsonschema-path + version: 0.3.4 + sha256: f502191fdc2b22050f9a81c9237be9d27145b9001c55842bece5e94e382e52f8 + requires_dist: + - pyyaml>=5.1 + - pathable>=0.4.1,<0.5.0 + - referencing<0.37.0 + - requests>=2.31.0,<3.0.0 + requires_python: '>=3.8.0,<4.0.0' +- pypi: https://files.pythonhosted.org/packages/d9/a2/7759a4268e1d6d74559de8fb5be6c77d621b822ae64d28ab4f7467c22f63/jsonschema_spec-0.2.4-py3-none-any.whl + name: jsonschema-spec + version: 0.2.4 + sha256: e6dcf7056734ec6854f7888da6c08ce6c421f28aeeddce96bb90de0fb6d711ef + requires_dist: + - pyyaml>=5.1 + - pathable>=0.4.1,<0.5.0 + - referencing>=0.28.0,<0.31.0 + - requests>=2.31.0,<3.0.0 + requires_python: '>=3.8.0,<4.0.0' +- pypi: https://files.pythonhosted.org/packages/1c/24/83349ac2189cc2435e84da3f69ba3c97314d3c0622628e55171c6798ed80/jsonschema_specifications-2023.7.1-py3-none-any.whl + name: jsonschema-specifications + version: 2023.7.1 + sha256: 05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1 + requires_dist: + - importlib-resources>=1.4.0 ; python_full_version < '3.9' + - referencing>=0.28.0 + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/11/85/b0394e0b6fcccd2c1eeefc230978a6f8cb0c5df1e4cd3e7625735a0d7d1e/jupyter_client-8.6.3-py3-none-any.whl + name: jupyter-client + version: 8.6.3 + sha256: e8a19cc986cc45905ac3362915f410f3af85424b4c0905e94fa5f2cb08e8f23f + requires_dist: + - importlib-metadata>=4.8.3 ; python_full_version < '3.10' + - jupyter-core>=4.12,!=5.0.* + - python-dateutil>=2.8.2 + - pyzmq>=23.0 + - tornado>=6.2 + - traitlets>=5.3 + - ipykernel ; extra == 'docs' + - myst-parser ; extra == 'docs' + - pydata-sphinx-theme ; extra == 'docs' + - sphinx-autodoc-typehints ; extra == 'docs' + - sphinx>=4 ; extra == 'docs' + - sphinxcontrib-github-alt ; extra == 'docs' + - sphinxcontrib-spelling ; extra == 'docs' + - coverage ; extra == 'test' + - ipykernel>=6.14 ; extra == 'test' + - mypy ; extra == 'test' + - paramiko ; sys_platform == 'win32' and extra == 'test' + - pre-commit ; extra == 'test' + - pytest-cov ; extra == 'test' + - pytest-jupyter[client]>=0.4.1 ; extra == 'test' + - pytest-timeout ; extra == 'test' + - pytest<8.2.0 ; extra == 'test' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/c9/fb/108ecd1fe961941959ad0ee4e12ee7b8b1477247f30b1fdfd83ceaf017f0/jupyter_core-5.7.2-py3-none-any.whl + name: jupyter-core + version: 5.7.2 + sha256: 4f7315d2f6b4bcf2e3e7cb6e46772eba760ae459cd1f59d29eb57b0a01bd7409 + requires_dist: + - platformdirs>=2.5 + - pywin32>=300 ; platform_python_implementation != 'PyPy' and sys_platform == 'win32' + - traitlets>=5.3 + - myst-parser ; extra == 'docs' + - pydata-sphinx-theme ; extra == 'docs' + - sphinx-autodoc-typehints ; extra == 'docs' + - sphinxcontrib-github-alt ; extra == 'docs' + - sphinxcontrib-spelling ; extra == 'docs' + - traitlets ; extra == 'docs' + - ipykernel ; extra == 'test' + - pre-commit ; extra == 'test' + - pytest-cov ; extra == 'test' + - pytest-timeout ; extra == 'test' + - pytest<8 ; extra == 'test' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/e2/48/577993f1f99c552f18a0428731a755e06171f9902fa118c379eb7c04ea22/jupyter_events-0.12.0-py3-none-any.whl + name: jupyter-events + version: 0.12.0 + sha256: 6464b2fa5ad10451c3d35fabc75eab39556ae1e2853ad0c0cc31b656731a97fb + requires_dist: + - jsonschema[format-nongpl]>=4.18.0 + - packaging + - python-json-logger>=2.0.4 + - pyyaml>=5.3 + - referencing + - rfc3339-validator + - rfc3986-validator>=0.1.1 + - traitlets>=5.3 + - click ; extra == 'cli' + - rich ; extra == 'cli' + - jupyterlite-sphinx ; extra == 'docs' + - myst-parser ; extra == 'docs' + - pydata-sphinx-theme>=0.16 ; extra == 'docs' + - sphinx>=8 ; extra == 'docs' + - sphinxcontrib-spelling ; extra == 'docs' + - click ; extra == 'test' + - pre-commit ; extra == 'test' + - pytest-asyncio>=0.19.0 ; extra == 'test' + - pytest-console-scripts ; extra == 'test' + - pytest>=7.0 ; extra == 'test' + - rich ; extra == 'test' + requires_python: '>=3.9' +- pypi: https://files.pythonhosted.org/packages/07/e0/7bd7cff65594fd9936e2f9385701e44574fc7d721331ff676ce440b14100/jupyter_lsp-2.2.5-py3-none-any.whl + name: jupyter-lsp + version: 2.2.5 + sha256: 45fbddbd505f3fbfb0b6cb2f1bc5e15e83ab7c79cd6e89416b248cb3c00c11da + requires_dist: + - jupyter-server>=1.1.2 + - importlib-metadata>=4.8.3 ; python_full_version < '3.10' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/e2/a2/89eeaf0bb954a123a909859fa507fa86f96eb61b62dc30667b60dbd5fdaf/jupyter_server-2.15.0-py3-none-any.whl + name: jupyter-server + version: 2.15.0 + sha256: 872d989becf83517012ee669f09604aa4a28097c0bd90b2f424310156c2cdae3 + requires_dist: + - anyio>=3.1.0 + - argon2-cffi>=21.1 + - jinja2>=3.0.3 + - jupyter-client>=7.4.4 + - jupyter-core>=4.12,!=5.0.* + - jupyter-events>=0.11.0 + - jupyter-server-terminals>=0.4.4 + - nbconvert>=6.4.4 + - nbformat>=5.3.0 + - overrides>=5.0 + - packaging>=22.0 + - prometheus-client>=0.9 + - pywinpty>=2.0.1 ; os_name == 'nt' + - pyzmq>=24 + - send2trash>=1.8.2 + - terminado>=0.8.3 + - tornado>=6.2.0 + - traitlets>=5.6.0 + - websocket-client>=1.7 + - ipykernel ; extra == 'docs' + - jinja2 ; extra == 'docs' + - jupyter-client ; extra == 'docs' + - myst-parser ; extra == 'docs' + - nbformat ; extra == 'docs' + - prometheus-client ; extra == 'docs' + - pydata-sphinx-theme ; extra == 'docs' + - send2trash ; extra == 'docs' + - sphinx-autodoc-typehints ; extra == 'docs' + - sphinxcontrib-github-alt ; extra == 'docs' + - sphinxcontrib-openapi>=0.8.0 ; extra == 'docs' + - sphinxcontrib-spelling ; extra == 'docs' + - sphinxemoji ; extra == 'docs' + - tornado ; extra == 'docs' + - typing-extensions ; extra == 'docs' + - flaky ; extra == 'test' + - ipykernel ; extra == 'test' + - pre-commit ; extra == 'test' + - pytest-console-scripts ; extra == 'test' + - pytest-jupyter[server]>=0.7 ; extra == 'test' + - pytest-timeout ; extra == 'test' + - pytest>=7.0,<9 ; extra == 'test' + - requests ; extra == 'test' + requires_python: '>=3.9' +- pypi: https://files.pythonhosted.org/packages/07/2d/2b32cdbe8d2a602f697a649798554e4f072115438e92249624e532e8aca6/jupyter_server_terminals-0.5.3-py3-none-any.whl + name: jupyter-server-terminals + version: 0.5.3 + sha256: 41ee0d7dc0ebf2809c668e0fc726dfaf258fcd3e769568996ca731b6194ae9aa + requires_dist: + - pywinpty>=2.0.3 ; os_name == 'nt' + - terminado>=0.8.3 + - jinja2 ; extra == 'docs' + - jupyter-server ; extra == 'docs' + - mistune<4.0 ; extra == 'docs' + - myst-parser ; extra == 'docs' + - nbformat ; extra == 'docs' + - packaging ; extra == 'docs' + - pydata-sphinx-theme ; extra == 'docs' + - sphinxcontrib-github-alt ; extra == 'docs' + - sphinxcontrib-openapi ; extra == 'docs' + - sphinxcontrib-spelling ; extra == 'docs' + - sphinxemoji ; extra == 'docs' + - tornado ; extra == 'docs' + - jupyter-server>=2.0.0 ; extra == 'test' + - pytest-jupyter[server]>=0.5.3 ; extra == 'test' + - pytest-timeout ; extra == 'test' + - pytest>=7.0 ; extra == 'test' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/03/3c/82e775e8af2955206aa089bc065660760fa4b415c52e7ce3ebf6d5e9fa38/jupyterlab-4.4.0b0-py3-none-any.whl + name: jupyterlab + version: 4.4.0b0 + sha256: f875babc5b3cc7d92cb7e5e3940a84dcbc958037d9319361f44074b382877bc0 + requires_dist: + - async-lru>=1.0.0 + - httpx>=0.25.0 + - importlib-metadata>=4.8.3 ; python_full_version < '3.10' + - importlib-resources>=1.4 ; python_full_version < '3.9' + - ipykernel>=6.5.0 + - jinja2>=3.0.3 + - jupyter-core + - jupyter-lsp>=2.0.0 + - jupyter-server>=2.4.0,<3 + - jupyterlab-server>=2.27.1,<3 + - notebook-shim>=0.2 + - packaging + - setuptools>=41.1.0 + - tomli>=1.2.2 ; python_full_version < '3.11' + - tornado>=6.2.0 + - traitlets + - build ; extra == 'dev' + - bump2version ; extra == 'dev' + - coverage ; extra == 'dev' + - hatch ; extra == 'dev' + - pre-commit ; extra == 'dev' + - pytest-cov ; extra == 'dev' + - ruff==0.9.4 ; extra == 'dev' + - jsx-lexer ; extra == 'docs' + - myst-parser ; extra == 'docs' + - pydata-sphinx-theme>=0.13.0 ; extra == 'docs' + - pytest ; extra == 'docs' + - pytest-check-links ; extra == 'docs' + - pytest-jupyter ; extra == 'docs' + - sphinx-copybutton ; extra == 'docs' + - sphinx>=1.8,<8.2.0 ; extra == 'docs' + - altair==5.5.0 ; extra == 'docs-screenshots' + - ipython==8.16.1 ; extra == 'docs-screenshots' + - ipywidgets==8.1.5 ; extra == 'docs-screenshots' + - jupyterlab-geojson==3.4.0 ; extra == 'docs-screenshots' + - jupyterlab-language-pack-zh-cn==4.3.post1 ; extra == 'docs-screenshots' + - matplotlib==3.10.0 ; extra == 'docs-screenshots' + - nbconvert>=7.0.0 ; extra == 'docs-screenshots' + - pandas==2.2.3 ; extra == 'docs-screenshots' + - scipy==1.15.1 ; extra == 'docs-screenshots' + - vega-datasets==0.9.0 ; extra == 'docs-screenshots' + - coverage ; extra == 'test' + - pytest-check-links>=0.7 ; extra == 'test' + - pytest-console-scripts ; extra == 'test' + - pytest-cov ; extra == 'test' + - pytest-jupyter>=0.5.3 ; extra == 'test' + - pytest-timeout ; extra == 'test' + - pytest-tornasync ; extra == 'test' + - pytest>=7.0 ; extra == 'test' + - requests ; extra == 'test' + - requests-cache ; extra == 'test' + - virtualenv ; extra == 'test' + - copier>=9,<10 ; extra == 'upgrade-extension' + - jinja2-time<0.3 ; extra == 'upgrade-extension' + - pydantic<3.0 ; extra == 'upgrade-extension' + - pyyaml-include<3.0 ; extra == 'upgrade-extension' + - tomli-w<2.0 ; extra == 'upgrade-extension' + requires_python: '>=3.9' +- pypi: https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl + name: jupyterlab-pygments + version: 0.3.0 + sha256: 841a89020971da1d8693f1a99997aefc5dc424bb1b251fd6322462a1b8842780 + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/54/09/2032e7d15c544a0e3cd831c51d77a8ca57f7555b2e1b2922142eddb02a84/jupyterlab_server-2.27.3-py3-none-any.whl + name: jupyterlab-server + version: 2.27.3 + sha256: e697488f66c3db49df675158a77b3b017520d772c6e1548c7d9bcc5df7944ee4 + requires_dist: + - babel>=2.10 + - importlib-metadata>=4.8.3 ; python_full_version < '3.10' + - jinja2>=3.0.3 + - json5>=0.9.0 + - jsonschema>=4.18.0 + - jupyter-server>=1.21,<3 + - packaging>=21.3 + - requests>=2.31 + - autodoc-traits ; extra == 'docs' + - jinja2<3.2.0 ; extra == 'docs' + - mistune<4 ; extra == 'docs' + - myst-parser ; extra == 'docs' + - pydata-sphinx-theme ; extra == 'docs' + - sphinx ; extra == 'docs' + - sphinx-copybutton ; extra == 'docs' + - sphinxcontrib-openapi>0.8 ; extra == 'docs' + - openapi-core~=0.18.0 ; extra == 'openapi' + - ruamel-yaml ; extra == 'openapi' + - hatch ; extra == 'test' + - ipykernel ; extra == 'test' + - openapi-core~=0.18.0 ; extra == 'test' + - openapi-spec-validator>=0.6.0,<0.8.0 ; extra == 'test' + - pytest-console-scripts ; extra == 'test' + - pytest-cov ; extra == 'test' + - pytest-jupyter[server]>=0.6.2 ; extra == 'test' + - pytest-timeout ; extra == 'test' + - pytest>=7.0,<8 ; extra == 'test' + - requests-mock ; extra == 'test' + - ruamel-yaml ; extra == 'test' + - sphinxcontrib-spelling ; extra == 'test' + - strict-rfc3339 ; extra == 'test' + - werkzeug ; extra == 'test' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/d3/32/da7f44bcb1105d3e88a0b74ebdca50c59121d2ddf71c9e34ba47df7f3a56/keyring-25.6.0-py3-none-any.whl + name: keyring + version: 25.6.0 + sha256: 552a3f7af126ece7ed5c89753650eec89c7eaae8617d0aa4d9ad2b75111266bd + requires_dist: + - pywin32-ctypes>=0.2.0 ; sys_platform == 'win32' + - secretstorage>=3.2 ; sys_platform == 'linux' + - jeepney>=0.4.2 ; sys_platform == 'linux' + - importlib-metadata>=4.11.4 ; python_full_version < '3.12' + - jaraco-classes + - importlib-resources ; python_full_version < '3.9' + - jaraco-functools + - jaraco-context + - pytest>=6,!=8.1.* ; extra == 'test' + - pyfakefs ; extra == 'test' + - sphinx>=3.5 ; extra == 'doc' + - jaraco-packaging>=9.3 ; extra == 'doc' + - rst-linker>=1.9 ; extra == 'doc' + - furo ; extra == 'doc' + - sphinx-lint ; extra == 'doc' + - jaraco-tidelift>=1.4 ; extra == 'doc' + - pytest-checkdocs>=2.4 ; extra == 'check' + - pytest-ruff>=0.2.1 ; sys_platform != 'cygwin' and extra == 'check' + - pytest-cov ; extra == 'cover' + - pytest-enabler>=2.2 ; extra == 'enabler' + - pytest-mypy ; extra == 'type' + - pygobject-stubs ; extra == 'type' + - shtab ; extra == 'type' + - types-pywin32 ; extra == 'type' + - shtab>=1.1.0 ; extra == 'completion' + requires_python: '>=3.9' +- pypi: https://files.pythonhosted.org/packages/2c/f0/f02e2d150d581a294efded4020094a371bbab42423fe78625ac18854d89b/lazy-object-proxy-1.10.0.tar.gz + name: lazy-object-proxy + version: 1.10.0 + sha256: 78247b6d45f43a52ef35c25b5581459e85117225408a4128a3daf8bf9648ac69 + requires_python: '>=3.8' +- conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda + sha256: db73f38155d901a610b2320525b9dd3b31e4949215c870685fd92ea61b5ce472 + md5: 01f8d123c96816249efd255a31ad7712 + depends: + - __glibc >=2.17,<3.0.a0 + constrains: + - binutils_impl_linux-64 2.43 + license: GPL-3.0-only + license_family: GPL + purls: [] + size: 671240 + timestamp: 1740155456116 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.4-h5888daf_0.conda + sha256: 56541b98447b58e52d824bd59d6382d609e11de1f8adf20b23143e353d2b8d26 + md5: db833e03127376d461e1e13e76f09b6c + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + constrains: + - expat 2.6.4.* + license: MIT + license_family: MIT + purls: [] + size: 73304 + timestamp: 1730967041968 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_0.conda + sha256: 67a6c95e33ebc763c1adc3455b9a9ecde901850eb2fceb8e646cc05ef3a663da + md5: e3eb7806380bc8bcecba6d749ad5f026 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: MIT + license_family: MIT + purls: [] + size: 53415 + timestamp: 1739260413716 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda + sha256: 3a572d031cb86deb541d15c1875aaa097baefc0c580b54dc61f5edab99215792 + md5: ef504d1acbd74b7cc6849ef8af47dd03 + depends: + - __glibc >=2.17,<3.0.a0 + - _openmp_mutex >=4.5 + constrains: + - libgomp 14.2.0 h767d61c_2 + - libgcc-ng ==14.2.0=*_2 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + purls: [] + size: 847885 + timestamp: 1740240653082 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda + sha256: fb7558c328b38b2f9d2e412c48da7890e7721ba018d733ebdfea57280df01904 + md5: a2222a6ada71fb478682efe483ce0f92 + depends: + - libgcc 14.2.0 h767d61c_2 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + purls: [] + size: 53758 + timestamp: 1740240660904 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h767d61c_2.conda + sha256: 1a3130e0b9267e781b89399580f3163632d59fe5b0142900d63052ab1a53490e + md5: 06d02030237f4d5b3d9a7e7d348fe3c6 + depends: + - __glibc >=2.17,<3.0.a0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + purls: [] + size: 459862 + timestamp: 1740240588123 +- conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.6.4-hb9d3cd8_0.conda + sha256: cad52e10319ca4585bc37f0bc7cce99ec7c15dc9168e42ccb96b741b0a27db3f + md5: 42d5b6a0f30d3c10cd88cb8584fda1cb + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: 0BSD + purls: [] + size: 111357 + timestamp: 1738525339684 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-h4bc722e_0.conda + sha256: d02d1d3304ecaf5c728e515eb7416517a0b118200cd5eacbe829c432d1664070 + md5: aeb98fdeb2e8f25d43ef71fbacbeec80 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc-ng >=12 + license: BSD-2-Clause + license_family: BSD + purls: [] + size: 89991 + timestamp: 1723817448345 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_1.conda + sha256: 7a09eef804ef7cf4d88215c2297eabb72af8ad0bd5b012060111c289f14bbe7d + md5: 73cea06049cc4174578b432320a003b8 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libzlib >=1.3.1,<2.0a0 + license: Unlicense + purls: [] + size: 915956 + timestamp: 1739953155793 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda + sha256: 8f5bd92e4a24e1d35ba015c5252e8f818898478cb3bc50bd8b12ab54707dc4da + md5: a78c856b6dc6bf4ea8daeb9beaaa3fb0 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc 14.2.0 h767d61c_2 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + purls: [] + size: 3884556 + timestamp: 1740240685253 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda + sha256: e86f38b007cf97cc2c67cd519f2de12a313c4ee3f5ef11652ad08932a5e34189 + md5: c75da67f045c2627f59e6fcb5f4e3a9b + depends: + - libstdcxx 14.2.0 h8f9b012_2 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + purls: [] + size: 53830 + timestamp: 1740240722530 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda + sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18 + md5: 40b61aab5c7ba9ff276c41cfffe6b80b + depends: + - libgcc-ng >=12 + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 33601 + timestamp: 1680112270483 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.50.0-hb9d3cd8_0.conda + sha256: b4a8890023902aef9f1f33e3e35603ad9c2f16c21fdb58e968fa6c1bd3e94c0b + md5: 771ee65e13bc599b0b62af5359d80169 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: MIT + license_family: MIT + purls: [] + size: 891272 + timestamp: 1737016632446 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda + sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4 + md5: edb0dca6bc32e4f4789199455a1dbeb8 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + constrains: + - zlib 1.3.1 *_2 + license: Zlib + license_family: Other + purls: [] + size: 60963 + timestamp: 1727963148474 +- pypi: https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl + name: markdown-it-py + version: 3.0.0 + sha256: 355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1 + requires_dist: + - mdurl~=0.1 + - psutil ; extra == 'benchmarking' + - pytest ; extra == 'benchmarking' + - pytest-benchmark ; extra == 'benchmarking' + - pre-commit~=3.0 ; extra == 'code-style' + - commonmark~=0.9 ; extra == 'compare' + - markdown~=3.4 ; extra == 'compare' + - mistletoe~=1.0 ; extra == 'compare' + - mistune~=2.0 ; extra == 'compare' + - panflute~=2.3 ; extra == 'compare' + - linkify-it-py>=1,<3 ; extra == 'linkify' + - mdit-py-plugins ; extra == 'plugins' + - gprof2dot ; extra == 'profiling' + - mdit-py-plugins ; extra == 'rtd' + - myst-parser ; extra == 'rtd' + - pyyaml ; extra == 'rtd' + - sphinx ; extra == 'rtd' + - sphinx-copybutton ; extra == 'rtd' + - sphinx-design ; extra == 'rtd' + - sphinx-book-theme ; extra == 'rtd' + - jupyter-sphinx ; extra == 'rtd' + - coverage ; extra == 'testing' + - pytest ; extra == 'testing' + - pytest-cov ; extra == 'testing' + - pytest-regressions ; extra == 'testing' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/0c/91/96cf928db8236f1bfab6ce15ad070dfdd02ed88261c2afafd4b43575e9e9/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + name: markupsafe + version: 3.0.2 + sha256: 15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396 + requires_python: '>=3.9' +- pypi: https://files.pythonhosted.org/packages/8f/8e/9ad090d3553c280a8060fbf6e24dc1c0c29704ee7d1c372f0c174aa59285/matplotlib_inline-0.1.7-py3-none-any.whl + name: matplotlib-inline + version: 0.1.7 + sha256: df192d39a4ff8f21b1895d72e6a13f5fcc5099f00fa84384e0ea28c2cc0653ca + requires_dist: + - traitlets + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/a7/f7/7782a043553ee469c1ff49cfa1cdace2d6bf99a1f333cf38676b3ddf30da/mdit_py_plugins-0.4.2-py3-none-any.whl + name: mdit-py-plugins + version: 0.4.2 + sha256: 0c673c3f889399a33b95e88d2f0d111b4447bdfea7f237dab2d488f459835636 + requires_dist: + - markdown-it-py>=1.0.0,<4.0.0 + - pre-commit ; extra == 'code-style' + - myst-parser ; extra == 'rtd' + - sphinx-book-theme ; extra == 'rtd' + - coverage ; extra == 'testing' + - pytest ; extra == 'testing' + - pytest-cov ; extra == 'testing' + - pytest-regressions ; extra == 'testing' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl + name: mdurl + version: 0.1.2 + sha256: 84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8 + requires_python: '>=3.7' +- pypi: https://files.pythonhosted.org/packages/12/92/30b4e54c4d7c48c06db61595cffbbf4f19588ea177896f9b78f0fbe021fd/mistune-3.1.2-py3-none-any.whl + name: mistune + version: 3.1.2 + sha256: 4b47731332315cdca99e0ded46fc0004001c1299ff773dfb48fbe1fd226de319 + requires_dist: + - typing-extensions ; python_full_version < '3.11' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/23/62/0fe302c6d1be1c777cab0616e6302478251dfbf9055ad426f5d0def75c89/more_itertools-10.6.0-py3-none-any.whl + name: more-itertools + version: 10.6.0 + sha256: 6eb054cb4b6db1473f6e15fcc676a08e4732548acd47c708f0e179c2c7c01e89 + requires_python: '>=3.9' +- pypi: https://files.pythonhosted.org/packages/5f/df/76d0321c3797b54b60fef9ec3bd6f4cfd124b9e422182156a1dd418722cf/myst_parser-4.0.1-py3-none-any.whl + name: myst-parser + version: 4.0.1 + sha256: 9134e88959ec3b5780aedf8a99680ea242869d012e8821db3126d427edc9c95d + requires_dist: + - docutils>=0.19,<0.22 + - jinja2 + - markdown-it-py~=3.0 + - mdit-py-plugins~=0.4,>=0.4.1 + - pyyaml + - sphinx>=7,<9 + - pre-commit~=4.0 ; extra == 'code-style' + - linkify-it-py~=2.0 ; extra == 'linkify' + - sphinx>=7 ; extra == 'rtd' + - ipython ; extra == 'rtd' + - sphinx-book-theme~=1.1 ; extra == 'rtd' + - sphinx-design ; extra == 'rtd' + - sphinx-copybutton ; extra == 'rtd' + - sphinxext-rediraffe~=0.2.7 ; extra == 'rtd' + - sphinxext-opengraph~=0.9.0 ; extra == 'rtd' + - sphinx-pyscript ; extra == 'rtd' + - sphinx-tippy>=0.4.3 ; extra == 'rtd' + - sphinx-autodoc2~=0.5.0 ; extra == 'rtd' + - sphinx-togglebutton ; extra == 'rtd' + - beautifulsoup4 ; extra == 'testing' + - coverage[toml] ; extra == 'testing' + - defusedxml ; extra == 'testing' + - pytest>=8,<9 ; extra == 'testing' + - pytest-cov ; extra == 'testing' + - pytest-regressions ; extra == 'testing' + - pytest-param-files~=0.6.0 ; extra == 'testing' + - sphinx-pytest ; extra == 'testing' + - pygments<2.19 ; extra == 'testing' + - pygments ; extra == 'testing-docutils' + - pytest>=8,<9 ; extra == 'testing-docutils' + - pytest-param-files~=0.6.0 ; extra == 'testing-docutils' + requires_python: '>=3.10' +- pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl + name: nbclient + version: 0.10.2 + sha256: 4ffee11e788b4a27fabeb7955547e4318a5298f34342a4bfd01f2e1faaeadc3d + requires_dist: + - jupyter-client>=6.1.12 + - jupyter-core>=4.12,!=5.0.* + - nbformat>=5.1 + - traitlets>=5.4 + - pre-commit ; extra == 'dev' + - autodoc-traits ; extra == 'docs' + - flaky ; extra == 'docs' + - ipykernel>=6.19.3 ; extra == 'docs' + - ipython ; extra == 'docs' + - ipywidgets ; extra == 'docs' + - mock ; extra == 'docs' + - moto ; extra == 'docs' + - myst-parser ; extra == 'docs' + - nbconvert>=7.1.0 ; extra == 'docs' + - pytest-asyncio ; extra == 'docs' + - pytest-cov>=4.0 ; extra == 'docs' + - pytest>=7.0,<8 ; extra == 'docs' + - sphinx-book-theme ; extra == 'docs' + - sphinx>=1.7 ; extra == 'docs' + - sphinxcontrib-spelling ; extra == 'docs' + - testpath ; extra == 'docs' + - xmltodict ; extra == 'docs' + - flaky ; extra == 'test' + - ipykernel>=6.19.3 ; extra == 'test' + - ipython ; extra == 'test' + - ipywidgets ; extra == 'test' + - nbconvert>=7.1.0 ; extra == 'test' + - pytest-asyncio ; extra == 'test' + - pytest-cov>=4.0 ; extra == 'test' + - pytest>=7.0,<8 ; extra == 'test' + - testpath ; extra == 'test' + - xmltodict ; extra == 'test' + requires_python: '>=3.9.0' +- pypi: https://files.pythonhosted.org/packages/cc/9a/cd673b2f773a12c992f41309ef81b99da1690426bd2f96957a7ade0d3ed7/nbconvert-7.16.6-py3-none-any.whl + name: nbconvert + version: 7.16.6 + sha256: 1375a7b67e0c2883678c48e506dc320febb57685e5ee67faa51b18a90f3a712b + requires_dist: + - beautifulsoup4 + - bleach[css]!=5.0.0 + - defusedxml + - importlib-metadata>=3.6 ; python_full_version < '3.10' + - jinja2>=3.0 + - jupyter-core>=4.7 + - jupyterlab-pygments + - markupsafe>=2.0 + - mistune>=2.0.3,<4 + - nbclient>=0.5.0 + - nbformat>=5.7 + - packaging + - pandocfilters>=1.4.1 + - pygments>=2.4.1 + - traitlets>=5.1 + - flaky ; extra == 'all' + - ipykernel ; extra == 'all' + - ipython ; extra == 'all' + - ipywidgets>=7.5 ; extra == 'all' + - myst-parser ; extra == 'all' + - nbsphinx>=0.2.12 ; extra == 'all' + - playwright ; extra == 'all' + - pydata-sphinx-theme ; extra == 'all' + - pyqtwebengine>=5.15 ; extra == 'all' + - pytest>=7 ; extra == 'all' + - sphinx==5.0.2 ; extra == 'all' + - sphinxcontrib-spelling ; extra == 'all' + - tornado>=6.1 ; extra == 'all' + - ipykernel ; extra == 'docs' + - ipython ; extra == 'docs' + - myst-parser ; extra == 'docs' + - nbsphinx>=0.2.12 ; extra == 'docs' + - pydata-sphinx-theme ; extra == 'docs' + - sphinx==5.0.2 ; extra == 'docs' + - sphinxcontrib-spelling ; extra == 'docs' + - pyqtwebengine>=5.15 ; extra == 'qtpdf' + - pyqtwebengine>=5.15 ; extra == 'qtpng' + - tornado>=6.1 ; extra == 'serve' + - flaky ; extra == 'test' + - ipykernel ; extra == 'test' + - ipywidgets>=7.5 ; extra == 'test' + - pytest>=7 ; extra == 'test' + - playwright ; extra == 'webpdf' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl + name: nbformat + version: 5.10.4 + sha256: 3b48d6c8fbca4b299bf3982ea7db1af21580e4fec269ad087b9e81588891200b + requires_dist: + - fastjsonschema>=2.15 + - jsonschema>=2.6 + - jupyter-core>=4.12,!=5.0.* + - traitlets>=5.1 + - myst-parser ; extra == 'docs' + - pydata-sphinx-theme ; extra == 'docs' + - sphinx ; extra == 'docs' + - sphinxcontrib-github-alt ; extra == 'docs' + - sphinxcontrib-spelling ; extra == 'docs' + - pep440 ; extra == 'test' + - pre-commit ; extra == 'test' + - pytest ; extra == 'test' + - testpath ; extra == 'test' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/49/2d/8c8e635bcc6757573d311bb3c5445426382f280da32b8cd6d82d501ef4a4/nbsphinx-0.9.7-py3-none-any.whl + name: nbsphinx + version: 0.9.7 + sha256: 7292c3767fea29e405c60743eee5393682a83982ab202ff98f5eb2db02629da8 + requires_dist: + - docutils>=0.18.1 + - jinja2 + - nbconvert>=5.3,!=5.4 + - traitlets>=5 + - nbformat + - sphinx>=1.8,<8.2 + requires_python: '>=3.6' +- pypi: https://files.pythonhosted.org/packages/2c/5c/eb1e3ce54c4e94c7734b3831756c63f21badb3de91a98d77b9e23c0ca76a/nbval-0.11.0-py2.py3-none-any.whl + name: nbval + version: 0.11.0 + sha256: 307aecc866c9a1e8a13bb5bbb008a702bacfda2394dff6fe504a3108a58042a0 + requires_dist: + - pytest>=7 + - jupyter-client + - nbformat + - ipykernel + - coverage + requires_python: '>=3.7,<4' +- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda + sha256: 3fde293232fa3fca98635e1167de6b7c7fda83caf24b9d6c91ec9eefb4f4d586 + md5: 47e340acb35de30501a76c7c799c41d7 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: X11 AND BSD-3-Clause + purls: [] + size: 891641 + timestamp: 1738195959188 +- pypi: https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl + name: nest-asyncio + version: 1.6.0 + sha256: 87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c + requires_python: '>=3.5' +- pypi: https://files.pythonhosted.org/packages/d2/1d/1b658dbd2b9fa9c4c9f32accbfc0205d532c8c6194dc0f2a4c0428e7128a/nodeenv-1.9.1-py2.py3-none-any.whl + name: nodeenv + version: 1.9.1 + sha256: ba11c9782d29c27c70ffbdda2d7415098754709be8a7056d79a737cd901155c9 + requires_python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*' +- conda: https://conda.anaconda.org/conda-forge/linux-64/nodejs-22.12.0-hf235a45_0.conda + sha256: 1a519b80bc3d5afddeccb593711df2e60ac48ecf3e903f7bdc279f64f7210fc4 + md5: 30458a23bf5568d2bc0e1fed6a4e2b12 + depends: + - __glibc >=2.28,<3.0.a0 + - icu >=75.1,<76.0a0 + - libgcc >=13 + - libstdcxx >=13 + - libuv >=1.49.2,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.4.0,<4.0a0 + - zlib + license: MIT + license_family: MIT + purls: [] + size: 21796933 + timestamp: 1734113054756 +- pypi: . + name: notebook + version: 7.4.0b0 + sha256: 52ebe101315f199193f2b5599e2f43ba3f1351b46b2899d0da20e564ca99d716 + requires_dist: + - jupyter-server>=2.4.0,<3 + - jupyterlab-server>=2.27.1,<3 + - jupyterlab>=4.4.0b0,<4.5 + - notebook-shim>=0.2,<0.3 + - tornado>=6.2.0 + - hatch ; extra == 'dev' + - pre-commit ; extra == 'dev' + - myst-parser ; extra == 'docs' + - nbsphinx ; extra == 'docs' + - pydata-sphinx-theme ; extra == 'docs' + - sphinx>=1.3.6 ; extra == 'docs' + - sphinxcontrib-github-alt ; extra == 'docs' + - sphinxcontrib-spelling ; extra == 'docs' + - importlib-resources>=5.0 ; python_full_version < '3.10' and extra == 'test' + - ipykernel ; extra == 'test' + - jupyter-server[test]>=2.4.0,<3 ; extra == 'test' + - jupyterlab-server[test]>=2.27.1,<3 ; extra == 'test' + - nbval ; extra == 'test' + - pytest-console-scripts ; extra == 'test' + - pytest-timeout ; extra == 'test' + - pytest-tornasync ; extra == 'test' + - pytest>=7.0 ; extra == 'test' + - requests ; extra == 'test' + requires_python: '>=3.8' + editable: true +- pypi: https://files.pythonhosted.org/packages/f9/33/bd5b9137445ea4b680023eb0469b2bb969d61303dedb2aac6560ff3d14a1/notebook_shim-0.2.4-py3-none-any.whl + name: notebook-shim + version: 0.2.4 + sha256: 411a5be4e9dc882a074ccbcae671eda64cceb068767e9a3419096986560e1cef + requires_dist: + - jupyter-server>=1.8,<3 + - pytest ; extra == 'test' + - pytest-console-scripts ; extra == 'test' + - pytest-jupyter ; extra == 'test' + - pytest-tornasync ; extra == 'test' + requires_python: '>=3.7' +- pypi: https://files.pythonhosted.org/packages/3c/b0/7e386f89c336d21577e01b77efbba60edfe1b5732124b746bc1d02efdd72/openapi_core-0.18.2-py3-none-any.whl + name: openapi-core + version: 0.18.2 + sha256: ec13d366766d564450de60374f59feb0b5ccb447aed642cdf0f1ecfcc6fbe80a + requires_dist: + - aiohttp>=3.0 ; extra == 'aiohttp' + - asgiref>=3.6.0,<4.0.0 + - django>=3.0 ; extra == 'django' + - falcon>=3.0 ; extra == 'falcon' + - flask ; extra == 'flask' + - isodate + - jsonschema>=4.18.0,<5.0.0 + - jsonschema-spec>=0.2.3,<0.3.0 + - more-itertools + - multidict>=6.0.4,<7.0.0 ; extra == 'aiohttp' + - openapi-schema-validator>=0.6.0,<0.7.0 + - openapi-spec-validator>=0.7.1,<0.8.0 + - parse + - requests ; extra == 'requests' + - starlette>=0.26.1,<0.32.0 ; extra == 'starlette' + - werkzeug + requires_python: '>=3.8.0,<4.0.0' +- pypi: https://files.pythonhosted.org/packages/21/c6/ad0fba32775ae749016829dace42ed80f4407b171da41313d1a3a5f102e4/openapi_schema_validator-0.6.3-py3-none-any.whl + name: openapi-schema-validator + version: 0.6.3 + sha256: f3b9870f4e556b5a62a1c39da72a6b4b16f3ad9c73dc80084b1b11e74ba148a3 + requires_dist: + - jsonschema>=4.19.1,<5.0.0 + - jsonschema-specifications>=2023.5.2 + - rfc3339-validator + requires_python: '>=3.8.0,<4.0.0' +- pypi: https://files.pythonhosted.org/packages/2b/4d/e744fff95aaf3aeafc968d5ba7297c8cda0d1ecb8e3acd21b25adae4d835/openapi_spec_validator-0.7.1-py3-none-any.whl + name: openapi-spec-validator + version: 0.7.1 + sha256: 3c81825043f24ccbcd2f4b149b11e8231abce5ba84f37065e14ec947d8f4e959 + requires_dist: + - importlib-resources>=5.8,<7.0 ; python_full_version < '3.9' + - jsonschema>=4.18.0,<5.0.0 + - jsonschema-path>=0.3.1,<0.4.0 + - lazy-object-proxy>=1.7.1,<2.0.0 + - openapi-schema-validator>=0.6.0,<0.7.0 + requires_python: '>=3.8.0,<4.0.0' +- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.1-h7b32b05_0.conda + sha256: cbf62df3c79a5c2d113247ddea5658e9ff3697b6e741c210656e239ecaf1768f + md5: 41adf927e746dc75ecf0ef841c454e48 + depends: + - __glibc >=2.17,<3.0.a0 + - ca-certificates + - libgcc >=13 + license: Apache-2.0 + license_family: Apache + purls: [] + size: 2939306 + timestamp: 1739301879343 +- pypi: https://files.pythonhosted.org/packages/2c/ab/fc8290c6a4c722e5514d80f62b2dc4c4df1a68a41d1364e625c35990fcf3/overrides-7.7.0-py3-none-any.whl + name: overrides + version: 7.7.0 + sha256: c7ed9d062f78b8e4c1a7b70bd8796b35ead4d9f510227ef9c5dc7626c60d7e49 + requires_dist: + - typing ; python_full_version < '3.5' + requires_python: '>=3.6' +- pypi: https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl + name: packaging + version: '24.2' + sha256: 09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759 + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/ef/af/4fbc8cab944db5d21b7e2a5b8e9211a03a79852b1157e2c102fcc61ac440/pandocfilters-1.5.1-py2.py3-none-any.whl + name: pandocfilters + version: 1.5.1 + sha256: 93be382804a9cdb0a7267585f157e5d1731bbe5545a85b268d6f5fe6232de2bc + requires_python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*' +- pypi: https://files.pythonhosted.org/packages/d0/31/ba45bf0b2aa7898d81cbbfac0e88c267befb59ad91a19e36e1bc5578ddb1/parse-1.20.2-py2.py3-none-any.whl + name: parse + version: 1.20.2 + sha256: 967095588cb802add9177d0c0b6133b5ba33b1ea9007ca800e526f42a85af558 +- pypi: https://files.pythonhosted.org/packages/c6/ac/dac4a63f978e4dcb3c6d3a78c4d8e0192a113d288502a1216950c41b1027/parso-0.8.4-py2.py3-none-any.whl + name: parso + version: 0.8.4 + sha256: a418670a20291dacd2dddc80c377c5c3791378ee1e8d12bffc35420643d43f18 + requires_dist: + - flake8==5.0.4 ; extra == 'qa' + - mypy==0.971 ; extra == 'qa' + - types-setuptools==67.2.0.1 ; extra == 'qa' + - docopt ; extra == 'testing' + - pytest ; extra == 'testing' + requires_python: '>=3.6' +- pypi: https://files.pythonhosted.org/packages/7d/eb/b6260b31b1a96386c0a880edebe26f89669098acea8e0318bff6adb378fd/pathable-0.4.4-py3-none-any.whl + name: pathable + version: 0.4.4 + sha256: 5ae9e94793b6ef5a4cbe0a7ce9dbbefc1eec38df253763fd0aeeacf2762dbbc2 + requires_python: '>=3.7.0,<4.0.0' +- pypi: https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl + name: pathspec + version: 0.12.1 + sha256: a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08 + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl + name: pexpect + version: 4.9.0 + sha256: 7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523 + requires_dist: + - ptyprocess>=0.5 +- conda: https://conda.anaconda.org/conda-forge/noarch/pip-25.0.1-pyh145f28c_0.conda + sha256: b1beb97b230321fc2ae692bd631cd65530c59686151af9d11aaa16df815f9ee8 + md5: 9ba21d75dc722c29827988a575a65707 + depends: + - python >=3.13.0a0 + license: MIT + license_family: MIT + purls: + - pkg:pypi/pip?source=hash-mapping + size: 1256777 + timestamp: 1739142856473 +- pypi: https://files.pythonhosted.org/packages/3c/a6/bc1012356d8ece4d66dd75c4b9fc6c1f6650ddd5991e421177d9f8f671be/platformdirs-4.3.6-py3-none-any.whl + name: platformdirs + version: 4.3.6 + sha256: 73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb + requires_dist: + - furo>=2024.8.6 ; extra == 'docs' + - proselint>=0.14 ; extra == 'docs' + - sphinx-autodoc-typehints>=2.4 ; extra == 'docs' + - sphinx>=8.0.2 ; extra == 'docs' + - appdirs==1.4.4 ; extra == 'test' + - covdefaults>=2.3 ; extra == 'test' + - pytest-cov>=5 ; extra == 'test' + - pytest-mock>=3.14 ; extra == 'test' + - pytest>=8.3.2 ; extra == 'test' + - mypy>=1.11.2 ; extra == 'type' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/88/5f/e351af9a41f866ac3f1fac4ca0613908d9a41741cfcf2228f4ad853b697d/pluggy-1.5.0-py3-none-any.whl + name: pluggy + version: 1.5.0 + sha256: 44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669 + requires_dist: + - pre-commit ; extra == 'dev' + - tox ; extra == 'dev' + - pytest ; extra == 'testing' + - pytest-benchmark ; extra == 'testing' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/43/b3/df14c580d82b9627d173ceea305ba898dca135feb360b6d84019d0803d3b/pre_commit-4.1.0-py2.py3-none-any.whl + name: pre-commit + version: 4.1.0 + sha256: d29e7cb346295bcc1cc75fc3e92e343495e3ea0196c9ec6ba53f49f10ab6ae7b + requires_dist: + - cfgv>=2.0.0 + - identify>=1.0.0 + - nodeenv>=0.11.1 + - pyyaml>=5.1 + - virtualenv>=20.10.0 + requires_python: '>=3.9' +- pypi: https://files.pythonhosted.org/packages/ff/c2/ab7d37426c179ceb9aeb109a85cda8948bb269b7561a0be870cc656eefe4/prometheus_client-0.21.1-py3-none-any.whl + name: prometheus-client + version: 0.21.1 + sha256: 594b45c410d6f4f8888940fe80b5cc2521b305a1fafe1c58609ef715a001f301 + requires_dist: + - twisted ; extra == 'twisted' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/e4/ea/d836f008d33151c7a1f62caf3d8dd782e4d15f6a43897f64480c2b8de2ad/prompt_toolkit-3.0.50-py3-none-any.whl + name: prompt-toolkit + version: 3.0.50 + sha256: 9b6427eb19e479d98acff65196a307c555eb567989e6d88ebbb1b509d9779198 + requires_dist: + - wcwidth + requires_python: '>=3.8.0' +- pypi: https://files.pythonhosted.org/packages/bf/b9/b0eb3f3cbcb734d930fdf839431606844a825b23eaf9a6ab371edac8162c/psutil-7.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl + name: psutil + version: 7.0.0 + sha256: 4b1388a4f6875d7e2aff5c4ca1cc16c545ed41dd8bb596cefea80111db353a34 + requires_dist: + - pytest ; extra == 'dev' + - pytest-xdist ; extra == 'dev' + - setuptools ; extra == 'dev' + - abi3audit ; extra == 'dev' + - black==24.10.0 ; extra == 'dev' + - check-manifest ; extra == 'dev' + - coverage ; extra == 'dev' + - packaging ; extra == 'dev' + - pylint ; extra == 'dev' + - pyperf ; extra == 'dev' + - pypinfo ; extra == 'dev' + - pytest-cov ; extra == 'dev' + - requests ; extra == 'dev' + - rstcheck ; extra == 'dev' + - ruff ; extra == 'dev' + - sphinx ; extra == 'dev' + - sphinx-rtd-theme ; extra == 'dev' + - toml-sort ; extra == 'dev' + - twine ; extra == 'dev' + - virtualenv ; extra == 'dev' + - vulture ; extra == 'dev' + - wheel ; extra == 'dev' + - pytest ; extra == 'test' + - pytest-xdist ; extra == 'test' + - setuptools ; extra == 'test' + requires_python: '>=3.6' +- pypi: https://files.pythonhosted.org/packages/22/a6/858897256d0deac81a172289110f31629fc4cee19b6f01283303e18c8db3/ptyprocess-0.7.0-py2.py3-none-any.whl + name: ptyprocess + version: 0.7.0 + sha256: 4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35 +- pypi: https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl + name: pure-eval + version: 0.2.3 + sha256: 1db8e35b67b3d218d818ae653e27f06c3aa420901fa7b081ca98cbedc874e0d0 + requires_dist: + - pytest ; extra == 'tests' +- pypi: https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl + name: pycparser + version: '2.22' + sha256: c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/e2/0d/8ba33fa83a7dcde13eb3c1c2a0c1cc29950a048bfed6d9b0d8b6bd710b4c/pydata_sphinx_theme-0.16.1-py3-none-any.whl + name: pydata-sphinx-theme + version: 0.16.1 + sha256: 225331e8ac4b32682c18fcac5a57a6f717c4e632cea5dd0e247b55155faeccde + requires_dist: + - sphinx>=6.1 + - beautifulsoup4 + - docutils!=0.17.0 + - babel + - pygments>=2.7 + - accessible-pygments + - typing-extensions + - numpydoc ; extra == 'doc' + - linkify-it-py ; extra == 'doc' + - rich ; extra == 'doc' + - sphinxext-rediraffe ; extra == 'doc' + - sphinx-sitemap ; extra == 'doc' + - sphinx-autoapi>=3.0.0 ; extra == 'doc' + - myst-parser ; extra == 'doc' + - ablog>=0.11.8 ; extra == 'doc' + - jupyter-sphinx ; extra == 'doc' + - pandas ; extra == 'doc' + - plotly ; extra == 'doc' + - matplotlib ; extra == 'doc' + - numpy ; extra == 'doc' + - xarray ; extra == 'doc' + - sphinx-copybutton ; extra == 'doc' + - sphinx-design ; extra == 'doc' + - sphinx-togglebutton ; extra == 'doc' + - jupyterlite-sphinx ; extra == 'doc' + - sphinxcontrib-youtube>=1.4.1 ; extra == 'doc' + - sphinx-favicon>=1.0.1 ; extra == 'doc' + - ipykernel ; extra == 'doc' + - nbsphinx ; extra == 'doc' + - ipyleaflet ; extra == 'doc' + - colorama ; extra == 'doc' + - ipywidgets ; extra == 'doc' + - graphviz ; extra == 'doc' + - pytest ; extra == 'test' + - pytest-cov ; extra == 'test' + - pytest-regressions ; extra == 'test' + - sphinx[test] ; extra == 'test' + - pyyaml ; extra == 'dev' + - pre-commit ; extra == 'dev' + - pydata-sphinx-theme[doc,test] ; extra == 'dev' + - tox ; extra == 'dev' + - pandoc ; extra == 'dev' + - sphinx-theme-builder[cli] ; extra == 'dev' + - pytest-playwright ; extra == 'a11y' + - babel ; extra == 'i18n' + - jinja2 ; extra == 'i18n' + requires_python: '>=3.9' +- pypi: https://files.pythonhosted.org/packages/54/4c/a741dddab6ad96f257d90cb4d23067ffadac526c9cab3a99ca6ce3c05477/pyenchant-3.2.2-py3-none-any.whl + name: pyenchant + version: 3.2.2 + sha256: 5facc821ece957208a81423af7d6ec7810dad29697cb0d77aae81e4e11c8e5a6 + requires_python: '>=3.5' +- pypi: https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl + name: pygments + version: 2.19.1 + sha256: 9ea1544ad55cecf4b8242fab6dd35a93bbce657034b0611ee383099054ab6d8c + requires_dist: + - colorama>=0.4.6 ; extra == 'windows-terminal' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/51/ff/f6e8b8f39e08547faece4bd80f89d5a8de68a38b2d179cc1c4490ffa3286/pytest-7.4.4-py3-none-any.whl + name: pytest + version: 7.4.4 + sha256: b090cdf5ed60bf4c45261be03239c2c1c22df034fbffe691abe93cd80cea01d8 + requires_dist: + - iniconfig + - packaging + - pluggy>=0.12,<2.0 + - exceptiongroup>=1.0.0rc8 ; python_full_version < '3.11' + - tomli>=1.0.0 ; python_full_version < '3.11' + - importlib-metadata>=0.12 ; python_full_version < '3.8' + - colorama ; sys_platform == 'win32' + - argcomplete ; extra == 'testing' + - attrs>=19.2.0 ; extra == 'testing' + - hypothesis>=3.56 ; extra == 'testing' + - mock ; extra == 'testing' + - nose ; extra == 'testing' + - pygments>=2.7.2 ; extra == 'testing' + - requests ; extra == 'testing' + - setuptools ; extra == 'testing' + - xmlschema ; extra == 'testing' + requires_python: '>=3.7' +- pypi: https://files.pythonhosted.org/packages/32/12/149a568c244b58912350c7fd3b997ed6b57889a22098564cc43c3e511b76/pytest_console_scripts-1.4.1-py3-none-any.whl + name: pytest-console-scripts + version: 1.4.1 + sha256: ad860a951a90eca4bd3bd1159b8f5428633ba4ea01abd5c9526b67a95f65437a + requires_dist: + - pytest>=4.0.0 + - importlib-metadata>=3.6 ; python_full_version < '3.10' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/36/3b/48e79f2cd6a61dbbd4807b4ed46cb564b4fd50a76166b1c4ea5c1d9e2371/pytest_cov-6.0.0-py3-none-any.whl + name: pytest-cov + version: 6.0.0 + sha256: eee6f1b9e61008bd34975a4d5bab25801eb31898b032dd55addc93e96fcaaa35 + requires_dist: + - pytest>=4.6 + - coverage[toml]>=7.5 + - fields ; extra == 'testing' + - hunter ; extra == 'testing' + - process-tests ; extra == 'testing' + - pytest-xdist ; extra == 'testing' + - virtualenv ; extra == 'testing' + requires_python: '>=3.9' +- pypi: https://files.pythonhosted.org/packages/87/95/0166c428ea0ab4770f66de7804f2341caa9d8826d0022ce3d986d253d9c6/pytest_jupyter-0.10.1-py3-none-any.whl + name: pytest-jupyter + version: 0.10.1 + sha256: 644ae23821fe74344e1ff4dfcdbbcd1d6ffc191f654f435f67a19e6dce141684 + requires_dist: + - jupyter-core>=5.7 + - pytest>=7.0 + - ipykernel>=6.14 ; extra == 'client' + - jupyter-client>=7.4.0 ; extra == 'client' + - nbformat>=5.3 ; extra == 'client' + - myst-parser ; extra == 'docs' + - pydata-sphinx-theme ; extra == 'docs' + - sphinx ; extra == 'docs' + - sphinxcontrib-spelling ; extra == 'docs' + - ipykernel>=6.14 ; extra == 'server' + - jupyter-client>=7.4.0 ; extra == 'server' + - jupyter-server>=1.21 ; extra == 'server' + - nbformat>=5.3 ; extra == 'server' + - pytest-timeout ; extra == 'test' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/03/27/14af9ef8321f5edc7527e47def2a21d8118c6f329a9342cc61387a0c0599/pytest_timeout-2.3.1-py3-none-any.whl + name: pytest-timeout + version: 2.3.1 + sha256: 68188cb703edfc6a18fad98dc25a3c61e9f24d644b0b70f33af545219fc7813e + requires_dist: + - pytest>=7.0.0 + requires_python: '>=3.7' +- pypi: https://files.pythonhosted.org/packages/50/b9/3615ebfc3120bb949c3725b50793f42c3230d0175d6cfd358ea8bb6928ff/pytest_tornasync-0.6.0.post2-py3-none-any.whl + name: pytest-tornasync + version: 0.6.0.post2 + sha256: 4b165b6ba76b5b228933598f456b71ba233f127991a52889788db0a950ad04ba + requires_dist: + - pytest>=3.0 + - tornado>=5.0 +- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.13.2-hf636f53_101_cp313.conda + build_number: 101 + sha256: cc1984ee54261cee6a2db75c65fc7d2967bc8c6e912d332614df15244d7730ef + md5: a7902a3611fe773da3921cbbf7bc2c5c + depends: + - __glibc >=2.17,<3.0.a0 + - bzip2 >=1.0.8,<2.0a0 + - ld_impl_linux-64 >=2.36.1 + - libexpat >=2.6.4,<3.0a0 + - libffi >=3.4,<4.0a0 + - libgcc >=13 + - liblzma >=5.6.4,<6.0a0 + - libmpdec >=4.0.0,<5.0a0 + - libsqlite >=3.48.0,<4.0a0 + - libuuid >=2.38.1,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + - ncurses >=6.5,<7.0a0 + - openssl >=3.4.1,<4.0a0 + - python_abi 3.13.* *_cp313 + - readline >=8.2,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata + license: Python-2.0 + purls: [] + size: 33233150 + timestamp: 1739803603242 + python_site_packages_path: lib/python3.13/site-packages +- pypi: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl + name: python-dateutil + version: 2.9.0.post0 + sha256: a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427 + requires_dist: + - six>=1.5 + requires_python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*' +- pypi: https://files.pythonhosted.org/packages/08/20/0f2523b9e50a8052bc6a8b732dfc8568abbdc42010aef03a2d750bdab3b2/python_json_logger-3.3.0-py3-none-any.whl + name: python-json-logger + version: 3.3.0 + sha256: dd980fae8cffb24c13caf6e158d3d61c0d6d22342f932cb6e9deedab3d35eec7 + requires_dist: + - typing-extensions ; python_full_version < '3.10' + - orjson ; implementation_name != 'pypy' and extra == 'dev' + - msgspec ; implementation_name != 'pypy' and extra == 'dev' + - validate-pyproject[all] ; extra == 'dev' + - black ; extra == 'dev' + - pylint ; extra == 'dev' + - mypy ; extra == 'dev' + - pytest ; extra == 'dev' + - freezegun ; extra == 'dev' + - backports-zoneinfo ; python_full_version < '3.9' and extra == 'dev' + - tzdata ; extra == 'dev' + - build ; extra == 'dev' + - mkdocs ; extra == 'dev' + - mkdocs-material>=8.5 ; extra == 'dev' + - mkdocs-awesome-pages-plugin ; extra == 'dev' + - mdx-truly-sane-lists ; extra == 'dev' + - mkdocstrings[python] ; extra == 'dev' + - mkdocs-gen-files ; extra == 'dev' + - mkdocs-literate-nav ; extra == 'dev' + - mike ; extra == 'dev' + requires_python: '>=3.8' +- conda: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.13-5_cp313.conda + build_number: 5 + sha256: 438225b241c5f9bddae6f0178a97f5870a89ecf927dfca54753e689907331442 + md5: 381bbd2a92c863f640a55b6ff3c35161 + constrains: + - python 3.13.* *_cp313 + license: BSD-3-Clause + license_family: BSD + purls: [] + size: 6217 + timestamp: 1723823393322 +- pypi: https://files.pythonhosted.org/packages/04/24/b7721e4845c2f162d26f50521b825fb061bc0a5afcf9a386840f23ea19fa/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + name: pyyaml + version: 6.0.2 + sha256: 70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5 + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/c9/48/15d5f415504572dd4b92b52db5de7a5befc76bb75340ba9f36f71306a66d/pyzmq-26.2.1-cp313-cp313-manylinux_2_28_x86_64.whl + name: pyzmq + version: 26.2.1 + sha256: f1f31661a80cc46aba381bed475a9135b213ba23ca7ff6797251af31510920ce + requires_dist: + - cffi ; implementation_name == 'pypy' + requires_python: '>=3.7' +- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda + sha256: 2d6d0c026902561ed77cd646b5021aef2d4db22e57a5b0178dfc669231e06d2c + md5: 283b96675859b20a825f8fa30f311446 + depends: + - libgcc >=13 + - ncurses >=6.5,<7.0a0 + license: GPL-3.0-only + license_family: GPL + purls: [] + size: 282480 + timestamp: 1740379431762 +- pypi: https://files.pythonhosted.org/packages/be/8e/56d6f1e2d591f4d6cbcba446cac4a1b0dc4f584537e2071d9bcee8eeab6b/referencing-0.30.2-py3-none-any.whl + name: referencing + version: 0.30.2 + sha256: 449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf + requires_dist: + - attrs>=22.2.0 + - rpds-py>=0.7.0 + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl + name: requests + version: 2.32.3 + sha256: 70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6 + requires_dist: + - charset-normalizer>=2,<4 + - idna>=2.5,<4 + - urllib3>=1.21.1,<3 + - certifi>=2017.4.17 + - pysocks>=1.5.6,!=1.5.7 ; extra == 'socks' + - chardet>=3.0.2,<6 ; extra == 'use-chardet-on-py3' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/97/ec/889fbc557727da0c34a33850950310240f2040f3b1955175fdb2b36a8910/requests_mock-1.12.1-py2.py3-none-any.whl + name: requests-mock + version: 1.12.1 + sha256: b1e37054004cdd5e56c84454cc7df12b25f90f382159087f4b6915aaeef39563 + requires_dist: + - requests>=2.22,<3 + - fixtures ; extra == 'fixture' + requires_python: '>=3.5' +- pypi: https://files.pythonhosted.org/packages/7b/44/4e421b96b67b2daff264473f7465db72fbdf36a07e05494f50300cc7b0c6/rfc3339_validator-0.1.4-py2.py3-none-any.whl + name: rfc3339-validator + version: 0.1.4 + sha256: 24f6ec1eda14ef823da9e36ec7113124b39c04d50a4d3d3a3c2859577e7791fa + requires_dist: + - six + requires_python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*' +- pypi: https://files.pythonhosted.org/packages/9e/51/17023c0f8f1869d8806b979a2bffa3f861f26a3f1a66b094288323fba52f/rfc3986_validator-0.1.1-py2.py3-none-any.whl + name: rfc3986-validator + version: 0.1.1 + sha256: 2f235c432ef459970b4306369336b9d5dbdda31b510ca1e327636e01f528bfa9 + requires_python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*' +- pypi: https://files.pythonhosted.org/packages/19/71/39c7c0d87f8d4e6c020a393182060eaefeeae6c01dab6a84ec346f2567df/rich-13.9.4-py3-none-any.whl + name: rich + version: 13.9.4 + sha256: 6049d5e6ec054bf2779ab3358186963bac2ea89175919d699e378b99738c2a90 + requires_dist: + - ipywidgets>=7.5.1,<9 ; extra == 'jupyter' + - markdown-it-py>=2.2.0 + - pygments>=2.13.0,<3.0.0 + - typing-extensions>=4.0.0,<5.0 ; python_full_version < '3.11' + requires_python: '>=3.8.0' +- pypi: https://files.pythonhosted.org/packages/f6/55/b3c18c04a460d951bf8e91f2abf46ce5b6426fb69784166a6a25827cb90a/rpds_py-0.23.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + name: rpds-py + version: 0.23.1 + sha256: f3a6cb95074777f1ecda2ca4fa7717caa9ee6e534f42b7575a8f0d4cb0c24013 + requires_python: '>=3.9' +- pypi: https://files.pythonhosted.org/packages/c2/36/dfc1ebc0081e6d39924a2cc53654497f967a084a436bb64402dfce4254d9/ruamel.yaml-0.18.10-py3-none-any.whl + name: ruamel-yaml + version: 0.18.10 + sha256: 30f22513ab2301b3d2b577adc121c6471f28734d3d9728581245f1e76468b4f1 + requires_dist: + - ruamel-yaml-clib>=0.2.7 ; python_full_version < '3.13' and platform_python_implementation == 'CPython' + - ryd ; extra == 'docs' + - mercurial>5.7 ; extra == 'docs' + - ruamel-yaml-jinja2>=0.2 ; extra == 'jinja2' + requires_python: '>=3.7' +- pypi: https://files.pythonhosted.org/packages/54/24/b4293291fa1dd830f353d2cb163295742fa87f179fcc8a20a306a81978b7/SecretStorage-3.3.3-py3-none-any.whl + name: secretstorage + version: 3.3.3 + sha256: f356e6628222568e3af06f2eba8df495efa13b3b63081dafd4f7d9a7b7bc9f99 + requires_dist: + - cryptography>=2.0 + - jeepney>=0.6 + requires_python: '>=3.6' +- pypi: https://files.pythonhosted.org/packages/40/b0/4562db6223154aa4e22f939003cb92514c79f3d4dccca3444253fd17f902/Send2Trash-1.8.3-py3-none-any.whl + name: send2trash + version: 1.8.3 + sha256: 0c31227e0bd08961c7665474a3d1ef7193929fedda4233843689baa056be46c9 + requires_dist: + - pyobjc-framework-cocoa ; sys_platform == 'darwin' and extra == 'nativelib' + - pywin32 ; sys_platform == 'win32' and extra == 'nativelib' + - pyobjc-framework-cocoa ; sys_platform == 'darwin' and extra == 'objc' + - pywin32 ; sys_platform == 'win32' and extra == 'win32' + requires_python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*' +- pypi: https://files.pythonhosted.org/packages/a9/38/7d7362e031bd6dc121e5081d8cb6aa6f6fedf2b67bf889962134c6da4705/setuptools-75.8.2-py3-none-any.whl + name: setuptools + version: 75.8.2 + sha256: 558e47c15f1811c1fa7adbd0096669bf76c1d3f433f58324df69f3f5ecac4e8f + requires_dist: + - pytest>=6,!=8.1.* ; extra == 'test' + - virtualenv>=13.0.0 ; extra == 'test' + - wheel>=0.44.0 ; extra == 'test' + - pip>=19.1 ; extra == 'test' + - packaging>=24.2 ; extra == 'test' + - jaraco-envs>=2.2 ; extra == 'test' + - pytest-xdist>=3 ; extra == 'test' + - jaraco-path>=3.7.2 ; extra == 'test' + - build[virtualenv]>=1.0.3 ; extra == 'test' + - filelock>=3.4.0 ; extra == 'test' + - ini2toml[lite]>=0.14 ; extra == 'test' + - tomli-w>=1.0.0 ; extra == 'test' + - pytest-timeout ; extra == 'test' + - pytest-perf ; sys_platform != 'cygwin' and extra == 'test' + - jaraco-develop>=7.21 ; python_full_version >= '3.9' and sys_platform != 'cygwin' and extra == 'test' + - pytest-home>=0.5 ; extra == 'test' + - pytest-subprocess ; extra == 'test' + - pyproject-hooks!=1.1 ; extra == 'test' + - jaraco-test>=5.5 ; extra == 'test' + - sphinx>=3.5 ; extra == 'doc' + - jaraco-packaging>=9.3 ; extra == 'doc' + - rst-linker>=1.9 ; extra == 'doc' + - furo ; extra == 'doc' + - sphinx-lint ; extra == 'doc' + - jaraco-tidelift>=1.4 ; extra == 'doc' + - pygments-github-lexers==0.0.5 ; extra == 'doc' + - sphinx-favicon ; extra == 'doc' + - sphinx-inline-tabs ; extra == 'doc' + - sphinx-reredirects ; extra == 'doc' + - sphinxcontrib-towncrier ; extra == 'doc' + - sphinx-notfound-page>=1,<2 ; extra == 'doc' + - pyproject-hooks!=1.1 ; extra == 'doc' + - towncrier<24.7 ; extra == 'doc' + - packaging>=24.2 ; extra == 'core' + - more-itertools>=8.8 ; extra == 'core' + - jaraco-text>=3.7 ; extra == 'core' + - importlib-metadata>=6 ; python_full_version < '3.10' and extra == 'core' + - tomli>=2.0.1 ; python_full_version < '3.11' and extra == 'core' + - wheel>=0.43.0 ; extra == 'core' + - platformdirs>=4.2.2 ; extra == 'core' + - jaraco-collections ; extra == 'core' + - jaraco-functools>=4 ; extra == 'core' + - packaging ; extra == 'core' + - more-itertools ; extra == 'core' + - pytest-checkdocs>=2.4 ; extra == 'check' + - pytest-ruff>=0.2.1 ; sys_platform != 'cygwin' and extra == 'check' + - ruff>=0.8.0 ; sys_platform != 'cygwin' and extra == 'check' + - pytest-cov ; extra == 'cover' + - pytest-enabler>=2.2 ; extra == 'enabler' + - pytest-mypy ; extra == 'type' + - mypy==1.14.* ; extra == 'type' + - importlib-metadata>=7.0.2 ; python_full_version < '3.10' and extra == 'type' + - jaraco-develop>=7.21 ; sys_platform != 'cygwin' and extra == 'type' + requires_python: '>=3.9' +- pypi: https://files.pythonhosted.org/packages/e0/f9/0595336914c5619e5f28a1fb793285925a8cd4b432c9da0a987836c7f822/shellingham-1.5.4-py2.py3-none-any.whl + name: shellingham + version: 1.5.4 + sha256: 7ecfff8f2fd72616f7481040475a65b2bf8af90a56c89140852d1120324e8686 + requires_python: '>=3.7' +- pypi: https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl + name: six + version: 1.17.0 + sha256: 4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274 + requires_python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*' +- pypi: https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl + name: sniffio + version: 1.3.1 + sha256: 2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2 + requires_python: '>=3.7' +- pypi: https://files.pythonhosted.org/packages/ed/dc/c02e01294f7265e63a7315fe086dd1df7dacb9f840a804da846b96d01b96/snowballstemmer-2.2.0-py2.py3-none-any.whl + name: snowballstemmer + version: 2.2.0 + sha256: c8e1716e83cc398ae16824e5572ae04e0d9fc2c6b985fb0f900f5f0c96ecba1a +- pypi: https://files.pythonhosted.org/packages/d1/c2/fe97d779f3ef3b15f05c94a2f1e3d21732574ed441687474db9d342a7315/soupsieve-2.6-py3-none-any.whl + name: soupsieve + version: '2.6' + sha256: e72c4ff06e4fb6e4b5a9f0f55fe6e81514581fca1515028625d0f299c602ccc9 + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/26/60/1ddff83a56d33aaf6f10ec8ce84b4c007d9368b21008876fceda7e7381ef/sphinx-8.1.3-py3-none-any.whl + name: sphinx + version: 8.1.3 + sha256: 09719015511837b76bf6e03e42eb7595ac8c2e41eeb9c29c5b755c6b677992a2 + requires_dist: + - sphinxcontrib-applehelp>=1.0.7 + - sphinxcontrib-devhelp>=1.0.6 + - sphinxcontrib-htmlhelp>=2.0.6 + - sphinxcontrib-jsmath>=1.0.1 + - sphinxcontrib-qthelp>=1.0.6 + - sphinxcontrib-serializinghtml>=1.1.9 + - jinja2>=3.1 + - pygments>=2.17 + - docutils>=0.20,<0.22 + - snowballstemmer>=2.2 + - babel>=2.13 + - alabaster>=0.7.14 + - imagesize>=1.3 + - requests>=2.30.0 + - packaging>=23.0 + - tomli>=2 ; python_full_version < '3.11' + - colorama>=0.4.6 ; sys_platform == 'win32' + - sphinxcontrib-websupport ; extra == 'docs' + - flake8>=6.0 ; extra == 'lint' + - ruff==0.6.9 ; extra == 'lint' + - mypy==1.11.1 ; extra == 'lint' + - sphinx-lint>=0.9 ; extra == 'lint' + - types-colorama==0.4.15.20240311 ; extra == 'lint' + - types-defusedxml==0.7.0.20240218 ; extra == 'lint' + - types-docutils==0.21.0.20241005 ; extra == 'lint' + - types-pillow==10.2.0.20240822 ; extra == 'lint' + - types-pygments==2.18.0.20240506 ; extra == 'lint' + - types-requests==2.32.0.20240914 ; extra == 'lint' + - types-urllib3==1.26.25.14 ; extra == 'lint' + - tomli>=2 ; extra == 'lint' + - pyright==1.1.384 ; extra == 'lint' + - pytest>=6.0 ; extra == 'lint' + - pytest>=8.0 ; extra == 'test' + - defusedxml>=0.7.1 ; extra == 'test' + - cython>=3.0 ; extra == 'test' + - setuptools>=70.0 ; extra == 'test' + - typing-extensions>=4.9 ; extra == 'test' + requires_python: '>=3.10' +- pypi: https://files.pythonhosted.org/packages/5d/85/9ebeae2f76e9e77b952f4b274c27238156eae7979c5421fba91a28f4970d/sphinxcontrib_applehelp-2.0.0-py3-none-any.whl + name: sphinxcontrib-applehelp + version: 2.0.0 + sha256: 4cd3f0ec4ac5dd9c17ec65e9ab272c9b867ea77425228e68ecf08d6b28ddbdb5 + requires_dist: + - ruff==0.5.5 ; extra == 'lint' + - mypy ; extra == 'lint' + - types-docutils ; extra == 'lint' + - sphinx>=5 ; extra == 'standalone' + - pytest ; extra == 'test' + requires_python: '>=3.9' +- pypi: https://files.pythonhosted.org/packages/35/7a/987e583882f985fe4d7323774889ec58049171828b58c2217e7f79cdf44e/sphinxcontrib_devhelp-2.0.0-py3-none-any.whl + name: sphinxcontrib-devhelp + version: 2.0.0 + sha256: aefb8b83854e4b0998877524d1029fd3e6879210422ee3780459e28a1f03a8a2 + requires_dist: + - ruff==0.5.5 ; extra == 'lint' + - mypy ; extra == 'lint' + - types-docutils ; extra == 'lint' + - sphinx>=5 ; extra == 'standalone' + - pytest ; extra == 'test' + requires_python: '>=3.9' +- pypi: https://files.pythonhosted.org/packages/70/12/d9b6bf8093906108017f3cdbecae3e2b3b4963c5112b28f0cd482b433182/sphinxcontrib_github_alt-1.2-py2.py3-none-any.whl + name: sphinxcontrib-github-alt + version: '1.2' + sha256: cdd1f61090e9ca1f317283dc85b311d788864d7e41baa479882c9fc914b43641 + requires_dist: + - docutils + - sphinx +- pypi: https://files.pythonhosted.org/packages/0a/7b/18a8c0bcec9182c05a0b3ec2a776bba4ead82750a55ff798e8d406dae604/sphinxcontrib_htmlhelp-2.1.0-py3-none-any.whl + name: sphinxcontrib-htmlhelp + version: 2.1.0 + sha256: 166759820b47002d22914d64a075ce08f4c46818e17cfc9470a9786b759b19f8 + requires_dist: + - ruff==0.5.5 ; extra == 'lint' + - mypy ; extra == 'lint' + - types-docutils ; extra == 'lint' + - sphinx>=5 ; extra == 'standalone' + - pytest ; extra == 'test' + - html5lib ; extra == 'test' + requires_python: '>=3.9' +- pypi: https://files.pythonhosted.org/packages/c2/42/4c8646762ee83602e3fb3fbe774c2fac12f317deb0b5dbeeedd2d3ba4b77/sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl + name: sphinxcontrib-jsmath + version: 1.0.1 + sha256: 2ec2eaebfb78f3f2078e73666b1415417a116cc848b72e5172e596c871103178 + requires_dist: + - pytest ; extra == 'test' + - flake8 ; extra == 'test' + - mypy ; extra == 'test' + requires_python: '>=3.5' +- pypi: https://files.pythonhosted.org/packages/27/83/859ecdd180cacc13b1f7e857abf8582a64552ea7a061057a6c716e790fce/sphinxcontrib_qthelp-2.0.0-py3-none-any.whl + name: sphinxcontrib-qthelp + version: 2.0.0 + sha256: b18a828cdba941ccd6ee8445dbe72ffa3ef8cbe7505d8cd1fa0d42d3f2d5f3eb + requires_dist: + - ruff==0.5.5 ; extra == 'lint' + - mypy ; extra == 'lint' + - types-docutils ; extra == 'lint' + - sphinx>=5 ; extra == 'standalone' + - pytest ; extra == 'test' + - defusedxml>=0.7.1 ; extra == 'test' + requires_python: '>=3.9' +- pypi: https://files.pythonhosted.org/packages/52/a7/d2782e4e3f77c8450f727ba74a8f12756d5ba823d81b941f1b04da9d033a/sphinxcontrib_serializinghtml-2.0.0-py3-none-any.whl + name: sphinxcontrib-serializinghtml + version: 2.0.0 + sha256: 6e2cb0eef194e10c27ec0023bfeb25badbbb5868244cf5bc5bdc04e4464bf331 + requires_dist: + - ruff==0.5.5 ; extra == 'lint' + - mypy ; extra == 'lint' + - types-docutils ; extra == 'lint' + - sphinx>=5 ; extra == 'standalone' + - pytest ; extra == 'test' + requires_python: '>=3.9' +- pypi: https://files.pythonhosted.org/packages/03/30/05efe7261eac789cf3ba28ef5dfb76d719df30baae6881cb54a6801c0e8f/sphinxcontrib_spelling-8.0.1-py3-none-any.whl + name: sphinxcontrib-spelling + version: 8.0.1 + sha256: 21704857c1b5e26e06bb07d15927df41c9d7ecfc1843169ecd22cb59f24069ac + requires_dist: + - pyenchant>=3.1.1 + - sphinx>=3.0.0 + - requests>=2.32.3 + - pytest ; extra == 'test' + - pytest-cov ; extra == 'test' + - coverage>=4.0,!=4.4 ; extra == 'test' + requires_python: '>=3.10' +- pypi: https://files.pythonhosted.org/packages/f1/7b/ce1eafaf1a76852e2ec9b22edecf1daa58175c090266e9f6c64afcd81d91/stack_data-0.6.3-py3-none-any.whl + name: stack-data + version: 0.6.3 + sha256: d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695 + requires_dist: + - executing>=1.2.0 + - asttokens>=2.1.0 + - pure-eval + - pytest ; extra == 'tests' + - typeguard ; extra == 'tests' + - pygments ; extra == 'tests' + - littleutils ; extra == 'tests' + - cython ; extra == 'tests' +- pypi: https://files.pythonhosted.org/packages/56/e4/879ef1dbd6ddea1c77c0078cd59b503368b0456bcca7d063a870ca2119d3/strict-rfc3339-0.7.tar.gz + name: strict-rfc3339 + version: '0.7' + sha256: 5cad17bedfc3af57b399db0fed32771f18fc54bbd917e85546088607ac5e1277 +- pypi: https://files.pythonhosted.org/packages/6a/9e/2064975477fdc887e47ad42157e214526dcad8f317a948dee17e1659a62f/terminado-0.18.1-py3-none-any.whl + name: terminado + version: 0.18.1 + sha256: a4468e1b37bb318f8a86514f65814e1afc977cf29b3992a4500d9dd305dcceb0 + requires_dist: + - ptyprocess ; os_name != 'nt' + - pywinpty>=1.1.0 ; os_name == 'nt' + - tornado>=6.1.0 + - myst-parser ; extra == 'docs' + - pydata-sphinx-theme ; extra == 'docs' + - sphinx ; extra == 'docs' + - pre-commit ; extra == 'test' + - pytest-timeout ; extra == 'test' + - pytest>=7.0 ; extra == 'test' + - mypy~=1.6 ; extra == 'typing' + - traitlets>=5.11.1 ; extra == 'typing' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/e6/34/ebdc18bae6aa14fbee1a08b63c015c72b64868ff7dae68808ab500c492e2/tinycss2-1.4.0-py3-none-any.whl + name: tinycss2 + version: 1.4.0 + sha256: 3a49cf47b7675da0b15d0c6e1df8df4ebd96e9394bb905a5775adb0d884c5289 + requires_dist: + - webencodings>=0.4 + - sphinx ; extra == 'doc' + - sphinx-rtd-theme ; extra == 'doc' + - pytest ; extra == 'test' + - ruff ; extra == 'test' + requires_python: '>=3.8' +- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda + sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e + md5: d453b98d9c83e71da0741bb0ff4d76bc + depends: + - libgcc-ng >=12 + - libzlib >=1.2.13,<2.0.0a0 + license: TCL + license_family: BSD + purls: [] + size: 3318875 + timestamp: 1699202167581 +- pypi: https://files.pythonhosted.org/packages/c7/18/c86eb8e0202e32dd3df50d43d7ff9854f8e0603945ff398974c1d91ac1ef/tomli_w-1.2.0-py3-none-any.whl + name: tomli-w + version: 1.2.0 + sha256: 188306098d013b691fcadc011abd66727d3c414c571bb01b1a174ba8c983cf90 + requires_python: '>=3.9' +- pypi: https://files.pythonhosted.org/packages/f9/b6/a447b5e4ec71e13871be01ba81f5dfc9d0af7e473da256ff46bc0e24026f/tomlkit-0.13.2-py3-none-any.whl + name: tomlkit + version: 0.13.2 + sha256: 7a974427f6e119197f670fbbbeae7bef749a6c14e793db934baefc1b5f03efde + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/22/55/b78a464de78051a30599ceb6983b01d8f732e6f69bf37b4ed07f642ac0fc/tornado-6.4.2-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl + name: tornado + version: 6.4.2 + sha256: bca9eb02196e789c9cb5c3c7c0f04fb447dc2adffd95265b2c7223a8a615ccbf + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl + name: traitlets + version: 5.14.3 + sha256: b74e89e397b1ed28cc831db7aea759ba6640cb3de13090ca145426688ff1ac4f + requires_dist: + - myst-parser ; extra == 'docs' + - pydata-sphinx-theme ; extra == 'docs' + - sphinx ; extra == 'docs' + - argcomplete>=3.0.3 ; extra == 'test' + - mypy>=1.7.0 ; extra == 'test' + - pre-commit ; extra == 'test' + - pytest-mock ; extra == 'test' + - pytest-mypy-testing ; extra == 'test' + - pytest>=7.0,<8.2 ; extra == 'test' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/ef/bf/44195f3d9c3c4fe4cccf1c261c80d50781b9e8a0a6febf084c09c66740ff/trove_classifiers-2025.3.3.18-py3-none-any.whl + name: trove-classifiers + version: 2025.3.3.18 + sha256: 215630da61cf8757c373f81b602fc1283ec5a691cf12c5f9f96f11d6ad5fc7f2 +- pypi: https://files.pythonhosted.org/packages/0f/b3/ca41df24db5eb99b00d97f89d7674a90cb6b3134c52fb8121b6d8d30f15c/types_python_dateutil-2.9.0.20241206-py3-none-any.whl + name: types-python-dateutil + version: 2.9.0.20241206 + sha256: e248a4bc70a486d3e3ec84d0dc30eec3a5f979d6e7ee4123ae043eedbb987f53 + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/26/9f/ad63fc0248c5379346306f8668cda6e2e2e9c95e01216d2b8ffd9ff037d0/typing_extensions-4.12.2-py3-none-any.whl + name: typing-extensions + version: 4.12.2 + sha256: 04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d + requires_python: '>=3.8' +- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025a-h78e105d_0.conda + sha256: c4b1ae8a2931fe9b274c44af29c5475a85b37693999f8c792dad0f8c6734b1de + md5: dbcace4706afdfb7eb891f7b37d07c04 + license: LicenseRef-Public-Domain + purls: [] + size: 122921 + timestamp: 1737119101255 +- pypi: https://files.pythonhosted.org/packages/e7/00/3fca040d7cf8a32776d3d81a00c8ee7457e00f80c649f1e4a863c8321ae9/uri_template-1.3.0-py3-none-any.whl + name: uri-template + version: 1.3.0 + sha256: a44a133ea12d44a0c0f06d7d42a52d71282e77e2f937d8abd5655b8d56fc1363 + requires_dist: + - types-pyyaml ; extra == 'dev' + - mypy ; extra == 'dev' + - flake8 ; extra == 'dev' + - flake8-annotations ; extra == 'dev' + - flake8-bandit ; extra == 'dev' + - flake8-bugbear ; extra == 'dev' + - flake8-commas ; extra == 'dev' + - flake8-comprehensions ; extra == 'dev' + - flake8-continuation ; extra == 'dev' + - flake8-datetimez ; extra == 'dev' + - flake8-docstrings ; extra == 'dev' + - flake8-import-order ; extra == 'dev' + - flake8-literal ; extra == 'dev' + - flake8-modern-annotations ; extra == 'dev' + - flake8-noqa ; extra == 'dev' + - flake8-pyproject ; extra == 'dev' + - flake8-requirements ; extra == 'dev' + - flake8-typechecking-import ; extra == 'dev' + - flake8-use-fstring ; extra == 'dev' + - pep8-naming ; extra == 'dev' + requires_python: '>=3.7' +- pypi: https://files.pythonhosted.org/packages/c8/19/4ec628951a74043532ca2cf5d97b7b14863931476d117c471e8e2b1eb39f/urllib3-2.3.0-py3-none-any.whl + name: urllib3 + version: 2.3.0 + sha256: 1cee9ad369867bfdbbb48b7dd50374c0967a0bb7710050facf0dd6911440e3df + requires_dist: + - brotli>=1.0.9 ; platform_python_implementation == 'CPython' and extra == 'brotli' + - brotlicffi>=0.8.0 ; platform_python_implementation != 'CPython' and extra == 'brotli' + - h2>=4,<5 ; extra == 'h2' + - pysocks>=1.5.6,!=1.5.7,<2.0 ; extra == 'socks' + - zstandard>=0.18.0 ; extra == 'zstd' + requires_python: '>=3.9' +- pypi: https://files.pythonhosted.org/packages/43/99/3ec6335ded5b88c2f7ed25c56ffd952546f7ed007ffb1e1539dc3b57015a/userpath-1.9.2-py3-none-any.whl + name: userpath + version: 1.9.2 + sha256: 2cbf01a23d655a1ff8fc166dfb78da1b641d1ceabf0fe5f970767d380b14e89d + requires_dist: + - click + requires_python: '>=3.7' +- pypi: https://files.pythonhosted.org/packages/66/32/ad9944c9716360c82fb62516aca72bdeaedf7991483383f3a06734cb2cf4/uv-0.6.5-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + name: uv + version: 0.6.5 + sha256: 15dae245979add192c4845947da1a9141f95c19403d1c0d75019182e6882e7d4 + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/c2/eb/c6db6e3001d58c6a9e67c74bb7b4206767caa3ccc28c6b9eaf4c23fb4e34/virtualenv-20.29.3-py3-none-any.whl + name: virtualenv + version: 20.29.3 + sha256: 3e3d00f5807e83b234dfb6122bf37cfadf4be216c53a49ac059d02414f819170 + requires_dist: + - distlib>=0.3.7,<1 + - filelock>=3.12.2,<4 + - importlib-metadata>=6.6 ; python_full_version < '3.8' + - platformdirs>=3.9.1,<5 + - furo>=2023.7.26 ; extra == 'docs' + - proselint>=0.13 ; extra == 'docs' + - sphinx>=7.1.2,!=7.3 ; extra == 'docs' + - sphinx-argparse>=0.4 ; extra == 'docs' + - sphinxcontrib-towncrier>=0.2.1a0 ; extra == 'docs' + - towncrier>=23.6 ; extra == 'docs' + - covdefaults>=2.3 ; extra == 'test' + - coverage-enable-subprocess>=1 ; extra == 'test' + - coverage>=7.2.7 ; extra == 'test' + - flaky>=3.7 ; extra == 'test' + - packaging>=23.1 ; extra == 'test' + - pytest-env>=0.8.2 ; extra == 'test' + - pytest-freezer>=0.4.8 ; (python_full_version >= '3.13' and platform_python_implementation == 'CPython' and sys_platform == 'win32' and extra == 'test') or (platform_python_implementation == 'PyPy' and extra == 'test') + - pytest-mock>=3.11.1 ; extra == 'test' + - pytest-randomly>=3.12 ; extra == 'test' + - pytest-timeout>=2.1 ; extra == 'test' + - pytest>=7.4 ; extra == 'test' + - setuptools>=68 ; extra == 'test' + - time-machine>=2.10 ; platform_python_implementation == 'CPython' and extra == 'test' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/fd/84/fd2ba7aafacbad3c4201d395674fc6348826569da3c0937e75505ead3528/wcwidth-0.2.13-py2.py3-none-any.whl + name: wcwidth + version: 0.2.13 + sha256: 3da69048e4540d84af32131829ff948f1e022c1c6bdb8d6102117aac784f6859 + requires_dist: + - backports-functools-lru-cache>=1.2.1 ; python_full_version < '3.2' +- pypi: https://files.pythonhosted.org/packages/60/e8/c0e05e4684d13459f93d312077a9a2efbe04d59c393bc2b8802248c908d4/webcolors-24.11.1-py3-none-any.whl + name: webcolors + version: 24.11.1 + sha256: 515291393b4cdf0eb19c155749a096f779f7d909f7cceea072791cb9095b92e9 + requires_python: '>=3.9' +- pypi: https://files.pythonhosted.org/packages/f4/24/2a3e3df732393fed8b3ebf2ec078f05546de641fe1b667ee316ec1dcf3b7/webencodings-0.5.1-py2.py3-none-any.whl + name: webencodings + version: 0.5.1 + sha256: a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78 +- pypi: https://files.pythonhosted.org/packages/5a/84/44687a29792a70e111c5c477230a72c4b957d88d16141199bf9acb7537a3/websocket_client-1.8.0-py3-none-any.whl + name: websocket-client + version: 1.8.0 + sha256: 17b44cc997f5c498e809b22cdf2d9c7a9e71c02c8cc2b6c56e7c2d1239bfa526 + requires_dist: + - sphinx>=6.0 ; extra == 'docs' + - sphinx-rtd-theme>=1.1.0 ; extra == 'docs' + - myst-parser>=2.0.0 ; extra == 'docs' + - python-socks ; extra == 'optional' + - wsaccel ; extra == 'optional' + - websockets ; extra == 'test' + requires_python: '>=3.8' +- pypi: https://files.pythonhosted.org/packages/52/24/ab44c871b0f07f491e5d2ad12c9bd7358e527510618cb1b803a88e986db1/werkzeug-3.1.3-py3-none-any.whl + name: werkzeug + version: 3.1.3 + sha256: 54b78bf3716d19a65be4fceccc0d1d7b89e608834989dfae50ea87564639213e + requires_dist: + - markupsafe>=2.1.1 + - watchdog>=2.3 ; extra == 'watchdog' + requires_python: '>=3.9' +- conda: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-hb9d3cd8_2.conda + sha256: 5d7c0e5f0005f74112a34a7425179f4eb6e73c92f5d109e6af4ddeca407c92ab + md5: c9f075ab2f33b3bbee9e62d4ad0a6cd8 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libzlib 1.3.1 hb9d3cd8_2 + license: Zlib + license_family: Other + purls: [] + size: 92286 + timestamp: 1727963153079 +- pypi: https://files.pythonhosted.org/packages/fa/18/89ac62eac46b69948bf35fcd90d37103f38722968e2981f752d69081ec4d/zstandard-0.23.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + name: zstandard + version: 0.23.0 + sha256: 6f77fa49079891a4aab203d0b1744acc85577ed16d767b52fc089d83faf8d8ed + requires_dist: + - cffi>=1.17 ; platform_python_implementation == 'PyPy' + - cffi>=1.17 ; extra == 'cffi' + requires_python: '>=3.8' diff --git a/pyproject.toml b/pyproject.toml index de88d44d78..46341755f2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -289,3 +289,25 @@ exclude = ["tests", "ui-tests", "docs", "node_modules", "setup.py"] [tool.repo-review] ignore = ["GH102", "PC180", "PC111"] + +[tool.pixi.project] +channels = ["conda-forge"] +platforms = ["linux-64"] + +[tool.pixi.pypi-dependencies] +notebook = { path = ".", editable = true, extras = ["dev", "docs"] } + +[tool.pixi.environments] +default = { solve-group = "default" } +dev = { features = ["dev"], solve-group = "default" } +docs = { features = ["docs"], solve-group = "default" } +test = { features = ["test"], solve-group = "default" } + +[tool.pixi.tasks] +develop = "jlpm develop" +start = "jupyter notebook --no-browser --ServerApp.token='' --ServerApp.allow_remote_access=True" + +[tool.pixi.dependencies] +pip = ">=25.0.1,<26" +nodejs = "22.*" +python = ">=3.12.0,<3.14" From 6319ce6c3a32e4bce62e5eb96d85736bf22eda9c Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Thu, 13 Mar 2025 08:25:38 +0100 Subject: [PATCH 002/143] Update `@babel` dependencies (#7605) --- yarn.lock | 133 ++++++++++++++++++------------------------------------ 1 file changed, 45 insertions(+), 88 deletions(-) diff --git a/yarn.lock b/yarn.lock index 9322a33281..1230ef90f8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -48,13 +48,14 @@ __metadata: languageName: node linkType: hard -"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.22.13, @babel/code-frame@npm:^7.23.5": - version: 7.23.5 - resolution: "@babel/code-frame@npm:7.23.5" +"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.22.13, @babel/code-frame@npm:^7.23.5, @babel/code-frame@npm:^7.26.2": + version: 7.26.2 + resolution: "@babel/code-frame@npm:7.26.2" dependencies: - "@babel/highlight": ^7.23.4 - chalk: ^2.4.2 - checksum: d90981fdf56a2824a9b14d19a4c0e8db93633fd488c772624b4e83e0ceac6039a27cd298a247c3214faa952bf803ba23696172ae7e7235f3b97f43ba278c569a + "@babel/helper-validator-identifier": ^7.25.9 + js-tokens: ^4.0.0 + picocolors: ^1.0.0 + checksum: db13f5c42d54b76c1480916485e6900748bbcb0014a8aca87f50a091f70ff4e0d0a6db63cade75eb41fcc3d2b6ba0a7f89e343def4f96f00269b41b8ab8dd7b8 languageName: node linkType: hard @@ -306,17 +307,17 @@ __metadata: languageName: node linkType: hard -"@babel/helper-string-parser@npm:^7.23.4": - version: 7.23.4 - resolution: "@babel/helper-string-parser@npm:7.23.4" - checksum: c0641144cf1a7e7dc93f3d5f16d5327465b6cf5d036b48be61ecba41e1eece161b48f46b7f960951b67f8c3533ce506b16dece576baef4d8b3b49f8c65410f90 +"@babel/helper-string-parser@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-string-parser@npm:7.25.9" + checksum: 6435ee0849e101681c1849868278b5aee82686ba2c1e27280e5e8aca6233af6810d39f8e4e693d2f2a44a3728a6ccfd66f72d71826a94105b86b731697cdfa99 languageName: node linkType: hard -"@babel/helper-validator-identifier@npm:^7.22.20": - version: 7.22.20 - resolution: "@babel/helper-validator-identifier@npm:7.22.20" - checksum: 136412784d9428266bcdd4d91c32bcf9ff0e8d25534a9d94b044f77fe76bc50f941a90319b05aafd1ec04f7d127cd57a179a3716009ff7f3412ef835ada95bdc +"@babel/helper-validator-identifier@npm:^7.22.20, @babel/helper-validator-identifier@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-validator-identifier@npm:7.25.9" + checksum: 5b85918cb1a92a7f3f508ea02699e8d2422fe17ea8e82acd445006c0ef7520fbf48e3dbcdaf7b0a1d571fc3a2715a29719e5226636cb6042e15fe6ed2a590944 languageName: node linkType: hard @@ -339,33 +340,23 @@ __metadata: linkType: hard "@babel/helpers@npm:^7.23.0": - version: 7.23.1 - resolution: "@babel/helpers@npm:7.23.1" + version: 7.26.10 + resolution: "@babel/helpers@npm:7.26.10" dependencies: - "@babel/template": ^7.22.15 - "@babel/traverse": ^7.23.0 - "@babel/types": ^7.23.0 - checksum: acfc345102045c24ea2a4d60e00dcf8220e215af3add4520e2167700661338e6a80bd56baf44bb764af05ec6621101c9afc315dc107e18c61fa6da8acbdbb893 + "@babel/template": ^7.26.9 + "@babel/types": ^7.26.10 + checksum: daa3689024a4fc5e024fea382915c6fb0fde15cf1b2f6093435725c79edccbef7646d4a656b199c046ff5c61846d1b3876d6096b7bf0635823de6aaff2a1e1a4 languageName: node linkType: hard -"@babel/highlight@npm:^7.23.4": - version: 7.23.4 - resolution: "@babel/highlight@npm:7.23.4" +"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.0, @babel/parser@npm:^7.23.6, @babel/parser@npm:^7.26.9": + version: 7.26.10 + resolution: "@babel/parser@npm:7.26.10" dependencies: - "@babel/helper-validator-identifier": ^7.22.20 - chalk: ^2.4.2 - js-tokens: ^4.0.0 - checksum: 643acecdc235f87d925979a979b539a5d7d1f31ae7db8d89047269082694122d11aa85351304c9c978ceeb6d250591ccadb06c366f358ccee08bb9c122476b89 - languageName: node - linkType: hard - -"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.22.15, @babel/parser@npm:^7.23.0, @babel/parser@npm:^7.23.6": - version: 7.23.6 - resolution: "@babel/parser@npm:7.23.6" + "@babel/types": ^7.26.10 bin: parser: ./bin/babel-parser.js - checksum: 140801c43731a6c41fd193f5c02bc71fd647a0360ca616b23d2db8be4b9739b9f951a03fc7c2db4f9b9214f4b27c1074db0f18bc3fa653783082d5af7c8860d5 + checksum: 81f9af962aea55a2973d213dffc6191939df7eba0511ba585d23f0d838931f5fca2efb83ae382e4b9bb486f20ae1b2607cb1b8be49af89e9f011fb4355727f47 languageName: node linkType: hard @@ -1325,22 +1316,22 @@ __metadata: linkType: hard "@babel/runtime@npm:^7.15.4, @babel/runtime@npm:^7.16.7, @babel/runtime@npm:^7.20.6, @babel/runtime@npm:^7.8.4": - version: 7.23.1 - resolution: "@babel/runtime@npm:7.23.1" + version: 7.26.10 + resolution: "@babel/runtime@npm:7.26.10" dependencies: regenerator-runtime: ^0.14.0 - checksum: 0cd0d43e6e7dc7f9152fda8c8312b08321cda2f56ef53d6c22ebdd773abdc6f5d0a69008de90aa41908d00e2c1facb24715ff121274e689305c858355ff02c70 + checksum: 22d2e0abb86e90de489ab16bb578db6fe2b63a88696db431198b24963749820c723f1982298cdbbea187f7b2b80fb4d98a514faf114ddb2fdc14a4b96277b955 languageName: node linkType: hard -"@babel/template@npm:^7.22.15, @babel/template@npm:^7.22.5, @babel/template@npm:^7.3.3": - version: 7.22.15 - resolution: "@babel/template@npm:7.22.15" +"@babel/template@npm:^7.22.15, @babel/template@npm:^7.22.5, @babel/template@npm:^7.26.9, @babel/template@npm:^7.3.3": + version: 7.26.9 + resolution: "@babel/template@npm:7.26.9" dependencies: - "@babel/code-frame": ^7.22.13 - "@babel/parser": ^7.22.15 - "@babel/types": ^7.22.15 - checksum: 1f3e7dcd6c44f5904c184b3f7fe280394b191f2fed819919ffa1e529c259d5b197da8981b6ca491c235aee8dbad4a50b7e31304aa531271cb823a4a24a0dd8fd + "@babel/code-frame": ^7.26.2 + "@babel/parser": ^7.26.9 + "@babel/types": ^7.26.9 + checksum: 32259298c775e543ab994daff0c758b3d6a184349b146d6497aa46cec5907bc47a6bc09e7295a81a5eccfbd023d4811a9777cb5d698d582d09a87cabf5b576e7 languageName: node linkType: hard @@ -1362,14 +1353,13 @@ __metadata: languageName: node linkType: hard -"@babel/types@npm:^7.0.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.22.15, @babel/types@npm:^7.22.19, @babel/types@npm:^7.22.5, @babel/types@npm:^7.23.0, @babel/types@npm:^7.23.6, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4, @babel/types@npm:^7.8.3": - version: 7.23.6 - resolution: "@babel/types@npm:7.23.6" +"@babel/types@npm:^7.0.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.22.15, @babel/types@npm:^7.22.19, @babel/types@npm:^7.22.5, @babel/types@npm:^7.23.0, @babel/types@npm:^7.23.6, @babel/types@npm:^7.26.10, @babel/types@npm:^7.26.9, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4": + version: 7.26.10 + resolution: "@babel/types@npm:7.26.10" dependencies: - "@babel/helper-string-parser": ^7.23.4 - "@babel/helper-validator-identifier": ^7.22.20 - to-fast-properties: ^2.0.0 - checksum: 68187dbec0d637f79bc96263ac95ec8b06d424396678e7e225492be866414ce28ebc918a75354d4c28659be6efe30020b4f0f6df81cc418a2d30645b690a8de0 + "@babel/helper-string-parser": ^7.25.9 + "@babel/helper-validator-identifier": ^7.25.9 + checksum: 07340068ea3824dcaccf702dfc9628175c9926912ad6efba182d8b07e20953297d0a514f6fb103a61b9d5c555c8b87fc2237ddb06efebe14794eefc921dfa114 languageName: node linkType: hard @@ -8254,7 +8244,7 @@ __metadata: languageName: node linkType: hard -"chalk@npm:^2.3.0, chalk@npm:^2.4.1, chalk@npm:^2.4.2": +"chalk@npm:^2.3.0, chalk@npm:^2.4.1": version: 2.4.2 resolution: "chalk@npm:2.4.2" dependencies: @@ -9137,16 +9127,7 @@ __metadata: languageName: node linkType: hard -"d3-array@npm:1 - 3, d3-array@npm:2 - 3, d3-array@npm:2.10.0 - 3, d3-array@npm:2.5.0 - 3, d3-array@npm:3, d3-array@npm:^3.2.0, d3-array@npm:^3.2.2": - version: 3.2.2 - resolution: "d3-array@npm:3.2.2" - dependencies: - internmap: 1 - 2 - checksum: 98af3db792685ceca5d9c3721efba0c567520da5532b2c7a590fd83627a598ea225d11c2cecbad404dc154120feb5ea6df0ded38f82ddf342c714cfd0c6143d1 - languageName: node - linkType: hard - -"d3-array@npm:3.2.4": +"d3-array@npm:1 - 3, d3-array@npm:2 - 3, d3-array@npm:2.10.0 - 3, d3-array@npm:2.5.0 - 3, d3-array@npm:3, d3-array@npm:3.2.4, d3-array@npm:^3.2.0, d3-array@npm:^3.2.2": version: 3.2.4 resolution: "d3-array@npm:3.2.4" dependencies: @@ -9368,17 +9349,7 @@ __metadata: languageName: node linkType: hard -"d3-scale-chromatic@npm:3": - version: 3.0.0 - resolution: "d3-scale-chromatic@npm:3.0.0" - dependencies: - d3-color: 1 - 3 - d3-interpolate: 1 - 3 - checksum: a8ce4cb0267a17b28ebbb929f5e3071d985908a9c13b6fcaa2a198e1e018f275804d691c5794b970df0049725b7944f32297b31603d235af6414004f0c7f82c0 - languageName: node - linkType: hard - -"d3-scale-chromatic@npm:^3.1.0": +"d3-scale-chromatic@npm:3, d3-scale-chromatic@npm:^3.1.0": version: 3.1.0 resolution: "d3-scale-chromatic@npm:3.1.0" dependencies: @@ -18079,13 +18050,6 @@ __metadata: languageName: node linkType: hard -"to-fast-properties@npm:^2.0.0": - version: 2.0.0 - resolution: "to-fast-properties@npm:2.0.0" - checksum: be2de62fe58ead94e3e592680052683b1ec986c72d589e7b21e5697f8744cdbf48c266fa72f6c15932894c10187b5f54573a3bcf7da0bfd964d5caf23d436168 - languageName: node - linkType: hard - "to-regex-range@npm:^5.0.1": version: 5.0.1 resolution: "to-regex-range@npm:5.0.1" @@ -19155,14 +19119,7 @@ __metadata: languageName: node linkType: hard -"vega-util@npm:^1.17.1, vega-util@npm:^1.17.2, vega-util@npm:~1.17.2": - version: 1.17.2 - resolution: "vega-util@npm:1.17.2" - checksum: 5d681cb1a6ffda7af1b74df7c1c46a32f1d874daef54f9c9c65c7d7c7bfc4271dc6d9b1c1c7a853b14eb6e4cc8ec811b0132cd3ea25fa85259eac92e1b4f07fa - languageName: node - linkType: hard - -"vega-util@npm:^1.17.3": +"vega-util@npm:^1.17.1, vega-util@npm:^1.17.2, vega-util@npm:^1.17.3, vega-util@npm:~1.17.2": version: 1.17.3 resolution: "vega-util@npm:1.17.3" checksum: d8bb21e2cb2ffa005bc3d9859d13aca8a0f13d6a143b8e12598c307de011ce1bc947402769e735ceb62d3b4e648214bdc00664aea1d819ad56563090e96d44b5 From 6d06d97302bd1bb77e25864214ade2277f2e50d4 Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Fri, 14 Mar 2025 09:47:11 +0100 Subject: [PATCH 003/143] Update to JupyterLab `v4.4.0b1` (#7607) * Update to JupyterLab v4.4.0b1 * Update playwright * update pixi..lock * update snapshots * fix pluginmanager dev tools error * fix handling of move to trash --------- Co-authored-by: github-actions[bot] --- .pre-commit-config.yaml | 2 +- app/package.json | 254 +- buildutils/package.json | 2 +- package.json | 2 +- packages/application-extension/package.json | 22 +- packages/application-extension/src/index.ts | 17 + packages/application/package.json | 10 +- packages/console-extension/package.json | 6 +- packages/docmanager-extension/package.json | 10 +- .../documentsearch-extension/package.json | 4 +- packages/help-extension/package.json | 8 +- packages/lab-extension/package.json | 16 +- packages/notebook-extension/package.json | 14 +- packages/terminal-extension/package.json | 6 +- packages/tree-extension/package.json | 24 +- packages/tree/package.json | 22 +- packages/ui-components/package.json | 2 +- pixi.lock | 20 +- pyproject.toml | 6 +- ui-tests/package.json | 4 +- ui-tests/test/filebrowser.spec.ts | 6 +- .../opened-menu-run-chromium-linux.png | Bin 7096 -> 20225 bytes .../opened-menu-run-firefox-linux.png | Bin 24915 -> 25119 bytes ui-tests/yarn.lock | 2094 +++++----- yarn.lock | 3588 +++++++++-------- 25 files changed, 3225 insertions(+), 2914 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index c70cd4e688..69908ef23b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -45,7 +45,7 @@ repos: files: "^notebook" stages: [manual] args: ["--install-types", "--non-interactive"] - additional_dependencies: ["traitlets>=5.13", "tornado", "jupyter_server>=2.10", "jupyterlab_server>=2.25", "jupyterlab>=4.4.0b0,<4.5"] + additional_dependencies: ["traitlets>=5.13", "tornado", "jupyter_server>=2.10", "jupyterlab_server>=2.25", "jupyterlab>=4.4.0b1,<4.5"] - repo: https://github.com/pre-commit/pygrep-hooks rev: 'v1.10.0' diff --git a/app/package.json b/app/package.json index 76c09e0635..d43b221ad3 100644 --- a/app/package.json +++ b/app/package.json @@ -26,84 +26,84 @@ "@jupyter/react-components": "~0.16.7", "@jupyter/web-components": "~0.16.7", "@jupyter/ydoc": "~3.0.0", - "@jupyterlab/application": "~4.4.0-beta.0", - "@jupyterlab/application-extension": "~4.4.0-beta.0", - "@jupyterlab/apputils": "~4.5.0-beta.0", - "@jupyterlab/apputils-extension": "~4.4.0-beta.0", - "@jupyterlab/attachments": "~4.4.0-beta.0", - "@jupyterlab/cell-toolbar": "~4.4.0-beta.0", - "@jupyterlab/cell-toolbar-extension": "~4.4.0-beta.0", - "@jupyterlab/celltags-extension": "~4.4.0-beta.0", - "@jupyterlab/codeeditor": "~4.4.0-beta.0", - "@jupyterlab/codemirror": "~4.4.0-beta.0", - "@jupyterlab/codemirror-extension": "~4.4.0-beta.0", - "@jupyterlab/completer": "~4.4.0-beta.0", - "@jupyterlab/completer-extension": "~4.4.0-beta.0", - "@jupyterlab/console": "~4.4.0-beta.0", - "@jupyterlab/console-extension": "~4.4.0-beta.0", - "@jupyterlab/coreutils": "~6.4.0-beta.0", - "@jupyterlab/csvviewer-extension": "~4.4.0-beta.0", - "@jupyterlab/debugger": "~4.4.0-beta.0", - "@jupyterlab/debugger-extension": "~4.4.0-beta.0", - "@jupyterlab/docmanager": "~4.4.0-beta.0", - "@jupyterlab/docmanager-extension": "~4.4.0-beta.0", - "@jupyterlab/documentsearch": "~4.4.0-beta.0", - "@jupyterlab/documentsearch-extension": "~4.4.0-beta.0", - "@jupyterlab/extensionmanager": "~4.4.0-beta.0", - "@jupyterlab/extensionmanager-extension": "~4.4.0-beta.0", - "@jupyterlab/filebrowser": "~4.4.0-beta.0", - "@jupyterlab/filebrowser-extension": "~4.4.0-beta.0", - "@jupyterlab/fileeditor": "~4.4.0-beta.0", - "@jupyterlab/fileeditor-extension": "~4.4.0-beta.0", - "@jupyterlab/help-extension": "~4.4.0-beta.0", - "@jupyterlab/htmlviewer": "~4.4.0-beta.0", - "@jupyterlab/htmlviewer-extension": "~4.4.0-beta.0", - "@jupyterlab/hub-extension": "~4.4.0-beta.0", - "@jupyterlab/imageviewer": "~4.4.0-beta.0", - "@jupyterlab/imageviewer-extension": "~4.4.0-beta.0", - "@jupyterlab/javascript-extension": "~4.4.0-beta.0", - "@jupyterlab/json-extension": "~4.4.0-beta.0", - "@jupyterlab/lsp": "~4.4.0-beta.0", - "@jupyterlab/lsp-extension": "~4.4.0-beta.0", - "@jupyterlab/mainmenu": "~4.4.0-beta.0", - "@jupyterlab/mainmenu-extension": "~4.4.0-beta.0", - "@jupyterlab/markdownviewer": "~4.4.0-beta.0", - "@jupyterlab/markdownviewer-extension": "~4.4.0-beta.0", - "@jupyterlab/markedparser-extension": "~4.4.0-beta.0", - "@jupyterlab/mathjax-extension": "~4.4.0-beta.0", - "@jupyterlab/mermaid": "~4.4.0-beta.0", - "@jupyterlab/mermaid-extension": "~4.4.0-beta.0", - "@jupyterlab/metadataform": "~4.4.0-beta.0", - "@jupyterlab/metadataform-extension": "~4.4.0-beta.0", - "@jupyterlab/notebook": "~4.4.0-beta.0", - "@jupyterlab/notebook-extension": "~4.4.0-beta.0", - "@jupyterlab/observables": "~5.4.0-beta.0", - "@jupyterlab/outputarea": "~4.4.0-beta.0", - "@jupyterlab/pdf-extension": "~4.4.0-beta.0", - "@jupyterlab/pluginmanager-extension": "~4.4.0-beta.0", - "@jupyterlab/rendermime": "~4.4.0-beta.0", - "@jupyterlab/rendermime-interfaces": "~3.12.0-beta.0", - "@jupyterlab/running-extension": "~4.4.0-beta.0", - "@jupyterlab/services": "~7.4.0-beta.0", - "@jupyterlab/settingeditor": "~4.4.0-beta.0", - "@jupyterlab/settingeditor-extension": "~4.4.0-beta.0", - "@jupyterlab/settingregistry": "~4.4.0-beta.0", - "@jupyterlab/shortcuts-extension": "~5.2.0-beta.0", - "@jupyterlab/statedb": "~4.4.0-beta.0", - "@jupyterlab/statusbar": "~4.4.0-beta.0", - "@jupyterlab/terminal": "~4.4.0-beta.0", - "@jupyterlab/terminal-extension": "~4.4.0-beta.0", - "@jupyterlab/theme-dark-extension": "~4.4.0-beta.0", - "@jupyterlab/theme-dark-high-contrast-extension": "~4.4.0-beta.0", - "@jupyterlab/theme-light-extension": "~4.4.0-beta.0", - "@jupyterlab/toc-extension": "~6.4.0-beta.0", - "@jupyterlab/tooltip": "~4.4.0-beta.0", - "@jupyterlab/tooltip-extension": "~4.4.0-beta.0", - "@jupyterlab/translation": "~4.4.0-beta.0", - "@jupyterlab/translation-extension": "~4.4.0-beta.0", - "@jupyterlab/ui-components": "~4.4.0-beta.0", - "@jupyterlab/ui-components-extension": "~4.4.0-beta.0", - "@jupyterlab/vega5-extension": "~4.4.0-beta.0", + "@jupyterlab/application": "~4.4.0-beta.1", + "@jupyterlab/application-extension": "~4.4.0-beta.1", + "@jupyterlab/apputils": "~4.5.0-beta.1", + "@jupyterlab/apputils-extension": "~4.4.0-beta.1", + "@jupyterlab/attachments": "~4.4.0-beta.1", + "@jupyterlab/cell-toolbar": "~4.4.0-beta.1", + "@jupyterlab/cell-toolbar-extension": "~4.4.0-beta.1", + "@jupyterlab/celltags-extension": "~4.4.0-beta.1", + "@jupyterlab/codeeditor": "~4.4.0-beta.1", + "@jupyterlab/codemirror": "~4.4.0-beta.1", + "@jupyterlab/codemirror-extension": "~4.4.0-beta.1", + "@jupyterlab/completer": "~4.4.0-beta.1", + "@jupyterlab/completer-extension": "~4.4.0-beta.1", + "@jupyterlab/console": "~4.4.0-beta.1", + "@jupyterlab/console-extension": "~4.4.0-beta.1", + "@jupyterlab/coreutils": "~6.4.0-beta.1", + "@jupyterlab/csvviewer-extension": "~4.4.0-beta.1", + "@jupyterlab/debugger": "~4.4.0-beta.1", + "@jupyterlab/debugger-extension": "~4.4.0-beta.1", + "@jupyterlab/docmanager": "~4.4.0-beta.1", + "@jupyterlab/docmanager-extension": "~4.4.0-beta.1", + "@jupyterlab/documentsearch": "~4.4.0-beta.1", + "@jupyterlab/documentsearch-extension": "~4.4.0-beta.1", + "@jupyterlab/extensionmanager": "~4.4.0-beta.1", + "@jupyterlab/extensionmanager-extension": "~4.4.0-beta.1", + "@jupyterlab/filebrowser": "~4.4.0-beta.1", + "@jupyterlab/filebrowser-extension": "~4.4.0-beta.1", + "@jupyterlab/fileeditor": "~4.4.0-beta.1", + "@jupyterlab/fileeditor-extension": "~4.4.0-beta.1", + "@jupyterlab/help-extension": "~4.4.0-beta.1", + "@jupyterlab/htmlviewer": "~4.4.0-beta.1", + "@jupyterlab/htmlviewer-extension": "~4.4.0-beta.1", + "@jupyterlab/hub-extension": "~4.4.0-beta.1", + "@jupyterlab/imageviewer": "~4.4.0-beta.1", + "@jupyterlab/imageviewer-extension": "~4.4.0-beta.1", + "@jupyterlab/javascript-extension": "~4.4.0-beta.1", + "@jupyterlab/json-extension": "~4.4.0-beta.1", + "@jupyterlab/lsp": "~4.4.0-beta.1", + "@jupyterlab/lsp-extension": "~4.4.0-beta.1", + "@jupyterlab/mainmenu": "~4.4.0-beta.1", + "@jupyterlab/mainmenu-extension": "~4.4.0-beta.1", + "@jupyterlab/markdownviewer": "~4.4.0-beta.1", + "@jupyterlab/markdownviewer-extension": "~4.4.0-beta.1", + "@jupyterlab/markedparser-extension": "~4.4.0-beta.1", + "@jupyterlab/mathjax-extension": "~4.4.0-beta.1", + "@jupyterlab/mermaid": "~4.4.0-beta.1", + "@jupyterlab/mermaid-extension": "~4.4.0-beta.1", + "@jupyterlab/metadataform": "~4.4.0-beta.1", + "@jupyterlab/metadataform-extension": "~4.4.0-beta.1", + "@jupyterlab/notebook": "~4.4.0-beta.1", + "@jupyterlab/notebook-extension": "~4.4.0-beta.1", + "@jupyterlab/observables": "~5.4.0-beta.1", + "@jupyterlab/outputarea": "~4.4.0-beta.1", + "@jupyterlab/pdf-extension": "~4.4.0-beta.1", + "@jupyterlab/pluginmanager-extension": "~4.4.0-beta.1", + "@jupyterlab/rendermime": "~4.4.0-beta.1", + "@jupyterlab/rendermime-interfaces": "~3.12.0-beta.1", + "@jupyterlab/running-extension": "~4.4.0-beta.1", + "@jupyterlab/services": "~7.4.0-beta.1", + "@jupyterlab/settingeditor": "~4.4.0-beta.1", + "@jupyterlab/settingeditor-extension": "~4.4.0-beta.1", + "@jupyterlab/settingregistry": "~4.4.0-beta.1", + "@jupyterlab/shortcuts-extension": "~5.2.0-beta.1", + "@jupyterlab/statedb": "~4.4.0-beta.1", + "@jupyterlab/statusbar": "~4.4.0-beta.1", + "@jupyterlab/terminal": "~4.4.0-beta.1", + "@jupyterlab/terminal-extension": "~4.4.0-beta.1", + "@jupyterlab/theme-dark-extension": "~4.4.0-beta.1", + "@jupyterlab/theme-dark-high-contrast-extension": "~4.4.0-beta.1", + "@jupyterlab/theme-light-extension": "~4.4.0-beta.1", + "@jupyterlab/toc-extension": "~6.4.0-beta.1", + "@jupyterlab/tooltip": "~4.4.0-beta.1", + "@jupyterlab/tooltip-extension": "~4.4.0-beta.1", + "@jupyterlab/translation": "~4.4.0-beta.1", + "@jupyterlab/translation-extension": "~4.4.0-beta.1", + "@jupyterlab/ui-components": "~4.4.0-beta.1", + "@jupyterlab/ui-components-extension": "~4.4.0-beta.1", + "@jupyterlab/vega5-extension": "~4.4.0-beta.1", "@lezer/common": "~1.2.1", "@lezer/highlight": "~1.2.0", "@lumino/algorithm": "~2.0.2", @@ -134,60 +134,60 @@ "@jupyter-notebook/tree": "^7.4.0-beta.0", "@jupyter-notebook/tree-extension": "^7.4.0-beta.0", "@jupyter-notebook/ui-components": "^7.4.0-beta.0", - "@jupyterlab/application-extension": "~4.4.0-beta.0", - "@jupyterlab/apputils-extension": "~4.4.0-beta.0", - "@jupyterlab/attachments": "~4.4.0-beta.0", - "@jupyterlab/cell-toolbar-extension": "~4.4.0-beta.0", - "@jupyterlab/celltags-extension": "~4.4.0-beta.0", - "@jupyterlab/codemirror": "~4.4.0-beta.0", - "@jupyterlab/codemirror-extension": "~4.4.0-beta.0", - "@jupyterlab/completer-extension": "~4.4.0-beta.0", - "@jupyterlab/console-extension": "~4.4.0-beta.0", - "@jupyterlab/coreutils": "~6.4.0-beta.0", - "@jupyterlab/csvviewer-extension": "~4.4.0-beta.0", - "@jupyterlab/debugger-extension": "~4.4.0-beta.0", - "@jupyterlab/docmanager-extension": "~4.4.0-beta.0", - "@jupyterlab/documentsearch-extension": "~4.4.0-beta.0", - "@jupyterlab/extensionmanager-extension": "~4.4.0-beta.0", - "@jupyterlab/filebrowser-extension": "~4.4.0-beta.0", - "@jupyterlab/fileeditor-extension": "~4.4.0-beta.0", - "@jupyterlab/help-extension": "~4.4.0-beta.0", - "@jupyterlab/htmlviewer-extension": "~4.4.0-beta.0", - "@jupyterlab/hub-extension": "~4.4.0-beta.0", - "@jupyterlab/imageviewer-extension": "~4.4.0-beta.0", - "@jupyterlab/javascript-extension": "~4.4.0-beta.0", - "@jupyterlab/json-extension": "~4.4.0-beta.0", - "@jupyterlab/lsp": "~4.4.0-beta.0", - "@jupyterlab/lsp-extension": "~4.4.0-beta.0", - "@jupyterlab/mainmenu-extension": "~4.4.0-beta.0", - "@jupyterlab/markdownviewer-extension": "~4.4.0-beta.0", - "@jupyterlab/markedparser-extension": "~4.4.0-beta.0", - "@jupyterlab/mathjax-extension": "~4.4.0-beta.0", - "@jupyterlab/mermaid-extension": "~4.4.0-beta.0", - "@jupyterlab/metadataform-extension": "~4.4.0-beta.0", - "@jupyterlab/notebook-extension": "~4.4.0-beta.0", - "@jupyterlab/pdf-extension": "~4.4.0-beta.0", - "@jupyterlab/pluginmanager-extension": "~4.4.0-beta.0", - "@jupyterlab/running-extension": "~4.4.0-beta.0", - "@jupyterlab/settingeditor": "~4.4.0-beta.0", - "@jupyterlab/settingeditor-extension": "~4.4.0-beta.0", - "@jupyterlab/shortcuts-extension": "~5.2.0-beta.0", - "@jupyterlab/terminal-extension": "~4.4.0-beta.0", - "@jupyterlab/theme-dark-extension": "~4.4.0-beta.0", - "@jupyterlab/theme-dark-high-contrast-extension": "~4.4.0-beta.0", - "@jupyterlab/theme-light-extension": "~4.4.0-beta.0", - "@jupyterlab/toc-extension": "~6.4.0-beta.0", - "@jupyterlab/tooltip-extension": "~4.4.0-beta.0", - "@jupyterlab/translation-extension": "~4.4.0-beta.0", - "@jupyterlab/ui-components-extension": "~4.4.0-beta.0", - "@jupyterlab/vega5-extension": "~4.4.0-beta.0", + "@jupyterlab/application-extension": "~4.4.0-beta.1", + "@jupyterlab/apputils-extension": "~4.4.0-beta.1", + "@jupyterlab/attachments": "~4.4.0-beta.1", + "@jupyterlab/cell-toolbar-extension": "~4.4.0-beta.1", + "@jupyterlab/celltags-extension": "~4.4.0-beta.1", + "@jupyterlab/codemirror": "~4.4.0-beta.1", + "@jupyterlab/codemirror-extension": "~4.4.0-beta.1", + "@jupyterlab/completer-extension": "~4.4.0-beta.1", + "@jupyterlab/console-extension": "~4.4.0-beta.1", + "@jupyterlab/coreutils": "~6.4.0-beta.1", + "@jupyterlab/csvviewer-extension": "~4.4.0-beta.1", + "@jupyterlab/debugger-extension": "~4.4.0-beta.1", + "@jupyterlab/docmanager-extension": "~4.4.0-beta.1", + "@jupyterlab/documentsearch-extension": "~4.4.0-beta.1", + "@jupyterlab/extensionmanager-extension": "~4.4.0-beta.1", + "@jupyterlab/filebrowser-extension": "~4.4.0-beta.1", + "@jupyterlab/fileeditor-extension": "~4.4.0-beta.1", + "@jupyterlab/help-extension": "~4.4.0-beta.1", + "@jupyterlab/htmlviewer-extension": "~4.4.0-beta.1", + "@jupyterlab/hub-extension": "~4.4.0-beta.1", + "@jupyterlab/imageviewer-extension": "~4.4.0-beta.1", + "@jupyterlab/javascript-extension": "~4.4.0-beta.1", + "@jupyterlab/json-extension": "~4.4.0-beta.1", + "@jupyterlab/lsp": "~4.4.0-beta.1", + "@jupyterlab/lsp-extension": "~4.4.0-beta.1", + "@jupyterlab/mainmenu-extension": "~4.4.0-beta.1", + "@jupyterlab/markdownviewer-extension": "~4.4.0-beta.1", + "@jupyterlab/markedparser-extension": "~4.4.0-beta.1", + "@jupyterlab/mathjax-extension": "~4.4.0-beta.1", + "@jupyterlab/mermaid-extension": "~4.4.0-beta.1", + "@jupyterlab/metadataform-extension": "~4.4.0-beta.1", + "@jupyterlab/notebook-extension": "~4.4.0-beta.1", + "@jupyterlab/pdf-extension": "~4.4.0-beta.1", + "@jupyterlab/pluginmanager-extension": "~4.4.0-beta.1", + "@jupyterlab/running-extension": "~4.4.0-beta.1", + "@jupyterlab/settingeditor": "~4.4.0-beta.1", + "@jupyterlab/settingeditor-extension": "~4.4.0-beta.1", + "@jupyterlab/shortcuts-extension": "~5.2.0-beta.1", + "@jupyterlab/terminal-extension": "~4.4.0-beta.1", + "@jupyterlab/theme-dark-extension": "~4.4.0-beta.1", + "@jupyterlab/theme-dark-high-contrast-extension": "~4.4.0-beta.1", + "@jupyterlab/theme-light-extension": "~4.4.0-beta.1", + "@jupyterlab/toc-extension": "~6.4.0-beta.1", + "@jupyterlab/tooltip-extension": "~4.4.0-beta.1", + "@jupyterlab/translation-extension": "~4.4.0-beta.1", + "@jupyterlab/ui-components-extension": "~4.4.0-beta.1", + "@jupyterlab/vega5-extension": "~4.4.0-beta.1", "react": "^18.2.0", "react-dom": "^18.2.0", "yjs": "^13.5.40" }, "devDependencies": { - "@jupyterlab/builder": "~4.4.0-beta.0", - "@jupyterlab/buildutils": "~4.4.0-beta.0", + "@jupyterlab/builder": "~4.4.0-beta.1", + "@jupyterlab/buildutils": "~4.4.0-beta.1", "@types/rimraf": "^3.0.2", "css-loader": "~5.0.1", "extra-watch-webpack-plugin": "^1.0.3", diff --git a/buildutils/package.json b/buildutils/package.json index 7ffd16bc84..1a3572a2f0 100644 --- a/buildutils/package.json +++ b/buildutils/package.json @@ -29,7 +29,7 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/buildutils": "~4.4.0-beta.0", + "@jupyterlab/buildutils": "~4.4.0-beta.1", "commander": "^6.2.0", "fs-extra": "^9.1.0", "semver": "^7.6.3", diff --git a/package.json b/package.json index 0b1e5fff28..a88fd57689 100644 --- a/package.json +++ b/package.json @@ -51,7 +51,7 @@ "yjs": "^13.5.40" }, "devDependencies": { - "@jupyterlab/buildutils": "~4.4.0-beta.0", + "@jupyterlab/buildutils": "~4.4.0-beta.1", "@typescript-eslint/eslint-plugin": "^5.55.0", "@typescript-eslint/parser": "^5.55.0", "eslint": "^8.36.0", diff --git a/packages/application-extension/package.json b/packages/application-extension/package.json index ad46e79515..a3daa99aae 100644 --- a/packages/application-extension/package.json +++ b/packages/application-extension/package.json @@ -40,17 +40,17 @@ "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.0", "@jupyter-notebook/ui-components": "^7.4.0-beta.0", - "@jupyterlab/application": "~4.4.0-beta.0", - "@jupyterlab/apputils": "~4.5.0-beta.0", - "@jupyterlab/codeeditor": "~4.4.0-beta.0", - "@jupyterlab/console": "~4.4.0-beta.0", - "@jupyterlab/coreutils": "~6.4.0-beta.0", - "@jupyterlab/docmanager": "~4.4.0-beta.0", - "@jupyterlab/docregistry": "~4.4.0-beta.0", - "@jupyterlab/mainmenu": "~4.4.0-beta.0", - "@jupyterlab/rendermime": "~4.4.0-beta.0", - "@jupyterlab/settingregistry": "~4.4.0-beta.0", - "@jupyterlab/translation": "~4.4.0-beta.0", + "@jupyterlab/application": "~4.4.0-beta.1", + "@jupyterlab/apputils": "~4.5.0-beta.1", + "@jupyterlab/codeeditor": "~4.4.0-beta.1", + "@jupyterlab/console": "~4.4.0-beta.1", + "@jupyterlab/coreutils": "~6.4.0-beta.1", + "@jupyterlab/docmanager": "~4.4.0-beta.1", + "@jupyterlab/docregistry": "~4.4.0-beta.1", + "@jupyterlab/mainmenu": "~4.4.0-beta.1", + "@jupyterlab/rendermime": "~4.4.0-beta.1", + "@jupyterlab/settingregistry": "~4.4.0-beta.1", + "@jupyterlab/translation": "~4.4.0-beta.1", "@lumino/coreutils": "^2.2.0", "@lumino/disposable": "^2.1.3", "@lumino/widgets": "^2.5.0" diff --git a/packages/application-extension/src/index.ts b/packages/application-extension/src/index.ts index 514f7d8da0..6a6c432330 100644 --- a/packages/application-extension/src/index.ts +++ b/packages/application-extension/src/index.ts @@ -7,6 +7,7 @@ import { ITreePathUpdater, JupyterFrontEnd, JupyterFrontEndPlugin, + JupyterLab, } from '@jupyterlab/application'; import { @@ -159,6 +160,21 @@ const dirty: JupyterFrontEndPlugin = { }, }; +/** + * The application info. + */ +const info: JupyterFrontEndPlugin = { + id: '@jupyter-notebook/application-extension:info', + autoStart: true, + provides: JupyterLab.IInfo, + activate: (app: JupyterFrontEnd): JupyterLab.IInfo => { + if (!(app instanceof NotebookApp)) { + throw new Error(`${info.id} must be activated in Jupyter Notebook.`); + } + return app.info; + }, +}; + /** * The logo plugin. */ @@ -1148,6 +1164,7 @@ const zen: JupyterFrontEndPlugin = { */ const plugins: JupyterFrontEndPlugin[] = [ dirty, + info, logo, menus, menuSpacer, diff --git a/packages/application/package.json b/packages/application/package.json index 6740b72e67..0e2185779a 100644 --- a/packages/application/package.json +++ b/packages/application/package.json @@ -42,11 +42,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "~4.4.0-beta.0", - "@jupyterlab/coreutils": "~6.4.0-beta.0", - "@jupyterlab/docregistry": "~4.4.0-beta.0", - "@jupyterlab/rendermime-interfaces": "~3.12.0-beta.0", - "@jupyterlab/ui-components": "~4.4.0-beta.0", + "@jupyterlab/application": "~4.4.0-beta.1", + "@jupyterlab/coreutils": "~6.4.0-beta.1", + "@jupyterlab/docregistry": "~4.4.0-beta.1", + "@jupyterlab/rendermime-interfaces": "~3.12.0-beta.1", + "@jupyterlab/ui-components": "~4.4.0-beta.1", "@lumino/algorithm": "^2.0.2", "@lumino/coreutils": "^2.2.0", "@lumino/messaging": "^2.0.2", diff --git a/packages/console-extension/package.json b/packages/console-extension/package.json index a96b69588e..35d91bc094 100644 --- a/packages/console-extension/package.json +++ b/packages/console-extension/package.json @@ -39,9 +39,9 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.0", - "@jupyterlab/application": "~4.4.0-beta.0", - "@jupyterlab/console": "~4.4.0-beta.0", - "@jupyterlab/coreutils": "~6.4.0-beta.0", + "@jupyterlab/application": "~4.4.0-beta.1", + "@jupyterlab/console": "~4.4.0-beta.1", + "@jupyterlab/coreutils": "~6.4.0-beta.1", "@lumino/algorithm": "^2.0.2" }, "devDependencies": { diff --git a/packages/docmanager-extension/package.json b/packages/docmanager-extension/package.json index 415d32b0b6..5b6bc77e61 100644 --- a/packages/docmanager-extension/package.json +++ b/packages/docmanager-extension/package.json @@ -39,11 +39,11 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.0", - "@jupyterlab/application": "~4.4.0-beta.0", - "@jupyterlab/coreutils": "~6.4.0-beta.0", - "@jupyterlab/docmanager": "~4.4.0-beta.0", - "@jupyterlab/docregistry": "~4.4.0-beta.0", - "@jupyterlab/services": "~7.4.0-beta.0", + "@jupyterlab/application": "~4.4.0-beta.1", + "@jupyterlab/coreutils": "~6.4.0-beta.1", + "@jupyterlab/docmanager": "~4.4.0-beta.1", + "@jupyterlab/docregistry": "~4.4.0-beta.1", + "@jupyterlab/services": "~7.4.0-beta.1", "@lumino/algorithm": "^2.0.2", "@lumino/signaling": "^2.1.3" }, diff --git a/packages/documentsearch-extension/package.json b/packages/documentsearch-extension/package.json index e4734b0c9a..e1a1e7f357 100644 --- a/packages/documentsearch-extension/package.json +++ b/packages/documentsearch-extension/package.json @@ -39,8 +39,8 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.0", - "@jupyterlab/application": "~4.4.0-beta.0", - "@jupyterlab/documentsearch": "~4.4.0-beta.0", + "@jupyterlab/application": "~4.4.0-beta.1", + "@jupyterlab/documentsearch": "~4.4.0-beta.1", "@lumino/widgets": "^2.5.0" }, "devDependencies": { diff --git a/packages/help-extension/package.json b/packages/help-extension/package.json index 036f27f76e..8708d6773f 100644 --- a/packages/help-extension/package.json +++ b/packages/help-extension/package.json @@ -39,10 +39,10 @@ }, "dependencies": { "@jupyter-notebook/ui-components": "^7.4.0-beta.0", - "@jupyterlab/application": "~4.4.0-beta.0", - "@jupyterlab/apputils": "~4.5.0-beta.0", - "@jupyterlab/mainmenu": "~4.4.0-beta.0", - "@jupyterlab/translation": "~4.4.0-beta.0", + "@jupyterlab/application": "~4.4.0-beta.1", + "@jupyterlab/apputils": "~4.5.0-beta.1", + "@jupyterlab/mainmenu": "~4.4.0-beta.1", + "@jupyterlab/translation": "~4.4.0-beta.1", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/packages/lab-extension/package.json b/packages/lab-extension/package.json index c5615a7bb3..636708bb36 100644 --- a/packages/lab-extension/package.json +++ b/packages/lab-extension/package.json @@ -44,18 +44,18 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.0", - "@jupyterlab/application": "~4.4.0-beta.0", - "@jupyterlab/apputils": "~4.5.0-beta.0", - "@jupyterlab/coreutils": "~6.4.0-beta.0", - "@jupyterlab/docregistry": "~4.4.0-beta.0", - "@jupyterlab/notebook": "~4.4.0-beta.0", - "@jupyterlab/translation": "~4.4.0-beta.0", - "@jupyterlab/ui-components": "~4.4.0-beta.0", + "@jupyterlab/application": "~4.4.0-beta.1", + "@jupyterlab/apputils": "~4.5.0-beta.1", + "@jupyterlab/coreutils": "~6.4.0-beta.1", + "@jupyterlab/docregistry": "~4.4.0-beta.1", + "@jupyterlab/notebook": "~4.4.0-beta.1", + "@jupyterlab/translation": "~4.4.0-beta.1", + "@jupyterlab/ui-components": "~4.4.0-beta.1", "@lumino/commands": "^2.3.1", "@lumino/disposable": "^2.1.3" }, "devDependencies": { - "@jupyterlab/builder": "~4.4.0-beta.0", + "@jupyterlab/builder": "~4.4.0-beta.1", "rimraf": "^3.0.2", "typescript": "~5.5.4" }, diff --git a/packages/notebook-extension/package.json b/packages/notebook-extension/package.json index d460da6f40..ef45723782 100644 --- a/packages/notebook-extension/package.json +++ b/packages/notebook-extension/package.json @@ -39,13 +39,13 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.0", - "@jupyterlab/application": "~4.4.0-beta.0", - "@jupyterlab/apputils": "~4.5.0-beta.0", - "@jupyterlab/cells": "~4.4.0-beta.0", - "@jupyterlab/docmanager": "~4.4.0-beta.0", - "@jupyterlab/notebook": "~4.4.0-beta.0", - "@jupyterlab/settingregistry": "~4.4.0-beta.0", - "@jupyterlab/translation": "~4.4.0-beta.0", + "@jupyterlab/application": "~4.4.0-beta.1", + "@jupyterlab/apputils": "~4.5.0-beta.1", + "@jupyterlab/cells": "~4.4.0-beta.1", + "@jupyterlab/docmanager": "~4.4.0-beta.1", + "@jupyterlab/notebook": "~4.4.0-beta.1", + "@jupyterlab/settingregistry": "~4.4.0-beta.1", + "@jupyterlab/translation": "~4.4.0-beta.1", "@lumino/polling": "^2.1.3", "@lumino/widgets": "^2.5.0", "react": "^18.2.0", diff --git a/packages/terminal-extension/package.json b/packages/terminal-extension/package.json index 2b4113ccd0..cf4fea9f93 100644 --- a/packages/terminal-extension/package.json +++ b/packages/terminal-extension/package.json @@ -39,9 +39,9 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.0", - "@jupyterlab/application": "~4.4.0-beta.0", - "@jupyterlab/coreutils": "~6.4.0-beta.0", - "@jupyterlab/terminal": "~4.4.0-beta.0", + "@jupyterlab/application": "~4.4.0-beta.1", + "@jupyterlab/coreutils": "~6.4.0-beta.1", + "@jupyterlab/terminal": "~4.4.0-beta.1", "@lumino/algorithm": "^2.0.2" }, "devDependencies": { diff --git a/packages/tree-extension/package.json b/packages/tree-extension/package.json index 79a10b0810..ee7cdde602 100644 --- a/packages/tree-extension/package.json +++ b/packages/tree-extension/package.json @@ -40,18 +40,18 @@ "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.0", "@jupyter-notebook/tree": "^7.4.0-beta.0", - "@jupyterlab/application": "~4.4.0-beta.0", - "@jupyterlab/apputils": "~4.5.0-beta.0", - "@jupyterlab/coreutils": "~6.4.0-beta.0", - "@jupyterlab/docmanager": "~4.4.0-beta.0", - "@jupyterlab/filebrowser": "~4.4.0-beta.0", - "@jupyterlab/mainmenu": "~4.4.0-beta.0", - "@jupyterlab/services": "~7.4.0-beta.0", - "@jupyterlab/settingeditor": "~4.4.0-beta.0", - "@jupyterlab/settingregistry": "~4.4.0-beta.0", - "@jupyterlab/statedb": "~4.4.0-beta.0", - "@jupyterlab/translation": "~4.4.0-beta.0", - "@jupyterlab/ui-components": "~4.4.0-beta.0", + "@jupyterlab/application": "~4.4.0-beta.1", + "@jupyterlab/apputils": "~4.5.0-beta.1", + "@jupyterlab/coreutils": "~6.4.0-beta.1", + "@jupyterlab/docmanager": "~4.4.0-beta.1", + "@jupyterlab/filebrowser": "~4.4.0-beta.1", + "@jupyterlab/mainmenu": "~4.4.0-beta.1", + "@jupyterlab/services": "~7.4.0-beta.1", + "@jupyterlab/settingeditor": "~4.4.0-beta.1", + "@jupyterlab/settingregistry": "~4.4.0-beta.1", + "@jupyterlab/statedb": "~4.4.0-beta.1", + "@jupyterlab/translation": "~4.4.0-beta.1", + "@jupyterlab/ui-components": "~4.4.0-beta.1", "@lumino/algorithm": "^2.0.2", "@lumino/commands": "^2.3.1", "@lumino/widgets": "^2.5.0" diff --git a/packages/tree/package.json b/packages/tree/package.json index e98f3ca598..afe073e2e3 100644 --- a/packages/tree/package.json +++ b/packages/tree/package.json @@ -39,17 +39,17 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.0", - "@jupyterlab/application": "~4.4.0-beta.0", - "@jupyterlab/apputils": "~4.5.0-beta.0", - "@jupyterlab/coreutils": "~6.4.0-beta.0", - "@jupyterlab/docmanager": "~4.4.0-beta.0", - "@jupyterlab/filebrowser": "~4.4.0-beta.0", - "@jupyterlab/mainmenu": "~4.4.0-beta.0", - "@jupyterlab/services": "~7.4.0-beta.0", - "@jupyterlab/settingregistry": "~4.4.0-beta.0", - "@jupyterlab/statedb": "~4.4.0-beta.0", - "@jupyterlab/translation": "~4.4.0-beta.0", - "@jupyterlab/ui-components": "~4.4.0-beta.0", + "@jupyterlab/application": "~4.4.0-beta.1", + "@jupyterlab/apputils": "~4.5.0-beta.1", + "@jupyterlab/coreutils": "~6.4.0-beta.1", + "@jupyterlab/docmanager": "~4.4.0-beta.1", + "@jupyterlab/filebrowser": "~4.4.0-beta.1", + "@jupyterlab/mainmenu": "~4.4.0-beta.1", + "@jupyterlab/services": "~7.4.0-beta.1", + "@jupyterlab/settingregistry": "~4.4.0-beta.1", + "@jupyterlab/statedb": "~4.4.0-beta.1", + "@jupyterlab/translation": "~4.4.0-beta.1", + "@jupyterlab/ui-components": "~4.4.0-beta.1", "@lumino/algorithm": "^2.0.2", "@lumino/commands": "^2.3.1", "@lumino/coreutils": "^2.2.0", diff --git a/packages/ui-components/package.json b/packages/ui-components/package.json index 0dfef74533..09ef9bcb2d 100644 --- a/packages/ui-components/package.json +++ b/packages/ui-components/package.json @@ -42,7 +42,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/ui-components": "~4.4.0-beta.0", + "@jupyterlab/ui-components": "~4.4.0-beta.1", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/pixi.lock b/pixi.lock index b027242e18..e47c5c9c55 100644 --- a/pixi.lock +++ b/pixi.lock @@ -93,7 +93,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/07/e0/7bd7cff65594fd9936e2f9385701e44574fc7d721331ff676ce440b14100/jupyter_lsp-2.2.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e2/a2/89eeaf0bb954a123a909859fa507fa86f96eb61b62dc30667b60dbd5fdaf/jupyter_server-2.15.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/07/2d/2b32cdbe8d2a602f697a649798554e4f072115438e92249624e532e8aca6/jupyter_server_terminals-0.5.3-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/03/3c/82e775e8af2955206aa089bc065660760fa4b415c52e7ce3ebf6d5e9fa38/jupyterlab-4.4.0b0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/16/e4/0ee7d8c0c01167c4ff881711dea046b040b26b0c276188ab395239cb9320/jupyterlab-4.4.0b1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/09/2032e7d15c544a0e3cd831c51d77a8ca57f7555b2e1b2922142eddb02a84/jupyterlab_server-2.27.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d3/32/da7f44bcb1105d3e88a0b74ebdca50c59121d2ddf71c9e34ba47df7f3a56/keyring-25.6.0-py3-none-any.whl @@ -271,7 +271,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/07/e0/7bd7cff65594fd9936e2f9385701e44574fc7d721331ff676ce440b14100/jupyter_lsp-2.2.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e2/a2/89eeaf0bb954a123a909859fa507fa86f96eb61b62dc30667b60dbd5fdaf/jupyter_server-2.15.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/07/2d/2b32cdbe8d2a602f697a649798554e4f072115438e92249624e532e8aca6/jupyter_server_terminals-0.5.3-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/03/3c/82e775e8af2955206aa089bc065660760fa4b415c52e7ce3ebf6d5e9fa38/jupyterlab-4.4.0b0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/16/e4/0ee7d8c0c01167c4ff881711dea046b040b26b0c276188ab395239cb9320/jupyterlab-4.4.0b1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/09/2032e7d15c544a0e3cd831c51d77a8ca57f7555b2e1b2922142eddb02a84/jupyterlab_server-2.27.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d3/32/da7f44bcb1105d3e88a0b74ebdca50c59121d2ddf71c9e34ba47df7f3a56/keyring-25.6.0-py3-none-any.whl @@ -449,7 +449,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/07/e0/7bd7cff65594fd9936e2f9385701e44574fc7d721331ff676ce440b14100/jupyter_lsp-2.2.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e2/a2/89eeaf0bb954a123a909859fa507fa86f96eb61b62dc30667b60dbd5fdaf/jupyter_server-2.15.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/07/2d/2b32cdbe8d2a602f697a649798554e4f072115438e92249624e532e8aca6/jupyter_server_terminals-0.5.3-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/03/3c/82e775e8af2955206aa089bc065660760fa4b415c52e7ce3ebf6d5e9fa38/jupyterlab-4.4.0b0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/16/e4/0ee7d8c0c01167c4ff881711dea046b040b26b0c276188ab395239cb9320/jupyterlab-4.4.0b1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/09/2032e7d15c544a0e3cd831c51d77a8ca57f7555b2e1b2922142eddb02a84/jupyterlab_server-2.27.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d3/32/da7f44bcb1105d3e88a0b74ebdca50c59121d2ddf71c9e34ba47df7f3a56/keyring-25.6.0-py3-none-any.whl @@ -635,7 +635,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/07/e0/7bd7cff65594fd9936e2f9385701e44574fc7d721331ff676ce440b14100/jupyter_lsp-2.2.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e2/a2/89eeaf0bb954a123a909859fa507fa86f96eb61b62dc30667b60dbd5fdaf/jupyter_server-2.15.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/07/2d/2b32cdbe8d2a602f697a649798554e4f072115438e92249624e532e8aca6/jupyter_server_terminals-0.5.3-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/03/3c/82e775e8af2955206aa089bc065660760fa4b415c52e7ce3ebf6d5e9fa38/jupyterlab-4.4.0b0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/16/e4/0ee7d8c0c01167c4ff881711dea046b040b26b0c276188ab395239cb9320/jupyterlab-4.4.0b1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/09/2032e7d15c544a0e3cd831c51d77a8ca57f7555b2e1b2922142eddb02a84/jupyterlab_server-2.27.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d3/32/da7f44bcb1105d3e88a0b74ebdca50c59121d2ddf71c9e34ba47df7f3a56/keyring-25.6.0-py3-none-any.whl @@ -1724,10 +1724,10 @@ packages: - pytest-timeout ; extra == 'test' - pytest>=7.0 ; extra == 'test' requires_python: '>=3.8' -- pypi: https://files.pythonhosted.org/packages/03/3c/82e775e8af2955206aa089bc065660760fa4b415c52e7ce3ebf6d5e9fa38/jupyterlab-4.4.0b0-py3-none-any.whl +- pypi: https://files.pythonhosted.org/packages/16/e4/0ee7d8c0c01167c4ff881711dea046b040b26b0c276188ab395239cb9320/jupyterlab-4.4.0b1-py3-none-any.whl name: jupyterlab - version: 4.4.0b0 - sha256: f875babc5b3cc7d92cb7e5e3940a84dcbc958037d9319361f44074b382877bc0 + version: 4.4.0b1 + sha256: f840eee48d422403db075ad82b43c09566ef74c7a341f8b9c82d17c8c16fd4bc requires_dist: - async-lru>=1.0.0 - httpx>=0.25.0 @@ -1751,7 +1751,7 @@ packages: - hatch ; extra == 'dev' - pre-commit ; extra == 'dev' - pytest-cov ; extra == 'dev' - - ruff==0.9.4 ; extra == 'dev' + - ruff==0.9.9 ; extra == 'dev' - jsx-lexer ; extra == 'docs' - myst-parser ; extra == 'docs' - pydata-sphinx-theme>=0.13.0 ; extra == 'docs' @@ -2303,11 +2303,11 @@ packages: - pypi: . name: notebook version: 7.4.0b0 - sha256: 52ebe101315f199193f2b5599e2f43ba3f1351b46b2899d0da20e564ca99d716 + sha256: 658dacee04232d5953aee201b8426e8f805bfe241247db834ec952a0b9351897 requires_dist: - jupyter-server>=2.4.0,<3 - jupyterlab-server>=2.27.1,<3 - - jupyterlab>=4.4.0b0,<4.5 + - jupyterlab>=4.4.0b1,<4.5 - notebook-shim>=0.2,<0.3 - tornado>=6.2.0 - hatch ; extra == 'dev' diff --git a/pyproject.toml b/pyproject.toml index 46341755f2..1e7bfaafad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["hatchling>=1.11", "jupyterlab>=4.4.0b0,<4.5"] +requires = ["hatchling>=1.11", "jupyterlab>=4.4.0b1,<4.5"] build-backend = "hatchling.build" [project] @@ -32,7 +32,7 @@ classifiers = [ ] dependencies = [ "jupyter_server>=2.4.0,<3", - "jupyterlab>=4.4.0b0,<4.5", + "jupyterlab>=4.4.0b1,<4.5", "jupyterlab_server>=2.27.1,<3", "notebook_shim>=0.2,<0.3", "tornado>=6.2.0", @@ -174,7 +174,7 @@ version-cmd = "jlpm run release:bump --force --skip-commit" [tool.jupyter-releaser.hooks] before-bump-version = [ - "python -m pip install -U \"jupyterlab>=4.4.0b0,<4.5\"", + "python -m pip install -U \"jupyterlab>=4.4.0b1,<4.5\"", "jlpm", "jlpm run build:utils", "python -m pip install hatch" diff --git a/ui-tests/package.json b/ui-tests/package.json index 420a86365c..cdda4110cd 100644 --- a/ui-tests/package.json +++ b/ui-tests/package.json @@ -15,8 +15,8 @@ "test:update": "playwright test --update-snapshots" }, "dependencies": { - "@jupyterlab/galata": "~5.4.0-beta.0", - "@playwright/test": "~1.50.1", + "@jupyterlab/galata": "~5.4.0-beta.1", + "@playwright/test": "~1.51.0", "rimraf": "^3.0.2" } } diff --git a/ui-tests/test/filebrowser.spec.ts b/ui-tests/test/filebrowser.spec.ts index dd10752565..fdd09f42ba 100644 --- a/ui-tests/test/filebrowser.spec.ts +++ b/ui-tests/test/filebrowser.spec.ts @@ -26,7 +26,7 @@ test.describe('File Browser', () => { const toolbar = page.getByRole('toolbar'); expect(toolbar.getByText('Rename')).toBeVisible(); - expect(toolbar.getByText('Delete')).toBeVisible(); + expect(toolbar.getByText('Move to Trash')).toBeVisible(); }); test('Select one file', async ({ page, tmpPath }) => { @@ -37,7 +37,7 @@ test.describe('File Browser', () => { const toolbar = page.getByRole('toolbar'); - ['Rename', 'Delete', 'Open', 'Download', 'Delete'].forEach(async (text) => { + ['Rename', 'Open', 'Download', 'Move to Trash'].forEach(async (text) => { expect(toolbar.getByText(text)).toBeVisible(); }); }); @@ -54,7 +54,7 @@ test.describe('File Browser', () => { expect(toolbar.getByText('Rename')).toBeHidden(); expect(toolbar.getByText('Open')).toBeHidden(); - expect(toolbar.getByText('Delete')).toBeVisible(); + expect(toolbar.getByText('Move to Trash')).toBeVisible(); }); test('Select files and open', async ({ page, tmpPath }) => { diff --git a/ui-tests/test/menus.spec.ts-snapshots/opened-menu-run-chromium-linux.png b/ui-tests/test/menus.spec.ts-snapshots/opened-menu-run-chromium-linux.png index b5bb5a9179cc51503486ccae187713bd2dc53e9e..2e39220b3ae4dd339401565c4153555970f3a701 100644 GIT binary patch literal 20225 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 diff --git a/ui-tests/test/menus.spec.ts-snapshots/opened-menu-run-firefox-linux.png b/ui-tests/test/menus.spec.ts-snapshots/opened-menu-run-firefox-linux.png index 765bdffa6223b160d2458c3f942b05ac636a4a85..f1510c956e67cffaa505f08464e855aa2e4ff442 100644 GIT binary patch literal 25119 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 XcYjHpXche7hgB3KOT#<*F4TVk{%MoH literal 24915 zcmd43X*iVs!#7+^%*Z-qUj{R_6xo;TVvwD(BnsKeE?bnb?_(*l)5ubiE&Eoo7Lmvj zvhT9*Jm2Z(ciq?jI-Xb0eILhjzv#s@=A1dt^SgZ3Gh9bYm5hXusWz zH-mpHP$KX@?y948=guL{sVOTMc->v8hy9HHv3uGGy%AAdP010TtsCzhVbz@$Z<~=2 z(RaP~4=-7waR^pY=#ri?4)-Pg8cD%k^0933_UYPO4a;2GVOpEpXl%F1;Ed4q-Jwsu zYrge^zD0h^q?u1o_Df7E?89HOTR`avLY}c>A407J;Ws~^D)$-juPvYwkSNF_fxmBB zK#^AnR4{6_TVgIsO_YKV(({}OBZPndjGjO(@>!fk-_?4}(ZBB~HKD)l;12*kD&NOp zfux`7Gk5zc+E?vnbNrljxpLe;VY6FW+yC^~vm=39TQNlB(XdGR+U(cVisP*i1x2n$ z(ToHO=K?}meb6WSb8HLajZc5}1~sHUJ>E_#xBITrus_RGy*C+YeR8zFU_ra!3k`^$ zFt$lY5tB3P1f8s%o@iffJaYA3sTiD&xcm-HZ=dP6^YZ%X(dNc?Z85DZ*FO3 zcum5pr{guA9E!oWg4qk%aqFg zWTe3KfT`1uxpDu)M+|cQbw_J&oLpNOY})fO{rPr(d1gNR`JUZyD)8oI!$S9uHkWU| z<2U!)HoW=huE!5UDI)RKWLb9-Hj*@mY7{+tG?Vx()aIX06iW|&mfPtoB89)CFMdIb#S{;q<3w;~A<4?PAY66LL=0?OcaQHm3^#jqqyevZ7nP!FzcytJpIaif3zm*i_o9Rjp)(v`%XmGMUN zgPoN(a^T{ad;Px9ktx?W>e9x-{iQh$(fl}uSyInG*PM?6a7rkmD9_;vSrEEukm zuTLiZc%0!!dsDHwcHdu1tya6usYf%4T8(^oq?aXs9>r$>XKFDHhoh#q2h9h2ZYB#V zu=;K3R?oaJ?Jrmxt2f;ncRJWw;Cv}$EpIEdT-7?cl=dT5FedLjyf=@^D23Adc4bR@lhk0 zU5SWgZh5FI*LQbS(MsLq`LpQ^-__ns23YH%$pyPee!J-pnm;n&Ld-v9 zlCsI(DO26cb6(?Wc(gU&`_VVr32{Zrc|v}htotb$qX@e2R*}!0+j|*`!6Y5}+A^2o zAPh?2+G+3YgV|bOT<1CFtr|kc#C4SZA%v76r|`wPQadG&rA>xqYt;I-Tawx1m;G;U zYtvr6lRtEsVDH5h(}Td22<|>I7_00PBi1K>6wH+SJm35CBY(a%7B)LKz0=@#hy&lI z&c!1A`1*NrJp!KQTSX>nO9Mq73SrOch{9Q}d+B_q;$Ic+xz71LPy03p`@wqr#8|zr zX!_4=C1Mokfz4F*2cO;5B4lTeah*-3-z{;WNcBe5SXQ!B^6jNekq5s&2IrbL`q#vn zl-sgz&VG$VWA-;@^y9f^;2j8bA5;DYI43@;fnsxW{mW5pXu(TPFZ^04|0tX*<=|=U z8GU+sY(m7*zRQT*XeMUMmzy+G=J^xz&ZtB&lgv+iJ#eqjE78IPYXL^m^SwVKdv}kR zp0<7DRgjY-hE0zDd6eh`w+l$H7$)78b~RL3srFwh^!MoH@Z*uM>o>KrP{&PbbjBzl^#y2z|nEcY^c6-@Ue zv)acU-?Eiv7V_hYx@4;kcN+ds0L-46TtUbmPO;RHp{XNm zCv~4a`}y4%#2wS(EI7vH9i$7WnzZY-2TV)hqNSJHRGeCQ_+ln z3vZykhyqt3G&A=K~e_KxMTND2Nfrf^F=T)J@ivV>~ey_;7YFv#YE+8lv$=L>P4IT;}MT?4%(Am zZ5b)sW0e(@t$u&0J%>S&Z1I4hdz5`_7Hh=qI>W#sH@C>xk$~ zeQKn+mPw*JVdy<03v}qod}@2!OY>91LWAB56-;*wOSS zBa9ihLT(_bA#s6x78dkv5b&qhLjA6`s zF8#od#(*&|1x=^(NrMd5$2Fc5XrSwhrPO0_MVK@rpkZ+)KVw*=w|)xos%sf%<36U7 zqb_vOcN7V0aj^E){9OF;Mqevb?>*PJW+5R;l`lDwuMqpSo1MAwr1IfVPM#8jTxx9K zHE=^b`vtl-U!upUr?V)d@_wz$LB2rAia#r2vMsPON)j#cCp#=jbOunDJUSK-U*}PRRD<<_1&Nr$h^QJUKYM+k0*>fc92?#J4;(}UfGfd8dB&QacS$BfCTq{0>8){DXNsr;PB|QIH(DdQ>m=W_gFbpg&jZWw7%+C7Xgbd# zdK$-j8n^3ET+em;j?0ZB;qZ0p|BewCxUbgzQLJA1FftuL%o`Ec+S1L#2h33A=z?a6NASu3;icjxWyISvqb^rdygTgoO`gW%P$c$dt z*FV;oKuX+if!d8$mGHd`W%D;`I5}__!h=O;1m>##>!`Z@+0?!UKVQkIDBceI^7r;5k5)UFJ`ZQFP`{N)B$? z6tFh~_^q%p*CXHwup?|w5{~@Y9mlEK*(3bm3y*QBRXA*|9HB5)_T{B;Tfcc7#RV-4 zK(r-*Bp9^Gc&^?l(0vv1aO8s~2@Ow{aa_m+{?EZh-~wOebh}wuDnZ=hvZMtKZF_;nh=?qgKZ(4HhSE|o>bzz!}{ds4R8T7pLLX2wjq^5NTs@m%4{@tSASW9E1Yr*g{Yp( z@ZGXmkGBBe+ZuqBjk(OH>dlx79#Je(?%zJ_i5r|suhnsW3L*R6NXKV@<}}IpJeh8p z4}UVB9SYfw95(sz@a6qZ#_Ij7pG{0h*AA@N;D`X&;oL9J@#j}eKk!J_ueUPk)%$q( zz4);2Nx)MIyToUp^Q38fB~BrbNbN_Vq4rP9sJ7big(ZNGXm+g29(>)}w>{+TZ~jg1 zY{BNY6}M_9#N$-I{UY&->8+E!DGHB=kVNn^8;;gGMZgvqL&_|nW0d(RltSa(o$9Ue zmw`hIf#(=lf(TEF?|lkkY%iNl_KcM`0DIK>uhhDWb%EM4+x;-ap0)AOn9W!cK%smA z@%tPj;t#&io6C6)StqFhYGMVDV@f^8GbeBZ6lr;XVG#l--Szq2S3d%p4*-1YCJc=j z9jkQ8Z1{$S3HapyK5}+1GO36kC^B8bOz@ncS0YmStnP!CHW|HWHjaDx-fGT(O{8eG zG*8VhG-{@b75*oB4UfB#Yo1f>yr9!~qGk!8w9&!#QXW&d!El}TCP%zQ!;}5Qb7(&m zA!z&-5npf;3CCOW#)dj@@6{IpG6s_^Kl4*ZH{eVxM@Rdc9%HMyb|W8(;A~4@Oah3X zwt-tG0Y91uq@bb8`38vMMS)8}Xv!b&%%nRqWNL}TA&57(iux)Z2)uVZVw8UTmWUq^ zbx6fHgSIPs10C zs&|u`f}i$=GQYsC8`)s;RiYVrjZ2HaYOz5m&(#S)PL>_U=yo3Rz)A-#hf?hnFuh}Q z&g$QKdael^F|7&Cq$-;LxR{-3OFtJzz|Qx$8$}Cm3CKB@u7JbR_db!}+zxV6-OuXl zOcE%L^Z%M6x;;T0<2cnCeIWgKx}B;>__v7HfCh$#q5aXya0RcKg6p99)B5G%3XSh( z+H%L`D!bV+Tz53T6`z*%$eN~06u?x+c&-}!Ma$T(uj1p(E^O6Gvd4$J+TKK>U3Xfe zndrn}A&>iUYSe~$*b>g>T#cl~i&4>Ra(4}R96qJANVhp7(M^OM617`>8Wj{6wjI)5 zlp7NB*gn~2Ayw3RP0~_k|HdzRI1-Hzbf%4b_1hTzZN;-M`$(}`GI+5vQ&H^?=Hk_F z{NZn4CAY)p)pn;6YaXu@Zd$R`OkgG7KMi{eBSEN?eJ4H-AvjNAPa+g_1P$5q+_}ZS zpi@dX7TFJL_(T0?fA2-FxtAjABA95 zLt9%3^j?mLprbPk1u!IERseRM5izB6M4IFJ*?Q4ZLOe~Bn6{3nV-iiDmjnr~bHPcl z+9=zWM^d*k#7&}RXzYKZvH9F4rxLn}j3nO~jp-#=a%PSLyfN_wgZ9vVXL zTc?io4wSQ;yrK9A&!;vzFBjwLMC!uG#hnf(F0C$*Ctyf{}eBf~sDrn&1Fcfegc5p|Pfvgtxa92lAZNdfFC_yZEMDpiEs zW^XEp%7^h>vy!sVCv;aCj!22Doc^&PPJ3_#eC#nmZ@n0SLL0=Fe1Lm|56fRGi( zbKmfds+jBjJFh|_*V;wVRj0<|TZhk%ppT(w=Z7WC?P`~8 zELYN)3Em2v7f{de@KDhS?aP~{tWmuWrf3{_vKn-~a{#8}jqj%>R9 z?+XzS2Cl-OV6KQcx)=s-RV%FsYC*M3z_A+lCNJ)<)~+SmvKxz0^vZakndv{9F5Z49 zb}++WfSA7Nt~ot}QfLpWp;{2lp@pV?l}~|*e(EWJ#iwvwQK#v-M@mcImo0a|wc#>5 zC>QKVP7z1MnZsGHs(u*`6UvCVblE-=w~u)B4U7V5Ngd_kM3;meglKr#oQ2MHB>I`6 z&k#!s`$|W$O9NQ7CBQWGQu~vjE!#_7hNG6$`Ix2_T1JP~F73&$h!gr)fTiWqxo;lA zsUWT@M0t0P=3uxa^w)w;;sk})b2#+mSl>d;jP3+!Ac z!Jsn<&2ie{lRzjORNlYjAbuVyZ`<#(&b~^?@N2^95Brgp&eZW$JAPkbplHdkM8rB< z^Y1(nfwzoL62t25Z@Z~!Vw8nxe8Tlyq=4R%=g$_Llt%3d_O{#Hsf=J$^;t-0_Ol|D z8yH=ic<)m}y0L#L4HEFUl$>b;7InVS1s%QjQE{VEQ!NE?1D~DItL{9ZPuo2cLXaAu|kBmCx+%>Azn|Ii$I0vC2lTPcxual@a^7)FRZBc1@XJ~MGU`=2}t zKuYp@Ooq_^vJ`qiLPUuAQ-p!i40wlxAEhAty5B&jiv1a7Xa$_&^|h>lw0}rP(?a00 zxQT_bTVi@=G(`l@LZZ)C%>F%qAO!4tQ4sCSiqg0f43=mh&%h;c2R%|r9BI|n@cm-_Wj7^9rthb4BOkh z=@0YPN4dR9{elmV3X&~3TGQLbs!u{3JUGmP(%Kt}R=!gNY|U2oQDXw)5uW+ghd-*A zVh_LF^<5FIr@O4XGh~yw;1@7j9O9B7A^yhgw=MsRTdCm}9jf)e`IbH5KMs|pzNql< zSB>bTA7=F0oXtWy^3kP`mTJN&@1u4UM)B zkn}AP8N;&c(R)f)@6Tqa?TGF!yX2ufEnEe74^w@QkN7M6yAB<_5A*L-myTsKM!JL| zrrgE5+BRP5@81NXi{r3L$MvH>pFUoQ8r4gKngaFNIeZzYTf9IdAJlMtdbF;J%1L#s z;eCBozxJgfQ|zFE3S$}@%ymSPjwtD06`FgLe@%S-dobh_0Lpq@KLCkqVyn``Zoj)D z1Ta2OkR!)Mz8}r4zg_QrrJC!tKIyY?1=7724f*~=O)HhCI&HsZ=^gc$`Bkd6wXCC| zE{NJxTWoANgn~s1`BK>AgLt{`T*@XvW6Qq zHK}2l8mdvOmH`g^`RqVJOdz;G!lQfXiitrOHr=IGypr43=>@lahKOCfRO1<+aQ_rE zoUi-JJ-a$sI{tT6Rd}lD$LixMyW0k!BoIEF*UxtV!R(b>WD-RB@iGsfIRxN(=YfQ~b&s)MX;y05Jj#kF>V+_YNyV1OQ|g{lp&r)CnvrweEU- zeYn_Mu0Ftj@SRy-zAmR>ofRA%`oXqWk%aCl|LK0uQ@so}5nF77xWnK(JTaL+8X_K5 z(XNGHq9`J*GvaoxDG>9ahNUUjt;^Vyl`Z~EG`j+Cq^n2n^zC84LtQ0g6)$q_j_q>| zJeliG@5|Mo!$a%%X)s%g8aPb;uy%dj*c(WbbjuLD+qlc{W4O}E+^}T%cB$V#0y)o^ z&-P-+$KZ?BhdV2bO+Zl+VwdIuydthAkV2N{m1-<)pQo}w3DyE!#{LfWN?`kN^NGbi*O(i_``+f)Cu}o z`rvD!mvX92xnGo0%nmuS#Q~-8YLBOspw2gr|Bh6D5z65RK*Zc9BE3lZ6+iMkJUCuE zw?@$rEld$!4(4SNHifL4>c6yl@+zvwU<~F1>M;S)A;B@(54^P4$%;C^}CvCL*8C9b2rF+VuF3W~f|v#)fQXt)IYL-0HzH(7)g_RR4h) zY0FOF6q;knI$0I(u|52`#)8Ie9*9>)%T3l1Gg0!eGK91v76;Bo2j3jJH+Z)JB@jYR#yGVNv;6XON z-eiVta7c~Ttpwh#bBi*BO&aN_;%d`N%<)>cJzxKw6v4g|j^~}f&p`(m+}Jx&mnq-C zt=JSSa97yvb|@B~dlG(bt7?W+EJQsGr3WB!R$-A8)seyVLyL&evJqQ=u=x19gsYAd zH#79ze-nA>k{#P&Jz-QYzduAv1y-sJ4XT^nHic*=GN+Y@>zIyx3RwN+zD7$7Q}dIy zG@~N+UlZ;LjnB%=wA5Av+bdXNW+_sPUfk={^G1~6BRM`FHA8(S*j0X6r2@~AoA#u zNQ<*aRcJFZsLDsDC1ASIw_hdyO6g_Weqf)ztcwxmu#2i8<@4S9^E>5H^L%7E-^yN` zMY-SdE;;V`EA`kHoxwC?YTEGW=bHQv7SLrR{7$|)!v0~=rv(KH^EpJzzO~R zV|wHJUrTM`2UHfuyOkv-Q|C7@9>vLc?du3JlSYI>U^-}l z+CT}M41=(`AT1mc>NPiyru+gsLY?)9YDIInd-Y4~X_3wFex# z_1>Vf<4fXUByjqc6~Joiyq)aqu)IR7+M4{6Zq)YX}(nxvyn z?+GYj_vCjSvlq?IJ?Hr^)^ZS|g4r`YLY%jJ``3qQPf|MH?$nN@OHZWcE3*Gl$oO^A zN?!?6u10c^JHWD8f&B+Nan2=D%rp9eU|o&Qbm_|1JmCkrdcU%aCg=9~ z)~M7#Mfy;cc{W209L!jDyI+5?9}L&N{B$V~z0l~zES5fB?2Wfb`ZZ>yMsDbbEsY5R zNriLWKjj1(k4hWL^BreNsX~P1;M2ko%6=*K%L9SWpnC3k37?8eDg~G!J@ED*Mx4sm zm}gOs_tHr(Y|F(&B{b|5dXj5od+AP&J>&xPtxsE=02WYc*k%XLQ2y9_(GBL~muo8Dk;10qBO#UXj}wS3m&nKnnL; z8ad+K|1Ks;hPdy>#ZJa(ve!jxc?w4K8 zi1yNY>&RH6pa1&gy`Do(N*b?(GZ3u0K7QGq@BjD*EfmXosw-i1foP0Q_<8T&WyQgBauG8 zusZ`UGolXrnp%J5usA*(eY3aT#0juzXUkMD+<|vp{l%Q&(>Lt#rU%2-$Y}zVtJgJyij2!t1mgTQzlv|acD&kg4379b z%n`U9$u-y0(Ewuxx^B(urqd;rHUMD5JKfXhA}k`V+~yFDXa;)fyphm@FJ7b0RiddE zW2@`aCUQZ5#)qA|@>7}P9Vy0Q7xqVB>yJG&!ktV#IsVm;<^`}^xMv>my?_rS$5rj5Zl)%(9EU-TSb0CdwRwaKgh8V&e}b#Km%;j5XoOYds8 zBpXkfXMxc+Xc1uAT8lR^1_W3-HK*{>|68-#TWyz$*c|<5TYU_W;^l6ee!(P{wum0n zkSxZXFmnYGk;NApzR7sD060Tl<-1dmQ1ZDbH8oA-ilOl26g}VZ{@y1mfZIQkt-q}u zoR1wD(bZi2@OXC1MJ{BHCFDRLc-r>Je4dL&mK*BnUP1?-V4a;HaSG?#BJSFzP@Pq29xoBJ%F_JNVK zEty#7+rxb`Im=h3&sXEmW03o~*pn?~%sp&B_%3~iu4v`k{(il7Uf#$D-8>Y*LI@;W zkPYN(7-W3Pu_qjQv7f6!g5>5Ua$cUfx8BWCkC(j&w1Cs6gZf!$c-ih(O@&ke0Pt+P z%*a*^35%w4e)}2!l8E~T5lIlhhA-o$q}=DTtdvh54VUXy^woMgp>+MnO06}#fj;n@ zo}KpKMs~19=)tymk%=hpovQa+OM}|sq@^513<9u&?ai(4+71RiUTf8JtnAT5l8P23 zJPPO{tB&}^Wdy=tk4$_Nf!8(NSB6D{Audr6ZeYE^YKu2#y7F)kZA?laS8|qZL!L6XtyDmY_+~9`5b$C(f-o3tr zQs_T7J==fjSbE;wV9_x1G9`0I)|-F zg47=$7Ugj&yqC|u2O;@Y>q)m`n1iMijp}Uqxs-2TN&J&ySz&fA>bR}g*<;liNndoV z^UYg3{}nY-MF>s*qnp*42qv^jA-gB9COGWd<@1Vp|EOZ{uJ4^^(}N#8{Y#cNzkh!; zlK&kZ09KbRU0|Q}U(3nYf#ug2sZr+sMzPZnrm}_3+DPoN%J}3bOZl+ttDZ1172?;PLr?)cF{Ph`4HU%8a!C`97QPrp=a84KFKv zYbn%QidY*-7B`ic2F#1=r@-ha@No|b%#oof|L5&<)EqN7&WbsC+{jUpct*4y-dVB)hvwy|ejLoB;0(aD{z( z*oO;;bErp28Sg9)RS?aSax0TXh`bo@qUq}U9aQird&`-tA5rNv{;nX;c^0J*78l5X z%lK$4f`U?I{p$|6OiFO|>EiURE!y^90g$HA-_{d2wJ9I0WuQE>J(&X5T`zvfx>(`R z>=S4enp5Dc1y8rrvnhek1VL*ellmf|GL)0s5Sf^y#d6xuoD`p-? zW>X15Q*t{jAMy%ufLl|b(xv{Hk5uYakDC&t;K^}2N@PJ917+&tq1b-xmhBpT(IFOy?oN%51`F=kn8QMD&;^84cH2;`Y5%RCrFO5$m z`2|0Ga;B=oK!9BE-Zztf{elG+aKx;pmDqI+krw_?B%eazXJGS3o7 zAAwtNlfHc5{n=|DRe3e+sn_6_f6+Ud3$iB{tqJ4$9x-y~?03ZAbL(Q@*m#HGZ*D!g zT*Ha_Uj_g#m-+h+NXnPv^Gqv!BQ0m21TlGvvzXZbPE7tkzm9Z>P&I}*E?X(IGg^F% z2XE-}8<#5Y0Av7!Lyc|6ml7^H_(Vnooj}H-Sl@Tz?*s|u89g9!j?cVfb8bYw_V_-0 zmt*IKB9T1^)Q8C5fkM(TW;w+_>ZRC5YI2)j)CozBbz}cO9SX* zxgc}}f>8_Xa&RlNBmwiQ_)HDZuT4v>IykCbXW~IDN}1#m-}H#5{cf<+r@uu3NQC?Z z(g@6*YM_2uot_+*I{#Mm_yW=#>O4FW%^*8d$XN$6>4pjt8qsAy=uZCN`Da3*BaSl^ zuV1!B%Yh%ro%tjO*H#CUZL$Q3EOltf&jl6CTMC7qvy^kZxYON^!$<%Duz)ydzpLLd>A4Meh`d^Z{&60+l%XA6_NwUAObvxs zVu3HA{{6LP@MWnq1F7$){!KTDT^l~3Tp36E49LDP)~qr=fG6! zx%NUWfeRnXo_Sl=t!_unF-5{Z8%kuv25}65 zQi3&rLh8&>bYIxD_(A;Oz~*MY)j*gN3bGI2Y%wt4H4$5S2-rbT(pt+20R=MaQ74CK@0^&d5xR`v*VoPtI82T#I@#XV=gdnfmB(xGD%6*&WDFX9H3D^!bFNM4}=qMSX{@Z4f>z#+o0s3FpiKq zPy)!C?%q>W`&Rt4wR2cd7K(M}U-AWszImVE*Gk6+p*rmNa)7&!Gf3;% zI=lSx7`*W$l74(|eMY3KJy+> zMT=K5U0NBWh{8&oe}8P_H3@^xnS)QFW-b@k3FW>(%QrP!Ll@h~dRa#p4oNSwQ#mSW=m8gWAc5c@l za$GUjbLawR3l9Yo7QF}u(n(YGt4RbgKP_DOf)`7Yd40q%U(0KfP4Mm^^4y@=1O|~v9SA=r9iST?Agz@Nb_0!nSAQ?Kzq(~ zP(AT0dh}?#!A!qB+dihppvc6qB>KUZr1D9SBPvo)RN??`SnnsHm==~^LI2jJ&p(Tw zVwlnSAe?wFlqv=ccVYp9cf02<1wa*)?4Ki+z}%2qtgCPJ0V73kP^?IsjC-}>!way6 zBW{72uiymI-V6o8eb4e47bPTg(^7>wPWTK9nQv1^J%^kgED8LkVSlvI#o!^7NNLZ{ z3RiZ~O`Y20VYQLy24n=sjFmJ-p=+b#7I1R=3nj z?Q?*f{>8{G4?;Xc>*;yLtI*DRVNr%B$E-oHV4w(Z39pMi9dEsBs}TeB!;cE!3zK@AN|$=+vVgys>;Cc=qB|Gt3AiSM8*1PA@cTE zkKebeQY^|(bnDB{t6h`DP_=%(1NF(TrFtf@xs;iLm^v@8bD<}Jh#SQc1F@83>HN*2 z*Ps7O$hwnfl~RKECEA(^Ml^?eYommSgW{y&)0g46T?A#?G@!_$GohPbK+7m2YkJzM z4v9|3CUR6*>TQe@1(m?lCla0{f;^i$oq8S5{K0#_A98O94h8M&z-TU3c|?0rWG z%YIh5-GNQ#X&zYvZmX{g#x_qvdcgfGR{y{p6YwQj8^j>w0-s6V2~4m#dQueVex+re z6dnRS1i=p@fnL00viOXWDZHc0!(o#bvD! zoFN$;UPZJ^8sl>OC+1**wDtX`Zl{E>!>193b1TEofE7J#7}U@Hf-1BLz*q^77amQX z9aRPM0l%f;KN?R9&=bzgC$;JyWb+Js-9PV;2K?`Q-P9eQs{u0`#{Rj)QzRUYDNaBc zxtpB`9RZ5VUC)+FT0aX~5m#pEeTeVp%uz-da}0bQ7J-lkB&Y%eIXx!3YWK-`Vsx!F zdiE%TXNqH#&3{j!YL9lRTX8jN>MmYGOyl1D;kVVR+6Od`dUJsa+KURyBbC}~OjfI- z;_YTZqvA&I?nu^u8|cxZgG2OJqpSp6?v)Hqq7>G~z9jM{jJ@(&$W02VFBfO_SHbw# zc7h%Xjsic`9R=nvchZC_1Km0b^_lI+sKirZL5xr!^vd13s=E>w8C+f7?kW!19%ncr zq35+St{V%?*B@RN=c!G$dloN(rPTCCZ3}TO^w!Iwnl%OhD;|jWpc{i_!BIkFw zR$P8xJ1hfBpn9191LS-t_IQ*M%?5>NVMOiwb>J=jhb!Xsh7I@t>aB*O4GlxJQTo+~ z%Rfu>fY3GN_#*V%|3DYR)Q$#on~g^skz)o=ziW!$P-Y7a{S<^mTy(rL_t-0M05sl4 z+Fj}Z)T-Sv#-XWDwEcvwJ=GUjTvfLfRV3yC##^$nO&a-y2le8~hug6moT6&JHt8NO z3ai0R#dlxIeXP#A)NM}7t`DbXbd#BKRHSER&39*67iIYRCIh~3x!txNkC+;&@p$7L z`2?(^xF`D?dO)vy6#0}%_DR)!l9E53j-kaS6@{{qpQTmBi3dVP7TI@&yCswW$ne%f z&i_gk5dnJW?{Onbe%3EBtTKfRP;r}57Kr6C@y<$n9H;0WA>nX3$o7NA#*H!>K(_V2 zEDjbIZwdp(5m2s#zz2b);>47H)Oa|cLX6OVfCG6u)C7n!C`tngE6gTTG>udJy-~^i z1JI>KQNbnrpX7{shA3xh_+!>X^5L zxXA%=QT1;c7|0C^zo}?(`w6(fgJsU0$3XdTKSn4gI)HQl%5C-wK88jjQ0WLo*!^?xcY)a2PK*nKfc4xtA@EL4^4RKm>cmU=MAu?LSZ!UH{go? zG;C=GWW9&+(W}0&7Tp&-XuZ(>MCS|%zAra^OSoig$0KxQD#Vyy38Ni>vaPOu#O!gy zj|BMUe?>8i?GElt9FO&Ipq0+^IJ7em(ABR>45C9yTM+&>awmJQ;Ew@npX6%(<_|T< zSD2h;f#uvZ6MXiGm|HLUty-NMuJOV}S{~zXSC`~`wrqRUs@@%tO4W$bO( z2~buU&rS5RKmB8&$$nlHlkXRrTIpx-sLsuu_`c4_>NDy?0#^@WD?KHQqZ8%=vgHK1 zBu~qJ_X|`71p2V>iIQi_s6;V77E1yltmX~)D zRJ=sp?$rBK45+cYl#P^ehuzt?tTO)NZb5U?zzUxVK&r{)BqCmeG^&Id z`TeZN4C0$$yvvDRNCp(5DiPsvH8D#%Y|7q-r`!ll$vm0Pxv5m|8;BZaPw!5NSGh?B z1J*Sq-{!L~#tySo0uQX1jkxVGJQiWm!@S0%bl=_+EoR}^|45^P!{zuiX*q@frabnZH7oCGfL zfE1GohPuU;xH5?uHqaDtcT(;Xv_%Je)FDH8Cjl-zfM(Os!G!2qLxpXgfR*#S z+Glml`j=jouzQWqiUy%~^LzBBa>;MX>i`GAuVwAc)v+~L&Q(bZ!htUV&qyPQg~Jjn z9-Nl8LQwtm^_C&@LmD{cU$>3hpE&>NG%eQj6}Py;NYD`}pM^}Wdq48!Ob+QI#0xt2 zEDte_*NV73iUOP0I7%0=)wGq{)4^x?WtF0nu*VG(<`N z@PZZwUrCXF0F?U(ZJ>hBd>C;|07X8tz%&pn~1^ z=H$RiF7t>u3TR?iy*H-gd{?Wv4UzM+@>wo5e9gf6K!f(r%=6oK7I>Q|v6-mA9$`Tiarh$-Y=`=B#Y?^~G$x`#r*C-j~OAjan%pX1GQ92)Bn zBhm4vUt9y$85SsU>ZxLn^Z?qB1fmU#6WAAXO)DMyKvDnrCQh;+a3YR&EpwDCy79>(iajH4J}JYhP!#NplIoS4CWb%(f5eO75ijQ{c%Hop|K& zlz1Gkh!KXssJZ4Ppa?F_6y$`_n_E}RcAX>0t)mwILP1LVWd?%hwo8k75OyOBMXT%V zOB?&nWIvk+fZCkOLcn7QCZFL=Q;(07rT}V)4$lq#EV0Z5m3ATT4J(fqz(Gs`nSsl& zNn6mWm>T{Bc%iP~F&`wn<)%*chO2d(TBv4_xa>qF z-N^|$?;=kmaf^ojSc)J3rwWuOe7mrUaLi}viZ`GJiElyenXk;IXTSyMig5SNSnrvh zOmp?;d?>(1vVqkw_Hwnj1Zfrlo%lzZCnI*IdZbFR`-f5EHf^Lqg>elKu zV~EJ!DgYC`{8771|Jc)0zm$G(5Hh`i}T7_k^A3YWI9`O7@~oHO+SZejQA{GK~omHDCD-XI!7>rlcJz z#I-|QCEpK|PXVDZC_KMH@qx`<{$e^j^MWBU!PMn$svCZ*Cq zKoiEK^zRwfQlf7oq2+jC9LSFaHJs5Z>ZGBnd}MPs7|9Hqh5eE3_o$%uc>6Tz0EqS# zV)OPG+)CJ%ESmo9 z7?4cqYXE2ND}z?N5}7FAcK{6SLg4vF5dYNC{sLro*3$40CQ$`wbh$9({Ixifda%0A zl(ezxLnWq_i{cFM5nqFfl8}Cw@$K7dk+)$|7*tq5n3@?iy%%`00#o#dcmARZ}R01~^lf zWad|@(KtDA_?!l!B2?c>*jS(6CEs;anpla3P#Yx;5z-D znn)q1v%X*mK+;F+KN#0QB2J`*ezj_foJFbJ19Z#2go@?YyT&IMn_}-)xX(9stq(mU zJs%42fo<0rkov#xu?PS2p$j~)4K}9K|7ss~1f4rwE8%UnGI2?L^AG-PaslviIOP9F z?d(6LI(AJpP znTAun_iMaZid3{nD#MaxOarBaun>!F%Q8gDu%kkS#34gvQ6ym@O^Zs4C~2a$2C@@H zTQZg?8B(YyWX!pL(sQ2YId9H&uIpUq#eU(1+W!9Q_q)IMeSbdbFkSY2;g4ewc8D# z0U)hA29!cs;BvC9|B8Q7T+=Dx1}A9$;0KKT82$1URj#F+-HmxFa!CQl4MP_=`E#gW z2rY^7Ud@@xg;ztB`9wHS*6^LACs3-(fG<>yrRKK%T1X69$w!9I2cCRf98y3KpMt9pr+onHHy) zfL>I4o3`wGs4hLI=cRf9PWKGw2f@|oc8HC%buQF!7d^1k0;)L|qv{5sA>^qEFmJne zrgK^VA4+y*oppd%5_kqbCn;ghA0#YA%xfXYTTInO)~P$x5}^UNg7{v9W~E5oU7vIM zK5{=l>{&hiMNx_s-KwPn;FUPm^l6676n!Jrzt661C~K1|h9KPh)B}Hq-`|=I#!YLX zP$UiFr+gh$fQ zg7On2Fr#D?*lfCYUNkwLh(D*>-HpXgke*ew&^Q>X&CdDV?8FQw@y$f#j%Bs|eok+_ zH#ANF{7ds4oY?~-kbYi8mAOSfg5Ndpi|C4Ct>Z0z4`g4-8rUJb6mo)*&%I{^NqZJ? z{FltS1Q}4Bzsue(;6@_tvJa6C9z&_`Q4hS0^$;US_)F*HmSI0iem%`5$Kl3mdp6II zm9K2+b-t3I+$M<{!=2~i&Dq#BPDZM2sW;wl^KRAJH$fMvt+@NouF-kus7~H=+R=HF zS6(rRO|gcOEXvwc`xjHd`p!NRRbQk=Wpxy^BGQ&_zRBZ;4Za!?j^F`(BZn713A@Pa zmQ(#T8RE^OUy2U?wZ>1A(RBp1s6>fnj*-n?H)LWV%^&1>)tTqs`>ZW}h1^J(^d3Hy zOUPv=WS_6Ka>wd-~$tZSytRalQ?X9Q4=k1vtrXS?uU`1~hw?XZ*r6Zv9L%ZzgiN4zEz zZ!|QCNkU|bDw9|WIGe(gV0Cg@kbz`iZ-j8`R2WU@sF*wQ#J~tpg@A8JI`O9F0&0C- zk$DJMMG7WlLrWp+-l6)jBAGme5SsZB(pceM|vu^pb&mc)l%2-Utg0x zh-=lBvZ=R?f#p!i{#gzaQ(uRp?I9`IUw`BO^siScZ2QMNZFzWahnT(jGMBQ=y^(PTYN)t zjgMo(j$k^2PoVdYI8iaiBgnl}-~8Z;Wp|!{G)UoV#6d_sc`Jz7+xza3AM)|17-I+g zcCI{9g@*4^1hbsJwz5%gCwYcTbPt@AWH}sK!F6JBJmmj3_q<-CVs-w|nBISVBTnpiQ{8WZSX*`JLOV3msOph37$R&6) z69h*I^#@1KE?yj!oj0WUA3Y8#_PJaOBxb1^nwK!XUvZ1zS#1rKiE0y6oF1czil;(TH{%5oN1YQ`QvSpO!vrh4*->;8CH)2Qo+zV z1N&(5bJ0-Q(M6XH=}{k-Dv9KeL|W5(D37E`2g`=kEX6u2Z#~!j7OQHXEWrqu6+)LO zs?h{+8h6a`+DC@Jb?&NaDWwQSyqLPX`P4Py@WYuwIG^Z|J4~|3PLnMNdoIugIfp86 z_+Di&a_CRELZ`mI|NDwV?=Wm5&DM}nobDuu@QhM&qt7IcDglR+$#ur82&CHMIvw!uHD4 zEfFcHI)UZVflU|8WfS91P=tc5MkU)Kg5-|j-iit{f}oNQ=&qmtMD#0xvYhB)RXXSb z=CE|vvoZOFT_?gSLb*5Ud$zEnJm`Yi`rn)OEn+%_e98w4D&_r2dmYzS5~co8R0Ij$FDV#9McY$J-x$DOsEZ&G48 zGDqMjV+~Ki2hiB$AFXnX^q~XeBTq?P%FbOYBnPMz?M^xCf~RRRD&mXodPqg zcAjn*zv1C&tSh3MFoDLu7D)IDZL9e<`cyQ#*J{?8-(B!^9F>yQ^S{Fw_;AW9%-Qs_ zg0Pfkj99?uSX;Rv00Bqj1%yo!WY0y>tZqUtwfTj!lrKaUQd`hw(X_ivnIRb?vCaLy zgDze27}Z!>tUZW-mAEeD$@Hbw7qR_K(Z~_@++Ll*JMYQ_%Es79TQKQK8grEJH6nxw_qDzWbqJ~TA8oig&pFGD7gkNIeH)r&$abDt zp`ZAMm+G)Fs(NkI`Yd~OS+BDRYw~H_16snST5uHju$`V&zuZjt$Sn^#^IYvW+8>>+ z3)dc0-1E_ttt`hU>9wzNNQ%B-mv-`VJA}10*LY5>eY^|VK0APKJiGlkZK=H}-Rfu* zMXuuAqbS)+RL^tkjT)spr0~8<4D!!J(W;g9Bijy=>CK=~ zo(Qpz7tS#EC2E&UPYjku-hwNZ5_aj4vPS^9$lDJ91e;;Us`I zQnkHSk_k&0{FY*^8I@6u(ZH_FtPwi~KtwMvZG%9{0D zZI$i=#R3bI!>xn^c9jfa%2HlYe`Y`X=ql^G2`XMG!&n+Xl0%8ty?M z6+9D&Xc=A=;8C1;^w?7QL$Fxu9`mU}$Vr7UYREk-Vr-c1;sp?|SC`atb?N2e% z)lwNbWW4TAK1NHE)z;c7t&hOzl)U3eWabLKfD`sITZ!`~)`Tsp`HfHC>qhL%YT9}! zVIl3A7JK6EqHU!Wu@Tr8ovfWwI;x3_mX(w^-m>JaG~);KGJDuCt0%RpaZ$dVS8=SS z417>m(|Z>{arBKJO{1v5i3ilswceH{RNm z}EP`Dn8iL*(jp8w~b4|k9rgdvp) zAvXY*pr-#jhS=BTQ^A=eU*Tk2V;Yx?JuiFQ(25IJ?MTLXUB2f|vmzlUL%Kc<>yE7RJaD z>7_z4AP|##{nNmw*Y;qHN)LmaXx*q!8qCm{h2vAcg(Tlc;cx^S1QL1jGDEU~*TYI`*{ zjCl0qx2Z@GwRIQmd)?>gN*{ty`wbUxvTeG`btqr%t;`v>+Hsh8eU9=ty_ zB=rck+=KhQVxw-Kag5f{ftqkm3t|W*NdEcaf6$Fm=L2oG#=9x2$c?njA)r;KpIG6d z_dC-U+0$3tHsw&m`67a%cFgjAFgR?f{q?h1JW@j^em;mF?{!KY7CcIu+5?D|ozC>d zJ5xS~%rDiBITDgW=@jDrzQX33v4UWq?KNkonoMUBXHh+HUsXp^j?$QW5DbLtvK>00k-BljI~*7F}~? zoU7X-e*KNT=Y{*8b$9GcsOW>{O6THa_V4Yo0_1GZg##eRh}zmo0b+GPL2e}6Ry zgb#Vq{Lz`Z8)sOuvlj)h_58c9-Z4*6+uYwRQpu&#HM^NB7|mO5O`TAe2#;w(wih{P z1@5uj{D*h}773-b9`|UT{Hb8=nXo5}9-t&X()@@Rb4C0gG;P?7-M@9$kdH#R4FNP| z7rzRgI;fdZB;_*v3Jb`Iu8!U};4PDv)2_~f;{Qv*} diff --git a/ui-tests/yarn.lock b/ui-tests/yarn.lock index dfe97fd9a1..a3c02f1d9c 100644 --- a/ui-tests/yarn.lock +++ b/ui-tests/yarn.lock @@ -2,8 +2,8 @@ # Manual changes might be lost - proceed with caution! __metadata: - version: 8 - cacheKey: 10c0 + version: 6 + cacheKey: 8 "@codemirror/autocomplete@npm:^6.0.0, @codemirror/autocomplete@npm:^6.18.3, @codemirror/autocomplete@npm:^6.3.2, @codemirror/autocomplete@npm:^6.7.1": version: 6.18.4 @@ -13,7 +13,7 @@ __metadata: "@codemirror/state": "npm:^6.0.0" "@codemirror/view": "npm:^6.17.0" "@lezer/common": "npm:^1.0.0" - checksum: 8/4216f45a17f6cfd8d33df53f940396f7d3707662570bf3a79d8d333f926e273a265fac13c362e29e3fa57ccdf444f1a047862f5f56c672cfc669c87ee975858f + checksum: 4216f45a17f6cfd8d33df53f940396f7d3707662570bf3a79d8d333f926e273a265fac13c362e29e3fa57ccdf444f1a047862f5f56c672cfc669c87ee975858f languageName: node linkType: hard @@ -25,7 +25,7 @@ __metadata: "@codemirror/state": "npm:^6.4.0" "@codemirror/view": "npm:^6.27.0" "@lezer/common": "npm:^1.1.0" - checksum: 8/507ae0cc7f3a7bd869bca0de7e942ecb2bc0bd95a42484e5b06835ebf8caf7626c39d2bea26cefab99d07ab83ba5934afd2d07ce00dac4190aca014523f3c97e + checksum: 507ae0cc7f3a7bd869bca0de7e942ecb2bc0bd95a42484e5b06835ebf8caf7626c39d2bea26cefab99d07ab83ba5934afd2d07ce00dac4190aca014523f3c97e languageName: node linkType: hard @@ -35,7 +35,7 @@ __metadata: dependencies: "@codemirror/language": "npm:^6.0.0" "@lezer/cpp": "npm:^1.0.0" - checksum: 8/bb9eba482cca80037ce30c7b193cf45eff19ccbb773764fddf2071756468ecc25aa53c777c943635054f89095b0247b9b50c339e107e41e68d34d12a7295f9a9 + checksum: bb9eba482cca80037ce30c7b193cf45eff19ccbb773764fddf2071756468ecc25aa53c777c943635054f89095b0247b9b50c339e107e41e68d34d12a7295f9a9 languageName: node linkType: hard @@ -48,7 +48,7 @@ __metadata: "@codemirror/state": "npm:^6.0.0" "@lezer/common": "npm:^1.0.2" "@lezer/css": "npm:^1.1.7" - checksum: 8/ed175d75d75bc0a059d1e60b3dcd8464d570da14fc97388439943c9c43e1e9146e37b83fe2ccaad9cd387420b7b411ea1d24ede78ecd1f2045a38acbb4dd36bc + checksum: ed175d75d75bc0a059d1e60b3dcd8464d570da14fc97388439943c9c43e1e9146e37b83fe2ccaad9cd387420b7b411ea1d24ede78ecd1f2045a38acbb4dd36bc languageName: node linkType: hard @@ -65,7 +65,7 @@ __metadata: "@lezer/common": "npm:^1.0.0" "@lezer/css": "npm:^1.1.0" "@lezer/html": "npm:^1.3.0" - checksum: 8/ac8c3ceb0396f2e032752c5079bd950124dca708bc64e96fc147dc5fe7133e5cee0814fe951abdb953ec1d11fa540e4b30a712b5149d9a36016a197a28de45d7 + checksum: ac8c3ceb0396f2e032752c5079bd950124dca708bc64e96fc147dc5fe7133e5cee0814fe951abdb953ec1d11fa540e4b30a712b5149d9a36016a197a28de45d7 languageName: node linkType: hard @@ -75,7 +75,7 @@ __metadata: dependencies: "@codemirror/language": "npm:^6.0.0" "@lezer/java": "npm:^1.0.0" - checksum: 8/4679104683cbffcd224ac04c7e5d144b787494697b26470b07017259035b7bb3fa62609d9a61bfbc566f1756d9f972f9f26d96a3c1362dd48881c1172f9a914d + checksum: 4679104683cbffcd224ac04c7e5d144b787494697b26470b07017259035b7bb3fa62609d9a61bfbc566f1756d9f972f9f26d96a3c1362dd48881c1172f9a914d languageName: node linkType: hard @@ -90,7 +90,7 @@ __metadata: "@codemirror/view": "npm:^6.17.0" "@lezer/common": "npm:^1.0.0" "@lezer/javascript": "npm:^1.0.0" - checksum: 8/66379942a8347dff2bd76d10ed7cf313bca83872f8336fdd3e14accfef23e7b690cd913c9d11a3854fba2b32299da07fc3275995327642c9ee43c2a8e538c19d + checksum: 66379942a8347dff2bd76d10ed7cf313bca83872f8336fdd3e14accfef23e7b690cd913c9d11a3854fba2b32299da07fc3275995327642c9ee43c2a8e538c19d languageName: node linkType: hard @@ -100,7 +100,7 @@ __metadata: dependencies: "@codemirror/language": "npm:^6.0.0" "@lezer/json": "npm:^1.0.0" - checksum: 8/e9e87d50ff7b81bd56a6ab50740b1dd54e9a93f1be585e1d59d0642e2148842ea1528ac7b7221eb4ddc7fe84bbc28065144cc3ab86f6e06c6aeb2d4b4e62acf1 + checksum: e9e87d50ff7b81bd56a6ab50740b1dd54e9a93f1be585e1d59d0642e2148842ea1528ac7b7221eb4ddc7fe84bbc28065144cc3ab86f6e06c6aeb2d4b4e62acf1 languageName: node linkType: hard @@ -115,7 +115,7 @@ __metadata: "@codemirror/view": "npm:^6.0.0" "@lezer/common": "npm:^1.2.1" "@lezer/markdown": "npm:^1.0.0" - checksum: 8/cd0281c6b7130b2f12903c82a2f36b53b428002577a9fdab09de810a95ef0db5049ef951e2a065b0f38b42af854bee176492238e5ab116099e4799950638cadc + checksum: cd0281c6b7130b2f12903c82a2f36b53b428002577a9fdab09de810a95ef0db5049ef951e2a065b0f38b42af854bee176492238e5ab116099e4799950638cadc languageName: node linkType: hard @@ -128,7 +128,7 @@ __metadata: "@codemirror/state": "npm:^6.0.0" "@lezer/common": "npm:^1.0.0" "@lezer/php": "npm:^1.0.0" - checksum: 8/c003a29a426486453fdfddbf7302982fa2aa7f059bf6f1ce4cbf08341b0162eee5e2f50e0d71c418dcd358491631780156d846fe352754d042576172c5d86721 + checksum: c003a29a426486453fdfddbf7302982fa2aa7f059bf6f1ce4cbf08341b0162eee5e2f50e0d71c418dcd358491631780156d846fe352754d042576172c5d86721 languageName: node linkType: hard @@ -141,7 +141,7 @@ __metadata: "@codemirror/state": "npm:^6.0.0" "@lezer/common": "npm:^1.2.1" "@lezer/python": "npm:^1.1.4" - checksum: 8/a3015abf8035b0c30e5bfc1e8b1bd43c5d9d4ec908b9c3f1e293e755256b41f6e48ad19b2e39c9f91c67264b9061235d9dc293acfe39175d4c2edaab951ceae2 + checksum: a3015abf8035b0c30e5bfc1e8b1bd43c5d9d4ec908b9c3f1e293e755256b41f6e48ad19b2e39c9f91c67264b9061235d9dc293acfe39175d4c2edaab951ceae2 languageName: node linkType: hard @@ -151,7 +151,7 @@ __metadata: dependencies: "@codemirror/language": "npm:^6.0.0" "@lezer/rust": "npm:^1.0.0" - checksum: 8/8a439944cb22159b0b3465ca4fa4294c69843219d5d30e278ae6df8e48f30a7a9256129723c025ec9b5e694d31a3560fb004300b125ffcd81c22d13825845170 + checksum: 8a439944cb22159b0b3465ca4fa4294c69843219d5d30e278ae6df8e48f30a7a9256129723c025ec9b5e694d31a3560fb004300b125ffcd81c22d13825845170 languageName: node linkType: hard @@ -165,7 +165,7 @@ __metadata: "@lezer/common": "npm:^1.2.0" "@lezer/highlight": "npm:^1.0.0" "@lezer/lr": "npm:^1.0.0" - checksum: 8/1b5a3c8129b09f24039d8c0906fc4cb8d0f706a424a1d56721057bd1e647797c2b1240bb53eed9bf2bac5806a4e0363e555a3963f04c478efa05829890c537f7 + checksum: 1b5a3c8129b09f24039d8c0906fc4cb8d0f706a424a1d56721057bd1e647797c2b1240bb53eed9bf2bac5806a4e0363e555a3963f04c478efa05829890c537f7 languageName: node linkType: hard @@ -177,7 +177,7 @@ __metadata: "@lezer/common": "npm:^1.2.0" "@lezer/highlight": "npm:^1.0.0" "@lezer/lr": "npm:^1.0.0" - checksum: 8/72119d4a7d726c54167aa227c982ae9fa785c8ad97a158d8350ae95eecfbd8028a803eef939f7e6c5c6e626fcecda1dc37e9dffc6d5d6ec105f686aeda6b2c24 + checksum: 72119d4a7d726c54167aa227c982ae9fa785c8ad97a158d8350ae95eecfbd8028a803eef939f7e6c5c6e626fcecda1dc37e9dffc6d5d6ec105f686aeda6b2c24 languageName: node linkType: hard @@ -191,7 +191,7 @@ __metadata: "@codemirror/view": "npm:^6.0.0" "@lezer/common": "npm:^1.0.0" "@lezer/xml": "npm:^1.0.0" - checksum: 8/3a1b7af07b29ad7e53b77bf584245580b613bc92256059f175f2b1d7c28c4e39b75654fe169b9a8a330a60164b53ff5254bdb5b8ee8c6e6766427ee115c4e229 + checksum: 3a1b7af07b29ad7e53b77bf584245580b613bc92256059f175f2b1d7c28c4e39b75654fe169b9a8a330a60164b53ff5254bdb5b8ee8c6e6766427ee115c4e229 languageName: node linkType: hard @@ -205,7 +205,7 @@ __metadata: "@lezer/highlight": "npm:^1.0.0" "@lezer/lr": "npm:^1.0.0" style-mod: "npm:^4.0.0" - checksum: 8/c9b71e2df8559bc677edae293a825a0dd196c98d49a6e20a98cc6bea51a01c67d268b07b5a761d7ac15b1d65415e17af1f644d5629ab4207268804e71cd48d7c + checksum: c9b71e2df8559bc677edae293a825a0dd196c98d49a6e20a98cc6bea51a01c67d268b07b5a761d7ac15b1d65415e17af1f644d5629ab4207268804e71cd48d7c languageName: node linkType: hard @@ -214,7 +214,7 @@ __metadata: resolution: "@codemirror/legacy-modes@npm:6.4.2" dependencies: "@codemirror/language": "npm:^6.0.0" - checksum: 8/fe55df97efe980a573ff5572f480eae323d7652a4a61435c654a90142def7102218023590112de7cd826c495ecaadae68a89fb5e5d4323d207af267bcce1d0c1 + checksum: fe55df97efe980a573ff5572f480eae323d7652a4a61435c654a90142def7102218023590112de7cd826c495ecaadae68a89fb5e5d4323d207af267bcce1d0c1 languageName: node linkType: hard @@ -225,7 +225,7 @@ __metadata: "@codemirror/state": "npm:^6.0.0" "@codemirror/view": "npm:^6.0.0" crelt: "npm:^1.0.5" - checksum: 8/0e383c6b8b0fc463f90f8ebdc71628ba39cffbe4f3667a8382b8eedb61aff9eafe947cb3db947701c8f306acdc9576a2da889d0161ccdd14c9245705cfbd4571 + checksum: 0e383c6b8b0fc463f90f8ebdc71628ba39cffbe4f3667a8382b8eedb61aff9eafe947cb3db947701c8f306acdc9576a2da889d0161ccdd14c9245705cfbd4571 languageName: node linkType: hard @@ -236,7 +236,7 @@ __metadata: "@codemirror/state": "npm:^6.0.0" "@codemirror/view": "npm:^6.0.0" crelt: "npm:^1.0.5" - checksum: 8/0f9633037492a7b647b606c30255ea42c4327319e643be7ea3aa2913ed8e4aa662589f457e376636521c7d4d1215fae0e8939f127db9c0790b19ae3b654c3bc4 + checksum: 0f9633037492a7b647b606c30255ea42c4327319e643be7ea3aa2913ed8e4aa662589f457e376636521c7d4d1215fae0e8939f127db9c0790b19ae3b654c3bc4 languageName: node linkType: hard @@ -245,7 +245,7 @@ __metadata: resolution: "@codemirror/state@npm:6.5.0" dependencies: "@marijn/find-cluster-break": "npm:^1.0.0" - checksum: 8/f7fbed072cc67bf250f7d231668a00b988748cacaaa2ce3ea74ff13c7c392db76000e7d517933521cc6ad9dc3651c7b6d33accab3e3d4b9816cd3c5714661a84 + checksum: f7fbed072cc67bf250f7d231668a00b988748cacaaa2ce3ea74ff13c7c392db76000e7d517933521cc6ad9dc3651c7b6d33accab3e3d4b9816cd3c5714661a84 languageName: node linkType: hard @@ -256,21 +256,21 @@ __metadata: "@codemirror/state": "npm:^6.5.0" style-mod: "npm:^4.1.0" w3c-keyname: "npm:^2.2.4" - checksum: 8/77728cbc6f07f16abc4b98c487b6fad522781c928e4b31597b28d54364da6aa5542ed7c9b5c77b90bec5095527c3c062450f156f54fc8ddbcacdf86b4b32c608 + checksum: 77728cbc6f07f16abc4b98c487b6fad522781c928e4b31597b28d54364da6aa5542ed7c9b5c77b90bec5095527c3c062450f156f54fc8ddbcacdf86b4b32c608 languageName: node linkType: hard "@fortawesome/fontawesome-free@npm:^5.12.0": version: 5.15.4 resolution: "@fortawesome/fontawesome-free@npm:5.15.4" - checksum: 8/32281c3df4075290d9a96dfc22f72fadb3da7055d4117e48d34046b8c98032a55fa260ae351b0af5d6f6fb57a2f5d79a4abe52af456da35195f7cb7dda27b4a2 + checksum: 32281c3df4075290d9a96dfc22f72fadb3da7055d4117e48d34046b8c98032a55fa260ae351b0af5d6f6fb57a2f5d79a4abe52af456da35195f7cb7dda27b4a2 languageName: node linkType: hard "@gar/promisify@npm:^1.1.3": version: 1.1.3 resolution: "@gar/promisify@npm:1.1.3" - checksum: 8/4059f790e2d07bf3c3ff3e0fec0daa8144fe35c1f6e0111c9921bd32106adaa97a4ab096ad7dab1e28ee6a9060083c4d1a4ada42a7f5f3f7a96b8812e2b757c1 + checksum: 4059f790e2d07bf3c3ff3e0fec0daa8144fe35c1f6e0111c9921bd32106adaa97a4ab096ad7dab1e28ee6a9060083c4d1a4ada42a7f5f3f7a96b8812e2b757c1 languageName: node linkType: hard @@ -278,9 +278,9 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyter-notebook/ui-tests@workspace:." dependencies: - "@jupyterlab/galata": "npm:~5.4.0-beta.0" - "@playwright/test": "npm:~1.50.1" - rimraf: "npm:^3.0.2" + "@jupyterlab/galata": ~5.4.0-beta.1 + "@playwright/test": ~1.51.0 + rimraf: ^3.0.2 languageName: unknown linkType: soft @@ -290,7 +290,7 @@ __metadata: dependencies: "@jupyter/web-components": "npm:^0.16.7" react: "npm:>=17.0.0 <19.0.0" - checksum: 8/37894347e63ebb528725e8b8b4038d138019823f5c9e28e3f6abb93b46d771b2ee3cc004d5ff7d9a06a93f2d90e41000bd2abae14364be34ba99c5e05864810e + checksum: 37894347e63ebb528725e8b8b4038d138019823f5c9e28e3f6abb93b46d771b2ee3cc004d5ff7d9a06a93f2d90e41000bd2abae14364be34ba99c5e05864810e languageName: node linkType: hard @@ -302,7 +302,7 @@ __metadata: "@microsoft/fast-element": "npm:^1.12.0" "@microsoft/fast-foundation": "npm:^2.49.4" "@microsoft/fast-web-utilities": "npm:^5.4.1" - checksum: 8/ec3336247bbabb2e2587c2cf8b9d0e80786b454916dd600b3d6791bf08c3d1e45a7ec1becf366a5491ab56b0be020baa8c50a5b6067961faf5ec904de31243aa + checksum: ec3336247bbabb2e2587c2cf8b9d0e80786b454916dd600b3d6791bf08c3d1e45a7ec1becf366a5491ab56b0be020baa8c50a5b6067961faf5ec904de31243aa languageName: node linkType: hard @@ -316,431 +316,431 @@ __metadata: "@lumino/signaling": "npm:^1.10.0 || ^2.0.0" y-protocols: "npm:^1.0.5" yjs: "npm:^13.5.40" - checksum: 8/e9419a461f33d2685db346b19806865fe37f61b2ca33eb39c4ea905d765794a928442adf1bbffda67b665bdeba3be9a082189a57eaab5367aeaf6b57caeda822 - languageName: node - linkType: hard - -"@jupyterlab/application@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/application@npm:4.4.0-beta.0" - dependencies: - "@fortawesome/fontawesome-free": "npm:^5.12.0" - "@jupyterlab/apputils": "npm:^4.5.0-beta.0" - "@jupyterlab/coreutils": "npm:^6.4.0-beta.0" - "@jupyterlab/docregistry": "npm:^4.4.0-beta.0" - "@jupyterlab/rendermime": "npm:^4.4.0-beta.0" - "@jupyterlab/rendermime-interfaces": "npm:^3.12.0-beta.0" - "@jupyterlab/services": "npm:^7.4.0-beta.0" - "@jupyterlab/statedb": "npm:^4.4.0-beta.0" - "@jupyterlab/translation": "npm:^4.4.0-beta.0" - "@jupyterlab/ui-components": "npm:^4.4.0-beta.0" - "@lumino/algorithm": "npm:^2.0.2" - "@lumino/application": "npm:^2.4.2" - "@lumino/commands": "npm:^2.3.1" - "@lumino/coreutils": "npm:^2.2.0" - "@lumino/disposable": "npm:^2.1.3" - "@lumino/messaging": "npm:^2.0.2" - "@lumino/polling": "npm:^2.1.3" - "@lumino/properties": "npm:^2.0.2" - "@lumino/signaling": "npm:^2.1.3" - "@lumino/widgets": "npm:^2.6.0" - checksum: 8/999a26ae3b454f30994799306a01646bd56a06c8bc70edbaa81316695ecf3f32982d9f969e692cabe6ee082331ddfdaef6f6d7f8dcced5b7b3953e9629b1c794 - languageName: node - linkType: hard - -"@jupyterlab/apputils@npm:^4.5.0-beta.0": - version: 4.5.0-beta.0 - resolution: "@jupyterlab/apputils@npm:4.5.0-beta.0" - dependencies: - "@jupyterlab/coreutils": "npm:^6.4.0-beta.0" - "@jupyterlab/observables": "npm:^5.4.0-beta.0" - "@jupyterlab/rendermime-interfaces": "npm:^3.12.0-beta.0" - "@jupyterlab/services": "npm:^7.4.0-beta.0" - "@jupyterlab/settingregistry": "npm:^4.4.0-beta.0" - "@jupyterlab/statedb": "npm:^4.4.0-beta.0" - "@jupyterlab/statusbar": "npm:^4.4.0-beta.0" - "@jupyterlab/translation": "npm:^4.4.0-beta.0" - "@jupyterlab/ui-components": "npm:^4.4.0-beta.0" - "@lumino/algorithm": "npm:^2.0.2" - "@lumino/commands": "npm:^2.3.1" - "@lumino/coreutils": "npm:^2.2.0" - "@lumino/disposable": "npm:^2.1.3" - "@lumino/domutils": "npm:^2.0.2" - "@lumino/messaging": "npm:^2.0.2" - "@lumino/signaling": "npm:^2.1.3" - "@lumino/virtualdom": "npm:^2.0.2" - "@lumino/widgets": "npm:^2.6.0" - "@types/react": "npm:^18.0.26" - react: "npm:^18.2.0" - sanitize-html: "npm:~2.12.1" - checksum: 8/7d619d3e0759117b78a13d52f7fa08fd3388bd941f4fac193f0ef99471b757cf4ac33b7e48cdd351e2c1118a4ef219febcea3c77ab10a5fc03749f4079efc6dc - languageName: node - linkType: hard - -"@jupyterlab/attachments@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/attachments@npm:4.4.0-beta.0" - dependencies: - "@jupyterlab/nbformat": "npm:^4.4.0-beta.0" - "@jupyterlab/observables": "npm:^5.4.0-beta.0" - "@jupyterlab/rendermime": "npm:^4.4.0-beta.0" - "@jupyterlab/rendermime-interfaces": "npm:^3.12.0-beta.0" - "@lumino/disposable": "npm:^2.1.3" - "@lumino/signaling": "npm:^2.1.3" - checksum: 8/24ce731db319e7e3e3b7ac9a23dd760eeb4863840f7fc8ea51ed1e460ef4e1bd0f1feaebc62a823a04df2e2716d1a54443d56cda6d77b04b404ba98a8ffc8906 - languageName: node - linkType: hard - -"@jupyterlab/cells@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/cells@npm:4.4.0-beta.0" - dependencies: - "@codemirror/state": "npm:^6.5.0" - "@codemirror/view": "npm:^6.35.3" - "@jupyter/ydoc": "npm:^3.0.0" - "@jupyterlab/apputils": "npm:^4.5.0-beta.0" - "@jupyterlab/attachments": "npm:^4.4.0-beta.0" - "@jupyterlab/codeeditor": "npm:^4.4.0-beta.0" - "@jupyterlab/codemirror": "npm:^4.4.0-beta.0" - "@jupyterlab/coreutils": "npm:^6.4.0-beta.0" - "@jupyterlab/documentsearch": "npm:^4.4.0-beta.0" - "@jupyterlab/filebrowser": "npm:^4.4.0-beta.0" - "@jupyterlab/nbformat": "npm:^4.4.0-beta.0" - "@jupyterlab/observables": "npm:^5.4.0-beta.0" - "@jupyterlab/outputarea": "npm:^4.4.0-beta.0" - "@jupyterlab/rendermime": "npm:^4.4.0-beta.0" - "@jupyterlab/services": "npm:^7.4.0-beta.0" - "@jupyterlab/toc": "npm:^6.4.0-beta.0" - "@jupyterlab/translation": "npm:^4.4.0-beta.0" - "@jupyterlab/ui-components": "npm:^4.4.0-beta.0" - "@lumino/algorithm": "npm:^2.0.2" - "@lumino/coreutils": "npm:^2.2.0" - "@lumino/domutils": "npm:^2.0.2" - "@lumino/dragdrop": "npm:^2.1.5" - "@lumino/messaging": "npm:^2.0.2" - "@lumino/polling": "npm:^2.1.3" - "@lumino/signaling": "npm:^2.1.3" - "@lumino/virtualdom": "npm:^2.0.2" - "@lumino/widgets": "npm:^2.6.0" - react: "npm:^18.2.0" - checksum: 8/233e3479b6faca43d4dfb0d1b1dc0e79f1580a9e2ffb71990b63ce06ea1bfd30a5bd9d3ea4518564e8d1398beb50bc7f1dfe2537322a7006b6d6c9ffb0ddd798 - languageName: node - linkType: hard - -"@jupyterlab/codeeditor@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/codeeditor@npm:4.4.0-beta.0" - dependencies: - "@codemirror/state": "npm:^6.5.0" - "@jupyter/ydoc": "npm:^3.0.0" - "@jupyterlab/apputils": "npm:^4.5.0-beta.0" - "@jupyterlab/coreutils": "npm:^6.4.0-beta.0" - "@jupyterlab/nbformat": "npm:^4.4.0-beta.0" - "@jupyterlab/observables": "npm:^5.4.0-beta.0" - "@jupyterlab/statusbar": "npm:^4.4.0-beta.0" - "@jupyterlab/translation": "npm:^4.4.0-beta.0" - "@jupyterlab/ui-components": "npm:^4.4.0-beta.0" - "@lumino/coreutils": "npm:^2.2.0" - "@lumino/disposable": "npm:^2.1.3" - "@lumino/dragdrop": "npm:^2.1.5" - "@lumino/messaging": "npm:^2.0.2" - "@lumino/signaling": "npm:^2.1.3" - "@lumino/widgets": "npm:^2.6.0" - react: "npm:^18.2.0" - checksum: 8/6af171477ba629cde0b99316a23bf7a3371c40f6697d9bd40fcdf2f7cc18a9d1fccbf4aa994734926222f28e94be52ebe7e67c3241e4324301109d0c649f16bd - languageName: node - linkType: hard - -"@jupyterlab/codemirror@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/codemirror@npm:4.4.0-beta.0" - dependencies: - "@codemirror/autocomplete": "npm:^6.18.3" - "@codemirror/commands": "npm:^6.7.1" - "@codemirror/lang-cpp": "npm:^6.0.2" - "@codemirror/lang-css": "npm:^6.3.1" - "@codemirror/lang-html": "npm:^6.4.9" - "@codemirror/lang-java": "npm:^6.0.1" - "@codemirror/lang-javascript": "npm:^6.2.2" - "@codemirror/lang-json": "npm:^6.0.1" - "@codemirror/lang-markdown": "npm:^6.3.1" - "@codemirror/lang-php": "npm:^6.0.1" - "@codemirror/lang-python": "npm:^6.1.7" - "@codemirror/lang-rust": "npm:^6.0.1" - "@codemirror/lang-sql": "npm:^6.8.0" - "@codemirror/lang-wast": "npm:^6.0.2" - "@codemirror/lang-xml": "npm:^6.1.0" - "@codemirror/language": "npm:^6.10.6" - "@codemirror/legacy-modes": "npm:^6.4.2" - "@codemirror/search": "npm:^6.5.8" - "@codemirror/state": "npm:^6.5.0" - "@codemirror/view": "npm:^6.35.3" - "@jupyter/ydoc": "npm:^3.0.0" - "@jupyterlab/codeeditor": "npm:^4.4.0-beta.0" - "@jupyterlab/coreutils": "npm:^6.4.0-beta.0" - "@jupyterlab/documentsearch": "npm:^4.4.0-beta.0" - "@jupyterlab/nbformat": "npm:^4.4.0-beta.0" - "@jupyterlab/translation": "npm:^4.4.0-beta.0" - "@lezer/common": "npm:^1.2.1" - "@lezer/generator": "npm:^1.7.0" - "@lezer/highlight": "npm:^1.2.0" - "@lezer/markdown": "npm:^1.3.0" - "@lumino/coreutils": "npm:^2.2.0" - "@lumino/disposable": "npm:^2.1.3" - "@lumino/signaling": "npm:^2.1.3" - yjs: "npm:^13.5.40" - checksum: 8/131d23f4728e57253ac500348b9aba8a94b2ded617109ad6616d316f4f4d3aa91591e3c5ddc0b29c630de73a0f5ba8b0bf74c7ba9e3caaf88c928e16e25b2481 - languageName: node - linkType: hard - -"@jupyterlab/console@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/console@npm:4.4.0-beta.0" - dependencies: - "@jupyter/ydoc": "npm:^3.0.0" - "@jupyterlab/apputils": "npm:^4.5.0-beta.0" - "@jupyterlab/cells": "npm:^4.4.0-beta.0" - "@jupyterlab/codeeditor": "npm:^4.4.0-beta.0" - "@jupyterlab/coreutils": "npm:^6.4.0-beta.0" - "@jupyterlab/nbformat": "npm:^4.4.0-beta.0" - "@jupyterlab/observables": "npm:^5.4.0-beta.0" - "@jupyterlab/rendermime": "npm:^4.4.0-beta.0" - "@jupyterlab/services": "npm:^7.4.0-beta.0" - "@jupyterlab/translation": "npm:^4.4.0-beta.0" - "@jupyterlab/ui-components": "npm:^4.4.0-beta.0" - "@lumino/coreutils": "npm:^2.2.0" - "@lumino/disposable": "npm:^2.1.3" - "@lumino/dragdrop": "npm:^2.1.5" - "@lumino/messaging": "npm:^2.0.2" - "@lumino/signaling": "npm:^2.1.3" - "@lumino/widgets": "npm:^2.6.0" - checksum: 8/17f44936bd6fc60caee09acce298cb7bf4c7df3b383727c4697f99814bf97dd6602347c21ae5ca1bf5f6d7c4167b66727b022cedc82e7be9af41f91ea9179668 - languageName: node - linkType: hard - -"@jupyterlab/coreutils@npm:^6.4.0-beta.0": - version: 6.4.0-beta.0 - resolution: "@jupyterlab/coreutils@npm:6.4.0-beta.0" - dependencies: - "@lumino/coreutils": "npm:^2.2.0" - "@lumino/disposable": "npm:^2.1.3" - "@lumino/signaling": "npm:^2.1.3" - minimist: "npm:~1.2.0" - path-browserify: "npm:^1.0.0" - url-parse: "npm:~1.5.4" - checksum: 8/6d6f0dee1657fee6739d3e603fea73e4bcdf9cafca50a15e7a3569e63f530c1c02fd692aacdefa074c6965593741e452f6580cf5e9156b04d5b322a2c0519d85 - languageName: node - linkType: hard - -"@jupyterlab/debugger@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/debugger@npm:4.4.0-beta.0" - dependencies: - "@codemirror/state": "npm:^6.5.0" - "@codemirror/view": "npm:^6.35.3" - "@jupyter/react-components": "npm:^0.16.6" - "@jupyter/ydoc": "npm:^3.0.0" - "@jupyterlab/application": "npm:^4.4.0-beta.0" - "@jupyterlab/apputils": "npm:^4.5.0-beta.0" - "@jupyterlab/cells": "npm:^4.4.0-beta.0" - "@jupyterlab/codeeditor": "npm:^4.4.0-beta.0" - "@jupyterlab/codemirror": "npm:^4.4.0-beta.0" - "@jupyterlab/console": "npm:^4.4.0-beta.0" - "@jupyterlab/coreutils": "npm:^6.4.0-beta.0" - "@jupyterlab/docregistry": "npm:^4.4.0-beta.0" - "@jupyterlab/fileeditor": "npm:^4.4.0-beta.0" - "@jupyterlab/notebook": "npm:^4.4.0-beta.0" - "@jupyterlab/observables": "npm:^5.4.0-beta.0" - "@jupyterlab/rendermime": "npm:^4.4.0-beta.0" - "@jupyterlab/services": "npm:^7.4.0-beta.0" - "@jupyterlab/translation": "npm:^4.4.0-beta.0" - "@jupyterlab/ui-components": "npm:^4.4.0-beta.0" - "@lumino/algorithm": "npm:^2.0.2" - "@lumino/commands": "npm:^2.3.1" - "@lumino/coreutils": "npm:^2.2.0" - "@lumino/datagrid": "npm:^2.5.0" - "@lumino/disposable": "npm:^2.1.3" - "@lumino/messaging": "npm:^2.0.2" - "@lumino/polling": "npm:^2.1.3" - "@lumino/signaling": "npm:^2.1.3" - "@lumino/widgets": "npm:^2.6.0" - "@vscode/debugprotocol": "npm:^1.51.0" - react: "npm:^18.2.0" - checksum: 8/b8b06c4cb860cc9ff9da421d754dbac0cfb5316e7035d5b39a5588916064e36713a812d0716404b62160d32de5b5df158a8d40319e3fc8467ba1eeac08f539b0 - languageName: node - linkType: hard - -"@jupyterlab/docmanager@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/docmanager@npm:4.4.0-beta.0" - dependencies: - "@jupyterlab/apputils": "npm:^4.5.0-beta.0" - "@jupyterlab/coreutils": "npm:^6.4.0-beta.0" - "@jupyterlab/docregistry": "npm:^4.4.0-beta.0" - "@jupyterlab/services": "npm:^7.4.0-beta.0" - "@jupyterlab/statedb": "npm:^4.4.0-beta.0" - "@jupyterlab/statusbar": "npm:^4.4.0-beta.0" - "@jupyterlab/translation": "npm:^4.4.0-beta.0" - "@jupyterlab/ui-components": "npm:^4.4.0-beta.0" - "@lumino/algorithm": "npm:^2.0.2" - "@lumino/coreutils": "npm:^2.2.0" - "@lumino/disposable": "npm:^2.1.3" - "@lumino/messaging": "npm:^2.0.2" - "@lumino/polling": "npm:^2.1.3" - "@lumino/properties": "npm:^2.0.2" - "@lumino/signaling": "npm:^2.1.3" - "@lumino/widgets": "npm:^2.6.0" - react: "npm:^18.2.0" - checksum: 8/124897b5cc5440a372e37b44115ae850da7da0dc07fbda0b511fb32b4947452bbb0fe2494ca155e4d081b00f71659a001646968b4e4ea7c88955deddb290ae14 - languageName: node - linkType: hard - -"@jupyterlab/docregistry@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/docregistry@npm:4.4.0-beta.0" - dependencies: - "@jupyter/ydoc": "npm:^3.0.0" - "@jupyterlab/apputils": "npm:^4.5.0-beta.0" - "@jupyterlab/codeeditor": "npm:^4.4.0-beta.0" - "@jupyterlab/coreutils": "npm:^6.4.0-beta.0" - "@jupyterlab/observables": "npm:^5.4.0-beta.0" - "@jupyterlab/rendermime": "npm:^4.4.0-beta.0" - "@jupyterlab/rendermime-interfaces": "npm:^3.12.0-beta.0" - "@jupyterlab/services": "npm:^7.4.0-beta.0" - "@jupyterlab/translation": "npm:^4.4.0-beta.0" - "@jupyterlab/ui-components": "npm:^4.4.0-beta.0" - "@lumino/algorithm": "npm:^2.0.2" - "@lumino/coreutils": "npm:^2.2.0" - "@lumino/disposable": "npm:^2.1.3" - "@lumino/messaging": "npm:^2.0.2" - "@lumino/properties": "npm:^2.0.2" - "@lumino/signaling": "npm:^2.1.3" - "@lumino/widgets": "npm:^2.6.0" - react: "npm:^18.2.0" - checksum: 8/38b78ba0e4dfa91e365d1449fbada165fe6f80688006e7568cc015ec751ebe728079f29757055df9ff986fd811eed9023f15841710ef77cc9cc33803b9042e72 - languageName: node - linkType: hard - -"@jupyterlab/documentsearch@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/documentsearch@npm:4.4.0-beta.0" - dependencies: - "@jupyterlab/apputils": "npm:^4.5.0-beta.0" - "@jupyterlab/translation": "npm:^4.4.0-beta.0" - "@jupyterlab/ui-components": "npm:^4.4.0-beta.0" - "@lumino/commands": "npm:^2.3.1" - "@lumino/coreutils": "npm:^2.2.0" - "@lumino/disposable": "npm:^2.1.3" - "@lumino/messaging": "npm:^2.0.2" - "@lumino/polling": "npm:^2.1.3" - "@lumino/signaling": "npm:^2.1.3" - "@lumino/widgets": "npm:^2.6.0" - react: "npm:^18.2.0" - checksum: 8/0b26b053bf1874cce29d07af049e97ae0f35a6f7ad3a65ddce71aaca22a4d143637c3051ef341eb39e77b10ec57f1237aa6ff036ccc26990af925f11b4bca4aa - languageName: node - linkType: hard - -"@jupyterlab/filebrowser@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/filebrowser@npm:4.4.0-beta.0" - dependencies: - "@jupyterlab/apputils": "npm:^4.5.0-beta.0" - "@jupyterlab/coreutils": "npm:^6.4.0-beta.0" - "@jupyterlab/docmanager": "npm:^4.4.0-beta.0" - "@jupyterlab/docregistry": "npm:^4.4.0-beta.0" - "@jupyterlab/services": "npm:^7.4.0-beta.0" - "@jupyterlab/statedb": "npm:^4.4.0-beta.0" - "@jupyterlab/statusbar": "npm:^4.4.0-beta.0" - "@jupyterlab/translation": "npm:^4.4.0-beta.0" - "@jupyterlab/ui-components": "npm:^4.4.0-beta.0" - "@lumino/algorithm": "npm:^2.0.2" - "@lumino/coreutils": "npm:^2.2.0" - "@lumino/disposable": "npm:^2.1.3" - "@lumino/domutils": "npm:^2.0.2" - "@lumino/dragdrop": "npm:^2.1.5" - "@lumino/messaging": "npm:^2.0.2" - "@lumino/polling": "npm:^2.1.3" - "@lumino/signaling": "npm:^2.1.3" - "@lumino/virtualdom": "npm:^2.0.2" - "@lumino/widgets": "npm:^2.6.0" - react: "npm:^18.2.0" - checksum: 8/514cf03d5474cecc2f720bd74cb96febca5ac99d6020188d3d678480165c9e9e2a9b55067d38e496e13defa0677157c55c4b77f47d142b6717872a96133eba65 - languageName: node - linkType: hard - -"@jupyterlab/fileeditor@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/fileeditor@npm:4.4.0-beta.0" - dependencies: - "@jupyter/ydoc": "npm:^3.0.0" - "@jupyterlab/apputils": "npm:^4.5.0-beta.0" - "@jupyterlab/codeeditor": "npm:^4.4.0-beta.0" - "@jupyterlab/codemirror": "npm:^4.4.0-beta.0" - "@jupyterlab/coreutils": "npm:^6.4.0-beta.0" - "@jupyterlab/docregistry": "npm:^4.4.0-beta.0" - "@jupyterlab/documentsearch": "npm:^4.4.0-beta.0" - "@jupyterlab/lsp": "npm:^4.4.0-beta.0" - "@jupyterlab/statusbar": "npm:^4.4.0-beta.0" - "@jupyterlab/toc": "npm:^6.4.0-beta.0" - "@jupyterlab/translation": "npm:^4.4.0-beta.0" - "@jupyterlab/ui-components": "npm:^4.4.0-beta.0" - "@lumino/commands": "npm:^2.3.1" - "@lumino/coreutils": "npm:^2.2.0" - "@lumino/messaging": "npm:^2.0.2" - "@lumino/widgets": "npm:^2.6.0" - react: "npm:^18.2.0" - regexp-match-indices: "npm:^1.0.2" - checksum: 8/382f50d85759a11754dcc8ce470adc6928077a8dfb5e625503f1c59967f02b3fba4f38d261eebdb1ce2156f8ce5615883668a2d417d0a266296df4f9b02ff0ce - languageName: node - linkType: hard - -"@jupyterlab/galata@npm:~5.4.0-beta.0": - version: 5.4.0-beta.0 - resolution: "@jupyterlab/galata@npm:5.4.0-beta.0" - dependencies: - "@jupyterlab/application": "npm:^4.4.0-beta.0" - "@jupyterlab/apputils": "npm:^4.5.0-beta.0" - "@jupyterlab/coreutils": "npm:^6.4.0-beta.0" - "@jupyterlab/debugger": "npm:^4.4.0-beta.0" - "@jupyterlab/docmanager": "npm:^4.4.0-beta.0" - "@jupyterlab/nbformat": "npm:^4.4.0-beta.0" - "@jupyterlab/notebook": "npm:^4.4.0-beta.0" - "@jupyterlab/services": "npm:^7.4.0-beta.0" - "@jupyterlab/settingregistry": "npm:^4.4.0-beta.0" - "@lumino/coreutils": "npm:^2.2.0" - "@playwright/test": "npm:^1.50.1" - "@stdlib/stats": "npm:~0.0.13" - fs-extra: "npm:^10.1.0" - json5: "npm:^2.2.3" - path: "npm:~0.12.7" - systeminformation: "npm:^5.8.6" - vega: "npm:^5.20.0" - vega-lite: "npm:^5.6.1" - vega-statistics: "npm:^1.7.9" - checksum: 8/b0f5b0f01a6d8149123ee3c0609feac8d508de8ee40647322665288c312f5ed93e7bd4d3421723ad38a666d7ee2396594bc007f836f4bd03a20e57537e75b78e + checksum: e9419a461f33d2685db346b19806865fe37f61b2ca33eb39c4ea905d765794a928442adf1bbffda67b665bdeba3be9a082189a57eaab5367aeaf6b57caeda822 + languageName: node + linkType: hard + +"@jupyterlab/application@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/application@npm:4.4.0-beta.1" + dependencies: + "@fortawesome/fontawesome-free": ^5.12.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/docregistry": ^4.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/statedb": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@lumino/algorithm": ^2.0.2 + "@lumino/application": ^2.4.2 + "@lumino/commands": ^2.3.1 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/messaging": ^2.0.2 + "@lumino/polling": ^2.1.3 + "@lumino/properties": ^2.0.2 + "@lumino/signaling": ^2.1.3 + "@lumino/widgets": ^2.6.0 + checksum: b077fec7cdde75c216d41b7dfb0f7054992d46292b18d195f9dc40b5ed7f3e59ea66e427e980c4f6c5a504864cb599680f8deef2f747d2bac89a4d8f5181e739 + languageName: node + linkType: hard + +"@jupyterlab/apputils@npm:^4.5.0-beta.1": + version: 4.5.0-beta.1 + resolution: "@jupyterlab/apputils@npm:4.5.0-beta.1" + dependencies: + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/observables": ^5.4.0-beta.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/statedb": ^4.4.0-beta.1 + "@jupyterlab/statusbar": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@lumino/algorithm": ^2.0.2 + "@lumino/commands": ^2.3.1 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/domutils": ^2.0.2 + "@lumino/messaging": ^2.0.2 + "@lumino/signaling": ^2.1.3 + "@lumino/virtualdom": ^2.0.2 + "@lumino/widgets": ^2.6.0 + "@types/react": ^18.0.26 + react: ^18.2.0 + sanitize-html: ~2.12.1 + checksum: c6847491841f92f890d398c2c7756a18c39051795049172b997a8ef85ae829948b03d288f537880a756b89fcb4fc6ff6fb805b6ed1d835ac3cab1fe348431afc + languageName: node + linkType: hard + +"@jupyterlab/attachments@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/attachments@npm:4.4.0-beta.1" + dependencies: + "@jupyterlab/nbformat": ^4.4.0-beta.1 + "@jupyterlab/observables": ^5.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 + "@lumino/disposable": ^2.1.3 + "@lumino/signaling": ^2.1.3 + checksum: 0098ff81ed51f562001fb4c0df9559c16ec6974dc2e7d1aadbf3fe6289d441427c443ba33957e88fbc57ff48223e0bf9fe291f59de5139aca29d08fa2fcd81bb + languageName: node + linkType: hard + +"@jupyterlab/cells@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/cells@npm:4.4.0-beta.1" + dependencies: + "@codemirror/state": ^6.5.0 + "@codemirror/view": ^6.35.3 + "@jupyter/ydoc": ^3.0.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/attachments": ^4.4.0-beta.1 + "@jupyterlab/codeeditor": ^4.4.0-beta.1 + "@jupyterlab/codemirror": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/documentsearch": ^4.4.0-beta.1 + "@jupyterlab/filebrowser": ^4.4.0-beta.1 + "@jupyterlab/nbformat": ^4.4.0-beta.1 + "@jupyterlab/observables": ^5.4.0-beta.1 + "@jupyterlab/outputarea": ^4.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/toc": ^6.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@lumino/algorithm": ^2.0.2 + "@lumino/coreutils": ^2.2.0 + "@lumino/domutils": ^2.0.2 + "@lumino/dragdrop": ^2.1.5 + "@lumino/messaging": ^2.0.2 + "@lumino/polling": ^2.1.3 + "@lumino/signaling": ^2.1.3 + "@lumino/virtualdom": ^2.0.2 + "@lumino/widgets": ^2.6.0 + react: ^18.2.0 + checksum: 56dce1335e87567e771bc7612c614ee4e8f549e820eef2e5adc7c01fa7d312a0835d3d01b84f408b05674f04d31872edfc9ff160958437932d832dff066694ae + languageName: node + linkType: hard + +"@jupyterlab/codeeditor@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/codeeditor@npm:4.4.0-beta.1" + dependencies: + "@codemirror/state": ^6.5.0 + "@jupyter/ydoc": ^3.0.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/nbformat": ^4.4.0-beta.1 + "@jupyterlab/observables": ^5.4.0-beta.1 + "@jupyterlab/statusbar": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/dragdrop": ^2.1.5 + "@lumino/messaging": ^2.0.2 + "@lumino/signaling": ^2.1.3 + "@lumino/widgets": ^2.6.0 + react: ^18.2.0 + checksum: 4b055fe59a641252662dc3da5f8cac26091125f813a061284bb74131350abf7333395e6750cb79da71692d2d35a1deae7679c0605a050bc766f49fd8405c0c2a + languageName: node + linkType: hard + +"@jupyterlab/codemirror@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/codemirror@npm:4.4.0-beta.1" + dependencies: + "@codemirror/autocomplete": ^6.18.3 + "@codemirror/commands": ^6.7.1 + "@codemirror/lang-cpp": ^6.0.2 + "@codemirror/lang-css": ^6.3.1 + "@codemirror/lang-html": ^6.4.9 + "@codemirror/lang-java": ^6.0.1 + "@codemirror/lang-javascript": ^6.2.2 + "@codemirror/lang-json": ^6.0.1 + "@codemirror/lang-markdown": ^6.3.1 + "@codemirror/lang-php": ^6.0.1 + "@codemirror/lang-python": ^6.1.7 + "@codemirror/lang-rust": ^6.0.1 + "@codemirror/lang-sql": ^6.8.0 + "@codemirror/lang-wast": ^6.0.2 + "@codemirror/lang-xml": ^6.1.0 + "@codemirror/language": ^6.10.6 + "@codemirror/legacy-modes": ^6.4.2 + "@codemirror/search": ^6.5.8 + "@codemirror/state": ^6.5.0 + "@codemirror/view": ^6.35.3 + "@jupyter/ydoc": ^3.0.0 + "@jupyterlab/codeeditor": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/documentsearch": ^4.4.0-beta.1 + "@jupyterlab/nbformat": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@lezer/common": ^1.2.1 + "@lezer/generator": ^1.7.0 + "@lezer/highlight": ^1.2.0 + "@lezer/markdown": ^1.3.0 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/signaling": ^2.1.3 + yjs: ^13.5.40 + checksum: ba399e75f7d953190481cb7b9f6138b4ba78f4c7ee1a0dfa054d22d4657ba6c8ce255c415e010dd00a1e9a8bb867b57b071ca222f7ea6de62ed02218e85a2c89 + languageName: node + linkType: hard + +"@jupyterlab/console@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/console@npm:4.4.0-beta.1" + dependencies: + "@jupyter/ydoc": ^3.0.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/cells": ^4.4.0-beta.1 + "@jupyterlab/codeeditor": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/nbformat": ^4.4.0-beta.1 + "@jupyterlab/observables": ^5.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/dragdrop": ^2.1.5 + "@lumino/messaging": ^2.0.2 + "@lumino/signaling": ^2.1.3 + "@lumino/widgets": ^2.6.0 + checksum: 4f224532551491690cc990a0e3a126fdbbb6714857d2afbf27c9111232fe3829b75a8c8e0231942b843a2216f08757e11d486010fc9f36ff4327017948afd05c + languageName: node + linkType: hard + +"@jupyterlab/coreutils@npm:^6.4.0-beta.1": + version: 6.4.0-beta.1 + resolution: "@jupyterlab/coreutils@npm:6.4.0-beta.1" + dependencies: + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/signaling": ^2.1.3 + minimist: ~1.2.0 + path-browserify: ^1.0.0 + url-parse: ~1.5.4 + checksum: 7314cea4dedd89b26bf297c3735135315814e66d7d877c301c39f7c4cab7622e7806ae81f053e718adc2b5c21b00fb67071c6af52062c371535b734ffa6e4bb0 + languageName: node + linkType: hard + +"@jupyterlab/debugger@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/debugger@npm:4.4.0-beta.1" + dependencies: + "@codemirror/state": ^6.5.0 + "@codemirror/view": ^6.35.3 + "@jupyter/react-components": ^0.16.6 + "@jupyter/ydoc": ^3.0.0 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/cells": ^4.4.0-beta.1 + "@jupyterlab/codeeditor": ^4.4.0-beta.1 + "@jupyterlab/codemirror": ^4.4.0-beta.1 + "@jupyterlab/console": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/docregistry": ^4.4.0-beta.1 + "@jupyterlab/fileeditor": ^4.4.0-beta.1 + "@jupyterlab/notebook": ^4.4.0-beta.1 + "@jupyterlab/observables": ^5.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@lumino/algorithm": ^2.0.2 + "@lumino/commands": ^2.3.1 + "@lumino/coreutils": ^2.2.0 + "@lumino/datagrid": ^2.5.0 + "@lumino/disposable": ^2.1.3 + "@lumino/messaging": ^2.0.2 + "@lumino/polling": ^2.1.3 + "@lumino/signaling": ^2.1.3 + "@lumino/widgets": ^2.6.0 + "@vscode/debugprotocol": ^1.51.0 + react: ^18.2.0 + checksum: d3938013248d559e77da67229ec3a676515445de9a5af85d451d0d6d128ff4d3456e9a97a13f63e850c993996aab1371557bd209ecbd6b0eba181ecdf53354a8 + languageName: node + linkType: hard + +"@jupyterlab/docmanager@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/docmanager@npm:4.4.0-beta.1" + dependencies: + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/docregistry": ^4.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/statedb": ^4.4.0-beta.1 + "@jupyterlab/statusbar": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@lumino/algorithm": ^2.0.2 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/messaging": ^2.0.2 + "@lumino/polling": ^2.1.3 + "@lumino/properties": ^2.0.2 + "@lumino/signaling": ^2.1.3 + "@lumino/widgets": ^2.6.0 + react: ^18.2.0 + checksum: 743ec2e90ffc44b7ff2c5a0fb80da04dc36fb41788961fcab5f983b9b009e718e892651370255f1f1bbfa641d02cc6bc75cee176ad4919031bd2094d6c70ffd8 + languageName: node + linkType: hard + +"@jupyterlab/docregistry@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/docregistry@npm:4.4.0-beta.1" + dependencies: + "@jupyter/ydoc": ^3.0.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/codeeditor": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/observables": ^5.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@lumino/algorithm": ^2.0.2 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/messaging": ^2.0.2 + "@lumino/properties": ^2.0.2 + "@lumino/signaling": ^2.1.3 + "@lumino/widgets": ^2.6.0 + react: ^18.2.0 + checksum: b90b8b4f9675562bff74ae7f0a0895c7c0b06c598a9beef38dec5c720d831e5cfb75f0f65a733b02b60e4e6b56989cf1246c334170a4bfcb5c54d98e45b291db languageName: node linkType: hard -"@jupyterlab/lsp@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/lsp@npm:4.4.0-beta.0" +"@jupyterlab/documentsearch@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/documentsearch@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/apputils": "npm:^4.5.0-beta.0" - "@jupyterlab/codeeditor": "npm:^4.4.0-beta.0" - "@jupyterlab/codemirror": "npm:^4.4.0-beta.0" - "@jupyterlab/coreutils": "npm:^6.4.0-beta.0" - "@jupyterlab/docregistry": "npm:^4.4.0-beta.0" - "@jupyterlab/services": "npm:^7.4.0-beta.0" - "@jupyterlab/translation": "npm:^4.4.0-beta.0" - "@lumino/coreutils": "npm:^2.2.0" - "@lumino/disposable": "npm:^2.1.3" - "@lumino/signaling": "npm:^2.1.3" - "@lumino/widgets": "npm:^2.6.0" - lodash.mergewith: "npm:^4.6.1" - vscode-jsonrpc: "npm:^6.0.0" - vscode-languageserver-protocol: "npm:^3.17.0" - vscode-ws-jsonrpc: "npm:~1.0.2" - checksum: 8/dfda25afe04729bc3bf65c06578cd489555fb167b16e86b89ba5f12386edfe9e5a21bcf04ab9f4f305a20d101ba83b4229ef822ae1c106d0bd66ddea1c657620 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@lumino/commands": ^2.3.1 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/messaging": ^2.0.2 + "@lumino/polling": ^2.1.3 + "@lumino/signaling": ^2.1.3 + "@lumino/widgets": ^2.6.0 + react: ^18.2.0 + checksum: 908c56e5dec9d6eb1ea3b2fd016726687b509dbe83b5b17869ae534b89a68e372c84eed5138892e0be070d043ebfd9af86cda241120ddde9547aa94e404f8d35 + languageName: node + linkType: hard + +"@jupyterlab/filebrowser@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/filebrowser@npm:4.4.0-beta.1" + dependencies: + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/docmanager": ^4.4.0-beta.1 + "@jupyterlab/docregistry": ^4.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/statedb": ^4.4.0-beta.1 + "@jupyterlab/statusbar": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@lumino/algorithm": ^2.0.2 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/domutils": ^2.0.2 + "@lumino/dragdrop": ^2.1.5 + "@lumino/messaging": ^2.0.2 + "@lumino/polling": ^2.1.3 + "@lumino/signaling": ^2.1.3 + "@lumino/virtualdom": ^2.0.2 + "@lumino/widgets": ^2.6.0 + react: ^18.2.0 + checksum: 25497fce13a09f6141c932a534e73f88806e9859ef7a1673f2be02e2ff4e1da64425100d1f17bcd990b45b06ca616e3f0ebc2cd286d587a75ca0c85e5ab7770a + languageName: node + linkType: hard + +"@jupyterlab/fileeditor@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/fileeditor@npm:4.4.0-beta.1" + dependencies: + "@jupyter/ydoc": ^3.0.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/codeeditor": ^4.4.0-beta.1 + "@jupyterlab/codemirror": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/docregistry": ^4.4.0-beta.1 + "@jupyterlab/documentsearch": ^4.4.0-beta.1 + "@jupyterlab/lsp": ^4.4.0-beta.1 + "@jupyterlab/statusbar": ^4.4.0-beta.1 + "@jupyterlab/toc": ^6.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@lumino/commands": ^2.3.1 + "@lumino/coreutils": ^2.2.0 + "@lumino/messaging": ^2.0.2 + "@lumino/widgets": ^2.6.0 + react: ^18.2.0 + regexp-match-indices: ^1.0.2 + checksum: 7e389aa971614fe58491122c17eab99164b488d7829badf7e7181aacd23c5876ac703afd8a7b0cb6549dd19d936b3e491c844021d9dc67f11e7d0331ee9d0caa + languageName: node + linkType: hard + +"@jupyterlab/galata@npm:~5.4.0-beta.1": + version: 5.4.0-beta.1 + resolution: "@jupyterlab/galata@npm:5.4.0-beta.1" + dependencies: + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/debugger": ^4.4.0-beta.1 + "@jupyterlab/docmanager": ^4.4.0-beta.1 + "@jupyterlab/nbformat": ^4.4.0-beta.1 + "@jupyterlab/notebook": ^4.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@lumino/coreutils": ^2.2.0 + "@playwright/test": ^1.51.0 + "@stdlib/stats": ~0.0.13 + fs-extra: ^10.1.0 + json5: ^2.2.3 + path: ~0.12.7 + systeminformation: ^5.8.6 + vega: ^5.20.0 + vega-lite: ^5.6.1 + vega-statistics: ^1.7.9 + checksum: 6204c22fe65378da16982db9bf1ca6f1abbb14a95957d4baa85d3c88715d3ed04b1eb57cbf59932aff52516456cde0b06ea162a4bf166c03a40d4ec2722478d5 + languageName: node + linkType: hard + +"@jupyterlab/lsp@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/lsp@npm:4.4.0-beta.1" + dependencies: + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/codeeditor": ^4.4.0-beta.1 + "@jupyterlab/codemirror": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/docregistry": ^4.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/signaling": ^2.1.3 + "@lumino/widgets": ^2.6.0 + lodash.mergewith: ^4.6.1 + vscode-jsonrpc: ^6.0.0 + vscode-languageserver-protocol: ^3.17.0 + vscode-ws-jsonrpc: ~1.0.2 + checksum: b05f41e1ff95622470e63c759f9d3057e9c5588ae69f521f1b8df064df7502d67f82a2bb2138c584efceedf425cdc41ff9523f88b6025e6e43bd14b836c2c61f languageName: node linkType: hard @@ -749,260 +749,260 @@ __metadata: resolution: "@jupyterlab/nbformat@npm:4.2.0" dependencies: "@lumino/coreutils": "npm:^2.1.2" - checksum: 8/adecadcb63de48f09aeb54eebfed8b77ab322c478fd903001e09780a01e7cf68f93716a2598631d4426d8ad9d3dc6349e8892db12575f74c8daea33f63b9c111 - languageName: node - linkType: hard - -"@jupyterlab/nbformat@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/nbformat@npm:4.4.0-beta.0" - dependencies: - "@lumino/coreutils": "npm:^2.2.0" - checksum: 8/40d4d6dfc8df16676ba795d7bf041790920e5007f679c6bd8a2ffd6efcc313ca8d3070018821c9283d87ec93d601b48594e7ac81c22f459e0eab1968a919d484 - languageName: node - linkType: hard - -"@jupyterlab/notebook@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/notebook@npm:4.4.0-beta.0" - dependencies: - "@jupyter/ydoc": "npm:^3.0.0" - "@jupyterlab/apputils": "npm:^4.5.0-beta.0" - "@jupyterlab/cells": "npm:^4.4.0-beta.0" - "@jupyterlab/codeeditor": "npm:^4.4.0-beta.0" - "@jupyterlab/codemirror": "npm:^4.4.0-beta.0" - "@jupyterlab/coreutils": "npm:^6.4.0-beta.0" - "@jupyterlab/docregistry": "npm:^4.4.0-beta.0" - "@jupyterlab/documentsearch": "npm:^4.4.0-beta.0" - "@jupyterlab/lsp": "npm:^4.4.0-beta.0" - "@jupyterlab/nbformat": "npm:^4.4.0-beta.0" - "@jupyterlab/observables": "npm:^5.4.0-beta.0" - "@jupyterlab/rendermime": "npm:^4.4.0-beta.0" - "@jupyterlab/services": "npm:^7.4.0-beta.0" - "@jupyterlab/settingregistry": "npm:^4.4.0-beta.0" - "@jupyterlab/statusbar": "npm:^4.4.0-beta.0" - "@jupyterlab/toc": "npm:^6.4.0-beta.0" - "@jupyterlab/translation": "npm:^4.4.0-beta.0" - "@jupyterlab/ui-components": "npm:^4.4.0-beta.0" - "@lumino/algorithm": "npm:^2.0.2" - "@lumino/coreutils": "npm:^2.2.0" - "@lumino/disposable": "npm:^2.1.3" - "@lumino/domutils": "npm:^2.0.2" - "@lumino/dragdrop": "npm:^2.1.5" - "@lumino/messaging": "npm:^2.0.2" - "@lumino/polling": "npm:^2.1.3" - "@lumino/properties": "npm:^2.0.2" - "@lumino/signaling": "npm:^2.1.3" - "@lumino/virtualdom": "npm:^2.0.2" - "@lumino/widgets": "npm:^2.6.0" - react: "npm:^18.2.0" - checksum: 8/a1fea9cc864a1f79dc8dd2113ca03e7f8fd2424bb49d396a6934cf9a948c3f4651afdcbe374df9b27dd593e4c0f07160c150fa36dc96e05af8a6d854ef937841 - languageName: node - linkType: hard - -"@jupyterlab/observables@npm:^5.4.0-beta.0": - version: 5.4.0-beta.0 - resolution: "@jupyterlab/observables@npm:5.4.0-beta.0" - dependencies: - "@lumino/algorithm": "npm:^2.0.2" - "@lumino/coreutils": "npm:^2.2.0" - "@lumino/disposable": "npm:^2.1.3" - "@lumino/messaging": "npm:^2.0.2" - "@lumino/signaling": "npm:^2.1.3" - checksum: 8/8b6ae87e06c7d65a081e04dd1861f78d5c1a051718152646890528f3a215d3db982f9529f3b22638971d2f7f841c408333ad12138a51580d23d388cc05d13217 - languageName: node - linkType: hard - -"@jupyterlab/outputarea@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/outputarea@npm:4.4.0-beta.0" - dependencies: - "@jupyterlab/apputils": "npm:^4.5.0-beta.0" - "@jupyterlab/nbformat": "npm:^4.4.0-beta.0" - "@jupyterlab/observables": "npm:^5.4.0-beta.0" - "@jupyterlab/rendermime": "npm:^4.4.0-beta.0" - "@jupyterlab/rendermime-interfaces": "npm:^3.12.0-beta.0" - "@jupyterlab/services": "npm:^7.4.0-beta.0" - "@jupyterlab/translation": "npm:^4.4.0-beta.0" - "@lumino/algorithm": "npm:^2.0.2" - "@lumino/coreutils": "npm:^2.2.0" - "@lumino/disposable": "npm:^2.1.3" - "@lumino/messaging": "npm:^2.0.2" - "@lumino/properties": "npm:^2.0.2" - "@lumino/signaling": "npm:^2.1.3" - "@lumino/widgets": "npm:^2.6.0" - checksum: 8/e19ab7e9e319260c1307beebfb5935829e794024c3097b1c0b340a67bec9135c0322ba5a2771cb0ce34ead5cbfb3089b8490fe3914d008673edf4dce19eb9fbf - languageName: node - linkType: hard - -"@jupyterlab/rendermime-interfaces@npm:^3.12.0-beta.0": - version: 3.12.0-beta.0 - resolution: "@jupyterlab/rendermime-interfaces@npm:3.12.0-beta.0" - dependencies: - "@lumino/coreutils": "npm:^1.11.0 || ^2.2.0" - "@lumino/widgets": "npm:^1.37.2 || ^2.6.0" - checksum: 8/60972f9d8896b35d5bce835ec02a02ba5dd3d9621a6af3e9cb64b4f20eed040e4be6d386e92ee5f65928b569b2bcc5d9319ad4436a436e15c49b74c05229bbd0 - languageName: node - linkType: hard - -"@jupyterlab/rendermime@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/rendermime@npm:4.4.0-beta.0" - dependencies: - "@jupyterlab/apputils": "npm:^4.5.0-beta.0" - "@jupyterlab/coreutils": "npm:^6.4.0-beta.0" - "@jupyterlab/nbformat": "npm:^4.4.0-beta.0" - "@jupyterlab/observables": "npm:^5.4.0-beta.0" - "@jupyterlab/rendermime-interfaces": "npm:^3.12.0-beta.0" - "@jupyterlab/services": "npm:^7.4.0-beta.0" - "@jupyterlab/translation": "npm:^4.4.0-beta.0" - "@lumino/coreutils": "npm:^2.2.0" - "@lumino/messaging": "npm:^2.0.2" - "@lumino/signaling": "npm:^2.1.3" - "@lumino/widgets": "npm:^2.6.0" - lodash.escape: "npm:^4.0.1" - checksum: 8/e3ca331c65098733dceedbb1636830f37092f0c2bda571a922c6e925b4e389c7def0e3837c205aab8ca8d57b5c46a85841cdb84842d27b2ff09347dcc026be51 - languageName: node - linkType: hard - -"@jupyterlab/services@npm:^7.4.0-beta.0": - version: 7.4.0-beta.0 - resolution: "@jupyterlab/services@npm:7.4.0-beta.0" - dependencies: - "@jupyter/ydoc": "npm:^3.0.0" - "@jupyterlab/coreutils": "npm:^6.4.0-beta.0" - "@jupyterlab/nbformat": "npm:^4.4.0-beta.0" - "@jupyterlab/settingregistry": "npm:^4.4.0-beta.0" - "@jupyterlab/statedb": "npm:^4.4.0-beta.0" - "@lumino/coreutils": "npm:^2.2.0" - "@lumino/disposable": "npm:^2.1.3" - "@lumino/polling": "npm:^2.1.3" - "@lumino/properties": "npm:^2.0.2" - "@lumino/signaling": "npm:^2.1.3" - ws: "npm:^8.11.0" - checksum: 8/8d0207f15bca3fadf1f8eb8c528b1b2c061caa6f2cf7f6fb943d1819a7582cdde4846c6bafd2280d42fa304d3b74e421969997cdb42cb18067fa460e5d244a34 - languageName: node - linkType: hard - -"@jupyterlab/settingregistry@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/settingregistry@npm:4.4.0-beta.0" - dependencies: - "@jupyterlab/nbformat": "npm:^4.4.0-beta.0" - "@jupyterlab/statedb": "npm:^4.4.0-beta.0" - "@lumino/commands": "npm:^2.3.1" - "@lumino/coreutils": "npm:^2.2.0" - "@lumino/disposable": "npm:^2.1.3" - "@lumino/signaling": "npm:^2.1.3" - "@rjsf/utils": "npm:^5.13.4" - ajv: "npm:^8.12.0" - json5: "npm:^2.2.3" + checksum: adecadcb63de48f09aeb54eebfed8b77ab322c478fd903001e09780a01e7cf68f93716a2598631d4426d8ad9d3dc6349e8892db12575f74c8daea33f63b9c111 + languageName: node + linkType: hard + +"@jupyterlab/nbformat@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/nbformat@npm:4.4.0-beta.1" + dependencies: + "@lumino/coreutils": ^2.2.0 + checksum: 761245ab4b4895c7d4ae31f92cb593d8493ca7c14c632a01699b86028f269c330652d53374cb71793090015369e65722343188143823e7e2b48ef8f7f7781f1d + languageName: node + linkType: hard + +"@jupyterlab/notebook@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/notebook@npm:4.4.0-beta.1" + dependencies: + "@jupyter/ydoc": ^3.0.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/cells": ^4.4.0-beta.1 + "@jupyterlab/codeeditor": ^4.4.0-beta.1 + "@jupyterlab/codemirror": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/docregistry": ^4.4.0-beta.1 + "@jupyterlab/documentsearch": ^4.4.0-beta.1 + "@jupyterlab/lsp": ^4.4.0-beta.1 + "@jupyterlab/nbformat": ^4.4.0-beta.1 + "@jupyterlab/observables": ^5.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/statusbar": ^4.4.0-beta.1 + "@jupyterlab/toc": ^6.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@lumino/algorithm": ^2.0.2 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/domutils": ^2.0.2 + "@lumino/dragdrop": ^2.1.5 + "@lumino/messaging": ^2.0.2 + "@lumino/polling": ^2.1.3 + "@lumino/properties": ^2.0.2 + "@lumino/signaling": ^2.1.3 + "@lumino/virtualdom": ^2.0.2 + "@lumino/widgets": ^2.6.0 + react: ^18.2.0 + checksum: dda82ad30ffe3420c73785adb7a20cb1d2e71295b64fd69241caf525194f5e629fb58728313b0fe4bd653b8b304c17aadb2788637bde7ff907786d111bc0586b + languageName: node + linkType: hard + +"@jupyterlab/observables@npm:^5.4.0-beta.1": + version: 5.4.0-beta.1 + resolution: "@jupyterlab/observables@npm:5.4.0-beta.1" + dependencies: + "@lumino/algorithm": ^2.0.2 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/messaging": ^2.0.2 + "@lumino/signaling": ^2.1.3 + checksum: 8e3a229ec562cfe35d4dbb77381b54779908736ccee7fcebc58a3a50296764bae13fd7017882c45b0d00e5044631aeedde1343931e7f3d300db795238dd3fd5e + languageName: node + linkType: hard + +"@jupyterlab/outputarea@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/outputarea@npm:4.4.0-beta.1" + dependencies: + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/nbformat": ^4.4.0-beta.1 + "@jupyterlab/observables": ^5.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@lumino/algorithm": ^2.0.2 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/messaging": ^2.0.2 + "@lumino/properties": ^2.0.2 + "@lumino/signaling": ^2.1.3 + "@lumino/widgets": ^2.6.0 + checksum: cb9dd129c7a142e3876a9a7402bb75ee82be90fa4c8d462b070714fe21a2303fe945ecc27560b24b3d6f33cb6d5ee83e6dff5e19150a277db21f9c3b6b4f0ad9 + languageName: node + linkType: hard + +"@jupyterlab/rendermime-interfaces@npm:^3.12.0-beta.1": + version: 3.12.0-beta.1 + resolution: "@jupyterlab/rendermime-interfaces@npm:3.12.0-beta.1" + dependencies: + "@lumino/coreutils": ^1.11.0 || ^2.2.0 + "@lumino/widgets": ^1.37.2 || ^2.6.0 + checksum: a357e6bbda886f6c4ac0e3852f8ae7486d27217e58961444c372232b6edf54ead62b18e37d673f86ce3aa115ed5675d815dcd8e49541d21e6309e73c8ce33d80 + languageName: node + linkType: hard + +"@jupyterlab/rendermime@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/rendermime@npm:4.4.0-beta.1" + dependencies: + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/nbformat": ^4.4.0-beta.1 + "@jupyterlab/observables": ^5.4.0-beta.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@lumino/coreutils": ^2.2.0 + "@lumino/messaging": ^2.0.2 + "@lumino/signaling": ^2.1.3 + "@lumino/widgets": ^2.6.0 + lodash.escape: ^4.0.1 + checksum: f46d9b9d271ba448c548462b885a4531a0494781fcdabaedba4cfbfa1b9cbb76c37242cbfffc08b52b67de3434ca4613f3cfd736ab09d58d92463918f62a7fd0 + languageName: node + linkType: hard + +"@jupyterlab/services@npm:^7.4.0-beta.1": + version: 7.4.0-beta.1 + resolution: "@jupyterlab/services@npm:7.4.0-beta.1" + dependencies: + "@jupyter/ydoc": ^3.0.0 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/nbformat": ^4.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/statedb": ^4.4.0-beta.1 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/polling": ^2.1.3 + "@lumino/properties": ^2.0.2 + "@lumino/signaling": ^2.1.3 + ws: ^8.11.0 + checksum: c9119f3182a4c85631f8c3f0170265165fb6023eb55ee1ff1bfbaac23c283eb8a1aeaadbd87749585723b582a6edf404915f3ffa4f715b61065ed521935679a3 + languageName: node + linkType: hard + +"@jupyterlab/settingregistry@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/settingregistry@npm:4.4.0-beta.1" + dependencies: + "@jupyterlab/nbformat": ^4.4.0-beta.1 + "@jupyterlab/statedb": ^4.4.0-beta.1 + "@lumino/commands": ^2.3.1 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/signaling": ^2.1.3 + "@rjsf/utils": ^5.13.4 + ajv: ^8.12.0 + json5: ^2.2.3 peerDependencies: react: ">=16" - checksum: 8/5af734011769ad73bde2d527c0126cd9582ae0f718dc3fed4cabf6a64250ab198d36c9ce070dba557d244459b1358e65aee233350e1ac4e28876cea0d264eb36 - languageName: node - linkType: hard - -"@jupyterlab/statedb@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/statedb@npm:4.4.0-beta.0" - dependencies: - "@lumino/commands": "npm:^2.3.1" - "@lumino/coreutils": "npm:^2.2.0" - "@lumino/disposable": "npm:^2.1.3" - "@lumino/properties": "npm:^2.0.2" - "@lumino/signaling": "npm:^2.1.3" - checksum: 8/f6ba231431ac345932d283f6037a4a5a0b0d8fb6e0866694bcf8f26fee4f28f44056159725fb06b5c936b8dbef5a611ea1c07c08eb546f75af6c537893e516c4 - languageName: node - linkType: hard - -"@jupyterlab/statusbar@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/statusbar@npm:4.4.0-beta.0" - dependencies: - "@jupyterlab/ui-components": "npm:^4.4.0-beta.0" - "@lumino/algorithm": "npm:^2.0.2" - "@lumino/coreutils": "npm:^2.2.0" - "@lumino/disposable": "npm:^2.1.3" - "@lumino/messaging": "npm:^2.0.2" - "@lumino/signaling": "npm:^2.1.3" - "@lumino/widgets": "npm:^2.6.0" - react: "npm:^18.2.0" - checksum: 8/21a43e71012fed3ce34775b7f21a50ef7643becc56fe5535d4090fd1dc7112dfbb3c13b11f53b04ac8037296d836d02148c65c92d3746aa4a0c0bed7394e46dd + checksum: 37630b667768dc0f5ceb01a149d4f1c7bdceca85e7d83e5e5f5fbfe75781e02e351257310a43f841c291756e46891a870715c01382c56f927a3a481bed2179d3 languageName: node linkType: hard -"@jupyterlab/toc@npm:^6.4.0-beta.0": - version: 6.4.0-beta.0 - resolution: "@jupyterlab/toc@npm:6.4.0-beta.0" +"@jupyterlab/statedb@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/statedb@npm:4.4.0-beta.1" dependencies: - "@jupyter/react-components": "npm:^0.16.6" - "@jupyterlab/apputils": "npm:^4.5.0-beta.0" - "@jupyterlab/coreutils": "npm:^6.4.0-beta.0" - "@jupyterlab/docregistry": "npm:^4.4.0-beta.0" - "@jupyterlab/observables": "npm:^5.4.0-beta.0" - "@jupyterlab/rendermime": "npm:^4.4.0-beta.0" - "@jupyterlab/rendermime-interfaces": "npm:^3.12.0-beta.0" - "@jupyterlab/translation": "npm:^4.4.0-beta.0" - "@jupyterlab/ui-components": "npm:^4.4.0-beta.0" - "@lumino/coreutils": "npm:^2.2.0" - "@lumino/disposable": "npm:^2.1.3" - "@lumino/messaging": "npm:^2.0.2" - "@lumino/signaling": "npm:^2.1.3" - "@lumino/widgets": "npm:^2.6.0" - react: "npm:^18.2.0" - checksum: 8/96fa28c39cac9e4366a08da6195e351f91092734654a8be4a45dcad9fec8d08f6235d93f0c129ab0189f17778b61c225b1ae6bb6741779d3fb690b56bed02094 + "@lumino/commands": ^2.3.1 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/properties": ^2.0.2 + "@lumino/signaling": ^2.1.3 + checksum: 57f67cbc2997b607bd29c0cb96a38d5215602e74caa6d776de5f34900f81b56e967843b30b298951ae10af8157c9cbf5ce9166c72dfd8295264c73846e2dbfef languageName: node linkType: hard -"@jupyterlab/translation@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/translation@npm:4.4.0-beta.0" +"@jupyterlab/statusbar@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/statusbar@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/coreutils": "npm:^6.4.0-beta.0" - "@jupyterlab/rendermime-interfaces": "npm:^3.12.0-beta.0" - "@jupyterlab/services": "npm:^7.4.0-beta.0" - "@jupyterlab/statedb": "npm:^4.4.0-beta.0" - "@lumino/coreutils": "npm:^2.2.0" - checksum: 8/0923e088f9c675ab11b9dc46ac9684dc42fdf59943080460025670bab69384f7532a6a1e7d2a51da9bb37533ad8df0aea78159ebbee756f3ed204909ae500289 - languageName: node - linkType: hard - -"@jupyterlab/ui-components@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/ui-components@npm:4.4.0-beta.0" - dependencies: - "@jupyter/react-components": "npm:^0.16.6" - "@jupyter/web-components": "npm:^0.16.6" - "@jupyterlab/coreutils": "npm:^6.4.0-beta.0" - "@jupyterlab/observables": "npm:^5.4.0-beta.0" - "@jupyterlab/rendermime-interfaces": "npm:^3.12.0-beta.0" - "@jupyterlab/translation": "npm:^4.4.0-beta.0" - "@lumino/algorithm": "npm:^2.0.2" - "@lumino/commands": "npm:^2.3.1" - "@lumino/coreutils": "npm:^2.2.0" - "@lumino/disposable": "npm:^2.1.3" - "@lumino/messaging": "npm:^2.0.2" - "@lumino/polling": "npm:^2.1.3" - "@lumino/properties": "npm:^2.0.2" - "@lumino/signaling": "npm:^2.1.3" - "@lumino/virtualdom": "npm:^2.0.2" - "@lumino/widgets": "npm:^2.6.0" - "@rjsf/core": "npm:^5.13.4" - "@rjsf/utils": "npm:^5.13.4" - react: "npm:^18.2.0" - react-dom: "npm:^18.2.0" - typestyle: "npm:^2.0.4" + "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@lumino/algorithm": ^2.0.2 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/messaging": ^2.0.2 + "@lumino/signaling": ^2.1.3 + "@lumino/widgets": ^2.6.0 + react: ^18.2.0 + checksum: f9f3c6d485cee429bdae7b57df51891a95146cd9e8ddbd5136ba35ab421e8b48d7fabf007240f51fe931cb432358e237c7eac17b84fda8bf4a58bd0b2d9d00b1 + languageName: node + linkType: hard + +"@jupyterlab/toc@npm:^6.4.0-beta.1": + version: 6.4.0-beta.1 + resolution: "@jupyterlab/toc@npm:6.4.0-beta.1" + dependencies: + "@jupyter/react-components": ^0.16.6 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/docregistry": ^4.4.0-beta.1 + "@jupyterlab/observables": ^5.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/messaging": ^2.0.2 + "@lumino/signaling": ^2.1.3 + "@lumino/widgets": ^2.6.0 + react: ^18.2.0 + checksum: 6f47b17b8de4ee7cc7543650f139795956dee1f29c5f475cefa380b1ce089fe366d5a6220a8a346674399c1dfc02b742e3cb88e613ff8c00967c343f2dbbe062 + languageName: node + linkType: hard + +"@jupyterlab/translation@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/translation@npm:4.4.0-beta.1" + dependencies: + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/statedb": ^4.4.0-beta.1 + "@lumino/coreutils": ^2.2.0 + checksum: e35b5fde5c154eb136b1de8263b0de4b5b6eb5b28b64af19d399f048aca4d7cc6f4e2f1032f3b402f150da814c12d2750a4c8514c09f7f3c99f3b2b45670a8d4 + languageName: node + linkType: hard + +"@jupyterlab/ui-components@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/ui-components@npm:4.4.0-beta.1" + dependencies: + "@jupyter/react-components": ^0.16.6 + "@jupyter/web-components": ^0.16.6 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/observables": ^5.4.0-beta.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@lumino/algorithm": ^2.0.2 + "@lumino/commands": ^2.3.1 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/messaging": ^2.0.2 + "@lumino/polling": ^2.1.3 + "@lumino/properties": ^2.0.2 + "@lumino/signaling": ^2.1.3 + "@lumino/virtualdom": ^2.0.2 + "@lumino/widgets": ^2.6.0 + "@rjsf/core": ^5.13.4 + "@rjsf/utils": ^5.13.4 + react: ^18.2.0 + react-dom: ^18.2.0 + typestyle: ^2.0.4 peerDependencies: react: ^18.2.0 - checksum: 8/3b89ea4edf36fc79ec0495f4b57cc112c1ca6ae917e8a4c0145fc8b42b35ae2394301d067125ebdbd54046e73a93f5d2e806b97c322d15c78fa6139b4f5be9b9 + checksum: d30bab6b13e76ec1bf6715cc07531f6e59c3c92bf8d3a4344e27a6ddb22eeb3aa6b99b8cd1084532ccdde9b9154aecd4851a8957d175dbd8fc768f9e054af5b5 languageName: node linkType: hard "@lezer/common@npm:^1.0.0, @lezer/common@npm:^1.0.2, @lezer/common@npm:^1.1.0, @lezer/common@npm:^1.2.0, @lezer/common@npm:^1.2.1": version: 1.2.1 resolution: "@lezer/common@npm:1.2.1" - checksum: 8/0bd092e293a509ce334f4aaf9a4d4a25528f743cd9d7e7948c697e34ac703b805b288b62ad01563488fb206fc34ff05084f7fc5d864be775924b3d0d53ea5dd2 + checksum: 0bd092e293a509ce334f4aaf9a4d4a25528f743cd9d7e7948c697e34ac703b805b288b62ad01563488fb206fc34ff05084f7fc5d864be775924b3d0d53ea5dd2 languageName: node linkType: hard @@ -1012,7 +1012,7 @@ __metadata: dependencies: "@lezer/highlight": "npm:^1.0.0" "@lezer/lr": "npm:^1.0.0" - checksum: 8/9b25c881fc9b64fd2b019a077a85b0ba7cfda0bbdd92dbb0ff43300c9ba1ec4360128fe912bfe0f06a1c1bb5a564c5ace375c8aad254d07a717768a8f268695d + checksum: 9b25c881fc9b64fd2b019a077a85b0ba7cfda0bbdd92dbb0ff43300c9ba1ec4360128fe912bfe0f06a1c1bb5a564c5ace375c8aad254d07a717768a8f268695d languageName: node linkType: hard @@ -1023,7 +1023,7 @@ __metadata: "@lezer/common": "npm:^1.2.0" "@lezer/highlight": "npm:^1.0.0" "@lezer/lr": "npm:^1.0.0" - checksum: 8/25c63475061a3c9f87961a7f85c5f547f14fb7e81b0864675d2206999a874a0559d676145c74c6ccde39519dbc8aa33e216265f5366d08060507b6c9e875fe0f + checksum: 25c63475061a3c9f87961a7f85c5f547f14fb7e81b0864675d2206999a874a0559d676145c74c6ccde39519dbc8aa33e216265f5366d08060507b6c9e875fe0f languageName: node linkType: hard @@ -1035,7 +1035,7 @@ __metadata: "@lezer/lr": "npm:^1.3.0" bin: lezer-generator: src/lezer-generator.cjs - checksum: 8/69f4c6625446cb65adaa509480ec67502f27651707a8e45e99373e682d7f66f8842205669f174bcb138eade72c64ded0b54d6de6aa5af995ac1f1e805ef021fd + checksum: 69f4c6625446cb65adaa509480ec67502f27651707a8e45e99373e682d7f66f8842205669f174bcb138eade72c64ded0b54d6de6aa5af995ac1f1e805ef021fd languageName: node linkType: hard @@ -1044,7 +1044,7 @@ __metadata: resolution: "@lezer/highlight@npm:1.2.0" dependencies: "@lezer/common": "npm:^1.0.0" - checksum: 8/5b9dfe741f95db13f6124cb9556a43011cb8041ecf490be98d44a86b04d926a66e912bcd3a766f6a3d79e064410f1a2f60ab240b50b645a12c56987bf4870086 + checksum: 5b9dfe741f95db13f6124cb9556a43011cb8041ecf490be98d44a86b04d926a66e912bcd3a766f6a3d79e064410f1a2f60ab240b50b645a12c56987bf4870086 languageName: node linkType: hard @@ -1055,7 +1055,7 @@ __metadata: "@lezer/common": "npm:^1.0.0" "@lezer/highlight": "npm:^1.0.0" "@lezer/lr": "npm:^1.0.0" - checksum: 8/81dd134ac094edf7c40bae4c3b7126d336ce4c3c87756344bf604eff64d89b06fcb55f91618a4622eb0dae6d6015722f5bab58e2252d86e81fca8c3ced1a0c4d + checksum: 81dd134ac094edf7c40bae4c3b7126d336ce4c3c87756344bf604eff64d89b06fcb55f91618a4622eb0dae6d6015722f5bab58e2252d86e81fca8c3ced1a0c4d languageName: node linkType: hard @@ -1065,7 +1065,7 @@ __metadata: dependencies: "@lezer/highlight": "npm:^1.0.0" "@lezer/lr": "npm:^1.0.0" - checksum: 8/2fffea6627d130413ffad4e61040267974cca3167d98881b9e5b5e2455530de74a82c234d93603e92a4972fad314671453c49c0a76b0f4547c4617d671fd7b99 + checksum: 2fffea6627d130413ffad4e61040267974cca3167d98881b9e5b5e2455530de74a82c234d93603e92a4972fad314671453c49c0a76b0f4547c4617d671fd7b99 languageName: node linkType: hard @@ -1075,7 +1075,7 @@ __metadata: dependencies: "@lezer/highlight": "npm:^1.1.3" "@lezer/lr": "npm:^1.3.0" - checksum: 8/520dc2d84c84841ef554993c1c0dfe503487aa9be398ebcf617b51d06f99121841d4ca1cf25f3f53d00efa820ea778cc2271da425a606ac66e9f09a4c8cc6677 + checksum: 520dc2d84c84841ef554993c1c0dfe503487aa9be398ebcf617b51d06f99121841d4ca1cf25f3f53d00efa820ea778cc2271da425a606ac66e9f09a4c8cc6677 languageName: node linkType: hard @@ -1085,7 +1085,7 @@ __metadata: dependencies: "@lezer/highlight": "npm:^1.0.0" "@lezer/lr": "npm:^1.0.0" - checksum: 8/c1ca0cdf681415b58a383a669944bed66da3aa830870d32d1e471d545cff0fe43d9ac8a0d2a318a96daa99cd5a645b1d58ba8fbdd2e8d7ca4d33a62c7582cbab + checksum: c1ca0cdf681415b58a383a669944bed66da3aa830870d32d1e471d545cff0fe43d9ac8a0d2a318a96daa99cd5a645b1d58ba8fbdd2e8d7ca4d33a62c7582cbab languageName: node linkType: hard @@ -1094,7 +1094,7 @@ __metadata: resolution: "@lezer/lr@npm:1.3.4" dependencies: "@lezer/common": "npm:^1.0.0" - checksum: 8/58bc25a9ba891dc6ca713fc8768706935e65d6e54d79a8ddb40c742cc799e87eddf4f49a6d6566a649c4726a9ab79a4200d36c9351608285a9bee6cdf3b33341 + checksum: 58bc25a9ba891dc6ca713fc8768706935e65d6e54d79a8ddb40c742cc799e87eddf4f49a6d6566a649c4726a9ab79a4200d36c9351608285a9bee6cdf3b33341 languageName: node linkType: hard @@ -1104,7 +1104,7 @@ __metadata: dependencies: "@lezer/common": "npm:^1.0.0" "@lezer/highlight": "npm:^1.0.0" - checksum: 8/13eb2720e4cb84278349bad8af116f748813094f99fad02680010c3a8c5985e0358c344487990f87a31ef0d6c1a2be582301f914c0e4a6e9cfa22647b6cd6545 + checksum: 13eb2720e4cb84278349bad8af116f748813094f99fad02680010c3a8c5985e0358c344487990f87a31ef0d6c1a2be582301f914c0e4a6e9cfa22647b6cd6545 languageName: node linkType: hard @@ -1114,7 +1114,7 @@ __metadata: dependencies: "@lezer/highlight": "npm:^1.0.0" "@lezer/lr": "npm:^1.1.0" - checksum: 8/a847c255c030b4d38913ddf1d5bd7324d83be7ef8d1d244542870be03b9bf7dc71283afeb2415c40dfd188cb99f0cc44bad760b5f3b7c35c3b8e5e00253848fc + checksum: a847c255c030b4d38913ddf1d5bd7324d83be7ef8d1d244542870be03b9bf7dc71283afeb2415c40dfd188cb99f0cc44bad760b5f3b7c35c3b8e5e00253848fc languageName: node linkType: hard @@ -1124,7 +1124,7 @@ __metadata: dependencies: "@lezer/highlight": "npm:^1.0.0" "@lezer/lr": "npm:^1.0.0" - checksum: 8/cc7e712665f0b7990fd00ba798c2e377f8393d0034a85da33b370e256322d92f668f51b70aa91585ed165718bad60fba6e86203f877d537819874be2549ec31f + checksum: cc7e712665f0b7990fd00ba798c2e377f8393d0034a85da33b370e256322d92f668f51b70aa91585ed165718bad60fba6e86203f877d537819874be2549ec31f languageName: node linkType: hard @@ -1134,7 +1134,7 @@ __metadata: dependencies: "@lezer/highlight": "npm:^1.0.0" "@lezer/lr": "npm:^1.0.0" - checksum: 8/0c42f415674f60ca2ef4274b446577621cdeec8f31168b1c3b90888a4377c513f02a89ee346421c264ec3a77fe2fa3e134996be6463ed506dbbc79b4b4505375 + checksum: 0c42f415674f60ca2ef4274b446577621cdeec8f31168b1c3b90888a4377c513f02a89ee346421c264ec3a77fe2fa3e134996be6463ed506dbbc79b4b4505375 languageName: node linkType: hard @@ -1144,14 +1144,14 @@ __metadata: dependencies: "@lezer/highlight": "npm:^1.0.0" "@lezer/lr": "npm:^1.0.0" - checksum: 8/271319aa7802c123845b70ffa63d7065c0f92fc6a1ddb1f8ec9f3aa965bca3df3c9fad4d4de53187ddf230e833cd3ab3a84cb2aded76ab5f6831e9a2fc310923 + checksum: 271319aa7802c123845b70ffa63d7065c0f92fc6a1ddb1f8ec9f3aa965bca3df3c9fad4d4de53187ddf230e833cd3ab3a84cb2aded76ab5f6831e9a2fc310923 languageName: node linkType: hard "@lumino/algorithm@npm:^2.0.2": version: 2.0.2 resolution: "@lumino/algorithm@npm:2.0.2" - checksum: 8/34b25684b845f1bdbf78ca45ebd99a97b67b2992440c9643aafe5fc5a99fae1ddafa9e5890b246b233dc3a12d9f66aa84afe4a2aac44cf31071348ed217740db + checksum: 34b25684b845f1bdbf78ca45ebd99a97b67b2992440c9643aafe5fc5a99fae1ddafa9e5890b246b233dc3a12d9f66aa84afe4a2aac44cf31071348ed217740db languageName: node linkType: hard @@ -1162,7 +1162,7 @@ __metadata: "@lumino/commands": "npm:^2.3.1" "@lumino/coreutils": "npm:^2.2.0" "@lumino/widgets": "npm:^2.6.0" - checksum: 8/210dce74beb528e94839b209c5bebb858b56c8c9d896359614a47ce9c5cb117736233d9d81b6009b9916b8ede480d6240f991f988b8bcf9c6a229ef86bf90a85 + checksum: 210dce74beb528e94839b209c5bebb858b56c8c9d896359614a47ce9c5cb117736233d9d81b6009b9916b8ede480d6240f991f988b8bcf9c6a229ef86bf90a85 languageName: node linkType: hard @@ -1171,7 +1171,7 @@ __metadata: resolution: "@lumino/collections@npm:2.0.2" dependencies: "@lumino/algorithm": "npm:^2.0.2" - checksum: 8/e8bb2068a3741940e0dd396fa729c3c9d12458b41b7c2a9d171c5c034e69fb5834116a824094a8aa4182397e13abace06025ed5032a755ea85b976eae74ee9a9 + checksum: e8bb2068a3741940e0dd396fa729c3c9d12458b41b7c2a9d171c5c034e69fb5834116a824094a8aa4182397e13abace06025ed5032a755ea85b976eae74ee9a9 languageName: node linkType: hard @@ -1186,7 +1186,7 @@ __metadata: "@lumino/keyboard": "npm:^2.0.2" "@lumino/signaling": "npm:^2.1.3" "@lumino/virtualdom": "npm:^2.0.2" - checksum: 8/83bc6d66de37e58582b00f70ce66e797c9fcf84e36041c6881631ed0d281305e2a49927f5b2fe6c5c965733f3cd6fb4a233c7b7967fc050497024a941659bd65 + checksum: 83bc6d66de37e58582b00f70ce66e797c9fcf84e36041c6881631ed0d281305e2a49927f5b2fe6c5c965733f3cd6fb4a233c7b7967fc050497024a941659bd65 languageName: node linkType: hard @@ -1195,7 +1195,7 @@ __metadata: resolution: "@lumino/coreutils@npm:2.2.0" dependencies: "@lumino/algorithm": "npm:^2.0.2" - checksum: 8/345fcd5d7493d745831dd944edfbd8eda06cc59a117e71023fc97ce53badd697be2bd51671f071f5ff0064f75f104575d9695f116a07517bafbedd38e5c7a785 + checksum: 345fcd5d7493d745831dd944edfbd8eda06cc59a117e71023fc97ce53badd697be2bd51671f071f5ff0064f75f104575d9695f116a07517bafbedd38e5c7a785 languageName: node linkType: hard @@ -1212,7 +1212,7 @@ __metadata: "@lumino/messaging": "npm:^2.0.2" "@lumino/signaling": "npm:^2.1.3" "@lumino/widgets": "npm:^2.6.0" - checksum: 8/32cbe8676745077b3aa29cbe9d05c151da8cb51a6dff417b3e506fa4a15c65c48ba93e4a72f7d57bd1347fc559f3583bdb4e3158b14c172e076204fc26019149 + checksum: 32cbe8676745077b3aa29cbe9d05c151da8cb51a6dff417b3e506fa4a15c65c48ba93e4a72f7d57bd1347fc559f3583bdb4e3158b14c172e076204fc26019149 languageName: node linkType: hard @@ -1221,14 +1221,14 @@ __metadata: resolution: "@lumino/disposable@npm:2.1.3" dependencies: "@lumino/signaling": "npm:^2.1.3" - checksum: 8/b9a346fa2752b3cd1b053cb637ee173501d33082a73423429070e8acc508b034ea0babdae0549b923cbdd287ee1fc7f6159f0539c9fff7574393a214eef07c57 + checksum: b9a346fa2752b3cd1b053cb637ee173501d33082a73423429070e8acc508b034ea0babdae0549b923cbdd287ee1fc7f6159f0539c9fff7574393a214eef07c57 languageName: node linkType: hard "@lumino/domutils@npm:^2.0.2": version: 2.0.2 resolution: "@lumino/domutils@npm:2.0.2" - checksum: 8/037b8d0b62af43887fd7edd506fa551e2af104a4b46d62e6fef256e16754dba40d351513beb5083834d468b2c7806aae0fe205fd6aac8ef24759451ee998bbd9 + checksum: 037b8d0b62af43887fd7edd506fa551e2af104a4b46d62e6fef256e16754dba40d351513beb5083834d468b2c7806aae0fe205fd6aac8ef24759451ee998bbd9 languageName: node linkType: hard @@ -1238,14 +1238,14 @@ __metadata: dependencies: "@lumino/coreutils": "npm:^2.2.0" "@lumino/disposable": "npm:^2.1.3" - checksum: 8/48e34bea73186dcde4565fa68cd25067b7f5fe910813d28da9ab3c5392bfaa0b26aab1290635dc953d85bbb139da7ac1ffc040a5d5777d58fd087975dd4b5ef7 + checksum: 48e34bea73186dcde4565fa68cd25067b7f5fe910813d28da9ab3c5392bfaa0b26aab1290635dc953d85bbb139da7ac1ffc040a5d5777d58fd087975dd4b5ef7 languageName: node linkType: hard "@lumino/keyboard@npm:^2.0.2": version: 2.0.2 resolution: "@lumino/keyboard@npm:2.0.2" - checksum: 8/198e8c17825c9a831fa0770f58a71574b936acb0f0bbbe7f8feb73d89686dda7ff41fcb02d12b401f5d462b45fe0bba24f7f38befb7cefe0826576559f0bee6d + checksum: 198e8c17825c9a831fa0770f58a71574b936acb0f0bbbe7f8feb73d89686dda7ff41fcb02d12b401f5d462b45fe0bba24f7f38befb7cefe0826576559f0bee6d languageName: node linkType: hard @@ -1255,7 +1255,7 @@ __metadata: dependencies: "@lumino/algorithm": "npm:^2.0.2" "@lumino/collections": "npm:^2.0.2" - checksum: 8/66abd8c473026123589dc22f2ce8f85da10e0b1a05c05ed9b2011035721da5f751cc7ef63b628877f446a78a4287e26ad1450efbeaf0c2e03b1d08be9abaca4d + checksum: 66abd8c473026123589dc22f2ce8f85da10e0b1a05c05ed9b2011035721da5f751cc7ef63b628877f446a78a4287e26ad1450efbeaf0c2e03b1d08be9abaca4d languageName: node linkType: hard @@ -1266,14 +1266,14 @@ __metadata: "@lumino/coreutils": "npm:^2.2.0" "@lumino/disposable": "npm:^2.1.3" "@lumino/signaling": "npm:^2.1.3" - checksum: 8/2c94dbc2339dd06b3b89a3a690d23576ce095f92bf1f614557dcaeb1c1a8a707b2a18d78c03e5fd7376a43e3f393cc4fec42a65580ae4b67c6630ea86cecbac6 + checksum: 2c94dbc2339dd06b3b89a3a690d23576ce095f92bf1f614557dcaeb1c1a8a707b2a18d78c03e5fd7376a43e3f393cc4fec42a65580ae4b67c6630ea86cecbac6 languageName: node linkType: hard "@lumino/properties@npm:^2.0.2": version: 2.0.2 resolution: "@lumino/properties@npm:2.0.2" - checksum: 8/cbe802bd49ced7e13e50b1d89b82e0f03fb44a590c704e6b9343226498b21d8abfe119b024209e79876b4fc0938dbf85e964c6c4cd5bbdd4d7ba41ce0fb69f3f + checksum: cbe802bd49ced7e13e50b1d89b82e0f03fb44a590c704e6b9343226498b21d8abfe119b024209e79876b4fc0938dbf85e964c6c4cd5bbdd4d7ba41ce0fb69f3f languageName: node linkType: hard @@ -1283,7 +1283,7 @@ __metadata: dependencies: "@lumino/algorithm": "npm:^2.0.2" "@lumino/coreutils": "npm:^2.2.0" - checksum: 8/ce59383bd75fe30df5800e0442dbc4193cc6778e2530b9be0f484d159f1d8668be5c6ee92cee9df36d5a0c3dbd9126d0479a82581dee1df889d5c9f922d3328d + checksum: ce59383bd75fe30df5800e0442dbc4193cc6778e2530b9be0f484d159f1d8668be5c6ee92cee9df36d5a0c3dbd9126d0479a82581dee1df889d5c9f922d3328d languageName: node linkType: hard @@ -1292,7 +1292,7 @@ __metadata: resolution: "@lumino/virtualdom@npm:2.0.2" dependencies: "@lumino/algorithm": "npm:^2.0.2" - checksum: 8/0e1220d5b3b2441e7668f3542a6341e015bdbea0c8bd6d4be962009386c034336540732596d5dedcd54ca57fbde61c2942549129a3e1b0fccb1aa143685fcd15 + checksum: 0e1220d5b3b2441e7668f3542a6341e015bdbea0c8bd6d4be962009386c034336540732596d5dedcd54ca57fbde61c2942549129a3e1b0fccb1aa143685fcd15 languageName: node linkType: hard @@ -1311,28 +1311,28 @@ __metadata: "@lumino/properties": "npm:^2.0.2" "@lumino/signaling": "npm:^2.1.3" "@lumino/virtualdom": "npm:^2.0.2" - checksum: 8/925acbe8813af32a7d0bbfb4a91f848f9b840561fa48d26c6b08c041c2f5077c25f02424b82e793945b26de5d3137127f754a5e788239364c92bc2863218619e + checksum: 925acbe8813af32a7d0bbfb4a91f848f9b840561fa48d26c6b08c041c2f5077c25f02424b82e793945b26de5d3137127f754a5e788239364c92bc2863218619e languageName: node linkType: hard "@marijn/find-cluster-break@npm:^1.0.0": version: 1.0.2 resolution: "@marijn/find-cluster-break@npm:1.0.2" - checksum: 8/0d836de25e04d58325813401ef3c2d34caf040da985a5935fcbc9d84e7b47a21bdb15f57d70c2bf0960bd29ed3dbbb1afd00cdd0fc4fafbee7fd0ffe7d508ae1 + checksum: 0d836de25e04d58325813401ef3c2d34caf040da985a5935fcbc9d84e7b47a21bdb15f57d70c2bf0960bd29ed3dbbb1afd00cdd0fc4fafbee7fd0ffe7d508ae1 languageName: node linkType: hard "@microsoft/fast-colors@npm:^5.3.1": version: 5.3.1 resolution: "@microsoft/fast-colors@npm:5.3.1" - checksum: 8/ff87f402faadb4b5aeee3d27762566c11807f927cd4012b8bbc7f073ca68de0e2197f95330ff5dfd7038f4b4f0e2f51b11feb64c5d570f5c598d37850a5daf60 + checksum: ff87f402faadb4b5aeee3d27762566c11807f927cd4012b8bbc7f073ca68de0e2197f95330ff5dfd7038f4b4f0e2f51b11feb64c5d570f5c598d37850a5daf60 languageName: node linkType: hard "@microsoft/fast-element@npm:^1.12.0": version: 1.12.0 resolution: "@microsoft/fast-element@npm:1.12.0" - checksum: 8/bbff4e9c83106d1d74f3eeedc87bf84832429e78fee59c6a4ae8164ee4f42667503f586896bea72341b4d2c76c244a3cb0d4fd0d5d3732755f00357714dd609e + checksum: bbff4e9c83106d1d74f3eeedc87bf84832429e78fee59c6a4ae8164ee4f42667503f586896bea72341b4d2c76c244a3cb0d4fd0d5d3732755f00357714dd609e languageName: node linkType: hard @@ -1344,7 +1344,7 @@ __metadata: "@microsoft/fast-web-utilities": "npm:^5.4.1" tabbable: "npm:^5.2.0" tslib: "npm:^1.13.0" - checksum: 8/8a4729e8193ee93f780dc88fac26561b42f2636e3f0a8e89bb1dfe256f50a01a21ed1d8e4d31ce40678807dc833e25f31ba735cb5d3c247b65219aeb2560c82c + checksum: 8a4729e8193ee93f780dc88fac26561b42f2636e3f0a8e89bb1dfe256f50a01a21ed1d8e4d31ce40678807dc833e25f31ba735cb5d3c247b65219aeb2560c82c languageName: node linkType: hard @@ -1353,7 +1353,7 @@ __metadata: resolution: "@microsoft/fast-web-utilities@npm:5.4.1" dependencies: exenv-es6: "npm:^1.1.1" - checksum: 8/303e87847f962944f474e3716c3eb305668243916ca9e0719e26bb9a32346144bc958d915c103776b3e552cea0f0f6233f839fad66adfdf96a8436b947288ca7 + checksum: 303e87847f962944f474e3716c3eb305668243916ca9e0719e26bb9a32346144bc958d915c103776b3e552cea0f0f6233f839fad66adfdf96a8436b947288ca7 languageName: node linkType: hard @@ -1363,7 +1363,7 @@ __metadata: dependencies: "@gar/promisify": "npm:^1.1.3" semver: "npm:^7.3.5" - checksum: 8/405074965e72d4c9d728931b64d2d38e6ea12066d4fad651ac253d175e413c06fe4350970c783db0d749181da8fe49c42d3880bd1cbc12cd68e3a7964d820225 + checksum: 405074965e72d4c9d728931b64d2d38e6ea12066d4fad651ac253d175e413c06fe4350970c783db0d749181da8fe49c42d3880bd1cbc12cd68e3a7964d820225 languageName: node linkType: hard @@ -1373,18 +1373,18 @@ __metadata: dependencies: mkdirp: "npm:^1.0.4" rimraf: "npm:^3.0.2" - checksum: 8/52dc02259d98da517fae4cb3a0a3850227bdae4939dda1980b788a7670636ca2b4a01b58df03dd5f65c1e3cb70c50fa8ce5762b582b3f499ec30ee5ce1fd9380 + checksum: 52dc02259d98da517fae4cb3a0a3850227bdae4939dda1980b788a7670636ca2b4a01b58df03dd5f65c1e3cb70c50fa8ce5762b582b3f499ec30ee5ce1fd9380 languageName: node linkType: hard -"@playwright/test@npm:^1.50.1, @playwright/test@npm:~1.50.1": - version: 1.50.1 - resolution: "@playwright/test@npm:1.50.1" +"@playwright/test@npm:^1.51.0, @playwright/test@npm:~1.51.0": + version: 1.51.0 + resolution: "@playwright/test@npm:1.51.0" dependencies: - playwright: "npm:1.50.1" + playwright: 1.51.0 bin: playwright: cli.js - checksum: 8/ace565b0638e629a35f9b38e32e4f93a84605a96b50a9a229f91668b686b5f845fe8739fb73a361d281472e9daa655b0c2be7255f57f590244214aaad264711d + checksum: 14959f930db55882ff45ba660dfd37e066bea2607619549f85b6c9c0591a895f4dcbc5419e2fc4069b03b02fef6d00628bc9382b65216c99735d6d93eb578374 languageName: node linkType: hard @@ -1400,7 +1400,7 @@ __metadata: peerDependencies: "@rjsf/utils": ^5.16.x react: ^16.14.0 || >=17 - checksum: 8/2f88dc6af9dda8ec5c8cbac63f3f9e776a11fe363ce938aa7b5c7a3baaa84a7a2f3796ebf55b361a8cb65267a1715ab880a4743636fb88e06b0240d07f0e4c7b + checksum: 2f88dc6af9dda8ec5c8cbac63f3f9e776a11fe363ce938aa7b5c7a3baaa84a7a2f3796ebf55b361a8cb65267a1715ab880a4743636fb88e06b0240d07f0e4c7b languageName: node linkType: hard @@ -1415,7 +1415,7 @@ __metadata: react-is: "npm:^18.2.0" peerDependencies: react: ^16.14.0 || >=17 - checksum: 8/0c69527de4ab6f9d6ec4d1a5e05a31a0a38062d40abe2a2da7bc2324b20b08b0e90c188977ac4408f3b004c758c28097444746f3215e21e184c11cad7e9278c1 + checksum: 0c69527de4ab6f9d6ec4d1a5e05a31a0a38062d40abe2a2da7bc2324b20b08b0e90c188977ac4408f3b004c758c28097444746f3215e21e184c11cad7e9278c1 languageName: node linkType: hard @@ -1431,7 +1431,7 @@ __metadata: "@stdlib/symbol": "npm:^0.0.x" "@stdlib/types": "npm:^0.0.x" "@stdlib/utils": "npm:^0.0.x" - checksum: 8/0d95690461f0c4560eabef0796d1170274415cd03de80333c6d39814d0484a6873ef4be04a64941ebf3a600747e84c3a4f23b21c7020e53842c07985331b39f1 + checksum: 0d95690461f0c4560eabef0796d1170274415cd03de80333c6d39814d0484a6873ef4be04a64941ebf3a600747e84c3a4f23b21c7020e53842c07985331b39f1 conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard @@ -1456,7 +1456,7 @@ __metadata: "@stdlib/symbol": "npm:^0.0.x" "@stdlib/types": "npm:^0.0.x" "@stdlib/utils": "npm:^0.0.x" - checksum: 8/d4dcbeabbfb86ba56cdd972ff785f43e7d25018b2b1800cab8b0deb9e5c54c795d6ead3d142f4dd13c351f636deba4dc1857c85147d6b059fdc78eb2c9510b99 + checksum: d4dcbeabbfb86ba56cdd972ff785f43e7d25018b2b1800cab8b0deb9e5c54c795d6ead3d142f4dd13c351f636deba4dc1857c85147d6b059fdc78eb2c9510b99 conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard @@ -1466,7 +1466,7 @@ __metadata: resolution: "@stdlib/bigint@npm:0.0.11" dependencies: "@stdlib/utils": "npm:^0.0.x" - checksum: 8/7bf825d116e4b010e214209af239706ac1ef923eecb5c8b0af9229c9975450081355e441ecc7b4765d81a9e653141868e0492b8061d1e65724fa42fb8283aabd + checksum: 7bf825d116e4b010e214209af239706ac1ef923eecb5c8b0af9229c9975450081355e441ecc7b4765d81a9e653141868e0492b8061d1e65724fa42fb8283aabd conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard @@ -1481,7 +1481,7 @@ __metadata: "@stdlib/number": "npm:^0.0.x" "@stdlib/types": "npm:^0.0.x" "@stdlib/utils": "npm:^0.0.x" - checksum: 8/67ea00a968f7a9c710b37f718b7f756e2830e479a1a1ee44cbf6ec3cc27dd8863078928867707d9d1624007e81de89d040f2326d10f435e2cce913cab121975e + checksum: 67ea00a968f7a9c710b37f718b7f756e2830e479a1a1ee44cbf6ec3cc27dd8863078928867707d9d1624007e81de89d040f2326d10f435e2cce913cab121975e conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard @@ -1495,7 +1495,7 @@ __metadata: "@stdlib/process": "npm:^0.0.x" "@stdlib/types": "npm:^0.0.x" "@stdlib/utils": "npm:^0.0.x" - checksum: 8/93df02e3bf548e940ff9cef65121566e7bf93b554f0614d62336c9dbccfc07c9f1b1c4e9a7aebbe4819ef16a6d2a33a7010c2fdf908fface8298a3109c3c4ef0 + checksum: 93df02e3bf548e940ff9cef65121566e7bf93b554f0614d62336c9dbccfc07c9f1b1c4e9a7aebbe4819ef16a6d2a33a7010c2fdf908fface8298a3109c3c4ef0 conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard @@ -1506,7 +1506,7 @@ __metadata: dependencies: "@stdlib/utils": "npm:^0.0.x" minimist: "npm:^1.2.0" - checksum: 8/bbece8d3dbff2835518582a7726c6c4c22743dc408d2303d9e35a3b72151d5d0a8e78d61bc896663d4c3fb702e966abea7a1bd621ed943723a359f57053f121f + checksum: bbece8d3dbff2835518582a7726c6c4c22743dc408d2303d9e35a3b72151d5d0a8e78d61bc896663d4c3fb702e966abea7a1bd621ed943723a359f57053f121f conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard @@ -1519,7 +1519,7 @@ __metadata: "@stdlib/assert": "npm:^0.0.x" "@stdlib/types": "npm:^0.0.x" "@stdlib/utils": "npm:^0.0.x" - checksum: 8/8eda35027495417f1b0dd9bbbc2d4983f50ad3cf9e2276ffe0945ccdbe78f0fc66b9fc36ab71926d2a125c8fb7467c8970a222b230b42ff4bb8042c53314ca09 + checksum: 8eda35027495417f1b0dd9bbbc2d4983f50ad3cf9e2276ffe0945ccdbe78f0fc66b9fc36ab71926d2a125c8fb7467c8970a222b230b42ff4bb8042c53314ca09 conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard @@ -1532,7 +1532,7 @@ __metadata: "@stdlib/assert": "npm:^0.0.x" "@stdlib/number": "npm:^0.0.x" "@stdlib/utils": "npm:^0.0.x" - checksum: 8/fc19d055a4e71ae84b6c92e4a3a88371d50693da8f0a813df4063dc549374d19b9cf23f4fdae2fb7b2013e13929f713c3e1b9e4054767e741b75561ed43d15c3 + checksum: fc19d055a4e71ae84b6c92e4a3a88371d50693da8f0a813df4063dc549374d19b9cf23f4fdae2fb7b2013e13929f713c3e1b9e4054767e741b75561ed43d15c3 conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard @@ -1549,7 +1549,7 @@ __metadata: "@stdlib/string": "npm:^0.0.x" "@stdlib/utils": "npm:^0.0.x" debug: "npm:^2.6.9" - checksum: 8/33ac5ee4844d4599fe3a8a8402f1a3e2cafee31a5c9cf5b85df530a61a2b54ef17dc30a67be98dacdc2958219413edd0e4cdc3c28266f4bc30277ee024f6a49e + checksum: 33ac5ee4844d4599fe3a8a8402f1a3e2cafee31a5c9cf5b85df530a61a2b54ef17dc30a67be98dacdc2958219413edd0e4cdc3c28266f4bc30277ee024f6a49e conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard @@ -1567,7 +1567,7 @@ __metadata: "@stdlib/types": "npm:^0.0.x" "@stdlib/utils": "npm:^0.0.x" debug: "npm:^2.6.9" - checksum: 8/6c4c9dda36fbce50553e1437354c5286aa782c42399534dbed8e696ddeb1b91ef6cff5fe5962f1c9e1eb2ef63c63d9bd58f7ca4b87d59018aaac20099c3fb79a + checksum: 6c4c9dda36fbce50553e1437354c5286aa782c42399534dbed8e696ddeb1b91ef6cff5fe5962f1c9e1eb2ef63c63d9bd58f7ca4b87d59018aaac20099c3fb79a conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard @@ -1587,7 +1587,7 @@ __metadata: "@stdlib/string": "npm:^0.0.x" "@stdlib/types": "npm:^0.0.x" "@stdlib/utils": "npm:^0.0.x" - checksum: 8/842a94afce5fc74bf8a964b75a302ddb8713eadbc79616e6799f1310c8bce860ed9e9877adc4a39338d9136b8798947ee21cf03368d46408308a313c8075d49a + checksum: 842a94afce5fc74bf8a964b75a302ddb8713eadbc79616e6799f1310c8bce860ed9e9877adc4a39338d9136b8798947ee21cf03368d46408308a313c8075d49a conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard @@ -1602,7 +1602,7 @@ __metadata: "@stdlib/random": "npm:^0.0.x" "@stdlib/string": "npm:^0.0.x" "@stdlib/utils": "npm:^0.0.x" - checksum: 8/398fe2853fb95404bb6598e3e199ca3e0435b94447d50e14e2e30582cadfb91f43464f23d80a0e1da4d64567a4a108a7299d7440509f1ab26b02aea7bb16e9a8 + checksum: 398fe2853fb95404bb6598e3e199ca3e0435b94447d50e14e2e30582cadfb91f43464f23d80a0e1da4d64567a4a108a7299d7440509f1ab26b02aea7bb16e9a8 conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard @@ -1619,7 +1619,7 @@ __metadata: "@stdlib/string": "npm:^0.0.x" "@stdlib/types": "npm:^0.0.x" "@stdlib/utils": "npm:^0.0.x" - checksum: 8/326190956c787cbf9321c332beedab5ba4b3fa97d52a82aa708a0349b4678c0df7a351424f00a606f4eaca4fb4ba4cc191580c99d7c64ee0f08d37baa3de14f2 + checksum: 326190956c787cbf9321c332beedab5ba4b3fa97d52a82aa708a0349b4678c0df7a351424f00a606f4eaca4fb4ba4cc191580c99d7c64ee0f08d37baa3de14f2 conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard @@ -1633,7 +1633,7 @@ __metadata: "@stdlib/fs": "npm:^0.0.x" "@stdlib/process": "npm:^0.0.x" "@stdlib/utils": "npm:^0.0.x" - checksum: 8/37156b0c723da70d7740d92d08fc592eae803461c1d546cff6ac044765d6e40722fdad342219277e747c39344b513096ac1d0aa1e733cf3079bd8a9a8578612a + checksum: 37156b0c723da70d7740d92d08fc592eae803461c1d546cff6ac044765d6e40722fdad342219277e747c39344b513096ac1d0aa1e733cf3079bd8a9a8578612a conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard @@ -1649,7 +1649,7 @@ __metadata: "@stdlib/streams": "npm:^0.0.x" "@stdlib/string": "npm:^0.0.x" "@stdlib/utils": "npm:^0.0.x" - checksum: 8/6d5c3d943f9914d1ae39bd36ad7436f783cf64baa2bff67a808035c99258676ae3f704c328a78d62754951cf85fe99d8e9af5f4fa7d5f8cba347bca72767e357 + checksum: 6d5c3d943f9914d1ae39bd36ad7436f783cf64baa2bff67a808035c99258676ae3f704c328a78d62754951cf85fe99d8e9af5f4fa7d5f8cba347bca72767e357 conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard @@ -1674,7 +1674,7 @@ __metadata: "@stdlib/utils": "npm:^0.0.x" debug: "npm:^2.6.9" readable-stream: "npm:^2.1.4" - checksum: 8/67fcb5553274f8596ceae91153e96ae297bacfd55279821cb09f19f2844845aaf892802e4a5962965323dbfded0c7df8a89a6ce77d60d5c8a5899d483055a964 + checksum: 67fcb5553274f8596ceae91153e96ae297bacfd55279821cb09f19f2844845aaf892802e4a5962965323dbfded0c7df8a89a6ce77d60d5c8a5899d483055a964 conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard @@ -1685,7 +1685,7 @@ __metadata: dependencies: "@stdlib/assert": "npm:^0.0.x" "@stdlib/utils": "npm:^0.0.x" - checksum: 8/dd52adb096ff9a02d1c4818be2889ae01bc04a0cdbc0d52473685e0a7a4eaa13e1be603b964f140f7488d11450b644dc5f8c97029d77db1ed4a563554245ff1c + checksum: dd52adb096ff9a02d1c4818be2889ae01bc04a0cdbc0d52473685e0a7a4eaa13e1be603b964f140f7488d11450b644dc5f8c97029d77db1ed4a563554245ff1c conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard @@ -1705,7 +1705,7 @@ __metadata: "@stdlib/symbol": "npm:^0.0.x" "@stdlib/types": "npm:^0.0.x" "@stdlib/utils": "npm:^0.0.x" - checksum: 8/5ca12b2e123543f56a59aca828e14afaf525ad4aa40467bee7037a9178e21e55d4ce8ba3de9387cc9a0efe3e0d035d6c58705b12f634f77a2b3f87d334dfb076 + checksum: 5ca12b2e123543f56a59aca828e14afaf525ad4aa40467bee7037a9178e21e55d4ce8ba3de9387cc9a0efe3e0d035d6c58705b12f634f77a2b3f87d334dfb076 conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard @@ -1722,7 +1722,7 @@ __metadata: "@stdlib/utils": "npm:^0.0.x" debug: "npm:^2.6.9" readable-stream: "npm:^2.1.4" - checksum: 8/231b4607d082ea81d9dadbeab08002ec398a29c7eb5d611d8a4183f9db6964428e2f8a9e0f8edd085ca12b5d58258576987a575e9d8f6fcabcb5a62c6b8efe88 + checksum: 231b4607d082ea81d9dadbeab08002ec398a29c7eb5d611d8a4183f9db6964428e2f8a9e0f8edd085ca12b5d58258576987a575e9d8f6fcabcb5a62c6b8efe88 conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard @@ -1736,7 +1736,7 @@ __metadata: "@stdlib/ndarray": "npm:^0.0.x" "@stdlib/types": "npm:^0.0.x" "@stdlib/utils": "npm:^0.0.x" - checksum: 8/55ccc8543596894a2e3ad734b394700c69697b499a54b3bfbcf80cddd8d91509792c23931f5cebf7c89269676ac3f44352582e4f42e2c2c2898363cc3a76403d + checksum: 55ccc8543596894a2e3ad734b394700c69697b499a54b3bfbcf80cddd8d91509792c23931f5cebf7c89269676ac3f44352582e4f42e2c2c2898363cc3a76403d conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard @@ -1756,7 +1756,7 @@ __metadata: "@stdlib/streams": "npm:^0.0.x" "@stdlib/types": "npm:^0.0.x" "@stdlib/utils": "npm:^0.0.x" - checksum: 8/aaaaaddf381cccc67f15dbab76f43ce81cb71a4f5595bfa06ef915b6747458deca3c25c60ff3c002c0c36482687d92a150f364069559dfea915f63a040d5f603 + checksum: aaaaaddf381cccc67f15dbab76f43ce81cb71a4f5595bfa06ef915b6747458deca3c25c60ff3c002c0c36482687d92a150f364069559dfea915f63a040d5f603 conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard @@ -1767,7 +1767,7 @@ __metadata: dependencies: "@stdlib/assert": "npm:^0.0.x" "@stdlib/utils": "npm:^0.0.x" - checksum: 8/2263341ce0296de2063d26038902bd63bf1d7b820307402fdf38c3b248bd026f17d96bccdc3189fd9fcc9c83a778eaab797dc11805bd66203b8ac9c6934f6588 + checksum: 2263341ce0296de2063d26038902bd63bf1d7b820307402fdf38c3b248bd026f17d96bccdc3189fd9fcc9c83a778eaab797dc11805bd66203b8ac9c6934f6588 conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard @@ -1783,7 +1783,7 @@ __metadata: "@stdlib/math": "npm:^0.0.x" "@stdlib/string": "npm:^0.0.x" "@stdlib/utils": "npm:^0.0.x" - checksum: 8/6e8a1b985a09936ab09c98d44bf1b2c79e08995c3c73401494bc1f6f708747ef136d769af4809a8af92a9ceb3d390db6c4c4e01608cd8d794a86c4b57e343eb1 + checksum: 6e8a1b985a09936ab09c98d44bf1b2c79e08995c3c73401494bc1f6f708747ef136d769af4809a8af92a9ceb3d390db6c4c4e01608cd8d794a86c4b57e343eb1 conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard @@ -1791,7 +1791,7 @@ __metadata: "@stdlib/types@npm:^0.0.x": version: 0.0.14 resolution: "@stdlib/types@npm:0.0.14" - checksum: 8/5680a655ddb3ad730f5c7eb2363a43e089f3e6a1b85b12546cab49f7749bb3baf293bd50fbfe55486f233f4227f1020b65eb461b754b94fb4a4bc2799647ec22 + checksum: 5680a655ddb3ad730f5c7eb2363a43e089f3e6a1b85b12546cab49f7749bb3baf293bd50fbfe55486f233f4227f1020b65eb461b754b94fb4a4bc2799647ec22 conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard @@ -1818,7 +1818,7 @@ __metadata: "@stdlib/time": "npm:^0.0.x" "@stdlib/types": "npm:^0.0.x" debug: "npm:^2.6.9" - checksum: 8/e0c3671c5f62c11bb3abd721f2958c41641b00a75d449bd25fbb62bcb8689cfe9c1f600c0688e7b6819ae870d6e5974d0fc7b2ec86081c45d9194b316b2a2ec2 + checksum: e0c3671c5f62c11bb3abd721f2958c41641b00a75d449bd25fbb62bcb8689cfe9c1f600c0688e7b6819ae870d6e5974d0fc7b2ec86081c45d9194b316b2a2ec2 conditions: (os=aix | os=darwin | os=freebsd | os=linux | os=macos | os=openbsd | os=sunos | os=win32 | os=windows) languageName: node linkType: hard @@ -1826,35 +1826,35 @@ __metadata: "@tootallnate/once@npm:2": version: 2.0.0 resolution: "@tootallnate/once@npm:2.0.0" - checksum: 8/ad87447820dd3f24825d2d947ebc03072b20a42bfc96cbafec16bff8bbda6c1a81fcb0be56d5b21968560c5359a0af4038a68ba150c3e1694fe4c109a063bed8 + checksum: ad87447820dd3f24825d2d947ebc03072b20a42bfc96cbafec16bff8bbda6c1a81fcb0be56d5b21968560c5359a0af4038a68ba150c3e1694fe4c109a063bed8 languageName: node linkType: hard "@types/clone@npm:~2.1.1": version: 2.1.1 resolution: "@types/clone@npm:2.1.1" - checksum: 8/bda9668b9d6e0875d64bbe00763676f566e8647bc224333a03ac7fd66655dfed56a98a9f8304d0145c4411b964649c84c4d1a03adbdb6547eafb9ab8f303d254 + checksum: bda9668b9d6e0875d64bbe00763676f566e8647bc224333a03ac7fd66655dfed56a98a9f8304d0145c4411b964649c84c4d1a03adbdb6547eafb9ab8f303d254 languageName: node linkType: hard "@types/estree@npm:^1.0.0": version: 1.0.1 resolution: "@types/estree@npm:1.0.1" - checksum: 8/e9aa175eacb797216fafce4d41e8202c7a75555bc55232dee0f9903d7171f8f19f0ae7d5191bb1a88cb90e65468be508c0df850a9fb81b4433b293a5a749899d + checksum: e9aa175eacb797216fafce4d41e8202c7a75555bc55232dee0f9903d7171f8f19f0ae7d5191bb1a88cb90e65468be508c0df850a9fb81b4433b293a5a749899d languageName: node linkType: hard "@types/geojson@npm:^7946.0.10": version: 7946.0.10 resolution: "@types/geojson@npm:7946.0.10" - checksum: 8/12c407c2dc93ecb26c08af533ee732f1506a9b29456616ba7ba1d525df96206c28ddf44a528f6a5415d7d22893e9d967420940a9c095ee5e539c1eba5fefc1f4 + checksum: 12c407c2dc93ecb26c08af533ee732f1506a9b29456616ba7ba1d525df96206c28ddf44a528f6a5415d7d22893e9d967420940a9c095ee5e539c1eba5fefc1f4 languageName: node linkType: hard "@types/prop-types@npm:*": version: 15.7.5 resolution: "@types/prop-types@npm:15.7.5" - checksum: 8/5b43b8b15415e1f298243165f1d44390403bb2bd42e662bca3b5b5633fdd39c938e91b7fce3a9483699db0f7a715d08cef220c121f723a634972fdf596aec980 + checksum: 5b43b8b15415e1f298243165f1d44390403bb2bd42e662bca3b5b5633fdd39c938e91b7fce3a9483699db0f7a715d08cef220c121f723a634972fdf596aec980 languageName: node linkType: hard @@ -1865,28 +1865,28 @@ __metadata: "@types/prop-types": "npm:*" "@types/scheduler": "npm:*" csstype: "npm:^3.0.2" - checksum: 8/db3d92b423150222a666329f7aa3023e3e942044700557b8a7d161530847e621aec9f56c9e7f71761b06dd164c8a7b17ad52355863efe80963dffa5537e8e5fd + checksum: db3d92b423150222a666329f7aa3023e3e942044700557b8a7d161530847e621aec9f56c9e7f71761b06dd164c8a7b17ad52355863efe80963dffa5537e8e5fd languageName: node linkType: hard "@types/scheduler@npm:*": version: 0.16.3 resolution: "@types/scheduler@npm:0.16.3" - checksum: 8/2b0aec39c24268e3ce938c5db2f2e77f5c3dd280e05c262d9c2fe7d890929e4632a6b8e94334017b66b45e4f92a5aa42ba3356640c2a1175fa37bef2f5200767 + checksum: 2b0aec39c24268e3ce938c5db2f2e77f5c3dd280e05c262d9c2fe7d890929e4632a6b8e94334017b66b45e4f92a5aa42ba3356640c2a1175fa37bef2f5200767 languageName: node linkType: hard "@vscode/debugprotocol@npm:^1.51.0": version: 1.59.0 resolution: "@vscode/debugprotocol@npm:1.59.0" - checksum: 8/7a7de9e51f791b217da2e6f0d7a08e4732f933e973eaa24b9e7078958c8d6828401f2591334968bb067d42e4dd09ea4ad209f2e32caed8c31b4329320976af5e + checksum: 7a7de9e51f791b217da2e6f0d7a08e4732f933e973eaa24b9e7078958c8d6828401f2591334968bb067d42e4dd09ea4ad209f2e32caed8c31b4329320976af5e languageName: node linkType: hard "abbrev@npm:^1.0.0": version: 1.1.1 resolution: "abbrev@npm:1.1.1" - checksum: 8/a4a97ec07d7ea112c517036882b2ac22f3109b7b19077dc656316d07d308438aac28e4d9746dc4d84bf6b1e75b4a7b0a5f3cb30592419f128ca9a8cee3bcfa17 + checksum: a4a97ec07d7ea112c517036882b2ac22f3109b7b19077dc656316d07d308438aac28e4d9746dc4d84bf6b1e75b4a7b0a5f3cb30592419f128ca9a8cee3bcfa17 languageName: node linkType: hard @@ -1895,7 +1895,7 @@ __metadata: resolution: "agent-base@npm:6.0.2" dependencies: debug: "npm:4" - checksum: 8/f52b6872cc96fd5f622071b71ef200e01c7c4c454ee68bc9accca90c98cfb39f2810e3e9aa330435835eedc8c23f4f8a15267f67c6e245d2b33757575bdac49d + checksum: f52b6872cc96fd5f622071b71ef200e01c7c4c454ee68bc9accca90c98cfb39f2810e3e9aa330435835eedc8c23f4f8a15267f67c6e245d2b33757575bdac49d languageName: node linkType: hard @@ -1906,7 +1906,7 @@ __metadata: debug: "npm:^4.1.0" depd: "npm:^2.0.0" humanize-ms: "npm:^1.2.1" - checksum: 8/982453aa44c11a06826c836025e5162c846e1200adb56f2d075400da7d32d87021b3b0a58768d949d824811f5654223d5a8a3dad120921a2439625eb847c6260 + checksum: 982453aa44c11a06826c836025e5162c846e1200adb56f2d075400da7d32d87021b3b0a58768d949d824811f5654223d5a8a3dad120921a2439625eb847c6260 languageName: node linkType: hard @@ -1916,7 +1916,7 @@ __metadata: dependencies: clean-stack: "npm:^2.0.0" indent-string: "npm:^4.0.0" - checksum: 8/1101a33f21baa27a2fa8e04b698271e64616b886795fd43c31068c07533c7b3facfcaf4e9e0cab3624bd88f729a592f1c901a1a229c9e490eafce411a8644b79 + checksum: 1101a33f21baa27a2fa8e04b698271e64616b886795fd43c31068c07533c7b3facfcaf4e9e0cab3624bd88f729a592f1c901a1a229c9e490eafce411a8644b79 languageName: node linkType: hard @@ -1928,14 +1928,14 @@ __metadata: json-schema-traverse: "npm:^1.0.0" require-from-string: "npm:^2.0.2" uri-js: "npm:^4.2.2" - checksum: 8/4dc13714e316e67537c8b31bc063f99a1d9d9a497eb4bbd55191ac0dcd5e4985bbb71570352ad6f1e76684fb6d790928f96ba3b2d4fd6e10024be9612fe3f001 + checksum: 4dc13714e316e67537c8b31bc063f99a1d9d9a497eb4bbd55191ac0dcd5e4985bbb71570352ad6f1e76684fb6d790928f96ba3b2d4fd6e10024be9612fe3f001 languageName: node linkType: hard "ansi-regex@npm:^5.0.1": version: 5.0.1 resolution: "ansi-regex@npm:5.0.1" - checksum: 8/2aa4bb54caf2d622f1afdad09441695af2a83aa3fe8b8afa581d205e57ed4261c183c4d3877cee25794443fde5876417d859c108078ab788d6af7e4fe52eb66b + checksum: 2aa4bb54caf2d622f1afdad09441695af2a83aa3fe8b8afa581d205e57ed4261c183c4d3877cee25794443fde5876417d859c108078ab788d6af7e4fe52eb66b languageName: node linkType: hard @@ -1944,14 +1944,14 @@ __metadata: resolution: "ansi-styles@npm:4.3.0" dependencies: color-convert: "npm:^2.0.1" - checksum: 8/513b44c3b2105dd14cc42a19271e80f386466c4be574bccf60b627432f9198571ebf4ab1e4c3ba17347658f4ee1711c163d574248c0c1cdc2d5917a0ad582ec4 + checksum: 513b44c3b2105dd14cc42a19271e80f386466c4be574bccf60b627432f9198571ebf4ab1e4c3ba17347658f4ee1711c163d574248c0c1cdc2d5917a0ad582ec4 languageName: node linkType: hard "aproba@npm:^1.0.3 || ^2.0.0": version: 2.0.0 resolution: "aproba@npm:2.0.0" - checksum: 8/5615cadcfb45289eea63f8afd064ab656006361020e1735112e346593856f87435e02d8dcc7ff0d11928bc7d425f27bc7c2a84f6c0b35ab0ff659c814c138a24 + checksum: 5615cadcfb45289eea63f8afd064ab656006361020e1735112e346593856f87435e02d8dcc7ff0d11928bc7d425f27bc7c2a84f6c0b35ab0ff659c814c138a24 languageName: node linkType: hard @@ -1961,14 +1961,14 @@ __metadata: dependencies: delegates: "npm:^1.0.0" readable-stream: "npm:^3.6.0" - checksum: 8/52590c24860fa7173bedeb69a4c05fb573473e860197f618b9a28432ee4379049336727ae3a1f9c4cb083114601c1140cee578376164d0e651217a9843f9fe83 + checksum: 52590c24860fa7173bedeb69a4c05fb573473e860197f618b9a28432ee4379049336727ae3a1f9c4cb083114601c1140cee578376164d0e651217a9843f9fe83 languageName: node linkType: hard "balanced-match@npm:^1.0.0": version: 1.0.2 resolution: "balanced-match@npm:1.0.2" - checksum: 8/9706c088a283058a8a99e0bf91b0a2f75497f185980d9ffa8b304de1d9e58ebda7c72c07ebf01dadedaac5b2907b2c6f566f660d62bd336c3468e960403b9d65 + checksum: 9706c088a283058a8a99e0bf91b0a2f75497f185980d9ffa8b304de1d9e58ebda7c72c07ebf01dadedaac5b2907b2c6f566f660d62bd336c3468e960403b9d65 languageName: node linkType: hard @@ -1978,7 +1978,7 @@ __metadata: dependencies: balanced-match: "npm:^1.0.0" concat-map: "npm:0.0.1" - checksum: 8/faf34a7bb0c3fcf4b59c7808bc5d2a96a40988addf2e7e09dfbb67a2251800e0d14cd2bfc1aa79174f2f5095c54ff27f46fb1289fe2d77dac755b5eb3434cc07 + checksum: faf34a7bb0c3fcf4b59c7808bc5d2a96a40988addf2e7e09dfbb67a2251800e0d14cd2bfc1aa79174f2f5095c54ff27f46fb1289fe2d77dac755b5eb3434cc07 languageName: node linkType: hard @@ -1987,7 +1987,7 @@ __metadata: resolution: "brace-expansion@npm:2.0.1" dependencies: balanced-match: "npm:^1.0.0" - checksum: 8/a61e7cd2e8a8505e9f0036b3b6108ba5e926b4b55089eeb5550cd04a471fe216c96d4fe7e4c7f995c728c554ae20ddfc4244cad10aef255e72b62930afd233d1 + checksum: a61e7cd2e8a8505e9f0036b3b6108ba5e926b4b55089eeb5550cd04a471fe216c96d4fe7e4c7f995c728c554ae20ddfc4244cad10aef255e72b62930afd233d1 languageName: node linkType: hard @@ -2013,21 +2013,21 @@ __metadata: ssri: "npm:^9.0.0" tar: "npm:^6.1.11" unique-filename: "npm:^2.0.0" - checksum: 8/d91409e6e57d7d9a3a25e5dcc589c84e75b178ae8ea7de05cbf6b783f77a5fae938f6e8fda6f5257ed70000be27a681e1e44829251bfffe4c10216002f8f14e6 + checksum: d91409e6e57d7d9a3a25e5dcc589c84e75b178ae8ea7de05cbf6b783f77a5fae938f6e8fda6f5257ed70000be27a681e1e44829251bfffe4c10216002f8f14e6 languageName: node linkType: hard "chownr@npm:^2.0.0": version: 2.0.0 resolution: "chownr@npm:2.0.0" - checksum: 8/c57cf9dd0791e2f18a5ee9c1a299ae6e801ff58fee96dc8bfd0dcb4738a6ce58dd252a3605b1c93c6418fe4f9d5093b28ffbf4d66648cb2a9c67eaef9679be2f + checksum: c57cf9dd0791e2f18a5ee9c1a299ae6e801ff58fee96dc8bfd0dcb4738a6ce58dd252a3605b1c93c6418fe4f9d5093b28ffbf4d66648cb2a9c67eaef9679be2f languageName: node linkType: hard "clean-stack@npm:^2.0.0": version: 2.2.0 resolution: "clean-stack@npm:2.2.0" - checksum: 8/2ac8cd2b2f5ec986a3c743935ec85b07bc174d5421a5efc8017e1f146a1cf5f781ae962618f416352103b32c9cd7e203276e8c28241bbe946160cab16149fb68 + checksum: 2ac8cd2b2f5ec986a3c743935ec85b07bc174d5421a5efc8017e1f146a1cf5f781ae962618f416352103b32c9cd7e203276e8c28241bbe946160cab16149fb68 languageName: node linkType: hard @@ -2038,14 +2038,14 @@ __metadata: string-width: "npm:^4.2.0" strip-ansi: "npm:^6.0.1" wrap-ansi: "npm:^7.0.0" - checksum: 8/79648b3b0045f2e285b76fb2e24e207c6db44323581e421c3acbd0e86454cba1b37aea976ab50195a49e7384b871e6dfb2247ad7dec53c02454ac6497394cb56 + checksum: 79648b3b0045f2e285b76fb2e24e207c6db44323581e421c3acbd0e86454cba1b37aea976ab50195a49e7384b871e6dfb2247ad7dec53c02454ac6497394cb56 languageName: node linkType: hard "clone@npm:~2.1.2": version: 2.1.2 resolution: "clone@npm:2.1.2" - checksum: 8/aaf106e9bc025b21333e2f4c12da539b568db4925c0501a1bf4070836c9e848c892fa22c35548ce0d1132b08bbbfa17a00144fe58fccdab6fa900fec4250f67d + checksum: aaf106e9bc025b21333e2f4c12da539b568db4925c0501a1bf4070836c9e848c892fa22c35548ce0d1132b08bbbfa17a00144fe58fccdab6fa900fec4250f67d languageName: node linkType: hard @@ -2054,14 +2054,14 @@ __metadata: resolution: "color-convert@npm:2.0.1" dependencies: color-name: "npm:~1.1.4" - checksum: 8/79e6bdb9fd479a205c71d89574fccfb22bd9053bd98c6c4d870d65c132e5e904e6034978e55b43d69fcaa7433af2016ee203ce76eeba9cfa554b373e7f7db336 + checksum: 79e6bdb9fd479a205c71d89574fccfb22bd9053bd98c6c4d870d65c132e5e904e6034978e55b43d69fcaa7433af2016ee203ce76eeba9cfa554b373e7f7db336 languageName: node linkType: hard "color-name@npm:~1.1.4": version: 1.1.4 resolution: "color-name@npm:1.1.4" - checksum: 8/b0445859521eb4021cd0fb0cc1a75cecf67fceecae89b63f62b201cca8d345baf8b952c966862a9d9a2632987d4f6581f0ec8d957dfacece86f0a7919316f610 + checksum: b0445859521eb4021cd0fb0cc1a75cecf67fceecae89b63f62b201cca8d345baf8b952c966862a9d9a2632987d4f6581f0ec8d957dfacece86f0a7919316f610 languageName: node linkType: hard @@ -2070,21 +2070,21 @@ __metadata: resolution: "color-support@npm:1.1.3" bin: color-support: bin.js - checksum: 8/9b7356817670b9a13a26ca5af1c21615463b500783b739b7634a0c2047c16cef4b2865d7576875c31c3cddf9dd621fa19285e628f20198b233a5cfdda6d0793b + checksum: 9b7356817670b9a13a26ca5af1c21615463b500783b739b7634a0c2047c16cef4b2865d7576875c31c3cddf9dd621fa19285e628f20198b233a5cfdda6d0793b languageName: node linkType: hard "commander@npm:2": version: 2.20.3 resolution: "commander@npm:2.20.3" - checksum: 8/ab8c07884e42c3a8dbc5dd9592c606176c7eb5c1ca5ff274bcf907039b2c41de3626f684ea75ccf4d361ba004bbaff1f577d5384c155f3871e456bdf27becf9e + checksum: ab8c07884e42c3a8dbc5dd9592c606176c7eb5c1ca5ff274bcf907039b2c41de3626f684ea75ccf4d361ba004bbaff1f577d5384c155f3871e456bdf27becf9e languageName: node linkType: hard "commander@npm:7": version: 7.2.0 resolution: "commander@npm:7.2.0" - checksum: 8/53501cbeee61d5157546c0bef0fedb6cdfc763a882136284bed9a07225f09a14b82d2a84e7637edfd1a679fb35ed9502fd58ef1d091e6287f60d790147f68ddc + checksum: 53501cbeee61d5157546c0bef0fedb6cdfc763a882136284bed9a07225f09a14b82d2a84e7637edfd1a679fb35ed9502fd58ef1d091e6287f60d790147f68ddc languageName: node linkType: hard @@ -2095,7 +2095,7 @@ __metadata: validate.io-array: "npm:^1.0.3" validate.io-function: "npm:^1.0.2" validate.io-integer-array: "npm:^1.0.0" - checksum: 8/51cf33b75f7c8db5142fcb99a9d84a40260993fed8e02a7ab443834186c3ab99b3fd20b30ad9075a6a9d959d69df6da74dd3be8a59c78d9f2fe780ebda8242e1 + checksum: 51cf33b75f7c8db5142fcb99a9d84a40260993fed8e02a7ab443834186c3ab99b3fd20b30ad9075a6a9d959d69df6da74dd3be8a59c78d9f2fe780ebda8242e1 languageName: node linkType: hard @@ -2107,67 +2107,58 @@ __metadata: validate.io-array: "npm:^1.0.3" validate.io-function: "npm:^1.0.2" validate.io-integer-array: "npm:^1.0.0" - checksum: 8/d499ab57dcb48e8d0fd233b99844a06d1cc56115602c920c586e998ebba60293731f5b6976e8a1e83ae6cbfe86716f62d9432e8d94913fed8bd8352f447dc917 + checksum: d499ab57dcb48e8d0fd233b99844a06d1cc56115602c920c586e998ebba60293731f5b6976e8a1e83ae6cbfe86716f62d9432e8d94913fed8bd8352f447dc917 languageName: node linkType: hard "concat-map@npm:0.0.1": version: 0.0.1 resolution: "concat-map@npm:0.0.1" - checksum: 8/902a9f5d8967a3e2faf138d5cb784b9979bad2e6db5357c5b21c568df4ebe62bcb15108af1b2253744844eb964fc023fbd9afbbbb6ddd0bcc204c6fb5b7bf3af + checksum: 902a9f5d8967a3e2faf138d5cb784b9979bad2e6db5357c5b21c568df4ebe62bcb15108af1b2253744844eb964fc023fbd9afbbbb6ddd0bcc204c6fb5b7bf3af languageName: node linkType: hard "console-control-strings@npm:^1.1.0": version: 1.1.0 resolution: "console-control-strings@npm:1.1.0" - checksum: 8/8755d76787f94e6cf79ce4666f0c5519906d7f5b02d4b884cf41e11dcd759ed69c57da0670afd9236d229a46e0f9cf519db0cd829c6dca820bb5a5c3def584ed + checksum: 8755d76787f94e6cf79ce4666f0c5519906d7f5b02d4b884cf41e11dcd759ed69c57da0670afd9236d229a46e0f9cf519db0cd829c6dca820bb5a5c3def584ed languageName: node linkType: hard "core-util-is@npm:~1.0.0": version: 1.0.3 resolution: "core-util-is@npm:1.0.3" - checksum: 8/9de8597363a8e9b9952491ebe18167e3b36e7707569eed0ebf14f8bba773611376466ae34575bca8cfe3c767890c859c74056084738f09d4e4a6f902b2ad7d99 + checksum: 9de8597363a8e9b9952491ebe18167e3b36e7707569eed0ebf14f8bba773611376466ae34575bca8cfe3c767890c859c74056084738f09d4e4a6f902b2ad7d99 languageName: node linkType: hard "crelt@npm:^1.0.5": version: 1.0.5 resolution: "crelt@npm:1.0.5" - checksum: 8/04a618c5878e12a14a9a328a49ff6e37bed76abb88b72e661c56b5f161d8a9aca133650da6bcbc5224ad1f7f43a69325627f209e92a21002986d52a8f844b367 + checksum: 04a618c5878e12a14a9a328a49ff6e37bed76abb88b72e661c56b5f161d8a9aca133650da6bcbc5224ad1f7f43a69325627f209e92a21002986d52a8f844b367 languageName: node linkType: hard "csstype@npm:3.0.10, csstype@npm:^3.0.2": version: 3.0.10 resolution: "csstype@npm:3.0.10" - checksum: 8/20a8fa324f2b33ddf94aa7507d1b6ab3daa6f3cc308888dc50126585d7952f2471de69b2dbe0635d1fdc31223fef8e070842691877e725caf456e2378685a631 + checksum: 20a8fa324f2b33ddf94aa7507d1b6ab3daa6f3cc308888dc50126585d7952f2471de69b2dbe0635d1fdc31223fef8e070842691877e725caf456e2378685a631 languageName: node linkType: hard -"d3-array@npm:1 - 3, d3-array@npm:2 - 3, d3-array@npm:2.10.0 - 3, d3-array@npm:2.5.0 - 3, d3-array@npm:^3.2.2": - version: 3.2.2 - resolution: "d3-array@npm:3.2.2" - dependencies: - internmap: "npm:1 - 2" - checksum: 8/98af3db792685ceca5d9c3721efba0c567520da5532b2c7a590fd83627a598ea225d11c2cecbad404dc154120feb5ea6df0ded38f82ddf342c714cfd0c6143d1 - languageName: node - linkType: hard - -"d3-array@npm:3.2.4": +"d3-array@npm:1 - 3, d3-array@npm:2 - 3, d3-array@npm:2.10.0 - 3, d3-array@npm:2.5.0 - 3, d3-array@npm:3.2.4, d3-array@npm:^3.2.2": version: 3.2.4 resolution: "d3-array@npm:3.2.4" dependencies: internmap: "npm:1 - 2" - checksum: 10c0/08b95e91130f98c1375db0e0af718f4371ccacef7d5d257727fe74f79a24383e79aba280b9ffae655483ffbbad4fd1dec4ade0119d88c4749f388641c8bf8c50 + checksum: a5976a6d6205f69208478bb44920dd7ce3e788c9dceb86b304dbe401a4bfb42ecc8b04c20facde486e9adcb488b5d1800d49393a3f81a23902b68158e12cddd0 languageName: node linkType: hard "d3-color@npm:1 - 3, d3-color@npm:^3.1.0": version: 3.1.0 resolution: "d3-color@npm:3.1.0" - checksum: 8/4931fbfda5d7c4b5cfa283a13c91a954f86e3b69d75ce588d06cde6c3628cebfc3af2069ccf225e982e8987c612aa7948b3932163ce15eb3c11cd7c003f3ee3b + checksum: 4931fbfda5d7c4b5cfa283a13c91a954f86e3b69d75ce588d06cde6c3628cebfc3af2069ccf225e982e8987c612aa7948b3932163ce15eb3c11cd7c003f3ee3b languageName: node linkType: hard @@ -2176,14 +2167,14 @@ __metadata: resolution: "d3-delaunay@npm:6.0.4" dependencies: delaunator: "npm:5" - checksum: 8/ce6d267d5ef21a8aeadfe4606329fc80a22ab6e7748d47bc220bcc396ee8be84b77a5473033954c5ac4aa522d265ddc45d4165d30fe4787dd60a15ea66b9bbb4 + checksum: ce6d267d5ef21a8aeadfe4606329fc80a22ab6e7748d47bc220bcc396ee8be84b77a5473033954c5ac4aa522d265ddc45d4165d30fe4787dd60a15ea66b9bbb4 languageName: node linkType: hard "d3-dispatch@npm:1 - 3": version: 3.0.1 resolution: "d3-dispatch@npm:3.0.1" - checksum: 8/fdfd4a230f46463e28e5b22a45dd76d03be9345b605e1b5dc7d18bd7ebf504e6c00ae123fd6d03e23d9e2711e01f0e14ea89cd0632545b9f0c00b924ba4be223 + checksum: fdfd4a230f46463e28e5b22a45dd76d03be9345b605e1b5dc7d18bd7ebf504e6c00ae123fd6d03e23d9e2711e01f0e14ea89cd0632545b9f0c00b924ba4be223 languageName: node linkType: hard @@ -2204,7 +2195,7 @@ __metadata: json2tsv: bin/json2dsv.js tsv2csv: bin/dsv2dsv.js tsv2json: bin/dsv2json.js - checksum: 8/5fc0723647269d5dccd181d74f2265920ab368a2868b0b4f55ffa2fecdfb7814390ea28622cd61ee5d9594ab262879509059544e9f815c54fe76fbfb4ffa4c8a + checksum: 5fc0723647269d5dccd181d74f2265920ab368a2868b0b4f55ffa2fecdfb7814390ea28622cd61ee5d9594ab262879509059544e9f815c54fe76fbfb4ffa4c8a languageName: node linkType: hard @@ -2215,14 +2206,14 @@ __metadata: d3-dispatch: "npm:1 - 3" d3-quadtree: "npm:1 - 3" d3-timer: "npm:1 - 3" - checksum: 8/6c7e96438cab62fa32aeadb0ade3297b62b51f81b1b38b0a60a5ec9fd627d74090c1189654d92df2250775f31b06812342f089f1d5947de9960a635ee3581def + checksum: 6c7e96438cab62fa32aeadb0ade3297b62b51f81b1b38b0a60a5ec9fd627d74090c1189654d92df2250775f31b06812342f089f1d5947de9960a635ee3581def languageName: node linkType: hard "d3-format@npm:1 - 3, d3-format@npm:^3.1.0": version: 3.1.0 resolution: "d3-format@npm:3.1.0" - checksum: 8/f345ec3b8ad3cab19bff5dead395bd9f5590628eb97a389b1dd89f0b204c7c4fc1d9520f13231c2c7cf14b7c9a8cf10f8ef15bde2befbab41454a569bd706ca2 + checksum: f345ec3b8ad3cab19bff5dead395bd9f5590628eb97a389b1dd89f0b204c7c4fc1d9520f13231c2c7cf14b7c9a8cf10f8ef15bde2befbab41454a569bd706ca2 languageName: node linkType: hard @@ -2239,7 +2230,7 @@ __metadata: geoproject: bin/geoproject.js geoquantize: bin/geoquantize.js geostitch: bin/geostitch.js - checksum: 8/631422b10dd78d1047ba5a3b073148bea27721060bd7087a5fa6c053ca80445d26432e505e0e3acbd6e0d76cf577c61bf9a5db70dabbc9310c493de1f7ff736d + checksum: 631422b10dd78d1047ba5a3b073148bea27721060bd7087a5fa6c053ca80445d26432e505e0e3acbd6e0d76cf577c61bf9a5db70dabbc9310c493de1f7ff736d languageName: node linkType: hard @@ -2248,14 +2239,14 @@ __metadata: resolution: "d3-geo@npm:3.1.0" dependencies: d3-array: "npm:2.5.0 - 3" - checksum: 8/adf82b0c105c0c5951ae0a833d4dfc479a563791ad7938579fa14e1cffd623b469d8aa7a37dc413a327fb6ac56880f3da3f6c43d4abe3c923972dd98f34f37d1 + checksum: adf82b0c105c0c5951ae0a833d4dfc479a563791ad7938579fa14e1cffd623b469d8aa7a37dc413a327fb6ac56880f3da3f6c43d4abe3c923972dd98f34f37d1 languageName: node linkType: hard "d3-hierarchy@npm:^3.1.2": version: 3.1.2 resolution: "d3-hierarchy@npm:3.1.2" - checksum: 8/0fd946a8c5fd4686d43d3e11bbfc2037a145fda29d2261ccd0e36f70b66af6d7638e2c0c7112124d63fc3d3127197a00a6aecf676bd5bd392a94d7235a214263 + checksum: 0fd946a8c5fd4686d43d3e11bbfc2037a145fda29d2261ccd0e36f70b66af6d7638e2c0c7112124d63fc3d3127197a00a6aecf676bd5bd392a94d7235a214263 languageName: node linkType: hard @@ -2264,21 +2255,21 @@ __metadata: resolution: "d3-interpolate@npm:3.0.1" dependencies: d3-color: "npm:1 - 3" - checksum: 8/a42ba314e295e95e5365eff0f604834e67e4a3b3c7102458781c477bd67e9b24b6bb9d8e41ff5521050a3f2c7c0c4bbbb6e187fd586daa3980943095b267e78b + checksum: a42ba314e295e95e5365eff0f604834e67e4a3b3c7102458781c477bd67e9b24b6bb9d8e41ff5521050a3f2c7c0c4bbbb6e187fd586daa3980943095b267e78b languageName: node linkType: hard "d3-path@npm:^3.1.0": version: 3.1.0 resolution: "d3-path@npm:3.1.0" - checksum: 8/2306f1bd9191e1eac895ec13e3064f732a85f243d6e627d242a313f9777756838a2215ea11562f0c7630c7c3b16a19ec1fe0948b1c82f3317fac55882f6ee5d8 + checksum: 2306f1bd9191e1eac895ec13e3064f732a85f243d6e627d242a313f9777756838a2215ea11562f0c7630c7c3b16a19ec1fe0948b1c82f3317fac55882f6ee5d8 languageName: node linkType: hard "d3-quadtree@npm:1 - 3": version: 3.0.1 resolution: "d3-quadtree@npm:3.0.1" - checksum: 8/5469d462763811475f34a7294d984f3eb100515b0585ca5b249656f6b1a6e99b20056a2d2e463cc9944b888896d2b1d07859c50f9c0cf23438df9cd2e3146066 + checksum: 5469d462763811475f34a7294d984f3eb100515b0585ca5b249656f6b1a6e99b20056a2d2e463cc9944b888896d2b1d07859c50f9c0cf23438df9cd2e3146066 languageName: node linkType: hard @@ -2291,7 +2282,7 @@ __metadata: d3-interpolate: "npm:1.2.0 - 3" d3-time: "npm:2.1.1 - 3" d3-time-format: "npm:2 - 4" - checksum: 8/a9c770d283162c3bd11477c3d9d485d07f8db2071665f1a4ad23eec3e515e2cefbd369059ec677c9ac849877d1a765494e90e92051d4f21111aa56791c98729e + checksum: a9c770d283162c3bd11477c3d9d485d07f8db2071665f1a4ad23eec3e515e2cefbd369059ec677c9ac849877d1a765494e90e92051d4f21111aa56791c98729e languageName: node linkType: hard @@ -2300,7 +2291,7 @@ __metadata: resolution: "d3-shape@npm:3.2.0" dependencies: d3-path: "npm:^3.1.0" - checksum: 8/de2af5fc9a93036a7b68581ca0bfc4aca2d5a328aa7ba7064c11aedd44d24f310c20c40157cb654359d4c15c3ef369f95ee53d71221017276e34172c7b719cfa + checksum: de2af5fc9a93036a7b68581ca0bfc4aca2d5a328aa7ba7064c11aedd44d24f310c20c40157cb654359d4c15c3ef369f95ee53d71221017276e34172c7b719cfa languageName: node linkType: hard @@ -2309,7 +2300,7 @@ __metadata: resolution: "d3-time-format@npm:4.1.0" dependencies: d3-time: "npm:1 - 3" - checksum: 8/7342bce28355378152bbd4db4e275405439cabba082d9cd01946d40581140481c8328456d91740b0fe513c51ec4a467f4471ffa390c7e0e30ea30e9ec98fcdf4 + checksum: 7342bce28355378152bbd4db4e275405439cabba082d9cd01946d40581140481c8328456d91740b0fe513c51ec4a467f4471ffa390c7e0e30ea30e9ec98fcdf4 languageName: node linkType: hard @@ -2318,14 +2309,14 @@ __metadata: resolution: "d3-time@npm:3.1.0" dependencies: d3-array: "npm:2 - 3" - checksum: 8/613b435352a78d9f31b7f68540788186d8c331b63feca60ad21c88e9db1989fe888f97f242322ebd6365e45ec3fb206a4324cd4ca0dfffa1d9b5feb856ba00a7 + checksum: 613b435352a78d9f31b7f68540788186d8c331b63feca60ad21c88e9db1989fe888f97f242322ebd6365e45ec3fb206a4324cd4ca0dfffa1d9b5feb856ba00a7 languageName: node linkType: hard "d3-timer@npm:1 - 3, d3-timer@npm:^3.0.1": version: 3.0.1 resolution: "d3-timer@npm:3.0.1" - checksum: 8/1cfddf86d7bca22f73f2c427f52dfa35c49f50d64e187eb788dcad6e927625c636aa18ae4edd44d084eb9d1f81d8ca4ec305dae7f733c15846a824575b789d73 + checksum: 1cfddf86d7bca22f73f2c427f52dfa35c49f50d64e187eb788dcad6e927625c636aa18ae4edd44d084eb9d1f81d8ca4ec305dae7f733c15846a824575b789d73 languageName: node linkType: hard @@ -2337,7 +2328,7 @@ __metadata: peerDependenciesMeta: supports-color: optional: true - checksum: 8/3dbad3f94ea64f34431a9cbf0bafb61853eda57bff2880036153438f50fb5a84f27683ba0d8e5426bf41a8c6ff03879488120cf5b3a761e77953169c0600a708 + checksum: 3dbad3f94ea64f34431a9cbf0bafb61853eda57bff2880036153438f50fb5a84f27683ba0d8e5426bf41a8c6ff03879488120cf5b3a761e77953169c0600a708 languageName: node linkType: hard @@ -2346,14 +2337,14 @@ __metadata: resolution: "debug@npm:2.6.9" dependencies: ms: "npm:2.0.0" - checksum: 8/d2f51589ca66df60bf36e1fa6e4386b318c3f1e06772280eea5b1ae9fd3d05e9c2b7fd8a7d862457d00853c75b00451aa2d7459b924629ee385287a650f58fe6 + checksum: d2f51589ca66df60bf36e1fa6e4386b318c3f1e06772280eea5b1ae9fd3d05e9c2b7fd8a7d862457d00853c75b00451aa2d7459b924629ee385287a650f58fe6 languageName: node linkType: hard "deepmerge@npm:^4.2.2": version: 4.3.1 resolution: "deepmerge@npm:4.3.1" - checksum: 8/2024c6a980a1b7128084170c4cf56b0fd58a63f2da1660dcfe977415f27b17dbe5888668b59d0b063753f3220719d5e400b7f113609489c90160bb9a5518d052 + checksum: 2024c6a980a1b7128084170c4cf56b0fd58a63f2da1660dcfe977415f27b17dbe5888668b59d0b063753f3220719d5e400b7f113609489c90160bb9a5518d052 languageName: node linkType: hard @@ -2362,21 +2353,21 @@ __metadata: resolution: "delaunator@npm:5.0.0" dependencies: robust-predicates: "npm:^3.0.0" - checksum: 8/d6764188442b7f7c6bcacebd96edc00e35f542a96f1af3ef600e586bfb9849a3682c489c0ab423440c90bc4c7cac77f28761babff76fa29e193e1cf50a95b860 + checksum: d6764188442b7f7c6bcacebd96edc00e35f542a96f1af3ef600e586bfb9849a3682c489c0ab423440c90bc4c7cac77f28761babff76fa29e193e1cf50a95b860 languageName: node linkType: hard "delegates@npm:^1.0.0": version: 1.0.0 resolution: "delegates@npm:1.0.0" - checksum: 8/a51744d9b53c164ba9c0492471a1a2ffa0b6727451bdc89e31627fdf4adda9d51277cfcbfb20f0a6f08ccb3c436f341df3e92631a3440226d93a8971724771fd + checksum: a51744d9b53c164ba9c0492471a1a2ffa0b6727451bdc89e31627fdf4adda9d51277cfcbfb20f0a6f08ccb3c436f341df3e92631a3440226d93a8971724771fd languageName: node linkType: hard "depd@npm:^2.0.0": version: 2.0.0 resolution: "depd@npm:2.0.0" - checksum: 8/abbe19c768c97ee2eed6282d8ce3031126662252c58d711f646921c9623f9052e3e1906443066beec1095832f534e57c523b7333f8e7e0d93051ab6baef5ab3a + checksum: abbe19c768c97ee2eed6282d8ce3031126662252c58d711f646921c9623f9052e3e1906443066beec1095832f534e57c523b7333f8e7e0d93051ab6baef5ab3a languageName: node linkType: hard @@ -2387,14 +2378,14 @@ __metadata: domelementtype: "npm:^2.3.0" domhandler: "npm:^5.0.2" entities: "npm:^4.2.0" - checksum: 8/cd1810544fd8cdfbd51fa2c0c1128ec3a13ba92f14e61b7650b5de421b88205fd2e3f0cc6ace82f13334114addb90ed1c2f23074a51770a8e9c1273acbc7f3e6 + checksum: cd1810544fd8cdfbd51fa2c0c1128ec3a13ba92f14e61b7650b5de421b88205fd2e3f0cc6ace82f13334114addb90ed1c2f23074a51770a8e9c1273acbc7f3e6 languageName: node linkType: hard "domelementtype@npm:^2.3.0": version: 2.3.0 resolution: "domelementtype@npm:2.3.0" - checksum: 8/ee837a318ff702622f383409d1f5b25dd1024b692ef64d3096ff702e26339f8e345820f29a68bcdcea8cfee3531776b3382651232fbeae95612d6f0a75efb4f6 + checksum: ee837a318ff702622f383409d1f5b25dd1024b692ef64d3096ff702e26339f8e345820f29a68bcdcea8cfee3531776b3382651232fbeae95612d6f0a75efb4f6 languageName: node linkType: hard @@ -2403,7 +2394,7 @@ __metadata: resolution: "domhandler@npm:5.0.3" dependencies: domelementtype: "npm:^2.3.0" - checksum: 8/0f58f4a6af63e6f3a4320aa446d28b5790a009018707bce2859dcb1d21144c7876482b5188395a188dfa974238c019e0a1e610d2fc269a12b2c192ea2b0b131c + checksum: 0f58f4a6af63e6f3a4320aa446d28b5790a009018707bce2859dcb1d21144c7876482b5188395a188dfa974238c019e0a1e610d2fc269a12b2c192ea2b0b131c languageName: node linkType: hard @@ -2414,14 +2405,14 @@ __metadata: dom-serializer: "npm:^2.0.0" domelementtype: "npm:^2.3.0" domhandler: "npm:^5.0.3" - checksum: 8/e5757456ddd173caa411cfc02c2bb64133c65546d2c4081381a3bafc8a57411a41eed70494551aa58030be9e58574fcc489828bebd673863d39924fb4878f416 + checksum: e5757456ddd173caa411cfc02c2bb64133c65546d2c4081381a3bafc8a57411a41eed70494551aa58030be9e58574fcc489828bebd673863d39924fb4878f416 languageName: node linkType: hard "emoji-regex@npm:^8.0.0": version: 8.0.0 resolution: "emoji-regex@npm:8.0.0" - checksum: 8/d4c5c39d5a9868b5fa152f00cada8a936868fd3367f33f71be515ecee4c803132d11b31a6222b2571b1e5f7e13890156a94880345594d0ce7e3c9895f560f192 + checksum: d4c5c39d5a9868b5fa152f00cada8a936868fd3367f33f71be515ecee4c803132d11b31a6222b2571b1e5f7e13890156a94880345594d0ce7e3c9895f560f192 languageName: node linkType: hard @@ -2430,70 +2421,70 @@ __metadata: resolution: "encoding@npm:0.1.13" dependencies: iconv-lite: "npm:^0.6.2" - checksum: 8/bb98632f8ffa823996e508ce6a58ffcf5856330fde839ae42c9e1f436cc3b5cc651d4aeae72222916545428e54fd0f6aa8862fd8d25bdbcc4589f1e3f3715e7f + checksum: bb98632f8ffa823996e508ce6a58ffcf5856330fde839ae42c9e1f436cc3b5cc651d4aeae72222916545428e54fd0f6aa8862fd8d25bdbcc4589f1e3f3715e7f languageName: node linkType: hard "entities@npm:^4.2.0, entities@npm:^4.4.0": version: 4.5.0 resolution: "entities@npm:4.5.0" - checksum: 8/853f8ebd5b425d350bffa97dd6958143179a5938352ccae092c62d1267c4e392a039be1bae7d51b6e4ffad25f51f9617531fedf5237f15df302ccfb452cbf2d7 + checksum: 853f8ebd5b425d350bffa97dd6958143179a5938352ccae092c62d1267c4e392a039be1bae7d51b6e4ffad25f51f9617531fedf5237f15df302ccfb452cbf2d7 languageName: node linkType: hard "env-paths@npm:^2.2.0": version: 2.2.1 resolution: "env-paths@npm:2.2.1" - checksum: 8/65b5df55a8bab92229ab2b40dad3b387fad24613263d103a97f91c9fe43ceb21965cd3392b1ccb5d77088021e525c4e0481adb309625d0cb94ade1d1fb8dc17e + checksum: 65b5df55a8bab92229ab2b40dad3b387fad24613263d103a97f91c9fe43ceb21965cd3392b1ccb5d77088021e525c4e0481adb309625d0cb94ade1d1fb8dc17e languageName: node linkType: hard "err-code@npm:^2.0.2": version: 2.0.3 resolution: "err-code@npm:2.0.3" - checksum: 8/8b7b1be20d2de12d2255c0bc2ca638b7af5171142693299416e6a9339bd7d88fc8d7707d913d78e0993176005405a236b066b45666b27b797252c771156ace54 + checksum: 8b7b1be20d2de12d2255c0bc2ca638b7af5171142693299416e6a9339bd7d88fc8d7707d913d78e0993176005405a236b066b45666b27b797252c771156ace54 languageName: node linkType: hard "escalade@npm:^3.1.1": version: 3.1.1 resolution: "escalade@npm:3.1.1" - checksum: 8/a3e2a99f07acb74b3ad4989c48ca0c3140f69f923e56d0cba0526240ee470b91010f9d39001f2a4a313841d237ede70a729e92125191ba5d21e74b106800b133 + checksum: a3e2a99f07acb74b3ad4989c48ca0c3140f69f923e56d0cba0526240ee470b91010f9d39001f2a4a313841d237ede70a729e92125191ba5d21e74b106800b133 languageName: node linkType: hard "escape-string-regexp@npm:^4.0.0": version: 4.0.0 resolution: "escape-string-regexp@npm:4.0.0" - checksum: 8/98b48897d93060f2322108bf29db0feba7dd774be96cd069458d1453347b25ce8682ecc39859d4bca2203cc0ab19c237bcc71755eff49a0f8d90beadeeba5cc5 + checksum: 98b48897d93060f2322108bf29db0feba7dd774be96cd069458d1453347b25ce8682ecc39859d4bca2203cc0ab19c237bcc71755eff49a0f8d90beadeeba5cc5 languageName: node linkType: hard "exenv-es6@npm:^1.1.1": version: 1.1.1 resolution: "exenv-es6@npm:1.1.1" - checksum: 8/7f2aa12025e6f06c48dc286f380cf3183bb19c6017b36d91695034a3e5124a7235c4f8ff24ca2eb88ae801322f0f99605cedfcfd996a5fcbba7669320e2a448e + checksum: 7f2aa12025e6f06c48dc286f380cf3183bb19c6017b36d91695034a3e5124a7235c4f8ff24ca2eb88ae801322f0f99605cedfcfd996a5fcbba7669320e2a448e languageName: node linkType: hard "fast-deep-equal@npm:^3.1.1, fast-deep-equal@npm:~3.1.3": version: 3.1.3 resolution: "fast-deep-equal@npm:3.1.3" - checksum: 8/e21a9d8d84f53493b6aa15efc9cfd53dd5b714a1f23f67fb5dc8f574af80df889b3bce25dc081887c6d25457cce704e636395333abad896ccdec03abaf1f3f9d + checksum: e21a9d8d84f53493b6aa15efc9cfd53dd5b714a1f23f67fb5dc8f574af80df889b3bce25dc081887c6d25457cce704e636395333abad896ccdec03abaf1f3f9d languageName: node linkType: hard "fast-json-stable-stringify@npm:~2.1.0": version: 2.1.0 resolution: "fast-json-stable-stringify@npm:2.1.0" - checksum: 8/b191531e36c607977e5b1c47811158733c34ccb3bfde92c44798929e9b4154884378536d26ad90dfecd32e1ffc09c545d23535ad91b3161a27ddbb8ebe0cbecb + checksum: b191531e36c607977e5b1c47811158733c34ccb3bfde92c44798929e9b4154884378536d26ad90dfecd32e1ffc09c545d23535ad91b3161a27ddbb8ebe0cbecb languageName: node linkType: hard "free-style@npm:3.1.0": version: 3.1.0 resolution: "free-style@npm:3.1.0" - checksum: 8/949258ae315deda48cac93ecd5f9a80f36e8a027e19ce2103598dc8d5ab60e963bbad5444b2a4990ddb746798dd188896f430285cf484afbf2141f7d75a191d8 + checksum: 949258ae315deda48cac93ecd5f9a80f36e8a027e19ce2103598dc8d5ab60e963bbad5444b2a4990ddb746798dd188896f430285cf484afbf2141f7d75a191d8 languageName: node linkType: hard @@ -2504,7 +2495,7 @@ __metadata: graceful-fs: "npm:^4.2.0" jsonfile: "npm:^6.0.1" universalify: "npm:^2.0.0" - checksum: 8/dc94ab37096f813cc3ca12f0f1b5ad6744dfed9ed21e953d72530d103cea193c2f81584a39e9dee1bea36de5ee66805678c0dddc048e8af1427ac19c00fffc50 + checksum: dc94ab37096f813cc3ca12f0f1b5ad6744dfed9ed21e953d72530d103cea193c2f81584a39e9dee1bea36de5ee66805678c0dddc048e8af1427ac19c00fffc50 languageName: node linkType: hard @@ -2513,14 +2504,14 @@ __metadata: resolution: "fs-minipass@npm:2.1.0" dependencies: minipass: "npm:^3.0.0" - checksum: 8/1b8d128dae2ac6cc94230cc5ead341ba3e0efaef82dab46a33d171c044caaa6ca001364178d42069b2809c35a1c3c35079a32107c770e9ffab3901b59af8c8b1 + checksum: 1b8d128dae2ac6cc94230cc5ead341ba3e0efaef82dab46a33d171c044caaa6ca001364178d42069b2809c35a1c3c35079a32107c770e9ffab3901b59af8c8b1 languageName: node linkType: hard "fs.realpath@npm:^1.0.0": version: 1.0.0 resolution: "fs.realpath@npm:1.0.0" - checksum: 8/99ddea01a7e75aa276c250a04eedeffe5662bce66c65c07164ad6264f9de18fb21be9433ead460e54cff20e31721c811f4fb5d70591799df5f85dce6d6746fd0 + checksum: 99ddea01a7e75aa276c250a04eedeffe5662bce66c65c07164ad6264f9de18fb21be9433ead460e54cff20e31721c811f4fb5d70591799df5f85dce6d6746fd0 languageName: node linkType: hard @@ -2529,14 +2520,14 @@ __metadata: resolution: "fsevents@npm:2.3.2" dependencies: node-gyp: "npm:latest" - checksum: 8/97ade64e75091afee5265e6956cb72ba34db7819b4c3e94c431d4be2b19b8bb7a2d4116da417950c3425f17c8fe693d25e20212cac583ac1521ad066b77ae31f + checksum: 97ade64e75091afee5265e6956cb72ba34db7819b4c3e94c431d4be2b19b8bb7a2d4116da417950c3425f17c8fe693d25e20212cac583ac1521ad066b77ae31f conditions: os=darwin languageName: node linkType: hard -"fsevents@patch:fsevents@npm%3A2.3.2#optional!builtin": +"fsevents@patch:fsevents@2.3.2#~builtin": version: 2.3.2 - resolution: "fsevents@patch:fsevents@npm%3A2.3.2#optional!builtin::version=2.3.2&hash=df0bf1" + resolution: "fsevents@patch:fsevents@npm%3A2.3.2#~builtin::version=2.3.2&hash=df0bf1" dependencies: node-gyp: "npm:latest" conditions: os=darwin @@ -2555,14 +2546,14 @@ __metadata: string-width: "npm:^4.2.3" strip-ansi: "npm:^6.0.1" wide-align: "npm:^1.1.5" - checksum: 8/788b6bfe52f1dd8e263cda800c26ac0ca2ff6de0b6eee2fe0d9e3abf15e149b651bd27bf5226be10e6e3edb5c4e5d5985a5a1a98137e7a892f75eff76467ad2d + checksum: 788b6bfe52f1dd8e263cda800c26ac0ca2ff6de0b6eee2fe0d9e3abf15e149b651bd27bf5226be10e6e3edb5c4e5d5985a5a1a98137e7a892f75eff76467ad2d languageName: node linkType: hard "get-caller-file@npm:^2.0.5": version: 2.0.5 resolution: "get-caller-file@npm:2.0.5" - checksum: 8/b9769a836d2a98c3ee734a88ba712e62703f1df31b94b784762c433c27a386dd6029ff55c2a920c392e33657d80191edbf18c61487e198844844516f843496b9 + checksum: b9769a836d2a98c3ee734a88ba712e62703f1df31b94b784762c433c27a386dd6029ff55c2a920c392e33657d80191edbf18c61487e198844844516f843496b9 languageName: node linkType: hard @@ -2576,7 +2567,7 @@ __metadata: minimatch: "npm:^3.1.1" once: "npm:^1.3.0" path-is-absolute: "npm:^1.0.0" - checksum: 8/29452e97b38fa704dabb1d1045350fb2467cf0277e155aa9ff7077e90ad81d1ea9d53d3ee63bd37c05b09a065e90f16aec4a65f5b8de401d1dac40bc5605d133 + checksum: 29452e97b38fa704dabb1d1045350fb2467cf0277e155aa9ff7077e90ad81d1ea9d53d3ee63bd37c05b09a065e90f16aec4a65f5b8de401d1dac40bc5605d133 languageName: node linkType: hard @@ -2589,21 +2580,21 @@ __metadata: inherits: "npm:2" minimatch: "npm:^5.0.1" once: "npm:^1.3.0" - checksum: 8/92fbea3221a7d12075f26f0227abac435de868dd0736a17170663783296d0dd8d3d532a5672b4488a439bf5d7fb85cdd07c11185d6cd39184f0385cbdfb86a47 + checksum: 92fbea3221a7d12075f26f0227abac435de868dd0736a17170663783296d0dd8d3d532a5672b4488a439bf5d7fb85cdd07c11185d6cd39184f0385cbdfb86a47 languageName: node linkType: hard "graceful-fs@npm:^4.1.6, graceful-fs@npm:^4.2.0, graceful-fs@npm:^4.2.6": version: 4.2.11 resolution: "graceful-fs@npm:4.2.11" - checksum: 8/ac85f94da92d8eb6b7f5a8b20ce65e43d66761c55ce85ac96df6865308390da45a8d3f0296dd3a663de65d30ba497bd46c696cc1e248c72b13d6d567138a4fc7 + checksum: ac85f94da92d8eb6b7f5a8b20ce65e43d66761c55ce85ac96df6865308390da45a8d3f0296dd3a663de65d30ba497bd46c696cc1e248c72b13d6d567138a4fc7 languageName: node linkType: hard "has-unicode@npm:^2.0.1": version: 2.0.1 resolution: "has-unicode@npm:2.0.1" - checksum: 8/1eab07a7436512db0be40a710b29b5dc21fa04880b7f63c9980b706683127e3c1b57cb80ea96d47991bdae2dfe479604f6a1ba410106ee1046a41d1bd0814400 + checksum: 1eab07a7436512db0be40a710b29b5dc21fa04880b7f63c9980b706683127e3c1b57cb80ea96d47991bdae2dfe479604f6a1ba410106ee1046a41d1bd0814400 languageName: node linkType: hard @@ -2615,14 +2606,14 @@ __metadata: domhandler: "npm:^5.0.3" domutils: "npm:^3.0.1" entities: "npm:^4.4.0" - checksum: 8/29167a0f9282f181da8a6d0311b76820c8a59bc9e3c87009e21968264c2987d2723d6fde5a964d4b7b6cba663fca96ffb373c06d8223a85f52a6089ced942700 + checksum: 29167a0f9282f181da8a6d0311b76820c8a59bc9e3c87009e21968264c2987d2723d6fde5a964d4b7b6cba663fca96ffb373c06d8223a85f52a6089ced942700 languageName: node linkType: hard "http-cache-semantics@npm:^4.1.0": version: 4.1.1 resolution: "http-cache-semantics@npm:4.1.1" - checksum: 8/83ac0bc60b17a3a36f9953e7be55e5c8f41acc61b22583060e8dedc9dd5e3607c823a88d0926f9150e571f90946835c7fe150732801010845c72cd8bbff1a236 + checksum: 83ac0bc60b17a3a36f9953e7be55e5c8f41acc61b22583060e8dedc9dd5e3607c823a88d0926f9150e571f90946835c7fe150732801010845c72cd8bbff1a236 languageName: node linkType: hard @@ -2633,7 +2624,7 @@ __metadata: "@tootallnate/once": "npm:2" agent-base: "npm:6" debug: "npm:4" - checksum: 8/e2ee1ff1656a131953839b2a19cd1f3a52d97c25ba87bd2559af6ae87114abf60971e498021f9b73f9fd78aea8876d1fb0d4656aac8a03c6caa9fc175f22b786 + checksum: e2ee1ff1656a131953839b2a19cd1f3a52d97c25ba87bd2559af6ae87114abf60971e498021f9b73f9fd78aea8876d1fb0d4656aac8a03c6caa9fc175f22b786 languageName: node linkType: hard @@ -2643,7 +2634,7 @@ __metadata: dependencies: agent-base: "npm:6" debug: "npm:4" - checksum: 8/571fccdf38184f05943e12d37d6ce38197becdd69e58d03f43637f7fa1269cf303a7d228aa27e5b27bbd3af8f09fd938e1c91dcfefff2df7ba77c20ed8dfc765 + checksum: 571fccdf38184f05943e12d37d6ce38197becdd69e58d03f43637f7fa1269cf303a7d228aa27e5b27bbd3af8f09fd938e1c91dcfefff2df7ba77c20ed8dfc765 languageName: node linkType: hard @@ -2652,7 +2643,7 @@ __metadata: resolution: "humanize-ms@npm:1.2.1" dependencies: ms: "npm:^2.0.0" - checksum: 8/9c7a74a2827f9294c009266c82031030eae811ca87b0da3dceb8d6071b9bde22c9f3daef0469c3c533cc67a97d8a167cd9fc0389350e5f415f61a79b171ded16 + checksum: 9c7a74a2827f9294c009266c82031030eae811ca87b0da3dceb8d6071b9bde22c9f3daef0469c3c533cc67a97d8a167cd9fc0389350e5f415f61a79b171ded16 languageName: node linkType: hard @@ -2661,28 +2652,28 @@ __metadata: resolution: "iconv-lite@npm:0.6.3" dependencies: safer-buffer: "npm:>= 2.1.2 < 3.0.0" - checksum: 8/3f60d47a5c8fc3313317edfd29a00a692cc87a19cac0159e2ce711d0ebc9019064108323b5e493625e25594f11c6236647d8e256fbe7a58f4a3b33b89e6d30bf + checksum: 3f60d47a5c8fc3313317edfd29a00a692cc87a19cac0159e2ce711d0ebc9019064108323b5e493625e25594f11c6236647d8e256fbe7a58f4a3b33b89e6d30bf languageName: node linkType: hard "imurmurhash@npm:^0.1.4": version: 0.1.4 resolution: "imurmurhash@npm:0.1.4" - checksum: 8/7cae75c8cd9a50f57dadd77482359f659eaebac0319dd9368bcd1714f55e65badd6929ca58569da2b6494ef13fdd5598cd700b1eba23f8b79c5f19d195a3ecf7 + checksum: 7cae75c8cd9a50f57dadd77482359f659eaebac0319dd9368bcd1714f55e65badd6929ca58569da2b6494ef13fdd5598cd700b1eba23f8b79c5f19d195a3ecf7 languageName: node linkType: hard "indent-string@npm:^4.0.0": version: 4.0.0 resolution: "indent-string@npm:4.0.0" - checksum: 8/824cfb9929d031dabf059bebfe08cf3137365e112019086ed3dcff6a0a7b698cb80cf67ccccde0e25b9e2d7527aa6cc1fed1ac490c752162496caba3e6699612 + checksum: 824cfb9929d031dabf059bebfe08cf3137365e112019086ed3dcff6a0a7b698cb80cf67ccccde0e25b9e2d7527aa6cc1fed1ac490c752162496caba3e6699612 languageName: node linkType: hard "infer-owner@npm:^1.0.4": version: 1.0.4 resolution: "infer-owner@npm:1.0.4" - checksum: 8/181e732764e4a0611576466b4b87dac338972b839920b2a8cde43642e4ed6bd54dc1fb0b40874728f2a2df9a1b097b8ff83b56d5f8f8e3927f837fdcb47d8a89 + checksum: 181e732764e4a0611576466b4b87dac338972b839920b2a8cde43642e4ed6bd54dc1fb0b40874728f2a2df9a1b097b8ff83b56d5f8f8e3927f837fdcb47d8a89 languageName: node linkType: hard @@ -2692,77 +2683,77 @@ __metadata: dependencies: once: "npm:^1.3.0" wrappy: "npm:1" - checksum: 8/f4f76aa072ce19fae87ce1ef7d221e709afb59d445e05d47fba710e85470923a75de35bfae47da6de1b18afc3ce83d70facf44cfb0aff89f0a3f45c0a0244dfd + checksum: f4f76aa072ce19fae87ce1ef7d221e709afb59d445e05d47fba710e85470923a75de35bfae47da6de1b18afc3ce83d70facf44cfb0aff89f0a3f45c0a0244dfd languageName: node linkType: hard "inherits@npm:2, inherits@npm:2.0.3, inherits@npm:^2.0.3, inherits@npm:~2.0.3": version: 2.0.3 resolution: "inherits@npm:2.0.3" - checksum: 8/78cb8d7d850d20a5e9a7f3620db31483aa00ad5f722ce03a55b110e5a723539b3716a3b463e2b96ce3fe286f33afc7c131fa2f91407528ba80cea98a7545d4c0 + checksum: 78cb8d7d850d20a5e9a7f3620db31483aa00ad5f722ce03a55b110e5a723539b3716a3b463e2b96ce3fe286f33afc7c131fa2f91407528ba80cea98a7545d4c0 languageName: node linkType: hard "internmap@npm:1 - 2": version: 2.0.3 resolution: "internmap@npm:2.0.3" - checksum: 8/7ca41ec6aba8f0072fc32fa8a023450a9f44503e2d8e403583c55714b25efd6390c38a87161ec456bf42d7bc83aab62eb28f5aef34876b1ac4e60693d5e1d241 + checksum: 7ca41ec6aba8f0072fc32fa8a023450a9f44503e2d8e403583c55714b25efd6390c38a87161ec456bf42d7bc83aab62eb28f5aef34876b1ac4e60693d5e1d241 languageName: node linkType: hard "ip@npm:^2.0.0": version: 2.0.1 resolution: "ip@npm:2.0.1" - checksum: 8/d765c9fd212b8a99023a4cde6a558a054c298d640fec1020567494d257afd78ca77e37126b1a3ef0e053646ced79a816bf50621d38d5e768cdde0431fa3b0d35 + checksum: d765c9fd212b8a99023a4cde6a558a054c298d640fec1020567494d257afd78ca77e37126b1a3ef0e053646ced79a816bf50621d38d5e768cdde0431fa3b0d35 languageName: node linkType: hard "is-fullwidth-code-point@npm:^3.0.0": version: 3.0.0 resolution: "is-fullwidth-code-point@npm:3.0.0" - checksum: 8/44a30c29457c7fb8f00297bce733f0a64cd22eca270f83e58c105e0d015e45c019491a4ab2faef91ab51d4738c670daff901c799f6a700e27f7314029e99e348 + checksum: 44a30c29457c7fb8f00297bce733f0a64cd22eca270f83e58c105e0d015e45c019491a4ab2faef91ab51d4738c670daff901c799f6a700e27f7314029e99e348 languageName: node linkType: hard "is-lambda@npm:^1.0.1": version: 1.0.1 resolution: "is-lambda@npm:1.0.1" - checksum: 8/93a32f01940220532e5948538699ad610d5924ac86093fcee83022252b363eb0cc99ba53ab084a04e4fb62bf7b5731f55496257a4c38adf87af9c4d352c71c35 + checksum: 93a32f01940220532e5948538699ad610d5924ac86093fcee83022252b363eb0cc99ba53ab084a04e4fb62bf7b5731f55496257a4c38adf87af9c4d352c71c35 languageName: node linkType: hard "is-plain-object@npm:^5.0.0": version: 5.0.0 resolution: "is-plain-object@npm:5.0.0" - checksum: 8/e32d27061eef62c0847d303125440a38660517e586f2f3db7c9d179ae5b6674ab0f469d519b2e25c147a1a3bc87156d0d5f4d8821e0ce4a9ee7fe1fcf11ce45c + checksum: e32d27061eef62c0847d303125440a38660517e586f2f3db7c9d179ae5b6674ab0f469d519b2e25c147a1a3bc87156d0d5f4d8821e0ce4a9ee7fe1fcf11ce45c languageName: node linkType: hard "isarray@npm:~1.0.0": version: 1.0.0 resolution: "isarray@npm:1.0.0" - checksum: 8/f032df8e02dce8ec565cf2eb605ea939bdccea528dbcf565cdf92bfa2da9110461159d86a537388ef1acef8815a330642d7885b29010e8f7eac967c9993b65ab + checksum: f032df8e02dce8ec565cf2eb605ea939bdccea528dbcf565cdf92bfa2da9110461159d86a537388ef1acef8815a330642d7885b29010e8f7eac967c9993b65ab languageName: node linkType: hard "isexe@npm:^2.0.0": version: 2.0.0 resolution: "isexe@npm:2.0.0" - checksum: 8/26bf6c5480dda5161c820c5b5c751ae1e766c587b1f951ea3fcfc973bafb7831ae5b54a31a69bd670220e42e99ec154475025a468eae58ea262f813fdc8d1c62 + checksum: 26bf6c5480dda5161c820c5b5c751ae1e766c587b1f951ea3fcfc973bafb7831ae5b54a31a69bd670220e42e99ec154475025a468eae58ea262f813fdc8d1c62 languageName: node linkType: hard "isomorphic.js@npm:^0.2.4": version: 0.2.5 resolution: "isomorphic.js@npm:0.2.5" - checksum: 8/d8d1b083f05f3c337a06628b982ac3ce6db953bbef14a9de8ad49131250c3592f864b73c12030fdc9ef138ce97b76ef55c7d96a849561ac215b1b4b9d301c8e9 + checksum: d8d1b083f05f3c337a06628b982ac3ce6db953bbef14a9de8ad49131250c3592f864b73c12030fdc9ef138ce97b76ef55c7d96a849561ac215b1b4b9d301c8e9 languageName: node linkType: hard "js-tokens@npm:^3.0.0 || ^4.0.0": version: 4.0.0 resolution: "js-tokens@npm:4.0.0" - checksum: 8/8a95213a5a77deb6cbe94d86340e8d9ace2b93bc367790b260101d2f36a2eaf4e4e22d9fa9cf459b38af3a32fb4190e638024cf82ec95ef708680e405ea7cc78 + checksum: 8a95213a5a77deb6cbe94d86340e8d9ace2b93bc367790b260101d2f36a2eaf4e4e22d9fa9cf459b38af3a32fb4190e638024cf82ec95ef708680e405ea7cc78 languageName: node linkType: hard @@ -2771,7 +2762,7 @@ __metadata: resolution: "json-schema-compare@npm:0.2.2" dependencies: lodash: "npm:^4.17.4" - checksum: 8/dd6f2173857c8e3b77d6ebdfa05bd505bba5b08709ab46b532722f5d1c33b5fee1fc8f3c97d0c0d011db25f9f3b0baf7ab783bb5f55c32abd9f1201760e43c2c + checksum: dd6f2173857c8e3b77d6ebdfa05bd505bba5b08709ab46b532722f5d1c33b5fee1fc8f3c97d0c0d011db25f9f3b0baf7ab783bb5f55c32abd9f1201760e43c2c languageName: node linkType: hard @@ -2782,21 +2773,21 @@ __metadata: compute-lcm: "npm:^1.1.2" json-schema-compare: "npm:^0.2.2" lodash: "npm:^4.17.20" - checksum: 8/82700f6ac77351959138d6b153d77375a8c29cf48d907241b85c8292dd77aabd8cb816400f2b0d17062c4ccc8893832ec4f664ab9c814927ef502e7a595ea873 + checksum: 82700f6ac77351959138d6b153d77375a8c29cf48d907241b85c8292dd77aabd8cb816400f2b0d17062c4ccc8893832ec4f664ab9c814927ef502e7a595ea873 languageName: node linkType: hard "json-schema-traverse@npm:^1.0.0": version: 1.0.0 resolution: "json-schema-traverse@npm:1.0.0" - checksum: 8/02f2f466cdb0362558b2f1fd5e15cce82ef55d60cd7f8fa828cf35ba74330f8d767fcae5c5c2adb7851fa811766c694b9405810879bc4e1ddd78a7c0e03658ad + checksum: 02f2f466cdb0362558b2f1fd5e15cce82ef55d60cd7f8fa828cf35ba74330f8d767fcae5c5c2adb7851fa811766c694b9405810879bc4e1ddd78a7c0e03658ad languageName: node linkType: hard "json-stringify-pretty-compact@npm:~3.0.0": version: 3.0.0 resolution: "json-stringify-pretty-compact@npm:3.0.0" - checksum: 8/01ab5c5c8260299414868d96db97f53aef93c290fe469edd9a1363818e795006e01c952fa2fd7b47cbbab506d5768998eccc25e1da4fa2ccfebd1788c6098791 + checksum: 01ab5c5c8260299414868d96db97f53aef93c290fe469edd9a1363818e795006e01c952fa2fd7b47cbbab506d5768998eccc25e1da4fa2ccfebd1788c6098791 languageName: node linkType: hard @@ -2805,7 +2796,7 @@ __metadata: resolution: "json5@npm:2.2.3" bin: json5: lib/cli.js - checksum: 8/2a7436a93393830bce797d4626275152e37e877b265e94ca69c99e3d20c2b9dab021279146a39cdb700e71b2dd32a4cebd1514cd57cee102b1af906ce5040349 + checksum: 2a7436a93393830bce797d4626275152e37e877b265e94ca69c99e3d20c2b9dab021279146a39cdb700e71b2dd32a4cebd1514cd57cee102b1af906ce5040349 languageName: node linkType: hard @@ -2818,14 +2809,14 @@ __metadata: dependenciesMeta: graceful-fs: optional: true - checksum: 8/7af3b8e1ac8fe7f1eccc6263c6ca14e1966fcbc74b618d3c78a0a2075579487547b94f72b7a1114e844a1e15bb00d440e5d1720bfc4612d790a6f285d5ea8354 + checksum: 7af3b8e1ac8fe7f1eccc6263c6ca14e1966fcbc74b618d3c78a0a2075579487547b94f72b7a1114e844a1e15bb00d440e5d1720bfc4612d790a6f285d5ea8354 languageName: node linkType: hard "jsonpointer@npm:^5.0.1": version: 5.0.1 resolution: "jsonpointer@npm:5.0.1" - checksum: 8/0b40f712900ad0c846681ea2db23b6684b9d5eedf55807b4708c656f5894b63507d0e28ae10aa1bddbea551241035afe62b6df0800fc94c2e2806a7f3adecd7c + checksum: 0b40f712900ad0c846681ea2db23b6684b9d5eedf55807b4708c656f5894b63507d0e28ae10aa1bddbea551241035afe62b6df0800fc94c2e2806a7f3adecd7c languageName: node linkType: hard @@ -2837,35 +2828,35 @@ __metadata: bin: 0gentesthtml: bin/gentesthtml.js 0serve: bin/0serve.js - checksum: 8/a468fc2f8d231bdcb305f04706d0e568ad53a0aa968aaf3d1769fcfbf326a5b158e98d86c0aa8edf26b3223cb60687480f15cfc0d07c681333f9d9d55dd7c802 + checksum: a468fc2f8d231bdcb305f04706d0e568ad53a0aa968aaf3d1769fcfbf326a5b158e98d86c0aa8edf26b3223cb60687480f15cfc0d07c681333f9d9d55dd7c802 languageName: node linkType: hard "lodash-es@npm:^4.17.21": version: 4.17.21 resolution: "lodash-es@npm:4.17.21" - checksum: 8/05cbffad6e2adbb331a4e16fbd826e7faee403a1a04873b82b42c0f22090f280839f85b95393f487c1303c8a3d2a010048bf06151a6cbe03eee4d388fb0a12d2 + checksum: 05cbffad6e2adbb331a4e16fbd826e7faee403a1a04873b82b42c0f22090f280839f85b95393f487c1303c8a3d2a010048bf06151a6cbe03eee4d388fb0a12d2 languageName: node linkType: hard "lodash.escape@npm:^4.0.1": version: 4.0.1 resolution: "lodash.escape@npm:4.0.1" - checksum: 8/fcb54f457497256964d619d5cccbd80a961916fca60df3fe0fa3e7f052715c2944c0ed5aefb4f9e047d127d44aa2d55555f3350cb42c6549e9e293fb30b41e7f + checksum: fcb54f457497256964d619d5cccbd80a961916fca60df3fe0fa3e7f052715c2944c0ed5aefb4f9e047d127d44aa2d55555f3350cb42c6549e9e293fb30b41e7f languageName: node linkType: hard "lodash.mergewith@npm:^4.6.1": version: 4.6.2 resolution: "lodash.mergewith@npm:4.6.2" - checksum: 8/a6db2a9339752411f21b956908c404ec1e088e783a65c8b29e30ae5b3b6384f82517662d6f425cc97c2070b546cc2c7daaa8d33f78db7b6e9be06cd834abdeb8 + checksum: a6db2a9339752411f21b956908c404ec1e088e783a65c8b29e30ae5b3b6384f82517662d6f425cc97c2070b546cc2c7daaa8d33f78db7b6e9be06cd834abdeb8 languageName: node linkType: hard "lodash@npm:^4.17.20, lodash@npm:^4.17.21, lodash@npm:^4.17.4": version: 4.17.21 resolution: "lodash@npm:4.17.21" - checksum: 8/eb835a2e51d381e561e508ce932ea50a8e5a68f4ebdd771ea240d3048244a8d13658acbd502cd4829768c56f2e16bdd4340b9ea141297d472517b83868e677f7 + checksum: eb835a2e51d381e561e508ce932ea50a8e5a68f4ebdd771ea240d3048244a8d13658acbd502cd4829768c56f2e16bdd4340b9ea141297d472517b83868e677f7 languageName: node linkType: hard @@ -2876,7 +2867,7 @@ __metadata: js-tokens: "npm:^3.0.0 || ^4.0.0" bin: loose-envify: cli.js - checksum: 8/6517e24e0cad87ec9888f500c5b5947032cdfe6ef65e1c1936a0c48a524b81e65542c9c3edc91c97d5bddc806ee2a985dbc79be89215d613b1de5db6d1cfe6f4 + checksum: 6517e24e0cad87ec9888f500c5b5947032cdfe6ef65e1c1936a0c48a524b81e65542c9c3edc91c97d5bddc806ee2a985dbc79be89215d613b1de5db6d1cfe6f4 languageName: node linkType: hard @@ -2885,14 +2876,14 @@ __metadata: resolution: "lru-cache@npm:6.0.0" dependencies: yallist: "npm:^4.0.0" - checksum: 8/f97f499f898f23e4585742138a22f22526254fdba6d75d41a1c2526b3b6cc5747ef59c5612ba7375f42aca4f8461950e925ba08c991ead0651b4918b7c978297 + checksum: f97f499f898f23e4585742138a22f22526254fdba6d75d41a1c2526b3b6cc5747ef59c5612ba7375f42aca4f8461950e925ba08c991ead0651b4918b7c978297 languageName: node linkType: hard "lru-cache@npm:^7.7.1": version: 7.18.3 resolution: "lru-cache@npm:7.18.3" - checksum: 8/e550d772384709deea3f141af34b6d4fa392e2e418c1498c078de0ee63670f1f46f5eee746e8ef7e69e1c895af0d4224e62ee33e66a543a14763b0f2e74c1356 + checksum: e550d772384709deea3f141af34b6d4fa392e2e418c1498c078de0ee63670f1f46f5eee746e8ef7e69e1c895af0d4224e62ee33e66a543a14763b0f2e74c1356 languageName: node linkType: hard @@ -2916,7 +2907,7 @@ __metadata: promise-retry: "npm:^2.0.1" socks-proxy-agent: "npm:^7.0.0" ssri: "npm:^9.0.0" - checksum: 8/2332eb9a8ec96f1ffeeea56ccefabcb4193693597b132cd110734d50f2928842e22b84cfa1508e921b8385cdfd06dda9ad68645fed62b50fff629a580f5fb72c + checksum: 2332eb9a8ec96f1ffeeea56ccefabcb4193693597b132cd110734d50f2928842e22b84cfa1508e921b8385cdfd06dda9ad68645fed62b50fff629a580f5fb72c languageName: node linkType: hard @@ -2925,7 +2916,7 @@ __metadata: resolution: "markdown-to-jsx@npm:7.4.0" peerDependencies: react: ">= 0.14.0" - checksum: 8/59959d14d7927ed8a97e42d39771e2b445b90fa098477fb6ab040f044d230517dc4a95ba38a4f924cfc965a96b32211d93def150a6184f0e51d2cefdc8cb415d + checksum: 59959d14d7927ed8a97e42d39771e2b445b90fa098477fb6ab040f044d230517dc4a95ba38a4f924cfc965a96b32211d93def150a6184f0e51d2cefdc8cb415d languageName: node linkType: hard @@ -2934,7 +2925,7 @@ __metadata: resolution: "minimatch@npm:3.1.2" dependencies: brace-expansion: "npm:^1.1.7" - checksum: 8/c154e566406683e7bcb746e000b84d74465b3a832c45d59912b9b55cd50dee66e5c4b1e5566dba26154040e51672f9aa450a9aef0c97cfc7336b78b7afb9540a + checksum: c154e566406683e7bcb746e000b84d74465b3a832c45d59912b9b55cd50dee66e5c4b1e5566dba26154040e51672f9aa450a9aef0c97cfc7336b78b7afb9540a languageName: node linkType: hard @@ -2943,14 +2934,14 @@ __metadata: resolution: "minimatch@npm:5.1.6" dependencies: brace-expansion: "npm:^2.0.1" - checksum: 8/7564208ef81d7065a370f788d337cd80a689e981042cb9a1d0e6580b6c6a8c9279eba80010516e258835a988363f99f54a6f711a315089b8b42694f5da9d0d77 + checksum: 7564208ef81d7065a370f788d337cd80a689e981042cb9a1d0e6580b6c6a8c9279eba80010516e258835a988363f99f54a6f711a315089b8b42694f5da9d0d77 languageName: node linkType: hard "minimist@npm:^1.2.0, minimist@npm:~1.2.0": version: 1.2.8 resolution: "minimist@npm:1.2.8" - checksum: 8/75a6d645fb122dad29c06a7597bddea977258957ed88d7a6df59b5cd3fe4a527e253e9bbf2e783e4b73657f9098b96a5fe96ab8a113655d4109108577ecf85b0 + checksum: 75a6d645fb122dad29c06a7597bddea977258957ed88d7a6df59b5cd3fe4a527e253e9bbf2e783e4b73657f9098b96a5fe96ab8a113655d4109108577ecf85b0 languageName: node linkType: hard @@ -2959,7 +2950,7 @@ __metadata: resolution: "minipass-collect@npm:1.0.2" dependencies: minipass: "npm:^3.0.0" - checksum: 8/14df761028f3e47293aee72888f2657695ec66bd7d09cae7ad558da30415fdc4752bbfee66287dcc6fd5e6a2fa3466d6c484dc1cbd986525d9393b9523d97f10 + checksum: 14df761028f3e47293aee72888f2657695ec66bd7d09cae7ad558da30415fdc4752bbfee66287dcc6fd5e6a2fa3466d6c484dc1cbd986525d9393b9523d97f10 languageName: node linkType: hard @@ -2974,7 +2965,7 @@ __metadata: dependenciesMeta: encoding: optional: true - checksum: 8/3f216be79164e915fc91210cea1850e488793c740534985da017a4cbc7a5ff50506956d0f73bb0cb60e4fe91be08b6b61ef35101706d3ef5da2c8709b5f08f91 + checksum: 3f216be79164e915fc91210cea1850e488793c740534985da017a4cbc7a5ff50506956d0f73bb0cb60e4fe91be08b6b61ef35101706d3ef5da2c8709b5f08f91 languageName: node linkType: hard @@ -2983,7 +2974,7 @@ __metadata: resolution: "minipass-flush@npm:1.0.5" dependencies: minipass: "npm:^3.0.0" - checksum: 8/56269a0b22bad756a08a94b1ffc36b7c9c5de0735a4dd1ab2b06c066d795cfd1f0ac44a0fcae13eece5589b908ecddc867f04c745c7009be0b566421ea0944cf + checksum: 56269a0b22bad756a08a94b1ffc36b7c9c5de0735a4dd1ab2b06c066d795cfd1f0ac44a0fcae13eece5589b908ecddc867f04c745c7009be0b566421ea0944cf languageName: node linkType: hard @@ -2992,7 +2983,7 @@ __metadata: resolution: "minipass-pipeline@npm:1.2.4" dependencies: minipass: "npm:^3.0.0" - checksum: 8/b14240dac0d29823c3d5911c286069e36d0b81173d7bdf07a7e4a91ecdef92cdff4baaf31ea3746f1c61e0957f652e641223970870e2353593f382112257971b + checksum: b14240dac0d29823c3d5911c286069e36d0b81173d7bdf07a7e4a91ecdef92cdff4baaf31ea3746f1c61e0957f652e641223970870e2353593f382112257971b languageName: node linkType: hard @@ -3001,7 +2992,7 @@ __metadata: resolution: "minipass-sized@npm:1.0.3" dependencies: minipass: "npm:^3.0.0" - checksum: 8/79076749fcacf21b5d16dd596d32c3b6bf4d6e62abb43868fac21674078505c8b15eaca4e47ed844985a4514854f917d78f588fcd029693709417d8f98b2bd60 + checksum: 79076749fcacf21b5d16dd596d32c3b6bf4d6e62abb43868fac21674078505c8b15eaca4e47ed844985a4514854f917d78f588fcd029693709417d8f98b2bd60 languageName: node linkType: hard @@ -3010,14 +3001,14 @@ __metadata: resolution: "minipass@npm:3.3.6" dependencies: yallist: "npm:^4.0.0" - checksum: 8/a30d083c8054cee83cdcdc97f97e4641a3f58ae743970457b1489ce38ee1167b3aaf7d815cd39ec7a99b9c40397fd4f686e83750e73e652b21cb516f6d845e48 + checksum: a30d083c8054cee83cdcdc97f97e4641a3f58ae743970457b1489ce38ee1167b3aaf7d815cd39ec7a99b9c40397fd4f686e83750e73e652b21cb516f6d845e48 languageName: node linkType: hard "minipass@npm:^4.0.0": version: 4.2.8 resolution: "minipass@npm:4.2.8" - checksum: 8/7f4914d5295a9a30807cae5227a37a926e6d910c03f315930fde52332cf0575dfbc20295318f91f0baf0e6bb11a6f668e30cde8027dea7a11b9d159867a3c830 + checksum: 7f4914d5295a9a30807cae5227a37a926e6d910c03f315930fde52332cf0575dfbc20295318f91f0baf0e6bb11a6f668e30cde8027dea7a11b9d159867a3c830 languageName: node linkType: hard @@ -3027,7 +3018,7 @@ __metadata: dependencies: minipass: "npm:^3.0.0" yallist: "npm:^4.0.0" - checksum: 8/f1fdeac0b07cf8f30fcf12f4b586795b97be856edea22b5e9072707be51fc95d41487faec3f265b42973a304fe3a64acd91a44a3826a963e37b37bafde0212c3 + checksum: f1fdeac0b07cf8f30fcf12f4b586795b97be856edea22b5e9072707be51fc95d41487faec3f265b42973a304fe3a64acd91a44a3826a963e37b37bafde0212c3 languageName: node linkType: hard @@ -3036,21 +3027,21 @@ __metadata: resolution: "mkdirp@npm:1.0.4" bin: mkdirp: bin/cmd.js - checksum: 8/a96865108c6c3b1b8e1d5e9f11843de1e077e57737602de1b82030815f311be11f96f09cce59bd5b903d0b29834733e5313f9301e3ed6d6f6fba2eae0df4298f + checksum: a96865108c6c3b1b8e1d5e9f11843de1e077e57737602de1b82030815f311be11f96f09cce59bd5b903d0b29834733e5313f9301e3ed6d6f6fba2eae0df4298f languageName: node linkType: hard "ms@npm:2.0.0": version: 2.0.0 resolution: "ms@npm:2.0.0" - checksum: 8/0e6a22b8b746d2e0b65a430519934fefd41b6db0682e3477c10f60c76e947c4c0ad06f63ffdf1d78d335f83edee8c0aa928aa66a36c7cd95b69b26f468d527f4 + checksum: 0e6a22b8b746d2e0b65a430519934fefd41b6db0682e3477c10f60c76e947c4c0ad06f63ffdf1d78d335f83edee8c0aa928aa66a36c7cd95b69b26f468d527f4 languageName: node linkType: hard "ms@npm:2.1.2, ms@npm:^2.0.0": version: 2.1.2 resolution: "ms@npm:2.1.2" - checksum: 8/673cdb2c3133eb050c745908d8ce632ed2c02d85640e2edb3ace856a2266a813b30c613569bf3354fdf4ea7d1a1494add3bfa95e2713baa27d0c2c71fc44f58f + checksum: 673cdb2c3133eb050c745908d8ce632ed2c02d85640e2edb3ace856a2266a813b30c613569bf3354fdf4ea7d1a1494add3bfa95e2713baa27d0c2c71fc44f58f languageName: node linkType: hard @@ -3059,14 +3050,14 @@ __metadata: resolution: "nanoid@npm:3.3.8" bin: nanoid: bin/nanoid.cjs - checksum: 8/dfe0adbc0c77e9655b550c333075f51bb28cfc7568afbf3237249904f9c86c9aaaed1f113f0fddddba75673ee31c758c30c43d4414f014a52a7a626efc5958c9 + checksum: dfe0adbc0c77e9655b550c333075f51bb28cfc7568afbf3237249904f9c86c9aaaed1f113f0fddddba75673ee31c758c30c43d4414f014a52a7a626efc5958c9 languageName: node linkType: hard "negotiator@npm:^0.6.3": version: 0.6.3 resolution: "negotiator@npm:0.6.3" - checksum: 8/b8ffeb1e262eff7968fc90a2b6767b04cfd9842582a9d0ece0af7049537266e7b2506dfb1d107a32f06dd849ab2aea834d5830f7f4d0e5cb7d36e1ae55d021d9 + checksum: b8ffeb1e262eff7968fc90a2b6767b04cfd9842582a9d0ece0af7049537266e7b2506dfb1d107a32f06dd849ab2aea834d5830f7f4d0e5cb7d36e1ae55d021d9 languageName: node linkType: hard @@ -3080,7 +3071,7 @@ __metadata: peerDependenciesMeta: encoding: optional: true - checksum: 8/acb04f9ce7224965b2b59e71b33c639794d8991efd73855b0b250921382b38331ffc9d61bce502571f6cc6e11a8905ca9b1b6d4aeb586ab093e2756a1fd190d0 + checksum: acb04f9ce7224965b2b59e71b33c639794d8991efd73855b0b250921382b38331ffc9d61bce502571f6cc6e11a8905ca9b1b6d4aeb586ab093e2756a1fd190d0 languageName: node linkType: hard @@ -3100,7 +3091,7 @@ __metadata: which: "npm:^2.0.2" bin: node-gyp: bin/node-gyp.js - checksum: 8/b860e9976fa645ca0789c69e25387401b4396b93c8375489b5151a6c55cf2640a3b6183c212b38625ef7c508994930b72198338e3d09b9d7ade5acc4aaf51ea7 + checksum: b860e9976fa645ca0789c69e25387401b4396b93c8375489b5151a6c55cf2640a3b6183c212b38625ef7c508994930b72198338e3d09b9d7ade5acc4aaf51ea7 languageName: node linkType: hard @@ -3111,7 +3102,7 @@ __metadata: abbrev: "npm:^1.0.0" bin: nopt: bin/nopt.js - checksum: 8/82149371f8be0c4b9ec2f863cc6509a7fd0fa729929c009f3a58e4eb0c9e4cae9920e8f1f8eb46e7d032fec8fb01bede7f0f41a67eb3553b7b8e14fa53de1dac + checksum: 82149371f8be0c4b9ec2f863cc6509a7fd0fa729929c009f3a58e4eb0c9e4cae9920e8f1f8eb46e7d032fec8fb01bede7f0f41a67eb3553b7b8e14fa53de1dac languageName: node linkType: hard @@ -3123,14 +3114,14 @@ __metadata: console-control-strings: "npm:^1.1.0" gauge: "npm:^4.0.3" set-blocking: "npm:^2.0.0" - checksum: 8/ae238cd264a1c3f22091cdd9e2b106f684297d3c184f1146984ecbe18aaa86343953f26b9520dedd1b1372bc0316905b736c1932d778dbeb1fcf5a1001390e2a + checksum: ae238cd264a1c3f22091cdd9e2b106f684297d3c184f1146984ecbe18aaa86343953f26b9520dedd1b1372bc0316905b736c1932d778dbeb1fcf5a1001390e2a languageName: node linkType: hard "object-assign@npm:^4.1.1": version: 4.1.1 resolution: "object-assign@npm:4.1.1" - checksum: 8/fcc6e4ea8c7fe48abfbb552578b1c53e0d194086e2e6bbbf59e0a536381a292f39943c6e9628af05b5528aa5e3318bb30d6b2e53cadaf5b8fe9e12c4b69af23f + checksum: fcc6e4ea8c7fe48abfbb552578b1c53e0d194086e2e6bbbf59e0a536381a292f39943c6e9628af05b5528aa5e3318bb30d6b2e53cadaf5b8fe9e12c4b69af23f languageName: node linkType: hard @@ -3139,7 +3130,7 @@ __metadata: resolution: "once@npm:1.4.0" dependencies: wrappy: "npm:1" - checksum: 8/cd0a88501333edd640d95f0d2700fbde6bff20b3d4d9bdc521bdd31af0656b5706570d6c6afe532045a20bb8dc0849f8332d6f2a416e0ba6d3d3b98806c7db68 + checksum: cd0a88501333edd640d95f0d2700fbde6bff20b3d4d9bdc521bdd31af0656b5706570d6c6afe532045a20bb8dc0849f8332d6f2a416e0ba6d3d3b98806c7db68 languageName: node linkType: hard @@ -3148,28 +3139,28 @@ __metadata: resolution: "p-map@npm:4.0.0" dependencies: aggregate-error: "npm:^3.0.0" - checksum: 8/cb0ab21ec0f32ddffd31dfc250e3afa61e103ef43d957cc45497afe37513634589316de4eb88abdfd969fe6410c22c0b93ab24328833b8eb1ccc087fc0442a1c + checksum: cb0ab21ec0f32ddffd31dfc250e3afa61e103ef43d957cc45497afe37513634589316de4eb88abdfd969fe6410c22c0b93ab24328833b8eb1ccc087fc0442a1c languageName: node linkType: hard "parse-srcset@npm:^1.0.2": version: 1.0.2 resolution: "parse-srcset@npm:1.0.2" - checksum: 8/3a0380380c6082021fcce982f0b89fb8a493ce9dfd7d308e5e6d855201e80db8b90438649b31fdd82a3d6089a8ca17dccddaa2b730a718389af4c037b8539ebf + checksum: 3a0380380c6082021fcce982f0b89fb8a493ce9dfd7d308e5e6d855201e80db8b90438649b31fdd82a3d6089a8ca17dccddaa2b730a718389af4c037b8539ebf languageName: node linkType: hard "path-browserify@npm:^1.0.0": version: 1.0.1 resolution: "path-browserify@npm:1.0.1" - checksum: 8/c6d7fa376423fe35b95b2d67990060c3ee304fc815ff0a2dc1c6c3cfaff2bd0d572ee67e18f19d0ea3bbe32e8add2a05021132ac40509416459fffee35200699 + checksum: c6d7fa376423fe35b95b2d67990060c3ee304fc815ff0a2dc1c6c3cfaff2bd0d572ee67e18f19d0ea3bbe32e8add2a05021132ac40509416459fffee35200699 languageName: node linkType: hard "path-is-absolute@npm:^1.0.0": version: 1.0.1 resolution: "path-is-absolute@npm:1.0.1" - checksum: 8/060840f92cf8effa293bcc1bea81281bd7d363731d214cbe5c227df207c34cd727430f70c6037b5159c8a870b9157cba65e775446b0ab06fd5ecc7e54615a3b8 + checksum: 060840f92cf8effa293bcc1bea81281bd7d363731d214cbe5c227df207c34cd727430f70c6037b5159c8a870b9157cba65e775446b0ab06fd5ecc7e54615a3b8 languageName: node linkType: hard @@ -3179,38 +3170,38 @@ __metadata: dependencies: process: "npm:^0.11.1" util: "npm:^0.10.3" - checksum: 8/5dedb71e78fc008fcba797defc0b4e1cf06c1f18e0a631e03ba5bb505136f587ff017afc14f9a3d481cbe77aeedff7dc0c1d2ce4d820c1ebf3c4281ca49423a1 + checksum: 5dedb71e78fc008fcba797defc0b4e1cf06c1f18e0a631e03ba5bb505136f587ff017afc14f9a3d481cbe77aeedff7dc0c1d2ce4d820c1ebf3c4281ca49423a1 languageName: node linkType: hard "picocolors@npm:^1.0.0": version: 1.0.0 resolution: "picocolors@npm:1.0.0" - checksum: 8/a2e8092dd86c8396bdba9f2b5481032848525b3dc295ce9b57896f931e63fc16f79805144321f72976383fc249584672a75cc18d6777c6b757603f372f745981 + checksum: a2e8092dd86c8396bdba9f2b5481032848525b3dc295ce9b57896f931e63fc16f79805144321f72976383fc249584672a75cc18d6777c6b757603f372f745981 languageName: node linkType: hard -"playwright-core@npm:1.50.1": - version: 1.50.1 - resolution: "playwright-core@npm:1.50.1" +"playwright-core@npm:1.51.0": + version: 1.51.0 + resolution: "playwright-core@npm:1.51.0" bin: playwright-core: cli.js - checksum: 8/9c9c3115e8c39c9a2f4e0dc5b2bc1d76925fb0244051ace2bcffc7b2b66cf6fe1b96d9162f81bc7d9b7811b8c6f9df5aa93052d1284bfd6d30203bf4f7b58868 + checksum: e14798a7323539e1d6f076a6aa0492ea7c5fa89f4db85a53b27001b0f84bde2a5f8b14e25e05c5396594c89173a48398728522932bb7bd2006dd4bb48c8b0979 languageName: node linkType: hard -"playwright@npm:1.50.1": - version: 1.50.1 - resolution: "playwright@npm:1.50.1" +"playwright@npm:1.51.0": + version: 1.51.0 + resolution: "playwright@npm:1.51.0" dependencies: - fsevents: "npm:2.3.2" - playwright-core: "npm:1.50.1" + fsevents: 2.3.2 + playwright-core: 1.51.0 dependenciesMeta: fsevents: optional: true bin: playwright: cli.js - checksum: 8/02e3618acf7d0e08b45c4f4de0be259b83549e9551af9d5902fcc5a2a9c9667e8ef3e94ef62160bad1cda03aa643dbd01e418640a20f656cf4464afdf4b73bbd + checksum: 02ec1077e2997872415fd40c9a5df6fd796d9cc15dade24bff9a88a16a451217744d850bdfc09efd4812d05c2fc856f92bfe106aae036fe21defa62c6d5b8ea5 languageName: node linkType: hard @@ -3221,28 +3212,28 @@ __metadata: nanoid: "npm:^3.3.6" picocolors: "npm:^1.0.0" source-map-js: "npm:^1.0.2" - checksum: 8/1d8611341b073143ad90486fcdfeab49edd243377b1f51834dc4f6d028e82ce5190e4f11bb2633276864503654fb7cab28e67abdc0fbf9d1f88cad4a0ff0beea + checksum: 1d8611341b073143ad90486fcdfeab49edd243377b1f51834dc4f6d028e82ce5190e4f11bb2633276864503654fb7cab28e67abdc0fbf9d1f88cad4a0ff0beea languageName: node linkType: hard "process-nextick-args@npm:~2.0.0": version: 2.0.1 resolution: "process-nextick-args@npm:2.0.1" - checksum: 8/1d38588e520dab7cea67cbbe2efdd86a10cc7a074c09657635e34f035277b59fbb57d09d8638346bf7090f8e8ebc070c96fa5fd183b777fff4f5edff5e9466cf + checksum: 1d38588e520dab7cea67cbbe2efdd86a10cc7a074c09657635e34f035277b59fbb57d09d8638346bf7090f8e8ebc070c96fa5fd183b777fff4f5edff5e9466cf languageName: node linkType: hard "process@npm:^0.11.1": version: 0.11.10 resolution: "process@npm:0.11.10" - checksum: 8/bfcce49814f7d172a6e6a14d5fa3ac92cc3d0c3b9feb1279774708a719e19acd673995226351a082a9ae99978254e320ccda4240ddc474ba31a76c79491ca7c3 + checksum: bfcce49814f7d172a6e6a14d5fa3ac92cc3d0c3b9feb1279774708a719e19acd673995226351a082a9ae99978254e320ccda4240ddc474ba31a76c79491ca7c3 languageName: node linkType: hard "promise-inflight@npm:^1.0.1": version: 1.0.1 resolution: "promise-inflight@npm:1.0.1" - checksum: 8/22749483091d2c594261517f4f80e05226d4d5ecc1fc917e1886929da56e22b5718b7f2a75f3807e7a7d471bc3be2907fe92e6e8f373ddf5c64bae35b5af3981 + checksum: 22749483091d2c594261517f4f80e05226d4d5ecc1fc917e1886929da56e22b5718b7f2a75f3807e7a7d471bc3be2907fe92e6e8f373ddf5c64bae35b5af3981 languageName: node linkType: hard @@ -3252,7 +3243,7 @@ __metadata: dependencies: err-code: "npm:^2.0.2" retry: "npm:^0.12.0" - checksum: 8/f96a3f6d90b92b568a26f71e966cbbc0f63ab85ea6ff6c81284dc869b41510e6cdef99b6b65f9030f0db422bf7c96652a3fff9f2e8fb4a0f069d8f4430359429 + checksum: f96a3f6d90b92b568a26f71e966cbbc0f63ab85ea6ff6c81284dc869b41510e6cdef99b6b65f9030f0db422bf7c96652a3fff9f2e8fb4a0f069d8f4430359429 languageName: node linkType: hard @@ -3263,21 +3254,21 @@ __metadata: loose-envify: "npm:^1.4.0" object-assign: "npm:^4.1.1" react-is: "npm:^16.13.1" - checksum: 8/c056d3f1c057cb7ff8344c645450e14f088a915d078dcda795041765047fa080d38e5d626560ccaac94a4e16e3aa15f3557c1a9a8d1174530955e992c675e459 + checksum: c056d3f1c057cb7ff8344c645450e14f088a915d078dcda795041765047fa080d38e5d626560ccaac94a4e16e3aa15f3557c1a9a8d1174530955e992c675e459 languageName: node linkType: hard "punycode@npm:^2.1.0": version: 2.3.0 resolution: "punycode@npm:2.3.0" - checksum: 8/39f760e09a2a3bbfe8f5287cf733ecdad69d6af2fe6f97ca95f24b8921858b91e9ea3c9eeec6e08cede96181b3bb33f95c6ffd8c77e63986508aa2e8159fa200 + checksum: 39f760e09a2a3bbfe8f5287cf733ecdad69d6af2fe6f97ca95f24b8921858b91e9ea3c9eeec6e08cede96181b3bb33f95c6ffd8c77e63986508aa2e8159fa200 languageName: node linkType: hard "querystringify@npm:^2.1.1": version: 2.2.0 resolution: "querystringify@npm:2.2.0" - checksum: 8/5641ea231bad7ef6d64d9998faca95611ed4b11c2591a8cae741e178a974f6a8e0ebde008475259abe1621cb15e692404e6b6626e927f7b849d5c09392604b15 + checksum: 5641ea231bad7ef6d64d9998faca95611ed4b11c2591a8cae741e178a974f6a8e0ebde008475259abe1621cb15e692404e6b6626e927f7b849d5c09392604b15 languageName: node linkType: hard @@ -3289,21 +3280,21 @@ __metadata: scheduler: "npm:^0.23.0" peerDependencies: react: ^18.2.0 - checksum: 8/7d323310bea3a91be2965f9468d552f201b1c27891e45ddc2d6b8f717680c95a75ae0bc1e3f5cf41472446a2589a75aed4483aee8169287909fcd59ad149e8cc + checksum: 7d323310bea3a91be2965f9468d552f201b1c27891e45ddc2d6b8f717680c95a75ae0bc1e3f5cf41472446a2589a75aed4483aee8169287909fcd59ad149e8cc languageName: node linkType: hard "react-is@npm:^16.13.1": version: 16.13.1 resolution: "react-is@npm:16.13.1" - checksum: 8/f7a19ac3496de32ca9ae12aa030f00f14a3d45374f1ceca0af707c831b2a6098ef0d6bdae51bd437b0a306d7f01d4677fcc8de7c0d331eb47ad0f46130e53c5f + checksum: f7a19ac3496de32ca9ae12aa030f00f14a3d45374f1ceca0af707c831b2a6098ef0d6bdae51bd437b0a306d7f01d4677fcc8de7c0d331eb47ad0f46130e53c5f languageName: node linkType: hard "react-is@npm:^18.2.0": version: 18.2.0 resolution: "react-is@npm:18.2.0" - checksum: 8/e72d0ba81b5922759e4aff17e0252bd29988f9642ed817f56b25a3e217e13eea8a7f2322af99a06edb779da12d5d636e9fda473d620df9a3da0df2a74141d53e + checksum: e72d0ba81b5922759e4aff17e0252bd29988f9642ed817f56b25a3e217e13eea8a7f2322af99a06edb779da12d5d636e9fda473d620df9a3da0df2a74141d53e languageName: node linkType: hard @@ -3312,7 +3303,7 @@ __metadata: resolution: "react@npm:18.2.0" dependencies: loose-envify: "npm:^1.1.0" - checksum: 8/88e38092da8839b830cda6feef2e8505dec8ace60579e46aa5490fc3dc9bba0bd50336507dc166f43e3afc1c42939c09fe33b25fae889d6f402721dcd78fca1b + checksum: 88e38092da8839b830cda6feef2e8505dec8ace60579e46aa5490fc3dc9bba0bd50336507dc166f43e3afc1c42939c09fe33b25fae889d6f402721dcd78fca1b languageName: node linkType: hard @@ -3327,7 +3318,7 @@ __metadata: safe-buffer: "npm:~5.1.1" string_decoder: "npm:~1.1.1" util-deprecate: "npm:~1.0.1" - checksum: 8/65645467038704f0c8aaf026a72fbb588a9e2ef7a75cd57a01702ee9db1c4a1e4b03aaad36861a6a0926546a74d174149c8c207527963e0c2d3eee2f37678a42 + checksum: 65645467038704f0c8aaf026a72fbb588a9e2ef7a75cd57a01702ee9db1c4a1e4b03aaad36861a6a0926546a74d174149c8c207527963e0c2d3eee2f37678a42 languageName: node linkType: hard @@ -3338,7 +3329,7 @@ __metadata: inherits: "npm:^2.0.3" string_decoder: "npm:^1.1.1" util-deprecate: "npm:^1.0.1" - checksum: 8/bdcbe6c22e846b6af075e32cf8f4751c2576238c5043169a1c221c92ee2878458a816a4ea33f4c67623c0b6827c8a400409bfb3cf0bf3381392d0b1dfb52ac8d + checksum: bdcbe6c22e846b6af075e32cf8f4751c2576238c5043169a1c221c92ee2878458a816a4ea33f4c67623c0b6827c8a400409bfb3cf0bf3381392d0b1dfb52ac8d languageName: node linkType: hard @@ -3347,7 +3338,7 @@ __metadata: resolution: "regexp-match-indices@npm:1.0.2" dependencies: regexp-tree: "npm:^0.1.11" - checksum: 8/8cc779f6cf8f404ead828d09970a7d4bd66bd78d43ab9eb2b5e65f2ef2ba1ed53536f5b5fa839fb90b350365fb44b6a851c7f16289afc3f37789c113ab2a7916 + checksum: 8cc779f6cf8f404ead828d09970a7d4bd66bd78d43ab9eb2b5e65f2ef2ba1ed53536f5b5fa839fb90b350365fb44b6a851c7f16289afc3f37789c113ab2a7916 languageName: node linkType: hard @@ -3356,35 +3347,35 @@ __metadata: resolution: "regexp-tree@npm:0.1.25" bin: regexp-tree: bin/regexp-tree - checksum: 8/7117d2378376c4ea0d088f19cb68b210daffe23d5b7c1c604e9d4576470ea5f07624727fc88de969dd71abdb720bd32205407f954c6dcc4a4320cb599651e2f6 + checksum: 7117d2378376c4ea0d088f19cb68b210daffe23d5b7c1c604e9d4576470ea5f07624727fc88de969dd71abdb720bd32205407f954c6dcc4a4320cb599651e2f6 languageName: node linkType: hard "require-directory@npm:^2.1.1": version: 2.1.1 resolution: "require-directory@npm:2.1.1" - checksum: 8/fb47e70bf0001fdeabdc0429d431863e9475e7e43ea5f94ad86503d918423c1543361cc5166d713eaa7029dd7a3d34775af04764bebff99ef413111a5af18c80 + checksum: fb47e70bf0001fdeabdc0429d431863e9475e7e43ea5f94ad86503d918423c1543361cc5166d713eaa7029dd7a3d34775af04764bebff99ef413111a5af18c80 languageName: node linkType: hard "require-from-string@npm:^2.0.2": version: 2.0.2 resolution: "require-from-string@npm:2.0.2" - checksum: 8/a03ef6895445f33a4015300c426699bc66b2b044ba7b670aa238610381b56d3f07c686251740d575e22f4c87531ba662d06937508f0f3c0f1ddc04db3130560b + checksum: a03ef6895445f33a4015300c426699bc66b2b044ba7b670aa238610381b56d3f07c686251740d575e22f4c87531ba662d06937508f0f3c0f1ddc04db3130560b languageName: node linkType: hard "requires-port@npm:^1.0.0": version: 1.0.0 resolution: "requires-port@npm:1.0.0" - checksum: 8/eee0e303adffb69be55d1a214e415cf42b7441ae858c76dfc5353148644f6fd6e698926fc4643f510d5c126d12a705e7c8ed7e38061113bdf37547ab356797ff + checksum: eee0e303adffb69be55d1a214e415cf42b7441ae858c76dfc5353148644f6fd6e698926fc4643f510d5c126d12a705e7c8ed7e38061113bdf37547ab356797ff languageName: node linkType: hard "retry@npm:^0.12.0": version: 0.12.0 resolution: "retry@npm:0.12.0" - checksum: 8/623bd7d2e5119467ba66202d733ec3c2e2e26568074923bc0585b6b99db14f357e79bdedb63cab56cec47491c4a0da7e6021a7465ca6dc4f481d3898fdd3158c + checksum: 623bd7d2e5119467ba66202d733ec3c2e2e26568074923bc0585b6b99db14f357e79bdedb63cab56cec47491c4a0da7e6021a7465ca6dc4f481d3898fdd3158c languageName: node linkType: hard @@ -3395,35 +3386,35 @@ __metadata: glob: "npm:^7.1.3" bin: rimraf: bin.js - checksum: 8/87f4164e396f0171b0a3386cc1877a817f572148ee13a7e113b238e48e8a9f2f31d009a92ec38a591ff1567d9662c6b67fd8818a2dbbaed74bc26a87a2a4a9a0 + checksum: 87f4164e396f0171b0a3386cc1877a817f572148ee13a7e113b238e48e8a9f2f31d009a92ec38a591ff1567d9662c6b67fd8818a2dbbaed74bc26a87a2a4a9a0 languageName: node linkType: hard "robust-predicates@npm:^3.0.0": version: 3.0.1 resolution: "robust-predicates@npm:3.0.1" - checksum: 8/45e9de2df4380da84a2a561d4fd54ea92194e878b93ed19d5e4bc90f4e834a13755e846c8516bab8360190309696f0564a0150386c52ef01f70f2b388449dac5 + checksum: 45e9de2df4380da84a2a561d4fd54ea92194e878b93ed19d5e4bc90f4e834a13755e846c8516bab8360190309696f0564a0150386c52ef01f70f2b388449dac5 languageName: node linkType: hard "rw@npm:1": version: 1.3.3 resolution: "rw@npm:1.3.3" - checksum: 8/c20d82421f5a71c86a13f76121b751553a99cd4a70ea27db86f9b23f33db941f3f06019c30f60d50c356d0bd674c8e74764ac146ea55e217c091bde6fba82aa3 + checksum: c20d82421f5a71c86a13f76121b751553a99cd4a70ea27db86f9b23f33db941f3f06019c30f60d50c356d0bd674c8e74764ac146ea55e217c091bde6fba82aa3 languageName: node linkType: hard "safe-buffer@npm:~5.1.0, safe-buffer@npm:~5.1.1": version: 5.1.2 resolution: "safe-buffer@npm:5.1.2" - checksum: 8/f2f1f7943ca44a594893a852894055cf619c1fbcb611237fc39e461ae751187e7baf4dc391a72125e0ac4fb2d8c5c0b3c71529622e6a58f46b960211e704903c + checksum: f2f1f7943ca44a594893a852894055cf619c1fbcb611237fc39e461ae751187e7baf4dc391a72125e0ac4fb2d8c5c0b3c71529622e6a58f46b960211e704903c languageName: node linkType: hard "safer-buffer@npm:>= 2.1.2 < 3.0.0": version: 2.1.2 resolution: "safer-buffer@npm:2.1.2" - checksum: 8/cab8f25ae6f1434abee8d80023d7e72b598cf1327164ddab31003c51215526801e40b66c5e65d658a0af1e9d6478cadcb4c745f4bd6751f97d8644786c0978b0 + checksum: cab8f25ae6f1434abee8d80023d7e72b598cf1327164ddab31003c51215526801e40b66c5e65d658a0af1e9d6478cadcb4c745f4bd6751f97d8644786c0978b0 languageName: node linkType: hard @@ -3437,7 +3428,7 @@ __metadata: is-plain-object: "npm:^5.0.0" parse-srcset: "npm:^1.0.2" postcss: "npm:^8.3.11" - checksum: 8/fb96ea7170d51b5af2607f5cfd84464c78fc6f47e339407f55783e781c6a0288a8d40bbf97ea6a8758924ba9b2d33dcc4846bb94caacacd90d7f2de10ed8541a + checksum: fb96ea7170d51b5af2607f5cfd84464c78fc6f47e339407f55783e781c6a0288a8d40bbf97ea6a8758924ba9b2d33dcc4846bb94caacacd90d7f2de10ed8541a languageName: node linkType: hard @@ -3446,7 +3437,7 @@ __metadata: resolution: "scheduler@npm:0.23.0" dependencies: loose-envify: "npm:^1.1.0" - checksum: 8/d79192eeaa12abef860c195ea45d37cbf2bbf5f66e3c4dcd16f54a7da53b17788a70d109ee3d3dde1a0fd50e6a8fc171f4300356c5aee4fc0171de526bf35f8a + checksum: d79192eeaa12abef860c195ea45d37cbf2bbf5f66e3c4dcd16f54a7da53b17788a70d109ee3d3dde1a0fd50e6a8fc171f4300356c5aee4fc0171de526bf35f8a languageName: node linkType: hard @@ -3457,28 +3448,28 @@ __metadata: lru-cache: "npm:^6.0.0" bin: semver: bin/semver.js - checksum: 8/9d58db16525e9f749ad0a696a1f27deabaa51f66e91d2fa2b0db3de3e9644e8677de3b7d7a03f4c15bc81521e0c3916d7369e0572dbde250d9bedf5194e2a8a7 + checksum: 9d58db16525e9f749ad0a696a1f27deabaa51f66e91d2fa2b0db3de3e9644e8677de3b7d7a03f4c15bc81521e0c3916d7369e0572dbde250d9bedf5194e2a8a7 languageName: node linkType: hard "set-blocking@npm:^2.0.0": version: 2.0.0 resolution: "set-blocking@npm:2.0.0" - checksum: 8/6e65a05f7cf7ebdf8b7c75b101e18c0b7e3dff4940d480efed8aad3a36a4005140b660fa1d804cb8bce911cac290441dc728084a30504d3516ac2ff7ad607b02 + checksum: 6e65a05f7cf7ebdf8b7c75b101e18c0b7e3dff4940d480efed8aad3a36a4005140b660fa1d804cb8bce911cac290441dc728084a30504d3516ac2ff7ad607b02 languageName: node linkType: hard "signal-exit@npm:^3.0.7": version: 3.0.7 resolution: "signal-exit@npm:3.0.7" - checksum: 8/a2f098f247adc367dffc27845853e9959b9e88b01cb301658cfe4194352d8d2bb32e18467c786a7fe15f1d44b233ea35633d076d5e737870b7139949d1ab6318 + checksum: a2f098f247adc367dffc27845853e9959b9e88b01cb301658cfe4194352d8d2bb32e18467c786a7fe15f1d44b233ea35633d076d5e737870b7139949d1ab6318 languageName: node linkType: hard "smart-buffer@npm:^4.2.0": version: 4.2.0 resolution: "smart-buffer@npm:4.2.0" - checksum: 8/b5167a7142c1da704c0e3af85c402002b597081dd9575031a90b4f229ca5678e9a36e8a374f1814c8156a725d17008ae3bde63b92f9cfd132526379e580bec8b + checksum: b5167a7142c1da704c0e3af85c402002b597081dd9575031a90b4f229ca5678e9a36e8a374f1814c8156a725d17008ae3bde63b92f9cfd132526379e580bec8b languageName: node linkType: hard @@ -3489,7 +3480,7 @@ __metadata: agent-base: "npm:^6.0.2" debug: "npm:^4.3.3" socks: "npm:^2.6.2" - checksum: 8/720554370154cbc979e2e9ce6a6ec6ced205d02757d8f5d93fe95adae454fc187a5cbfc6b022afab850a5ce9b4c7d73e0f98e381879cf45f66317a4895953846 + checksum: 720554370154cbc979e2e9ce6a6ec6ced205d02757d8f5d93fe95adae454fc187a5cbfc6b022afab850a5ce9b4c7d73e0f98e381879cf45f66317a4895953846 languageName: node linkType: hard @@ -3499,14 +3490,14 @@ __metadata: dependencies: ip: "npm:^2.0.0" smart-buffer: "npm:^4.2.0" - checksum: 8/259d9e3e8e1c9809a7f5c32238c3d4d2a36b39b83851d0f573bfde5f21c4b1288417ce1af06af1452569cd1eb0841169afd4998f0e04ba04656f6b7f0e46d748 + checksum: 259d9e3e8e1c9809a7f5c32238c3d4d2a36b39b83851d0f573bfde5f21c4b1288417ce1af06af1452569cd1eb0841169afd4998f0e04ba04656f6b7f0e46d748 languageName: node linkType: hard "source-map-js@npm:^1.0.2": version: 1.0.2 resolution: "source-map-js@npm:1.0.2" - checksum: 8/c049a7fc4deb9a7e9b481ae3d424cc793cb4845daa690bc5a05d428bf41bf231ced49b4cf0c9e77f9d42fdb3d20d6187619fc586605f5eabe995a316da8d377c + checksum: c049a7fc4deb9a7e9b481ae3d424cc793cb4845daa690bc5a05d428bf41bf231ced49b4cf0c9e77f9d42fdb3d20d6187619fc586605f5eabe995a316da8d377c languageName: node linkType: hard @@ -3515,7 +3506,7 @@ __metadata: resolution: "ssri@npm:9.0.1" dependencies: minipass: "npm:^3.1.1" - checksum: 8/fb58f5e46b6923ae67b87ad5ef1c5ab6d427a17db0bead84570c2df3cd50b4ceb880ebdba2d60726588272890bae842a744e1ecce5bd2a2a582fccd5068309eb + checksum: fb58f5e46b6923ae67b87ad5ef1c5ab6d427a17db0bead84570c2df3cd50b4ceb880ebdba2d60726588272890bae842a744e1ecce5bd2a2a582fccd5068309eb languageName: node linkType: hard @@ -3526,7 +3517,7 @@ __metadata: emoji-regex: "npm:^8.0.0" is-fullwidth-code-point: "npm:^3.0.0" strip-ansi: "npm:^6.0.1" - checksum: 8/e52c10dc3fbfcd6c3a15f159f54a90024241d0f149cf8aed2982a2d801d2e64df0bf1dc351cf8e95c3319323f9f220c16e740b06faecd53e2462df1d2b5443fb + checksum: e52c10dc3fbfcd6c3a15f159f54a90024241d0f149cf8aed2982a2d801d2e64df0bf1dc351cf8e95c3319323f9f220c16e740b06faecd53e2462df1d2b5443fb languageName: node linkType: hard @@ -3535,7 +3526,7 @@ __metadata: resolution: "string_decoder@npm:1.1.1" dependencies: safe-buffer: "npm:~5.1.0" - checksum: 8/9ab7e56f9d60a28f2be697419917c50cac19f3e8e6c28ef26ed5f4852289fe0de5d6997d29becf59028556f2c62983790c1d9ba1e2a3cc401768ca12d5183a5b + checksum: 9ab7e56f9d60a28f2be697419917c50cac19f3e8e6c28ef26ed5f4852289fe0de5d6997d29becf59028556f2c62983790c1d9ba1e2a3cc401768ca12d5183a5b languageName: node linkType: hard @@ -3544,14 +3535,14 @@ __metadata: resolution: "strip-ansi@npm:6.0.1" dependencies: ansi-regex: "npm:^5.0.1" - checksum: 8/f3cd25890aef3ba6e1a74e20896c21a46f482e93df4a06567cebf2b57edabb15133f1f94e57434e0a958d61186087b1008e89c94875d019910a213181a14fc8c + checksum: f3cd25890aef3ba6e1a74e20896c21a46f482e93df4a06567cebf2b57edabb15133f1f94e57434e0a958d61186087b1008e89c94875d019910a213181a14fc8c languageName: node linkType: hard "style-mod@npm:^4.0.0, style-mod@npm:^4.1.0": version: 4.1.2 resolution: "style-mod@npm:4.1.2" - checksum: 8/7c5c3e82747f9bcf5f288d8d07f50848e4630fe5ff7bfe4d94cc87d6b6a2588227cbf21b4c792ac6406e5852293300a75e710714479a5c59a06af677f0825ef8 + checksum: 7c5c3e82747f9bcf5f288d8d07f50848e4630fe5ff7bfe4d94cc87d6b6a2588227cbf21b4c792ac6406e5852293300a75e710714479a5c59a06af677f0825ef8 languageName: node linkType: hard @@ -3560,7 +3551,7 @@ __metadata: resolution: "systeminformation@npm:5.23.14" bin: systeminformation: lib/cli.js - checksum: 8/357edd8c82f2f26635396897f647cbb190075e677f84840e151f3bdf7b6b0361ae9267ae8cf1e09c337db52be1ce114648487d3e18b923488a66a7d8162a3c28 + checksum: 357edd8c82f2f26635396897f647cbb190075e677f84840e151f3bdf7b6b0361ae9267ae8cf1e09c337db52be1ce114648487d3e18b923488a66a7d8162a3c28 conditions: (os=darwin | os=linux | os=win32 | os=freebsd | os=openbsd | os=netbsd | os=sunos | os=android) languageName: node linkType: hard @@ -3568,7 +3559,7 @@ __metadata: "tabbable@npm:^5.2.0": version: 5.3.3 resolution: "tabbable@npm:5.3.3" - checksum: 8/1aa56e1bb617cc10616c407f4e756f0607f3e2d30f9803664d70b85db037ca27e75918ed1c71443f3dc902e21dc9f991ce4b52d63a538c9b69b3218d3babcd70 + checksum: 1aa56e1bb617cc10616c407f4e756f0607f3e2d30f9803664d70b85db037ca27e75918ed1c71443f3dc902e21dc9f991ce4b52d63a538c9b69b3218d3babcd70 languageName: node linkType: hard @@ -3582,7 +3573,7 @@ __metadata: minizlib: "npm:^2.1.1" mkdirp: "npm:^1.0.3" yallist: "npm:^4.0.0" - checksum: 8/8a278bed123aa9f53549b256a36b719e317c8b96fe86a63406f3c62887f78267cea9b22dc6f7007009738509800d4a4dccc444abd71d762287c90f35b002eb1c + checksum: 8a278bed123aa9f53549b256a36b719e317c8b96fe86a63406f3c62887f78267cea9b22dc6f7007009738509800d4a4dccc444abd71d762287c90f35b002eb1c languageName: node linkType: hard @@ -3595,28 +3586,28 @@ __metadata: topo2geo: bin/topo2geo topomerge: bin/topomerge topoquantize: bin/topoquantize - checksum: 8/8c029a4f18324ace0b8b55dd90edbd40c9e3c6de18bafbb5da37ca20ebf20e26fbd4420891acb3c2c264e214185f7557871f5651a9eee517028663be98d836de + checksum: 8c029a4f18324ace0b8b55dd90edbd40c9e3c6de18bafbb5da37ca20ebf20e26fbd4420891acb3c2c264e214185f7557871f5651a9eee517028663be98d836de languageName: node linkType: hard "tr46@npm:~0.0.3": version: 0.0.3 resolution: "tr46@npm:0.0.3" - checksum: 8/726321c5eaf41b5002e17ffbd1fb7245999a073e8979085dacd47c4b4e8068ff5777142fc6726d6ca1fd2ff16921b48788b87225cbc57c72636f6efa8efbffe3 + checksum: 726321c5eaf41b5002e17ffbd1fb7245999a073e8979085dacd47c4b4e8068ff5777142fc6726d6ca1fd2ff16921b48788b87225cbc57c72636f6efa8efbffe3 languageName: node linkType: hard "tslib@npm:^1.13.0": version: 1.14.1 resolution: "tslib@npm:1.14.1" - checksum: 8/dbe628ef87f66691d5d2959b3e41b9ca0045c3ee3c7c7b906cc1e328b39f199bb1ad9e671c39025bd56122ac57dfbf7385a94843b1cc07c60a4db74795829acd + checksum: dbe628ef87f66691d5d2959b3e41b9ca0045c3ee3c7c7b906cc1e328b39f199bb1ad9e671c39025bd56122ac57dfbf7385a94843b1cc07c60a4db74795829acd languageName: node linkType: hard "tslib@npm:~2.5.0": version: 2.5.0 resolution: "tslib@npm:2.5.0" - checksum: 8/ae3ed5f9ce29932d049908ebfdf21b3a003a85653a9a140d614da6b767a93ef94f460e52c3d787f0e4f383546981713f165037dc2274df212ea9f8a4541004e1 + checksum: ae3ed5f9ce29932d049908ebfdf21b3a003a85653a9a140d614da6b767a93ef94f460e52c3d787f0e4f383546981713f165037dc2274df212ea9f8a4541004e1 languageName: node linkType: hard @@ -3626,7 +3617,7 @@ __metadata: dependencies: csstype: "npm:3.0.10" free-style: "npm:3.1.0" - checksum: 8/8b4f02c24f67b594f98507b15a753dabd4db5eb0af007e1d310527c64030e11e9464b25b5a6bc65fb5eec9a4459a8336050121ecc29063ac87b8b47a6d698893 + checksum: 8b4f02c24f67b594f98507b15a753dabd4db5eb0af007e1d310527c64030e11e9464b25b5a6bc65fb5eec9a4459a8336050121ecc29063ac87b8b47a6d698893 languageName: node linkType: hard @@ -3635,7 +3626,7 @@ __metadata: resolution: "unique-filename@npm:2.0.1" dependencies: unique-slug: "npm:^3.0.0" - checksum: 8/807acf3381aff319086b64dc7125a9a37c09c44af7620bd4f7f3247fcd5565660ac12d8b80534dcbfd067e6fe88a67e621386dd796a8af828d1337a8420a255f + checksum: 807acf3381aff319086b64dc7125a9a37c09c44af7620bd4f7f3247fcd5565660ac12d8b80534dcbfd067e6fe88a67e621386dd796a8af828d1337a8420a255f languageName: node linkType: hard @@ -3644,14 +3635,14 @@ __metadata: resolution: "unique-slug@npm:3.0.0" dependencies: imurmurhash: "npm:^0.1.4" - checksum: 8/49f8d915ba7f0101801b922062ee46b7953256c93ceca74303bd8e6413ae10aa7e8216556b54dc5382895e8221d04f1efaf75f945c2e4a515b4139f77aa6640c + checksum: 49f8d915ba7f0101801b922062ee46b7953256c93ceca74303bd8e6413ae10aa7e8216556b54dc5382895e8221d04f1efaf75f945c2e4a515b4139f77aa6640c languageName: node linkType: hard "universalify@npm:^2.0.0": version: 2.0.0 resolution: "universalify@npm:2.0.0" - checksum: 8/2406a4edf4a8830aa6813278bab1f953a8e40f2f63a37873ffa9a3bc8f9745d06cc8e88f3572cb899b7e509013f7f6fcc3e37e8a6d914167a5381d8440518c44 + checksum: 2406a4edf4a8830aa6813278bab1f953a8e40f2f63a37873ffa9a3bc8f9745d06cc8e88f3572cb899b7e509013f7f6fcc3e37e8a6d914167a5381d8440518c44 languageName: node linkType: hard @@ -3660,7 +3651,7 @@ __metadata: resolution: "uri-js@npm:4.4.1" dependencies: punycode: "npm:^2.1.0" - checksum: 8/7167432de6817fe8e9e0c9684f1d2de2bb688c94388f7569f7dbdb1587c9f4ca2a77962f134ec90be0cc4d004c939ff0d05acc9f34a0db39a3c797dada262633 + checksum: 7167432de6817fe8e9e0c9684f1d2de2bb688c94388f7569f7dbdb1587c9f4ca2a77962f134ec90be0cc4d004c939ff0d05acc9f34a0db39a3c797dada262633 languageName: node linkType: hard @@ -3670,14 +3661,14 @@ __metadata: dependencies: querystringify: "npm:^2.1.1" requires-port: "npm:^1.0.0" - checksum: 8/fbdba6b1d83336aca2216bbdc38ba658d9cfb8fc7f665eb8b17852de638ff7d1a162c198a8e4ed66001ddbf6c9888d41e4798912c62b4fd777a31657989f7bdf + checksum: fbdba6b1d83336aca2216bbdc38ba658d9cfb8fc7f665eb8b17852de638ff7d1a162c198a8e4ed66001ddbf6c9888d41e4798912c62b4fd777a31657989f7bdf languageName: node linkType: hard "util-deprecate@npm:^1.0.1, util-deprecate@npm:~1.0.1": version: 1.0.2 resolution: "util-deprecate@npm:1.0.2" - checksum: 8/474acf1146cb2701fe3b074892217553dfcf9a031280919ba1b8d651a068c9b15d863b7303cb15bd00a862b498e6cf4ad7b4a08fb134edd5a6f7641681cb54a2 + checksum: 474acf1146cb2701fe3b074892217553dfcf9a031280919ba1b8d651a068c9b15d863b7303cb15bd00a862b498e6cf4ad7b4a08fb134edd5a6f7641681cb54a2 languageName: node linkType: hard @@ -3686,21 +3677,21 @@ __metadata: resolution: "util@npm:0.10.4" dependencies: inherits: "npm:2.0.3" - checksum: 8/913f9a90d05a60e91f91af01b8bd37e06bca4cc02d7b49e01089f9d5b78be2fffd61fb1a41b517de7238c5fc7337fa939c62d1fb4eb82e014894c7bee6637aaf + checksum: 913f9a90d05a60e91f91af01b8bd37e06bca4cc02d7b49e01089f9d5b78be2fffd61fb1a41b517de7238c5fc7337fa939c62d1fb4eb82e014894c7bee6637aaf languageName: node linkType: hard "validate.io-array@npm:^1.0.3": version: 1.0.6 resolution: "validate.io-array@npm:1.0.6" - checksum: 8/54eca83ebc702e3e46499f9d9e77287a95ae25c4e727cd2fafee29c7333b3a36cca0c5d8f090b9406262786de80750fba85e7e7ef41e20bf8cc67d5570de449b + checksum: 54eca83ebc702e3e46499f9d9e77287a95ae25c4e727cd2fafee29c7333b3a36cca0c5d8f090b9406262786de80750fba85e7e7ef41e20bf8cc67d5570de449b languageName: node linkType: hard "validate.io-function@npm:^1.0.2": version: 1.0.2 resolution: "validate.io-function@npm:1.0.2" - checksum: 8/e4cce2479a20cb7c42e8630c777fb107059c27bc32925f769e3a73ca5fd62b4892d897b3c80227e14d5fcd1c5b7d05544e0579d63e59f14034c0052cda7f7c44 + checksum: e4cce2479a20cb7c42e8630c777fb107059c27bc32925f769e3a73ca5fd62b4892d897b3c80227e14d5fcd1c5b7d05544e0579d63e59f14034c0052cda7f7c44 languageName: node linkType: hard @@ -3710,7 +3701,7 @@ __metadata: dependencies: validate.io-array: "npm:^1.0.3" validate.io-integer: "npm:^1.0.4" - checksum: 8/5f6d7fab8df7d2bf546a05e830201768464605539c75a2c2417b632b4411a00df84b462f81eac75e1be95303e7e0ac92f244c137424739f4e15cd21c2eb52c7f + checksum: 5f6d7fab8df7d2bf546a05e830201768464605539c75a2c2417b632b4411a00df84b462f81eac75e1be95303e7e0ac92f244c137424739f4e15cd21c2eb52c7f languageName: node linkType: hard @@ -3719,21 +3710,21 @@ __metadata: resolution: "validate.io-integer@npm:1.0.5" dependencies: validate.io-number: "npm:^1.0.3" - checksum: 8/88b3f8bb5a5277a95305d64abbfc437079220ce4f57a148cc6113e7ccec03dd86b10a69d413982602aa90a62b8d516148a78716f550dcd3aff863ac1c2a7a5e6 + checksum: 88b3f8bb5a5277a95305d64abbfc437079220ce4f57a148cc6113e7ccec03dd86b10a69d413982602aa90a62b8d516148a78716f550dcd3aff863ac1c2a7a5e6 languageName: node linkType: hard "validate.io-number@npm:^1.0.3": version: 1.0.3 resolution: "validate.io-number@npm:1.0.3" - checksum: 8/42418aeb6c969efa745475154fe576809b02eccd0961aad0421b090d6e7a12d23a3e28b0d5dddd2c6347c1a6bdccb82bba5048c716131cd20207244d50e07282 + checksum: 42418aeb6c969efa745475154fe576809b02eccd0961aad0421b090d6e7a12d23a3e28b0d5dddd2c6347c1a6bdccb82bba5048c716131cd20207244d50e07282 languageName: node linkType: hard "vega-canvas@npm:^1.2.6, vega-canvas@npm:^1.2.7": version: 1.2.7 resolution: "vega-canvas@npm:1.2.7" - checksum: 8/6ff92fcdf0c359f2f662909c859a7f4cb4a502436136ab2f4c02373c47a621996ec0eea23e2108f11d62a618be301de86cd8528b5058c2e207a53ddd7ff58d1b + checksum: 6ff92fcdf0c359f2f662909c859a7f4cb4a502436136ab2f4c02373c47a621996ec0eea23e2108f11d62a618be301de86cd8528b5058c2e207a53ddd7ff58d1b languageName: node linkType: hard @@ -3744,7 +3735,7 @@ __metadata: d3-array: "npm:^3.2.2" vega-dataflow: "npm:^5.7.5" vega-util: "npm:^1.17.1" - checksum: 8/e399f7e92d7ba273ad5c1a9e29d362a9ec7feaeacb976eff3aa205b318382fb37a9fac3150ec1cb806364cd2b2cb54d5f23aea3285db684df2b4c27836422464 + checksum: e399f7e92d7ba273ad5c1a9e29d362a9ec7feaeacb976eff3aa205b318382fb37a9fac3150ec1cb806364cd2b2cb54d5f23aea3285db684df2b4c27836422464 languageName: node linkType: hard @@ -3755,7 +3746,7 @@ __metadata: vega-format: "npm:^1.1.1" vega-loader: "npm:^4.5.1" vega-util: "npm:^1.17.1" - checksum: 8/917ed63e88b0871169a883f68da127a404d88e50c9ed6fa3f063a706016b064594fb804a2bf99f09bc4a899819cac320bdde12467edc861af1acc024552dd202 + checksum: 917ed63e88b0871169a883f68da127a404d88e50c9ed6fa3f063a706016b064594fb804a2bf99f09bc4a899819cac320bdde12467edc861af1acc024552dd202 languageName: node linkType: hard @@ -3768,34 +3759,34 @@ __metadata: vega-dataflow: "npm:^5.7.5" vega-scale: "npm:^7.3.0" vega-util: "npm:^1.17.1" - checksum: 8/2d95623438832d43f0c9266349e0d9ad5b1eee24477d4561d886fbb62c3f031ea430370633193471fcbffcc8d629e290e07c64dbc975929bf4c721f953408640 + checksum: 2d95623438832d43f0c9266349e0d9ad5b1eee24477d4561d886fbb62c3f031ea430370633193471fcbffcc8d629e290e07c64dbc975929bf4c721f953408640 languageName: node linkType: hard "vega-event-selector@npm:^3.0.1, vega-event-selector@npm:~3.0.0, vega-event-selector@npm:~3.0.1": version: 3.0.1 resolution: "vega-event-selector@npm:3.0.1" - checksum: 8/66d09b5800a19a9b0c75f28811b140a1a2e70e84be6d6f87c568cdbce6e17c8e195f130f4e3de5d6dc737142d1f46f4fe7645177e154582cc8ba27c6845b54e8 + checksum: 66d09b5800a19a9b0c75f28811b140a1a2e70e84be6d6f87c568cdbce6e17c8e195f130f4e3de5d6dc737142d1f46f4fe7645177e154582cc8ba27c6845b54e8 languageName: node linkType: hard -"vega-expression@npm:^5.0.1, vega-expression@npm:~5.0.0, vega-expression@npm:~5.0.1": - version: 5.0.1 - resolution: "vega-expression@npm:5.0.1" +"vega-expression@npm:^5.0.1, vega-expression@npm:^5.1.2": + version: 5.1.2 + resolution: "vega-expression@npm:5.1.2" dependencies: "@types/estree": "npm:^1.0.0" - vega-util: "npm:^1.17.1" - checksum: 8/396e950209a98a3fb1e28ba554f179c07aaeac7d11cfac9298a2af0b98456d69ec6573ecc7f21eff6f9f95bbfa8c59a1093d25e8ce586d0c0c589c230784db17 + vega-util: "npm:^1.17.3" + checksum: bf1b05edc9b290e213b33ad4ab2b581bd752983fb5b126cb8cb9b653c54e12b55b346bb2f85d8d8bccf2113a1d9d4497d99ced837061b6516c41d97624fac959 languageName: node linkType: hard -"vega-expression@npm:^5.1.2": - version: 5.1.2 - resolution: "vega-expression@npm:5.1.2" +"vega-expression@npm:~5.0.0, vega-expression@npm:~5.0.1": + version: 5.0.1 + resolution: "vega-expression@npm:5.0.1" dependencies: "@types/estree": "npm:^1.0.0" - vega-util: "npm:^1.17.3" - checksum: 10c0/ea3e7228e5b3f60496f98fb8558c0a171ef8b04ed31d76aaf25e97c4862e96da4eba66f56e3263693c5eb5af54d038db87747be12caddc0e57c82e9a1d35eacb + vega-util: "npm:^1.17.1" + checksum: 396e950209a98a3fb1e28ba554f179c07aaeac7d11cfac9298a2af0b98456d69ec6573ecc7f21eff6f9f95bbfa8c59a1093d25e8ce586d0c0c589c230784db17 languageName: node linkType: hard @@ -3806,7 +3797,7 @@ __metadata: d3-force: "npm:^3.0.0" vega-dataflow: "npm:^5.7.5" vega-util: "npm:^1.17.1" - checksum: 8/8a371ca8d0892bc3e932cc279bbf54fe8b88e2b384c42f8df9877c801191953f3ee3e2f516f675a69ecb052ed081232dfb3438989620e8ad5c2a316ccee60277 + checksum: 8a371ca8d0892bc3e932cc279bbf54fe8b88e2b384c42f8df9877c801191953f3ee3e2f516f675a69ecb052ed081232dfb3438989620e8ad5c2a316ccee60277 languageName: node linkType: hard @@ -3819,7 +3810,7 @@ __metadata: d3-time-format: "npm:^4.1.0" vega-time: "npm:^2.1.1" vega-util: "npm:^1.17.1" - checksum: 8/d506acb8611a6340ff419ebf308a758a54aaf3cf141863553df83980dcf8dc7bf806bee257d11a52d43682d159d7be03ab8a92bdd4d018d8c9f39a70c45cb197 + checksum: d506acb8611a6340ff419ebf308a758a54aaf3cf141863553df83980dcf8dc7bf806bee257d11a52d43682d159d7be03ab8a92bdd4d018d8c9f39a70c45cb197 languageName: node linkType: hard @@ -3838,7 +3829,7 @@ __metadata: vega-statistics: "npm:^1.8.1" vega-time: "npm:^2.1.1" vega-util: "npm:^1.17.1" - checksum: 8/05d154f29dec1742935bfe2852176e392e7c3a107ef76e2c0fe103c7f68812084218ee3c50ef13ba250fa6629d0f4e3a0997fac4b475a1f27be1e465e99b170b + checksum: 05d154f29dec1742935bfe2852176e392e7c3a107ef76e2c0fe103c7f68812084218ee3c50ef13ba250fa6629d0f4e3a0997fac4b475a1f27be1e465e99b170b languageName: node linkType: hard @@ -3854,7 +3845,7 @@ __metadata: vega-projection: "npm:^1.6.0" vega-statistics: "npm:^1.8.1" vega-util: "npm:^1.17.1" - checksum: 8/e9c62d9134c2449a1a80cd5cb71ed6dc455d893a36fdcb1a696bcae3897670c32687cf14a0f366b0ec76905e5be406131dc671e5d607ffcbef74e94b8c697007 + checksum: e9c62d9134c2449a1a80cd5cb71ed6dc455d893a36fdcb1a696bcae3897670c32687cf14a0f366b0ec76905e5be406131dc671e5d607ffcbef74e94b8c697007 languageName: node linkType: hard @@ -3865,7 +3856,7 @@ __metadata: d3-hierarchy: "npm:^3.1.2" vega-dataflow: "npm:^5.7.5" vega-util: "npm:^1.17.1" - checksum: 8/beb23948922f1b52bf03b836d71d3a5a36db3a6bfe2af74b6a5fc45a2e2e877226313e2389772be62a459728467618175d8c02a07e88330844fdec45fd5f69ac + checksum: beb23948922f1b52bf03b836d71d3a5a36db3a6bfe2af74b6a5fc45a2e2e877226313e2389772be62a459728467618175d8c02a07e88330844fdec45fd5f69ac languageName: node linkType: hard @@ -3877,7 +3868,7 @@ __metadata: vega-dataflow: "npm:^5.7.3" vega-scenegraph: "npm:^4.9.2" vega-util: "npm:^1.15.2" - checksum: 8/2704c99328ead677441e746acd8f4529301437d08b2758933fc13353d2eab9af353e4ebcc4ff1f09f41d600401b097e2df3c9e8e56d4861e5216222dd9e29185 + checksum: 2704c99328ead677441e746acd8f4529301437d08b2758933fc13353d2eab9af353e4ebcc4ff1f09f41d600401b097e2df3c9e8e56d4861e5216222dd9e29185 languageName: node linkType: hard @@ -3902,7 +3893,7 @@ __metadata: vl2png: bin/vl2png vl2svg: bin/vl2svg vl2vg: bin/vl2vg - checksum: 8/e420be0c5791bbded62d75d01dc191cb6263a6ef3fe92104a12fa8bf105ae4c6f17579a92b0dba3191b80670a984f1b4e7e75218a4b59faca153cd60b6e147e1 + checksum: e420be0c5791bbded62d75d01dc191cb6263a6ef3fe92104a12fa8bf105ae4c6f17579a92b0dba3191b80670a984f1b4e7e75218a4b59faca153cd60b6e147e1 languageName: node linkType: hard @@ -3915,7 +3906,7 @@ __metadata: topojson-client: "npm:^3.1.0" vega-format: "npm:^1.1.1" vega-util: "npm:^1.17.1" - checksum: 8/95f6eebc75a97665cf34faaea431934047e1b2e9d7532f48f62dab4884d606a7d9da53962e1631a5790a7a867f720581852a3db9be1a7f667882062f6c102ee0 + checksum: 95f6eebc75a97665cf34faaea431934047e1b2e9d7532f48f62dab4884d606a7d9da53962e1631a5790a7a867f720581852a3db9be1a7f667882062f6c102ee0 languageName: node linkType: hard @@ -3928,7 +3919,7 @@ __metadata: vega-functions: "npm:^5.13.1" vega-scale: "npm:^7.3.0" vega-util: "npm:^1.17.1" - checksum: 8/19872153c16aab30c4df338e0df7bd331e0bf74c7c6afce5428df555b9bdb0c4acf76b54092cacd4726a1349912ea803c90e1b30d53f4a02044e0559873969a7 + checksum: 19872153c16aab30c4df338e0df7bd331e0bf74c7c6afce5428df555b9bdb0c4acf76b54092cacd4726a1349912ea803c90e1b30d53f4a02044e0559873969a7 languageName: node linkType: hard @@ -3939,7 +3930,7 @@ __metadata: d3-geo: "npm:^3.1.0" d3-geo-projection: "npm:^4.0.0" vega-scale: "npm:^7.3.0" - checksum: 8/9c52848e294ff68051fe9f44fa536656c4e6be3d474bd3359e21aa154ab282755eaee624ac31b1ca01816227900e1d81a6d191e36f46e47525ed6648397f0fa0 + checksum: 9c52848e294ff68051fe9f44fa536656c4e6be3d474bd3359e21aa154ab282755eaee624ac31b1ca01816227900e1d81a6d191e36f46e47525ed6648397f0fa0 languageName: node linkType: hard @@ -3951,7 +3942,7 @@ __metadata: vega-dataflow: "npm:^5.7.3" vega-statistics: "npm:^1.7.9" vega-util: "npm:^1.15.2" - checksum: 8/61686565ad0df517378207acb6b03baba9ee0fb3acef10d5b7cc996509ae322ad1a54a4eb20af9e15468fc3a8adb21d9008d29d1e450663c885c1626702f20f5 + checksum: 61686565ad0df517378207acb6b03baba9ee0fb3acef10d5b7cc996509ae322ad1a54a4eb20af9e15468fc3a8adb21d9008d29d1e450663c885c1626702f20f5 languageName: node linkType: hard @@ -3961,7 +3952,7 @@ __metadata: dependencies: vega-dataflow: "npm:^5.7.5" vega-util: "npm:^1.17.1" - checksum: 8/a1da40ddb3109f1ced8e61d2e7b52784fbb29936ee4c47cb5630dbbeb12ef6e0c3cd3cd189c34377f82402bf19c61dd148d90330fec743b8667635ac48e4ba29 + checksum: a1da40ddb3109f1ced8e61d2e7b52784fbb29936ee4c47cb5630dbbeb12ef6e0c3cd3cd189c34377f82402bf19c61dd148d90330fec743b8667635ac48e4ba29 languageName: node linkType: hard @@ -3974,7 +3965,7 @@ __metadata: d3-scale: "npm:^4.0.2" vega-time: "npm:^2.1.1" vega-util: "npm:^1.17.1" - checksum: 8/8e434f27a51a913dd18374ec0d2bc33758eda7db1ee6342721644f977e705268b8df6b3e89813774d776d03a0cd24f91d4d59f9e80951f67dfbbf8637f5a69ad + checksum: 8e434f27a51a913dd18374ec0d2bc33758eda7db1ee6342721644f977e705268b8df6b3e89813774d776d03a0cd24f91d4d59f9e80951f67dfbbf8637f5a69ad languageName: node linkType: hard @@ -3988,7 +3979,7 @@ __metadata: vega-loader: "npm:^4.5.1" vega-scale: "npm:^7.3.0" vega-util: "npm:^1.17.1" - checksum: 8/6caf3e298297b918c8b6a72f019e51e2bfbaecd316e4d1c37d855ac9366d177cdbf16e9c8857c5ccde128bcd9645af7ee7dc81111bcd743d192e1a3b9a9d7185 + checksum: 6caf3e298297b918c8b6a72f019e51e2bfbaecd316e4d1c37d855ac9366d177cdbf16e9c8857c5ccde128bcd9645af7ee7dc81111bcd743d192e1a3b9a9d7185 languageName: node linkType: hard @@ -3999,7 +3990,7 @@ __metadata: d3-array: "npm:3.2.4" vega-expression: "npm:^5.1.2" vega-util: "npm:^1.17.3" - checksum: 10c0/32e04f341b5abbf7b5a8844d4a0089941c5153dd57bb847939ad8e2e4d383fd35e4363c103bafde3702e246eae0fab83b0af66e280c2e38d2f24bb733359d4a3 + checksum: 9d4261d28785c47814376ab7acf400ddcda3ded9cd1e8ecc320e4891129007d0297f3e998c28fbd2941e47488afdcbae73a2a919dd67bfdc5ada9e712f2fcbd0 languageName: node linkType: hard @@ -4008,7 +3999,7 @@ __metadata: resolution: "vega-statistics@npm:1.8.1" dependencies: d3-array: "npm:^3.2.2" - checksum: 8/031f7b617dc8d41f6834b2381ea48a11247630ec6934b0559e4874447072dbbaa5df1eedfd9b8a8959f7bab7d09d3bf828c06c1cd830e1dd9d9234c422b328b6 + checksum: 031f7b617dc8d41f6834b2381ea48a11247630ec6934b0559e4874447072dbbaa5df1eedfd9b8a8959f7bab7d09d3bf828c06c1cd830e1dd9d9234c422b328b6 languageName: node linkType: hard @@ -4019,7 +4010,7 @@ __metadata: d3-array: "npm:^3.2.2" d3-time: "npm:^3.1.0" vega-util: "npm:^1.17.1" - checksum: 8/3d6a50f779be4b5e7f27bd2aae766035c29e59e03e62d2e96b94a2f759ed3104c1102c1006dd416e7b819ee501880ae7a722c2fa9aabf9efac86503c1aada14a + checksum: 3d6a50f779be4b5e7f27bd2aae766035c29e59e03e62d2e96b94a2f759ed3104c1102c1006dd416e7b819ee501880ae7a722c2fa9aabf9efac86503c1aada14a languageName: node linkType: hard @@ -4032,7 +4023,7 @@ __metadata: vega-statistics: "npm:^1.8.1" vega-time: "npm:^2.1.1" vega-util: "npm:^1.17.1" - checksum: 8/fda63a71b53de180c30c43eabd63eab6bb8ab183890077d41d45688db92d1ad7d9951d987b9c5dff5a8cd61d163b75bdb2aa847e0d86aa788025d15ac38e38de + checksum: fda63a71b53de180c30c43eabd63eab6bb8ab183890077d41d45688db92d1ad7d9951d987b9c5dff5a8cd61d163b75bdb2aa847e0d86aa788025d15ac38e38de languageName: node linkType: hard @@ -4044,21 +4035,14 @@ __metadata: vega-event-selector: "npm:^3.0.1" vega-expression: "npm:^5.0.1" vega-util: "npm:^1.17.1" - checksum: 8/430dc0a95d0d07f00e82829d1c3a81efdf6512476ed53bc263bf98f1c0e1bdb780d0125609360d386af287a79467c21069d9f14f5eec12999602f937799c6b5c - languageName: node - linkType: hard - -"vega-util@npm:^1.15.2, vega-util@npm:^1.17.1, vega-util@npm:~1.17.0, vega-util@npm:~1.17.1": - version: 1.17.1 - resolution: "vega-util@npm:1.17.1" - checksum: 8/aa8b6a43bd38f49aea6d97988cdc2bdae6e0adb59080287b87dc82b9b7246faa87a20d2c143e700ba5669adaa249dd27b88b3c74c4b4df9fa6a510381c575713 + checksum: 430dc0a95d0d07f00e82829d1c3a81efdf6512476ed53bc263bf98f1c0e1bdb780d0125609360d386af287a79467c21069d9f14f5eec12999602f937799c6b5c languageName: node linkType: hard -"vega-util@npm:^1.17.3": +"vega-util@npm:^1.15.2, vega-util@npm:^1.17.1, vega-util@npm:^1.17.3, vega-util@npm:~1.17.0, vega-util@npm:~1.17.1": version: 1.17.3 resolution: "vega-util@npm:1.17.3" - checksum: 10c0/10fd9d80ef09914dbb6538c0205e98bb7bf2eb21debb33c5f103a637377b6fdfd6bd7d2148cec4755050e3c802b805bec865ad3eb28068fd4dee76ef33d35a08 + checksum: d8bb21e2cb2ffa005bc3d9859d13aca8a0f13d6a143b8e12598c307de011ce1bc947402769e735ceb62d3b4e648214bdc00664aea1d819ad56563090e96d44b5 languageName: node linkType: hard @@ -4069,7 +4053,7 @@ __metadata: vega-dataflow: "npm:^5.7.5" vega-scenegraph: "npm:^4.10.2" vega-util: "npm:^1.17.1" - checksum: 8/aeeaf3c2f1a02b1303c16a586dbcb20f208c101d06d7e988e18ab71fb67d87be5d8ff228ebf25971535d6e41dc816168cfa68b8676e7250df07a40aefdea32a7 + checksum: aeeaf3c2f1a02b1303c16a586dbcb20f208c101d06d7e988e18ab71fb67d87be5d8ff228ebf25971535d6e41dc816168cfa68b8676e7250df07a40aefdea32a7 languageName: node linkType: hard @@ -4085,7 +4069,7 @@ __metadata: vega-runtime: "npm:^6.1.4" vega-scenegraph: "npm:^4.10.2" vega-util: "npm:^1.17.1" - checksum: 8/82ddc74593b3a359d0b3458bc06573673ff9bf13f84020cb36fb4676c5d7f547e9650eb6faaa76799fbcedd27bcd266603dbd08c420e2d2229cc6b9f48a4a66d + checksum: 82ddc74593b3a359d0b3458bc06573673ff9bf13f84020cb36fb4676c5d7f547e9650eb6faaa76799fbcedd27bcd266603dbd08c420e2d2229cc6b9f48a4a66d languageName: node linkType: hard @@ -4096,7 +4080,7 @@ __metadata: d3-delaunay: "npm:^6.0.2" vega-dataflow: "npm:^5.7.5" vega-util: "npm:^1.17.1" - checksum: 8/f618174ad5f451c507a80e373288bb2c0da7a8a908d62f885bc77b354c4334504ae2d1042742f68ad419ade7b548aeca9ca1042ae5541bebd7f5297afc23bb35 + checksum: f618174ad5f451c507a80e373288bb2c0da7a8a908d62f885bc77b354c4334504ae2d1042742f68ad419ade7b548aeca9ca1042ae5541bebd7f5297afc23bb35 languageName: node linkType: hard @@ -4109,7 +4093,7 @@ __metadata: vega-scale: "npm:^7.3.0" vega-statistics: "npm:^1.8.1" vega-util: "npm:^1.17.1" - checksum: 8/34d1882651d3a2f34ce40a6eaeed700de126f627cdf041ec2bcc7ada46d7b4b68a38a2974236eec87ee876d9abd095af7ab17e7698b0e2fbc831460767969d7a + checksum: 34d1882651d3a2f34ce40a6eaeed700de126f627cdf041ec2bcc7ada46d7b4b68a38a2974236eec87ee876d9abd095af7ab17e7698b0e2fbc831460767969d7a languageName: node linkType: hard @@ -4144,21 +4128,21 @@ __metadata: vega-view-transforms: "npm:~4.5.9" vega-voronoi: "npm:~4.2.1" vega-wordcloud: "npm:~4.1.4" - checksum: 8/974ef09d56cb768a6f31dae80856e9c5a22cc2dbe79d73ded95b3743539f7d9981759cc9e214f939489d632faf9b69bad079a4d5bc53439c685e809b14d7a7a1 + checksum: 974ef09d56cb768a6f31dae80856e9c5a22cc2dbe79d73ded95b3743539f7d9981759cc9e214f939489d632faf9b69bad079a4d5bc53439c685e809b14d7a7a1 languageName: node linkType: hard "vscode-jsonrpc@npm:8.1.0, vscode-jsonrpc@npm:^8.0.2": version: 8.1.0 resolution: "vscode-jsonrpc@npm:8.1.0" - checksum: 8/8980037cc0014802e6ac1e5dfcff9a65e8292727096dfd23c92d2039c0c45de74a00d6ee06938cf1a671286dd8258a5f418cf048c26ad0fcb0c44f96c9e0f278 + checksum: 8980037cc0014802e6ac1e5dfcff9a65e8292727096dfd23c92d2039c0c45de74a00d6ee06938cf1a671286dd8258a5f418cf048c26ad0fcb0c44f96c9e0f278 languageName: node linkType: hard "vscode-jsonrpc@npm:^6.0.0": version: 6.0.0 resolution: "vscode-jsonrpc@npm:6.0.0" - checksum: 8/3a67a56f287e8c449f2d9752eedf91e704dc7b9a326f47fb56ac07667631deb45ca52192e9bccb2ab108764e48409d70fa64b930d46fc3822f75270b111c5f53 + checksum: 3a67a56f287e8c449f2d9752eedf91e704dc7b9a326f47fb56ac07667631deb45ca52192e9bccb2ab108764e48409d70fa64b930d46fc3822f75270b111c5f53 languageName: node linkType: hard @@ -4168,14 +4152,14 @@ __metadata: dependencies: vscode-jsonrpc: "npm:8.1.0" vscode-languageserver-types: "npm:3.17.3" - checksum: 8/ffea508b2efd7f4853f1cef5e5eac58672f0ae71a9ec275ad37a4a2a24cdc3ff023f941e759951aee01c79da3f3279f10e034f19d875f081eb387181241bd836 + checksum: ffea508b2efd7f4853f1cef5e5eac58672f0ae71a9ec275ad37a4a2a24cdc3ff023f941e759951aee01c79da3f3279f10e034f19d875f081eb387181241bd836 languageName: node linkType: hard "vscode-languageserver-types@npm:3.17.3": version: 3.17.3 resolution: "vscode-languageserver-types@npm:3.17.3" - checksum: 8/fbc8221297261f659a6482875ff2a419dc9d55965dc53745797da569ff9f819cd832e6f2699017baadd946548bbfe212e3f6971f3d960f12dc0ee9c629dacc07 + checksum: fbc8221297261f659a6482875ff2a419dc9d55965dc53745797da569ff9f819cd832e6f2699017baadd946548bbfe212e3f6971f3d960f12dc0ee9c629dacc07 languageName: node linkType: hard @@ -4184,21 +4168,21 @@ __metadata: resolution: "vscode-ws-jsonrpc@npm:1.0.2" dependencies: vscode-jsonrpc: "npm:^8.0.2" - checksum: 8/eb2fdb5c96f124326505f06564dfc6584318b748fd6e39b4c0ba16a0d383d13ba0e9433596abdb841428dfc2a5501994c3206723d1cb38c6af5fcac1faf4be26 + checksum: eb2fdb5c96f124326505f06564dfc6584318b748fd6e39b4c0ba16a0d383d13ba0e9433596abdb841428dfc2a5501994c3206723d1cb38c6af5fcac1faf4be26 languageName: node linkType: hard "w3c-keyname@npm:^2.2.4": version: 2.2.6 resolution: "w3c-keyname@npm:2.2.6" - checksum: 8/59a31d23ca9953c01c99ed6695fee5b6ea36eb2412d76a21fe4302ab33a3f5cd96c006a763940b6115c3d042c16d3564eeee1156832217d028af0518098b3a42 + checksum: 59a31d23ca9953c01c99ed6695fee5b6ea36eb2412d76a21fe4302ab33a3f5cd96c006a763940b6115c3d042c16d3564eeee1156832217d028af0518098b3a42 languageName: node linkType: hard "webidl-conversions@npm:^3.0.0": version: 3.0.1 resolution: "webidl-conversions@npm:3.0.1" - checksum: 8/c92a0a6ab95314bde9c32e1d0a6dfac83b578f8fa5f21e675bc2706ed6981bc26b7eb7e6a1fab158e5ce4adf9caa4a0aee49a52505d4d13c7be545f15021b17c + checksum: c92a0a6ab95314bde9c32e1d0a6dfac83b578f8fa5f21e675bc2706ed6981bc26b7eb7e6a1fab158e5ce4adf9caa4a0aee49a52505d4d13c7be545f15021b17c languageName: node linkType: hard @@ -4208,7 +4192,7 @@ __metadata: dependencies: tr46: "npm:~0.0.3" webidl-conversions: "npm:^3.0.0" - checksum: 8/b8daed4ad3356cc4899048a15b2c143a9aed0dfae1f611ebd55073310c7b910f522ad75d727346ad64203d7e6c79ef25eafd465f4d12775ca44b90fa82ed9e2c + checksum: b8daed4ad3356cc4899048a15b2c143a9aed0dfae1f611ebd55073310c7b910f522ad75d727346ad64203d7e6c79ef25eafd465f4d12775ca44b90fa82ed9e2c languageName: node linkType: hard @@ -4219,7 +4203,7 @@ __metadata: isexe: "npm:^2.0.0" bin: node-which: ./bin/node-which - checksum: 8/1a5c563d3c1b52d5f893c8b61afe11abc3bab4afac492e8da5bde69d550de701cf9806235f20a47b5c8fa8a1d6a9135841de2596535e998027a54589000e66d1 + checksum: 1a5c563d3c1b52d5f893c8b61afe11abc3bab4afac492e8da5bde69d550de701cf9806235f20a47b5c8fa8a1d6a9135841de2596535e998027a54589000e66d1 languageName: node linkType: hard @@ -4228,7 +4212,7 @@ __metadata: resolution: "wide-align@npm:1.1.5" dependencies: string-width: "npm:^1.0.2 || 2 || 3 || 4" - checksum: 8/d5fc37cd561f9daee3c80e03b92ed3e84d80dde3365a8767263d03dacfc8fa06b065ffe1df00d8c2a09f731482fcacae745abfbb478d4af36d0a891fad4834d3 + checksum: d5fc37cd561f9daee3c80e03b92ed3e84d80dde3365a8767263d03dacfc8fa06b065ffe1df00d8c2a09f731482fcacae745abfbb478d4af36d0a891fad4834d3 languageName: node linkType: hard @@ -4239,14 +4223,14 @@ __metadata: ansi-styles: "npm:^4.0.0" string-width: "npm:^4.1.0" strip-ansi: "npm:^6.0.0" - checksum: 8/a790b846fd4505de962ba728a21aaeda189b8ee1c7568ca5e817d85930e06ef8d1689d49dbf0e881e8ef84436af3a88bc49115c2e2788d841ff1b8b5b51a608b + checksum: a790b846fd4505de962ba728a21aaeda189b8ee1c7568ca5e817d85930e06ef8d1689d49dbf0e881e8ef84436af3a88bc49115c2e2788d841ff1b8b5b51a608b languageName: node linkType: hard "wrappy@npm:1": version: 1.0.2 resolution: "wrappy@npm:1.0.2" - checksum: 8/159da4805f7e84a3d003d8841557196034155008f817172d4e986bd591f74aa82aa7db55929a54222309e01079a65a92a9e6414da5a6aa4b01ee44a511ac3ee5 + checksum: 159da4805f7e84a3d003d8841557196034155008f817172d4e986bd591f74aa82aa7db55929a54222309e01079a65a92a9e6414da5a6aa4b01ee44a511ac3ee5 languageName: node linkType: hard @@ -4261,7 +4245,7 @@ __metadata: optional: true utf-8-validate: optional: true - checksum: 8/53e991bbf928faf5dc6efac9b8eb9ab6497c69feeb94f963d648b7a3530a720b19ec2e0ec037344257e05a4f35bd9ad04d9de6f289615ffb133282031b18c61c + checksum: 53e991bbf928faf5dc6efac9b8eb9ab6497c69feeb94f963d648b7a3530a720b19ec2e0ec037344257e05a4f35bd9ad04d9de6f289615ffb133282031b18c61c languageName: node linkType: hard @@ -4270,28 +4254,28 @@ __metadata: resolution: "y-protocols@npm:1.0.5" dependencies: lib0: "npm:^0.2.42" - checksum: 8/d19404a4ebafcf3761c28b881abe8c32ab6e457db0e5ffc7dbb749cbc2c3bb98e003a43f3e8eba7f245b2698c76f2c4cdd1c2db869f8ec0c6ef94736d9a88652 + checksum: d19404a4ebafcf3761c28b881abe8c32ab6e457db0e5ffc7dbb749cbc2c3bb98e003a43f3e8eba7f245b2698c76f2c4cdd1c2db869f8ec0c6ef94736d9a88652 languageName: node linkType: hard "y18n@npm:^5.0.5": version: 5.0.8 resolution: "y18n@npm:5.0.8" - checksum: 8/54f0fb95621ee60898a38c572c515659e51cc9d9f787fb109cef6fde4befbe1c4602dc999d30110feee37456ad0f1660fa2edcfde6a9a740f86a290999550d30 + checksum: 54f0fb95621ee60898a38c572c515659e51cc9d9f787fb109cef6fde4befbe1c4602dc999d30110feee37456ad0f1660fa2edcfde6a9a740f86a290999550d30 languageName: node linkType: hard "yallist@npm:^4.0.0": version: 4.0.0 resolution: "yallist@npm:4.0.0" - checksum: 8/343617202af32df2a15a3be36a5a8c0c8545208f3d3dfbc6bb7c3e3b7e8c6f8e7485432e4f3b88da3031a6e20afa7c711eded32ddfb122896ac5d914e75848d5 + checksum: 343617202af32df2a15a3be36a5a8c0c8545208f3d3dfbc6bb7c3e3b7e8c6f8e7485432e4f3b88da3031a6e20afa7c711eded32ddfb122896ac5d914e75848d5 languageName: node linkType: hard "yargs-parser@npm:^21.1.1": version: 21.1.1 resolution: "yargs-parser@npm:21.1.1" - checksum: 8/ed2d96a616a9e3e1cc7d204c62ecc61f7aaab633dcbfab2c6df50f7f87b393993fe6640d017759fe112d0cb1e0119f2b4150a87305cc873fd90831c6a58ccf1c + checksum: ed2d96a616a9e3e1cc7d204c62ecc61f7aaab633dcbfab2c6df50f7f87b393993fe6640d017759fe112d0cb1e0119f2b4150a87305cc873fd90831c6a58ccf1c languageName: node linkType: hard @@ -4306,7 +4290,7 @@ __metadata: string-width: "npm:^4.2.3" y18n: "npm:^5.0.5" yargs-parser: "npm:^21.1.1" - checksum: 8/3d8a43c336a4942bc68080768664aca85c7bd406f018bad362fd255c41c8f4e650277f42fd65d543fce99e084124ddafee7bbfc1a5c6a8fda4cec78609dcf8d4 + checksum: 3d8a43c336a4942bc68080768664aca85c7bd406f018bad362fd255c41c8f4e650277f42fd65d543fce99e084124ddafee7bbfc1a5c6a8fda4cec78609dcf8d4 languageName: node linkType: hard @@ -4315,6 +4299,6 @@ __metadata: resolution: "yjs@npm:13.6.0" dependencies: lib0: "npm:^0.2.74" - checksum: 8/54bd3b0c8a8dc5724044356c8015210f9840b7ac46c8d87d66a0cc5f5bf669298d45324942681ad01ea22c7a4de6a29aa22180d63596e18734bc90335ced982f + checksum: 54bd3b0c8a8dc5724044356c8015210f9840b7ac46c8d87d66a0cc5f5bf669298d45324942681ad01ea22c7a4de6a29aa22180d63596e18734bc90335ced982f languageName: node linkType: hard diff --git a/yarn.lock b/yarn.lock index 1230ef90f8..79a65cc214 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1315,7 +1315,7 @@ __metadata: languageName: node linkType: hard -"@babel/runtime@npm:^7.15.4, @babel/runtime@npm:^7.16.7, @babel/runtime@npm:^7.20.6, @babel/runtime@npm:^7.8.4": +"@babel/runtime@npm:^7.16.7, @babel/runtime@npm:^7.20.6, @babel/runtime@npm:^7.8.4": version: 7.26.10 resolution: "@babel/runtime@npm:7.26.10" dependencies: @@ -1674,6 +1674,32 @@ __metadata: languageName: node linkType: hard +"@cypress/request@npm:3.0.6": + version: 3.0.6 + resolution: "@cypress/request@npm:3.0.6" + dependencies: + aws-sign2: ~0.7.0 + aws4: ^1.8.0 + caseless: ~0.12.0 + combined-stream: ~1.0.6 + extend: ~3.0.2 + forever-agent: ~0.6.1 + form-data: ~4.0.0 + http-signature: ~1.4.0 + is-typedarray: ~1.0.0 + isstream: ~0.1.2 + json-stringify-safe: ~5.0.1 + mime-types: ~2.1.19 + performance-now: ^2.1.0 + qs: 6.13.0 + safe-buffer: ^5.1.2 + tough-cookie: ^5.0.0 + tunnel-agent: ^0.6.0 + uuid: ^8.3.2 + checksum: 017e1898123eca7af4b95b89fa5a03ed6cb5e841b8ed926cb709b5ad88b5f55b713436e74bce6f13752f80d0399c01cd5b0b3212aaa972e064967f5c78237ebb + languageName: node + linkType: hard + "@discoveryjs/json-ext@npm:0.5.7, @discoveryjs/json-ext@npm:^0.5.0": version: 0.5.7 resolution: "@discoveryjs/json-ext@npm:0.5.7" @@ -2116,55 +2142,55 @@ __metadata: "@jupyter-notebook/tree": ^7.4.0-beta.0 "@jupyter-notebook/tree-extension": ^7.4.0-beta.0 "@jupyter-notebook/ui-components": ^7.4.0-beta.0 - "@jupyterlab/application-extension": ~4.4.0-beta.0 - "@jupyterlab/apputils-extension": ~4.4.0-beta.0 - "@jupyterlab/attachments": ~4.4.0-beta.0 - "@jupyterlab/builder": ~4.4.0-beta.0 - "@jupyterlab/buildutils": ~4.4.0-beta.0 - "@jupyterlab/cell-toolbar-extension": ~4.4.0-beta.0 - "@jupyterlab/celltags-extension": ~4.4.0-beta.0 - "@jupyterlab/codemirror": ~4.4.0-beta.0 - "@jupyterlab/codemirror-extension": ~4.4.0-beta.0 - "@jupyterlab/completer-extension": ~4.4.0-beta.0 - "@jupyterlab/console-extension": ~4.4.0-beta.0 - "@jupyterlab/coreutils": ~6.4.0-beta.0 - "@jupyterlab/csvviewer-extension": ~4.4.0-beta.0 - "@jupyterlab/debugger-extension": ~4.4.0-beta.0 - "@jupyterlab/docmanager-extension": ~4.4.0-beta.0 - "@jupyterlab/documentsearch-extension": ~4.4.0-beta.0 - "@jupyterlab/extensionmanager-extension": ~4.4.0-beta.0 - "@jupyterlab/filebrowser-extension": ~4.4.0-beta.0 - "@jupyterlab/fileeditor-extension": ~4.4.0-beta.0 - "@jupyterlab/help-extension": ~4.4.0-beta.0 - "@jupyterlab/htmlviewer-extension": ~4.4.0-beta.0 - "@jupyterlab/hub-extension": ~4.4.0-beta.0 - "@jupyterlab/imageviewer-extension": ~4.4.0-beta.0 - "@jupyterlab/javascript-extension": ~4.4.0-beta.0 - "@jupyterlab/json-extension": ~4.4.0-beta.0 - "@jupyterlab/lsp": ~4.4.0-beta.0 - "@jupyterlab/lsp-extension": ~4.4.0-beta.0 - "@jupyterlab/mainmenu-extension": ~4.4.0-beta.0 - "@jupyterlab/markdownviewer-extension": ~4.4.0-beta.0 - "@jupyterlab/markedparser-extension": ~4.4.0-beta.0 - "@jupyterlab/mathjax-extension": ~4.4.0-beta.0 - "@jupyterlab/mermaid-extension": ~4.4.0-beta.0 - "@jupyterlab/metadataform-extension": ~4.4.0-beta.0 - "@jupyterlab/notebook-extension": ~4.4.0-beta.0 - "@jupyterlab/pdf-extension": ~4.4.0-beta.0 - "@jupyterlab/pluginmanager-extension": ~4.4.0-beta.0 - "@jupyterlab/running-extension": ~4.4.0-beta.0 - "@jupyterlab/settingeditor": ~4.4.0-beta.0 - "@jupyterlab/settingeditor-extension": ~4.4.0-beta.0 - "@jupyterlab/shortcuts-extension": ~5.2.0-beta.0 - "@jupyterlab/terminal-extension": ~4.4.0-beta.0 - "@jupyterlab/theme-dark-extension": ~4.4.0-beta.0 - "@jupyterlab/theme-dark-high-contrast-extension": ~4.4.0-beta.0 - "@jupyterlab/theme-light-extension": ~4.4.0-beta.0 - "@jupyterlab/toc-extension": ~6.4.0-beta.0 - "@jupyterlab/tooltip-extension": ~4.4.0-beta.0 - "@jupyterlab/translation-extension": ~4.4.0-beta.0 - "@jupyterlab/ui-components-extension": ~4.4.0-beta.0 - "@jupyterlab/vega5-extension": ~4.4.0-beta.0 + "@jupyterlab/application-extension": ~4.4.0-beta.1 + "@jupyterlab/apputils-extension": ~4.4.0-beta.1 + "@jupyterlab/attachments": ~4.4.0-beta.1 + "@jupyterlab/builder": ~4.4.0-beta.1 + "@jupyterlab/buildutils": ~4.4.0-beta.1 + "@jupyterlab/cell-toolbar-extension": ~4.4.0-beta.1 + "@jupyterlab/celltags-extension": ~4.4.0-beta.1 + "@jupyterlab/codemirror": ~4.4.0-beta.1 + "@jupyterlab/codemirror-extension": ~4.4.0-beta.1 + "@jupyterlab/completer-extension": ~4.4.0-beta.1 + "@jupyterlab/console-extension": ~4.4.0-beta.1 + "@jupyterlab/coreutils": ~6.4.0-beta.1 + "@jupyterlab/csvviewer-extension": ~4.4.0-beta.1 + "@jupyterlab/debugger-extension": ~4.4.0-beta.1 + "@jupyterlab/docmanager-extension": ~4.4.0-beta.1 + "@jupyterlab/documentsearch-extension": ~4.4.0-beta.1 + "@jupyterlab/extensionmanager-extension": ~4.4.0-beta.1 + "@jupyterlab/filebrowser-extension": ~4.4.0-beta.1 + "@jupyterlab/fileeditor-extension": ~4.4.0-beta.1 + "@jupyterlab/help-extension": ~4.4.0-beta.1 + "@jupyterlab/htmlviewer-extension": ~4.4.0-beta.1 + "@jupyterlab/hub-extension": ~4.4.0-beta.1 + "@jupyterlab/imageviewer-extension": ~4.4.0-beta.1 + "@jupyterlab/javascript-extension": ~4.4.0-beta.1 + "@jupyterlab/json-extension": ~4.4.0-beta.1 + "@jupyterlab/lsp": ~4.4.0-beta.1 + "@jupyterlab/lsp-extension": ~4.4.0-beta.1 + "@jupyterlab/mainmenu-extension": ~4.4.0-beta.1 + "@jupyterlab/markdownviewer-extension": ~4.4.0-beta.1 + "@jupyterlab/markedparser-extension": ~4.4.0-beta.1 + "@jupyterlab/mathjax-extension": ~4.4.0-beta.1 + "@jupyterlab/mermaid-extension": ~4.4.0-beta.1 + "@jupyterlab/metadataform-extension": ~4.4.0-beta.1 + "@jupyterlab/notebook-extension": ~4.4.0-beta.1 + "@jupyterlab/pdf-extension": ~4.4.0-beta.1 + "@jupyterlab/pluginmanager-extension": ~4.4.0-beta.1 + "@jupyterlab/running-extension": ~4.4.0-beta.1 + "@jupyterlab/settingeditor": ~4.4.0-beta.1 + "@jupyterlab/settingeditor-extension": ~4.4.0-beta.1 + "@jupyterlab/shortcuts-extension": ~5.2.0-beta.1 + "@jupyterlab/terminal-extension": ~4.4.0-beta.1 + "@jupyterlab/theme-dark-extension": ~4.4.0-beta.1 + "@jupyterlab/theme-dark-high-contrast-extension": ~4.4.0-beta.1 + "@jupyterlab/theme-light-extension": ~4.4.0-beta.1 + "@jupyterlab/toc-extension": ~6.4.0-beta.1 + "@jupyterlab/tooltip-extension": ~4.4.0-beta.1 + "@jupyterlab/translation-extension": ~4.4.0-beta.1 + "@jupyterlab/ui-components-extension": ~4.4.0-beta.1 + "@jupyterlab/vega5-extension": ~4.4.0-beta.1 "@types/rimraf": ^3.0.2 css-loader: ~5.0.1 extra-watch-webpack-plugin: ^1.0.3 @@ -2193,17 +2219,17 @@ __metadata: dependencies: "@jupyter-notebook/application": ^7.4.0-beta.0 "@jupyter-notebook/ui-components": ^7.4.0-beta.0 - "@jupyterlab/application": ~4.4.0-beta.0 - "@jupyterlab/apputils": ~4.5.0-beta.0 - "@jupyterlab/codeeditor": ~4.4.0-beta.0 - "@jupyterlab/console": ~4.4.0-beta.0 - "@jupyterlab/coreutils": ~6.4.0-beta.0 - "@jupyterlab/docmanager": ~4.4.0-beta.0 - "@jupyterlab/docregistry": ~4.4.0-beta.0 - "@jupyterlab/mainmenu": ~4.4.0-beta.0 - "@jupyterlab/rendermime": ~4.4.0-beta.0 - "@jupyterlab/settingregistry": ~4.4.0-beta.0 - "@jupyterlab/translation": ~4.4.0-beta.0 + "@jupyterlab/application": ~4.4.0-beta.1 + "@jupyterlab/apputils": ~4.5.0-beta.1 + "@jupyterlab/codeeditor": ~4.4.0-beta.1 + "@jupyterlab/console": ~4.4.0-beta.1 + "@jupyterlab/coreutils": ~6.4.0-beta.1 + "@jupyterlab/docmanager": ~4.4.0-beta.1 + "@jupyterlab/docregistry": ~4.4.0-beta.1 + "@jupyterlab/mainmenu": ~4.4.0-beta.1 + "@jupyterlab/rendermime": ~4.4.0-beta.1 + "@jupyterlab/settingregistry": ~4.4.0-beta.1 + "@jupyterlab/translation": ~4.4.0-beta.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/widgets": ^2.5.0 @@ -2218,12 +2244,12 @@ __metadata: dependencies: "@babel/core": ^7.11.6 "@babel/preset-env": ^7.12.1 - "@jupyterlab/application": ~4.4.0-beta.0 - "@jupyterlab/coreutils": ~6.4.0-beta.0 - "@jupyterlab/docregistry": ~4.4.0-beta.0 - "@jupyterlab/rendermime-interfaces": ~3.12.0-beta.0 + "@jupyterlab/application": ~4.4.0-beta.1 + "@jupyterlab/coreutils": ~6.4.0-beta.1 + "@jupyterlab/docregistry": ~4.4.0-beta.1 + "@jupyterlab/rendermime-interfaces": ~3.12.0-beta.1 "@jupyterlab/testutils": ~4.3.2 - "@jupyterlab/ui-components": ~4.4.0-beta.0 + "@jupyterlab/ui-components": ~4.4.0-beta.1 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 @@ -2242,7 +2268,7 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyter-notebook/buildutils@workspace:buildutils" dependencies: - "@jupyterlab/buildutils": ~4.4.0-beta.0 + "@jupyterlab/buildutils": ~4.4.0-beta.1 "@types/fs-extra": ^9.0.10 "@types/node": ^22.13.4 "@types/semver": ^7.5.8 @@ -2259,9 +2285,9 @@ __metadata: resolution: "@jupyter-notebook/console-extension@workspace:packages/console-extension" dependencies: "@jupyter-notebook/application": ^7.4.0-beta.0 - "@jupyterlab/application": ~4.4.0-beta.0 - "@jupyterlab/console": ~4.4.0-beta.0 - "@jupyterlab/coreutils": ~6.4.0-beta.0 + "@jupyterlab/application": ~4.4.0-beta.1 + "@jupyterlab/console": ~4.4.0-beta.1 + "@jupyterlab/coreutils": ~6.4.0-beta.1 "@lumino/algorithm": ^2.0.2 rimraf: ^3.0.2 typescript: ~5.5.4 @@ -2273,11 +2299,11 @@ __metadata: resolution: "@jupyter-notebook/docmanager-extension@workspace:packages/docmanager-extension" dependencies: "@jupyter-notebook/application": ^7.4.0-beta.0 - "@jupyterlab/application": ~4.4.0-beta.0 - "@jupyterlab/coreutils": ~6.4.0-beta.0 - "@jupyterlab/docmanager": ~4.4.0-beta.0 - "@jupyterlab/docregistry": ~4.4.0-beta.0 - "@jupyterlab/services": ~7.4.0-beta.0 + "@jupyterlab/application": ~4.4.0-beta.1 + "@jupyterlab/coreutils": ~6.4.0-beta.1 + "@jupyterlab/docmanager": ~4.4.0-beta.1 + "@jupyterlab/docregistry": ~4.4.0-beta.1 + "@jupyterlab/services": ~7.4.0-beta.1 "@lumino/algorithm": ^2.0.2 "@lumino/signaling": ^2.1.3 rimraf: ^3.0.2 @@ -2290,8 +2316,8 @@ __metadata: resolution: "@jupyter-notebook/documentsearch-extension@workspace:packages/documentsearch-extension" dependencies: "@jupyter-notebook/application": ^7.4.0-beta.0 - "@jupyterlab/application": ~4.4.0-beta.0 - "@jupyterlab/documentsearch": ~4.4.0-beta.0 + "@jupyterlab/application": ~4.4.0-beta.1 + "@jupyterlab/documentsearch": ~4.4.0-beta.1 "@lumino/widgets": ^2.5.0 rimraf: ^3.0.2 typescript: ~5.5.4 @@ -2303,10 +2329,10 @@ __metadata: resolution: "@jupyter-notebook/help-extension@workspace:packages/help-extension" dependencies: "@jupyter-notebook/ui-components": ^7.4.0-beta.0 - "@jupyterlab/application": ~4.4.0-beta.0 - "@jupyterlab/apputils": ~4.5.0-beta.0 - "@jupyterlab/mainmenu": ~4.4.0-beta.0 - "@jupyterlab/translation": ~4.4.0-beta.0 + "@jupyterlab/application": ~4.4.0-beta.1 + "@jupyterlab/apputils": ~4.5.0-beta.1 + "@jupyterlab/mainmenu": ~4.4.0-beta.1 + "@jupyterlab/translation": ~4.4.0-beta.1 react: ^18.2.0 react-dom: ^18.2.0 rimraf: ^3.0.2 @@ -2319,14 +2345,14 @@ __metadata: resolution: "@jupyter-notebook/lab-extension@workspace:packages/lab-extension" dependencies: "@jupyter-notebook/application": ^7.4.0-beta.0 - "@jupyterlab/application": ~4.4.0-beta.0 - "@jupyterlab/apputils": ~4.5.0-beta.0 - "@jupyterlab/builder": ~4.4.0-beta.0 - "@jupyterlab/coreutils": ~6.4.0-beta.0 - "@jupyterlab/docregistry": ~4.4.0-beta.0 - "@jupyterlab/notebook": ~4.4.0-beta.0 - "@jupyterlab/translation": ~4.4.0-beta.0 - "@jupyterlab/ui-components": ~4.4.0-beta.0 + "@jupyterlab/application": ~4.4.0-beta.1 + "@jupyterlab/apputils": ~4.5.0-beta.1 + "@jupyterlab/builder": ~4.4.0-beta.1 + "@jupyterlab/coreutils": ~6.4.0-beta.1 + "@jupyterlab/docregistry": ~4.4.0-beta.1 + "@jupyterlab/notebook": ~4.4.0-beta.1 + "@jupyterlab/translation": ~4.4.0-beta.1 + "@jupyterlab/ui-components": ~4.4.0-beta.1 "@lumino/commands": ^2.3.1 "@lumino/disposable": ^2.1.3 rimraf: ^3.0.2 @@ -2359,13 +2385,13 @@ __metadata: resolution: "@jupyter-notebook/notebook-extension@workspace:packages/notebook-extension" dependencies: "@jupyter-notebook/application": ^7.4.0-beta.0 - "@jupyterlab/application": ~4.4.0-beta.0 - "@jupyterlab/apputils": ~4.5.0-beta.0 - "@jupyterlab/cells": ~4.4.0-beta.0 - "@jupyterlab/docmanager": ~4.4.0-beta.0 - "@jupyterlab/notebook": ~4.4.0-beta.0 - "@jupyterlab/settingregistry": ~4.4.0-beta.0 - "@jupyterlab/translation": ~4.4.0-beta.0 + "@jupyterlab/application": ~4.4.0-beta.1 + "@jupyterlab/apputils": ~4.5.0-beta.1 + "@jupyterlab/cells": ~4.4.0-beta.1 + "@jupyterlab/docmanager": ~4.4.0-beta.1 + "@jupyterlab/notebook": ~4.4.0-beta.1 + "@jupyterlab/settingregistry": ~4.4.0-beta.1 + "@jupyterlab/translation": ~4.4.0-beta.1 "@lumino/polling": ^2.1.3 "@lumino/widgets": ^2.5.0 react: ^18.2.0 @@ -2379,7 +2405,7 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyter-notebook/root@workspace:." dependencies: - "@jupyterlab/buildutils": ~4.4.0-beta.0 + "@jupyterlab/buildutils": ~4.4.0-beta.1 "@typescript-eslint/eslint-plugin": ^5.55.0 "@typescript-eslint/parser": ^5.55.0 eslint: ^8.36.0 @@ -2401,9 +2427,9 @@ __metadata: resolution: "@jupyter-notebook/terminal-extension@workspace:packages/terminal-extension" dependencies: "@jupyter-notebook/application": ^7.4.0-beta.0 - "@jupyterlab/application": ~4.4.0-beta.0 - "@jupyterlab/coreutils": ~6.4.0-beta.0 - "@jupyterlab/terminal": ~4.4.0-beta.0 + "@jupyterlab/application": ~4.4.0-beta.1 + "@jupyterlab/coreutils": ~6.4.0-beta.1 + "@jupyterlab/terminal": ~4.4.0-beta.1 "@lumino/algorithm": ^2.0.2 rimraf: ^3.0.2 typescript: ~5.5.4 @@ -2416,18 +2442,18 @@ __metadata: dependencies: "@jupyter-notebook/application": ^7.4.0-beta.0 "@jupyter-notebook/tree": ^7.4.0-beta.0 - "@jupyterlab/application": ~4.4.0-beta.0 - "@jupyterlab/apputils": ~4.5.0-beta.0 - "@jupyterlab/coreutils": ~6.4.0-beta.0 - "@jupyterlab/docmanager": ~4.4.0-beta.0 - "@jupyterlab/filebrowser": ~4.4.0-beta.0 - "@jupyterlab/mainmenu": ~4.4.0-beta.0 - "@jupyterlab/services": ~7.4.0-beta.0 - "@jupyterlab/settingeditor": ~4.4.0-beta.0 - "@jupyterlab/settingregistry": ~4.4.0-beta.0 - "@jupyterlab/statedb": ~4.4.0-beta.0 - "@jupyterlab/translation": ~4.4.0-beta.0 - "@jupyterlab/ui-components": ~4.4.0-beta.0 + "@jupyterlab/application": ~4.4.0-beta.1 + "@jupyterlab/apputils": ~4.5.0-beta.1 + "@jupyterlab/coreutils": ~6.4.0-beta.1 + "@jupyterlab/docmanager": ~4.4.0-beta.1 + "@jupyterlab/filebrowser": ~4.4.0-beta.1 + "@jupyterlab/mainmenu": ~4.4.0-beta.1 + "@jupyterlab/services": ~7.4.0-beta.1 + "@jupyterlab/settingeditor": ~4.4.0-beta.1 + "@jupyterlab/settingregistry": ~4.4.0-beta.1 + "@jupyterlab/statedb": ~4.4.0-beta.1 + "@jupyterlab/translation": ~4.4.0-beta.1 + "@jupyterlab/ui-components": ~4.4.0-beta.1 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/widgets": ^2.5.0 @@ -2441,17 +2467,17 @@ __metadata: resolution: "@jupyter-notebook/tree@workspace:packages/tree" dependencies: "@jupyter-notebook/application": ^7.4.0-beta.0 - "@jupyterlab/application": ~4.4.0-beta.0 - "@jupyterlab/apputils": ~4.5.0-beta.0 - "@jupyterlab/coreutils": ~6.4.0-beta.0 - "@jupyterlab/docmanager": ~4.4.0-beta.0 - "@jupyterlab/filebrowser": ~4.4.0-beta.0 - "@jupyterlab/mainmenu": ~4.4.0-beta.0 - "@jupyterlab/services": ~7.4.0-beta.0 - "@jupyterlab/settingregistry": ~4.4.0-beta.0 - "@jupyterlab/statedb": ~4.4.0-beta.0 - "@jupyterlab/translation": ~4.4.0-beta.0 - "@jupyterlab/ui-components": ~4.4.0-beta.0 + "@jupyterlab/application": ~4.4.0-beta.1 + "@jupyterlab/apputils": ~4.5.0-beta.1 + "@jupyterlab/coreutils": ~6.4.0-beta.1 + "@jupyterlab/docmanager": ~4.4.0-beta.1 + "@jupyterlab/filebrowser": ~4.4.0-beta.1 + "@jupyterlab/mainmenu": ~4.4.0-beta.1 + "@jupyterlab/services": ~7.4.0-beta.1 + "@jupyterlab/settingregistry": ~4.4.0-beta.1 + "@jupyterlab/statedb": ~4.4.0-beta.1 + "@jupyterlab/translation": ~4.4.0-beta.1 + "@jupyterlab/ui-components": ~4.4.0-beta.1 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -2468,7 +2494,7 @@ __metadata: "@babel/core": ^7.10.2 "@babel/preset-env": ^7.10.2 "@jupyterlab/testutils": ~4.3.2 - "@jupyterlab/ui-components": ~4.4.0-beta.0 + "@jupyterlab/ui-components": ~4.4.0-beta.1 "@types/jest": ^29.2.5 babel-loader: ^8.0.6 jest: ^29.3.1 @@ -2516,26 +2542,26 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/application-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/application-extension@npm:4.4.0-beta.0" +"@jupyterlab/application-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/application-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/property-inspector": ^4.4.0-beta.0 - "@jupyterlab/settingregistry": ^4.4.0-beta.0 - "@jupyterlab/statedb": ^4.4.0-beta.0 - "@jupyterlab/statusbar": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/property-inspector": ^4.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/statedb": ^4.4.0-beta.1 + "@jupyterlab/statusbar": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 685d3010494d30ac5e3380b74049b1d4b6bb05df063a4f132525970767b80d8ea9762f0f80aa800c12375aeb8c7761e357b417136a32cdeb13e22a8107b7cf5d + checksum: 457e2fce8c29c3ef8840330c84c25e080b965ce3f39a800dd7a10972bbc160b60eff957673e042a0b2291640c5e997bc58e0ea633ab583116568ae7cf7e3c0a3 languageName: node linkType: hard @@ -2567,20 +2593,20 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/application@npm:^4.4.0-beta.0, @jupyterlab/application@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/application@npm:4.4.0-beta.0" +"@jupyterlab/application@npm:^4.4.0-beta.1, @jupyterlab/application@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/application@npm:4.4.0-beta.1" dependencies: "@fortawesome/fontawesome-free": ^5.12.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/docregistry": ^4.4.0-beta.0 - "@jupyterlab/rendermime": ^4.4.0-beta.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/statedb": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/docregistry": ^4.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/statedb": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/algorithm": ^2.0.2 "@lumino/application": ^2.4.2 "@lumino/commands": ^2.3.1 @@ -2591,27 +2617,27 @@ __metadata: "@lumino/properties": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: 999a26ae3b454f30994799306a01646bd56a06c8bc70edbaa81316695ecf3f32982d9f969e692cabe6ee082331ddfdaef6f6d7f8dcced5b7b3953e9629b1c794 - languageName: node - linkType: hard - -"@jupyterlab/apputils-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/apputils-extension@npm:4.4.0-beta.0" - dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/docregistry": ^4.4.0-beta.0 - "@jupyterlab/mainmenu": ^4.4.0-beta.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/settingregistry": ^4.4.0-beta.0 - "@jupyterlab/statedb": ^4.4.0-beta.0 - "@jupyterlab/statusbar": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 - "@jupyterlab/workspaces": ^4.4.0-beta.0 + checksum: b077fec7cdde75c216d41b7dfb0f7054992d46292b18d195f9dc40b5ed7f3e59ea66e427e980c4f6c5a504864cb599680f8deef2f747d2bac89a4d8f5181e739 + languageName: node + linkType: hard + +"@jupyterlab/apputils-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/apputils-extension@npm:4.4.0-beta.1" + dependencies: + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/docregistry": ^4.4.0-beta.1 + "@jupyterlab/mainmenu": ^4.4.0-beta.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/statedb": ^4.4.0-beta.1 + "@jupyterlab/statusbar": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/workspaces": ^4.4.0-beta.1 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -2622,7 +2648,7 @@ __metadata: react: ^18.2.0 react-dom: ^18.2.0 react-toastify: ^9.0.8 - checksum: de6ba6c2b1422f7187fed3f268269f3dc40eeb113cd4e4a77ac3abd9eaca41eda987eea246d8ad604e71bed39012f93a7a54ae7a748e571c55ce27d708018015 + checksum: db24bbfcb0818910caa6c3fdb18e30ddb35779ca4ed5a497eac04b0d679619e7995d44125aacf077588321c7ad319ce527f290d9a66ebced1699064cf2131214 languageName: node linkType: hard @@ -2655,19 +2681,19 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/apputils@npm:^4.5.0-beta.0, @jupyterlab/apputils@npm:~4.5.0-beta.0": - version: 4.5.0-beta.0 - resolution: "@jupyterlab/apputils@npm:4.5.0-beta.0" +"@jupyterlab/apputils@npm:^4.5.0-beta.1, @jupyterlab/apputils@npm:~4.5.0-beta.1": + version: 4.5.0-beta.1 + resolution: "@jupyterlab/apputils@npm:4.5.0-beta.1" dependencies: - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/observables": ^5.4.0-beta.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/settingregistry": ^4.4.0-beta.0 - "@jupyterlab/statedb": ^4.4.0-beta.0 - "@jupyterlab/statusbar": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/observables": ^5.4.0-beta.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/statedb": ^4.4.0-beta.1 + "@jupyterlab/statusbar": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -2680,7 +2706,7 @@ __metadata: "@types/react": ^18.0.26 react: ^18.2.0 sanitize-html: ~2.12.1 - checksum: 7d619d3e0759117b78a13d52f7fa08fd3388bd941f4fac193f0ef99471b757cf4ac33b7e48cdd351e2c1118a4ef219febcea3c77ab10a5fc03749f4079efc6dc + checksum: c6847491841f92f890d398c2c7756a18c39051795049172b997a8ef85ae829948b03d288f537880a756b89fcb4fc6ff6fb805b6ed1d835ac3cab1fe348431afc languageName: node linkType: hard @@ -2698,23 +2724,23 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/attachments@npm:^4.4.0-beta.0, @jupyterlab/attachments@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/attachments@npm:4.4.0-beta.0" +"@jupyterlab/attachments@npm:^4.4.0-beta.1, @jupyterlab/attachments@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/attachments@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/nbformat": ^4.4.0-beta.0 - "@jupyterlab/observables": ^5.4.0-beta.0 - "@jupyterlab/rendermime": ^4.4.0-beta.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.0 + "@jupyterlab/nbformat": ^4.4.0-beta.1 + "@jupyterlab/observables": ^5.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 "@lumino/disposable": ^2.1.3 "@lumino/signaling": ^2.1.3 - checksum: 24ce731db319e7e3e3b7ac9a23dd760eeb4863840f7fc8ea51ed1e460ef4e1bd0f1feaebc62a823a04df2e2716d1a54443d56cda6d77b04b404ba98a8ffc8906 + checksum: 0098ff81ed51f562001fb4c0df9559c16ec6974dc2e7d1aadbf3fe6289d441427c443ba33957e88fbc57ff48223e0bf9fe291f59de5139aca29d08fa2fcd81bb languageName: node linkType: hard -"@jupyterlab/builder@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/builder@npm:4.4.0-beta.0" +"@jupyterlab/builder@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/builder@npm:4.4.0-beta.1" dependencies: "@lumino/algorithm": ^2.0.2 "@lumino/application": ^2.4.2 @@ -2749,13 +2775,13 @@ __metadata: worker-loader: ^3.0.2 bin: build-labextension: lib/build-labextension.js - checksum: b236f37205fe35d3e7f8e6ac6c06725957e8d75cf84930c487b5e4e43f84a980478757a7d7ab97a3bb7c21bd46aa3c85af926e88b160c35a22e1e02887c2cc83 + checksum: 6b37c8707245e848563a49e2abb92b29423816e3eabd3b155efa3094269ffc8377fc0cad5636aa37f7b47cd7720a0088662b77cd10d43cc7f446631357891f8c languageName: node linkType: hard -"@jupyterlab/buildutils@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/buildutils@npm:4.4.0-beta.0" +"@jupyterlab/buildutils@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/buildutils@npm:4.4.0-beta.1" dependencies: "@yarnpkg/core": ^4.0.3 "@yarnpkg/parsers": ^3.0.0 @@ -2771,10 +2797,10 @@ __metadata: package-json: ^7.0.0 prettier: ~2.6.0 process: ^0.11.10 - semver: ^7.3.2 + semver: ^7.5.2 sort-package-json: ~1.53.1 typescript: ~5.5.4 - verdaccio: ^5.25.0 + verdaccio: ^5.33.0 bin: get-dependency: lib/get-dependency.js local-repository: lib/local-repository.js @@ -2782,40 +2808,40 @@ __metadata: update-dependency: lib/update-dependency.js update-dist-tag: lib/update-dist-tag.js update-staging-lock: lib/update-staging-lock.js - checksum: 41a222f9cd1fe309450ba0affb5eba56ac4cab6b3737bdecd43382b00aa56f4051ef53a4cb95dc2b39e5df548470082a4fba6b162bfbf51b6c85c81221a163dc + checksum: 11dc99ee7f342106d6a7f05492f5db816d0c8024b03cf577a752bfdf0e38adf4a5291ba1d6aeebe4d68b280a170b96fbf4f449fffd8954e7201ea7011563175f languageName: node linkType: hard -"@jupyterlab/cell-toolbar-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/cell-toolbar-extension@npm:4.4.0-beta.0" +"@jupyterlab/cell-toolbar-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/cell-toolbar-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/cell-toolbar": ^4.4.0-beta.0 - "@jupyterlab/settingregistry": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - checksum: 4306848cfbc49f79b03b1cccb991b463f31ee0cc41aa72ffb59249c822fb2a84831344fc15b2955252b20499959f1a8a5c97bd4ac6a6cd2b7a3d58b8282889f7 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/cell-toolbar": ^4.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + checksum: 47211944ad2df86e07b549b7b811ce973e55c00868c552b56903deb6bd98d624b69ac5a73e4d4b3a049fe228cf12837da9251a6334cf5130094b990b1ba273f5 languageName: node linkType: hard -"@jupyterlab/cell-toolbar@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/cell-toolbar@npm:4.4.0-beta.0" +"@jupyterlab/cell-toolbar@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/cell-toolbar@npm:4.4.0-beta.1" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/cells": ^4.4.0-beta.0 - "@jupyterlab/docregistry": ^4.4.0-beta.0 - "@jupyterlab/notebook": ^4.4.0-beta.0 - "@jupyterlab/observables": ^5.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/cells": ^4.4.0-beta.1 + "@jupyterlab/docregistry": ^4.4.0-beta.1 + "@jupyterlab/notebook": ^4.4.0-beta.1 + "@jupyterlab/observables": ^5.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/disposable": ^2.1.3 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: 9dcbe315d044dc461169ad142dcd232216ef5c8078a6ea29732d94afe75733023fd0040c62eb097313de2401ba8dc43a5cab7005b725ecda20e0a563c799c2ec + checksum: 4d1324678756830db67ba759695ec26a5a26a5341da9d9804bd8dc97a7da88e4bb02f2cb0922a50e131c4d4a7ffca3d5758d205a07f615a85426df0e3012f7d2 languageName: node linkType: hard @@ -2855,28 +2881,28 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/cells@npm:^4.4.0-beta.0, @jupyterlab/cells@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/cells@npm:4.4.0-beta.0" +"@jupyterlab/cells@npm:^4.4.0-beta.1, @jupyterlab/cells@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/cells@npm:4.4.0-beta.1" dependencies: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/attachments": ^4.4.0-beta.0 - "@jupyterlab/codeeditor": ^4.4.0-beta.0 - "@jupyterlab/codemirror": ^4.4.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/documentsearch": ^4.4.0-beta.0 - "@jupyterlab/filebrowser": ^4.4.0-beta.0 - "@jupyterlab/nbformat": ^4.4.0-beta.0 - "@jupyterlab/observables": ^5.4.0-beta.0 - "@jupyterlab/outputarea": ^4.4.0-beta.0 - "@jupyterlab/rendermime": ^4.4.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/toc": ^6.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/attachments": ^4.4.0-beta.1 + "@jupyterlab/codeeditor": ^4.4.0-beta.1 + "@jupyterlab/codemirror": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/documentsearch": ^4.4.0-beta.1 + "@jupyterlab/filebrowser": ^4.4.0-beta.1 + "@jupyterlab/nbformat": ^4.4.0-beta.1 + "@jupyterlab/observables": ^5.4.0-beta.1 + "@jupyterlab/outputarea": ^4.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/toc": ^6.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/domutils": ^2.0.2 @@ -2887,22 +2913,22 @@ __metadata: "@lumino/virtualdom": ^2.0.2 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 233e3479b6faca43d4dfb0d1b1dc0e79f1580a9e2ffb71990b63ce06ea1bfd30a5bd9d3ea4518564e8d1398beb50bc7f1dfe2537322a7006b6d6c9ffb0ddd798 + checksum: 56dce1335e87567e771bc7612c614ee4e8f549e820eef2e5adc7c01fa7d312a0835d3d01b84f408b05674f04d31872edfc9ff160958437932d832dff066694ae languageName: node linkType: hard -"@jupyterlab/celltags-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/celltags-extension@npm:4.4.0-beta.0" +"@jupyterlab/celltags-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/celltags-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/notebook": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/notebook": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/algorithm": ^2.0.2 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: ff83af9830853c6dd528fdce765a67604a5fb89ff33a0efe51a7c3db23ae66950651208d343dbb6967d902bc85d5dbac34162e4ed7235fe33473c0992e7d269c + checksum: ee753816321c789bebe24dce02bc9fad7aa5b7c4cbce12b0f301bd1996c43c81cc077f0b60f2192d14e411fb91c4e3a190b676eba903b82759e8af00e24f0c0c languageName: node linkType: hard @@ -2930,19 +2956,19 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/codeeditor@npm:^4.4.0-beta.0, @jupyterlab/codeeditor@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/codeeditor@npm:4.4.0-beta.0" +"@jupyterlab/codeeditor@npm:^4.4.0-beta.1, @jupyterlab/codeeditor@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/codeeditor@npm:4.4.0-beta.1" dependencies: "@codemirror/state": ^6.5.0 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/nbformat": ^4.4.0-beta.0 - "@jupyterlab/observables": ^5.4.0-beta.0 - "@jupyterlab/statusbar": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/nbformat": ^4.4.0-beta.1 + "@jupyterlab/observables": ^5.4.0-beta.1 + "@jupyterlab/statusbar": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/dragdrop": ^2.1.5 @@ -2950,13 +2976,13 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 6af171477ba629cde0b99316a23bf7a3371c40f6697d9bd40fcdf2f7cc18a9d1fccbf4aa994734926222f28e94be52ebe7e67c3241e4324301109d0c649f16bd + checksum: 4b055fe59a641252662dc3da5f8cac26091125f813a061284bb74131350abf7333395e6750cb79da71692d2d35a1deae7679c0605a050bc766f49fd8405c0c2a languageName: node linkType: hard -"@jupyterlab/codemirror-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/codemirror-extension@npm:4.4.0-beta.0" +"@jupyterlab/codemirror-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/codemirror-extension@npm:4.4.0-beta.1" dependencies: "@codemirror/commands": ^6.7.1 "@codemirror/lang-markdown": ^6.3.1 @@ -2965,19 +2991,19 @@ __metadata: "@codemirror/search": ^6.5.8 "@codemirror/view": ^6.35.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/codeeditor": ^4.4.0-beta.0 - "@jupyterlab/codemirror": ^4.4.0-beta.0 - "@jupyterlab/settingregistry": ^4.4.0-beta.0 - "@jupyterlab/statusbar": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/codeeditor": ^4.4.0-beta.1 + "@jupyterlab/codemirror": ^4.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/statusbar": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.6.0 "@rjsf/utils": ^5.13.4 "@rjsf/validator-ajv8": ^5.13.4 react: ^18.2.0 - checksum: 84aad53bdb3b9bff707801bbb5b70b232f54b75526e10a6dc012371f5a6291984035b65f2164a8a9a17f6bdeb2cf0725309f38b031b14df52dd804d74bb60e7b + checksum: bf8e7c0a3314a02a5725d798a0e2d63f607023341c0254a346b936162b0c88b1f95dce17d97ab7bef1d9e699a7d4f03512951fc2ce8573c5ef13978c86262770 languageName: node linkType: hard @@ -3023,9 +3049,9 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/codemirror@npm:^4.4.0-beta.0, @jupyterlab/codemirror@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/codemirror@npm:4.4.0-beta.0" +"@jupyterlab/codemirror@npm:^4.4.0-beta.1, @jupyterlab/codemirror@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/codemirror@npm:4.4.0-beta.1" dependencies: "@codemirror/autocomplete": ^6.18.3 "@codemirror/commands": ^6.7.1 @@ -3048,11 +3074,11 @@ __metadata: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/codeeditor": ^4.4.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/documentsearch": ^4.4.0-beta.0 - "@jupyterlab/nbformat": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 + "@jupyterlab/codeeditor": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/documentsearch": ^4.4.0-beta.1 + "@jupyterlab/nbformat": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 "@lezer/common": ^1.2.1 "@lezer/generator": ^1.7.0 "@lezer/highlight": ^1.2.0 @@ -3061,45 +3087,45 @@ __metadata: "@lumino/disposable": ^2.1.3 "@lumino/signaling": ^2.1.3 yjs: ^13.5.40 - checksum: 131d23f4728e57253ac500348b9aba8a94b2ded617109ad6616d316f4f4d3aa91591e3c5ddc0b29c630de73a0f5ba8b0bf74c7ba9e3caaf88c928e16e25b2481 + checksum: ba399e75f7d953190481cb7b9f6138b4ba78f4c7ee1a0dfa054d22d4657ba6c8ce255c415e010dd00a1e9a8bb867b57b071ca222f7ea6de62ed02218e85a2c89 languageName: node linkType: hard -"@jupyterlab/completer-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/completer-extension@npm:4.4.0-beta.0" +"@jupyterlab/completer-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/completer-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/codeeditor": ^4.4.0-beta.0 - "@jupyterlab/completer": ^4.4.0-beta.0 - "@jupyterlab/settingregistry": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/codeeditor": ^4.4.0-beta.1 + "@jupyterlab/completer": ^4.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: bc2fb3b0a97300ea516802b4c99f6c672598264c9b94fe1f9bb32437cc1bd3835aa664f2f471638d029c6308095af92518ac4d4740324bbb9a6d3d310388f492 + checksum: eaa26ee35df5e1be61aabb0b281cab8377042d225f357866fd91aec7fafd88cf376c0700dfa72a97e9669def15869bbb5b9c07dd4eb7160b14cdec1f923f3b8d languageName: node linkType: hard -"@jupyterlab/completer@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/completer@npm:4.4.0-beta.0" +"@jupyterlab/completer@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/completer@npm:4.4.0-beta.1" dependencies: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/codeeditor": ^4.4.0-beta.0 - "@jupyterlab/codemirror": ^4.4.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/rendermime": ^4.4.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/settingregistry": ^4.4.0-beta.0 - "@jupyterlab/statedb": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/codeeditor": ^4.4.0-beta.1 + "@jupyterlab/codemirror": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/statedb": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -3107,57 +3133,57 @@ __metadata: "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: 58fad2678a3ab21e5c98e47a8ea2c282d1cf5fb74efb319884a591f5dc053cb24a03e5f8f0bfdd5806a7c6946f61bf4ab92ae3a445f6794f5037fcbe0a5e3da7 - languageName: node - linkType: hard - -"@jupyterlab/console-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/console-extension@npm:4.4.0-beta.0" - dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/codeeditor": ^4.4.0-beta.0 - "@jupyterlab/completer": ^4.4.0-beta.0 - "@jupyterlab/console": ^4.4.0-beta.0 - "@jupyterlab/filebrowser": ^4.4.0-beta.0 - "@jupyterlab/launcher": ^4.4.0-beta.0 - "@jupyterlab/mainmenu": ^4.4.0-beta.0 - "@jupyterlab/rendermime": ^4.4.0-beta.0 - "@jupyterlab/settingregistry": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + checksum: 8b0f627459f64a55b30a8e216ae78387ba45ce90ae2ed82f7426155e0d026521dca2967a39c0258a8990c891e4498fccac1b146288b1552e6c4d441c5fd33ee8 + languageName: node + linkType: hard + +"@jupyterlab/console-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/console-extension@npm:4.4.0-beta.1" + dependencies: + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/codeeditor": ^4.4.0-beta.1 + "@jupyterlab/completer": ^4.4.0-beta.1 + "@jupyterlab/console": ^4.4.0-beta.1 + "@jupyterlab/filebrowser": ^4.4.0-beta.1 + "@jupyterlab/launcher": ^4.4.0-beta.1 + "@jupyterlab/mainmenu": ^4.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/properties": ^2.0.2 "@lumino/widgets": ^2.6.0 - checksum: 59e338515cf339c76cbbe1b5dc87b63cad8d48f0a73d4276ffdf2a1814cfde3e59e45aea6dd0b12068b0f218f7d2e696258ff64b02a732581eb96f5a495651c1 + checksum: 0466dda6b38fdda315577aaa2c5de01ae46453c331e94a0675690576cb80afb4420cb7f0b32e14a32df17ef80cedfa30e38dccff7368dcde8fd216ee3c7103cd languageName: node linkType: hard -"@jupyterlab/console@npm:^4.4.0-beta.0, @jupyterlab/console@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/console@npm:4.4.0-beta.0" +"@jupyterlab/console@npm:^4.4.0-beta.1, @jupyterlab/console@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/console@npm:4.4.0-beta.1" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/cells": ^4.4.0-beta.0 - "@jupyterlab/codeeditor": ^4.4.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/nbformat": ^4.4.0-beta.0 - "@jupyterlab/observables": ^5.4.0-beta.0 - "@jupyterlab/rendermime": ^4.4.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/cells": ^4.4.0-beta.1 + "@jupyterlab/codeeditor": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/nbformat": ^4.4.0-beta.1 + "@jupyterlab/observables": ^5.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/dragdrop": ^2.1.5 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: 17f44936bd6fc60caee09acce298cb7bf4c7df3b383727c4697f99814bf97dd6602347c21ae5ca1bf5f6d7c4167b66727b022cedc82e7be9af41f91ea9179668 + checksum: 4f224532551491690cc990a0e3a126fdbbb6714857d2afbf27c9111232fe3829b75a8c8e0231942b843a2216f08757e11d486010fc9f36ff4327017948afd05c languageName: node linkType: hard @@ -3175,9 +3201,9 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/coreutils@npm:^6.4.0-beta.0, @jupyterlab/coreutils@npm:~6.4.0-beta.0": - version: 6.4.0-beta.0 - resolution: "@jupyterlab/coreutils@npm:6.4.0-beta.0" +"@jupyterlab/coreutils@npm:^6.4.0-beta.1, @jupyterlab/coreutils@npm:~6.4.0-beta.1": + version: 6.4.0-beta.1 + resolution: "@jupyterlab/coreutils@npm:6.4.0-beta.1" dependencies: "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -3185,94 +3211,94 @@ __metadata: minimist: ~1.2.0 path-browserify: ^1.0.0 url-parse: ~1.5.4 - checksum: 6d6f0dee1657fee6739d3e603fea73e4bcdf9cafca50a15e7a3569e63f530c1c02fd692aacdefa074c6965593741e452f6580cf5e9156b04d5b322a2c0519d85 + checksum: 7314cea4dedd89b26bf297c3735135315814e66d7d877c301c39f7c4cab7622e7806ae81f053e718adc2b5c21b00fb67071c6af52062c371535b734ffa6e4bb0 languageName: node linkType: hard -"@jupyterlab/csvviewer-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/csvviewer-extension@npm:4.4.0-beta.0" +"@jupyterlab/csvviewer-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/csvviewer-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/csvviewer": ^4.4.0-beta.0 - "@jupyterlab/docregistry": ^4.4.0-beta.0 - "@jupyterlab/documentsearch": ^4.4.0-beta.0 - "@jupyterlab/mainmenu": ^4.4.0-beta.0 - "@jupyterlab/observables": ^5.4.0-beta.0 - "@jupyterlab/settingregistry": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/csvviewer": ^4.4.0-beta.1 + "@jupyterlab/docregistry": ^4.4.0-beta.1 + "@jupyterlab/documentsearch": ^4.4.0-beta.1 + "@jupyterlab/mainmenu": ^4.4.0-beta.1 + "@jupyterlab/observables": ^5.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 "@lumino/datagrid": ^2.5.0 "@lumino/widgets": ^2.6.0 - checksum: 087dc2e219838eb49779fc386b63d68a5ad115ac1e6d0a1bcfc95f4d7acf0a87bec71276d4707950152e26015912abb35ccc56bfb851499678d7552f0d1cc915 + checksum: 902b6e733bb2c3ecbf58c462b925ffb2ad9744c7571a29d56914febb6a51eb1efb63d6484badd3fdb1108c3def0c1245c93d9f28926908255c6de21145fb7304 languageName: node linkType: hard -"@jupyterlab/csvviewer@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/csvviewer@npm:4.4.0-beta.0" +"@jupyterlab/csvviewer@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/csvviewer@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/docregistry": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/docregistry": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/coreutils": ^2.2.0 "@lumino/datagrid": ^2.5.0 "@lumino/disposable": ^2.1.3 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: 08da3731171058b431a6051e732c099fd8ebf2c08a593e342a6fdc85079bbff183c339e1120f318b00a3fccc91443bc588c9fe2b7806b53cde4ea022eae210db - languageName: node - linkType: hard - -"@jupyterlab/debugger-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/debugger-extension@npm:4.4.0-beta.0" - dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/cells": ^4.4.0-beta.0 - "@jupyterlab/codeeditor": ^4.4.0-beta.0 - "@jupyterlab/console": ^4.4.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/debugger": ^4.4.0-beta.0 - "@jupyterlab/docregistry": ^4.4.0-beta.0 - "@jupyterlab/fileeditor": ^4.4.0-beta.0 - "@jupyterlab/logconsole": ^4.4.0-beta.0 - "@jupyterlab/notebook": ^4.4.0-beta.0 - "@jupyterlab/rendermime": ^4.4.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/settingregistry": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 + checksum: 5ffa765daa7d31157bba42c2f08209da968a3c574ed9008cc235fb9685fa368aa07fc2bf21548acbc07cc7ba998d4157b616e087691c2862af19c2b2c5b86904 + languageName: node + linkType: hard + +"@jupyterlab/debugger-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/debugger-extension@npm:4.4.0-beta.1" + dependencies: + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/cells": ^4.4.0-beta.1 + "@jupyterlab/codeeditor": ^4.4.0-beta.1 + "@jupyterlab/console": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/debugger": ^4.4.0-beta.1 + "@jupyterlab/docregistry": ^4.4.0-beta.1 + "@jupyterlab/fileeditor": ^4.4.0-beta.1 + "@jupyterlab/logconsole": ^4.4.0-beta.1 + "@jupyterlab/notebook": ^4.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 "@lumino/commands": ^2.3.1 - checksum: 8e650985eed9af7a4e2d1ddeddc9028790f3ab2c028ffffddfb30ef34d98b0cbfe5c2a73fda2bfc90d02618a359f74996746cd2a82e11af84838086fb9f61c1f + checksum: d0ce5697ed4ab963538a4512cf812b7a0226d35ead7a1341104a5fc25aaaa387cea99b1c472ed2e5135b374a1215d402180c170eb3e93a67e04654b388efe2b9 languageName: node linkType: hard -"@jupyterlab/debugger@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/debugger@npm:4.4.0-beta.0" +"@jupyterlab/debugger@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/debugger@npm:4.4.0-beta.1" dependencies: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/react-components": ^0.16.6 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/cells": ^4.4.0-beta.0 - "@jupyterlab/codeeditor": ^4.4.0-beta.0 - "@jupyterlab/codemirror": ^4.4.0-beta.0 - "@jupyterlab/console": ^4.4.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/docregistry": ^4.4.0-beta.0 - "@jupyterlab/fileeditor": ^4.4.0-beta.0 - "@jupyterlab/notebook": ^4.4.0-beta.0 - "@jupyterlab/observables": ^5.4.0-beta.0 - "@jupyterlab/rendermime": ^4.4.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/cells": ^4.4.0-beta.1 + "@jupyterlab/codeeditor": ^4.4.0-beta.1 + "@jupyterlab/codemirror": ^4.4.0-beta.1 + "@jupyterlab/console": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/docregistry": ^4.4.0-beta.1 + "@jupyterlab/fileeditor": ^4.4.0-beta.1 + "@jupyterlab/notebook": ^4.4.0-beta.1 + "@jupyterlab/observables": ^5.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -3284,25 +3310,25 @@ __metadata: "@lumino/widgets": ^2.6.0 "@vscode/debugprotocol": ^1.51.0 react: ^18.2.0 - checksum: b8b06c4cb860cc9ff9da421d754dbac0cfb5316e7035d5b39a5588916064e36713a812d0716404b62160d32de5b5df158a8d40319e3fc8467ba1eeac08f539b0 + checksum: d3938013248d559e77da67229ec3a676515445de9a5af85d451d0d6d128ff4d3456e9a97a13f63e850c993996aab1371557bd209ecbd6b0eba181ecdf53354a8 languageName: node linkType: hard -"@jupyterlab/docmanager-extension@npm:^4.4.0-beta.0, @jupyterlab/docmanager-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/docmanager-extension@npm:4.4.0-beta.0" +"@jupyterlab/docmanager-extension@npm:^4.4.0-beta.1, @jupyterlab/docmanager-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/docmanager-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/docmanager": ^4.4.0-beta.0 - "@jupyterlab/docregistry": ^4.4.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/settingregistry": ^4.4.0-beta.0 - "@jupyterlab/statedb": ^4.4.0-beta.0 - "@jupyterlab/statusbar": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/docmanager": ^4.4.0-beta.1 + "@jupyterlab/docregistry": ^4.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/statedb": ^4.4.0-beta.1 + "@jupyterlab/statusbar": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -3310,7 +3336,7 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 9eea2ce850e8f46ecfaf69e146fd3f3f10bc867bd4bacaddde70dbe6a5c4c4443a7a49788cadb93d46ab379f998b89ece82e336f5d14e3d734c3a54b9db4d17e + checksum: 46f6c358023ca7335d266d996baa69369b053433680df1cbd4a1db2ab43b898083c2b445d0b63f7dc2e079ac6fb32482eb22960a5d0657195bef4f204bab35fe languageName: node linkType: hard @@ -3339,18 +3365,18 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/docmanager@npm:^4.4.0-beta.0, @jupyterlab/docmanager@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/docmanager@npm:4.4.0-beta.0" +"@jupyterlab/docmanager@npm:^4.4.0-beta.1, @jupyterlab/docmanager@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/docmanager@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/docregistry": ^4.4.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/statedb": ^4.4.0-beta.0 - "@jupyterlab/statusbar": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/docregistry": ^4.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/statedb": ^4.4.0-beta.1 + "@jupyterlab/statusbar": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -3360,7 +3386,7 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 124897b5cc5440a372e37b44115ae850da7da0dc07fbda0b511fb32b4947452bbb0fe2494ca155e4d081b00f71659a001646968b4e4ea7c88955deddb290ae14 + checksum: 743ec2e90ffc44b7ff2c5a0fb80da04dc36fb41788961fcab5f983b9b009e718e892651370255f1f1bbfa641d02cc6bc75cee176ad4919031bd2094d6c70ffd8 languageName: node linkType: hard @@ -3390,20 +3416,20 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/docregistry@npm:^4.4.0-beta.0, @jupyterlab/docregistry@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/docregistry@npm:4.4.0-beta.0" +"@jupyterlab/docregistry@npm:^4.4.0-beta.1, @jupyterlab/docregistry@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/docregistry@npm:4.4.0-beta.1" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/codeeditor": ^4.4.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/observables": ^5.4.0-beta.0 - "@jupyterlab/rendermime": ^4.4.0-beta.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/codeeditor": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/observables": ^5.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -3412,22 +3438,22 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 38b78ba0e4dfa91e365d1449fbada165fe6f80688006e7568cc015ec751ebe728079f29757055df9ff986fd811eed9023f15841710ef77cc9cc33803b9042e72 + checksum: b90b8b4f9675562bff74ae7f0a0895c7c0b06c598a9beef38dec5c720d831e5cfb75f0f65a733b02b60e4e6b56989cf1246c334170a4bfcb5c54d98e45b291db languageName: node linkType: hard -"@jupyterlab/documentsearch-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/documentsearch-extension@npm:4.4.0-beta.0" +"@jupyterlab/documentsearch-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/documentsearch-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/documentsearch": ^4.4.0-beta.0 - "@jupyterlab/settingregistry": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/documentsearch": ^4.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 "@lumino/commands": ^2.3.1 "@lumino/widgets": ^2.6.0 - checksum: 2cdca84af2a70105a44c77c2351714ae3f66835e111253676a349f3c2ff5de4f233bd2edd72a912fa2665dbd5da9b113ae4d00bf3aa10908c25e744a672c52fe + checksum: a46fc4f0a9b6bd8b727191e517712aaf80552b252c5b60f182ca6138e33ea813ec79612d706ecdbe3f10ebd46fc8873f8bd5d69099a135cc34fe6009f1bd268b languageName: node linkType: hard @@ -3450,13 +3476,13 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/documentsearch@npm:^4.4.0-beta.0, @jupyterlab/documentsearch@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/documentsearch@npm:4.4.0-beta.0" +"@jupyterlab/documentsearch@npm:^4.4.0-beta.1, @jupyterlab/documentsearch@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/documentsearch@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -3465,63 +3491,63 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 0b26b053bf1874cce29d07af049e97ae0f35a6f7ad3a65ddce71aaca22a4d143637c3051ef341eb39e77b10ec57f1237aa6ff036ccc26990af925f11b4bca4aa + checksum: 908c56e5dec9d6eb1ea3b2fd016726687b509dbe83b5b17869ae534b89a68e372c84eed5138892e0be070d043ebfd9af86cda241120ddde9547aa94e404f8d35 languageName: node linkType: hard -"@jupyterlab/extensionmanager-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/extensionmanager-extension@npm:4.4.0-beta.0" +"@jupyterlab/extensionmanager-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/extensionmanager-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/extensionmanager": ^4.4.0-beta.0 - "@jupyterlab/settingregistry": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 - checksum: bde3f4b16b3f1c56848e4dc48a04d8940b63c56427b95b13adea046590aafe155b06dc8213bbc915769182459794248db2f5dc9714dd258bbb65d6572d6e5b03 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/extensionmanager": ^4.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 + checksum: 4175f2b8763adc8065b7eb610a193dfbb8da3168c293c238ff6bcda96390af99f8a2123134ba727e94106e33977b57e10e300b78c68accad60c9c8e44789b0af languageName: node linkType: hard -"@jupyterlab/extensionmanager@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/extensionmanager@npm:4.4.0-beta.0" +"@jupyterlab/extensionmanager@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/extensionmanager@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/messaging": ^2.0.2 "@lumino/polling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 react-paginate: ^6.3.2 - semver: ^7.3.2 - checksum: 96623e9ceddc55bdb079e89429505c2a0abb950b9ab77215db0661be5a89b578c8f560aa4e0d647989902df70f3068c6ed8082187d2fb46885f062f484884868 - languageName: node - linkType: hard - -"@jupyterlab/filebrowser-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/filebrowser-extension@npm:4.4.0-beta.0" - dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/docmanager": ^4.4.0-beta.0 - "@jupyterlab/docregistry": ^4.4.0-beta.0 - "@jupyterlab/filebrowser": ^4.4.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/settingregistry": ^4.4.0-beta.0 - "@jupyterlab/statedb": ^4.4.0-beta.0 - "@jupyterlab/statusbar": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + semver: ^7.5.2 + checksum: 93f918b941ebf9c3c5808bda43867c9687fb0080aa90713757fb8b51a069d0a0fb54288b4f5d7fd47e0dfd1cd0979017f69940f6c45fa4e5ba4207e138d3ab13 + languageName: node + linkType: hard + +"@jupyterlab/filebrowser-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/filebrowser-extension@npm:4.4.0-beta.1" + dependencies: + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/docmanager": ^4.4.0-beta.1 + "@jupyterlab/docregistry": ^4.4.0-beta.1 + "@jupyterlab/filebrowser": ^4.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/statedb": ^4.4.0-beta.1 + "@jupyterlab/statusbar": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/widgets": ^2.6.0 - checksum: 69955a66d8c4187ee27bf89c76de8842eaad71a53ecf25f106ed87f3d22bc611e1c174b51b0e7a5262e7c12d531a68a4cecd204773a17769a23f31f8c720868e + checksum: 286cf75c0128802a24d371a81af313e71c393c4cba3f274330ce00e63e5c31600db481826df7b2c7463fa533ddfa5e7633f4345e140576b9e10e40d346bfc37e languageName: node linkType: hard @@ -3553,19 +3579,19 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/filebrowser@npm:^4.4.0-beta.0, @jupyterlab/filebrowser@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/filebrowser@npm:4.4.0-beta.0" +"@jupyterlab/filebrowser@npm:^4.4.0-beta.1, @jupyterlab/filebrowser@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/filebrowser@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/docmanager": ^4.4.0-beta.0 - "@jupyterlab/docregistry": ^4.4.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/statedb": ^4.4.0-beta.0 - "@jupyterlab/statusbar": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/docmanager": ^4.4.0-beta.1 + "@jupyterlab/docregistry": ^4.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/statedb": ^4.4.0-beta.1 + "@jupyterlab/statusbar": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -3577,204 +3603,201 @@ __metadata: "@lumino/virtualdom": ^2.0.2 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 514cf03d5474cecc2f720bd74cb96febca5ac99d6020188d3d678480165c9e9e2a9b55067d38e496e13defa0677157c55c4b77f47d142b6717872a96133eba65 + checksum: 25497fce13a09f6141c932a534e73f88806e9859ef7a1673f2be02e2ff4e1da64425100d1f17bcd990b45b06ca616e3f0ebc2cd286d587a75ca0c85e5ab7770a languageName: node linkType: hard -"@jupyterlab/fileeditor-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/fileeditor-extension@npm:4.4.0-beta.0" +"@jupyterlab/fileeditor-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/fileeditor-extension@npm:4.4.0-beta.1" dependencies: "@codemirror/commands": ^6.7.1 "@codemirror/search": ^6.5.8 - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/codeeditor": ^4.4.0-beta.0 - "@jupyterlab/codemirror": ^4.4.0-beta.0 - "@jupyterlab/completer": ^4.4.0-beta.0 - "@jupyterlab/console": ^4.4.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/docregistry": ^4.4.0-beta.0 - "@jupyterlab/documentsearch": ^4.4.0-beta.0 - "@jupyterlab/filebrowser": ^4.4.0-beta.0 - "@jupyterlab/fileeditor": ^4.4.0-beta.0 - "@jupyterlab/launcher": ^4.4.0-beta.0 - "@jupyterlab/lsp": ^4.4.0-beta.0 - "@jupyterlab/mainmenu": ^4.4.0-beta.0 - "@jupyterlab/observables": ^5.4.0-beta.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/settingregistry": ^4.4.0-beta.0 - "@jupyterlab/statusbar": ^4.4.0-beta.0 - "@jupyterlab/toc": ^6.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/codeeditor": ^4.4.0-beta.1 + "@jupyterlab/codemirror": ^4.4.0-beta.1 + "@jupyterlab/completer": ^4.4.0-beta.1 + "@jupyterlab/console": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/docregistry": ^4.4.0-beta.1 + "@jupyterlab/documentsearch": ^4.4.0-beta.1 + "@jupyterlab/filebrowser": ^4.4.0-beta.1 + "@jupyterlab/fileeditor": ^4.4.0-beta.1 + "@jupyterlab/launcher": ^4.4.0-beta.1 + "@jupyterlab/lsp": ^4.4.0-beta.1 + "@jupyterlab/mainmenu": ^4.4.0-beta.1 + "@jupyterlab/observables": ^5.4.0-beta.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/statusbar": ^4.4.0-beta.1 + "@jupyterlab/toc": ^6.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.6.0 - checksum: 95ffe5fc737876faf1226e0124f5e0b23f3f1526bb39a421414d71e219dc21f3f80e8157f31786e20cb6a7b09bcc90df5b30144749df45835b88b0f7ba1e52e9 + checksum: b73fd56579b6825e9c071322f1883ee6095601685afab3cdc06783b8641e704e0ef91998ac84b2a82532d2ff1b4fe6b21d21398bfb84d191542f966b63daa756 languageName: node linkType: hard -"@jupyterlab/fileeditor@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/fileeditor@npm:4.4.0-beta.0" +"@jupyterlab/fileeditor@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/fileeditor@npm:4.4.0-beta.1" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/codeeditor": ^4.4.0-beta.0 - "@jupyterlab/codemirror": ^4.4.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/docregistry": ^4.4.0-beta.0 - "@jupyterlab/documentsearch": ^4.4.0-beta.0 - "@jupyterlab/lsp": ^4.4.0-beta.0 - "@jupyterlab/statusbar": ^4.4.0-beta.0 - "@jupyterlab/toc": ^6.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/codeeditor": ^4.4.0-beta.1 + "@jupyterlab/codemirror": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/docregistry": ^4.4.0-beta.1 + "@jupyterlab/documentsearch": ^4.4.0-beta.1 + "@jupyterlab/lsp": ^4.4.0-beta.1 + "@jupyterlab/statusbar": ^4.4.0-beta.1 + "@jupyterlab/toc": ^6.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/widgets": ^2.6.0 react: ^18.2.0 regexp-match-indices: ^1.0.2 - checksum: 382f50d85759a11754dcc8ce470adc6928077a8dfb5e625503f1c59967f02b3fba4f38d261eebdb1ce2156f8ce5615883668a2d417d0a266296df4f9b02ff0ce + checksum: 7e389aa971614fe58491122c17eab99164b488d7829badf7e7181aacd23c5876ac703afd8a7b0cb6549dd19d936b3e491c844021d9dc67f11e7d0331ee9d0caa languageName: node linkType: hard -"@jupyterlab/help-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/help-extension@npm:4.4.0-beta.0" +"@jupyterlab/help-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/help-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/mainmenu": ^4.4.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/signaling": ^2.1.3 - "@lumino/virtualdom": ^2.0.2 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/mainmenu": ^4.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 22c26f3d5ae0cc1fdb108669f6d5f33569fe9623eb1513325d6e55a8ea3ab2a567d8779d5daaf1bb3a2325ed3f0b8972383e08a39a29780ba516581aaf855feb + checksum: 09c133c8397d4868bc523afbad3094e147bae7c929b6fade6701422fe5ee76b3c7963e0af3bc6fd3e0582ca3051d55b29021aeaf5bd63e6aab31da1ec864a26c languageName: node linkType: hard -"@jupyterlab/htmlviewer-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/htmlviewer-extension@npm:4.4.0-beta.0" +"@jupyterlab/htmlviewer-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/htmlviewer-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/docregistry": ^4.4.0-beta.0 - "@jupyterlab/htmlviewer": ^4.4.0-beta.0 - "@jupyterlab/observables": ^5.4.0-beta.0 - "@jupyterlab/settingregistry": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 - checksum: 2ae644604daae6c5af4e0fa4426f8690e436ab0dbc2d6baedeba375a0c7b2ea5c91152a10c6954ad6d172e46cc0b6cb9777e96617d9ea714a17ed716a77f8070 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/docregistry": ^4.4.0-beta.1 + "@jupyterlab/htmlviewer": ^4.4.0-beta.1 + "@jupyterlab/observables": ^5.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 + checksum: 6db9cf83d793eef523ff1c0ed4f84faf3472380e87197659c249f4b4e858f1a75e741946ca9c908538e79107c6aaf2b03452746cb2c090f991558cad71d14507 languageName: node linkType: hard -"@jupyterlab/htmlviewer@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/htmlviewer@npm:4.4.0-beta.0" +"@jupyterlab/htmlviewer@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/htmlviewer@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/docregistry": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/docregistry": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/coreutils": ^2.2.0 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 59485131b2b5c0282fec5c956110ebecf50b155273a10c227e38f57b9e457555d50e8020e5abc5c3351dcadaeca9d90d217856b058f8eaf3cd55a3d3cc84d9f4 + checksum: d0ee7ebad3b247fa47095d53183967ff4c68036776146f503d222be60ba69ea5dd9400b9a6bc24b2a129ef25b42d0cfe848c73c65e2b89d1d6082348ef856fb2 languageName: node linkType: hard -"@jupyterlab/hub-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/hub-extension@npm:4.4.0-beta.0" +"@jupyterlab/hub-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/hub-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - checksum: daaa49bce4ba665c1a7ed07081f21dd7f41c55baf1aad7670716f8e23bc8bfa3753da2b2665999fc51d778a28c77b96abfc7baef241efc46a04c838fe4df6b4f + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + checksum: d677f02dd90497689ba42094978d869a3024704afad73c816f3066c27d2f7d7358fcf1b747ab2c6290fa059468bcbbfa16e0fb54de6946189afe54a724840108 languageName: node linkType: hard -"@jupyterlab/imageviewer-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/imageviewer-extension@npm:4.4.0-beta.0" +"@jupyterlab/imageviewer-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/imageviewer-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/docregistry": ^4.4.0-beta.0 - "@jupyterlab/imageviewer": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - checksum: 85611781c3e18ed79cb00ca90d78d073829e0a3829a781909fc731242be4c359809d58cad017a20e66d639fd8eaeabdb2b94a0e3a9aff6ef02cea06dd9299d7d + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/docregistry": ^4.4.0-beta.1 + "@jupyterlab/imageviewer": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + checksum: 791e3454a1411212438734514bc8ec88b43281342f93c022d5e50daf5cbb477f4e56dec714d5d5327a02cca9c0751145f459769c89b6c722ec08c59a5624732f languageName: node linkType: hard -"@jupyterlab/imageviewer@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/imageviewer@npm:4.4.0-beta.0" +"@jupyterlab/imageviewer@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/imageviewer@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/docregistry": ^4.4.0-beta.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/docregistry": ^4.4.0-beta.1 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/widgets": ^2.6.0 - checksum: 323b01f8ceb17c9828145a9d0f093526a7e3e2dd7ceccdf475517b7488581f6eae497cf32e23fdce163012edc55349b6b102ee576b87bb01b2208609073182ae + checksum: fb422c4a2a43ddaed9ee58fadc4e29bd0c29e5a054986b183d3cec1fe4b1f417d2298f6ebf7da8f8c67b4529034ebdd26ab501f34b8be55f59fa67e6203f74ac languageName: node linkType: hard -"@jupyterlab/inspector@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/inspector@npm:4.4.0-beta.0" +"@jupyterlab/inspector@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/inspector@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/codeeditor": ^4.4.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/rendermime": ^4.4.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/statedb": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/codeeditor": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/statedb": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/polling": ^2.1.3 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: fd5d1acb3853cdf0036274d0fa3ab8019030efb11d91d02df25ec3da85891c3ec0a171b9c9054849fda79825043e58f6d329e116746663afff4ee3b54cfee04b + checksum: f0a689e9b36ace708b410da64ea1ec997cafea3418323f774999aa9cfeb434c9469dad9067ccff85d44f7971e012385fde1fcca1bc3ab46d9bd6e6ee8808c16c languageName: node linkType: hard -"@jupyterlab/javascript-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/javascript-extension@npm:4.4.0-beta.0" +"@jupyterlab/javascript-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/javascript-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/rendermime": ^4.4.0-beta.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.0 - checksum: e2f34e4614503539dcf32943cd59a19aaeaa35916a9d3753f6acc8a7d2ccfeca8522426a5012f329848732854b0ce9e0c4d349073cffb4c632baad7b2f3d6bff + "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 + checksum: b6b9d6d618a24406f9f113713791ec790ff97f12bdc77c4c0339dec14a9f449bc40246897522dff72e37d8e0834b45e83ff26076d21e4c1af2f7573739bb0d6b languageName: node linkType: hard -"@jupyterlab/json-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/json-extension@npm:4.4.0-beta.0" +"@jupyterlab/json-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/json-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/codemirror": ^4.4.0-beta.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/codemirror": ^4.4.0-beta.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lezer/highlight": ^1.2.0 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 @@ -3784,17 +3807,17 @@ __metadata: react-highlight-words: ^0.20.0 react-json-tree: ^0.18.0 style-mod: ^4.0.0 - checksum: 29ad18d34f274fbad18f44edf44b895446df9aecd681edf57afb5abd286537893a1aae5759c86c1147a0b2f199f633e845bbc5bdb98c442e87e9bd022ea7a12e + checksum: 4db3c0883b13741f61dce0b75371c7d695eee35f44e1adbc2841cf565f4a4cbcc2467287e17e9fa65bb52586482a5172b8d7a1d170056ebf8531e0efa9d67bc5 languageName: node linkType: hard -"@jupyterlab/launcher@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/launcher@npm:4.4.0-beta.0" +"@jupyterlab/launcher@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/launcher@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -3802,46 +3825,46 @@ __metadata: "@lumino/properties": ^2.0.2 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: e3612f62cfc17f9e882b5aba07ecc4edb2d139784d9b139ab8e14119e408d902967ddf39024b021c4384c3192e9ac1edee19dc2f8ea9f9daae9465a8f2cc614e + checksum: c11130929b2f56811ab5d211f0269b22d1efbb090a44fe30c7a32dbe096fe1675ba94e7ebeca81320668666dcc783ab5f73e5ee2d578db1c4d380b469bbbbd1f languageName: node linkType: hard -"@jupyterlab/logconsole@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/logconsole@npm:4.4.0-beta.0" +"@jupyterlab/logconsole@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/logconsole@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/nbformat": ^4.4.0-beta.0 - "@jupyterlab/outputarea": ^4.4.0-beta.0 - "@jupyterlab/rendermime": ^4.4.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/nbformat": ^4.4.0-beta.1 + "@jupyterlab/outputarea": ^4.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: 71ec7f5084312db8f304b17de6726cc7e6d8a1dfdfeca6aeafcbb53ee993168bdd3275efa7d0348f5edddf9284cbff3a20a20c5b20c84d0234cc773eb5365ebc + checksum: 81f615a0d21b9543fb48298b4f998a871c0d5a9e10f18d0406a2285afc0f93ab67eceb65d65abde43773abad6152633887eeb79c0b2dd40c13189ee8094236cb languageName: node linkType: hard -"@jupyterlab/lsp-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/lsp-extension@npm:4.4.0-beta.0" +"@jupyterlab/lsp-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/lsp-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/lsp": ^4.4.0-beta.0 - "@jupyterlab/running": ^4.4.0-beta.0 - "@jupyterlab/settingregistry": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/lsp": ^4.4.0-beta.1 + "@jupyterlab/running": ^4.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/coreutils": ^2.2.0 "@lumino/polling": ^2.1.3 "@lumino/signaling": ^2.1.3 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: 4a7ff517bde8189bc4409f4a59b8e1c8cf23f5f170ff87204077ef1e8660e63567c87e8fd3f90c50eb51afe5a5782702f8be960028c11905beec52e5670fb808 + checksum: 633ffa03c9e2864c559f9bcbd4b1a66cd095bfec48c8c0ab71e5b36d64f40f74275d43cd134de1b02ed83520e0699541c3b64908ccdcf61de9a2c04b15221996 languageName: node linkType: hard @@ -3868,17 +3891,17 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/lsp@npm:^4.4.0-beta.0, @jupyterlab/lsp@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/lsp@npm:4.4.0-beta.0" +"@jupyterlab/lsp@npm:^4.4.0-beta.1, @jupyterlab/lsp@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/lsp@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/codeeditor": ^4.4.0-beta.0 - "@jupyterlab/codemirror": ^4.4.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/docregistry": ^4.4.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/codeeditor": ^4.4.0-beta.1 + "@jupyterlab/codemirror": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/docregistry": ^4.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/signaling": ^2.1.3 @@ -3887,164 +3910,164 @@ __metadata: vscode-jsonrpc: ^6.0.0 vscode-languageserver-protocol: ^3.17.0 vscode-ws-jsonrpc: ~1.0.2 - checksum: dfda25afe04729bc3bf65c06578cd489555fb167b16e86b89ba5f12386edfe9e5a21bcf04ab9f4f305a20d101ba83b4229ef822ae1c106d0bd66ddea1c657620 + checksum: b05f41e1ff95622470e63c759f9d3057e9c5588ae69f521f1b8df064df7502d67f82a2bb2138c584efceedf425cdc41ff9523f88b6025e6e43bd14b836c2c61f languageName: node linkType: hard -"@jupyterlab/mainmenu-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/mainmenu-extension@npm:4.4.0-beta.0" +"@jupyterlab/mainmenu-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/mainmenu-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/docmanager": ^4.4.0-beta.0 - "@jupyterlab/filebrowser": ^4.4.0-beta.0 - "@jupyterlab/mainmenu": ^4.4.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/settingregistry": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/docmanager": ^4.4.0-beta.1 + "@jupyterlab/filebrowser": ^4.4.0-beta.1 + "@jupyterlab/mainmenu": ^4.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/messaging": ^2.0.2 "@lumino/widgets": ^2.6.0 - checksum: d5558ce3f2383ca77f1e8bf23be7e083c546f45707ccb6b7e2bb56943ad97bca3d73d00277cac6e3e163fc1bedffc4d8d69544b1f8390dd9c6440d8eade34a08 + checksum: 77ddfd127707d52c8b461045561bdc39fe57b393b6cdea9c3707eec38fdb70395a5b8b9cdd2b561a7f346346bce3dfb0e4f9437175e7414f707526e3d34d9a97 languageName: node linkType: hard -"@jupyterlab/mainmenu@npm:^4.4.0-beta.0, @jupyterlab/mainmenu@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/mainmenu@npm:4.4.0-beta.0" +"@jupyterlab/mainmenu@npm:^4.4.0-beta.1, @jupyterlab/mainmenu@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/mainmenu@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.6.0 - checksum: b716be69d5c9c455d4112dd46827e23f14e7b20e669d896ee9d160443906a3cf811bda82a74a9be7b17f16dcea1ed1b8aff2b0cce6525beb355f5cefe0e5c203 + checksum: 273272edf8f57f5a3e9b55861506099778f872b81bf7937d5b16a0140cdb10f3fbdf1118e531b486b5e4870fad8c652bdc9fb9f7071cb73c463d8ecc0cb57ef8 languageName: node linkType: hard -"@jupyterlab/markdownviewer-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/markdownviewer-extension@npm:4.4.0-beta.0" +"@jupyterlab/markdownviewer-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/markdownviewer-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/markdownviewer": ^4.4.0-beta.0 - "@jupyterlab/rendermime": ^4.4.0-beta.0 - "@jupyterlab/settingregistry": ^4.4.0-beta.0 - "@jupyterlab/toc": ^6.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - checksum: cb9f9b3bcb4973f7728313a5c0443eb62bd00d46c48c8da6fa2bd48e1083044663190da4cc8344c3559e8aea127eed3da0788f20291d81f16b0b8389a1db410c + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/markdownviewer": ^4.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/toc": ^6.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + checksum: 1daf7b7339d5e326dfeef9400ccd829bfebd2e6f0a99b1fce24c8d660e8bc12b37dff63ead366c7ddc0f4bd4eb5525ee534e8bf36f9a3cef9d4977a2cd79cde8 languageName: node linkType: hard -"@jupyterlab/markdownviewer@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/markdownviewer@npm:4.4.0-beta.0" +"@jupyterlab/markdownviewer@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/markdownviewer@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/docregistry": ^4.4.0-beta.0 - "@jupyterlab/rendermime": ^4.4.0-beta.0 - "@jupyterlab/toc": ^6.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/docregistry": ^4.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/toc": ^6.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: 0320793d06829b6c1719c4e80738e7dc4100a774532aa45cfd6d7244b011fb870f14650b269ccd1ac628eab8b69191f4f0dcbb88a29f7b2c5e83d62e67968519 + checksum: b7fcffc0e00a8ee9d30a8e23f681a0f126502c5c21905698df512556a628763bb77cab1adf62e159c54ac12ce9b54ebff69f5b874e870449e78fe9f6cb3d4241 languageName: node linkType: hard -"@jupyterlab/markedparser-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/markedparser-extension@npm:4.4.0-beta.0" +"@jupyterlab/markedparser-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/markedparser-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/codemirror": ^4.4.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/mermaid": ^4.4.0-beta.0 - "@jupyterlab/rendermime": ^4.4.0-beta.0 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/codemirror": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/mermaid": ^4.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 "@lumino/coreutils": ^2.2.0 marked: ^15.0.3 marked-gfm-heading-id: ^4.1.1 marked-mangle: ^1.1.10 - checksum: 474187b311c220a6c0649f1c8e5e9b25c167d8237c0b3b4d0caf3052e3ecf2d3ac968ab86aafa1493266cc93ff022aacfb120f76fa4ca86842f067a781d3a3c8 + checksum: 4d86f7333de4a757344e9f3c84590c31789051fa25e633abb8c5371e220b75d7829ee0e296e43df286b27519a5a80b7b9137176744f5cfa94b42e7a4e8277bbd languageName: node linkType: hard -"@jupyterlab/mathjax-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/mathjax-extension@npm:4.4.0-beta.0" +"@jupyterlab/mathjax-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/mathjax-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/rendermime": ^4.4.0-beta.0 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 "@lumino/coreutils": ^2.2.0 mathjax-full: ^3.2.2 - checksum: e814b4d2e49a13c17549e62f8f8a11831e839e9252cd45721cc7c7a874565078cc83ab882ed543fa203dbba11b0ef1e1d495fdef66342612af259fa6e802a4bd + checksum: 6dac7639228920a122f187e624097efb3a67d755054bbbe8c8246dcc83660d8dd5f00b5942ea1ecc5aeee59cea702b1fe96a936c95356af15ee22c1b0833d998 languageName: node linkType: hard -"@jupyterlab/mermaid-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/mermaid-extension@npm:4.4.0-beta.0" +"@jupyterlab/mermaid-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/mermaid-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/mermaid": ^4.4.0-beta.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - checksum: 640b835627c8160e7025e85216d8fd60793c4022cdc02d344a52fbca00c41a4f1a9d83d534ddb71543137e7e48994741b2ea6d004d29dddc989d418c6daf6715 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/mermaid": ^4.4.0-beta.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + checksum: e75f3e01f234b5080882213f81fc80aafa8e48fdd8cbb42794c7ede9a23d4738fa9271f81dacb61b3208d51bea36e572d910c467b1e5177110e170014f9f3f62 languageName: node linkType: hard -"@jupyterlab/mermaid@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/mermaid@npm:4.4.0-beta.0" +"@jupyterlab/mermaid@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/mermaid@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.6.0 "@mermaid-js/layout-elk": ^0.1.7 mermaid: ^11.4.1 - checksum: a82567f904c023226ba4d30941ca284b177f35968d9fe535f91e76bd8a9d36a1f709824fddf384b1350d8cdcffb8c357f153a9ecdf6460a8a852ef4b036fd2e6 + checksum: 411e8c6708796f1e2cebd57e0d5e7b2d93e4544f442e1e1a24efcb79a3e2d03aabca33ab889f45a11e4c34f1c87c4c0bd8cf750d3cf6edbebb54004aa9532799 languageName: node linkType: hard -"@jupyterlab/metadataform-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/metadataform-extension@npm:4.4.0-beta.0" +"@jupyterlab/metadataform-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/metadataform-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/metadataform": ^4.4.0-beta.0 - "@jupyterlab/notebook": ^4.4.0-beta.0 - "@jupyterlab/settingregistry": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/metadataform": ^4.4.0-beta.1 + "@jupyterlab/notebook": ^4.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/coreutils": ^2.2.0 - checksum: 1e1ceb63f2ca44d08b08ec0c2a9fa314e927d45d4c31de7053a9809b4ce61ebb565562378b2ae9d8eca6ec1df9a2e3e766c6872cc42ec108af984b2aa7179196 + checksum: f91828a97f09b9c529d642b31508821e12f815d8f2005305332f7ae5bb7d2742042ed019580fbc0ba29d19fbd1bd742d0c138aadfd16b0ae7b33bc2fea868cb6 languageName: node linkType: hard -"@jupyterlab/metadataform@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/metadataform@npm:4.4.0-beta.0" +"@jupyterlab/metadataform@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/metadataform@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/nbformat": ^4.4.0-beta.0 - "@jupyterlab/notebook": ^4.4.0-beta.0 - "@jupyterlab/settingregistry": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/nbformat": ^4.4.0-beta.1 + "@jupyterlab/notebook": ^4.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/widgets": ^2.6.0 @@ -4052,7 +4075,7 @@ __metadata: "@rjsf/validator-ajv8": ^5.13.4 json-schema: ^0.4.0 react: ^18.2.0 - checksum: 290685338fcb04877305121b752c1df46e7b7348d1205432edfc146d4186a3c4aea5e581be9cfcafea992812a215055ed1f674843d1b5933deffaf3159fbc3ce + checksum: ca396f26f556e87de045f10728b500715281e16334cbe4b51df1b7756a0b8dbbb7bf370e85fb1eaa522a793cfe590d4757fd286441f4df550167106f270b7bd9 languageName: node linkType: hard @@ -4065,49 +4088,49 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/nbformat@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/nbformat@npm:4.4.0-beta.0" +"@jupyterlab/nbformat@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/nbformat@npm:4.4.0-beta.1" dependencies: "@lumino/coreutils": ^2.2.0 - checksum: 40d4d6dfc8df16676ba795d7bf041790920e5007f679c6bd8a2ffd6efcc313ca8d3070018821c9283d87ec93d601b48594e7ac81c22f459e0eab1968a919d484 + checksum: 761245ab4b4895c7d4ae31f92cb593d8493ca7c14c632a01699b86028f269c330652d53374cb71793090015369e65722343188143823e7e2b48ef8f7f7781f1d languageName: node linkType: hard -"@jupyterlab/notebook-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/notebook-extension@npm:4.4.0-beta.0" +"@jupyterlab/notebook-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/notebook-extension@npm:4.4.0-beta.1" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/cells": ^4.4.0-beta.0 - "@jupyterlab/codeeditor": ^4.4.0-beta.0 - "@jupyterlab/codemirror": ^4.4.0-beta.0 - "@jupyterlab/completer": ^4.4.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/docmanager": ^4.4.0-beta.0 - "@jupyterlab/docmanager-extension": ^4.4.0-beta.0 - "@jupyterlab/docregistry": ^4.4.0-beta.0 - "@jupyterlab/documentsearch": ^4.4.0-beta.0 - "@jupyterlab/filebrowser": ^4.4.0-beta.0 - "@jupyterlab/launcher": ^4.4.0-beta.0 - "@jupyterlab/logconsole": ^4.4.0-beta.0 - "@jupyterlab/lsp": ^4.4.0-beta.0 - "@jupyterlab/mainmenu": ^4.4.0-beta.0 - "@jupyterlab/metadataform": ^4.4.0-beta.0 - "@jupyterlab/nbformat": ^4.4.0-beta.0 - "@jupyterlab/notebook": ^4.4.0-beta.0 - "@jupyterlab/observables": ^5.4.0-beta.0 - "@jupyterlab/property-inspector": ^4.4.0-beta.0 - "@jupyterlab/rendermime": ^4.4.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/settingregistry": ^4.4.0-beta.0 - "@jupyterlab/statedb": ^4.4.0-beta.0 - "@jupyterlab/statusbar": ^4.4.0-beta.0 - "@jupyterlab/toc": ^6.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/cells": ^4.4.0-beta.1 + "@jupyterlab/codeeditor": ^4.4.0-beta.1 + "@jupyterlab/codemirror": ^4.4.0-beta.1 + "@jupyterlab/completer": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/docmanager": ^4.4.0-beta.1 + "@jupyterlab/docmanager-extension": ^4.4.0-beta.1 + "@jupyterlab/docregistry": ^4.4.0-beta.1 + "@jupyterlab/documentsearch": ^4.4.0-beta.1 + "@jupyterlab/filebrowser": ^4.4.0-beta.1 + "@jupyterlab/launcher": ^4.4.0-beta.1 + "@jupyterlab/logconsole": ^4.4.0-beta.1 + "@jupyterlab/lsp": ^4.4.0-beta.1 + "@jupyterlab/mainmenu": ^4.4.0-beta.1 + "@jupyterlab/metadataform": ^4.4.0-beta.1 + "@jupyterlab/nbformat": ^4.4.0-beta.1 + "@jupyterlab/notebook": ^4.4.0-beta.1 + "@jupyterlab/observables": ^5.4.0-beta.1 + "@jupyterlab/property-inspector": ^4.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/statedb": ^4.4.0-beta.1 + "@jupyterlab/statusbar": ^4.4.0-beta.1 + "@jupyterlab/toc": ^6.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -4117,7 +4140,7 @@ __metadata: "@lumino/widgets": ^2.6.0 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: bbdd8e5af2485e47b06892ebbcb852eb3276a83d1f17bfb51eaab533ed8c08f9a416ecbf340d7dfc4a65164e9225023a2a9a2f96fde635b04214d2c0a8119d1b + checksum: c177a2769cd6d823d40f96206b934ee403116467ecff5f49217ff6cedb57ee30858dff07bd9124a0e16b790d22e59582861191c215cfdffa31977755761cecb0 languageName: node linkType: hard @@ -4159,28 +4182,28 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/notebook@npm:^4.4.0-beta.0, @jupyterlab/notebook@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/notebook@npm:4.4.0-beta.0" +"@jupyterlab/notebook@npm:^4.4.0-beta.1, @jupyterlab/notebook@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/notebook@npm:4.4.0-beta.1" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/cells": ^4.4.0-beta.0 - "@jupyterlab/codeeditor": ^4.4.0-beta.0 - "@jupyterlab/codemirror": ^4.4.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/docregistry": ^4.4.0-beta.0 - "@jupyterlab/documentsearch": ^4.4.0-beta.0 - "@jupyterlab/lsp": ^4.4.0-beta.0 - "@jupyterlab/nbformat": ^4.4.0-beta.0 - "@jupyterlab/observables": ^5.4.0-beta.0 - "@jupyterlab/rendermime": ^4.4.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/settingregistry": ^4.4.0-beta.0 - "@jupyterlab/statusbar": ^4.4.0-beta.0 - "@jupyterlab/toc": ^6.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/cells": ^4.4.0-beta.1 + "@jupyterlab/codeeditor": ^4.4.0-beta.1 + "@jupyterlab/codemirror": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/docregistry": ^4.4.0-beta.1 + "@jupyterlab/documentsearch": ^4.4.0-beta.1 + "@jupyterlab/lsp": ^4.4.0-beta.1 + "@jupyterlab/nbformat": ^4.4.0-beta.1 + "@jupyterlab/observables": ^5.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/statusbar": ^4.4.0-beta.1 + "@jupyterlab/toc": ^6.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -4193,7 +4216,7 @@ __metadata: "@lumino/virtualdom": ^2.0.2 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: a1fea9cc864a1f79dc8dd2113ca03e7f8fd2424bb49d396a6934cf9a948c3f4651afdcbe374df9b27dd593e4c0f07160c150fa36dc96e05af8a6d854ef937841 + checksum: dda82ad30ffe3420c73785adb7a20cb1d2e71295b64fd69241caf525194f5e629fb58728313b0fe4bd653b8b304c17aadb2788637bde7ff907786d111bc0586b languageName: node linkType: hard @@ -4210,16 +4233,16 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/observables@npm:^5.4.0-beta.0": - version: 5.4.0-beta.0 - resolution: "@jupyterlab/observables@npm:5.4.0-beta.0" +"@jupyterlab/observables@npm:^5.4.0-beta.1": + version: 5.4.0-beta.1 + resolution: "@jupyterlab/observables@npm:5.4.0-beta.1" dependencies: "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 - checksum: 8b6ae87e06c7d65a081e04dd1861f78d5c1a051718152646890528f3a215d3db982f9529f3b22638971d2f7f841c408333ad12138a51580d23d388cc05d13217 + checksum: 8e3a229ec562cfe35d4dbb77381b54779908736ccee7fcebc58a3a50296764bae13fd7017882c45b0d00e5044631aeedde1343931e7f3d300db795238dd3fd5e languageName: node linkType: hard @@ -4245,17 +4268,17 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/outputarea@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/outputarea@npm:4.4.0-beta.0" +"@jupyterlab/outputarea@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/outputarea@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/nbformat": ^4.4.0-beta.0 - "@jupyterlab/observables": ^5.4.0-beta.0 - "@jupyterlab/rendermime": ^4.4.0-beta.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/nbformat": ^4.4.0-beta.1 + "@jupyterlab/observables": ^5.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -4263,67 +4286,67 @@ __metadata: "@lumino/properties": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: e19ab7e9e319260c1307beebfb5935829e794024c3097b1c0b340a67bec9135c0322ba5a2771cb0ce34ead5cbfb3089b8490fe3914d008673edf4dce19eb9fbf + checksum: cb9dd129c7a142e3876a9a7402bb75ee82be90fa4c8d462b070714fe21a2303fe945ecc27560b24b3d6f33cb6d5ee83e6dff5e19150a277db21f9c3b6b4f0ad9 languageName: node linkType: hard -"@jupyterlab/pdf-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/pdf-extension@npm:4.4.0-beta.0" +"@jupyterlab/pdf-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/pdf-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: fe792bd30f3882a40b54b2fd7303759d60b5c478bf8ad8573f9ec6d0f0045964deb49d9532ea4e4157983b393700e2df94bdcb930fd42bd47ffeb9e5d11c0003 + checksum: 38f46e83f9bcbf881499e5b0e79db7d56c40113f6fd9c0a7131c66edb49dfad8e91752737db48c64b44f993fe393d4c5b166d6d752830e06be5af05cec8780e3 languageName: node linkType: hard -"@jupyterlab/pluginmanager-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/pluginmanager-extension@npm:4.4.0-beta.0" +"@jupyterlab/pluginmanager-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/pluginmanager-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/pluginmanager": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/pluginmanager": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/coreutils": ^2.2.0 - checksum: 5883e4230f9dff9c99b08eaa623bffda2d363e8964ef35205a0522b14a48c5b7c3fdfd4a4634a68308383b50f67985f25d2770b1f7ce5d7d7627311cb7239d55 + checksum: b0f7a4050ac6b8e48f4a371ab7c2cd66d6d5ff46fc585449f416acfaa9c73cb4e2a5010d5930844f8d51fa4d4b2f2e503ebf1679e637eb855de3042f49fed30f languageName: node linkType: hard -"@jupyterlab/pluginmanager@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/pluginmanager@npm:4.4.0-beta.0" +"@jupyterlab/pluginmanager@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/pluginmanager@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/coreutils": ^2.2.0 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 66ad4e20bcce129d1e1db5fc67d21b035698b3f9e9c6f7d561a685c1ed78067b50aa1abdb0f5ab92aad516163c91f40804da4252a28d5e34bbfcadb2e7ddaac0 + checksum: 2664fc47ff60380e01badae3bce85d2069ef71b8f09e83543851a8a1a028642de766d46e764d22f95421f39fe5fcf365b86ee5288e349f4e01825f8333114f5e languageName: node linkType: hard -"@jupyterlab/property-inspector@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/property-inspector@npm:4.4.0-beta.0" +"@jupyterlab/property-inspector@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/property-inspector@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 86971c18110ba9660215d2251b030ec5b7456965e31246f5b661f83cee20473d7e89a9183625ccc7161fa752dd54f0a3bea5c61cce4a413d2a32a0c0f91e6ddb + checksum: 7ebd48f67f5fb39f4cc651406a5eac530eedb7e298d972787ae9379ae7bcaec482f50905e9cf2c343bbb4385b85cc5cf4bcf78bdfab979f415505564f8eb859c languageName: node linkType: hard @@ -4337,13 +4360,13 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/rendermime-interfaces@npm:^3.12.0-beta.0, @jupyterlab/rendermime-interfaces@npm:~3.12.0-beta.0": - version: 3.12.0-beta.0 - resolution: "@jupyterlab/rendermime-interfaces@npm:3.12.0-beta.0" +"@jupyterlab/rendermime-interfaces@npm:^3.12.0-beta.1, @jupyterlab/rendermime-interfaces@npm:~3.12.0-beta.1": + version: 3.12.0-beta.1 + resolution: "@jupyterlab/rendermime-interfaces@npm:3.12.0-beta.1" dependencies: "@lumino/coreutils": ^1.11.0 || ^2.2.0 "@lumino/widgets": ^1.37.2 || ^2.6.0 - checksum: 60972f9d8896b35d5bce835ec02a02ba5dd3d9621a6af3e9cb64b4f20eed040e4be6d386e92ee5f65928b569b2bcc5d9319ad4436a436e15c49b74c05229bbd0 + checksum: a357e6bbda886f6c4ac0e3852f8ae7486d27217e58961444c372232b6edf54ead62b18e37d673f86ce3aa115ed5675d815dcd8e49541d21e6309e73c8ce33d80 languageName: node linkType: hard @@ -4367,59 +4390,59 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/rendermime@npm:^4.4.0-beta.0, @jupyterlab/rendermime@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/rendermime@npm:4.4.0-beta.0" +"@jupyterlab/rendermime@npm:^4.4.0-beta.1, @jupyterlab/rendermime@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/rendermime@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/nbformat": ^4.4.0-beta.0 - "@jupyterlab/observables": ^5.4.0-beta.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/nbformat": ^4.4.0-beta.1 + "@jupyterlab/observables": ^5.4.0-beta.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 lodash.escape: ^4.0.1 - checksum: e3ca331c65098733dceedbb1636830f37092f0c2bda571a922c6e925b4e389c7def0e3837c205aab8ca8d57b5c46a85841cdb84842d27b2ff09347dcc026be51 + checksum: f46d9b9d271ba448c548462b885a4531a0494781fcdabaedba4cfbfa1b9cbb76c37242cbfffc08b52b67de3434ca4613f3cfd736ab09d58d92463918f62a7fd0 languageName: node linkType: hard -"@jupyterlab/running-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/running-extension@npm:4.4.0-beta.0" +"@jupyterlab/running-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/running-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/docmanager": ^4.4.0-beta.0 - "@jupyterlab/docregistry": ^4.4.0-beta.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.0 - "@jupyterlab/running": ^4.4.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/statedb": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/docmanager": ^4.4.0-beta.1 + "@jupyterlab/docregistry": ^4.4.0-beta.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 + "@jupyterlab/running": ^4.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/statedb": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/commands": ^2.3.1 "@lumino/polling": ^2.1.3 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 7052c08c3184919f6493552d0e7b0f35929a568e055837235161b618f6da56a3951da5054c183ae2f0a62179e3c6617a29281c16f6f014fe46853f7327b3810e + checksum: 132af385b7fc428b2960e6186617e9e2d3378fe256bc691a8a44a34519d6e3ab0da153b9870fbd65e63dd92a96fb44957b2fc203bd1646b32415be9fc8395f18 languageName: node linkType: hard -"@jupyterlab/running@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/running@npm:4.4.0-beta.0" +"@jupyterlab/running@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/running@npm:4.4.0-beta.1" dependencies: "@jupyter/react-components": ^0.16.6 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/statedb": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/statedb": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/domutils": ^2.0.2 @@ -4427,7 +4450,7 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 9b287349c59f6c59f45f11830f39977c6cac834022dce4969186ebf464d16c61e5d170d4db70c2c34d9cb9f5ea46670a1746b1ef02a13f9c5f80692263432946 + checksum: aced4bb08df45c5fe1ea1933383c4850290e5565ab115355002897870acacbcf7222c6b588bd00cab2c7340b59f5b763b7b4f4ac81c26c7a239a4cef4c213999 languageName: node linkType: hard @@ -4450,58 +4473,58 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/services@npm:^7.4.0-beta.0, @jupyterlab/services@npm:~7.4.0-beta.0": - version: 7.4.0-beta.0 - resolution: "@jupyterlab/services@npm:7.4.0-beta.0" +"@jupyterlab/services@npm:^7.4.0-beta.1, @jupyterlab/services@npm:~7.4.0-beta.1": + version: 7.4.0-beta.1 + resolution: "@jupyterlab/services@npm:7.4.0-beta.1" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/nbformat": ^4.4.0-beta.0 - "@jupyterlab/settingregistry": ^4.4.0-beta.0 - "@jupyterlab/statedb": ^4.4.0-beta.0 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/nbformat": ^4.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/statedb": ^4.4.0-beta.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/polling": ^2.1.3 "@lumino/properties": ^2.0.2 "@lumino/signaling": ^2.1.3 ws: ^8.11.0 - checksum: 8d0207f15bca3fadf1f8eb8c528b1b2c061caa6f2cf7f6fb943d1819a7582cdde4846c6bafd2280d42fa304d3b74e421969997cdb42cb18067fa460e5d244a34 + checksum: c9119f3182a4c85631f8c3f0170265165fb6023eb55ee1ff1bfbaac23c283eb8a1aeaadbd87749585723b582a6edf404915f3ffa4f715b61065ed521935679a3 languageName: node linkType: hard -"@jupyterlab/settingeditor-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/settingeditor-extension@npm:4.4.0-beta.0" +"@jupyterlab/settingeditor-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/settingeditor-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/codeeditor": ^4.4.0-beta.0 - "@jupyterlab/pluginmanager": ^4.4.0-beta.0 - "@jupyterlab/rendermime": ^4.4.0-beta.0 - "@jupyterlab/settingeditor": ^4.4.0-beta.0 - "@jupyterlab/settingregistry": ^4.4.0-beta.0 - "@jupyterlab/statedb": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/codeeditor": ^4.4.0-beta.1 + "@jupyterlab/pluginmanager": ^4.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/settingeditor": ^4.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/statedb": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/disposable": ^2.1.3 react: ^18.2.0 - checksum: 003bb4ff67fe4a0254d441b70e08f84923de7d074edeaf3b2f683f0d175380df220e009afea34e3fe65151b5ae255b3e22552d0c7373e9ad01874d62c50ef3c9 + checksum: 49e211b79a53e5a57f9e594d99b3d2c04109bdb45df92edfe997d6d029f27f911e7a1d68c716276c88c7cd8710c675fd55e3f2fbe08dc9fc70b24bf630608da3 languageName: node linkType: hard -"@jupyterlab/settingeditor@npm:^4.4.0-beta.0, @jupyterlab/settingeditor@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/settingeditor@npm:4.4.0-beta.0" +"@jupyterlab/settingeditor@npm:^4.4.0-beta.1, @jupyterlab/settingeditor@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/settingeditor@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/codeeditor": ^4.4.0-beta.0 - "@jupyterlab/inspector": ^4.4.0-beta.0 - "@jupyterlab/rendermime": ^4.4.0-beta.0 - "@jupyterlab/settingregistry": ^4.4.0-beta.0 - "@jupyterlab/statedb": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/codeeditor": ^4.4.0-beta.1 + "@jupyterlab/inspector": ^4.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/statedb": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -4515,7 +4538,7 @@ __metadata: "@rjsf/validator-ajv8": ^5.13.4 json-schema: ^0.4.0 react: ^18.2.0 - checksum: 94f471ef9980a66ff6748b198132d0e128fb88f3fdc5280c556f08257a825ae27725db5f3f38ad2428e99f93201ee9671da287724f903656d160176b65331bd1 + checksum: 4c1581c871318e4ee2f20897a46f093008c6cc1627b66d26659171e34ce43347bdc2a8032e61ce3edd5f3347a43b5ee374b008161f6e628dafd6403b3628f050 languageName: node linkType: hard @@ -4538,12 +4561,12 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/settingregistry@npm:^4.4.0-beta.0, @jupyterlab/settingregistry@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/settingregistry@npm:4.4.0-beta.0" +"@jupyterlab/settingregistry@npm:^4.4.0-beta.1, @jupyterlab/settingregistry@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/settingregistry@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/nbformat": ^4.4.0-beta.0 - "@jupyterlab/statedb": ^4.4.0-beta.0 + "@jupyterlab/nbformat": ^4.4.0-beta.1 + "@jupyterlab/statedb": ^4.4.0-beta.1 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -4553,18 +4576,18 @@ __metadata: json5: ^2.2.3 peerDependencies: react: ">=16" - checksum: 5af734011769ad73bde2d527c0126cd9582ae0f718dc3fed4cabf6a64250ab198d36c9ce070dba557d244459b1358e65aee233350e1ac4e28876cea0d264eb36 + checksum: 37630b667768dc0f5ceb01a149d4f1c7bdceca85e7d83e5e5f5fbfe75781e02e351257310a43f841c291756e46891a870715c01382c56f927a3a481bed2179d3 languageName: node linkType: hard -"@jupyterlab/shortcuts-extension@npm:~5.2.0-beta.0": - version: 5.2.0-beta.0 - resolution: "@jupyterlab/shortcuts-extension@npm:5.2.0-beta.0" +"@jupyterlab/shortcuts-extension@npm:~5.2.0-beta.1": + version: 5.2.0-beta.1 + resolution: "@jupyterlab/shortcuts-extension@npm:5.2.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/settingregistry": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -4573,7 +4596,7 @@ __metadata: "@lumino/keyboard": ^2.0.2 "@lumino/signaling": ^2.1.3 react: ^18.2.0 - checksum: 160ddfd52f146059df8b78b0456d29f1f5f0afba4e5d2ec05ced98f24b3407ae73adce411ba0ead5a5049146e930c3c3ba0855defaacee83cf90313e926e1b95 + checksum: 5b819bb3e6fb999b4da74bb105dd1e1fd17a7c3da6123839fa7dfbecafdb75f549c380bbe5dbfff0dd8eaa62eb657d7304a1718c71a205ceb8eaf0dec505fdc8 languageName: node linkType: hard @@ -4590,16 +4613,16 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/statedb@npm:^4.4.0-beta.0, @jupyterlab/statedb@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/statedb@npm:4.4.0-beta.0" +"@jupyterlab/statedb@npm:^4.4.0-beta.1, @jupyterlab/statedb@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/statedb@npm:4.4.0-beta.1" dependencies: "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/properties": ^2.0.2 "@lumino/signaling": ^2.1.3 - checksum: f6ba231431ac345932d283f6037a4a5a0b0d8fb6e0866694bcf8f26fee4f28f44056159725fb06b5c936b8dbef5a611ea1c07c08eb546f75af6c537893e516c4 + checksum: 57f67cbc2997b607bd29c0cb96a38d5215602e74caa6d776de5f34900f81b56e967843b30b298951ae10af8157c9cbf5ce9166c72dfd8295264c73846e2dbfef languageName: node linkType: hard @@ -4619,11 +4642,11 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/statusbar@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/statusbar@npm:4.4.0-beta.0" +"@jupyterlab/statusbar@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/statusbar@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -4631,36 +4654,36 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 21a43e71012fed3ce34775b7f21a50ef7643becc56fe5535d4090fd1dc7112dfbb3c13b11f53b04ac8037296d836d02148c65c92d3746aa4a0c0bed7394e46dd + checksum: f9f3c6d485cee429bdae7b57df51891a95146cd9e8ddbd5136ba35ab421e8b48d7fabf007240f51fe931cb432358e237c7eac17b84fda8bf4a58bd0b2d9d00b1 languageName: node linkType: hard -"@jupyterlab/terminal-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/terminal-extension@npm:4.4.0-beta.0" +"@jupyterlab/terminal-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/terminal-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/launcher": ^4.4.0-beta.0 - "@jupyterlab/mainmenu": ^4.4.0-beta.0 - "@jupyterlab/running": ^4.4.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/settingregistry": ^4.4.0-beta.0 - "@jupyterlab/terminal": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/launcher": ^4.4.0-beta.1 + "@jupyterlab/mainmenu": ^4.4.0-beta.1 + "@jupyterlab/running": ^4.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/terminal": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/widgets": ^2.6.0 - checksum: b1797d4dfd34a920048d9be2e001202a8f82e0dd0e7d622b5226d0146d6d7814090efbd964ccfa3430b96cf9c4db13b96d8429e9c374edca58adce45c104a488 + checksum: e146c16a34f09ebddcb461207a79a9aa801cf2a72d1e76d44ac940cc698c8bfd596c21e0c461a33c0fdbb5c9dc92c95fd39a9af7198afd5b665a2f7b8c7dd929 languageName: node linkType: hard -"@jupyterlab/terminal@npm:^4.4.0-beta.0, @jupyterlab/terminal@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/terminal@npm:4.4.0-beta.0" +"@jupyterlab/terminal@npm:^4.4.0-beta.1, @jupyterlab/terminal@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/terminal@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 "@lumino/coreutils": ^2.2.0 "@lumino/domutils": ^2.0.2 "@lumino/messaging": ^2.0.2 @@ -4670,7 +4693,7 @@ __metadata: "@xterm/addon-web-links": ~0.11.0 "@xterm/addon-webgl": ~0.18.0 "@xterm/xterm": ~5.5.0 - checksum: f76c43bc20bbd101db0106f885e9bf7cb980bc21cfd037cfff4f43929e40af4acc8444c031b5b8c804e336e4038720b552b19b887948a46565afea9db11a02b2 + checksum: c15c56836110a7241939da84c590b8b942544604b58df715b5ea56130aa260bf5dbcb75d4344d14bd28d8d6890a42375ee8b5e5a9e3e5fffea2b3fd500a83683 languageName: node linkType: hard @@ -4710,49 +4733,49 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/theme-dark-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/theme-dark-extension@npm:4.4.0-beta.0" +"@jupyterlab/theme-dark-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/theme-dark-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - checksum: bf6cd95fee3ed73b94e1d84594cae1a12bc00e8ec1330f7751886b3d4c4466a09fea851da569ed1073834da28c54c1590f5a86284c1a114f29dcd52fd3c8f224 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + checksum: e44ad5137382920007f1078f2fb0714c4cecd9ec38f23d96c4803c0e7ffe799ff1fbc8b997043640fbc8451763678bd5437eb7a0c01345416f605b0deb1185d4 languageName: node linkType: hard -"@jupyterlab/theme-dark-high-contrast-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/theme-dark-high-contrast-extension@npm:4.4.0-beta.0" +"@jupyterlab/theme-dark-high-contrast-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/theme-dark-high-contrast-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - checksum: accb1fb18750781bfe69ae56c337cab85be68964c9ddc965f4fb19814124e71a3db8621798bf6a71d024755de10a51032983889fca68a3b68fdbdcf55b66776c + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + checksum: d6b7ff9e5986ec4b9dc191ace7644ff3479cd975eb7f808c5ce918c83c1d06e7f0a81df5f42a43afde0ee89e67a2cdad6ce16ad5a91e1cbe3a3604e99987059e languageName: node linkType: hard -"@jupyterlab/theme-light-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/theme-light-extension@npm:4.4.0-beta.0" +"@jupyterlab/theme-light-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/theme-light-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - checksum: af3f1428c71612a5423f0a19d3ebd23b22a41f56017d805eb0fa2a0b6b5a8cf72bcdd3a17947ab588d300e3ca82bc7ab25c3fb4550b5156e9267ab7b1061cc05 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + checksum: a53b9e92fa2ffc7069d2cd0a1570b547cfe36e97391f1c6026f7db8e8e248c8c574fcaa1c027427c60eaf12833392ef6b5c0ee61fc627fa349a40bfbf291d631 languageName: node linkType: hard -"@jupyterlab/toc-extension@npm:~6.4.0-beta.0": - version: 6.4.0-beta.0 - resolution: "@jupyterlab/toc-extension@npm:6.4.0-beta.0" +"@jupyterlab/toc-extension@npm:~6.4.0-beta.1": + version: 6.4.0-beta.1 + resolution: "@jupyterlab/toc-extension@npm:6.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/settingregistry": ^4.4.0-beta.0 - "@jupyterlab/toc": ^6.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 - checksum: aa9f2cb3c0223afda2302294b2a5b3bd5fd24e898e139ce39e2e57568a05d64d79a2b3ce6b67fef74c897e4ee168f7679cb98454a14d37010bcc747a78f4ccdd + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/toc": ^6.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 + checksum: ad43ff636e43e90b4eb5cb14577e432d459b5272dc3ea1441e68cc9abfcceaa6e3f5ee0a43179070f746b948c1168535392621d4a6c0a4b3426075212570b377 languageName: node linkType: hard @@ -4779,75 +4802,75 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/toc@npm:^6.4.0-beta.0": - version: 6.4.0-beta.0 - resolution: "@jupyterlab/toc@npm:6.4.0-beta.0" +"@jupyterlab/toc@npm:^6.4.0-beta.1": + version: 6.4.0-beta.1 + resolution: "@jupyterlab/toc@npm:6.4.0-beta.1" dependencies: "@jupyter/react-components": ^0.16.6 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/docregistry": ^4.4.0-beta.0 - "@jupyterlab/observables": ^5.4.0-beta.0 - "@jupyterlab/rendermime": ^4.4.0-beta.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/docregistry": ^4.4.0-beta.1 + "@jupyterlab/observables": ^5.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 96fa28c39cac9e4366a08da6195e351f91092734654a8be4a45dcad9fec8d08f6235d93f0c129ab0189f17778b61c225b1ae6bb6741779d3fb690b56bed02094 + checksum: 6f47b17b8de4ee7cc7543650f139795956dee1f29c5f475cefa380b1ce089fe366d5a6220a8a346674399c1dfc02b742e3cb88e613ff8c00967c343f2dbbe062 languageName: node linkType: hard -"@jupyterlab/tooltip-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/tooltip-extension@npm:4.4.0-beta.0" +"@jupyterlab/tooltip-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/tooltip-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/codeeditor": ^4.4.0-beta.0 - "@jupyterlab/console": ^4.4.0-beta.0 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/fileeditor": ^4.4.0-beta.0 - "@jupyterlab/notebook": ^4.4.0-beta.0 - "@jupyterlab/rendermime": ^4.4.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/tooltip": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/codeeditor": ^4.4.0-beta.1 + "@jupyterlab/console": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/fileeditor": ^4.4.0-beta.1 + "@jupyterlab/notebook": ^4.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/tooltip": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.6.0 - checksum: 456958d8d8a6ee847dae98f8f16629816a69d78b4d3708713da9a5aa2feaf4fd351e0ad692fb363275f4be2a81eccc0dc7f5e04807afea60e922fb7e01da09ab + checksum: 9a02c4d29cefd49da49f6ff6408971c2ce3fd6f58e6ce350bcaf61e98f12cf7964db22b300d044fe721d151a746bccb66c53bb0666547b630ec3490589c0c86d languageName: node linkType: hard -"@jupyterlab/tooltip@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/tooltip@npm:4.4.0-beta.0" +"@jupyterlab/tooltip@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/tooltip@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/codeeditor": ^4.4.0-beta.0 - "@jupyterlab/rendermime": ^4.4.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 + "@jupyterlab/codeeditor": ^4.4.0-beta.1 + "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/widgets": ^2.6.0 - checksum: c70c608c2fbfbe33b12c2ec558fd70d872c73cdc8a540ab0a8fa5467e864a0400f1f3dfb8a6bafc5f5482003f039ebf6d0c6c28569cceb031300dc3dd1c3e892 + checksum: a24b20856de268088f7e4d6bbffb2903888175ff0c03da5100235800155a3f6d3c4ac280067698616d2ea3bf3f6dcee50c67bbc39a32bbcc74e4613e12c6e8b9 languageName: node linkType: hard -"@jupyterlab/translation-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/translation-extension@npm:4.4.0-beta.0" +"@jupyterlab/translation-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/translation-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/apputils": ^4.5.0-beta.0 - "@jupyterlab/mainmenu": ^4.4.0-beta.0 - "@jupyterlab/settingregistry": ^4.4.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 - checksum: 8230d0cb3cd1419059afb6f947d9684a22fbd3dd4eeb9155d793d8017c67463d2ae4f699e738f8ba76d0be0d179f35c59a23467b4264c5d49f9910ebec3da891 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.1 + "@jupyterlab/mainmenu": ^4.4.0-beta.1 + "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 + checksum: 3ff89331051ee2a01f91d94d9a5714a3a1abc03e15f08e898822d249e51224df37c7802514b1a9439e2097f7822e2b896cb830960d2dbc54e813792bebf1cad4 languageName: node linkType: hard @@ -4864,26 +4887,26 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/translation@npm:^4.4.0-beta.0, @jupyterlab/translation@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/translation@npm:4.4.0-beta.0" +"@jupyterlab/translation@npm:^4.4.0-beta.1, @jupyterlab/translation@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/translation@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.0 - "@jupyterlab/services": ^7.4.0-beta.0 - "@jupyterlab/statedb": ^4.4.0-beta.0 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/statedb": ^4.4.0-beta.1 "@lumino/coreutils": ^2.2.0 - checksum: 0923e088f9c675ab11b9dc46ac9684dc42fdf59943080460025670bab69384f7532a6a1e7d2a51da9bb37533ad8df0aea78159ebbee756f3ed204909ae500289 + checksum: e35b5fde5c154eb136b1de8263b0de4b5b6eb5b28b64af19d399f048aca4d7cc6f4e2f1032f3b402f150da814c12d2750a4c8514c09f7f3c99f3b2b45670a8d4 languageName: node linkType: hard -"@jupyterlab/ui-components-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/ui-components-extension@npm:4.4.0-beta.0" +"@jupyterlab/ui-components-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/ui-components-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/application": ^4.4.0-beta.0 - "@jupyterlab/ui-components": ^4.4.0-beta.0 - checksum: c7e018cd3af93af70fe00f4c33a0dc35ccc3080d752e08173d3dc680a5bfcefb0780a21b0e013cede5162734d38815f67ae663a5a4ba21f724483518b7ee0172 + "@jupyterlab/application": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.1 + checksum: 6901f721124a8e24dc89681fa3d01a6bd6df02f8ec7da96062c9277f1866aba08e04be7779991311f32ddb40fca68f93c224cc5bd7304ccc6c525a2496b5e26f languageName: node linkType: hard @@ -4918,16 +4941,16 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/ui-components@npm:^4.4.0-beta.0, @jupyterlab/ui-components@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/ui-components@npm:4.4.0-beta.0" +"@jupyterlab/ui-components@npm:^4.4.0-beta.1, @jupyterlab/ui-components@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/ui-components@npm:4.4.0-beta.1" dependencies: "@jupyter/react-components": ^0.16.6 "@jupyter/web-components": ^0.16.6 - "@jupyterlab/coreutils": ^6.4.0-beta.0 - "@jupyterlab/observables": ^5.4.0-beta.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.0 - "@jupyterlab/translation": ^4.4.0-beta.0 + "@jupyterlab/coreutils": ^6.4.0-beta.1 + "@jupyterlab/observables": ^5.4.0-beta.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 + "@jupyterlab/translation": ^4.4.0-beta.1 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -4945,34 +4968,34 @@ __metadata: typestyle: ^2.0.4 peerDependencies: react: ^18.2.0 - checksum: 3b89ea4edf36fc79ec0495f4b57cc112c1ca6ae917e8a4c0145fc8b42b35ae2394301d067125ebdbd54046e73a93f5d2e806b97c322d15c78fa6139b4f5be9b9 + checksum: d30bab6b13e76ec1bf6715cc07531f6e59c3c92bf8d3a4344e27a6ddb22eeb3aa6b99b8cd1084532ccdde9b9154aecd4851a8957d175dbd8fc768f9e054af5b5 languageName: node linkType: hard -"@jupyterlab/vega5-extension@npm:~4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/vega5-extension@npm:4.4.0-beta.0" +"@jupyterlab/vega5-extension@npm:~4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/vega5-extension@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.6.0 vega: ^5.20.0 vega-embed: ^6.2.1 vega-lite: ^5.6.1-next.1 - checksum: 9951665f42f9950caa5326c11cd51611947192dc4fd57d467493d9fd90db9c0a7f44fc8771d4d2494e659980c90c4a066b82f2410a6b8b2391b93b2ea2725ad3 + checksum: c2ef82a2f804ae302e2ab0edd75e0a6e075d2b2ae87473a35b31168681f4bf30257dd008ea619b8720b57ce3735fac6d1fdfc32f47e34e2400bce41bf428cd3a languageName: node linkType: hard -"@jupyterlab/workspaces@npm:^4.4.0-beta.0": - version: 4.4.0-beta.0 - resolution: "@jupyterlab/workspaces@npm:4.4.0-beta.0" +"@jupyterlab/workspaces@npm:^4.4.0-beta.1": + version: 4.4.0-beta.1 + resolution: "@jupyterlab/workspaces@npm:4.4.0-beta.1" dependencies: - "@jupyterlab/services": ^7.4.0-beta.0 + "@jupyterlab/services": ^7.4.0-beta.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/polling": ^2.1.3 "@lumino/signaling": ^2.1.3 - checksum: c65b19292da2f05d455502eced88ffd11d5cc9de03ad571539d282248623a1770838c725f3e6deab306d0737953c10ac0f2b9a0ef5b27ec3db04ce8b338459a7 + checksum: 48dcd157507c7b55a3e02dc61d023487691554be84fe680385bb10aa38df591572da94d27efd1e5b211fcc6d1ac9bd01741151faf43c2bbd18826fd50b0f9770 languageName: node linkType: hard @@ -6448,7 +6471,7 @@ __metadata: languageName: node linkType: hard -"@types/lodash@npm:^4.14.175, @types/lodash@npm:^4.14.178, @types/lodash@npm:^4.14.191": +"@types/lodash@npm:^4.14.178, @types/lodash@npm:^4.14.191": version: 4.14.199 resolution: "@types/lodash@npm:4.14.199" checksum: e68d1fcbbfce953ed87b296a628573f62939227bcda0c934954e862b421e8a34c5e71cad6fea27b9980567909e6a4698f09025692958e36d64ea9ed99ec6fb2e @@ -6719,6 +6742,23 @@ __metadata: languageName: node linkType: hard +"@verdaccio/auth@npm:8.0.0-next-8.1": + version: 8.0.0-next-8.1 + resolution: "@verdaccio/auth@npm:8.0.0-next-8.1" + dependencies: + "@verdaccio/config": 8.0.0-next-8.1 + "@verdaccio/core": 8.0.0-next-8.1 + "@verdaccio/loaders": 8.0.0-next-8.1 + "@verdaccio/logger": 8.0.0-next-8.1 + "@verdaccio/signature": 8.0.0-next-8.0 + "@verdaccio/utils": 7.0.1-next-8.1 + debug: 4.3.7 + lodash: 4.17.21 + verdaccio-htpasswd: 13.0.0-next-8.1 + checksum: 3bfc293a81032df993556d0c66850703d85355a85d2ea17f342863b0de021005aa52970f6fab97892eec1c38b7c9455885ad5b7477156ee6b77920c1d9112fc7 + languageName: node + linkType: hard + "@verdaccio/commons-api@npm:10.2.0": version: 10.2.0 resolution: "@verdaccio/commons-api@npm:10.2.0" @@ -6729,32 +6769,31 @@ __metadata: languageName: node linkType: hard -"@verdaccio/config@npm:7.0.0-next.2": - version: 7.0.0-next.2 - resolution: "@verdaccio/config@npm:7.0.0-next.2" +"@verdaccio/config@npm:8.0.0-next-8.1": + version: 8.0.0-next-8.1 + resolution: "@verdaccio/config@npm:8.0.0-next-8.1" dependencies: - "@verdaccio/core": 7.0.0-next.2 - "@verdaccio/utils": 7.0.0-next.2 - debug: 4.3.4 + "@verdaccio/core": 8.0.0-next-8.1 + "@verdaccio/utils": 7.0.1-next-8.1 + debug: 4.3.7 js-yaml: 4.1.0 lodash: 4.17.21 - minimatch: 3.1.2 - yup: 0.32.11 - checksum: bcd5034c60d1302ddc0fa24fed8d3129c2b1e6e568b73b48a1906442fb0ec3283b1fb07d2d6e614638cbad281adcdae5afb0791d02e392f8a48b8e1456b5f3b2 + minimatch: 7.4.6 + checksum: cb4c2bd4dfd7100a01a0dbbf7414434e50f0221a546ac3ffdf86e6ccbc63cfefc4bc9142a0964a8c2685ab3f44737e4c35c41f2a29c1d3d1da28ede3168f7e4b languageName: node linkType: hard -"@verdaccio/core@npm:7.0.0-next.2": - version: 7.0.0-next.2 - resolution: "@verdaccio/core@npm:7.0.0-next.2" +"@verdaccio/core@npm:8.0.0-next-8.1": + version: 8.0.0-next-8.1 + resolution: "@verdaccio/core@npm:8.0.0-next-8.1" dependencies: - ajv: 8.12.0 - core-js: 3.30.2 + ajv: 8.17.1 + core-js: 3.37.1 http-errors: 2.0.0 - http-status-codes: 2.2.0 + http-status-codes: 2.3.0 process-warning: 1.0.0 - semver: 7.5.4 - checksum: a3b4812815b6c4eb9e0dfb105242242605a1f629de82e850d11eb629df31a93422c256ebaba6ab0d07a6fdfb222998f02e3b02e469e87f97a1333c85dffe6a48 + semver: 7.6.3 + checksum: 40cea00ababa401ef021ad2a919af01099925c4986ab4f8363639a1bde8eb618a7672aabc5e7bdc8fb0d1327df83eecdbec0c8c2776a4a4d4ce46de8c4fd9e5b languageName: node linkType: hard @@ -6767,18 +6806,29 @@ __metadata: languageName: node linkType: hard -"@verdaccio/file-locking@npm:12.0.0-next.0": - version: 12.0.0-next.0 - resolution: "@verdaccio/file-locking@npm:12.0.0-next.0" +"@verdaccio/file-locking@npm:13.0.0-next-8.0": + version: 13.0.0-next-8.0 + resolution: "@verdaccio/file-locking@npm:13.0.0-next-8.0" dependencies: lockfile: 1.0.4 - checksum: f1bc910836c92ec55c07d7b2cc11eb6b8e5f701f5fd8580f3a1789ad7513ec8340c540eef3e078438c87b15ceff8fd7bddb6f865346b5eda18f15889f79fba34 + checksum: 5ba07475e441d2113aa17a74dc96e682f9d15644d12282fa7954b1ed4c7e1bafaea1acb5b3790048d6fceeb6a787bb2f4ed933d9860a9f432d7d2cd3be93cec9 languageName: node linkType: hard -"@verdaccio/local-storage@npm:10.3.3": - version: 10.3.3 - resolution: "@verdaccio/local-storage@npm:10.3.3" +"@verdaccio/loaders@npm:8.0.0-next-8.1": + version: 8.0.0-next-8.1 + resolution: "@verdaccio/loaders@npm:8.0.0-next-8.1" + dependencies: + "@verdaccio/logger": 8.0.0-next-8.1 + debug: 4.3.7 + lodash: 4.17.21 + checksum: a03762fe73ebded25fd82da10314ad73dabc804e6b8cb0c06938effe9d2c70578208881438abb3fb4f393939993fb78f23a27b1bf472133cb63545fdeeab41f3 + languageName: node + linkType: hard + +"@verdaccio/local-storage-legacy@npm:11.0.2": + version: 11.0.2 + resolution: "@verdaccio/local-storage-legacy@npm:11.0.2" dependencies: "@verdaccio/commons-api": 10.2.0 "@verdaccio/file-locking": 10.3.1 @@ -6788,78 +6838,87 @@ __metadata: lodash: 4.17.21 lowdb: 1.0.0 mkdirp: 1.0.4 - checksum: 70f47ea94fd0d6f3a5ac82fa0a8b28a41fb69f076f993bbf9ff775cca11966a6e92b4b57741348bdbfc3f241d851c052336d1673ca7e7b29e1999b88afe4fde2 + checksum: e5c09028a9d67459297e6760acb1d5301a87bb3fe67a9ae7d8fb3e2deb6d907ebd113d7e883e89174eefb08afdaa9043257a5e04b8cb6702d3718ad0d8b5f731 languageName: node linkType: hard -"@verdaccio/logger-7@npm:7.0.0-next.2": - version: 7.0.0-next.2 - resolution: "@verdaccio/logger-7@npm:7.0.0-next.2" +"@verdaccio/logger-7@npm:8.0.0-next-8.1": + version: 8.0.0-next-8.1 + resolution: "@verdaccio/logger-7@npm:8.0.0-next-8.1" dependencies: - "@verdaccio/logger-commons": 7.0.0-next.2 + "@verdaccio/logger-commons": 8.0.0-next-8.1 pino: 7.11.0 - checksum: f5e1a337e1d2a59af16f8bf43d4549305bc30f719ff1072b9a0c21a0d436371c44e9d4f7b59264e35a99953513063cc9cc956221f6dddf8879faa4124972ae8b + checksum: b10ec02a57d5cbde5adcb6cc13f2b15d5385f75f0260aea29d9d12fcacde13324d89c5b2865246ed18b3e7be1d6536ae14883c1343c7fb8464d5f2b56e02e987 languageName: node linkType: hard -"@verdaccio/logger-commons@npm:7.0.0-next.2": - version: 7.0.0-next.2 - resolution: "@verdaccio/logger-commons@npm:7.0.0-next.2" +"@verdaccio/logger-commons@npm:8.0.0-next-8.1": + version: 8.0.0-next-8.1 + resolution: "@verdaccio/logger-commons@npm:8.0.0-next-8.1" dependencies: - "@verdaccio/core": 7.0.0-next.2 - "@verdaccio/logger-prettify": 7.0.0-next.0 + "@verdaccio/core": 8.0.0-next-8.1 + "@verdaccio/logger-prettify": 8.0.0-next-8.0 colorette: 2.0.20 - debug: 4.3.4 - checksum: a09085333b42f152fa5fd7bf1c8fe8667f5d0ac3100ea5f35224c70bb92774a61214ebf68679c1bd6f59f9baed87a3596fa6e34f54846fe6a6ba493ce37b8309 + debug: 4.3.7 + checksum: 50003c0868bc8838aae129240aa9bc8c49429c4fe3aef017a1411ee339919a9e347f085f9cbe74166899cbc7ef8312c4df7a3174d5a3f931f4eab0c3156af2a8 languageName: node linkType: hard -"@verdaccio/logger-prettify@npm:7.0.0-next.0": - version: 7.0.0-next.0 - resolution: "@verdaccio/logger-prettify@npm:7.0.0-next.0" +"@verdaccio/logger-prettify@npm:8.0.0-next-8.0": + version: 8.0.0-next-8.0 + resolution: "@verdaccio/logger-prettify@npm:8.0.0-next-8.0" dependencies: colorette: 2.0.20 - dayjs: 1.11.7 + dayjs: 1.11.13 lodash: 4.17.21 - pino-abstract-transport: 1.0.0 - sonic-boom: 3.3.0 - checksum: 2b124563d41aea40828b2dfb091a28b8fee9f4443c906bf222a6f7248f842195ccb0eb45deb50a627b4cd747e6bf9509395cba23da93f4b53177db112ed0fdfd + pino-abstract-transport: 1.1.0 + sonic-boom: 3.8.0 + checksum: 54e64feef2e09254677109c8eae75d3cefeac814476c5a4406c0edf18c2b814d60db50b3d078d03b9031df8d0571d8f112edf1f195ab006ff3da9080eea233e7 languageName: node linkType: hard -"@verdaccio/middleware@npm:7.0.0-next.2": - version: 7.0.0-next.2 - resolution: "@verdaccio/middleware@npm:7.0.0-next.2" +"@verdaccio/logger@npm:8.0.0-next-8.1": + version: 8.0.0-next-8.1 + resolution: "@verdaccio/logger@npm:8.0.0-next-8.1" dependencies: - "@verdaccio/config": 7.0.0-next.2 - "@verdaccio/core": 7.0.0-next.2 - "@verdaccio/url": 12.0.0-next.2 - "@verdaccio/utils": 7.0.0-next.2 - debug: 4.3.4 - express: 4.18.2 + "@verdaccio/logger-commons": 8.0.0-next-8.1 + pino: 8.17.2 + checksum: 41cea3e4cb6cbcf8e3126cf66b89a2d0f60673a533af6acda3397e10a60269f0445faac4e304b92d4820a7199d3e8ea514ab14dfde23170ab01ffedae52abca4 + languageName: node + linkType: hard + +"@verdaccio/middleware@npm:8.0.0-next-8.1": + version: 8.0.0-next-8.1 + resolution: "@verdaccio/middleware@npm:8.0.0-next-8.1" + dependencies: + "@verdaccio/config": 8.0.0-next-8.1 + "@verdaccio/core": 8.0.0-next-8.1 + "@verdaccio/url": 13.0.0-next-8.1 + "@verdaccio/utils": 7.0.1-next-8.1 + debug: 4.3.7 + express: 4.21.0 express-rate-limit: 5.5.1 lodash: 4.17.21 lru-cache: 7.18.3 mime: 2.6.0 - checksum: d5f0ca19e94da72dff664bee1a28b1e8dc5e3798cefc1d5e8b44e02c8233143e0322aad12c581984980ff7dd0d2dbce3bfebbb41eaeefdaf007984af8ccbd922 + checksum: ab7d4cf690b668eafae62c8c658782c2a0d07daaf8b9ba1a60bbcca7102b9268882cbe8d019ac61a779803b0f07a178be14b1b059d48887c410e699691b1d464 languageName: node linkType: hard -"@verdaccio/search@npm:7.0.0-next.1": - version: 7.0.0-next.1 - resolution: "@verdaccio/search@npm:7.0.0-next.1" - checksum: a99102b2f11ccea08bb7dfa169e36b1f975296a875f3080d1c249da59834688675e0e5b22993ce936f0db77994e040176043e59f3df3d246889e047307e2339c +"@verdaccio/search-indexer@npm:8.0.0-next-8.0": + version: 8.0.0-next-8.0 + resolution: "@verdaccio/search-indexer@npm:8.0.0-next-8.0" + checksum: 682d82ed9870c23b1d31d1bebdd31abe819e05bcafcbb64695f2f0e2aa078b016cb646ce6d4dffeb4c281fef32ef105753865da28f7802f8cfa820b804c21ec6 languageName: node linkType: hard -"@verdaccio/signature@npm:7.0.0-next.0": - version: 7.0.0-next.0 - resolution: "@verdaccio/signature@npm:7.0.0-next.0" +"@verdaccio/signature@npm:8.0.0-next-8.0": + version: 8.0.0-next-8.0 + resolution: "@verdaccio/signature@npm:8.0.0-next-8.0" dependencies: - debug: 4.3.4 - jsonwebtoken: 9.0.0 - lodash: 4.17.21 - checksum: 5ff02ad027b9917ad86c92eb8f2285d87bee7d600961099a102a163eaff020a7bdf1b92dfc76246bc69bc1e6a762b3a5917f52de817834993811ec28732cfe8f + debug: 4.3.7 + jsonwebtoken: 9.0.2 + checksum: 0720688e58a44737a8646300203e21465ed4a547a67efe224801caae0e59826d378122e412d5b6b0642c9c2f04de7d7dafc86005b87c388d7b4401a933edc6b1 languageName: node linkType: hard @@ -6870,47 +6929,49 @@ __metadata: languageName: node linkType: hard -"@verdaccio/tarball@npm:12.0.0-next.2": - version: 12.0.0-next.2 - resolution: "@verdaccio/tarball@npm:12.0.0-next.2" +"@verdaccio/tarball@npm:13.0.0-next-8.1": + version: 13.0.0-next-8.1 + resolution: "@verdaccio/tarball@npm:13.0.0-next-8.1" dependencies: - "@verdaccio/core": 7.0.0-next.2 - "@verdaccio/url": 12.0.0-next.2 - "@verdaccio/utils": 7.0.0-next.2 - debug: 4.3.4 + "@verdaccio/core": 8.0.0-next-8.1 + "@verdaccio/url": 13.0.0-next-8.1 + "@verdaccio/utils": 7.0.1-next-8.1 + debug: 4.3.7 + gunzip-maybe: ^1.4.2 lodash: 4.17.21 - checksum: 665ccae4bac4c1881f199c8bfd7082af1516080a9864d8d2816205caa8a5d8b0183c1eb6f19b1a3e1306aa528118abfce30d1524007f5641fb2602addbfb48b6 + tar-stream: ^3.1.7 + checksum: 23677afee3574200c33aea39476cc22a5350bae7d14a589b2816271405b4c1068c3c7ac629ae55c1d1d5b34ab0f65cc768256967c23466b51131f03c10cd63a2 languageName: node linkType: hard -"@verdaccio/ui-theme@npm:7.0.0-next.2": - version: 7.0.0-next.2 - resolution: "@verdaccio/ui-theme@npm:7.0.0-next.2" - checksum: f4c3a90e91797f5cd9e7f01864e0998a6bd7ef7ba8c35e7d9d654d054ba94548a6c738f6878715df9fd493d72740e87fe23322af94fdbcd9a2305aa2a5a6bba8 +"@verdaccio/ui-theme@npm:8.0.0-next-8.1": + version: 8.0.0-next-8.1 + resolution: "@verdaccio/ui-theme@npm:8.0.0-next-8.1" + checksum: c613da907e5a3d41ff7cf221ff2feb32093146970a264308681da552ea749e68f9274f4535798b4845fe5cf0aaf2b46854a93b89ff50dc1b45d12f5e32c1d88c languageName: node linkType: hard -"@verdaccio/url@npm:12.0.0-next.2": - version: 12.0.0-next.2 - resolution: "@verdaccio/url@npm:12.0.0-next.2" +"@verdaccio/url@npm:13.0.0-next-8.1": + version: 13.0.0-next-8.1 + resolution: "@verdaccio/url@npm:13.0.0-next-8.1" dependencies: - "@verdaccio/core": 7.0.0-next.2 - debug: 4.3.4 + "@verdaccio/core": 8.0.0-next-8.1 + debug: 4.3.7 lodash: 4.17.21 - validator: 13.9.0 - checksum: 362401ccaf2d62bb60ef215dcba1aa7d194f28d925b604cff2346301a5b8a4430357fb0e3d2d7eae7cc8c96fa29cb42c1765ace56bb6cf8f023df5d08d4db647 + validator: 13.12.0 + checksum: edd32bee12f54f82016cc4d5e93dfddbcf7b1da150e789e63829d11836845cc41957864a4d15646496e9f49a28ebab11cdb3e67dbbcda02439387d5ae58834de languageName: node linkType: hard -"@verdaccio/utils@npm:7.0.0-next.2": - version: 7.0.0-next.2 - resolution: "@verdaccio/utils@npm:7.0.0-next.2" +"@verdaccio/utils@npm:7.0.1-next-8.1": + version: 7.0.1-next-8.1 + resolution: "@verdaccio/utils@npm:7.0.1-next-8.1" dependencies: - "@verdaccio/core": 7.0.0-next.2 + "@verdaccio/core": 8.0.0-next-8.1 lodash: 4.17.21 - minimatch: 3.1.2 - semver: 7.5.4 - checksum: 7ffa90026d4cb627517cbc9d71696361553f1eae53126d8417bf7215406b6612c7b7895351e41f49ade5ac45504a1681c58ed15eab48946916a7ddf0dc724f4d + minimatch: 7.4.6 + semver: 7.6.3 + checksum: cf8a4a38cd80f6569d506f51533279b12a66bc2a24b6ee835528c210ba8988c6be804edc9b07bc5670885f65f8bf2b434ea60fba0ed890eee15460846215258b languageName: node linkType: hard @@ -7309,7 +7370,7 @@ __metadata: languageName: node linkType: hard -"accepts@npm:~1.3.5, accepts@npm:~1.3.8": +"accepts@npm:~1.3.8": version: 1.3.8 resolution: "accepts@npm:1.3.8" dependencies: @@ -7441,19 +7502,19 @@ __metadata: languageName: node linkType: hard -"ajv@npm:8.12.0, ajv@npm:^8.0.0, ajv@npm:^8.12.0, ajv@npm:^8.9.0": - version: 8.12.0 - resolution: "ajv@npm:8.12.0" +"ajv@npm:8.17.1, ajv@npm:^8.0.0, ajv@npm:^8.12.0, ajv@npm:^8.9.0": + version: 8.17.1 + resolution: "ajv@npm:8.17.1" dependencies: - fast-deep-equal: ^3.1.1 + fast-deep-equal: ^3.1.3 + fast-uri: ^3.0.1 json-schema-traverse: ^1.0.0 require-from-string: ^2.0.2 - uri-js: ^4.2.2 - checksum: 4dc13714e316e67537c8b31bc063f99a1d9d9a497eb4bbd55191ac0dcd5e4985bbb71570352ad6f1e76684fb6d790928f96ba3b2d4fd6e10024be9612fe3f001 + checksum: 1797bf242cfffbaf3b870d13565bd1716b73f214bb7ada9a497063aada210200da36e3ed40237285f3255acc4feeae91b1fb183625331bad27da95973f7253d9 languageName: node linkType: hard -"ajv@npm:^6.1.0, ajv@npm:^6.12.3, ajv@npm:^6.12.4, ajv@npm:^6.12.5": +"ajv@npm:^6.1.0, ajv@npm:^6.12.4, ajv@npm:^6.12.5": version: 6.12.6 resolution: "ajv@npm:6.12.6" dependencies: @@ -7710,13 +7771,20 @@ __metadata: languageName: node linkType: hard -"async@npm:3.2.4, async@npm:^3.2.3": +"async@npm:3.2.4": version: 3.2.4 resolution: "async@npm:3.2.4" checksum: 43d07459a4e1d09b84a20772414aa684ff4de085cbcaec6eea3c7a8f8150e8c62aa6cd4e699fe8ee93c3a5b324e777d34642531875a0817a35697522c1b02e89 languageName: node linkType: hard +"async@npm:3.2.6, async@npm:^3.2.3": + version: 3.2.6 + resolution: "async@npm:3.2.6" + checksum: ee6eb8cd8a0ab1b58bd2a3ed6c415e93e773573a91d31df9d5ef559baafa9dab37d3b096fa7993e84585cac3697b2af6ddb9086f45d3ac8cae821bb2aab65682 + languageName: node + linkType: hard + "asynciterator.prototype@npm:^1.0.0": version: 1.0.0 resolution: "asynciterator.prototype@npm:1.0.0" @@ -7779,6 +7847,13 @@ __metadata: languageName: node linkType: hard +"b4a@npm:^1.6.4": + version: 1.6.7 + resolution: "b4a@npm:1.6.7" + checksum: afe4e239b49c0ef62236fe0d788ac9bd9d7eac7e9855b0d1835593cd0efcc7be394f9cc28a747a2ed2cdcb0a48c3528a551a196f472eb625457c711169c9efa2 + languageName: node + linkType: hard + "babel-jest@npm:^29.7.0": version: 29.7.0 resolution: "babel-jest@npm:29.7.0" @@ -7913,6 +7988,13 @@ __metadata: languageName: node linkType: hard +"bare-events@npm:^2.2.0": + version: 2.5.4 + resolution: "bare-events@npm:2.5.4" + checksum: 522a5401caaede9d8c857c2fd346c993bf43995e958e8ebfa79d32b1e086032800e0639f3559d7ad85788fae54f6d9605685de507eec54298ea2aa2c8c9cb2c3 + languageName: node + linkType: hard + "base16@npm:^1.0.0": version: 1.0.0 resolution: "base16@npm:1.0.0" @@ -7968,23 +8050,23 @@ __metadata: languageName: node linkType: hard -"body-parser@npm:1.20.1": - version: 1.20.1 - resolution: "body-parser@npm:1.20.1" +"body-parser@npm:1.20.3": + version: 1.20.3 + resolution: "body-parser@npm:1.20.3" dependencies: bytes: 3.1.2 - content-type: ~1.0.4 + content-type: ~1.0.5 debug: 2.6.9 depd: 2.0.0 destroy: 1.2.0 http-errors: 2.0.0 iconv-lite: 0.4.24 on-finished: 2.4.1 - qs: 6.11.0 - raw-body: 2.5.1 + qs: 6.13.0 + raw-body: 2.5.2 type-is: ~1.6.18 unpipe: 1.0.0 - checksum: f1050dbac3bede6a78f0b87947a8d548ce43f91ccc718a50dd774f3c81f2d8b04693e52acf62659fad23101827dd318da1fb1363444ff9a8482b886a3e4a5266 + checksum: 1a35c59a6be8d852b00946330141c4f142c6af0f970faa87f10ad74f1ee7118078056706a05ae3093c54dabca9cd3770fa62a170a85801da1a4324f04381167d languageName: node linkType: hard @@ -8023,6 +8105,15 @@ __metadata: languageName: node linkType: hard +"browserify-zlib@npm:^0.1.4": + version: 0.1.4 + resolution: "browserify-zlib@npm:0.1.4" + dependencies: + pako: ~0.2.0 + checksum: abee4cb4349e8a21391fd874564f41b113fe691372913980e6fa06a777e4ea2aad4e942af14ab99bce190d5ac8f5328201432f4ef0eae48c6d02208bc212976f + languageName: node + linkType: hard + "browserslist@npm:^4.14.5, browserslist@npm:^4.21.9, browserslist@npm:^4.22.1": version: 4.22.1 resolution: "browserslist@npm:4.22.1" @@ -8112,13 +8203,6 @@ __metadata: languageName: node linkType: hard -"bytes@npm:3.0.0": - version: 3.0.0 - resolution: "bytes@npm:3.0.0" - checksum: a2b386dd8188849a5325f58eef69c3b73c51801c08ffc6963eddc9be244089ba32d19347caf6d145c86f315ae1b1fc7061a32b0c1aa6379e6a719090287ed101 - languageName: node - linkType: hard - "bytes@npm:3.1.2": version: 3.1.2 resolution: "bytes@npm:3.1.2" @@ -8168,7 +8252,17 @@ __metadata: languageName: node linkType: hard -"call-bind@npm:^1.0.0, call-bind@npm:^1.0.2": +"call-bind-apply-helpers@npm:^1.0.1, call-bind-apply-helpers@npm:^1.0.2": + version: 1.0.2 + resolution: "call-bind-apply-helpers@npm:1.0.2" + dependencies: + es-errors: ^1.3.0 + function-bind: ^1.1.2 + checksum: b2863d74fcf2a6948221f65d95b91b4b2d90cfe8927650b506141e669f7d5de65cea191bf788838bc40d13846b7886c5bc5c84ab96c3adbcf88ad69a72fcdc6b + languageName: node + linkType: hard + +"call-bind@npm:^1.0.2": version: 1.0.2 resolution: "call-bind@npm:1.0.2" dependencies: @@ -8178,6 +8272,16 @@ __metadata: languageName: node linkType: hard +"call-bound@npm:^1.0.2": + version: 1.0.4 + resolution: "call-bound@npm:1.0.4" + dependencies: + call-bind-apply-helpers: ^1.0.2 + get-intrinsic: ^1.3.0 + checksum: 2f6399488d1c272f56306ca60ff696575e2b7f31daf23bc11574798c84d9f2759dceb0cb1f471a85b77f28962a7ac6411f51d283ea2e45319009a19b6ccab3b2 + languageName: node + linkType: hard + "callsites@npm:^3.0.0": version: 3.1.0 resolution: "callsites@npm:3.1.0" @@ -8395,25 +8499,14 @@ __metadata: languageName: node linkType: hard -"clipanion@npm:3.2.1": - version: 3.2.1 - resolution: "clipanion@npm:3.2.1" +"clipanion@npm:4.0.0-rc.4, clipanion@npm:^4.0.0-rc.2": + version: 4.0.0-rc.4 + resolution: "clipanion@npm:4.0.0-rc.4" dependencies: typanion: ^3.8.0 peerDependencies: typanion: "*" - checksum: 448efd122ead3c802e61ba7a2002e2080c8cce01ce8a0a789d9b9e4f8fe70fd887dcf163ef8c778f5364a9e6f4b498b9f1853f709d7ed4291713e78bcfb88ee8 - languageName: node - linkType: hard - -"clipanion@npm:^4.0.0-rc.2": - version: 4.0.0-rc.3 - resolution: "clipanion@npm:4.0.0-rc.3" - dependencies: - typanion: ^3.8.0 - peerDependencies: - typanion: "*" - checksum: a5e6201e5a7fdb93dbe5f61d158d3e3d23e3164c38a7c679c7dcc599e10ee339d249c33fd8729ba8ffd0a376206ed14aac2e5472624ecaf79041fac3baa73b9b + checksum: a92aa03b24eb89292b7bda570973c164fff16a1c5ba4c4abdd1b0dd6110a57651752114ec9f5cfc29e2040213e514b3220142a2316c4fc4e659ba423caa296c7 languageName: node linkType: hard @@ -8572,7 +8665,7 @@ __metadata: languageName: node linkType: hard -"combined-stream@npm:^1.0.6, combined-stream@npm:^1.0.8, combined-stream@npm:~1.0.6": +"combined-stream@npm:^1.0.8, combined-stream@npm:~1.0.6": version: 1.0.8 resolution: "combined-stream@npm:1.0.8" dependencies: @@ -8647,7 +8740,7 @@ __metadata: languageName: node linkType: hard -"compressible@npm:~2.0.16": +"compressible@npm:~2.0.18": version: 2.0.18 resolution: "compressible@npm:2.0.18" dependencies: @@ -8656,18 +8749,18 @@ __metadata: languageName: node linkType: hard -"compression@npm:1.7.4": - version: 1.7.4 - resolution: "compression@npm:1.7.4" +"compression@npm:1.7.5": + version: 1.7.5 + resolution: "compression@npm:1.7.5" dependencies: - accepts: ~1.3.5 - bytes: 3.0.0 - compressible: ~2.0.16 + bytes: 3.1.2 + compressible: ~2.0.18 debug: 2.6.9 + negotiator: ~0.6.4 on-headers: ~1.0.2 - safe-buffer: 5.1.2 + safe-buffer: 5.2.1 vary: ~1.1.2 - checksum: 35c0f2eb1f28418978615dc1bc02075b34b1568f7f56c62d60f4214d4b7cc00d0f6d282b5f8a954f59872396bd770b6b15ffd8aa94c67d4bce9b8887b906999b + checksum: d624b5562492518eee82c4f1381ea36f69f1f10b4283bfc2dcafd7d4d7eeed17c3f0e8f2951798594b7064db7ac5a6198df34816bde2d56bb7c75ce1570880e9 languageName: node linkType: hard @@ -8736,7 +8829,7 @@ __metadata: languageName: node linkType: hard -"content-type@npm:~1.0.4": +"content-type@npm:~1.0.4, content-type@npm:~1.0.5": version: 1.0.5 resolution: "content-type@npm:1.0.5" checksum: 566271e0a251642254cde0f845f9dd4f9856e52d988f4eb0d0dcffbb7a1f8ec98de7a5215fc628f3bce30fe2fb6fd2bc064b562d721658c59b544e2d34ea2766 @@ -8850,20 +8943,17 @@ __metadata: languageName: node linkType: hard -"cookie@npm:0.5.0": - version: 0.5.0 - resolution: "cookie@npm:0.5.0" - checksum: 1f4bd2ca5765f8c9689a7e8954183f5332139eb72b6ff783d8947032ec1fdf43109852c178e21a953a30c0dd42257828185be01b49d1eb1a67fd054ca588a180 +"cookie@npm:0.6.0": + version: 0.6.0 + resolution: "cookie@npm:0.6.0" + checksum: f56a7d32a07db5458e79c726b77e3c2eff655c36792f2b6c58d351fb5f61531e5b1ab7f46987150136e366c65213cbe31729e02a3eaed630c3bf7334635fb410 languageName: node linkType: hard -"cookies@npm:0.8.0": - version: 0.8.0 - resolution: "cookies@npm:0.8.0" - dependencies: - depd: ~2.0.0 - keygrip: ~1.1.0 - checksum: 806055a44f128705265b1bc6a853058da18bf80dea3654ad99be20985b1fa1b14f86c1eef73644aab8071241f8a78acd57202b54c4c5c70769fc694fbb9c4edc +"cookie@npm:0.7.1": + version: 0.7.1 + resolution: "cookie@npm:0.7.1" + checksum: cec5e425549b3650eb5c3498a9ba3cde0b9cd419e3b36e4b92739d30b4d89e0b678b98c1ddc209ce7cf958cd3215671fd6ac47aec21f10c2a0cc68abd399d8a7 languageName: node linkType: hard @@ -8876,10 +8966,10 @@ __metadata: languageName: node linkType: hard -"core-js@npm:3.30.2": - version: 3.30.2 - resolution: "core-js@npm:3.30.2" - checksum: 73d47e2b9d9f502800973982d08e995bbf04832e20b04e04be31dd7607247158271315e9328788a2408190e291c7ffbefad141167b1e57dea9f983e1e723541e +"core-js@npm:3.37.1": + version: 3.37.1 + resolution: "core-js@npm:3.37.1" + checksum: 2d58a5c599f05c3e04abc8bc5e64b88eb17d914c0f552f670fb800afa74ec54b4fcc7f231ad6bd45badaf62c0fb0ce30e6fe89cedb6bb6d54e6f19115c3c17ff languageName: node linkType: hard @@ -9543,14 +9633,7 @@ __metadata: languageName: node linkType: hard -"dayjs@npm:1.11.7": - version: 1.11.7 - resolution: "dayjs@npm:1.11.7" - checksum: 5003a7c1dd9ed51385beb658231c3548700b82d3548c0cfbe549d85f2d08e90e972510282b7506941452c58d32136d6362f009c77ca55381a09c704e9f177ebb - languageName: node - linkType: hard - -"dayjs@npm:^1.11.10": +"dayjs@npm:1.11.13, dayjs@npm:^1.11.10": version: 1.11.13 resolution: "dayjs@npm:1.11.13" checksum: f388db88a6aa93956c1f6121644e783391c7b738b73dbc54485578736565c8931bdfba4bb94e9b1535c6e509c97d5deb918bbe1ae6b34358d994de735055cca9 @@ -9566,7 +9649,7 @@ __metadata: languageName: node linkType: hard -"debug@npm:4, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4, debug@npm:^4.4.0": +"debug@npm:4, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4, debug@npm:^4.3.7, debug@npm:^4.4.0": version: 4.4.0 resolution: "debug@npm:4.4.0" dependencies: @@ -9590,6 +9673,18 @@ __metadata: languageName: node linkType: hard +"debug@npm:4.3.7": + version: 4.3.7 + resolution: "debug@npm:4.3.7" + dependencies: + ms: ^2.1.3 + peerDependenciesMeta: + supports-color: + optional: true + checksum: 822d74e209cd910ef0802d261b150314bbcf36c582ccdbb3e70f0894823c17e49a50d3e66d96b633524263975ca16b6a833f3e3b7e030c157169a5fabac63160 + languageName: node + linkType: hard + "decamelize-keys@npm:^1.1.0": version: 1.1.1 resolution: "decamelize-keys@npm:1.1.1" @@ -9731,7 +9826,7 @@ __metadata: languageName: node linkType: hard -"depd@npm:2.0.0, depd@npm:~2.0.0": +"depd@npm:2.0.0": version: 2.0.0 resolution: "depd@npm:2.0.0" checksum: abbe19c768c97ee2eed6282d8ce3031126662252c58d711f646921c9623f9052e3e1906443066beec1095832f534e57c523b7333f8e7e0d93051ab6baef5ab3a @@ -9953,6 +10048,17 @@ __metadata: languageName: node linkType: hard +"dunder-proto@npm:^1.0.1": + version: 1.0.1 + resolution: "dunder-proto@npm:1.0.1" + dependencies: + call-bind-apply-helpers: ^1.0.1 + es-errors: ^1.3.0 + gopd: ^1.2.0 + checksum: 149207e36f07bd4941921b0ca929e3a28f1da7bd6b6ff8ff7f4e2f2e460675af4576eeba359c635723dc189b64cdd4787e0255897d5b135ccc5d15cb8685fc90 + languageName: node + linkType: hard + "duplexer@npm:^0.1.1, duplexer@npm:^0.1.2": version: 0.1.2 resolution: "duplexer@npm:0.1.2" @@ -9960,6 +10066,18 @@ __metadata: languageName: node linkType: hard +"duplexify@npm:^3.5.0, duplexify@npm:^3.6.0": + version: 3.7.1 + resolution: "duplexify@npm:3.7.1" + dependencies: + end-of-stream: ^1.0.0 + inherits: ^2.0.1 + readable-stream: ^2.0.0 + stream-shift: ^1.0.0 + checksum: 3c2ed2223d956a5da713dae12ba8295acb61d9acd966ccbba938090d04f4574ca4dca75cca089b5077c2d7e66101f32e6ea9b36a78ca213eff574e7a8b8accf2 + languageName: node + linkType: hard + "duplexify@npm:^4.1.2": version: 4.1.2 resolution: "duplexify@npm:4.1.2" @@ -10077,6 +10195,13 @@ __metadata: languageName: node linkType: hard +"encodeurl@npm:~2.0.0": + version: 2.0.0 + resolution: "encodeurl@npm:2.0.0" + checksum: abf5cd51b78082cf8af7be6785813c33b6df2068ce5191a40ca8b1afe6a86f9230af9a9ce694a5ce4665955e5c1120871826df9c128a642e09c58d592e2807fe + languageName: node + linkType: hard + "encoding@npm:^0.1.13": version: 0.1.13 resolution: "encoding@npm:0.1.13" @@ -10086,7 +10211,7 @@ __metadata: languageName: node linkType: hard -"end-of-stream@npm:^1.1.0, end-of-stream@npm:^1.4.1": +"end-of-stream@npm:^1.0.0, end-of-stream@npm:^1.1.0, end-of-stream@npm:^1.4.1": version: 1.4.4 resolution: "end-of-stream@npm:1.4.4" dependencies: @@ -10135,12 +10260,12 @@ __metadata: languageName: node linkType: hard -"envinfo@npm:7.10.0, envinfo@npm:^7.7.3": - version: 7.10.0 - resolution: "envinfo@npm:7.10.0" +"envinfo@npm:7.14.0, envinfo@npm:^7.7.3": + version: 7.14.0 + resolution: "envinfo@npm:7.14.0" bin: envinfo: dist/cli.js - checksum: 05e81a5768c42cbd5c580dc3f274db3401facadd53e9bd52e2aa49dfbb5d8b26f6181c25a6652d79618a6994185bd2b1c137673101690b147f758e4e71d42f7d + checksum: 137c1dd9a4d5781c4a6cdc6b695454ba3c4ba1829f73927198aa4122f11b35b59d7b2cb7e1ceea1364925a30278897548511d22f860c14253a33797d0bebd551 languageName: node linkType: hard @@ -10216,6 +10341,20 @@ __metadata: languageName: node linkType: hard +"es-define-property@npm:^1.0.1": + version: 1.0.1 + resolution: "es-define-property@npm:1.0.1" + checksum: 0512f4e5d564021c9e3a644437b0155af2679d10d80f21adaf868e64d30efdfbd321631956f20f42d655fedb2e3a027da479fad3fa6048f768eb453a80a5f80a + languageName: node + linkType: hard + +"es-errors@npm:^1.3.0": + version: 1.3.0 + resolution: "es-errors@npm:1.3.0" + checksum: ec1414527a0ccacd7f15f4a3bc66e215f04f595ba23ca75cdae0927af099b5ec865f9f4d33e9d7e86f512f252876ac77d4281a7871531a50678132429b1271b5 + languageName: node + linkType: hard + "es-iterator-helpers@npm:^1.0.12": version: 1.0.15 resolution: "es-iterator-helpers@npm:1.0.15" @@ -10245,14 +10384,24 @@ __metadata: languageName: node linkType: hard -"es-set-tostringtag@npm:^2.0.1": - version: 2.0.1 - resolution: "es-set-tostringtag@npm:2.0.1" +"es-object-atoms@npm:^1.0.0, es-object-atoms@npm:^1.1.1": + version: 1.1.1 + resolution: "es-object-atoms@npm:1.1.1" dependencies: - get-intrinsic: ^1.1.3 - has: ^1.0.3 - has-tostringtag: ^1.0.0 - checksum: ec416a12948cefb4b2a5932e62093a7cf36ddc3efd58d6c58ca7ae7064475ace556434b869b0bbeb0c365f1032a8ccd577211101234b69837ad83ad204fff884 + es-errors: ^1.3.0 + checksum: 214d3767287b12f36d3d7267ef342bbbe1e89f899cfd67040309fc65032372a8e60201410a99a1645f2f90c1912c8c49c8668066f6bdd954bcd614dda2e3da97 + languageName: node + linkType: hard + +"es-set-tostringtag@npm:^2.0.1, es-set-tostringtag@npm:^2.1.0": + version: 2.1.0 + resolution: "es-set-tostringtag@npm:2.1.0" + dependencies: + es-errors: ^1.3.0 + get-intrinsic: ^1.2.6 + has-tostringtag: ^1.0.2 + hasown: ^2.0.2 + checksum: 789f35de4be3dc8d11fdcb91bc26af4ae3e6d602caa93299a8c45cf05d36cc5081454ae2a6d3afa09cceca214b76c046e4f8151e092e6fc7feeb5efb9e794fc6 languageName: node linkType: hard @@ -10642,42 +10791,81 @@ __metadata: languageName: node linkType: hard -"express@npm:4.18.2": - version: 4.18.2 - resolution: "express@npm:4.18.2" +"express@npm:4.21.0": + version: 4.21.0 + resolution: "express@npm:4.21.0" dependencies: accepts: ~1.3.8 array-flatten: 1.1.1 - body-parser: 1.20.1 + body-parser: 1.20.3 content-disposition: 0.5.4 content-type: ~1.0.4 - cookie: 0.5.0 + cookie: 0.6.0 cookie-signature: 1.0.6 debug: 2.6.9 depd: 2.0.0 - encodeurl: ~1.0.2 + encodeurl: ~2.0.0 + escape-html: ~1.0.3 + etag: ~1.8.1 + finalhandler: 1.3.1 + fresh: 0.5.2 + http-errors: 2.0.0 + merge-descriptors: 1.0.3 + methods: ~1.1.2 + on-finished: 2.4.1 + parseurl: ~1.3.3 + path-to-regexp: 0.1.10 + proxy-addr: ~2.0.7 + qs: 6.13.0 + range-parser: ~1.2.1 + safe-buffer: 5.2.1 + send: 0.19.0 + serve-static: 1.16.2 + setprototypeof: 1.2.0 + statuses: 2.0.1 + type-is: ~1.6.18 + utils-merge: 1.0.1 + vary: ~1.1.2 + checksum: 1c5212993f665809c249bf00ab550b989d1365a5b9171cdfaa26d93ee2ef10cd8add520861ec8d5da74b3194d8374e1d9d53e85ef69b89fd9c4196b87045a5d4 + languageName: node + linkType: hard + +"express@npm:4.21.1": + version: 4.21.1 + resolution: "express@npm:4.21.1" + dependencies: + accepts: ~1.3.8 + array-flatten: 1.1.1 + body-parser: 1.20.3 + content-disposition: 0.5.4 + content-type: ~1.0.4 + cookie: 0.7.1 + cookie-signature: 1.0.6 + debug: 2.6.9 + depd: 2.0.0 + encodeurl: ~2.0.0 escape-html: ~1.0.3 etag: ~1.8.1 - finalhandler: 1.2.0 + finalhandler: 1.3.1 fresh: 0.5.2 http-errors: 2.0.0 - merge-descriptors: 1.0.1 + merge-descriptors: 1.0.3 methods: ~1.1.2 on-finished: 2.4.1 parseurl: ~1.3.3 - path-to-regexp: 0.1.7 + path-to-regexp: 0.1.10 proxy-addr: ~2.0.7 - qs: 6.11.0 + qs: 6.13.0 range-parser: ~1.2.1 safe-buffer: 5.2.1 - send: 0.18.0 - serve-static: 1.15.0 + send: 0.19.0 + serve-static: 1.16.2 setprototypeof: 1.2.0 statuses: 2.0.1 type-is: ~1.6.18 utils-merge: 1.0.1 vary: ~1.1.2 - checksum: 3c4b9b076879442f6b968fe53d85d9f1eeacbb4f4c41e5f16cc36d77ce39a2b0d81b3f250514982110d815b2f7173f5561367f9110fcc541f9371948e8c8b037 + checksum: 5ac2b26d8aeddda5564fc0907227d29c100f90c0ead2ead9d474dc5108e8fb306c2de2083c4e3ba326e0906466f2b73417dbac16961f4075ff9f03785fd940fe languageName: node linkType: hard @@ -10732,6 +10920,13 @@ __metadata: languageName: node linkType: hard +"fast-fifo@npm:^1.2.0, fast-fifo@npm:^1.3.2": + version: 1.3.2 + resolution: "fast-fifo@npm:1.3.2" + checksum: 6bfcba3e4df5af7be3332703b69a7898a8ed7020837ec4395bb341bd96cc3a6d86c3f6071dd98da289618cf2234c70d84b2a6f09a33dd6f988b1ff60d8e54275 + languageName: node + linkType: hard + "fast-glob@npm:^3.0.3, fast-glob@npm:^3.2.2, fast-glob@npm:^3.2.9": version: 3.3.1 resolution: "fast-glob@npm:3.3.1" @@ -10766,10 +10961,10 @@ __metadata: languageName: node linkType: hard -"fast-redact@npm:^3.0.0": - version: 3.3.0 - resolution: "fast-redact@npm:3.3.0" - checksum: 3f7becc70a5a2662a9cbfdc52a4291594f62ae998806ee00315af307f32d9559dbf512146259a22739ee34401950ef47598c1f4777d33b0ed5027203d67f549c +"fast-redact@npm:^3.0.0, fast-redact@npm:^3.1.1": + version: 3.5.0 + resolution: "fast-redact@npm:3.5.0" + checksum: ef03f0d1849da074a520a531ad299bf346417b790a643931ab4e01cb72275c8d55b60dc8512fb1f1818647b696790edefaa96704228db9f012da935faa1940af languageName: node linkType: hard @@ -10780,6 +10975,13 @@ __metadata: languageName: node linkType: hard +"fast-uri@npm:^3.0.1": + version: 3.0.6 + resolution: "fast-uri@npm:3.0.6" + checksum: 7161ba2a7944778d679ba8e5f00d6a2bb479a2142df0982f541d67be6c979b17808f7edbb0ce78161c85035974bde3fa52b5137df31da46c0828cb629ba67c4e + languageName: node + linkType: hard + "fastest-levenshtein@npm:^1.0.12": version: 1.0.16 resolution: "fastest-levenshtein@npm:1.0.16" @@ -10863,18 +11065,18 @@ __metadata: languageName: node linkType: hard -"finalhandler@npm:1.2.0": - version: 1.2.0 - resolution: "finalhandler@npm:1.2.0" +"finalhandler@npm:1.3.1": + version: 1.3.1 + resolution: "finalhandler@npm:1.3.1" dependencies: debug: 2.6.9 - encodeurl: ~1.0.2 + encodeurl: ~2.0.0 escape-html: ~1.0.3 on-finished: 2.4.1 parseurl: ~1.3.3 statuses: 2.0.1 unpipe: ~1.0.0 - checksum: 92effbfd32e22a7dff2994acedbd9bcc3aa646a3e919ea6a53238090e87097f8ef07cced90aa2cc421abdf993aefbdd5b00104d55c7c5479a8d00ed105b45716 + checksum: a8c58cd97c9cd47679a870f6833a7b417043f5a288cd6af6d0f49b476c874a506100303a128b6d3b654c3d74fa4ff2ffed68a48a27e8630cda5c918f2977dcf4 languageName: node linkType: hard @@ -10988,25 +11190,15 @@ __metadata: languageName: node linkType: hard -"form-data@npm:^4.0.0": - version: 4.0.0 - resolution: "form-data@npm:4.0.0" +"form-data@npm:^4.0.0, form-data@npm:~4.0.0": + version: 4.0.2 + resolution: "form-data@npm:4.0.2" dependencies: asynckit: ^0.4.0 combined-stream: ^1.0.8 + es-set-tostringtag: ^2.1.0 mime-types: ^2.1.12 - checksum: 01135bf8675f9d5c61ff18e2e2932f719ca4de964e3be90ef4c36aacfc7b9cb2fceb5eca0b7e0190e3383fe51c5b37f4cb80b62ca06a99aaabfcfd6ac7c9328c - languageName: node - linkType: hard - -"form-data@npm:~2.3.2": - version: 2.3.3 - resolution: "form-data@npm:2.3.3" - dependencies: - asynckit: ^0.4.0 - combined-stream: ^1.0.6 - mime-types: ^2.1.12 - checksum: 10c1780fa13dbe1ff3100114c2ce1f9307f8be10b14bf16e103815356ff567b6be39d70fc4a40f8990b9660012dc24b0f5e1dde1b6426166eb23a445ba068ca3 + checksum: e887298b22c13c7c9c5a8ba3716f295a479a13ca78bfd855ef11cbce1bcf22bc0ae2062e94808e21d46e5c667664a1a1a8a7f57d7040193c1fefbfb11af58aab languageName: node linkType: hard @@ -11127,10 +11319,10 @@ __metadata: languageName: node linkType: hard -"function-bind@npm:^1.1.1": - version: 1.1.1 - resolution: "function-bind@npm:1.1.1" - checksum: b32fbaebb3f8ec4969f033073b43f5c8befbb58f1a79e12f1d7490358150359ebd92f49e72ff0144f65f2c48ea2a605bff2d07965f548f6474fd8efd95bf361a +"function-bind@npm:^1.1.1, function-bind@npm:^1.1.2": + version: 1.1.2 + resolution: "function-bind@npm:1.1.2" + checksum: 2b0ff4ce708d99715ad14a6d1f894e2a83242e4a52ccfcefaee5e40050562e5f6dafc1adbb4ce2d4ab47279a45dc736ab91ea5042d843c3c092820dfe032efb1 languageName: node linkType: hard @@ -11183,15 +11375,21 @@ __metadata: languageName: node linkType: hard -"get-intrinsic@npm:^1.0.2, get-intrinsic@npm:^1.1.1, get-intrinsic@npm:^1.1.3, get-intrinsic@npm:^1.2.0, get-intrinsic@npm:^1.2.1": - version: 1.2.1 - resolution: "get-intrinsic@npm:1.2.1" +"get-intrinsic@npm:^1.0.2, get-intrinsic@npm:^1.1.1, get-intrinsic@npm:^1.1.3, get-intrinsic@npm:^1.2.0, get-intrinsic@npm:^1.2.1, get-intrinsic@npm:^1.2.5, get-intrinsic@npm:^1.2.6, get-intrinsic@npm:^1.3.0": + version: 1.3.0 + resolution: "get-intrinsic@npm:1.3.0" dependencies: - function-bind: ^1.1.1 - has: ^1.0.3 - has-proto: ^1.0.1 - has-symbols: ^1.0.3 - checksum: 5b61d88552c24b0cf6fa2d1b3bc5459d7306f699de060d76442cce49a4721f52b8c560a33ab392cf5575b7810277d54ded9d4d39a1ea61855619ebc005aa7e5f + call-bind-apply-helpers: ^1.0.2 + es-define-property: ^1.0.1 + es-errors: ^1.3.0 + es-object-atoms: ^1.1.1 + function-bind: ^1.1.2 + get-proto: ^1.0.1 + gopd: ^1.2.0 + has-symbols: ^1.1.0 + hasown: ^2.0.2 + math-intrinsics: ^1.1.0 + checksum: 301008e4482bb9a9cb49e132b88fee093bff373b4e6def8ba219b1e96b60158a6084f273ef5cafe832e42cd93462f4accb46a618d35fe59a2b507f2388c5b79d languageName: node linkType: hard @@ -11223,6 +11421,16 @@ __metadata: languageName: node linkType: hard +"get-proto@npm:^1.0.1": + version: 1.0.1 + resolution: "get-proto@npm:1.0.1" + dependencies: + dunder-proto: ^1.0.1 + es-object-atoms: ^1.0.0 + checksum: 4fc96afdb58ced9a67558698b91433e6b037aaa6f1493af77498d7c85b141382cf223c0e5946f334fb328ee85dfe6edd06d218eaf09556f4bc4ec6005d7f5f7b + languageName: node + linkType: hard + "get-stream@npm:6.0.0, get-stream@npm:^6.0.0": version: 6.0.0 resolution: "get-stream@npm:6.0.0" @@ -11503,12 +11711,10 @@ __metadata: languageName: node linkType: hard -"gopd@npm:^1.0.1": - version: 1.0.1 - resolution: "gopd@npm:1.0.1" - dependencies: - get-intrinsic: ^1.1.3 - checksum: a5ccfb8806e0917a94e0b3de2af2ea4979c1da920bc381667c260e00e7cafdbe844e2cb9c5bcfef4e5412e8bf73bab837285bc35c7ba73aaaf0134d4583393a6 +"gopd@npm:^1.0.1, gopd@npm:^1.2.0": + version: 1.2.0 + resolution: "gopd@npm:1.2.0" + checksum: cc6d8e655e360955bdccaca51a12a474268f95bb793fc3e1f2bdadb075f28bfd1fd988dab872daf77a61d78cbaf13744bc8727a17cfb1d150d76047d805375f3 languageName: node linkType: hard @@ -11552,6 +11758,22 @@ __metadata: languageName: node linkType: hard +"gunzip-maybe@npm:^1.4.2": + version: 1.4.2 + resolution: "gunzip-maybe@npm:1.4.2" + dependencies: + browserify-zlib: ^0.1.4 + is-deflate: ^1.0.0 + is-gzip: ^1.0.0 + peek-stream: ^1.1.0 + pumpify: ^1.3.3 + through2: ^2.0.3 + bin: + gunzip-maybe: bin.js + checksum: bc4d4977c24a2860238df271de75d53dd72a359d19f1248d1c613807dc221d3b8ae09624e3085c8106663e3e1b59db62a85b261d1138c2cc24efad9df577d4e1 + languageName: node + linkType: hard + "gzip-size@npm:^6.0.0": version: 6.0.0 resolution: "gzip-size@npm:6.0.0" @@ -11586,23 +11808,6 @@ __metadata: languageName: node linkType: hard -"har-schema@npm:^2.0.0": - version: 2.0.0 - resolution: "har-schema@npm:2.0.0" - checksum: d8946348f333fb09e2bf24cc4c67eabb47c8e1d1aa1c14184c7ffec1140a49ec8aa78aa93677ae452d71d5fc0fdeec20f0c8c1237291fc2bcb3f502a5d204f9b - languageName: node - linkType: hard - -"har-validator@npm:~5.1.3": - version: 5.1.5 - resolution: "har-validator@npm:5.1.5" - dependencies: - ajv: ^6.12.3 - har-schema: ^2.0.0 - checksum: b998a7269ca560d7f219eedc53e2c664cd87d487e428ae854a6af4573fc94f182fe9d2e3b92ab968249baec7ebaf9ead69cf975c931dc2ab282ec182ee988280 - languageName: node - linkType: hard - "hard-rejection@npm:^2.1.0": version: 2.1.0 resolution: "hard-rejection@npm:2.1.0" @@ -11654,19 +11859,19 @@ __metadata: languageName: node linkType: hard -"has-symbols@npm:^1.0.2, has-symbols@npm:^1.0.3": - version: 1.0.3 - resolution: "has-symbols@npm:1.0.3" - checksum: a054c40c631c0d5741a8285010a0777ea0c068f99ed43e5d6eb12972da223f8af553a455132fdb0801bdcfa0e0f443c0c03a68d8555aa529b3144b446c3f2410 +"has-symbols@npm:^1.0.2, has-symbols@npm:^1.0.3, has-symbols@npm:^1.1.0": + version: 1.1.0 + resolution: "has-symbols@npm:1.1.0" + checksum: b2316c7302a0e8ba3aaba215f834e96c22c86f192e7310bdf689dd0e6999510c89b00fbc5742571507cebf25764d68c988b3a0da217369a73596191ac0ce694b languageName: node linkType: hard -"has-tostringtag@npm:^1.0.0": - version: 1.0.0 - resolution: "has-tostringtag@npm:1.0.0" +"has-tostringtag@npm:^1.0.0, has-tostringtag@npm:^1.0.2": + version: 1.0.2 + resolution: "has-tostringtag@npm:1.0.2" dependencies: - has-symbols: ^1.0.2 - checksum: cc12eb28cb6ae22369ebaad3a8ab0799ed61270991be88f208d508076a1e99abe4198c965935ce85ea90b60c94ddda73693b0920b58e7ead048b4a391b502c1c + has-symbols: ^1.0.3 + checksum: 999d60bb753ad714356b2c6c87b7fb74f32463b8426e159397da4bde5bca7e598ab1073f4d8d4deafac297f2eb311484cd177af242776bf05f0d11565680468d languageName: node linkType: hard @@ -11684,6 +11889,15 @@ __metadata: languageName: node linkType: hard +"hasown@npm:^2.0.2": + version: 2.0.2 + resolution: "hasown@npm:2.0.2" + dependencies: + function-bind: ^1.1.2 + checksum: e8516f776a15149ca6c6ed2ae3110c417a00b62260e222590e54aa367cbcd6ed99122020b37b7fbdf05748df57b265e70095d7bf35a47660587619b15ffb93db + languageName: node + linkType: hard + "he@npm:^1.2.0": version: 1.2.0 resolution: "he@npm:1.2.0" @@ -11843,14 +12057,14 @@ __metadata: languageName: node linkType: hard -"http-signature@npm:~1.2.0": - version: 1.2.0 - resolution: "http-signature@npm:1.2.0" +"http-signature@npm:~1.4.0": + version: 1.4.0 + resolution: "http-signature@npm:1.4.0" dependencies: assert-plus: ^1.0.0 - jsprim: ^1.2.2 - sshpk: ^1.7.0 - checksum: 3324598712266a9683585bb84a75dec4fd550567d5e0dd4a0fff6ff3f74348793404d3eeac4918fa0902c810eeee1a86419e4a2e92a164132dfe6b26743fb47c + jsprim: ^2.0.2 + sshpk: ^1.18.0 + checksum: f07f4cc0481e4461c68b9b7d1a25bf2ec4cef8e0061812b989c1e64f504b4b11f75f88022102aea05d25d47a87789599f1a310b1f8a56945a50c93e54c7ee076 languageName: node linkType: hard @@ -11861,6 +12075,13 @@ __metadata: languageName: node linkType: hard +"http-status-codes@npm:2.3.0": + version: 2.3.0 + resolution: "http-status-codes@npm:2.3.0" + checksum: dae3b99e0155441b6df28e8265ff27c56a45f82c6092f736414233e9ccf063d5ea93c1e1279e8b499c4642e2538b37995c76b1640ed3f615d0e2883d3a1dcfd5 + languageName: node + linkType: hard + "http2-wrapper@npm:^1.0.0-beta.5.2": version: 1.0.3 resolution: "http2-wrapper@npm:1.0.3" @@ -12011,7 +12232,7 @@ __metadata: languageName: node linkType: hard -"inherits@npm:2, inherits@npm:2.0.4, inherits@npm:^2.0.3, inherits@npm:^2.0.4, inherits@npm:~2.0.3": +"inherits@npm:2, inherits@npm:2.0.4, inherits@npm:^2.0.1, inherits@npm:^2.0.3, inherits@npm:^2.0.4, inherits@npm:~2.0.3": version: 2.0.4 resolution: "inherits@npm:2.0.4" checksum: 4a48a733847879d6cf6691860a6b1e3f0f4754176e4d71494c41f3475553768b10f84b5ce1d40fbd0e34e6bfbb864ee35858ad4dd2cf31e02fc4a154b724d7f1 @@ -12214,6 +12435,13 @@ __metadata: languageName: node linkType: hard +"is-deflate@npm:^1.0.0": + version: 1.0.0 + resolution: "is-deflate@npm:1.0.0" + checksum: c2f9f2d3db79ac50c5586697d1e69a55282a2b0cc5e437b3c470dd47f24e40b6216dcd7e024511e21381607bf57afa019343e3bd0e08a119032818b596004262 + languageName: node + linkType: hard + "is-docker@npm:^2.0.0, is-docker@npm:^2.1.1": version: 2.2.1 resolution: "is-docker@npm:2.2.1" @@ -12271,6 +12499,13 @@ __metadata: languageName: node linkType: hard +"is-gzip@npm:^1.0.0": + version: 1.0.0 + resolution: "is-gzip@npm:1.0.0" + checksum: 0d28931c1f445fa29c900cf9f48e06e9d1d477a3bf7bd7332e7ce68f1333ccd8cb381de2f0f62a9a262d9c0912608a9a71b4a40e788e201b3dbd67072bb20d86 + languageName: node + linkType: hard + "is-interactive@npm:^1.0.0": version: 1.0.0 resolution: "is-interactive@npm:1.0.0" @@ -13387,18 +13622,6 @@ __metadata: languageName: node linkType: hard -"jsonwebtoken@npm:9.0.0": - version: 9.0.0 - resolution: "jsonwebtoken@npm:9.0.0" - dependencies: - jws: ^3.2.2 - lodash: ^4.17.21 - ms: ^2.1.1 - semver: ^7.3.8 - checksum: b9181cecf9df99f1dc0253f91ba000a1aa4d91f5816d1608c0dba61a5623726a0bfe200b51df25de18c1a6000825d231ad7ce2788aa54fd48dcb760ad9eb9514 - languageName: node - linkType: hard - "jsonwebtoken@npm:9.0.2": version: 9.0.2 resolution: "jsonwebtoken@npm:9.0.2" @@ -13417,15 +13640,15 @@ __metadata: languageName: node linkType: hard -"jsprim@npm:^1.2.2": - version: 1.4.2 - resolution: "jsprim@npm:1.4.2" +"jsprim@npm:^2.0.2": + version: 2.0.2 + resolution: "jsprim@npm:2.0.2" dependencies: assert-plus: 1.0.0 extsprintf: 1.3.0 json-schema: 0.4.0 verror: 1.10.0 - checksum: 2ad1b9fdcccae8b3d580fa6ced25de930eaa1ad154db21bbf8478a4d30bbbec7925b5f5ff29b933fba9412b16a17bd484a8da4fdb3663b5e27af95dd693bab2a + checksum: d175f6b1991e160cb0aa39bc857da780e035611986b5492f32395411879fdaf4e513d98677f08f7352dac93a16b66b8361c674b86a3fa406e2e7af6b26321838 languageName: node linkType: hard @@ -13473,15 +13696,6 @@ __metadata: languageName: node linkType: hard -"keygrip@npm:~1.1.0": - version: 1.1.0 - resolution: "keygrip@npm:1.1.0" - dependencies: - tsscmp: 1.0.6 - checksum: 078cd16a463d187121f0a27c1c9c95c52ad392b620f823431689f345a0501132cee60f6e96914b07d570105af470b96960402accd6c48a0b1f3cd8fac4fa2cae - languageName: node - linkType: hard - "keyv@npm:^4.0.0, keyv@npm:^4.5.3": version: 4.5.4 resolution: "keyv@npm:4.5.4" @@ -14177,6 +14391,13 @@ __metadata: languageName: node linkType: hard +"math-intrinsics@npm:^1.1.0": + version: 1.1.0 + resolution: "math-intrinsics@npm:1.1.0" + checksum: 0e513b29d120f478c85a70f49da0b8b19bc638975eca466f2eeae0071f3ad00454c621bf66e16dd435896c208e719fc91ad79bbfba4e400fe0b372e7c1c9c9a2 + languageName: node + linkType: hard + "mathjax-full@npm:^3.2.2": version: 3.2.2 resolution: "mathjax-full@npm:3.2.2" @@ -14229,10 +14450,10 @@ __metadata: languageName: node linkType: hard -"merge-descriptors@npm:1.0.1": - version: 1.0.1 - resolution: "merge-descriptors@npm:1.0.1" - checksum: 5abc259d2ae25bb06d19ce2b94a21632583c74e2a9109ee1ba7fd147aa7362b380d971e0251069f8b3eb7d48c21ac839e21fa177b335e82c76ec172e30c31a26 +"merge-descriptors@npm:1.0.3": + version: 1.0.3 + resolution: "merge-descriptors@npm:1.0.3" + checksum: 52117adbe0313d5defa771c9993fe081e2d2df9b840597e966aadafde04ae8d0e3da46bac7ca4efc37d4d2b839436582659cd49c6a43eacb3fe3050896a105d1 languageName: node linkType: hard @@ -14414,7 +14635,7 @@ __metadata: languageName: node linkType: hard -"minimatch@npm:2 || 3, minimatch@npm:3.1.2, minimatch@npm:^3.0.4, minimatch@npm:^3.0.5, minimatch@npm:^3.1.2": +"minimatch@npm:2 || 3, minimatch@npm:^3.0.4, minimatch@npm:^3.0.5, minimatch@npm:^3.1.2": version: 3.1.2 resolution: "minimatch@npm:3.1.2" dependencies: @@ -14432,6 +14653,15 @@ __metadata: languageName: node linkType: hard +"minimatch@npm:7.4.6": + version: 7.4.6 + resolution: "minimatch@npm:7.4.6" + dependencies: + brace-expansion: ^2.0.1 + checksum: 1a6c8d22618df9d2a88aabeef1de5622eb7b558e9f8010be791cb6b0fa6e102d39b11c28d75b855a1e377b12edc7db8ff12a99c20353441caa6a05e78deb5da9 + languageName: node + linkType: hard + "minimatch@npm:^5.0.1": version: 5.1.6 resolution: "minimatch@npm:5.1.6" @@ -14690,13 +14920,6 @@ __metadata: languageName: node linkType: hard -"nanoclone@npm:^0.2.1": - version: 0.2.1 - resolution: "nanoclone@npm:0.2.1" - checksum: 96b2954e22f70561f41e20d69856266c65583c2a441dae108f1dc71b716785d2c8038dac5f1d5e92b117aed3825f526b53139e2e5d6e6db8a77cfa35b3b8bf40 - languageName: node - linkType: hard - "nanoid@npm:^3.3.6": version: 3.3.9 resolution: "nanoid@npm:3.3.9" @@ -14729,13 +14952,20 @@ __metadata: languageName: node linkType: hard -"negotiator@npm:0.6.3, negotiator@npm:^0.6.3": +"negotiator@npm:0.6.3": version: 0.6.3 resolution: "negotiator@npm:0.6.3" checksum: b8ffeb1e262eff7968fc90a2b6767b04cfd9842582a9d0ece0af7049537266e7b2506dfb1d107a32f06dd849ab2aea834d5830f7f4d0e5cb7d36e1ae55d021d9 languageName: node linkType: hard +"negotiator@npm:^0.6.3, negotiator@npm:~0.6.4": + version: 0.6.4 + resolution: "negotiator@npm:0.6.4" + checksum: 7ded10aa02a0707d1d12a9973fdb5954f98547ca7beb60e31cb3a403cc6e8f11138db7a3b0128425cf836fc85d145ec4ce983b2bdf83dca436af879c2d683510 + languageName: node + linkType: hard + "neo-async@npm:^2.6.2": version: 2.6.2 resolution: "neo-async@npm:2.6.2" @@ -15166,13 +15396,6 @@ __metadata: languageName: node linkType: hard -"oauth-sign@npm:~0.9.0": - version: 0.9.0 - resolution: "oauth-sign@npm:0.9.0" - checksum: 8f5497a127967866a3c67094c21efd295e46013a94e6e828573c62220e9af568cc1d2d04b16865ba583e430510fa168baf821ea78f355146d8ed7e350fc44c64 - languageName: node - linkType: hard - "object-assign@npm:^4, object-assign@npm:^4.0.1, object-assign@npm:^4.1.0, object-assign@npm:^4.1.1": version: 4.1.1 resolution: "object-assign@npm:4.1.1" @@ -15180,10 +15403,10 @@ __metadata: languageName: node linkType: hard -"object-inspect@npm:^1.12.3, object-inspect@npm:^1.9.0": - version: 1.12.3 - resolution: "object-inspect@npm:1.12.3" - checksum: dabfd824d97a5f407e6d5d24810d888859f6be394d8b733a77442b277e0808860555176719c5905e765e3743a7cada6b8b0a3b85e5331c530fd418cc8ae991db +"object-inspect@npm:^1.12.3, object-inspect@npm:^1.13.3": + version: 1.13.4 + resolution: "object-inspect@npm:1.13.4" + checksum: 582810c6a8d2ef988ea0a39e69e115a138dad8f42dd445383b394877e5816eb4268489f316a6f74ee9c4e0a984b3eab1028e3e79d62b1ed67c726661d55c7a8b languageName: node linkType: hard @@ -15256,6 +15479,13 @@ __metadata: languageName: node linkType: hard +"on-exit-leak-free@npm:^2.1.0": + version: 2.1.2 + resolution: "on-exit-leak-free@npm:2.1.2" + checksum: 6ce7acdc7b9ceb51cf029b5239cbf41937ee4c8dcd9d4e475e1777b41702564d46caa1150a744e00da0ac6d923ab83471646a39a4470f97481cf6e2d8d253c3f + languageName: node + linkType: hard + "on-finished@npm:2.4.1": version: 2.4.1 resolution: "on-finished@npm:2.4.1" @@ -15542,6 +15772,13 @@ __metadata: languageName: node linkType: hard +"pako@npm:~0.2.0": + version: 0.2.9 + resolution: "pako@npm:0.2.9" + checksum: 055f9487cd57fbb78df84315873bbdd089ba286f3499daed47d2effdc6253e981f5db6898c23486de76d4a781559f890d643bd3a49f70f1b4a18019c98aa5125 + languageName: node + linkType: hard + "param-case@npm:^3.0.4": version: 3.0.4 resolution: "param-case@npm:3.0.4" @@ -15700,10 +15937,10 @@ __metadata: languageName: node linkType: hard -"path-to-regexp@npm:0.1.7": - version: 0.1.7 - resolution: "path-to-regexp@npm:0.1.7" - checksum: 69a14ea24db543e8b0f4353305c5eac6907917031340e5a8b37df688e52accd09e3cebfe1660b70d76b6bd89152f52183f28c74813dbf454ba1a01c82a38abce +"path-to-regexp@npm:0.1.10": + version: 0.1.10 + resolution: "path-to-regexp@npm:0.1.10" + checksum: ab7a3b7a0b914476d44030340b0a65d69851af2a0f33427df1476100ccb87d409c39e2182837a96b98fb38c4ef2ba6b87bdad62bb70a2c153876b8061760583c languageName: node linkType: hard @@ -15730,6 +15967,17 @@ __metadata: languageName: node linkType: hard +"peek-stream@npm:^1.1.0": + version: 1.1.3 + resolution: "peek-stream@npm:1.1.3" + dependencies: + buffer-from: ^1.0.0 + duplexify: ^3.5.0 + through2: ^2.0.3 + checksum: a0e09d6d1a8a01158a3334f20d6b1cdd91747eba24eb06a1d742eefb620385593121a76d4378cc81f77cdce6a66df0575a41041b1189c510254aec91878afc99 + languageName: node + linkType: hard + "performance-now@npm:^2.1.0": version: 2.1.0 resolution: "performance-now@npm:2.1.0" @@ -15788,13 +16036,13 @@ __metadata: languageName: node linkType: hard -"pino-abstract-transport@npm:1.0.0": - version: 1.0.0 - resolution: "pino-abstract-transport@npm:1.0.0" +"pino-abstract-transport@npm:1.1.0, pino-abstract-transport@npm:v1.1.0": + version: 1.1.0 + resolution: "pino-abstract-transport@npm:1.1.0" dependencies: readable-stream: ^4.0.0 split2: ^4.0.0 - checksum: 05dd0eda52dd99fd204b39fe7b62656744b63e863bc052cdd5105d25f226a236966d0a46e39a1ace4838f6e988c608837ff946d2d0bc92835ca7baa0a3bff8d8 + checksum: cc84caabee5647b5753ae484d5f63a1bca0f6e1791845e2db2b6d830a561c2b5dd1177720f68d78994c8a93aecc69f2729e6ac2bc871a1bf5bb4b0ec17210668 languageName: node linkType: hard @@ -15815,6 +16063,13 @@ __metadata: languageName: node linkType: hard +"pino-std-serializers@npm:^6.0.0": + version: 6.2.2 + resolution: "pino-std-serializers@npm:6.2.2" + checksum: aeb0662edc46ec926de9961ed4780a4f0586bb7c37d212cd469c069639e7816887a62c5093bc93f260a4e0900322f44fc8ab1343b5a9fa2864a888acccdb22a4 + languageName: node + linkType: hard + "pino@npm:7.11.0": version: 7.11.0 resolution: "pino@npm:7.11.0" @@ -15836,6 +16091,27 @@ __metadata: languageName: node linkType: hard +"pino@npm:8.17.2": + version: 8.17.2 + resolution: "pino@npm:8.17.2" + dependencies: + atomic-sleep: ^1.0.0 + fast-redact: ^3.1.1 + on-exit-leak-free: ^2.1.0 + pino-abstract-transport: v1.1.0 + pino-std-serializers: ^6.0.0 + process-warning: ^3.0.0 + quick-format-unescaped: ^4.0.3 + real-require: ^0.2.0 + safe-stable-stringify: ^2.3.1 + sonic-boom: ^3.7.0 + thread-stream: ^2.0.0 + bin: + pino: bin.js + checksum: fc769d3d7b1333de94d51815fbe2abc4a1cc07cb0252a399313e54e26c13da2c0a69b227c296bd95ed52660d7eaa993662a9bf270b7370d0f7553fdd38716b63 + languageName: node + linkType: hard + "pirates@npm:^4.0.4": version: 4.0.6 resolution: "pirates@npm:4.0.6" @@ -16042,6 +16318,13 @@ __metadata: languageName: node linkType: hard +"process-warning@npm:^3.0.0": + version: 3.0.0 + resolution: "process-warning@npm:3.0.0" + checksum: 1fc2eb4524041de3c18423334cc8b4e36bec5ad5472640ca1a936122c6e01da0864c1a4025858ef89aea93eabe7e77db93ccea225b10858617821cb6a8719efe + languageName: node + linkType: hard + "process@npm:^0.11.10": version: 0.11.10 resolution: "process@npm:0.11.10" @@ -16096,13 +16379,6 @@ __metadata: languageName: node linkType: hard -"property-expr@npm:^2.0.4": - version: 2.0.5 - resolution: "property-expr@npm:2.0.5" - checksum: 4ebe82ce45aaf1527e96e2ab84d75d25217167ec3ff6378cf83a84fb4abc746e7c65768a79d275881602ae82f168f9a6dfaa7f5e331d0fcc83d692770bcce5f1 - languageName: node - linkType: hard - "protocols@npm:^2.0.0, protocols@npm:^2.0.1": version: 2.0.1 resolution: "protocols@npm:2.0.1" @@ -16127,13 +16403,23 @@ __metadata: languageName: node linkType: hard -"psl@npm:^1.1.28, psl@npm:^1.1.33": +"psl@npm:^1.1.33": version: 1.9.0 resolution: "psl@npm:1.9.0" checksum: 20c4277f640c93d393130673f392618e9a8044c6c7bf61c53917a0fddb4952790f5f362c6c730a9c32b124813e173733f9895add8d26f566ed0ea0654b2e711d languageName: node linkType: hard +"pump@npm:^2.0.0": + version: 2.0.1 + resolution: "pump@npm:2.0.1" + dependencies: + end-of-stream: ^1.1.0 + once: ^1.3.1 + checksum: e9f26a17be00810bff37ad0171edb35f58b242487b0444f92fb7d78bc7d61442fa9b9c5bd93a43fd8fd8ddd3cc75f1221f5e04c790f42907e5baab7cf5e2b931 + languageName: node + linkType: hard + "pump@npm:^3.0.0": version: 3.0.0 resolution: "pump@npm:3.0.0" @@ -16144,6 +16430,17 @@ __metadata: languageName: node linkType: hard +"pumpify@npm:^1.3.3": + version: 1.5.1 + resolution: "pumpify@npm:1.5.1" + dependencies: + duplexify: ^3.6.0 + inherits: ^2.0.3 + pump: ^2.0.0 + checksum: 26ca412ec8d665bd0d5e185c1b8f627728eff603440d75d22a58e421e3c66eaf86ec6fc6a6efc54808ecef65979279fa8e99b109a23ec1fa8d79f37e6978c9bd + languageName: node + linkType: hard + "punycode@npm:^2.1.0, punycode@npm:^2.1.1": version: 2.3.0 resolution: "punycode@npm:2.3.0" @@ -16158,19 +16455,12 @@ __metadata: languageName: node linkType: hard -"qs@npm:6.11.0": - version: 6.11.0 - resolution: "qs@npm:6.11.0" +"qs@npm:6.13.0": + version: 6.13.0 + resolution: "qs@npm:6.13.0" dependencies: - side-channel: ^1.0.4 - checksum: 6e1f29dd5385f7488ec74ac7b6c92f4d09a90408882d0c208414a34dd33badc1a621019d4c799a3df15ab9b1d0292f97c1dd71dc7c045e69f81a8064e5af7297 - languageName: node - linkType: hard - -"qs@npm:~6.5.2": - version: 6.5.3 - resolution: "qs@npm:6.5.3" - checksum: 6f20bf08cabd90c458e50855559539a28d00b2f2e7dddcb66082b16a43188418cb3cb77cbd09268bcef6022935650f0534357b8af9eeb29bf0f27ccb17655692 + side-channel: ^1.0.6 + checksum: e9404dc0fc2849245107108ce9ec2766cde3be1b271de0bf1021d049dc5b98d1a2901e67b431ac5509f865420a7ed80b7acb3980099fe1c118a1c5d2e1432ad8 languageName: node linkType: hard @@ -16235,15 +16525,15 @@ __metadata: languageName: node linkType: hard -"raw-body@npm:2.5.1": - version: 2.5.1 - resolution: "raw-body@npm:2.5.1" +"raw-body@npm:2.5.2": + version: 2.5.2 + resolution: "raw-body@npm:2.5.2" dependencies: bytes: 3.1.2 http-errors: 2.0.0 iconv-lite: 0.4.24 unpipe: 1.0.0 - checksum: 5362adff1575d691bb3f75998803a0ffed8c64eabeaa06e54b4ada25a0cd1b2ae7f4f5ec46565d1bec337e08b5ac90c76eaa0758de6f72a633f025d754dec29e + checksum: ba1583c8d8a48e8fbb7a873fdbb2df66ea4ff83775421bfe21ee120140949ab048200668c47d9ae3880012f6e217052690628cf679ddfbd82c9fc9358d574676 languageName: node linkType: hard @@ -16452,6 +16742,21 @@ __metadata: languageName: node linkType: hard +"readable-stream@npm:^2.0.0, readable-stream@npm:~2.3.6": + version: 2.3.8 + resolution: "readable-stream@npm:2.3.8" + dependencies: + core-util-is: ~1.0.0 + inherits: ~2.0.3 + isarray: ~1.0.0 + process-nextick-args: ~2.0.0 + safe-buffer: ~5.1.1 + string_decoder: ~1.1.1 + util-deprecate: ~1.0.1 + checksum: 65645467038704f0c8aaf026a72fbb588a9e2ef7a75cd57a01702ee9db1c4a1e4b03aaad36861a6a0926546a74d174149c8c207527963e0c2d3eee2f37678a42 + languageName: node + linkType: hard + "readable-stream@npm:^3.0.0, readable-stream@npm:^3.0.2, readable-stream@npm:^3.1.1, readable-stream@npm:^3.4.0, readable-stream@npm:^3.6.0": version: 3.6.2 resolution: "readable-stream@npm:3.6.2" @@ -16476,21 +16781,6 @@ __metadata: languageName: node linkType: hard -"readable-stream@npm:~2.3.6": - version: 2.3.8 - resolution: "readable-stream@npm:2.3.8" - dependencies: - core-util-is: ~1.0.0 - inherits: ~2.0.3 - isarray: ~1.0.0 - process-nextick-args: ~2.0.0 - safe-buffer: ~5.1.1 - string_decoder: ~1.1.1 - util-deprecate: ~1.0.1 - checksum: 65645467038704f0c8aaf026a72fbb588a9e2ef7a75cd57a01702ee9db1c4a1e4b03aaad36861a6a0926546a74d174149c8c207527963e0c2d3eee2f37678a42 - languageName: node - linkType: hard - "real-require@npm:^0.1.0": version: 0.1.0 resolution: "real-require@npm:0.1.0" @@ -16498,6 +16788,13 @@ __metadata: languageName: node linkType: hard +"real-require@npm:^0.2.0": + version: 0.2.0 + resolution: "real-require@npm:0.2.0" + checksum: fa060f19f2f447adf678d1376928c76379dce5f72bd334da301685ca6cdcb7b11356813332cc243c88470796bc2e2b1e2917fc10df9143dd93c2ea608694971d + languageName: node + linkType: hard + "rechoir@npm:^0.8.0": version: 0.8.0 resolution: "rechoir@npm:0.8.0" @@ -16655,34 +16952,6 @@ __metadata: languageName: node linkType: hard -"request@npm:2.88.2": - version: 2.88.2 - resolution: "request@npm:2.88.2" - dependencies: - aws-sign2: ~0.7.0 - aws4: ^1.8.0 - caseless: ~0.12.0 - combined-stream: ~1.0.6 - extend: ~3.0.2 - forever-agent: ~0.6.1 - form-data: ~2.3.2 - har-validator: ~5.1.3 - http-signature: ~1.2.0 - is-typedarray: ~1.0.0 - isstream: ~0.1.2 - json-stringify-safe: ~5.0.1 - mime-types: ~2.1.19 - oauth-sign: ~0.9.0 - performance-now: ^2.1.0 - qs: ~6.5.2 - safe-buffer: ^5.1.2 - tough-cookie: ~2.5.0 - tunnel-agent: ^0.6.0 - uuid: ^3.3.2 - checksum: 4e112c087f6eabe7327869da2417e9d28fcd0910419edd2eb17b6acfc4bfa1dad61954525949c228705805882d8a98a86a0ea12d7f739c01ee92af7062996983 - languageName: node - linkType: hard - "require-directory@npm:^2.1.1": version: 2.1.1 resolution: "require-directory@npm:2.1.1" @@ -16929,13 +17198,6 @@ __metadata: languageName: node linkType: hard -"safe-buffer@npm:5.1.2, safe-buffer@npm:~5.1.0, safe-buffer@npm:~5.1.1": - version: 5.1.2 - resolution: "safe-buffer@npm:5.1.2" - checksum: f2f1f7943ca44a594893a852894055cf619c1fbcb611237fc39e461ae751187e7baf4dc391a72125e0ac4fb2d8c5c0b3c71529622e6a58f46b960211e704903c - languageName: node - linkType: hard - "safe-buffer@npm:5.2.1, safe-buffer@npm:^5.0.1, safe-buffer@npm:^5.1.0, safe-buffer@npm:^5.1.2, safe-buffer@npm:~5.2.0": version: 5.2.1 resolution: "safe-buffer@npm:5.2.1" @@ -16943,6 +17205,13 @@ __metadata: languageName: node linkType: hard +"safe-buffer@npm:~5.1.0, safe-buffer@npm:~5.1.1": + version: 5.1.2 + resolution: "safe-buffer@npm:5.1.2" + checksum: f2f1f7943ca44a594893a852894055cf619c1fbcb611237fc39e461ae751187e7baf4dc391a72125e0ac4fb2d8c5c0b3c71529622e6a58f46b960211e704903c + languageName: node + linkType: hard + "safe-regex-test@npm:^1.0.0": version: 1.0.0 resolution: "safe-regex-test@npm:1.0.0" @@ -16954,10 +17223,10 @@ __metadata: languageName: node linkType: hard -"safe-stable-stringify@npm:^2.1.0": - version: 2.4.3 - resolution: "safe-stable-stringify@npm:2.4.3" - checksum: 3aeb64449706ee1f5ad2459fc99648b131d48e7a1fbb608d7c628020177512dc9d94108a5cb61bbc953985d313d0afea6566d243237743e02870490afef04b43 +"safe-stable-stringify@npm:^2.1.0, safe-stable-stringify@npm:^2.3.1": + version: 2.5.0 + resolution: "safe-stable-stringify@npm:2.5.0" + checksum: d3ce103ed43c6c2f523e39607208bfb1c73aa48179fc5be53c3aa97c118390bffd4d55e012f5393b982b65eb3e0ee954dd57b547930d3f242b0053dcdb923d17 languageName: node linkType: hard @@ -17075,14 +17344,12 @@ __metadata: languageName: node linkType: hard -"semver@npm:7.5.4": - version: 7.5.4 - resolution: "semver@npm:7.5.4" - dependencies: - lru-cache: ^6.0.0 +"semver@npm:7.6.3, semver@npm:^7.0.0, semver@npm:^7.1.1, semver@npm:^7.1.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.2, semver@npm:^7.5.3, semver@npm:^7.5.4, semver@npm:^7.6.3": + version: 7.6.3 + resolution: "semver@npm:7.6.3" bin: semver: bin/semver.js - checksum: 12d8ad952fa353b0995bf180cdac205a4068b759a140e5d3c608317098b3575ac2f1e09182206bf2eb26120e1c0ed8fb92c48c592f6099680de56bb071423ca3 + checksum: 4110ec5d015c9438f322257b1c51fe30276e5f766a3f64c09edd1d7ea7118ecbc3f379f3b69032bacf13116dc7abc4ad8ce0d7e2bd642e26b0d271b56b61a7d8 languageName: node linkType: hard @@ -17095,18 +17362,9 @@ __metadata: languageName: node linkType: hard -"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.3, semver@npm:^7.5.4, semver@npm:^7.6.3": - version: 7.6.3 - resolution: "semver@npm:7.6.3" - bin: - semver: bin/semver.js - checksum: 4110ec5d015c9438f322257b1c51fe30276e5f766a3f64c09edd1d7ea7118ecbc3f379f3b69032bacf13116dc7abc4ad8ce0d7e2bd642e26b0d271b56b61a7d8 - languageName: node - linkType: hard - -"send@npm:0.18.0": - version: 0.18.0 - resolution: "send@npm:0.18.0" +"send@npm:0.19.0": + version: 0.19.0 + resolution: "send@npm:0.19.0" dependencies: debug: 2.6.9 depd: 2.0.0 @@ -17121,7 +17379,7 @@ __metadata: on-finished: 2.4.1 range-parser: ~1.2.1 statuses: 2.0.1 - checksum: 74fc07ebb58566b87b078ec63e5a3e41ecd987e4272ba67b7467e86c6ad51bc6b0b0154133b6d8b08a2ddda360464f71382f7ef864700f34844a76c8027817a8 + checksum: 5ae11bd900c1c2575525e2aa622e856804e2f96a09281ec1e39610d089f53aa69e13fd8db84b52f001d0318cf4bb0b3b904ad532fc4c0014eb90d32db0cff55f languageName: node linkType: hard @@ -17134,15 +17392,15 @@ __metadata: languageName: node linkType: hard -"serve-static@npm:1.15.0": - version: 1.15.0 - resolution: "serve-static@npm:1.15.0" +"serve-static@npm:1.16.2": + version: 1.16.2 + resolution: "serve-static@npm:1.16.2" dependencies: - encodeurl: ~1.0.2 + encodeurl: ~2.0.0 escape-html: ~1.0.3 parseurl: ~1.3.3 - send: 0.18.0 - checksum: af57fc13be40d90a12562e98c0b7855cf6e8bd4c107fe9a45c212bf023058d54a1871b1c89511c3958f70626fff47faeb795f5d83f8cf88514dbaeb2b724464d + send: 0.19.0 + checksum: dffc52feb4cc5c68e66d0c7f3c1824d4e989f71050aefc9bd5f822a42c54c9b814f595fc5f2b717f4c7cc05396145f3e90422af31186a93f76cf15f707019759 languageName: node linkType: hard @@ -17219,14 +17477,51 @@ __metadata: languageName: node linkType: hard -"side-channel@npm:^1.0.4": - version: 1.0.4 - resolution: "side-channel@npm:1.0.4" +"side-channel-list@npm:^1.0.0": + version: 1.0.0 + resolution: "side-channel-list@npm:1.0.0" dependencies: - call-bind: ^1.0.0 - get-intrinsic: ^1.0.2 - object-inspect: ^1.9.0 - checksum: 351e41b947079c10bd0858364f32bb3a7379514c399edb64ab3dce683933483fc63fb5e4efe0a15a2e8a7e3c436b6a91736ddb8d8c6591b0460a24bb4a1ee245 + es-errors: ^1.3.0 + object-inspect: ^1.13.3 + checksum: 603b928997abd21c5a5f02ae6b9cc36b72e3176ad6827fab0417ead74580cc4fb4d5c7d0a8a2ff4ead34d0f9e35701ed7a41853dac8a6d1a664fcce1a044f86f + languageName: node + linkType: hard + +"side-channel-map@npm:^1.0.1": + version: 1.0.1 + resolution: "side-channel-map@npm:1.0.1" + dependencies: + call-bound: ^1.0.2 + es-errors: ^1.3.0 + get-intrinsic: ^1.2.5 + object-inspect: ^1.13.3 + checksum: 42501371cdf71f4ccbbc9c9e2eb00aaaab80a4c1c429d5e8da713fd4d39ef3b8d4a4b37ed4f275798a65260a551a7131fd87fe67e922dba4ac18586d6aab8b06 + languageName: node + linkType: hard + +"side-channel-weakmap@npm:^1.0.2": + version: 1.0.2 + resolution: "side-channel-weakmap@npm:1.0.2" + dependencies: + call-bound: ^1.0.2 + es-errors: ^1.3.0 + get-intrinsic: ^1.2.5 + object-inspect: ^1.13.3 + side-channel-map: ^1.0.1 + checksum: a815c89bc78c5723c714ea1a77c938377ea710af20d4fb886d362b0d1f8ac73a17816a5f6640f354017d7e292a43da9c5e876c22145bac00b76cfb3468001736 + languageName: node + linkType: hard + +"side-channel@npm:^1.0.4, side-channel@npm:^1.0.6": + version: 1.1.0 + resolution: "side-channel@npm:1.1.0" + dependencies: + es-errors: ^1.3.0 + object-inspect: ^1.13.3 + side-channel-list: ^1.0.0 + side-channel-map: ^1.0.1 + side-channel-weakmap: ^1.0.2 + checksum: bf73d6d6682034603eb8e99c63b50155017ed78a522d27c2acec0388a792c3ede3238b878b953a08157093b85d05797217d270b7666ba1f111345fbe933380ff languageName: node linkType: hard @@ -17330,12 +17625,12 @@ __metadata: languageName: node linkType: hard -"sonic-boom@npm:3.3.0": - version: 3.3.0 - resolution: "sonic-boom@npm:3.3.0" +"sonic-boom@npm:3.8.0, sonic-boom@npm:^3.7.0": + version: 3.8.0 + resolution: "sonic-boom@npm:3.8.0" dependencies: atomic-sleep: ^1.0.0 - checksum: 4a290dd0f3edf49894bb72c631ee304dc3f9be0752c43d516808a365f341821f5cf49997c80ee7c0e67167e0e5131dc71afe7c58812858eb965d6b9746c0cac7 + checksum: c21ece61a0cabb78db96547aecb4e9086eba2db2d53030221ed07215bfda2d25bb02906366ea2584cbe73d236dd7dd109122d3d7287914b76a9630e0a36ad819 languageName: node linkType: hard @@ -17524,9 +17819,9 @@ __metadata: languageName: node linkType: hard -"sshpk@npm:^1.7.0": - version: 1.17.0 - resolution: "sshpk@npm:1.17.0" +"sshpk@npm:^1.18.0": + version: 1.18.0 + resolution: "sshpk@npm:1.18.0" dependencies: asn1: ~0.2.3 assert-plus: ^1.0.0 @@ -17541,7 +17836,7 @@ __metadata: sshpk-conv: bin/sshpk-conv sshpk-sign: bin/sshpk-sign sshpk-verify: bin/sshpk-verify - checksum: ba109f65c8e6c35133b8e6ed5576abeff8aa8d614824b7275ec3ca308f081fef483607c28d97780c1e235818b0f93ed8c8b56d0a5968d5a23fd6af57718c7597 + checksum: 01d43374eee3a7e37b3b82fdbecd5518cbb2e47ccbed27d2ae30f9753f22bd6ffad31225cb8ef013bc3fb7785e686cea619203ee1439a228f965558c367c3cfa languageName: node linkType: hard @@ -17595,6 +17890,20 @@ __metadata: languageName: node linkType: hard +"streamx@npm:^2.15.0": + version: 2.22.0 + resolution: "streamx@npm:2.22.0" + dependencies: + bare-events: ^2.2.0 + fast-fifo: ^1.3.2 + text-decoder: ^1.1.0 + dependenciesMeta: + bare-events: + optional: true + checksum: 9b2772a084281129d402f298bddf8d5f3c09b6b3d9b5c93df942e886b0b963c742a89736415cc53ffb8fc1f6f5b0b3ea171ed0ba86f1b31cde6ed35db5e07f6d + languageName: node + linkType: hard + "strict-uri-encode@npm:^1.0.0": version: 1.1.0 resolution: "strict-uri-encode@npm:1.1.0" @@ -17890,6 +18199,17 @@ __metadata: languageName: node linkType: hard +"tar-stream@npm:^3.1.7": + version: 3.1.7 + resolution: "tar-stream@npm:3.1.7" + dependencies: + b4a: ^1.6.4 + fast-fifo: ^1.2.0 + streamx: ^2.15.0 + checksum: 6393a6c19082b17b8dcc8e7fd349352bb29b4b8bfe1075912b91b01743ba6bb4298f5ff0b499a3bbaf82121830e96a1a59d4f21a43c0df339e54b01789cb8cc6 + languageName: node + linkType: hard + "tar-stream@npm:~2.2.0": version: 2.2.0 resolution: "tar-stream@npm:2.2.0" @@ -17971,6 +18291,15 @@ __metadata: languageName: node linkType: hard +"text-decoder@npm:^1.1.0": + version: 1.2.3 + resolution: "text-decoder@npm:1.2.3" + dependencies: + b4a: ^1.6.4 + checksum: d7642a61f9d72330eac52ff6b6e8d34dea03ebbb1e82749a8734e7892e246cf262ed70730d20c4351c5dc5334297b9cc6c0b6a8725a204a63a197d7728bb35e5 + languageName: node + linkType: hard + "text-extensions@npm:^1.0.0": version: 1.9.0 resolution: "text-extensions@npm:1.9.0" @@ -17994,7 +18323,16 @@ __metadata: languageName: node linkType: hard -"through2@npm:^2.0.0": +"thread-stream@npm:^2.0.0": + version: 2.7.0 + resolution: "thread-stream@npm:2.7.0" + dependencies: + real-require: ^0.2.0 + checksum: 75ab019cda628344c7779e5f5a88f7759764efd29d320327ad2e6c2622778b5f1c43a3966d76a9ee5744086d61c680b413548f5521030f9e9055487684436165 + languageName: node + linkType: hard + +"through2@npm:^2.0.0, through2@npm:^2.0.3": version: 2.0.5 resolution: "through2@npm:2.0.5" dependencies: @@ -18025,6 +18363,24 @@ __metadata: languageName: node linkType: hard +"tldts-core@npm:^6.1.84": + version: 6.1.84 + resolution: "tldts-core@npm:6.1.84" + checksum: 8828ae497afc717042f2e0ec1b8ca9f60887b53331978d16b044bdfc89016e1f4a17cbecbcfc4a853240a08dd9b770144dc40dcdab366a5addac5530275a6b01 + languageName: node + linkType: hard + +"tldts@npm:^6.1.32": + version: 6.1.84 + resolution: "tldts@npm:6.1.84" + dependencies: + tldts-core: ^6.1.84 + bin: + tldts: bin/cli.js + checksum: 6861c92000e4ccd725564a531bb60c9e673e0191fb26f43467f1c5ea1fb75344f9b8475050a73d78b6e855485cac12d5fceb7edf48c9b309e48ee5c2e6b1c41e + languageName: node + linkType: hard + "tmp@npm:^0.0.33": version: 0.0.33 resolution: "tmp@npm:0.0.33" @@ -18079,13 +18435,6 @@ __metadata: languageName: node linkType: hard -"toposort@npm:^2.0.2": - version: 2.0.2 - resolution: "toposort@npm:2.0.2" - checksum: d64c74b570391c9432873f48e231b439ee56bc49f7cb9780b505cfdf5cb832f808d0bae072515d93834dd6bceca5bb34448b5b4b408335e4d4716eaf68195dcb - languageName: node - linkType: hard - "totalist@npm:^3.0.0": version: 3.0.1 resolution: "totalist@npm:3.0.1" @@ -18105,13 +18454,12 @@ __metadata: languageName: node linkType: hard -"tough-cookie@npm:~2.5.0": - version: 2.5.0 - resolution: "tough-cookie@npm:2.5.0" +"tough-cookie@npm:^5.0.0": + version: 5.1.2 + resolution: "tough-cookie@npm:5.1.2" dependencies: - psl: ^1.1.28 - punycode: ^2.1.1 - checksum: 16a8cd090224dd176eee23837cbe7573ca0fa297d7e468ab5e1c02d49a4e9a97bb05fef11320605eac516f91d54c57838a25864e8680e27b069a5231d8264977 + tldts: ^6.1.32 + checksum: 31c626a77ac247b881665851035773afe7eeac283b91ed8da3c297ed55480ea1dd1ba3f5bb1f94b653ac2d5b184f17ce4bf1cf6ca7c58ee7c321b4323c4f8024 languageName: node linkType: hard @@ -18219,13 +18567,6 @@ __metadata: languageName: node linkType: hard -"tsscmp@npm:1.0.6": - version: 1.0.6 - resolution: "tsscmp@npm:1.0.6" - checksum: 1512384def36bccc9125cabbd4c3b0e68608d7ee08127ceaa0b84a71797263f1a01c7f82fa69be8a3bd3c1396e2965d2f7b52d581d3a5eeaf3967fbc52e3b3bf - languageName: node - linkType: hard - "tsutils@npm:^3.21.0": version: 3.21.0 resolution: "tsutils@npm:3.21.0" @@ -18617,15 +18958,6 @@ __metadata: languageName: node linkType: hard -"uuid@npm:^3.3.2": - version: 3.4.0 - resolution: "uuid@npm:3.4.0" - bin: - uuid: ./bin/uuid - checksum: 58de2feed61c59060b40f8203c0e4ed7fd6f99d42534a499f1741218a1dd0c129f4aa1de797bcf822c8ea5da7e4137aa3673431a96dae729047f7aca7b27866f - languageName: node - linkType: hard - "uuid@npm:^8.3.2": version: 8.3.2 resolution: "uuid@npm:8.3.2" @@ -18730,17 +19062,10 @@ __metadata: languageName: node linkType: hard -"validator@npm:13.11.0": - version: 13.11.0 - resolution: "validator@npm:13.11.0" - checksum: d1e0c27022681420756da25bc03eb08d5f0c66fb008f8ff02ebc95812b77c6be6e03d3bd05cf80ca702e23eeb73dadd66b4b3683173ea2a0bc7cc72820bee131 - languageName: node - linkType: hard - -"validator@npm:13.9.0": - version: 13.9.0 - resolution: "validator@npm:13.9.0" - checksum: e2c936f041f61faa42bafd17c6faddf939498666cd82e88d733621c286893730b008959f4cb12ab3e236148a4f3805c30b85e3dcf5e0efd8b0cbcd36c02bfc0c +"validator@npm:13.12.0": + version: 13.12.0 + resolution: "validator@npm:13.12.0" + checksum: fb8f070724770b1449ea1a968605823fdb112dbd10507b2802f8841cda3e7b5c376c40f18c84e6a7b59de320a06177e471554101a85f1fa8a70bac1a84e48adf languageName: node linkType: hard @@ -19212,60 +19537,61 @@ __metadata: languageName: node linkType: hard -"verdaccio-audit@npm:12.0.0-next.2": - version: 12.0.0-next.2 - resolution: "verdaccio-audit@npm:12.0.0-next.2" +"verdaccio-audit@npm:13.0.0-next-8.1": + version: 13.0.0-next-8.1 + resolution: "verdaccio-audit@npm:13.0.0-next-8.1" dependencies: - "@verdaccio/config": 7.0.0-next.2 - "@verdaccio/core": 7.0.0-next.2 - express: 4.18.2 + "@verdaccio/config": 8.0.0-next-8.1 + "@verdaccio/core": 8.0.0-next-8.1 + express: 4.21.0 https-proxy-agent: 5.0.1 node-fetch: cjs - checksum: 5aa8e467e4b8ac17c0d849089b1ea81a988bdff7ef87e269abeed82a5b66cefcab29659683b20bff226926aa465dd59a3cf5b4fe79639ba1234906156f9139a5 + checksum: 930fe9bfc782601664504688547444d9de167046ce8d0d24d113de4881d3b1507cd5293a8edb5285880ae796ea94c6f7d50e09148d519e8700df057dcf41d1d9 languageName: node linkType: hard -"verdaccio-htpasswd@npm:12.0.0-next.2": - version: 12.0.0-next.2 - resolution: "verdaccio-htpasswd@npm:12.0.0-next.2" +"verdaccio-htpasswd@npm:13.0.0-next-8.1": + version: 13.0.0-next-8.1 + resolution: "verdaccio-htpasswd@npm:13.0.0-next-8.1" dependencies: - "@verdaccio/core": 7.0.0-next.2 - "@verdaccio/file-locking": 12.0.0-next.0 + "@verdaccio/core": 8.0.0-next-8.1 + "@verdaccio/file-locking": 13.0.0-next-8.0 apache-md5: 1.1.8 bcryptjs: 2.4.3 - core-js: 3.30.2 - debug: 4.3.4 + core-js: 3.37.1 + debug: 4.3.7 http-errors: 2.0.0 unix-crypt-td-js: 1.1.4 - checksum: 6b7f818161496151550b7369a8af59eef0f3595739fdbd35ca6eb5f15396ddfa8b36809e44cda6398a279bbe72a808765bde15bc9bb2c2c250f78f6929a70f02 + checksum: d637d5ba6af5b74a2cf477235677b6cb6fdaf51aed1f96bb5b5b3faa0780055ac180c6225e4783f75e16848166f9223fb71fbe6606e84b31d96392356c94d0a9 languageName: node linkType: hard -"verdaccio@npm:^5.25.0": - version: 5.26.3 - resolution: "verdaccio@npm:5.26.3" +"verdaccio@npm:^5.33.0": + version: 5.33.0 + resolution: "verdaccio@npm:5.33.0" dependencies: - "@verdaccio/config": 7.0.0-next.2 - "@verdaccio/core": 7.0.0-next.2 - "@verdaccio/local-storage": 10.3.3 - "@verdaccio/logger-7": 7.0.0-next.2 - "@verdaccio/middleware": 7.0.0-next.2 - "@verdaccio/search": 7.0.0-next.1 - "@verdaccio/signature": 7.0.0-next.0 + "@cypress/request": 3.0.6 + "@verdaccio/auth": 8.0.0-next-8.1 + "@verdaccio/config": 8.0.0-next-8.1 + "@verdaccio/core": 8.0.0-next-8.1 + "@verdaccio/local-storage-legacy": 11.0.2 + "@verdaccio/logger-7": 8.0.0-next-8.1 + "@verdaccio/middleware": 8.0.0-next-8.1 + "@verdaccio/search-indexer": 8.0.0-next-8.0 + "@verdaccio/signature": 8.0.0-next-8.0 "@verdaccio/streams": 10.2.1 - "@verdaccio/tarball": 12.0.0-next.2 - "@verdaccio/ui-theme": 7.0.0-next.2 - "@verdaccio/url": 12.0.0-next.2 - "@verdaccio/utils": 7.0.0-next.2 + "@verdaccio/tarball": 13.0.0-next-8.1 + "@verdaccio/ui-theme": 8.0.0-next-8.1 + "@verdaccio/url": 13.0.0-next-8.1 + "@verdaccio/utils": 7.0.1-next-8.1 JSONStream: 1.3.5 - async: 3.2.4 - clipanion: 3.2.1 - compression: 1.7.4 - cookies: 0.8.0 + async: 3.2.6 + clipanion: 4.0.0-rc.4 + compression: 1.7.5 cors: 2.8.5 - debug: ^4.3.4 - envinfo: 7.10.0 - express: 4.18.2 + debug: ^4.3.7 + envinfo: 7.14.0 + express: 4.21.1 express-rate-limit: 5.5.1 fast-safe-stringify: 2.1.1 handlebars: 4.7.8 @@ -19278,14 +19604,13 @@ __metadata: mkdirp: 1.0.4 mv: 2.1.1 pkginfo: 0.4.1 - request: 2.88.2 - semver: 7.5.4 - validator: 13.11.0 - verdaccio-audit: 12.0.0-next.2 - verdaccio-htpasswd: 12.0.0-next.2 + semver: 7.6.3 + validator: 13.12.0 + verdaccio-audit: 13.0.0-next-8.1 + verdaccio-htpasswd: 13.0.0-next-8.1 bin: verdaccio: bin/verdaccio - checksum: 474d7efc1b0ae696663f80b20f2f71e7f39d9717d6ec1d2730ed0582fdd4457e7794eb20e97b55614da232b211676908009211e42eace84123e8ada67f007710 + checksum: 0474cccb9e788f356468fe7227f3e2faa7cb594b1a30785e1e7516ef7c8486216abd22208ab15427ab7b274f6adee4ed1cbde064bf29d631d27693f0db67d35e languageName: node linkType: hard @@ -20011,18 +20336,3 @@ __metadata: checksum: f77b3d8d00310def622123df93d4ee654fc6a0096182af8bd60679ddcdfb3474c56c6c7190817c84a2785648cdee9d721c0154eb45698c62176c322fb46fc700 languageName: node linkType: hard - -"yup@npm:0.32.11": - version: 0.32.11 - resolution: "yup@npm:0.32.11" - dependencies: - "@babel/runtime": ^7.15.4 - "@types/lodash": ^4.14.175 - lodash: ^4.17.21 - lodash-es: ^4.17.21 - nanoclone: ^0.2.1 - property-expr: ^2.0.4 - toposort: ^2.0.2 - checksum: 43a16786b47cc910fed4891cebdd89df6d6e31702e9462e8f969c73eac88551ce750732608012201ea6b93802c8847cb0aa27b5d57370640f4ecf30f9f97d4b0 - languageName: node - linkType: hard From 9678c1831aaa90e8d1e3418e404a1fdd94b7c9ef Mon Sep 17 00:00:00 2001 From: jtpio Date: Fri, 14 Mar 2025 08:58:41 +0000 Subject: [PATCH 004/143] Publish 7.4.0b1 SHA256 hashes: jupyter-notebook-application-7.4.0-beta.1.tgz: b9c20169ece28959493b665131be2d45287c12c2f9ebd6d0cc999f14e11bdf41 jupyter-notebook-application-extension-7.4.0-beta.1.tgz: bf5a93d37543ce580ffdfcfcc013fe3870c147cf5ed8bc338451dcf484a2a857 jupyter-notebook-console-extension-7.4.0-beta.1.tgz: 60ad43d20a5710b420542f5a38c4142f02aa3aee15965db661fb60c2843e86e1 jupyter-notebook-docmanager-extension-7.4.0-beta.1.tgz: 36e64e639e8a87e76b30203fb752996ce5bd4eaef32775c8e76a7e1dc7a28a61 jupyter-notebook-documentsearch-extension-7.4.0-beta.1.tgz: 484b0a6ee82d3072c481279549c9e6d1a1ab896824db88fb51fea0ab4c888a17 jupyter-notebook-help-extension-7.4.0-beta.1.tgz: 6331c8a74ab75a3eab3847f4cab827ce92bdb18276e95178fcbab294dc2714a5 jupyter-notebook-lab-extension-7.4.0-beta.1.tgz: c397dc8bf1c800a947b61f4c20797d41b35e84a75912c6c0ebdd4ccd2083601c jupyter-notebook-notebook-extension-7.4.0-beta.1.tgz: f1a51e46fad8d61c1e1f54fd1cc892c31e9951d93420b560d0335203c1ec400a jupyter-notebook-terminal-extension-7.4.0-beta.1.tgz: 5a93c1109c9fbbf9af95622ce05c9ee49a9cf1100816337d2e0d8e14c838f3c8 jupyter-notebook-tree-7.4.0-beta.1.tgz: 1070e2422250f792dec3525ca787a62af6d61b7ef43dc601c40aaa79c815b21a jupyter-notebook-tree-extension-7.4.0-beta.1.tgz: 78c6a6cd5283e27c939b370d21f5dfaf617f4523605be186f8ccddd8863381ba jupyter-notebook-ui-components-7.4.0-beta.1.tgz: 8da49625a218f86b2eaecf0a00a119dc8faa33d293b600cf2ba128488336c101 notebook-7.4.0b1-py3-none-any.whl: b0d499cc4bfb11591a8022bea5382616b3ec24e8f91d833952234cc8b73a22f7 notebook-7.4.0b1.tar.gz: 946a3e514d7faacebeeaba156138a22c2adbc1047aa2943dd6740d2ad8b8c6b4 --- CHANGELOG.md | 25 ++++- app/package.json | 46 ++++----- buildutils/package.json | 2 +- notebook/_version.py | 2 +- packages/_metapackage/package.json | 26 ++--- packages/application-extension/package.json | 6 +- packages/application/package.json | 2 +- packages/console-extension/package.json | 4 +- packages/docmanager-extension/package.json | 4 +- .../documentsearch-extension/package.json | 4 +- packages/help-extension/package.json | 4 +- packages/lab-extension/package.json | 4 +- packages/notebook-extension/package.json | 4 +- packages/terminal-extension/package.json | 4 +- packages/tree-extension/package.json | 6 +- packages/tree/package.json | 4 +- packages/ui-components/package.json | 2 +- yarn.lock | 94 +++++++++---------- 18 files changed, 132 insertions(+), 111 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc47685c5c..f85f6ac3e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -75,6 +75,29 @@ You can open JupyterLab by clicking on `View > Open JupyterLab`. +## 7.4.0b1 + +([Full Changelog](https://github.com/jupyter/notebook/compare/@jupyter-notebook/application-extension@7.4.0-beta.0...6d06d97302bd1bb77e25864214ade2277f2e50d4)) + +### Enhancements made + +- Update to JupyterLab `v4.4.0b1` [#7607](https://github.com/jupyter/notebook/pull/7607) ([@jtpio](https://github.com/jtpio)) + +### Maintenance and upkeep improvements + +- Update `@babel` dependencies [#7605](https://github.com/jupyter/notebook/pull/7605) ([@jtpio](https://github.com/jtpio)) +- Add devcontainer support, backed by pixi [#7602](https://github.com/jupyter/notebook/pull/7602) ([@jtpio](https://github.com/jtpio)) +- Manual dependabot bumps [#7599](https://github.com/jupyter/notebook/pull/7599) ([@jtpio](https://github.com/jtpio)) +- Bump vega-selections from 5.4.1 to 5.5.0 in /ui-tests [#7592](https://github.com/jupyter/notebook/pull/7592) ([@dependabot](https://github.com/dependabot)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyter/notebook/graphs/contributors?from=2025-02-20&to=2025-03-14&type=c)) + +[@dependabot](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Adependabot+updated%3A2025-02-20..2025-03-14&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2025-02-20..2025-03-14&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2025-02-20..2025-03-14&type=Issues) + + + ## 7.4.0b0 ([Full Changelog](https://github.com/jupyter/notebook/compare/@jupyter-notebook/application-extension@7.4.0-alpha.3...48243197bbd004555008cd7cfa14c907147aceca)) @@ -89,8 +112,6 @@ You can open JupyterLab by clicking on `View > Open JupyterLab`. [@github-actions](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2025-02-05..2025-02-20&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2025-02-05..2025-02-20&type=Issues) - - ## 7.4.0a3 ([Full Changelog](https://github.com/jupyter/notebook/compare/@jupyter-notebook/application-extension@7.4.0-alpha.2...48e52c759ffec0cea47dfef59f48d8e9fa6112d3)) diff --git a/app/package.json b/app/package.json index d43b221ad3..f355ea99df 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/app", - "version": "7.4.0-beta.0", + "version": "7.4.0-beta.1", "private": true, "scripts": { "build": "webpack", @@ -12,17 +12,17 @@ "resolutions": { "@codemirror/state": "~6.5.0", "@codemirror/view": "~6.36.1", - "@jupyter-notebook/application": "~7.4.0-beta.0", - "@jupyter-notebook/application-extension": "~7.4.0-beta.0", - "@jupyter-notebook/console-extension": "~7.4.0-beta.0", - "@jupyter-notebook/docmanager-extension": "~7.4.0-beta.0", - "@jupyter-notebook/documentsearch-extension": "~7.4.0-beta.0", - "@jupyter-notebook/help-extension": "~7.4.0-beta.0", - "@jupyter-notebook/notebook-extension": "~7.4.0-beta.0", - "@jupyter-notebook/terminal-extension": "~7.4.0-beta.0", - "@jupyter-notebook/tree": "~7.4.0-beta.0", - "@jupyter-notebook/tree-extension": "~7.4.0-beta.0", - "@jupyter-notebook/ui-components": "~7.4.0-beta.0", + "@jupyter-notebook/application": "~7.4.0-beta.1", + "@jupyter-notebook/application-extension": "~7.4.0-beta.1", + "@jupyter-notebook/console-extension": "~7.4.0-beta.1", + "@jupyter-notebook/docmanager-extension": "~7.4.0-beta.1", + "@jupyter-notebook/documentsearch-extension": "~7.4.0-beta.1", + "@jupyter-notebook/help-extension": "~7.4.0-beta.1", + "@jupyter-notebook/notebook-extension": "~7.4.0-beta.1", + "@jupyter-notebook/terminal-extension": "~7.4.0-beta.1", + "@jupyter-notebook/tree": "~7.4.0-beta.1", + "@jupyter-notebook/tree-extension": "~7.4.0-beta.1", + "@jupyter-notebook/ui-components": "~7.4.0-beta.1", "@jupyter/react-components": "~0.16.7", "@jupyter/web-components": "~0.16.7", "@jupyter/ydoc": "~3.0.0", @@ -123,17 +123,17 @@ "yjs": "~13.6.8" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.0", - "@jupyter-notebook/application-extension": "^7.4.0-beta.0", - "@jupyter-notebook/console-extension": "^7.4.0-beta.0", - "@jupyter-notebook/docmanager-extension": "^7.4.0-beta.0", - "@jupyter-notebook/documentsearch-extension": "^7.4.0-beta.0", - "@jupyter-notebook/help-extension": "^7.4.0-beta.0", - "@jupyter-notebook/notebook-extension": "^7.4.0-beta.0", - "@jupyter-notebook/terminal-extension": "^7.4.0-beta.0", - "@jupyter-notebook/tree": "^7.4.0-beta.0", - "@jupyter-notebook/tree-extension": "^7.4.0-beta.0", - "@jupyter-notebook/ui-components": "^7.4.0-beta.0", + "@jupyter-notebook/application": "^7.4.0-beta.1", + "@jupyter-notebook/application-extension": "^7.4.0-beta.1", + "@jupyter-notebook/console-extension": "^7.4.0-beta.1", + "@jupyter-notebook/docmanager-extension": "^7.4.0-beta.1", + "@jupyter-notebook/documentsearch-extension": "^7.4.0-beta.1", + "@jupyter-notebook/help-extension": "^7.4.0-beta.1", + "@jupyter-notebook/notebook-extension": "^7.4.0-beta.1", + "@jupyter-notebook/terminal-extension": "^7.4.0-beta.1", + "@jupyter-notebook/tree": "^7.4.0-beta.1", + "@jupyter-notebook/tree-extension": "^7.4.0-beta.1", + "@jupyter-notebook/ui-components": "^7.4.0-beta.1", "@jupyterlab/application-extension": "~4.4.0-beta.1", "@jupyterlab/apputils-extension": "~4.4.0-beta.1", "@jupyterlab/attachments": "~4.4.0-beta.1", diff --git a/buildutils/package.json b/buildutils/package.json index 1a3572a2f0..a37e7c877e 100644 --- a/buildutils/package.json +++ b/buildutils/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/buildutils", - "version": "7.4.0-beta.0", + "version": "7.4.0-beta.1", "private": true, "description": "Jupyter Notebook - Build Utilities", "homepage": "https://github.com/jupyter/notebook", diff --git a/notebook/_version.py b/notebook/_version.py index 2fc788278a..e2edb3bdb7 100644 --- a/notebook/_version.py +++ b/notebook/_version.py @@ -6,7 +6,7 @@ from collections import namedtuple # Use "hatch version xx.yy.zz" to handle version changes -__version__ = "7.4.0b0" +__version__ = "7.4.0b1" # PEP440 version parser _version_regex = re.compile( diff --git a/packages/_metapackage/package.json b/packages/_metapackage/package.json index f5ce1e9ce6..960d536a0b 100644 --- a/packages/_metapackage/package.json +++ b/packages/_metapackage/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/metapackage", - "version": "7.4.0-beta.0", + "version": "7.4.0-beta.1", "private": true, "description": "Jupyter Notebook - Metapackage", "homepage": "https://github.com/jupyter/notebook", @@ -20,18 +20,18 @@ "watch": "tsc -b -w --preserveWatchOutput" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.0", - "@jupyter-notebook/application-extension": "^7.4.0-beta.0", - "@jupyter-notebook/console-extension": "^7.4.0-beta.0", - "@jupyter-notebook/docmanager-extension": "^7.4.0-beta.0", - "@jupyter-notebook/documentsearch-extension": "^7.4.0-beta.0", - "@jupyter-notebook/help-extension": "^7.4.0-beta.0", - "@jupyter-notebook/lab-extension": "^7.4.0-beta.0", - "@jupyter-notebook/notebook-extension": "^7.4.0-beta.0", - "@jupyter-notebook/terminal-extension": "^7.4.0-beta.0", - "@jupyter-notebook/tree": "^7.4.0-beta.0", - "@jupyter-notebook/tree-extension": "^7.4.0-beta.0", - "@jupyter-notebook/ui-components": "^7.4.0-beta.0" + "@jupyter-notebook/application": "^7.4.0-beta.1", + "@jupyter-notebook/application-extension": "^7.4.0-beta.1", + "@jupyter-notebook/console-extension": "^7.4.0-beta.1", + "@jupyter-notebook/docmanager-extension": "^7.4.0-beta.1", + "@jupyter-notebook/documentsearch-extension": "^7.4.0-beta.1", + "@jupyter-notebook/help-extension": "^7.4.0-beta.1", + "@jupyter-notebook/lab-extension": "^7.4.0-beta.1", + "@jupyter-notebook/notebook-extension": "^7.4.0-beta.1", + "@jupyter-notebook/terminal-extension": "^7.4.0-beta.1", + "@jupyter-notebook/tree": "^7.4.0-beta.1", + "@jupyter-notebook/tree-extension": "^7.4.0-beta.1", + "@jupyter-notebook/ui-components": "^7.4.0-beta.1" }, "devDependencies": { "typescript": "~5.5.4" diff --git a/packages/application-extension/package.json b/packages/application-extension/package.json index a3daa99aae..07f094525b 100644 --- a/packages/application-extension/package.json +++ b/packages/application-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/application-extension", - "version": "7.4.0-beta.0", + "version": "7.4.0-beta.1", "description": "Jupyter Notebook - Application Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,8 +38,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.0", - "@jupyter-notebook/ui-components": "^7.4.0-beta.0", + "@jupyter-notebook/application": "^7.4.0-beta.1", + "@jupyter-notebook/ui-components": "^7.4.0-beta.1", "@jupyterlab/application": "~4.4.0-beta.1", "@jupyterlab/apputils": "~4.5.0-beta.1", "@jupyterlab/codeeditor": "~4.4.0-beta.1", diff --git a/packages/application/package.json b/packages/application/package.json index 0e2185779a..efb7ca18ec 100644 --- a/packages/application/package.json +++ b/packages/application/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/application", - "version": "7.4.0-beta.0", + "version": "7.4.0-beta.1", "description": "Jupyter Notebook - Application", "homepage": "https://github.com/jupyter/notebook", "bugs": { diff --git a/packages/console-extension/package.json b/packages/console-extension/package.json index 35d91bc094..2e3cacc306 100644 --- a/packages/console-extension/package.json +++ b/packages/console-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/console-extension", - "version": "7.4.0-beta.0", + "version": "7.4.0-beta.1", "description": "Jupyter Notebook - Console Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.0", + "@jupyter-notebook/application": "^7.4.0-beta.1", "@jupyterlab/application": "~4.4.0-beta.1", "@jupyterlab/console": "~4.4.0-beta.1", "@jupyterlab/coreutils": "~6.4.0-beta.1", diff --git a/packages/docmanager-extension/package.json b/packages/docmanager-extension/package.json index 5b6bc77e61..09d53ab689 100644 --- a/packages/docmanager-extension/package.json +++ b/packages/docmanager-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/docmanager-extension", - "version": "7.4.0-beta.0", + "version": "7.4.0-beta.1", "description": "Jupyter Notebook - Document Manager Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.0", + "@jupyter-notebook/application": "^7.4.0-beta.1", "@jupyterlab/application": "~4.4.0-beta.1", "@jupyterlab/coreutils": "~6.4.0-beta.1", "@jupyterlab/docmanager": "~4.4.0-beta.1", diff --git a/packages/documentsearch-extension/package.json b/packages/documentsearch-extension/package.json index e1a1e7f357..0ebccb323f 100644 --- a/packages/documentsearch-extension/package.json +++ b/packages/documentsearch-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/documentsearch-extension", - "version": "7.4.0-beta.0", + "version": "7.4.0-beta.1", "description": "Jupyter Notebook - Document Search Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.0", + "@jupyter-notebook/application": "^7.4.0-beta.1", "@jupyterlab/application": "~4.4.0-beta.1", "@jupyterlab/documentsearch": "~4.4.0-beta.1", "@lumino/widgets": "^2.5.0" diff --git a/packages/help-extension/package.json b/packages/help-extension/package.json index 8708d6773f..72688423ce 100644 --- a/packages/help-extension/package.json +++ b/packages/help-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/help-extension", - "version": "7.4.0-beta.0", + "version": "7.4.0-beta.1", "description": "Jupyter Notebook - Help Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/ui-components": "^7.4.0-beta.0", + "@jupyter-notebook/ui-components": "^7.4.0-beta.1", "@jupyterlab/application": "~4.4.0-beta.1", "@jupyterlab/apputils": "~4.5.0-beta.1", "@jupyterlab/mainmenu": "~4.4.0-beta.1", diff --git a/packages/lab-extension/package.json b/packages/lab-extension/package.json index 636708bb36..998f6e1d5f 100644 --- a/packages/lab-extension/package.json +++ b/packages/lab-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/lab-extension", - "version": "7.4.0-beta.0", + "version": "7.4.0-beta.1", "description": "Jupyter Notebook - Lab Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -43,7 +43,7 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.0", + "@jupyter-notebook/application": "^7.4.0-beta.1", "@jupyterlab/application": "~4.4.0-beta.1", "@jupyterlab/apputils": "~4.5.0-beta.1", "@jupyterlab/coreutils": "~6.4.0-beta.1", diff --git a/packages/notebook-extension/package.json b/packages/notebook-extension/package.json index ef45723782..8ae1ad63b7 100644 --- a/packages/notebook-extension/package.json +++ b/packages/notebook-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/notebook-extension", - "version": "7.4.0-beta.0", + "version": "7.4.0-beta.1", "description": "Jupyter Notebook - Notebook Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.0", + "@jupyter-notebook/application": "^7.4.0-beta.1", "@jupyterlab/application": "~4.4.0-beta.1", "@jupyterlab/apputils": "~4.5.0-beta.1", "@jupyterlab/cells": "~4.4.0-beta.1", diff --git a/packages/terminal-extension/package.json b/packages/terminal-extension/package.json index cf4fea9f93..55bd88f008 100644 --- a/packages/terminal-extension/package.json +++ b/packages/terminal-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/terminal-extension", - "version": "7.4.0-beta.0", + "version": "7.4.0-beta.1", "description": "Jupyter Notebook - Terminal Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.0", + "@jupyter-notebook/application": "^7.4.0-beta.1", "@jupyterlab/application": "~4.4.0-beta.1", "@jupyterlab/coreutils": "~6.4.0-beta.1", "@jupyterlab/terminal": "~4.4.0-beta.1", diff --git a/packages/tree-extension/package.json b/packages/tree-extension/package.json index ee7cdde602..f97367d19f 100644 --- a/packages/tree-extension/package.json +++ b/packages/tree-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/tree-extension", - "version": "7.4.0-beta.0", + "version": "7.4.0-beta.1", "description": "Jupyter Notebook - Tree Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,8 +38,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.0", - "@jupyter-notebook/tree": "^7.4.0-beta.0", + "@jupyter-notebook/application": "^7.4.0-beta.1", + "@jupyter-notebook/tree": "^7.4.0-beta.1", "@jupyterlab/application": "~4.4.0-beta.1", "@jupyterlab/apputils": "~4.5.0-beta.1", "@jupyterlab/coreutils": "~6.4.0-beta.1", diff --git a/packages/tree/package.json b/packages/tree/package.json index afe073e2e3..dc075f1fd9 100644 --- a/packages/tree/package.json +++ b/packages/tree/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/tree", - "version": "7.4.0-beta.0", + "version": "7.4.0-beta.1", "description": "Jupyter Notebook - Tree", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.0", + "@jupyter-notebook/application": "^7.4.0-beta.1", "@jupyterlab/application": "~4.4.0-beta.1", "@jupyterlab/apputils": "~4.5.0-beta.1", "@jupyterlab/coreutils": "~6.4.0-beta.1", diff --git a/packages/ui-components/package.json b/packages/ui-components/package.json index 09ef9bcb2d..bddb8ebf7b 100644 --- a/packages/ui-components/package.json +++ b/packages/ui-components/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/ui-components", - "version": "7.4.0-beta.0", + "version": "7.4.0-beta.1", "description": "Jupyter Notebook - UI components", "homepage": "https://github.com/jupyter/notebook", "bugs": { diff --git a/yarn.lock b/yarn.lock index 79a65cc214..a5bfa345af 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2131,17 +2131,17 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyter-notebook/app@workspace:app" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.0 - "@jupyter-notebook/application-extension": ^7.4.0-beta.0 - "@jupyter-notebook/console-extension": ^7.4.0-beta.0 - "@jupyter-notebook/docmanager-extension": ^7.4.0-beta.0 - "@jupyter-notebook/documentsearch-extension": ^7.4.0-beta.0 - "@jupyter-notebook/help-extension": ^7.4.0-beta.0 - "@jupyter-notebook/notebook-extension": ^7.4.0-beta.0 - "@jupyter-notebook/terminal-extension": ^7.4.0-beta.0 - "@jupyter-notebook/tree": ^7.4.0-beta.0 - "@jupyter-notebook/tree-extension": ^7.4.0-beta.0 - "@jupyter-notebook/ui-components": ^7.4.0-beta.0 + "@jupyter-notebook/application": ^7.4.0-beta.1 + "@jupyter-notebook/application-extension": ^7.4.0-beta.1 + "@jupyter-notebook/console-extension": ^7.4.0-beta.1 + "@jupyter-notebook/docmanager-extension": ^7.4.0-beta.1 + "@jupyter-notebook/documentsearch-extension": ^7.4.0-beta.1 + "@jupyter-notebook/help-extension": ^7.4.0-beta.1 + "@jupyter-notebook/notebook-extension": ^7.4.0-beta.1 + "@jupyter-notebook/terminal-extension": ^7.4.0-beta.1 + "@jupyter-notebook/tree": ^7.4.0-beta.1 + "@jupyter-notebook/tree-extension": ^7.4.0-beta.1 + "@jupyter-notebook/ui-components": ^7.4.0-beta.1 "@jupyterlab/application-extension": ~4.4.0-beta.1 "@jupyterlab/apputils-extension": ~4.4.0-beta.1 "@jupyterlab/attachments": ~4.4.0-beta.1 @@ -2213,12 +2213,12 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/application-extension@^7.4.0-beta.0, @jupyter-notebook/application-extension@workspace:packages/application-extension": +"@jupyter-notebook/application-extension@^7.4.0-beta.1, @jupyter-notebook/application-extension@workspace:packages/application-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/application-extension@workspace:packages/application-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.0 - "@jupyter-notebook/ui-components": ^7.4.0-beta.0 + "@jupyter-notebook/application": ^7.4.0-beta.1 + "@jupyter-notebook/ui-components": ^7.4.0-beta.1 "@jupyterlab/application": ~4.4.0-beta.1 "@jupyterlab/apputils": ~4.5.0-beta.1 "@jupyterlab/codeeditor": ~4.4.0-beta.1 @@ -2238,7 +2238,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/application@^7.4.0-beta.0, @jupyter-notebook/application@workspace:packages/application": +"@jupyter-notebook/application@^7.4.0-beta.1, @jupyter-notebook/application@workspace:packages/application": version: 0.0.0-use.local resolution: "@jupyter-notebook/application@workspace:packages/application" dependencies: @@ -2280,11 +2280,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/console-extension@^7.4.0-beta.0, @jupyter-notebook/console-extension@workspace:packages/console-extension": +"@jupyter-notebook/console-extension@^7.4.0-beta.1, @jupyter-notebook/console-extension@workspace:packages/console-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/console-extension@workspace:packages/console-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.0 + "@jupyter-notebook/application": ^7.4.0-beta.1 "@jupyterlab/application": ~4.4.0-beta.1 "@jupyterlab/console": ~4.4.0-beta.1 "@jupyterlab/coreutils": ~6.4.0-beta.1 @@ -2294,11 +2294,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/docmanager-extension@^7.4.0-beta.0, @jupyter-notebook/docmanager-extension@workspace:packages/docmanager-extension": +"@jupyter-notebook/docmanager-extension@^7.4.0-beta.1, @jupyter-notebook/docmanager-extension@workspace:packages/docmanager-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/docmanager-extension@workspace:packages/docmanager-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.0 + "@jupyter-notebook/application": ^7.4.0-beta.1 "@jupyterlab/application": ~4.4.0-beta.1 "@jupyterlab/coreutils": ~6.4.0-beta.1 "@jupyterlab/docmanager": ~4.4.0-beta.1 @@ -2311,11 +2311,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/documentsearch-extension@^7.4.0-beta.0, @jupyter-notebook/documentsearch-extension@workspace:packages/documentsearch-extension": +"@jupyter-notebook/documentsearch-extension@^7.4.0-beta.1, @jupyter-notebook/documentsearch-extension@workspace:packages/documentsearch-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/documentsearch-extension@workspace:packages/documentsearch-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.0 + "@jupyter-notebook/application": ^7.4.0-beta.1 "@jupyterlab/application": ~4.4.0-beta.1 "@jupyterlab/documentsearch": ~4.4.0-beta.1 "@lumino/widgets": ^2.5.0 @@ -2324,11 +2324,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/help-extension@^7.4.0-beta.0, @jupyter-notebook/help-extension@workspace:packages/help-extension": +"@jupyter-notebook/help-extension@^7.4.0-beta.1, @jupyter-notebook/help-extension@workspace:packages/help-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/help-extension@workspace:packages/help-extension" dependencies: - "@jupyter-notebook/ui-components": ^7.4.0-beta.0 + "@jupyter-notebook/ui-components": ^7.4.0-beta.1 "@jupyterlab/application": ~4.4.0-beta.1 "@jupyterlab/apputils": ~4.5.0-beta.1 "@jupyterlab/mainmenu": ~4.4.0-beta.1 @@ -2340,11 +2340,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/lab-extension@^7.4.0-beta.0, @jupyter-notebook/lab-extension@workspace:packages/lab-extension": +"@jupyter-notebook/lab-extension@^7.4.0-beta.1, @jupyter-notebook/lab-extension@workspace:packages/lab-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/lab-extension@workspace:packages/lab-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.0 + "@jupyter-notebook/application": ^7.4.0-beta.1 "@jupyterlab/application": ~4.4.0-beta.1 "@jupyterlab/apputils": ~4.5.0-beta.1 "@jupyterlab/builder": ~4.4.0-beta.1 @@ -2364,27 +2364,27 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyter-notebook/metapackage@workspace:packages/_metapackage" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.0 - "@jupyter-notebook/application-extension": ^7.4.0-beta.0 - "@jupyter-notebook/console-extension": ^7.4.0-beta.0 - "@jupyter-notebook/docmanager-extension": ^7.4.0-beta.0 - "@jupyter-notebook/documentsearch-extension": ^7.4.0-beta.0 - "@jupyter-notebook/help-extension": ^7.4.0-beta.0 - "@jupyter-notebook/lab-extension": ^7.4.0-beta.0 - "@jupyter-notebook/notebook-extension": ^7.4.0-beta.0 - "@jupyter-notebook/terminal-extension": ^7.4.0-beta.0 - "@jupyter-notebook/tree": ^7.4.0-beta.0 - "@jupyter-notebook/tree-extension": ^7.4.0-beta.0 - "@jupyter-notebook/ui-components": ^7.4.0-beta.0 + "@jupyter-notebook/application": ^7.4.0-beta.1 + "@jupyter-notebook/application-extension": ^7.4.0-beta.1 + "@jupyter-notebook/console-extension": ^7.4.0-beta.1 + "@jupyter-notebook/docmanager-extension": ^7.4.0-beta.1 + "@jupyter-notebook/documentsearch-extension": ^7.4.0-beta.1 + "@jupyter-notebook/help-extension": ^7.4.0-beta.1 + "@jupyter-notebook/lab-extension": ^7.4.0-beta.1 + "@jupyter-notebook/notebook-extension": ^7.4.0-beta.1 + "@jupyter-notebook/terminal-extension": ^7.4.0-beta.1 + "@jupyter-notebook/tree": ^7.4.0-beta.1 + "@jupyter-notebook/tree-extension": ^7.4.0-beta.1 + "@jupyter-notebook/ui-components": ^7.4.0-beta.1 typescript: ~5.5.4 languageName: unknown linkType: soft -"@jupyter-notebook/notebook-extension@^7.4.0-beta.0, @jupyter-notebook/notebook-extension@workspace:packages/notebook-extension": +"@jupyter-notebook/notebook-extension@^7.4.0-beta.1, @jupyter-notebook/notebook-extension@workspace:packages/notebook-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/notebook-extension@workspace:packages/notebook-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.0 + "@jupyter-notebook/application": ^7.4.0-beta.1 "@jupyterlab/application": ~4.4.0-beta.1 "@jupyterlab/apputils": ~4.5.0-beta.1 "@jupyterlab/cells": ~4.4.0-beta.1 @@ -2422,11 +2422,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/terminal-extension@^7.4.0-beta.0, @jupyter-notebook/terminal-extension@workspace:packages/terminal-extension": +"@jupyter-notebook/terminal-extension@^7.4.0-beta.1, @jupyter-notebook/terminal-extension@workspace:packages/terminal-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/terminal-extension@workspace:packages/terminal-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.0 + "@jupyter-notebook/application": ^7.4.0-beta.1 "@jupyterlab/application": ~4.4.0-beta.1 "@jupyterlab/coreutils": ~6.4.0-beta.1 "@jupyterlab/terminal": ~4.4.0-beta.1 @@ -2436,12 +2436,12 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/tree-extension@^7.4.0-beta.0, @jupyter-notebook/tree-extension@workspace:packages/tree-extension": +"@jupyter-notebook/tree-extension@^7.4.0-beta.1, @jupyter-notebook/tree-extension@workspace:packages/tree-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/tree-extension@workspace:packages/tree-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.0 - "@jupyter-notebook/tree": ^7.4.0-beta.0 + "@jupyter-notebook/application": ^7.4.0-beta.1 + "@jupyter-notebook/tree": ^7.4.0-beta.1 "@jupyterlab/application": ~4.4.0-beta.1 "@jupyterlab/apputils": ~4.5.0-beta.1 "@jupyterlab/coreutils": ~6.4.0-beta.1 @@ -2462,11 +2462,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/tree@^7.4.0-beta.0, @jupyter-notebook/tree@workspace:packages/tree": +"@jupyter-notebook/tree@^7.4.0-beta.1, @jupyter-notebook/tree@workspace:packages/tree": version: 0.0.0-use.local resolution: "@jupyter-notebook/tree@workspace:packages/tree" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.0 + "@jupyter-notebook/application": ^7.4.0-beta.1 "@jupyterlab/application": ~4.4.0-beta.1 "@jupyterlab/apputils": ~4.5.0-beta.1 "@jupyterlab/coreutils": ~6.4.0-beta.1 @@ -2487,7 +2487,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/ui-components@^7.4.0-beta.0, @jupyter-notebook/ui-components@workspace:packages/ui-components": +"@jupyter-notebook/ui-components@^7.4.0-beta.1, @jupyter-notebook/ui-components@workspace:packages/ui-components": version: 0.0.0-use.local resolution: "@jupyter-notebook/ui-components@workspace:packages/ui-components" dependencies: From 59b9411869cd0e8b0076527e4079c82b2790ed73 Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Mon, 17 Mar 2025 11:04:07 +0100 Subject: [PATCH 005/143] User facing changelog for 7.4 (#7612) * User facing changelog for 7.4 * add more content --- CHANGELOG.md | 141 +++++++++++++++++++++++++++++++++++---------------- 1 file changed, 98 insertions(+), 43 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f85f6ac3e2..7f82174ab7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,66 +12,60 @@ upgrading `notebook`. Use `pip install pip --upgrade` to upgrade pip. Check pip version with `pip --version`. -## 7.3 - -Jupyter Notebook 7.3 is based on JupyterLab 4.3, and includes a number of new features, bug fixes, and enhancements for extension developers. This release is compatible with extensions supporting JupyterLab 4.0. Extension authors are recommended to consult the [Extension Migration Guide](https://jupyterlab.readthedocs.io/en/latest/extension/extension_migration.html#jupyterlab-4-2-to-4-3) which lists deprecations and changes to the public API. - -Below are a few highlights for this new release. Most of the new features and improvements come from the update to JupyterLab 4.3, although they may not all be supported in Notebook 7.3. - -For reference you may have a look at the [JupyterLab 4.3 changelog](https://jupyterlab.readthedocs.io/en/latest/getting_started/changelog.html#v4-3) to learn more. - -### Minimap - -The virtual scrollbar now acts as a minimap and exposes information on whether a cell: - -- is running/scheduled (`[*]`), idle (`[ ]`) or was already run (e.g. `[1]`) -- was modified since it was last executed (“dirty”) - orange background -- has an output that contains an error - red background -- is markdown/code (`[ ]`/`[*]`/`[1]` for code, nothing for markdown) -- how much text/code it contains +## 7.4 -![a screenshot showing the notebook minimap](https://raw.githubusercontent.com/jupyterlab/jupyterlab/main/docs/source/getting_started/changelog_assets/4.3-minimap.png) +Jupyter Notebook 7.4 is based on JupyterLab 4.4, and includes a number of new features, bug fixes, and enhancements for extension developers. This release is compatible with extensions supporting JupyterLab 4.0. Extension authors are recommended to consult the [Extension Migration Guide](https://jupyterlab.readthedocs.io/en/latest/extension/extension_migration.html#jupyterlab-4-3-to-4-4) which lists deprecations and changes to the public API. -To enable the minimap, click on the hamburger icon (≡) which appears in the notebook’s toolbar. If you do not see the hamburger icon, go to `Settings → Notebook → Windowing mode` and choose “full”. +Below are a few highlights for this new release. Most of the new features and improvements come from the update to JupyterLab 4.4, although they may not all be supported in Notebook 7.4. -### File browser enhancements - -The file browser now: - -- supports resizing the columns and remembers the column sizes after reloading JupyterLab -- supports uploading folders by drag-and-drop -- supports navigation with a single click -- adds a file filter collapsed by default (funnel icon) +For reference you may have a look at the [JupyterLab 4.4 changelog](https://jupyterlab.readthedocs.io/en/latest/getting_started/changelog.html#v4-4) to learn more. -![a screenshot showing that it's now possible to resize the file browser columns](https://github.com/user-attachments/assets/b0d9cd0a-2828-43f7-a922-e8b271e5f7fc) +### Code console improvements -In Jupyter Notebook, the single click navigation is enabled by default. If you would like to disable it to get the same experience as in JupyterLab, go to `Settings → File Browser` and make sure "Navigate files and directories with single click" is unchecked. +The code console prompt can now be positioned on the top, left, or right side of the console, +in addition to the default bottom placement. The placement is persisted in the Prompt Cell +Position setting. -### Improved kernel and server interactions +The console toolbar now includes buttons to: +- Execute code +- Restart the kernel +- Clear the cells +- Switch the kernel -The previous release enabled connecting to external kernels, such as those spawned by a third-party application like Blender. In this release the kernel selector dialog was improved to also show the external kernels. + -The previous release improved the awareness of the kernel/kernel specification distinction by providing both tree and list view in the kernels sidebar panel, but only the tree view featured the kernel identifiers. In this release both the list and tree view show the kernel identifier stub. +Additional settings for console behavior have been added: +- Clear Code Content on Execute (enabled by default) – When disabled, the code submitted for execution remains in the code editor, allowing for further edits. +- Hide Code Input – When enabled, only the execution output is shown in the console. +- Clear Cells on Execute – When enabled, only the last cell is displayed. -A new toolbar button was added in the kernel allowing to shut down unused kernels (kernels with no widget attached). +Toggling all the three new settings transforms the console into an interactive editor +resembling an ephemeral notebook with a single cell. -![a screenshot showing the list view of the kernels in the sidebar](https://github.com/user-attachments/assets/c7f958c5-4054-4b09-8fad-4df6db8c9b58) + -### Full Width Notebook +### Settings import and export -It is now possible to configure the notebook to take up the full width of the page via: +Settings can now be exported to `overrides.json` from the Settings Editor, +which can be used to pre-configure defaults in deployments or to restore settings. -- a setting that can be defined by a user via the Settings Editor -- the `View > Enable Full Width Notebook` menu entry -- the command palette, searching for `Enable Full Width Notebook` + -![a screenshot showing how to enable full width notebook via the menu](https://github.com/user-attachments/assets/148b227a-874a-4bb3-a4c6-c7350525ccc4) +### Support for collaboration without `RTC:` drive -This is particularly useful on large displays, or for those who prefer working with a wider notebook. +Real time collaboration in previous versions of JupyterLab and Jupyter Notebook +(which can be enabled by installing jupyter-collaboration package) +was implemented by swapping the default JupyterLab file system +drive to a collaborative drive with the `RTC:` prefix. +This approach was incompatible with multiple extensions. +JupyterLab 4.4 introduces the Content Providers API, which allows the next version of `jupyter-collaboration` to work without changing the drive prefix. +This improves compatibility with extensions that do not support arbitrary drives. -It is also possible to use the JupyterLab interface for a more fully-featured experience, which allows for full-width notebooks too, and offers a "Simple Interface" mode for only showing a single notebook at a time. +### Context menu opt-out -You can open JupyterLab by clicking on `View > Open JupyterLab`. +The context menu, available under right mouse click in browsers, can now be disabled globally +by toggling the `Enable Context Menu` option available in the Command Palette, +or via the JSON Settings Editor in the Application Context Menu. @@ -187,6 +181,67 @@ You can open JupyterLab by clicking on `View > Open JupyterLab`. [@github-actions](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2024-12-21..2024-12-21&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2024-12-21..2024-12-21&type=Issues) +## 7.3 + +Jupyter Notebook 7.3 is based on JupyterLab 4.3, and includes a number of new features, bug fixes, and enhancements for extension developers. This release is compatible with extensions supporting JupyterLab 4.0. Extension authors are recommended to consult the [Extension Migration Guide](https://jupyterlab.readthedocs.io/en/latest/extension/extension_migration.html#jupyterlab-4-2-to-4-3) which lists deprecations and changes to the public API. + +Below are a few highlights for this new release. Most of the new features and improvements come from the update to JupyterLab 4.3, although they may not all be supported in Notebook 7.3. + +For reference you may have a look at the [JupyterLab 4.3 changelog](https://jupyterlab.readthedocs.io/en/latest/getting_started/changelog.html#v4-3) to learn more. + +### Minimap + +The virtual scrollbar now acts as a minimap and exposes information on whether a cell: + +- is running/scheduled (`[*]`), idle (`[ ]`) or was already run (e.g. `[1]`) +- was modified since it was last executed (“dirty”) - orange background +- has an output that contains an error - red background +- is markdown/code (`[ ]`/`[*]`/`[1]` for code, nothing for markdown) +- how much text/code it contains + +![a screenshot showing the notebook minimap](https://raw.githubusercontent.com/jupyterlab/jupyterlab/main/docs/source/getting_started/changelog_assets/4.3-minimap.png) + +To enable the minimap, click on the hamburger icon (≡) which appears in the notebook’s toolbar. If you do not see the hamburger icon, go to `Settings → Notebook → Windowing mode` and choose “full”. + +### File browser enhancements + +The file browser now: + +- supports resizing the columns and remembers the column sizes after reloading JupyterLab +- supports uploading folders by drag-and-drop +- supports navigation with a single click +- adds a file filter collapsed by default (funnel icon) + +![a screenshot showing that it's now possible to resize the file browser columns](https://github.com/user-attachments/assets/b0d9cd0a-2828-43f7-a922-e8b271e5f7fc) + +In Jupyter Notebook, the single click navigation is enabled by default. If you would like to disable it to get the same experience as in JupyterLab, go to `Settings → File Browser` and make sure "Navigate files and directories with single click" is unchecked. + +### Improved kernel and server interactions + +The previous release enabled connecting to external kernels, such as those spawned by a third-party application like Blender. In this release the kernel selector dialog was improved to also show the external kernels. + +The previous release improved the awareness of the kernel/kernel specification distinction by providing both tree and list view in the kernels sidebar panel, but only the tree view featured the kernel identifiers. In this release both the list and tree view show the kernel identifier stub. + +A new toolbar button was added in the kernel allowing to shut down unused kernels (kernels with no widget attached). + +![a screenshot showing the list view of the kernels in the sidebar](https://github.com/user-attachments/assets/c7f958c5-4054-4b09-8fad-4df6db8c9b58) + +### Full Width Notebook + +It is now possible to configure the notebook to take up the full width of the page via: + +- a setting that can be defined by a user via the Settings Editor +- the `View > Enable Full Width Notebook` menu entry +- the command palette, searching for `Enable Full Width Notebook` + +![a screenshot showing how to enable full width notebook via the menu](https://github.com/user-attachments/assets/148b227a-874a-4bb3-a4c6-c7350525ccc4) + +This is particularly useful on large displays, or for those who prefer working with a wider notebook. + +It is also possible to use the JupyterLab interface for a more fully-featured experience, which allows for full-width notebooks too, and offers a "Simple Interface" mode for only showing a single notebook at a time. + +You can open JupyterLab by clicking on `View > Open JupyterLab`. + ## 7.3.2 ([Full Changelog](https://github.com/jupyter/notebook/compare/@jupyter-notebook/application-extension@7.3.1...7959ba0de553e9c541d2716d76108a8bc0bc2d6c)) From 326991fee95aa035ec8cc286fd2774c4f248ecfc Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Thu, 20 Mar 2025 08:27:39 +0100 Subject: [PATCH 006/143] Update to JupyterLab v4.4.0b2 (#7614) Co-authored-by: github-actions[bot] --- .pre-commit-config.yaml | 2 +- app/package.json | 254 +- buildutils/package.json | 2 +- package.json | 2 +- packages/application-extension/package.json | 22 +- packages/application/package.json | 10 +- packages/console-extension/package.json | 6 +- packages/docmanager-extension/package.json | 10 +- .../documentsearch-extension/package.json | 4 +- packages/help-extension/package.json | 8 +- packages/lab-extension/package.json | 16 +- packages/notebook-extension/package.json | 14 +- packages/terminal-extension/package.json | 6 +- packages/tree-extension/package.json | 24 +- packages/tree/package.json | 22 +- packages/ui-components/package.json | 2 +- pixi.lock | 20 +- pyproject.toml | 6 +- ui-tests/package.json | 2 +- ui-tests/yarn.lock | 602 ++--- yarn.lock | 2184 ++++++++--------- 21 files changed, 1609 insertions(+), 1609 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 69908ef23b..9d5e130fa1 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -45,7 +45,7 @@ repos: files: "^notebook" stages: [manual] args: ["--install-types", "--non-interactive"] - additional_dependencies: ["traitlets>=5.13", "tornado", "jupyter_server>=2.10", "jupyterlab_server>=2.25", "jupyterlab>=4.4.0b1,<4.5"] + additional_dependencies: ["traitlets>=5.13", "tornado", "jupyter_server>=2.10", "jupyterlab_server>=2.25", "jupyterlab>=4.4.0b2,<4.5"] - repo: https://github.com/pre-commit/pygrep-hooks rev: 'v1.10.0' diff --git a/app/package.json b/app/package.json index f355ea99df..738b03c85b 100644 --- a/app/package.json +++ b/app/package.json @@ -26,84 +26,84 @@ "@jupyter/react-components": "~0.16.7", "@jupyter/web-components": "~0.16.7", "@jupyter/ydoc": "~3.0.0", - "@jupyterlab/application": "~4.4.0-beta.1", - "@jupyterlab/application-extension": "~4.4.0-beta.1", - "@jupyterlab/apputils": "~4.5.0-beta.1", - "@jupyterlab/apputils-extension": "~4.4.0-beta.1", - "@jupyterlab/attachments": "~4.4.0-beta.1", - "@jupyterlab/cell-toolbar": "~4.4.0-beta.1", - "@jupyterlab/cell-toolbar-extension": "~4.4.0-beta.1", - "@jupyterlab/celltags-extension": "~4.4.0-beta.1", - "@jupyterlab/codeeditor": "~4.4.0-beta.1", - "@jupyterlab/codemirror": "~4.4.0-beta.1", - "@jupyterlab/codemirror-extension": "~4.4.0-beta.1", - "@jupyterlab/completer": "~4.4.0-beta.1", - "@jupyterlab/completer-extension": "~4.4.0-beta.1", - "@jupyterlab/console": "~4.4.0-beta.1", - "@jupyterlab/console-extension": "~4.4.0-beta.1", - "@jupyterlab/coreutils": "~6.4.0-beta.1", - "@jupyterlab/csvviewer-extension": "~4.4.0-beta.1", - "@jupyterlab/debugger": "~4.4.0-beta.1", - "@jupyterlab/debugger-extension": "~4.4.0-beta.1", - "@jupyterlab/docmanager": "~4.4.0-beta.1", - "@jupyterlab/docmanager-extension": "~4.4.0-beta.1", - "@jupyterlab/documentsearch": "~4.4.0-beta.1", - "@jupyterlab/documentsearch-extension": "~4.4.0-beta.1", - "@jupyterlab/extensionmanager": "~4.4.0-beta.1", - "@jupyterlab/extensionmanager-extension": "~4.4.0-beta.1", - "@jupyterlab/filebrowser": "~4.4.0-beta.1", - "@jupyterlab/filebrowser-extension": "~4.4.0-beta.1", - "@jupyterlab/fileeditor": "~4.4.0-beta.1", - "@jupyterlab/fileeditor-extension": "~4.4.0-beta.1", - "@jupyterlab/help-extension": "~4.4.0-beta.1", - "@jupyterlab/htmlviewer": "~4.4.0-beta.1", - "@jupyterlab/htmlviewer-extension": "~4.4.0-beta.1", - "@jupyterlab/hub-extension": "~4.4.0-beta.1", - "@jupyterlab/imageviewer": "~4.4.0-beta.1", - "@jupyterlab/imageviewer-extension": "~4.4.0-beta.1", - "@jupyterlab/javascript-extension": "~4.4.0-beta.1", - "@jupyterlab/json-extension": "~4.4.0-beta.1", - "@jupyterlab/lsp": "~4.4.0-beta.1", - "@jupyterlab/lsp-extension": "~4.4.0-beta.1", - "@jupyterlab/mainmenu": "~4.4.0-beta.1", - "@jupyterlab/mainmenu-extension": "~4.4.0-beta.1", - "@jupyterlab/markdownviewer": "~4.4.0-beta.1", - "@jupyterlab/markdownviewer-extension": "~4.4.0-beta.1", - "@jupyterlab/markedparser-extension": "~4.4.0-beta.1", - "@jupyterlab/mathjax-extension": "~4.4.0-beta.1", - "@jupyterlab/mermaid": "~4.4.0-beta.1", - "@jupyterlab/mermaid-extension": "~4.4.0-beta.1", - "@jupyterlab/metadataform": "~4.4.0-beta.1", - "@jupyterlab/metadataform-extension": "~4.4.0-beta.1", - "@jupyterlab/notebook": "~4.4.0-beta.1", - "@jupyterlab/notebook-extension": "~4.4.0-beta.1", - "@jupyterlab/observables": "~5.4.0-beta.1", - "@jupyterlab/outputarea": "~4.4.0-beta.1", - "@jupyterlab/pdf-extension": "~4.4.0-beta.1", - "@jupyterlab/pluginmanager-extension": "~4.4.0-beta.1", - "@jupyterlab/rendermime": "~4.4.0-beta.1", - "@jupyterlab/rendermime-interfaces": "~3.12.0-beta.1", - "@jupyterlab/running-extension": "~4.4.0-beta.1", - "@jupyterlab/services": "~7.4.0-beta.1", - "@jupyterlab/settingeditor": "~4.4.0-beta.1", - "@jupyterlab/settingeditor-extension": "~4.4.0-beta.1", - "@jupyterlab/settingregistry": "~4.4.0-beta.1", - "@jupyterlab/shortcuts-extension": "~5.2.0-beta.1", - "@jupyterlab/statedb": "~4.4.0-beta.1", - "@jupyterlab/statusbar": "~4.4.0-beta.1", - "@jupyterlab/terminal": "~4.4.0-beta.1", - "@jupyterlab/terminal-extension": "~4.4.0-beta.1", - "@jupyterlab/theme-dark-extension": "~4.4.0-beta.1", - "@jupyterlab/theme-dark-high-contrast-extension": "~4.4.0-beta.1", - "@jupyterlab/theme-light-extension": "~4.4.0-beta.1", - "@jupyterlab/toc-extension": "~6.4.0-beta.1", - "@jupyterlab/tooltip": "~4.4.0-beta.1", - "@jupyterlab/tooltip-extension": "~4.4.0-beta.1", - "@jupyterlab/translation": "~4.4.0-beta.1", - "@jupyterlab/translation-extension": "~4.4.0-beta.1", - "@jupyterlab/ui-components": "~4.4.0-beta.1", - "@jupyterlab/ui-components-extension": "~4.4.0-beta.1", - "@jupyterlab/vega5-extension": "~4.4.0-beta.1", + "@jupyterlab/application": "~4.4.0-beta.2", + "@jupyterlab/application-extension": "~4.4.0-beta.2", + "@jupyterlab/apputils": "~4.5.0-beta.2", + "@jupyterlab/apputils-extension": "~4.4.0-beta.2", + "@jupyterlab/attachments": "~4.4.0-beta.2", + "@jupyterlab/cell-toolbar": "~4.4.0-beta.2", + "@jupyterlab/cell-toolbar-extension": "~4.4.0-beta.2", + "@jupyterlab/celltags-extension": "~4.4.0-beta.2", + "@jupyterlab/codeeditor": "~4.4.0-beta.2", + "@jupyterlab/codemirror": "~4.4.0-beta.2", + "@jupyterlab/codemirror-extension": "~4.4.0-beta.2", + "@jupyterlab/completer": "~4.4.0-beta.2", + "@jupyterlab/completer-extension": "~4.4.0-beta.2", + "@jupyterlab/console": "~4.4.0-beta.2", + "@jupyterlab/console-extension": "~4.4.0-beta.2", + "@jupyterlab/coreutils": "~6.4.0-beta.2", + "@jupyterlab/csvviewer-extension": "~4.4.0-beta.2", + "@jupyterlab/debugger": "~4.4.0-beta.2", + "@jupyterlab/debugger-extension": "~4.4.0-beta.2", + "@jupyterlab/docmanager": "~4.4.0-beta.2", + "@jupyterlab/docmanager-extension": "~4.4.0-beta.2", + "@jupyterlab/documentsearch": "~4.4.0-beta.2", + "@jupyterlab/documentsearch-extension": "~4.4.0-beta.2", + "@jupyterlab/extensionmanager": "~4.4.0-beta.2", + "@jupyterlab/extensionmanager-extension": "~4.4.0-beta.2", + "@jupyterlab/filebrowser": "~4.4.0-beta.2", + "@jupyterlab/filebrowser-extension": "~4.4.0-beta.2", + "@jupyterlab/fileeditor": "~4.4.0-beta.2", + "@jupyterlab/fileeditor-extension": "~4.4.0-beta.2", + "@jupyterlab/help-extension": "~4.4.0-beta.2", + "@jupyterlab/htmlviewer": "~4.4.0-beta.2", + "@jupyterlab/htmlviewer-extension": "~4.4.0-beta.2", + "@jupyterlab/hub-extension": "~4.4.0-beta.2", + "@jupyterlab/imageviewer": "~4.4.0-beta.2", + "@jupyterlab/imageviewer-extension": "~4.4.0-beta.2", + "@jupyterlab/javascript-extension": "~4.4.0-beta.2", + "@jupyterlab/json-extension": "~4.4.0-beta.2", + "@jupyterlab/lsp": "~4.4.0-beta.2", + "@jupyterlab/lsp-extension": "~4.4.0-beta.2", + "@jupyterlab/mainmenu": "~4.4.0-beta.2", + "@jupyterlab/mainmenu-extension": "~4.4.0-beta.2", + "@jupyterlab/markdownviewer": "~4.4.0-beta.2", + "@jupyterlab/markdownviewer-extension": "~4.4.0-beta.2", + "@jupyterlab/markedparser-extension": "~4.4.0-beta.2", + "@jupyterlab/mathjax-extension": "~4.4.0-beta.2", + "@jupyterlab/mermaid": "~4.4.0-beta.2", + "@jupyterlab/mermaid-extension": "~4.4.0-beta.2", + "@jupyterlab/metadataform": "~4.4.0-beta.2", + "@jupyterlab/metadataform-extension": "~4.4.0-beta.2", + "@jupyterlab/notebook": "~4.4.0-beta.2", + "@jupyterlab/notebook-extension": "~4.4.0-beta.2", + "@jupyterlab/observables": "~5.4.0-beta.2", + "@jupyterlab/outputarea": "~4.4.0-beta.2", + "@jupyterlab/pdf-extension": "~4.4.0-beta.2", + "@jupyterlab/pluginmanager-extension": "~4.4.0-beta.2", + "@jupyterlab/rendermime": "~4.4.0-beta.2", + "@jupyterlab/rendermime-interfaces": "~3.12.0-beta.2", + "@jupyterlab/running-extension": "~4.4.0-beta.2", + "@jupyterlab/services": "~7.4.0-beta.2", + "@jupyterlab/settingeditor": "~4.4.0-beta.2", + "@jupyterlab/settingeditor-extension": "~4.4.0-beta.2", + "@jupyterlab/settingregistry": "~4.4.0-beta.2", + "@jupyterlab/shortcuts-extension": "~5.2.0-beta.2", + "@jupyterlab/statedb": "~4.4.0-beta.2", + "@jupyterlab/statusbar": "~4.4.0-beta.2", + "@jupyterlab/terminal": "~4.4.0-beta.2", + "@jupyterlab/terminal-extension": "~4.4.0-beta.2", + "@jupyterlab/theme-dark-extension": "~4.4.0-beta.2", + "@jupyterlab/theme-dark-high-contrast-extension": "~4.4.0-beta.2", + "@jupyterlab/theme-light-extension": "~4.4.0-beta.2", + "@jupyterlab/toc-extension": "~6.4.0-beta.2", + "@jupyterlab/tooltip": "~4.4.0-beta.2", + "@jupyterlab/tooltip-extension": "~4.4.0-beta.2", + "@jupyterlab/translation": "~4.4.0-beta.2", + "@jupyterlab/translation-extension": "~4.4.0-beta.2", + "@jupyterlab/ui-components": "~4.4.0-beta.2", + "@jupyterlab/ui-components-extension": "~4.4.0-beta.2", + "@jupyterlab/vega5-extension": "~4.4.0-beta.2", "@lezer/common": "~1.2.1", "@lezer/highlight": "~1.2.0", "@lumino/algorithm": "~2.0.2", @@ -134,60 +134,60 @@ "@jupyter-notebook/tree": "^7.4.0-beta.1", "@jupyter-notebook/tree-extension": "^7.4.0-beta.1", "@jupyter-notebook/ui-components": "^7.4.0-beta.1", - "@jupyterlab/application-extension": "~4.4.0-beta.1", - "@jupyterlab/apputils-extension": "~4.4.0-beta.1", - "@jupyterlab/attachments": "~4.4.0-beta.1", - "@jupyterlab/cell-toolbar-extension": "~4.4.0-beta.1", - "@jupyterlab/celltags-extension": "~4.4.0-beta.1", - "@jupyterlab/codemirror": "~4.4.0-beta.1", - "@jupyterlab/codemirror-extension": "~4.4.0-beta.1", - "@jupyterlab/completer-extension": "~4.4.0-beta.1", - "@jupyterlab/console-extension": "~4.4.0-beta.1", - "@jupyterlab/coreutils": "~6.4.0-beta.1", - "@jupyterlab/csvviewer-extension": "~4.4.0-beta.1", - "@jupyterlab/debugger-extension": "~4.4.0-beta.1", - "@jupyterlab/docmanager-extension": "~4.4.0-beta.1", - "@jupyterlab/documentsearch-extension": "~4.4.0-beta.1", - "@jupyterlab/extensionmanager-extension": "~4.4.0-beta.1", - "@jupyterlab/filebrowser-extension": "~4.4.0-beta.1", - "@jupyterlab/fileeditor-extension": "~4.4.0-beta.1", - "@jupyterlab/help-extension": "~4.4.0-beta.1", - "@jupyterlab/htmlviewer-extension": "~4.4.0-beta.1", - "@jupyterlab/hub-extension": "~4.4.0-beta.1", - "@jupyterlab/imageviewer-extension": "~4.4.0-beta.1", - "@jupyterlab/javascript-extension": "~4.4.0-beta.1", - "@jupyterlab/json-extension": "~4.4.0-beta.1", - "@jupyterlab/lsp": "~4.4.0-beta.1", - "@jupyterlab/lsp-extension": "~4.4.0-beta.1", - "@jupyterlab/mainmenu-extension": "~4.4.0-beta.1", - "@jupyterlab/markdownviewer-extension": "~4.4.0-beta.1", - "@jupyterlab/markedparser-extension": "~4.4.0-beta.1", - "@jupyterlab/mathjax-extension": "~4.4.0-beta.1", - "@jupyterlab/mermaid-extension": "~4.4.0-beta.1", - "@jupyterlab/metadataform-extension": "~4.4.0-beta.1", - "@jupyterlab/notebook-extension": "~4.4.0-beta.1", - "@jupyterlab/pdf-extension": "~4.4.0-beta.1", - "@jupyterlab/pluginmanager-extension": "~4.4.0-beta.1", - "@jupyterlab/running-extension": "~4.4.0-beta.1", - "@jupyterlab/settingeditor": "~4.4.0-beta.1", - "@jupyterlab/settingeditor-extension": "~4.4.0-beta.1", - "@jupyterlab/shortcuts-extension": "~5.2.0-beta.1", - "@jupyterlab/terminal-extension": "~4.4.0-beta.1", - "@jupyterlab/theme-dark-extension": "~4.4.0-beta.1", - "@jupyterlab/theme-dark-high-contrast-extension": "~4.4.0-beta.1", - "@jupyterlab/theme-light-extension": "~4.4.0-beta.1", - "@jupyterlab/toc-extension": "~6.4.0-beta.1", - "@jupyterlab/tooltip-extension": "~4.4.0-beta.1", - "@jupyterlab/translation-extension": "~4.4.0-beta.1", - "@jupyterlab/ui-components-extension": "~4.4.0-beta.1", - "@jupyterlab/vega5-extension": "~4.4.0-beta.1", + "@jupyterlab/application-extension": "~4.4.0-beta.2", + "@jupyterlab/apputils-extension": "~4.4.0-beta.2", + "@jupyterlab/attachments": "~4.4.0-beta.2", + "@jupyterlab/cell-toolbar-extension": "~4.4.0-beta.2", + "@jupyterlab/celltags-extension": "~4.4.0-beta.2", + "@jupyterlab/codemirror": "~4.4.0-beta.2", + "@jupyterlab/codemirror-extension": "~4.4.0-beta.2", + "@jupyterlab/completer-extension": "~4.4.0-beta.2", + "@jupyterlab/console-extension": "~4.4.0-beta.2", + "@jupyterlab/coreutils": "~6.4.0-beta.2", + "@jupyterlab/csvviewer-extension": "~4.4.0-beta.2", + "@jupyterlab/debugger-extension": "~4.4.0-beta.2", + "@jupyterlab/docmanager-extension": "~4.4.0-beta.2", + "@jupyterlab/documentsearch-extension": "~4.4.0-beta.2", + "@jupyterlab/extensionmanager-extension": "~4.4.0-beta.2", + "@jupyterlab/filebrowser-extension": "~4.4.0-beta.2", + "@jupyterlab/fileeditor-extension": "~4.4.0-beta.2", + "@jupyterlab/help-extension": "~4.4.0-beta.2", + "@jupyterlab/htmlviewer-extension": "~4.4.0-beta.2", + "@jupyterlab/hub-extension": "~4.4.0-beta.2", + "@jupyterlab/imageviewer-extension": "~4.4.0-beta.2", + "@jupyterlab/javascript-extension": "~4.4.0-beta.2", + "@jupyterlab/json-extension": "~4.4.0-beta.2", + "@jupyterlab/lsp": "~4.4.0-beta.2", + "@jupyterlab/lsp-extension": "~4.4.0-beta.2", + "@jupyterlab/mainmenu-extension": "~4.4.0-beta.2", + "@jupyterlab/markdownviewer-extension": "~4.4.0-beta.2", + "@jupyterlab/markedparser-extension": "~4.4.0-beta.2", + "@jupyterlab/mathjax-extension": "~4.4.0-beta.2", + "@jupyterlab/mermaid-extension": "~4.4.0-beta.2", + "@jupyterlab/metadataform-extension": "~4.4.0-beta.2", + "@jupyterlab/notebook-extension": "~4.4.0-beta.2", + "@jupyterlab/pdf-extension": "~4.4.0-beta.2", + "@jupyterlab/pluginmanager-extension": "~4.4.0-beta.2", + "@jupyterlab/running-extension": "~4.4.0-beta.2", + "@jupyterlab/settingeditor": "~4.4.0-beta.2", + "@jupyterlab/settingeditor-extension": "~4.4.0-beta.2", + "@jupyterlab/shortcuts-extension": "~5.2.0-beta.2", + "@jupyterlab/terminal-extension": "~4.4.0-beta.2", + "@jupyterlab/theme-dark-extension": "~4.4.0-beta.2", + "@jupyterlab/theme-dark-high-contrast-extension": "~4.4.0-beta.2", + "@jupyterlab/theme-light-extension": "~4.4.0-beta.2", + "@jupyterlab/toc-extension": "~6.4.0-beta.2", + "@jupyterlab/tooltip-extension": "~4.4.0-beta.2", + "@jupyterlab/translation-extension": "~4.4.0-beta.2", + "@jupyterlab/ui-components-extension": "~4.4.0-beta.2", + "@jupyterlab/vega5-extension": "~4.4.0-beta.2", "react": "^18.2.0", "react-dom": "^18.2.0", "yjs": "^13.5.40" }, "devDependencies": { - "@jupyterlab/builder": "~4.4.0-beta.1", - "@jupyterlab/buildutils": "~4.4.0-beta.1", + "@jupyterlab/builder": "~4.4.0-beta.2", + "@jupyterlab/buildutils": "~4.4.0-beta.2", "@types/rimraf": "^3.0.2", "css-loader": "~5.0.1", "extra-watch-webpack-plugin": "^1.0.3", diff --git a/buildutils/package.json b/buildutils/package.json index a37e7c877e..254bdfd3b9 100644 --- a/buildutils/package.json +++ b/buildutils/package.json @@ -29,7 +29,7 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/buildutils": "~4.4.0-beta.1", + "@jupyterlab/buildutils": "~4.4.0-beta.2", "commander": "^6.2.0", "fs-extra": "^9.1.0", "semver": "^7.6.3", diff --git a/package.json b/package.json index a88fd57689..fae7d7c9cf 100644 --- a/package.json +++ b/package.json @@ -51,7 +51,7 @@ "yjs": "^13.5.40" }, "devDependencies": { - "@jupyterlab/buildutils": "~4.4.0-beta.1", + "@jupyterlab/buildutils": "~4.4.0-beta.2", "@typescript-eslint/eslint-plugin": "^5.55.0", "@typescript-eslint/parser": "^5.55.0", "eslint": "^8.36.0", diff --git a/packages/application-extension/package.json b/packages/application-extension/package.json index 07f094525b..d9484130b4 100644 --- a/packages/application-extension/package.json +++ b/packages/application-extension/package.json @@ -40,17 +40,17 @@ "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.1", "@jupyter-notebook/ui-components": "^7.4.0-beta.1", - "@jupyterlab/application": "~4.4.0-beta.1", - "@jupyterlab/apputils": "~4.5.0-beta.1", - "@jupyterlab/codeeditor": "~4.4.0-beta.1", - "@jupyterlab/console": "~4.4.0-beta.1", - "@jupyterlab/coreutils": "~6.4.0-beta.1", - "@jupyterlab/docmanager": "~4.4.0-beta.1", - "@jupyterlab/docregistry": "~4.4.0-beta.1", - "@jupyterlab/mainmenu": "~4.4.0-beta.1", - "@jupyterlab/rendermime": "~4.4.0-beta.1", - "@jupyterlab/settingregistry": "~4.4.0-beta.1", - "@jupyterlab/translation": "~4.4.0-beta.1", + "@jupyterlab/application": "~4.4.0-beta.2", + "@jupyterlab/apputils": "~4.5.0-beta.2", + "@jupyterlab/codeeditor": "~4.4.0-beta.2", + "@jupyterlab/console": "~4.4.0-beta.2", + "@jupyterlab/coreutils": "~6.4.0-beta.2", + "@jupyterlab/docmanager": "~4.4.0-beta.2", + "@jupyterlab/docregistry": "~4.4.0-beta.2", + "@jupyterlab/mainmenu": "~4.4.0-beta.2", + "@jupyterlab/rendermime": "~4.4.0-beta.2", + "@jupyterlab/settingregistry": "~4.4.0-beta.2", + "@jupyterlab/translation": "~4.4.0-beta.2", "@lumino/coreutils": "^2.2.0", "@lumino/disposable": "^2.1.3", "@lumino/widgets": "^2.5.0" diff --git a/packages/application/package.json b/packages/application/package.json index efb7ca18ec..d9bb3d74c6 100644 --- a/packages/application/package.json +++ b/packages/application/package.json @@ -42,11 +42,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "~4.4.0-beta.1", - "@jupyterlab/coreutils": "~6.4.0-beta.1", - "@jupyterlab/docregistry": "~4.4.0-beta.1", - "@jupyterlab/rendermime-interfaces": "~3.12.0-beta.1", - "@jupyterlab/ui-components": "~4.4.0-beta.1", + "@jupyterlab/application": "~4.4.0-beta.2", + "@jupyterlab/coreutils": "~6.4.0-beta.2", + "@jupyterlab/docregistry": "~4.4.0-beta.2", + "@jupyterlab/rendermime-interfaces": "~3.12.0-beta.2", + "@jupyterlab/ui-components": "~4.4.0-beta.2", "@lumino/algorithm": "^2.0.2", "@lumino/coreutils": "^2.2.0", "@lumino/messaging": "^2.0.2", diff --git a/packages/console-extension/package.json b/packages/console-extension/package.json index 2e3cacc306..e21665e6f2 100644 --- a/packages/console-extension/package.json +++ b/packages/console-extension/package.json @@ -39,9 +39,9 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.1", - "@jupyterlab/application": "~4.4.0-beta.1", - "@jupyterlab/console": "~4.4.0-beta.1", - "@jupyterlab/coreutils": "~6.4.0-beta.1", + "@jupyterlab/application": "~4.4.0-beta.2", + "@jupyterlab/console": "~4.4.0-beta.2", + "@jupyterlab/coreutils": "~6.4.0-beta.2", "@lumino/algorithm": "^2.0.2" }, "devDependencies": { diff --git a/packages/docmanager-extension/package.json b/packages/docmanager-extension/package.json index 09d53ab689..95e010848e 100644 --- a/packages/docmanager-extension/package.json +++ b/packages/docmanager-extension/package.json @@ -39,11 +39,11 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.1", - "@jupyterlab/application": "~4.4.0-beta.1", - "@jupyterlab/coreutils": "~6.4.0-beta.1", - "@jupyterlab/docmanager": "~4.4.0-beta.1", - "@jupyterlab/docregistry": "~4.4.0-beta.1", - "@jupyterlab/services": "~7.4.0-beta.1", + "@jupyterlab/application": "~4.4.0-beta.2", + "@jupyterlab/coreutils": "~6.4.0-beta.2", + "@jupyterlab/docmanager": "~4.4.0-beta.2", + "@jupyterlab/docregistry": "~4.4.0-beta.2", + "@jupyterlab/services": "~7.4.0-beta.2", "@lumino/algorithm": "^2.0.2", "@lumino/signaling": "^2.1.3" }, diff --git a/packages/documentsearch-extension/package.json b/packages/documentsearch-extension/package.json index 0ebccb323f..b152daa6b9 100644 --- a/packages/documentsearch-extension/package.json +++ b/packages/documentsearch-extension/package.json @@ -39,8 +39,8 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.1", - "@jupyterlab/application": "~4.4.0-beta.1", - "@jupyterlab/documentsearch": "~4.4.0-beta.1", + "@jupyterlab/application": "~4.4.0-beta.2", + "@jupyterlab/documentsearch": "~4.4.0-beta.2", "@lumino/widgets": "^2.5.0" }, "devDependencies": { diff --git a/packages/help-extension/package.json b/packages/help-extension/package.json index 72688423ce..9d3f2fd88b 100644 --- a/packages/help-extension/package.json +++ b/packages/help-extension/package.json @@ -39,10 +39,10 @@ }, "dependencies": { "@jupyter-notebook/ui-components": "^7.4.0-beta.1", - "@jupyterlab/application": "~4.4.0-beta.1", - "@jupyterlab/apputils": "~4.5.0-beta.1", - "@jupyterlab/mainmenu": "~4.4.0-beta.1", - "@jupyterlab/translation": "~4.4.0-beta.1", + "@jupyterlab/application": "~4.4.0-beta.2", + "@jupyterlab/apputils": "~4.5.0-beta.2", + "@jupyterlab/mainmenu": "~4.4.0-beta.2", + "@jupyterlab/translation": "~4.4.0-beta.2", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/packages/lab-extension/package.json b/packages/lab-extension/package.json index 998f6e1d5f..1521a7dbd2 100644 --- a/packages/lab-extension/package.json +++ b/packages/lab-extension/package.json @@ -44,18 +44,18 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.1", - "@jupyterlab/application": "~4.4.0-beta.1", - "@jupyterlab/apputils": "~4.5.0-beta.1", - "@jupyterlab/coreutils": "~6.4.0-beta.1", - "@jupyterlab/docregistry": "~4.4.0-beta.1", - "@jupyterlab/notebook": "~4.4.0-beta.1", - "@jupyterlab/translation": "~4.4.0-beta.1", - "@jupyterlab/ui-components": "~4.4.0-beta.1", + "@jupyterlab/application": "~4.4.0-beta.2", + "@jupyterlab/apputils": "~4.5.0-beta.2", + "@jupyterlab/coreutils": "~6.4.0-beta.2", + "@jupyterlab/docregistry": "~4.4.0-beta.2", + "@jupyterlab/notebook": "~4.4.0-beta.2", + "@jupyterlab/translation": "~4.4.0-beta.2", + "@jupyterlab/ui-components": "~4.4.0-beta.2", "@lumino/commands": "^2.3.1", "@lumino/disposable": "^2.1.3" }, "devDependencies": { - "@jupyterlab/builder": "~4.4.0-beta.1", + "@jupyterlab/builder": "~4.4.0-beta.2", "rimraf": "^3.0.2", "typescript": "~5.5.4" }, diff --git a/packages/notebook-extension/package.json b/packages/notebook-extension/package.json index 8ae1ad63b7..4810e97c48 100644 --- a/packages/notebook-extension/package.json +++ b/packages/notebook-extension/package.json @@ -39,13 +39,13 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.1", - "@jupyterlab/application": "~4.4.0-beta.1", - "@jupyterlab/apputils": "~4.5.0-beta.1", - "@jupyterlab/cells": "~4.4.0-beta.1", - "@jupyterlab/docmanager": "~4.4.0-beta.1", - "@jupyterlab/notebook": "~4.4.0-beta.1", - "@jupyterlab/settingregistry": "~4.4.0-beta.1", - "@jupyterlab/translation": "~4.4.0-beta.1", + "@jupyterlab/application": "~4.4.0-beta.2", + "@jupyterlab/apputils": "~4.5.0-beta.2", + "@jupyterlab/cells": "~4.4.0-beta.2", + "@jupyterlab/docmanager": "~4.4.0-beta.2", + "@jupyterlab/notebook": "~4.4.0-beta.2", + "@jupyterlab/settingregistry": "~4.4.0-beta.2", + "@jupyterlab/translation": "~4.4.0-beta.2", "@lumino/polling": "^2.1.3", "@lumino/widgets": "^2.5.0", "react": "^18.2.0", diff --git a/packages/terminal-extension/package.json b/packages/terminal-extension/package.json index 55bd88f008..4ac9b3145a 100644 --- a/packages/terminal-extension/package.json +++ b/packages/terminal-extension/package.json @@ -39,9 +39,9 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.1", - "@jupyterlab/application": "~4.4.0-beta.1", - "@jupyterlab/coreutils": "~6.4.0-beta.1", - "@jupyterlab/terminal": "~4.4.0-beta.1", + "@jupyterlab/application": "~4.4.0-beta.2", + "@jupyterlab/coreutils": "~6.4.0-beta.2", + "@jupyterlab/terminal": "~4.4.0-beta.2", "@lumino/algorithm": "^2.0.2" }, "devDependencies": { diff --git a/packages/tree-extension/package.json b/packages/tree-extension/package.json index f97367d19f..2ea142c2f8 100644 --- a/packages/tree-extension/package.json +++ b/packages/tree-extension/package.json @@ -40,18 +40,18 @@ "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.1", "@jupyter-notebook/tree": "^7.4.0-beta.1", - "@jupyterlab/application": "~4.4.0-beta.1", - "@jupyterlab/apputils": "~4.5.0-beta.1", - "@jupyterlab/coreutils": "~6.4.0-beta.1", - "@jupyterlab/docmanager": "~4.4.0-beta.1", - "@jupyterlab/filebrowser": "~4.4.0-beta.1", - "@jupyterlab/mainmenu": "~4.4.0-beta.1", - "@jupyterlab/services": "~7.4.0-beta.1", - "@jupyterlab/settingeditor": "~4.4.0-beta.1", - "@jupyterlab/settingregistry": "~4.4.0-beta.1", - "@jupyterlab/statedb": "~4.4.0-beta.1", - "@jupyterlab/translation": "~4.4.0-beta.1", - "@jupyterlab/ui-components": "~4.4.0-beta.1", + "@jupyterlab/application": "~4.4.0-beta.2", + "@jupyterlab/apputils": "~4.5.0-beta.2", + "@jupyterlab/coreutils": "~6.4.0-beta.2", + "@jupyterlab/docmanager": "~4.4.0-beta.2", + "@jupyterlab/filebrowser": "~4.4.0-beta.2", + "@jupyterlab/mainmenu": "~4.4.0-beta.2", + "@jupyterlab/services": "~7.4.0-beta.2", + "@jupyterlab/settingeditor": "~4.4.0-beta.2", + "@jupyterlab/settingregistry": "~4.4.0-beta.2", + "@jupyterlab/statedb": "~4.4.0-beta.2", + "@jupyterlab/translation": "~4.4.0-beta.2", + "@jupyterlab/ui-components": "~4.4.0-beta.2", "@lumino/algorithm": "^2.0.2", "@lumino/commands": "^2.3.1", "@lumino/widgets": "^2.5.0" diff --git a/packages/tree/package.json b/packages/tree/package.json index dc075f1fd9..6ac74fee94 100644 --- a/packages/tree/package.json +++ b/packages/tree/package.json @@ -39,17 +39,17 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.1", - "@jupyterlab/application": "~4.4.0-beta.1", - "@jupyterlab/apputils": "~4.5.0-beta.1", - "@jupyterlab/coreutils": "~6.4.0-beta.1", - "@jupyterlab/docmanager": "~4.4.0-beta.1", - "@jupyterlab/filebrowser": "~4.4.0-beta.1", - "@jupyterlab/mainmenu": "~4.4.0-beta.1", - "@jupyterlab/services": "~7.4.0-beta.1", - "@jupyterlab/settingregistry": "~4.4.0-beta.1", - "@jupyterlab/statedb": "~4.4.0-beta.1", - "@jupyterlab/translation": "~4.4.0-beta.1", - "@jupyterlab/ui-components": "~4.4.0-beta.1", + "@jupyterlab/application": "~4.4.0-beta.2", + "@jupyterlab/apputils": "~4.5.0-beta.2", + "@jupyterlab/coreutils": "~6.4.0-beta.2", + "@jupyterlab/docmanager": "~4.4.0-beta.2", + "@jupyterlab/filebrowser": "~4.4.0-beta.2", + "@jupyterlab/mainmenu": "~4.4.0-beta.2", + "@jupyterlab/services": "~7.4.0-beta.2", + "@jupyterlab/settingregistry": "~4.4.0-beta.2", + "@jupyterlab/statedb": "~4.4.0-beta.2", + "@jupyterlab/translation": "~4.4.0-beta.2", + "@jupyterlab/ui-components": "~4.4.0-beta.2", "@lumino/algorithm": "^2.0.2", "@lumino/commands": "^2.3.1", "@lumino/coreutils": "^2.2.0", diff --git a/packages/ui-components/package.json b/packages/ui-components/package.json index bddb8ebf7b..2ed0321a59 100644 --- a/packages/ui-components/package.json +++ b/packages/ui-components/package.json @@ -42,7 +42,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/ui-components": "~4.4.0-beta.1", + "@jupyterlab/ui-components": "~4.4.0-beta.2", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/pixi.lock b/pixi.lock index e47c5c9c55..98ade68cc8 100644 --- a/pixi.lock +++ b/pixi.lock @@ -93,7 +93,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/07/e0/7bd7cff65594fd9936e2f9385701e44574fc7d721331ff676ce440b14100/jupyter_lsp-2.2.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e2/a2/89eeaf0bb954a123a909859fa507fa86f96eb61b62dc30667b60dbd5fdaf/jupyter_server-2.15.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/07/2d/2b32cdbe8d2a602f697a649798554e4f072115438e92249624e532e8aca6/jupyter_server_terminals-0.5.3-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/16/e4/0ee7d8c0c01167c4ff881711dea046b040b26b0c276188ab395239cb9320/jupyterlab-4.4.0b1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/5e/10/5a1fedf8cf17b480a15faf4fa3725599eb8fbb95a67d758835d92a512c64/jupyterlab-4.4.0b2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/09/2032e7d15c544a0e3cd831c51d77a8ca57f7555b2e1b2922142eddb02a84/jupyterlab_server-2.27.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d3/32/da7f44bcb1105d3e88a0b74ebdca50c59121d2ddf71c9e34ba47df7f3a56/keyring-25.6.0-py3-none-any.whl @@ -271,7 +271,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/07/e0/7bd7cff65594fd9936e2f9385701e44574fc7d721331ff676ce440b14100/jupyter_lsp-2.2.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e2/a2/89eeaf0bb954a123a909859fa507fa86f96eb61b62dc30667b60dbd5fdaf/jupyter_server-2.15.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/07/2d/2b32cdbe8d2a602f697a649798554e4f072115438e92249624e532e8aca6/jupyter_server_terminals-0.5.3-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/16/e4/0ee7d8c0c01167c4ff881711dea046b040b26b0c276188ab395239cb9320/jupyterlab-4.4.0b1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/5e/10/5a1fedf8cf17b480a15faf4fa3725599eb8fbb95a67d758835d92a512c64/jupyterlab-4.4.0b2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/09/2032e7d15c544a0e3cd831c51d77a8ca57f7555b2e1b2922142eddb02a84/jupyterlab_server-2.27.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d3/32/da7f44bcb1105d3e88a0b74ebdca50c59121d2ddf71c9e34ba47df7f3a56/keyring-25.6.0-py3-none-any.whl @@ -449,7 +449,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/07/e0/7bd7cff65594fd9936e2f9385701e44574fc7d721331ff676ce440b14100/jupyter_lsp-2.2.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e2/a2/89eeaf0bb954a123a909859fa507fa86f96eb61b62dc30667b60dbd5fdaf/jupyter_server-2.15.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/07/2d/2b32cdbe8d2a602f697a649798554e4f072115438e92249624e532e8aca6/jupyter_server_terminals-0.5.3-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/16/e4/0ee7d8c0c01167c4ff881711dea046b040b26b0c276188ab395239cb9320/jupyterlab-4.4.0b1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/5e/10/5a1fedf8cf17b480a15faf4fa3725599eb8fbb95a67d758835d92a512c64/jupyterlab-4.4.0b2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/09/2032e7d15c544a0e3cd831c51d77a8ca57f7555b2e1b2922142eddb02a84/jupyterlab_server-2.27.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d3/32/da7f44bcb1105d3e88a0b74ebdca50c59121d2ddf71c9e34ba47df7f3a56/keyring-25.6.0-py3-none-any.whl @@ -635,7 +635,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/07/e0/7bd7cff65594fd9936e2f9385701e44574fc7d721331ff676ce440b14100/jupyter_lsp-2.2.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e2/a2/89eeaf0bb954a123a909859fa507fa86f96eb61b62dc30667b60dbd5fdaf/jupyter_server-2.15.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/07/2d/2b32cdbe8d2a602f697a649798554e4f072115438e92249624e532e8aca6/jupyter_server_terminals-0.5.3-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/16/e4/0ee7d8c0c01167c4ff881711dea046b040b26b0c276188ab395239cb9320/jupyterlab-4.4.0b1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/5e/10/5a1fedf8cf17b480a15faf4fa3725599eb8fbb95a67d758835d92a512c64/jupyterlab-4.4.0b2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/09/2032e7d15c544a0e3cd831c51d77a8ca57f7555b2e1b2922142eddb02a84/jupyterlab_server-2.27.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d3/32/da7f44bcb1105d3e88a0b74ebdca50c59121d2ddf71c9e34ba47df7f3a56/keyring-25.6.0-py3-none-any.whl @@ -1724,10 +1724,10 @@ packages: - pytest-timeout ; extra == 'test' - pytest>=7.0 ; extra == 'test' requires_python: '>=3.8' -- pypi: https://files.pythonhosted.org/packages/16/e4/0ee7d8c0c01167c4ff881711dea046b040b26b0c276188ab395239cb9320/jupyterlab-4.4.0b1-py3-none-any.whl +- pypi: https://files.pythonhosted.org/packages/5e/10/5a1fedf8cf17b480a15faf4fa3725599eb8fbb95a67d758835d92a512c64/jupyterlab-4.4.0b2-py3-none-any.whl name: jupyterlab - version: 4.4.0b1 - sha256: f840eee48d422403db075ad82b43c09566ef74c7a341f8b9c82d17c8c16fd4bc + version: 4.4.0b2 + sha256: e38b6a745f4d2695e34256c721002c7c5dff0abfbfcf7d9b1f505494b04567e7 requires_dist: - async-lru>=1.0.0 - httpx>=0.25.0 @@ -2302,12 +2302,12 @@ packages: timestamp: 1734113054756 - pypi: . name: notebook - version: 7.4.0b0 - sha256: 658dacee04232d5953aee201b8426e8f805bfe241247db834ec952a0b9351897 + version: 7.4.0b1 + sha256: 1ff13f6f297858406df01832553ace8444a96af791800550a567b56ca63e4931 requires_dist: - jupyter-server>=2.4.0,<3 - jupyterlab-server>=2.27.1,<3 - - jupyterlab>=4.4.0b1,<4.5 + - jupyterlab>=4.4.0b2,<4.5 - notebook-shim>=0.2,<0.3 - tornado>=6.2.0 - hatch ; extra == 'dev' diff --git a/pyproject.toml b/pyproject.toml index 1e7bfaafad..60822d2051 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["hatchling>=1.11", "jupyterlab>=4.4.0b1,<4.5"] +requires = ["hatchling>=1.11", "jupyterlab>=4.4.0b2,<4.5"] build-backend = "hatchling.build" [project] @@ -32,7 +32,7 @@ classifiers = [ ] dependencies = [ "jupyter_server>=2.4.0,<3", - "jupyterlab>=4.4.0b1,<4.5", + "jupyterlab>=4.4.0b2,<4.5", "jupyterlab_server>=2.27.1,<3", "notebook_shim>=0.2,<0.3", "tornado>=6.2.0", @@ -174,7 +174,7 @@ version-cmd = "jlpm run release:bump --force --skip-commit" [tool.jupyter-releaser.hooks] before-bump-version = [ - "python -m pip install -U \"jupyterlab>=4.4.0b1,<4.5\"", + "python -m pip install -U \"jupyterlab>=4.4.0b2,<4.5\"", "jlpm", "jlpm run build:utils", "python -m pip install hatch" diff --git a/ui-tests/package.json b/ui-tests/package.json index cdda4110cd..1c4b00c6f4 100644 --- a/ui-tests/package.json +++ b/ui-tests/package.json @@ -15,7 +15,7 @@ "test:update": "playwright test --update-snapshots" }, "dependencies": { - "@jupyterlab/galata": "~5.4.0-beta.1", + "@jupyterlab/galata": "~5.4.0-beta.2", "@playwright/test": "~1.51.0", "rimraf": "^3.0.2" } diff --git a/ui-tests/yarn.lock b/ui-tests/yarn.lock index a3c02f1d9c..a1e98922e5 100644 --- a/ui-tests/yarn.lock +++ b/ui-tests/yarn.lock @@ -278,7 +278,7 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyter-notebook/ui-tests@workspace:." dependencies: - "@jupyterlab/galata": ~5.4.0-beta.1 + "@jupyterlab/galata": ~5.4.0-beta.2 "@playwright/test": ~1.51.0 rimraf: ^3.0.2 languageName: unknown @@ -320,20 +320,20 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/application@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/application@npm:4.4.0-beta.1" +"@jupyterlab/application@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/application@npm:4.4.0-beta.2" dependencies: "@fortawesome/fontawesome-free": ^5.12.0 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/docregistry": ^4.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/statedb": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/docregistry": ^4.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/statedb": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/application": ^2.4.2 "@lumino/commands": ^2.3.1 @@ -344,23 +344,23 @@ __metadata: "@lumino/properties": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: b077fec7cdde75c216d41b7dfb0f7054992d46292b18d195f9dc40b5ed7f3e59ea66e427e980c4f6c5a504864cb599680f8deef2f747d2bac89a4d8f5181e739 + checksum: 20042b03255bb1415d246ccdff839922c40e55d25dd687b5efec5f0be0d855932561692b15d54957c7be25007c5e248e07361f9ca303da8fc35728efcd19fc6e languageName: node linkType: hard -"@jupyterlab/apputils@npm:^4.5.0-beta.1": - version: 4.5.0-beta.1 - resolution: "@jupyterlab/apputils@npm:4.5.0-beta.1" +"@jupyterlab/apputils@npm:^4.5.0-beta.2": + version: 4.5.0-beta.2 + resolution: "@jupyterlab/apputils@npm:4.5.0-beta.2" dependencies: - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/observables": ^5.4.0-beta.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/statedb": ^4.4.0-beta.1 - "@jupyterlab/statusbar": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/observables": ^5.4.0-beta.2 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/statedb": ^4.4.0-beta.2 + "@jupyterlab/statusbar": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -373,46 +373,46 @@ __metadata: "@types/react": ^18.0.26 react: ^18.2.0 sanitize-html: ~2.12.1 - checksum: c6847491841f92f890d398c2c7756a18c39051795049172b997a8ef85ae829948b03d288f537880a756b89fcb4fc6ff6fb805b6ed1d835ac3cab1fe348431afc + checksum: 330f541763ea58a0f4b1045b148740498e884f02aa92b8aa3f908e1b7e6fe26d5c68be3520c5c6b10180eed8a9d314de286b163881005daaa1b7c355bfe0b06b languageName: node linkType: hard -"@jupyterlab/attachments@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/attachments@npm:4.4.0-beta.1" +"@jupyterlab/attachments@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/attachments@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/nbformat": ^4.4.0-beta.1 - "@jupyterlab/observables": ^5.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 + "@jupyterlab/nbformat": ^4.4.0-beta.2 + "@jupyterlab/observables": ^5.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 "@lumino/disposable": ^2.1.3 "@lumino/signaling": ^2.1.3 - checksum: 0098ff81ed51f562001fb4c0df9559c16ec6974dc2e7d1aadbf3fe6289d441427c443ba33957e88fbc57ff48223e0bf9fe291f59de5139aca29d08fa2fcd81bb + checksum: 62e9c30ea5dba15199a410a7e7e3abe24a1b867359246e216faacb40466101ed20726057ac6dd80461f411d568894b0002d2eda314d5309f758517bd7210d752 languageName: node linkType: hard -"@jupyterlab/cells@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/cells@npm:4.4.0-beta.1" +"@jupyterlab/cells@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/cells@npm:4.4.0-beta.2" dependencies: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/attachments": ^4.4.0-beta.1 - "@jupyterlab/codeeditor": ^4.4.0-beta.1 - "@jupyterlab/codemirror": ^4.4.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/documentsearch": ^4.4.0-beta.1 - "@jupyterlab/filebrowser": ^4.4.0-beta.1 - "@jupyterlab/nbformat": ^4.4.0-beta.1 - "@jupyterlab/observables": ^5.4.0-beta.1 - "@jupyterlab/outputarea": ^4.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/toc": ^6.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/attachments": ^4.4.0-beta.2 + "@jupyterlab/codeeditor": ^4.4.0-beta.2 + "@jupyterlab/codemirror": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/documentsearch": ^4.4.0-beta.2 + "@jupyterlab/filebrowser": ^4.4.0-beta.2 + "@jupyterlab/nbformat": ^4.4.0-beta.2 + "@jupyterlab/observables": ^5.4.0-beta.2 + "@jupyterlab/outputarea": ^4.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/toc": ^6.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/domutils": ^2.0.2 @@ -423,23 +423,23 @@ __metadata: "@lumino/virtualdom": ^2.0.2 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 56dce1335e87567e771bc7612c614ee4e8f549e820eef2e5adc7c01fa7d312a0835d3d01b84f408b05674f04d31872edfc9ff160958437932d832dff066694ae + checksum: 2f70adfa7bbd56431eb60bb4360f643bb26ff3355ed43fe76f79308fa303fcc9475c650eef494bf5c04ce90f12e0f9ed512adca98205c5c1983fe504c8c2a137 languageName: node linkType: hard -"@jupyterlab/codeeditor@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/codeeditor@npm:4.4.0-beta.1" +"@jupyterlab/codeeditor@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/codeeditor@npm:4.4.0-beta.2" dependencies: "@codemirror/state": ^6.5.0 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/nbformat": ^4.4.0-beta.1 - "@jupyterlab/observables": ^5.4.0-beta.1 - "@jupyterlab/statusbar": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/nbformat": ^4.4.0-beta.2 + "@jupyterlab/observables": ^5.4.0-beta.2 + "@jupyterlab/statusbar": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/dragdrop": ^2.1.5 @@ -447,13 +447,13 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 4b055fe59a641252662dc3da5f8cac26091125f813a061284bb74131350abf7333395e6750cb79da71692d2d35a1deae7679c0605a050bc766f49fd8405c0c2a + checksum: 3cb25ee4ea41d84172e172a5e8bb827c4bf6e98af62cad8e5c56f409321290c2305e455f8006a149bd14d544553d60b2c5ef1bc2d9770e7de7a8a30bddbd61fc languageName: node linkType: hard -"@jupyterlab/codemirror@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/codemirror@npm:4.4.0-beta.1" +"@jupyterlab/codemirror@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/codemirror@npm:4.4.0-beta.2" dependencies: "@codemirror/autocomplete": ^6.18.3 "@codemirror/commands": ^6.7.1 @@ -476,11 +476,11 @@ __metadata: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/codeeditor": ^4.4.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/documentsearch": ^4.4.0-beta.1 - "@jupyterlab/nbformat": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/codeeditor": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/documentsearch": ^4.4.0-beta.2 + "@jupyterlab/nbformat": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 "@lezer/common": ^1.2.1 "@lezer/generator": ^1.7.0 "@lezer/highlight": ^1.2.0 @@ -489,38 +489,38 @@ __metadata: "@lumino/disposable": ^2.1.3 "@lumino/signaling": ^2.1.3 yjs: ^13.5.40 - checksum: ba399e75f7d953190481cb7b9f6138b4ba78f4c7ee1a0dfa054d22d4657ba6c8ce255c415e010dd00a1e9a8bb867b57b071ca222f7ea6de62ed02218e85a2c89 + checksum: 0ce42460c6937cf39bc15a8c5b7f03a876b5f7d72aa6ae5dbf1ed964042199f427393c989702ff12eca48353a0912ad4581d8892269b1131052a75abf63c7bcb languageName: node linkType: hard -"@jupyterlab/console@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/console@npm:4.4.0-beta.1" +"@jupyterlab/console@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/console@npm:4.4.0-beta.2" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/cells": ^4.4.0-beta.1 - "@jupyterlab/codeeditor": ^4.4.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/nbformat": ^4.4.0-beta.1 - "@jupyterlab/observables": ^5.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/cells": ^4.4.0-beta.2 + "@jupyterlab/codeeditor": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/nbformat": ^4.4.0-beta.2 + "@jupyterlab/observables": ^5.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/dragdrop": ^2.1.5 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: 4f224532551491690cc990a0e3a126fdbbb6714857d2afbf27c9111232fe3829b75a8c8e0231942b843a2216f08757e11d486010fc9f36ff4327017948afd05c + checksum: d509f4bac4458c14596e86210dc8459f31a8c686a5c09d1d89f1335bbf43711e1fb0baa1679fc83184709f69e4d8a4d219d324a7796849cad63404bb722bf17b languageName: node linkType: hard -"@jupyterlab/coreutils@npm:^6.4.0-beta.1": - version: 6.4.0-beta.1 - resolution: "@jupyterlab/coreutils@npm:6.4.0-beta.1" +"@jupyterlab/coreutils@npm:^6.4.0-beta.2": + version: 6.4.0-beta.2 + resolution: "@jupyterlab/coreutils@npm:6.4.0-beta.2" dependencies: "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -528,33 +528,33 @@ __metadata: minimist: ~1.2.0 path-browserify: ^1.0.0 url-parse: ~1.5.4 - checksum: 7314cea4dedd89b26bf297c3735135315814e66d7d877c301c39f7c4cab7622e7806ae81f053e718adc2b5c21b00fb67071c6af52062c371535b734ffa6e4bb0 + checksum: fb2ef02d4308e2159f93300a862781f4c146f866dcbb6c9379081fa35ec13d9972003ee8d7b7aab8f7b620abfb14f4974a6bd8554085d4e3541e8c9a7da6624c languageName: node linkType: hard -"@jupyterlab/debugger@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/debugger@npm:4.4.0-beta.1" +"@jupyterlab/debugger@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/debugger@npm:4.4.0-beta.2" dependencies: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/react-components": ^0.16.6 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/cells": ^4.4.0-beta.1 - "@jupyterlab/codeeditor": ^4.4.0-beta.1 - "@jupyterlab/codemirror": ^4.4.0-beta.1 - "@jupyterlab/console": ^4.4.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/docregistry": ^4.4.0-beta.1 - "@jupyterlab/fileeditor": ^4.4.0-beta.1 - "@jupyterlab/notebook": ^4.4.0-beta.1 - "@jupyterlab/observables": ^5.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/cells": ^4.4.0-beta.2 + "@jupyterlab/codeeditor": ^4.4.0-beta.2 + "@jupyterlab/codemirror": ^4.4.0-beta.2 + "@jupyterlab/console": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/docregistry": ^4.4.0-beta.2 + "@jupyterlab/fileeditor": ^4.4.0-beta.2 + "@jupyterlab/notebook": ^4.4.0-beta.2 + "@jupyterlab/observables": ^5.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -566,22 +566,22 @@ __metadata: "@lumino/widgets": ^2.6.0 "@vscode/debugprotocol": ^1.51.0 react: ^18.2.0 - checksum: d3938013248d559e77da67229ec3a676515445de9a5af85d451d0d6d128ff4d3456e9a97a13f63e850c993996aab1371557bd209ecbd6b0eba181ecdf53354a8 + checksum: 08e96574fb541a20038fcaa57a5b95e59ab2f7f3805fdc950a76aaefbeaa02d4fd9fe7009562009896d9c629e5626d86baa5bc943a4b013fc759529b5acdfd93 languageName: node linkType: hard -"@jupyterlab/docmanager@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/docmanager@npm:4.4.0-beta.1" +"@jupyterlab/docmanager@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/docmanager@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/docregistry": ^4.4.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/statedb": ^4.4.0-beta.1 - "@jupyterlab/statusbar": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/docregistry": ^4.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/statedb": ^4.4.0-beta.2 + "@jupyterlab/statusbar": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -591,24 +591,24 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 743ec2e90ffc44b7ff2c5a0fb80da04dc36fb41788961fcab5f983b9b009e718e892651370255f1f1bbfa641d02cc6bc75cee176ad4919031bd2094d6c70ffd8 + checksum: 2854681c32d7c56d3f39ddaed62c2e86564666782d48cecc5ad6984892cdecbb35a9e795d20faed7e843930b14795548db7c890631c91570c7734c95e29dd903 languageName: node linkType: hard -"@jupyterlab/docregistry@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/docregistry@npm:4.4.0-beta.1" +"@jupyterlab/docregistry@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/docregistry@npm:4.4.0-beta.2" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/codeeditor": ^4.4.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/observables": ^5.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/codeeditor": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/observables": ^5.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -617,17 +617,17 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: b90b8b4f9675562bff74ae7f0a0895c7c0b06c598a9beef38dec5c720d831e5cfb75f0f65a733b02b60e4e6b56989cf1246c334170a4bfcb5c54d98e45b291db + checksum: 1638511375840016304b08cbe2d700e9d680676c359beae70fc3ebe3d375ac73b898185f4d1d607e0f358c2be3ac843c78b7f1ba458c23cc2f5134692fc1e8a1 languageName: node linkType: hard -"@jupyterlab/documentsearch@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/documentsearch@npm:4.4.0-beta.1" +"@jupyterlab/documentsearch@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/documentsearch@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -636,23 +636,23 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 908c56e5dec9d6eb1ea3b2fd016726687b509dbe83b5b17869ae534b89a68e372c84eed5138892e0be070d043ebfd9af86cda241120ddde9547aa94e404f8d35 + checksum: 0ac5b4c2e068a0d40afd263ec763e29a5ee095b6359298a779aee50a7cea539d92fb9f623ef70a009535e15818028eac17a7e1c743a866f7918270da9c10bbea languageName: node linkType: hard -"@jupyterlab/filebrowser@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/filebrowser@npm:4.4.0-beta.1" +"@jupyterlab/filebrowser@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/filebrowser@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/docmanager": ^4.4.0-beta.1 - "@jupyterlab/docregistry": ^4.4.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/statedb": ^4.4.0-beta.1 - "@jupyterlab/statusbar": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/docmanager": ^4.4.0-beta.2 + "@jupyterlab/docregistry": ^4.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/statedb": ^4.4.0-beta.2 + "@jupyterlab/statusbar": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -664,49 +664,49 @@ __metadata: "@lumino/virtualdom": ^2.0.2 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 25497fce13a09f6141c932a534e73f88806e9859ef7a1673f2be02e2ff4e1da64425100d1f17bcd990b45b06ca616e3f0ebc2cd286d587a75ca0c85e5ab7770a + checksum: e0f4c9977df3c3ceeebd495e7a18566dc09378902e662963e7aef9bcf6e759089faeb7971537cb7a2296e25da1b15d1247fa5baa090f8f10f9fd321a36a573f7 languageName: node linkType: hard -"@jupyterlab/fileeditor@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/fileeditor@npm:4.4.0-beta.1" +"@jupyterlab/fileeditor@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/fileeditor@npm:4.4.0-beta.2" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/codeeditor": ^4.4.0-beta.1 - "@jupyterlab/codemirror": ^4.4.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/docregistry": ^4.4.0-beta.1 - "@jupyterlab/documentsearch": ^4.4.0-beta.1 - "@jupyterlab/lsp": ^4.4.0-beta.1 - "@jupyterlab/statusbar": ^4.4.0-beta.1 - "@jupyterlab/toc": ^6.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/codeeditor": ^4.4.0-beta.2 + "@jupyterlab/codemirror": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/docregistry": ^4.4.0-beta.2 + "@jupyterlab/documentsearch": ^4.4.0-beta.2 + "@jupyterlab/lsp": ^4.4.0-beta.2 + "@jupyterlab/statusbar": ^4.4.0-beta.2 + "@jupyterlab/toc": ^6.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/widgets": ^2.6.0 react: ^18.2.0 regexp-match-indices: ^1.0.2 - checksum: 7e389aa971614fe58491122c17eab99164b488d7829badf7e7181aacd23c5876ac703afd8a7b0cb6549dd19d936b3e491c844021d9dc67f11e7d0331ee9d0caa + checksum: 921a42d927d6454f6d0673fd53b589e08b86d37502f6ca4c7a80965bd37636b316f4cbce73668b02e84c4f0ebdb4f9f5aba11e3e5e52a082bbfe19cbb32d2fc7 languageName: node linkType: hard -"@jupyterlab/galata@npm:~5.4.0-beta.1": - version: 5.4.0-beta.1 - resolution: "@jupyterlab/galata@npm:5.4.0-beta.1" +"@jupyterlab/galata@npm:~5.4.0-beta.2": + version: 5.4.0-beta.2 + resolution: "@jupyterlab/galata@npm:5.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/debugger": ^4.4.0-beta.1 - "@jupyterlab/docmanager": ^4.4.0-beta.1 - "@jupyterlab/nbformat": ^4.4.0-beta.1 - "@jupyterlab/notebook": ^4.4.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/debugger": ^4.4.0-beta.2 + "@jupyterlab/docmanager": ^4.4.0-beta.2 + "@jupyterlab/nbformat": ^4.4.0-beta.2 + "@jupyterlab/notebook": ^4.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 "@playwright/test": ^1.51.0 "@stdlib/stats": ~0.0.13 @@ -717,21 +717,21 @@ __metadata: vega: ^5.20.0 vega-lite: ^5.6.1 vega-statistics: ^1.7.9 - checksum: 6204c22fe65378da16982db9bf1ca6f1abbb14a95957d4baa85d3c88715d3ed04b1eb57cbf59932aff52516456cde0b06ea162a4bf166c03a40d4ec2722478d5 + checksum: 267da5192568514dd54d590641a8bc1001330ecfedea0f85fce1647a779e4d60a69f7eee38b1ba274c3cec2468fc1e3273e7a72e2be3bf91d878618cb9e97df4 languageName: node linkType: hard -"@jupyterlab/lsp@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/lsp@npm:4.4.0-beta.1" +"@jupyterlab/lsp@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/lsp@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/codeeditor": ^4.4.0-beta.1 - "@jupyterlab/codemirror": ^4.4.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/docregistry": ^4.4.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/codeeditor": ^4.4.0-beta.2 + "@jupyterlab/codemirror": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/docregistry": ^4.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/signaling": ^2.1.3 @@ -740,7 +740,7 @@ __metadata: vscode-jsonrpc: ^6.0.0 vscode-languageserver-protocol: ^3.17.0 vscode-ws-jsonrpc: ~1.0.2 - checksum: b05f41e1ff95622470e63c759f9d3057e9c5588ae69f521f1b8df064df7502d67f82a2bb2138c584efceedf425cdc41ff9523f88b6025e6e43bd14b836c2c61f + checksum: 4670e1f4779485f7618df36b42d9515ed21e9774c32b83387e55f46afc94c787f744cab689e4eeee4764e03c9fdb2cd5e967226dda23f2d1f0b283323763caed languageName: node linkType: hard @@ -753,37 +753,37 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/nbformat@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/nbformat@npm:4.4.0-beta.1" +"@jupyterlab/nbformat@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/nbformat@npm:4.4.0-beta.2" dependencies: "@lumino/coreutils": ^2.2.0 - checksum: 761245ab4b4895c7d4ae31f92cb593d8493ca7c14c632a01699b86028f269c330652d53374cb71793090015369e65722343188143823e7e2b48ef8f7f7781f1d + checksum: b45e4d87bacb742968596736edaa099337303c840a727545e068a2a8a43e642c22e13c68caea2abc20c93dec1eb931ad7a6ce497e9c9689fcd08ecdc7eddf788 languageName: node linkType: hard -"@jupyterlab/notebook@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/notebook@npm:4.4.0-beta.1" +"@jupyterlab/notebook@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/notebook@npm:4.4.0-beta.2" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/cells": ^4.4.0-beta.1 - "@jupyterlab/codeeditor": ^4.4.0-beta.1 - "@jupyterlab/codemirror": ^4.4.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/docregistry": ^4.4.0-beta.1 - "@jupyterlab/documentsearch": ^4.4.0-beta.1 - "@jupyterlab/lsp": ^4.4.0-beta.1 - "@jupyterlab/nbformat": ^4.4.0-beta.1 - "@jupyterlab/observables": ^5.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/statusbar": ^4.4.0-beta.1 - "@jupyterlab/toc": ^6.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/cells": ^4.4.0-beta.2 + "@jupyterlab/codeeditor": ^4.4.0-beta.2 + "@jupyterlab/codemirror": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/docregistry": ^4.4.0-beta.2 + "@jupyterlab/documentsearch": ^4.4.0-beta.2 + "@jupyterlab/lsp": ^4.4.0-beta.2 + "@jupyterlab/nbformat": ^4.4.0-beta.2 + "@jupyterlab/observables": ^5.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/statusbar": ^4.4.0-beta.2 + "@jupyterlab/toc": ^6.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -796,34 +796,34 @@ __metadata: "@lumino/virtualdom": ^2.0.2 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: dda82ad30ffe3420c73785adb7a20cb1d2e71295b64fd69241caf525194f5e629fb58728313b0fe4bd653b8b304c17aadb2788637bde7ff907786d111bc0586b + checksum: e2beaf97c37006f4f166b7acb7a230d493d524f8d6f4ecf8c9dd0262106041cd2af07a26a100c33bae63f1a656a7dd30e1fd334d463207c0bb9e1762f1daa204 languageName: node linkType: hard -"@jupyterlab/observables@npm:^5.4.0-beta.1": - version: 5.4.0-beta.1 - resolution: "@jupyterlab/observables@npm:5.4.0-beta.1" +"@jupyterlab/observables@npm:^5.4.0-beta.2": + version: 5.4.0-beta.2 + resolution: "@jupyterlab/observables@npm:5.4.0-beta.2" dependencies: "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 - checksum: 8e3a229ec562cfe35d4dbb77381b54779908736ccee7fcebc58a3a50296764bae13fd7017882c45b0d00e5044631aeedde1343931e7f3d300db795238dd3fd5e + checksum: 4f05a240b612329d6dc99a77ead91e94ef7124ab84d38ccd52aa54116e96c49d6ed40fb6ca04158681bcdc2be333168624ef64fd06f9f6e163cd16849846e1bd languageName: node linkType: hard -"@jupyterlab/outputarea@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/outputarea@npm:4.4.0-beta.1" +"@jupyterlab/outputarea@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/outputarea@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/nbformat": ^4.4.0-beta.1 - "@jupyterlab/observables": ^5.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/nbformat": ^4.4.0-beta.2 + "@jupyterlab/observables": ^5.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -831,65 +831,65 @@ __metadata: "@lumino/properties": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: cb9dd129c7a142e3876a9a7402bb75ee82be90fa4c8d462b070714fe21a2303fe945ecc27560b24b3d6f33cb6d5ee83e6dff5e19150a277db21f9c3b6b4f0ad9 + checksum: 375ce7852acd4ed97a9ebe83ab534effdd9a89ca24ba871d8074e8b0320f0cdd4796511072ff641ccc934d491d476edd4258af3615af64fc0d3e9445e397b0dc languageName: node linkType: hard -"@jupyterlab/rendermime-interfaces@npm:^3.12.0-beta.1": - version: 3.12.0-beta.1 - resolution: "@jupyterlab/rendermime-interfaces@npm:3.12.0-beta.1" +"@jupyterlab/rendermime-interfaces@npm:^3.12.0-beta.2": + version: 3.12.0-beta.2 + resolution: "@jupyterlab/rendermime-interfaces@npm:3.12.0-beta.2" dependencies: "@lumino/coreutils": ^1.11.0 || ^2.2.0 "@lumino/widgets": ^1.37.2 || ^2.6.0 - checksum: a357e6bbda886f6c4ac0e3852f8ae7486d27217e58961444c372232b6edf54ead62b18e37d673f86ce3aa115ed5675d815dcd8e49541d21e6309e73c8ce33d80 + checksum: 85fadd071970a324445db5b5d350e17414d8d9b228cfd93bac39654737ff82bbf6a0b65c279c367c7d901c6019c480b2b31d6b91fcedb64396c6487be5d40add languageName: node linkType: hard -"@jupyterlab/rendermime@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/rendermime@npm:4.4.0-beta.1" +"@jupyterlab/rendermime@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/rendermime@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/nbformat": ^4.4.0-beta.1 - "@jupyterlab/observables": ^5.4.0-beta.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/nbformat": ^4.4.0-beta.2 + "@jupyterlab/observables": ^5.4.0-beta.2 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 lodash.escape: ^4.0.1 - checksum: f46d9b9d271ba448c548462b885a4531a0494781fcdabaedba4cfbfa1b9cbb76c37242cbfffc08b52b67de3434ca4613f3cfd736ab09d58d92463918f62a7fd0 + checksum: 761d3ed8bca2fe606198aa735feaaf18e3081ae81b53f10cb3cc12edb2c360cee28c5cb864cba3aa06ba303b9cd36b90672986c1cac3fb7ad53a3240a9b08f0e languageName: node linkType: hard -"@jupyterlab/services@npm:^7.4.0-beta.1": - version: 7.4.0-beta.1 - resolution: "@jupyterlab/services@npm:7.4.0-beta.1" +"@jupyterlab/services@npm:^7.4.0-beta.2": + version: 7.4.0-beta.2 + resolution: "@jupyterlab/services@npm:7.4.0-beta.2" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/nbformat": ^4.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/statedb": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/nbformat": ^4.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/statedb": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/polling": ^2.1.3 "@lumino/properties": ^2.0.2 "@lumino/signaling": ^2.1.3 ws: ^8.11.0 - checksum: c9119f3182a4c85631f8c3f0170265165fb6023eb55ee1ff1bfbaac23c283eb8a1aeaadbd87749585723b582a6edf404915f3ffa4f715b61065ed521935679a3 + checksum: 88f3f4d2f9ff9e305a357b10152d280b45e3592beb7188ecab2430b0248da3b4ed4f20d98431c42ea5df21e6f0652e66095fd52bf0f0e014922f4572d5d9d11b languageName: node linkType: hard -"@jupyterlab/settingregistry@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/settingregistry@npm:4.4.0-beta.1" +"@jupyterlab/settingregistry@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/settingregistry@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/nbformat": ^4.4.0-beta.1 - "@jupyterlab/statedb": ^4.4.0-beta.1 + "@jupyterlab/nbformat": ^4.4.0-beta.2 + "@jupyterlab/statedb": ^4.4.0-beta.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -899,28 +899,28 @@ __metadata: json5: ^2.2.3 peerDependencies: react: ">=16" - checksum: 37630b667768dc0f5ceb01a149d4f1c7bdceca85e7d83e5e5f5fbfe75781e02e351257310a43f841c291756e46891a870715c01382c56f927a3a481bed2179d3 + checksum: 0910683251322d1b90722815fc0c79c7f0004a472dafaff39515f8a7ee95149e1bb3ebd728425e21005fa9f1aadb6e0df2a5f53706462d5bb4ef94978b0d5858 languageName: node linkType: hard -"@jupyterlab/statedb@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/statedb@npm:4.4.0-beta.1" +"@jupyterlab/statedb@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/statedb@npm:4.4.0-beta.2" dependencies: "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/properties": ^2.0.2 "@lumino/signaling": ^2.1.3 - checksum: 57f67cbc2997b607bd29c0cb96a38d5215602e74caa6d776de5f34900f81b56e967843b30b298951ae10af8157c9cbf5ce9166c72dfd8295264c73846e2dbfef + checksum: 4e634b6f4f76a9f38f6ff47cc666aa0e1d3deeeea06eb163ae1cf722b46a772ade34ecaa8a56f88aa41d8fbbc50a7ba69a55557f7236b3f7023dbd850d41b902 languageName: node linkType: hard -"@jupyterlab/statusbar@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/statusbar@npm:4.4.0-beta.1" +"@jupyterlab/statusbar@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/statusbar@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -928,56 +928,56 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: f9f3c6d485cee429bdae7b57df51891a95146cd9e8ddbd5136ba35ab421e8b48d7fabf007240f51fe931cb432358e237c7eac17b84fda8bf4a58bd0b2d9d00b1 + checksum: 942d2cbc84619dc1f03e52049293950b42d9101537f6724bc0955c82fa7b707958bc2f050885e5dab39d5361edc18c1053e2567c5402b8c86eb63d357d1a29f3 languageName: node linkType: hard -"@jupyterlab/toc@npm:^6.4.0-beta.1": - version: 6.4.0-beta.1 - resolution: "@jupyterlab/toc@npm:6.4.0-beta.1" +"@jupyterlab/toc@npm:^6.4.0-beta.2": + version: 6.4.0-beta.2 + resolution: "@jupyterlab/toc@npm:6.4.0-beta.2" dependencies: "@jupyter/react-components": ^0.16.6 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/docregistry": ^4.4.0-beta.1 - "@jupyterlab/observables": ^5.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/docregistry": ^4.4.0-beta.2 + "@jupyterlab/observables": ^5.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 6f47b17b8de4ee7cc7543650f139795956dee1f29c5f475cefa380b1ce089fe366d5a6220a8a346674399c1dfc02b742e3cb88e613ff8c00967c343f2dbbe062 + checksum: 1ecbcf1948132852378dc6e99e3988602df5fd3730f472fae2ce33098855832b3ab46ed4850223a014aae57da492e054d2188616904df9b7bbfbe576783034f8 languageName: node linkType: hard -"@jupyterlab/translation@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/translation@npm:4.4.0-beta.1" +"@jupyterlab/translation@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/translation@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/statedb": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/statedb": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 - checksum: e35b5fde5c154eb136b1de8263b0de4b5b6eb5b28b64af19d399f048aca4d7cc6f4e2f1032f3b402f150da814c12d2750a4c8514c09f7f3c99f3b2b45670a8d4 + checksum: 92ed4804dd1955e5d6d9be78d7d31f7155997d0cb01d44493c70502d5fdb1b8a9a5aedc93e38a14c0e6874fc1322038f7e97e3eeb1b123f3ded53b8e533bcb49 languageName: node linkType: hard -"@jupyterlab/ui-components@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/ui-components@npm:4.4.0-beta.1" +"@jupyterlab/ui-components@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/ui-components@npm:4.4.0-beta.2" dependencies: "@jupyter/react-components": ^0.16.6 "@jupyter/web-components": ^0.16.6 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/observables": ^5.4.0-beta.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/observables": ^5.4.0-beta.2 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -995,7 +995,7 @@ __metadata: typestyle: ^2.0.4 peerDependencies: react: ^18.2.0 - checksum: d30bab6b13e76ec1bf6715cc07531f6e59c3c92bf8d3a4344e27a6ddb22eeb3aa6b99b8cd1084532ccdde9b9154aecd4851a8957d175dbd8fc768f9e054af5b5 + checksum: 8b1a3473058ce3f82d03497114046a21e53f1a5c6a7b3295431d79f67ea001c9272620a16f59812b4d08a450f9f9f48104092a3710bd3f337de29e03b39dab55 languageName: node linkType: hard diff --git a/yarn.lock b/yarn.lock index a5bfa345af..18929c65e7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2142,55 +2142,55 @@ __metadata: "@jupyter-notebook/tree": ^7.4.0-beta.1 "@jupyter-notebook/tree-extension": ^7.4.0-beta.1 "@jupyter-notebook/ui-components": ^7.4.0-beta.1 - "@jupyterlab/application-extension": ~4.4.0-beta.1 - "@jupyterlab/apputils-extension": ~4.4.0-beta.1 - "@jupyterlab/attachments": ~4.4.0-beta.1 - "@jupyterlab/builder": ~4.4.0-beta.1 - "@jupyterlab/buildutils": ~4.4.0-beta.1 - "@jupyterlab/cell-toolbar-extension": ~4.4.0-beta.1 - "@jupyterlab/celltags-extension": ~4.4.0-beta.1 - "@jupyterlab/codemirror": ~4.4.0-beta.1 - "@jupyterlab/codemirror-extension": ~4.4.0-beta.1 - "@jupyterlab/completer-extension": ~4.4.0-beta.1 - "@jupyterlab/console-extension": ~4.4.0-beta.1 - "@jupyterlab/coreutils": ~6.4.0-beta.1 - "@jupyterlab/csvviewer-extension": ~4.4.0-beta.1 - "@jupyterlab/debugger-extension": ~4.4.0-beta.1 - "@jupyterlab/docmanager-extension": ~4.4.0-beta.1 - "@jupyterlab/documentsearch-extension": ~4.4.0-beta.1 - "@jupyterlab/extensionmanager-extension": ~4.4.0-beta.1 - "@jupyterlab/filebrowser-extension": ~4.4.0-beta.1 - "@jupyterlab/fileeditor-extension": ~4.4.0-beta.1 - "@jupyterlab/help-extension": ~4.4.0-beta.1 - "@jupyterlab/htmlviewer-extension": ~4.4.0-beta.1 - "@jupyterlab/hub-extension": ~4.4.0-beta.1 - "@jupyterlab/imageviewer-extension": ~4.4.0-beta.1 - "@jupyterlab/javascript-extension": ~4.4.0-beta.1 - "@jupyterlab/json-extension": ~4.4.0-beta.1 - "@jupyterlab/lsp": ~4.4.0-beta.1 - "@jupyterlab/lsp-extension": ~4.4.0-beta.1 - "@jupyterlab/mainmenu-extension": ~4.4.0-beta.1 - "@jupyterlab/markdownviewer-extension": ~4.4.0-beta.1 - "@jupyterlab/markedparser-extension": ~4.4.0-beta.1 - "@jupyterlab/mathjax-extension": ~4.4.0-beta.1 - "@jupyterlab/mermaid-extension": ~4.4.0-beta.1 - "@jupyterlab/metadataform-extension": ~4.4.0-beta.1 - "@jupyterlab/notebook-extension": ~4.4.0-beta.1 - "@jupyterlab/pdf-extension": ~4.4.0-beta.1 - "@jupyterlab/pluginmanager-extension": ~4.4.0-beta.1 - "@jupyterlab/running-extension": ~4.4.0-beta.1 - "@jupyterlab/settingeditor": ~4.4.0-beta.1 - "@jupyterlab/settingeditor-extension": ~4.4.0-beta.1 - "@jupyterlab/shortcuts-extension": ~5.2.0-beta.1 - "@jupyterlab/terminal-extension": ~4.4.0-beta.1 - "@jupyterlab/theme-dark-extension": ~4.4.0-beta.1 - "@jupyterlab/theme-dark-high-contrast-extension": ~4.4.0-beta.1 - "@jupyterlab/theme-light-extension": ~4.4.0-beta.1 - "@jupyterlab/toc-extension": ~6.4.0-beta.1 - "@jupyterlab/tooltip-extension": ~4.4.0-beta.1 - "@jupyterlab/translation-extension": ~4.4.0-beta.1 - "@jupyterlab/ui-components-extension": ~4.4.0-beta.1 - "@jupyterlab/vega5-extension": ~4.4.0-beta.1 + "@jupyterlab/application-extension": ~4.4.0-beta.2 + "@jupyterlab/apputils-extension": ~4.4.0-beta.2 + "@jupyterlab/attachments": ~4.4.0-beta.2 + "@jupyterlab/builder": ~4.4.0-beta.2 + "@jupyterlab/buildutils": ~4.4.0-beta.2 + "@jupyterlab/cell-toolbar-extension": ~4.4.0-beta.2 + "@jupyterlab/celltags-extension": ~4.4.0-beta.2 + "@jupyterlab/codemirror": ~4.4.0-beta.2 + "@jupyterlab/codemirror-extension": ~4.4.0-beta.2 + "@jupyterlab/completer-extension": ~4.4.0-beta.2 + "@jupyterlab/console-extension": ~4.4.0-beta.2 + "@jupyterlab/coreutils": ~6.4.0-beta.2 + "@jupyterlab/csvviewer-extension": ~4.4.0-beta.2 + "@jupyterlab/debugger-extension": ~4.4.0-beta.2 + "@jupyterlab/docmanager-extension": ~4.4.0-beta.2 + "@jupyterlab/documentsearch-extension": ~4.4.0-beta.2 + "@jupyterlab/extensionmanager-extension": ~4.4.0-beta.2 + "@jupyterlab/filebrowser-extension": ~4.4.0-beta.2 + "@jupyterlab/fileeditor-extension": ~4.4.0-beta.2 + "@jupyterlab/help-extension": ~4.4.0-beta.2 + "@jupyterlab/htmlviewer-extension": ~4.4.0-beta.2 + "@jupyterlab/hub-extension": ~4.4.0-beta.2 + "@jupyterlab/imageviewer-extension": ~4.4.0-beta.2 + "@jupyterlab/javascript-extension": ~4.4.0-beta.2 + "@jupyterlab/json-extension": ~4.4.0-beta.2 + "@jupyterlab/lsp": ~4.4.0-beta.2 + "@jupyterlab/lsp-extension": ~4.4.0-beta.2 + "@jupyterlab/mainmenu-extension": ~4.4.0-beta.2 + "@jupyterlab/markdownviewer-extension": ~4.4.0-beta.2 + "@jupyterlab/markedparser-extension": ~4.4.0-beta.2 + "@jupyterlab/mathjax-extension": ~4.4.0-beta.2 + "@jupyterlab/mermaid-extension": ~4.4.0-beta.2 + "@jupyterlab/metadataform-extension": ~4.4.0-beta.2 + "@jupyterlab/notebook-extension": ~4.4.0-beta.2 + "@jupyterlab/pdf-extension": ~4.4.0-beta.2 + "@jupyterlab/pluginmanager-extension": ~4.4.0-beta.2 + "@jupyterlab/running-extension": ~4.4.0-beta.2 + "@jupyterlab/settingeditor": ~4.4.0-beta.2 + "@jupyterlab/settingeditor-extension": ~4.4.0-beta.2 + "@jupyterlab/shortcuts-extension": ~5.2.0-beta.2 + "@jupyterlab/terminal-extension": ~4.4.0-beta.2 + "@jupyterlab/theme-dark-extension": ~4.4.0-beta.2 + "@jupyterlab/theme-dark-high-contrast-extension": ~4.4.0-beta.2 + "@jupyterlab/theme-light-extension": ~4.4.0-beta.2 + "@jupyterlab/toc-extension": ~6.4.0-beta.2 + "@jupyterlab/tooltip-extension": ~4.4.0-beta.2 + "@jupyterlab/translation-extension": ~4.4.0-beta.2 + "@jupyterlab/ui-components-extension": ~4.4.0-beta.2 + "@jupyterlab/vega5-extension": ~4.4.0-beta.2 "@types/rimraf": ^3.0.2 css-loader: ~5.0.1 extra-watch-webpack-plugin: ^1.0.3 @@ -2219,17 +2219,17 @@ __metadata: dependencies: "@jupyter-notebook/application": ^7.4.0-beta.1 "@jupyter-notebook/ui-components": ^7.4.0-beta.1 - "@jupyterlab/application": ~4.4.0-beta.1 - "@jupyterlab/apputils": ~4.5.0-beta.1 - "@jupyterlab/codeeditor": ~4.4.0-beta.1 - "@jupyterlab/console": ~4.4.0-beta.1 - "@jupyterlab/coreutils": ~6.4.0-beta.1 - "@jupyterlab/docmanager": ~4.4.0-beta.1 - "@jupyterlab/docregistry": ~4.4.0-beta.1 - "@jupyterlab/mainmenu": ~4.4.0-beta.1 - "@jupyterlab/rendermime": ~4.4.0-beta.1 - "@jupyterlab/settingregistry": ~4.4.0-beta.1 - "@jupyterlab/translation": ~4.4.0-beta.1 + "@jupyterlab/application": ~4.4.0-beta.2 + "@jupyterlab/apputils": ~4.5.0-beta.2 + "@jupyterlab/codeeditor": ~4.4.0-beta.2 + "@jupyterlab/console": ~4.4.0-beta.2 + "@jupyterlab/coreutils": ~6.4.0-beta.2 + "@jupyterlab/docmanager": ~4.4.0-beta.2 + "@jupyterlab/docregistry": ~4.4.0-beta.2 + "@jupyterlab/mainmenu": ~4.4.0-beta.2 + "@jupyterlab/rendermime": ~4.4.0-beta.2 + "@jupyterlab/settingregistry": ~4.4.0-beta.2 + "@jupyterlab/translation": ~4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/widgets": ^2.5.0 @@ -2244,12 +2244,12 @@ __metadata: dependencies: "@babel/core": ^7.11.6 "@babel/preset-env": ^7.12.1 - "@jupyterlab/application": ~4.4.0-beta.1 - "@jupyterlab/coreutils": ~6.4.0-beta.1 - "@jupyterlab/docregistry": ~4.4.0-beta.1 - "@jupyterlab/rendermime-interfaces": ~3.12.0-beta.1 + "@jupyterlab/application": ~4.4.0-beta.2 + "@jupyterlab/coreutils": ~6.4.0-beta.2 + "@jupyterlab/docregistry": ~4.4.0-beta.2 + "@jupyterlab/rendermime-interfaces": ~3.12.0-beta.2 "@jupyterlab/testutils": ~4.3.2 - "@jupyterlab/ui-components": ~4.4.0-beta.1 + "@jupyterlab/ui-components": ~4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 @@ -2268,7 +2268,7 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyter-notebook/buildutils@workspace:buildutils" dependencies: - "@jupyterlab/buildutils": ~4.4.0-beta.1 + "@jupyterlab/buildutils": ~4.4.0-beta.2 "@types/fs-extra": ^9.0.10 "@types/node": ^22.13.4 "@types/semver": ^7.5.8 @@ -2285,9 +2285,9 @@ __metadata: resolution: "@jupyter-notebook/console-extension@workspace:packages/console-extension" dependencies: "@jupyter-notebook/application": ^7.4.0-beta.1 - "@jupyterlab/application": ~4.4.0-beta.1 - "@jupyterlab/console": ~4.4.0-beta.1 - "@jupyterlab/coreutils": ~6.4.0-beta.1 + "@jupyterlab/application": ~4.4.0-beta.2 + "@jupyterlab/console": ~4.4.0-beta.2 + "@jupyterlab/coreutils": ~6.4.0-beta.2 "@lumino/algorithm": ^2.0.2 rimraf: ^3.0.2 typescript: ~5.5.4 @@ -2299,11 +2299,11 @@ __metadata: resolution: "@jupyter-notebook/docmanager-extension@workspace:packages/docmanager-extension" dependencies: "@jupyter-notebook/application": ^7.4.0-beta.1 - "@jupyterlab/application": ~4.4.0-beta.1 - "@jupyterlab/coreutils": ~6.4.0-beta.1 - "@jupyterlab/docmanager": ~4.4.0-beta.1 - "@jupyterlab/docregistry": ~4.4.0-beta.1 - "@jupyterlab/services": ~7.4.0-beta.1 + "@jupyterlab/application": ~4.4.0-beta.2 + "@jupyterlab/coreutils": ~6.4.0-beta.2 + "@jupyterlab/docmanager": ~4.4.0-beta.2 + "@jupyterlab/docregistry": ~4.4.0-beta.2 + "@jupyterlab/services": ~7.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/signaling": ^2.1.3 rimraf: ^3.0.2 @@ -2316,8 +2316,8 @@ __metadata: resolution: "@jupyter-notebook/documentsearch-extension@workspace:packages/documentsearch-extension" dependencies: "@jupyter-notebook/application": ^7.4.0-beta.1 - "@jupyterlab/application": ~4.4.0-beta.1 - "@jupyterlab/documentsearch": ~4.4.0-beta.1 + "@jupyterlab/application": ~4.4.0-beta.2 + "@jupyterlab/documentsearch": ~4.4.0-beta.2 "@lumino/widgets": ^2.5.0 rimraf: ^3.0.2 typescript: ~5.5.4 @@ -2329,10 +2329,10 @@ __metadata: resolution: "@jupyter-notebook/help-extension@workspace:packages/help-extension" dependencies: "@jupyter-notebook/ui-components": ^7.4.0-beta.1 - "@jupyterlab/application": ~4.4.0-beta.1 - "@jupyterlab/apputils": ~4.5.0-beta.1 - "@jupyterlab/mainmenu": ~4.4.0-beta.1 - "@jupyterlab/translation": ~4.4.0-beta.1 + "@jupyterlab/application": ~4.4.0-beta.2 + "@jupyterlab/apputils": ~4.5.0-beta.2 + "@jupyterlab/mainmenu": ~4.4.0-beta.2 + "@jupyterlab/translation": ~4.4.0-beta.2 react: ^18.2.0 react-dom: ^18.2.0 rimraf: ^3.0.2 @@ -2345,14 +2345,14 @@ __metadata: resolution: "@jupyter-notebook/lab-extension@workspace:packages/lab-extension" dependencies: "@jupyter-notebook/application": ^7.4.0-beta.1 - "@jupyterlab/application": ~4.4.0-beta.1 - "@jupyterlab/apputils": ~4.5.0-beta.1 - "@jupyterlab/builder": ~4.4.0-beta.1 - "@jupyterlab/coreutils": ~6.4.0-beta.1 - "@jupyterlab/docregistry": ~4.4.0-beta.1 - "@jupyterlab/notebook": ~4.4.0-beta.1 - "@jupyterlab/translation": ~4.4.0-beta.1 - "@jupyterlab/ui-components": ~4.4.0-beta.1 + "@jupyterlab/application": ~4.4.0-beta.2 + "@jupyterlab/apputils": ~4.5.0-beta.2 + "@jupyterlab/builder": ~4.4.0-beta.2 + "@jupyterlab/coreutils": ~6.4.0-beta.2 + "@jupyterlab/docregistry": ~4.4.0-beta.2 + "@jupyterlab/notebook": ~4.4.0-beta.2 + "@jupyterlab/translation": ~4.4.0-beta.2 + "@jupyterlab/ui-components": ~4.4.0-beta.2 "@lumino/commands": ^2.3.1 "@lumino/disposable": ^2.1.3 rimraf: ^3.0.2 @@ -2385,13 +2385,13 @@ __metadata: resolution: "@jupyter-notebook/notebook-extension@workspace:packages/notebook-extension" dependencies: "@jupyter-notebook/application": ^7.4.0-beta.1 - "@jupyterlab/application": ~4.4.0-beta.1 - "@jupyterlab/apputils": ~4.5.0-beta.1 - "@jupyterlab/cells": ~4.4.0-beta.1 - "@jupyterlab/docmanager": ~4.4.0-beta.1 - "@jupyterlab/notebook": ~4.4.0-beta.1 - "@jupyterlab/settingregistry": ~4.4.0-beta.1 - "@jupyterlab/translation": ~4.4.0-beta.1 + "@jupyterlab/application": ~4.4.0-beta.2 + "@jupyterlab/apputils": ~4.5.0-beta.2 + "@jupyterlab/cells": ~4.4.0-beta.2 + "@jupyterlab/docmanager": ~4.4.0-beta.2 + "@jupyterlab/notebook": ~4.4.0-beta.2 + "@jupyterlab/settingregistry": ~4.4.0-beta.2 + "@jupyterlab/translation": ~4.4.0-beta.2 "@lumino/polling": ^2.1.3 "@lumino/widgets": ^2.5.0 react: ^18.2.0 @@ -2405,7 +2405,7 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyter-notebook/root@workspace:." dependencies: - "@jupyterlab/buildutils": ~4.4.0-beta.1 + "@jupyterlab/buildutils": ~4.4.0-beta.2 "@typescript-eslint/eslint-plugin": ^5.55.0 "@typescript-eslint/parser": ^5.55.0 eslint: ^8.36.0 @@ -2427,9 +2427,9 @@ __metadata: resolution: "@jupyter-notebook/terminal-extension@workspace:packages/terminal-extension" dependencies: "@jupyter-notebook/application": ^7.4.0-beta.1 - "@jupyterlab/application": ~4.4.0-beta.1 - "@jupyterlab/coreutils": ~6.4.0-beta.1 - "@jupyterlab/terminal": ~4.4.0-beta.1 + "@jupyterlab/application": ~4.4.0-beta.2 + "@jupyterlab/coreutils": ~6.4.0-beta.2 + "@jupyterlab/terminal": ~4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 rimraf: ^3.0.2 typescript: ~5.5.4 @@ -2442,18 +2442,18 @@ __metadata: dependencies: "@jupyter-notebook/application": ^7.4.0-beta.1 "@jupyter-notebook/tree": ^7.4.0-beta.1 - "@jupyterlab/application": ~4.4.0-beta.1 - "@jupyterlab/apputils": ~4.5.0-beta.1 - "@jupyterlab/coreutils": ~6.4.0-beta.1 - "@jupyterlab/docmanager": ~4.4.0-beta.1 - "@jupyterlab/filebrowser": ~4.4.0-beta.1 - "@jupyterlab/mainmenu": ~4.4.0-beta.1 - "@jupyterlab/services": ~7.4.0-beta.1 - "@jupyterlab/settingeditor": ~4.4.0-beta.1 - "@jupyterlab/settingregistry": ~4.4.0-beta.1 - "@jupyterlab/statedb": ~4.4.0-beta.1 - "@jupyterlab/translation": ~4.4.0-beta.1 - "@jupyterlab/ui-components": ~4.4.0-beta.1 + "@jupyterlab/application": ~4.4.0-beta.2 + "@jupyterlab/apputils": ~4.5.0-beta.2 + "@jupyterlab/coreutils": ~6.4.0-beta.2 + "@jupyterlab/docmanager": ~4.4.0-beta.2 + "@jupyterlab/filebrowser": ~4.4.0-beta.2 + "@jupyterlab/mainmenu": ~4.4.0-beta.2 + "@jupyterlab/services": ~7.4.0-beta.2 + "@jupyterlab/settingeditor": ~4.4.0-beta.2 + "@jupyterlab/settingregistry": ~4.4.0-beta.2 + "@jupyterlab/statedb": ~4.4.0-beta.2 + "@jupyterlab/translation": ~4.4.0-beta.2 + "@jupyterlab/ui-components": ~4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/widgets": ^2.5.0 @@ -2467,17 +2467,17 @@ __metadata: resolution: "@jupyter-notebook/tree@workspace:packages/tree" dependencies: "@jupyter-notebook/application": ^7.4.0-beta.1 - "@jupyterlab/application": ~4.4.0-beta.1 - "@jupyterlab/apputils": ~4.5.0-beta.1 - "@jupyterlab/coreutils": ~6.4.0-beta.1 - "@jupyterlab/docmanager": ~4.4.0-beta.1 - "@jupyterlab/filebrowser": ~4.4.0-beta.1 - "@jupyterlab/mainmenu": ~4.4.0-beta.1 - "@jupyterlab/services": ~7.4.0-beta.1 - "@jupyterlab/settingregistry": ~4.4.0-beta.1 - "@jupyterlab/statedb": ~4.4.0-beta.1 - "@jupyterlab/translation": ~4.4.0-beta.1 - "@jupyterlab/ui-components": ~4.4.0-beta.1 + "@jupyterlab/application": ~4.4.0-beta.2 + "@jupyterlab/apputils": ~4.5.0-beta.2 + "@jupyterlab/coreutils": ~6.4.0-beta.2 + "@jupyterlab/docmanager": ~4.4.0-beta.2 + "@jupyterlab/filebrowser": ~4.4.0-beta.2 + "@jupyterlab/mainmenu": ~4.4.0-beta.2 + "@jupyterlab/services": ~7.4.0-beta.2 + "@jupyterlab/settingregistry": ~4.4.0-beta.2 + "@jupyterlab/statedb": ~4.4.0-beta.2 + "@jupyterlab/translation": ~4.4.0-beta.2 + "@jupyterlab/ui-components": ~4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -2494,7 +2494,7 @@ __metadata: "@babel/core": ^7.10.2 "@babel/preset-env": ^7.10.2 "@jupyterlab/testutils": ~4.3.2 - "@jupyterlab/ui-components": ~4.4.0-beta.1 + "@jupyterlab/ui-components": ~4.4.0-beta.2 "@types/jest": ^29.2.5 babel-loader: ^8.0.6 jest: ^29.3.1 @@ -2542,26 +2542,26 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/application-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/application-extension@npm:4.4.0-beta.1" +"@jupyterlab/application-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/application-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/property-inspector": ^4.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/statedb": ^4.4.0-beta.1 - "@jupyterlab/statusbar": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/property-inspector": ^4.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/statedb": ^4.4.0-beta.2 + "@jupyterlab/statusbar": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 457e2fce8c29c3ef8840330c84c25e080b965ce3f39a800dd7a10972bbc160b60eff957673e042a0b2291640c5e997bc58e0ea633ab583116568ae7cf7e3c0a3 + checksum: 2bef87ae31e96e4b14b244672457d74b371878e5d90c514ce0653ba2782dce23c728e7466e84d18bf71844d69aae9a45d483d25f9d128aa353538b78d85aca9b languageName: node linkType: hard @@ -2593,20 +2593,20 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/application@npm:^4.4.0-beta.1, @jupyterlab/application@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/application@npm:4.4.0-beta.1" +"@jupyterlab/application@npm:^4.4.0-beta.2, @jupyterlab/application@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/application@npm:4.4.0-beta.2" dependencies: "@fortawesome/fontawesome-free": ^5.12.0 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/docregistry": ^4.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/statedb": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/docregistry": ^4.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/statedb": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/application": ^2.4.2 "@lumino/commands": ^2.3.1 @@ -2617,27 +2617,27 @@ __metadata: "@lumino/properties": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: b077fec7cdde75c216d41b7dfb0f7054992d46292b18d195f9dc40b5ed7f3e59ea66e427e980c4f6c5a504864cb599680f8deef2f747d2bac89a4d8f5181e739 - languageName: node - linkType: hard - -"@jupyterlab/apputils-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/apputils-extension@npm:4.4.0-beta.1" - dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/docregistry": ^4.4.0-beta.1 - "@jupyterlab/mainmenu": ^4.4.0-beta.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/statedb": ^4.4.0-beta.1 - "@jupyterlab/statusbar": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 - "@jupyterlab/workspaces": ^4.4.0-beta.1 + checksum: 20042b03255bb1415d246ccdff839922c40e55d25dd687b5efec5f0be0d855932561692b15d54957c7be25007c5e248e07361f9ca303da8fc35728efcd19fc6e + languageName: node + linkType: hard + +"@jupyterlab/apputils-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/apputils-extension@npm:4.4.0-beta.2" + dependencies: + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/docregistry": ^4.4.0-beta.2 + "@jupyterlab/mainmenu": ^4.4.0-beta.2 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/statedb": ^4.4.0-beta.2 + "@jupyterlab/statusbar": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/workspaces": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -2648,7 +2648,7 @@ __metadata: react: ^18.2.0 react-dom: ^18.2.0 react-toastify: ^9.0.8 - checksum: db24bbfcb0818910caa6c3fdb18e30ddb35779ca4ed5a497eac04b0d679619e7995d44125aacf077588321c7ad319ce527f290d9a66ebced1699064cf2131214 + checksum: f64f987605bc4f574405d9400b4f635e14ec337affefeedd9900728ff22a30b9f58a53dcce04a271454c03ce1840032204d5483324433a88dbd77c9e8be01d09 languageName: node linkType: hard @@ -2681,19 +2681,19 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/apputils@npm:^4.5.0-beta.1, @jupyterlab/apputils@npm:~4.5.0-beta.1": - version: 4.5.0-beta.1 - resolution: "@jupyterlab/apputils@npm:4.5.0-beta.1" +"@jupyterlab/apputils@npm:^4.5.0-beta.2, @jupyterlab/apputils@npm:~4.5.0-beta.2": + version: 4.5.0-beta.2 + resolution: "@jupyterlab/apputils@npm:4.5.0-beta.2" dependencies: - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/observables": ^5.4.0-beta.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/statedb": ^4.4.0-beta.1 - "@jupyterlab/statusbar": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/observables": ^5.4.0-beta.2 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/statedb": ^4.4.0-beta.2 + "@jupyterlab/statusbar": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -2706,7 +2706,7 @@ __metadata: "@types/react": ^18.0.26 react: ^18.2.0 sanitize-html: ~2.12.1 - checksum: c6847491841f92f890d398c2c7756a18c39051795049172b997a8ef85ae829948b03d288f537880a756b89fcb4fc6ff6fb805b6ed1d835ac3cab1fe348431afc + checksum: 330f541763ea58a0f4b1045b148740498e884f02aa92b8aa3f908e1b7e6fe26d5c68be3520c5c6b10180eed8a9d314de286b163881005daaa1b7c355bfe0b06b languageName: node linkType: hard @@ -2724,23 +2724,23 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/attachments@npm:^4.4.0-beta.1, @jupyterlab/attachments@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/attachments@npm:4.4.0-beta.1" +"@jupyterlab/attachments@npm:^4.4.0-beta.2, @jupyterlab/attachments@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/attachments@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/nbformat": ^4.4.0-beta.1 - "@jupyterlab/observables": ^5.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 + "@jupyterlab/nbformat": ^4.4.0-beta.2 + "@jupyterlab/observables": ^5.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 "@lumino/disposable": ^2.1.3 "@lumino/signaling": ^2.1.3 - checksum: 0098ff81ed51f562001fb4c0df9559c16ec6974dc2e7d1aadbf3fe6289d441427c443ba33957e88fbc57ff48223e0bf9fe291f59de5139aca29d08fa2fcd81bb + checksum: 62e9c30ea5dba15199a410a7e7e3abe24a1b867359246e216faacb40466101ed20726057ac6dd80461f411d568894b0002d2eda314d5309f758517bd7210d752 languageName: node linkType: hard -"@jupyterlab/builder@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/builder@npm:4.4.0-beta.1" +"@jupyterlab/builder@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/builder@npm:4.4.0-beta.2" dependencies: "@lumino/algorithm": ^2.0.2 "@lumino/application": ^2.4.2 @@ -2775,13 +2775,13 @@ __metadata: worker-loader: ^3.0.2 bin: build-labextension: lib/build-labextension.js - checksum: 6b37c8707245e848563a49e2abb92b29423816e3eabd3b155efa3094269ffc8377fc0cad5636aa37f7b47cd7720a0088662b77cd10d43cc7f446631357891f8c + checksum: 253dea45bd643bffc3b46ae5398255c6a2a2e66e289363031a4e19937251bab29b20ef9776fa82ae27af3229b6cb7c2d539306e35df02e57c8a3e6cbdce84a77 languageName: node linkType: hard -"@jupyterlab/buildutils@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/buildutils@npm:4.4.0-beta.1" +"@jupyterlab/buildutils@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/buildutils@npm:4.4.0-beta.2" dependencies: "@yarnpkg/core": ^4.0.3 "@yarnpkg/parsers": ^3.0.0 @@ -2808,40 +2808,40 @@ __metadata: update-dependency: lib/update-dependency.js update-dist-tag: lib/update-dist-tag.js update-staging-lock: lib/update-staging-lock.js - checksum: 11dc99ee7f342106d6a7f05492f5db816d0c8024b03cf577a752bfdf0e38adf4a5291ba1d6aeebe4d68b280a170b96fbf4f449fffd8954e7201ea7011563175f + checksum: e825a26308d9a857ee710634bbbd25be4860ab18e9ac3981f2bd2a2e40c84507eeb5db0c1013836d186e8032f8cf8be0a692a73c197b0fd0d119f57784394139 languageName: node linkType: hard -"@jupyterlab/cell-toolbar-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/cell-toolbar-extension@npm:4.4.0-beta.1" +"@jupyterlab/cell-toolbar-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/cell-toolbar-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/cell-toolbar": ^4.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - checksum: 47211944ad2df86e07b549b7b811ce973e55c00868c552b56903deb6bd98d624b69ac5a73e4d4b3a049fe228cf12837da9251a6334cf5130094b990b1ba273f5 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/cell-toolbar": ^4.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + checksum: ad4e9dadc08ff08ce5eafe459938ba69f0ba89b55b3409c36820d0a91b81768e77d317d24e9983b38ca171bd5a211e060308433b534fb8060f5bb677439a1860 languageName: node linkType: hard -"@jupyterlab/cell-toolbar@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/cell-toolbar@npm:4.4.0-beta.1" +"@jupyterlab/cell-toolbar@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/cell-toolbar@npm:4.4.0-beta.2" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/cells": ^4.4.0-beta.1 - "@jupyterlab/docregistry": ^4.4.0-beta.1 - "@jupyterlab/notebook": ^4.4.0-beta.1 - "@jupyterlab/observables": ^5.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/cells": ^4.4.0-beta.2 + "@jupyterlab/docregistry": ^4.4.0-beta.2 + "@jupyterlab/notebook": ^4.4.0-beta.2 + "@jupyterlab/observables": ^5.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/disposable": ^2.1.3 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: 4d1324678756830db67ba759695ec26a5a26a5341da9d9804bd8dc97a7da88e4bb02f2cb0922a50e131c4d4a7ffca3d5758d205a07f615a85426df0e3012f7d2 + checksum: c2d30a35a733fa67aa8b1f7e8a45ee365906387de24deaab26a4f319d023641dcadab07b7110a3029e3a9a7aa9f3d0a652af2e2511ca3cb870d91e1113b0339f languageName: node linkType: hard @@ -2881,28 +2881,28 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/cells@npm:^4.4.0-beta.1, @jupyterlab/cells@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/cells@npm:4.4.0-beta.1" +"@jupyterlab/cells@npm:^4.4.0-beta.2, @jupyterlab/cells@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/cells@npm:4.4.0-beta.2" dependencies: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/attachments": ^4.4.0-beta.1 - "@jupyterlab/codeeditor": ^4.4.0-beta.1 - "@jupyterlab/codemirror": ^4.4.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/documentsearch": ^4.4.0-beta.1 - "@jupyterlab/filebrowser": ^4.4.0-beta.1 - "@jupyterlab/nbformat": ^4.4.0-beta.1 - "@jupyterlab/observables": ^5.4.0-beta.1 - "@jupyterlab/outputarea": ^4.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/toc": ^6.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/attachments": ^4.4.0-beta.2 + "@jupyterlab/codeeditor": ^4.4.0-beta.2 + "@jupyterlab/codemirror": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/documentsearch": ^4.4.0-beta.2 + "@jupyterlab/filebrowser": ^4.4.0-beta.2 + "@jupyterlab/nbformat": ^4.4.0-beta.2 + "@jupyterlab/observables": ^5.4.0-beta.2 + "@jupyterlab/outputarea": ^4.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/toc": ^6.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/domutils": ^2.0.2 @@ -2913,22 +2913,22 @@ __metadata: "@lumino/virtualdom": ^2.0.2 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 56dce1335e87567e771bc7612c614ee4e8f549e820eef2e5adc7c01fa7d312a0835d3d01b84f408b05674f04d31872edfc9ff160958437932d832dff066694ae + checksum: 2f70adfa7bbd56431eb60bb4360f643bb26ff3355ed43fe76f79308fa303fcc9475c650eef494bf5c04ce90f12e0f9ed512adca98205c5c1983fe504c8c2a137 languageName: node linkType: hard -"@jupyterlab/celltags-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/celltags-extension@npm:4.4.0-beta.1" +"@jupyterlab/celltags-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/celltags-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/notebook": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/notebook": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: ee753816321c789bebe24dce02bc9fad7aa5b7c4cbce12b0f301bd1996c43c81cc077f0b60f2192d14e411fb91c4e3a190b676eba903b82759e8af00e24f0c0c + checksum: d8818a464971b2bc992efbf354a3254d9fa380c7731cee51fd8108dd8c3405dfd43f347d9d04fa8c6d01d30351cd929c20567e58268daf03c0861e69d0922ac0 languageName: node linkType: hard @@ -2956,19 +2956,19 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/codeeditor@npm:^4.4.0-beta.1, @jupyterlab/codeeditor@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/codeeditor@npm:4.4.0-beta.1" +"@jupyterlab/codeeditor@npm:^4.4.0-beta.2, @jupyterlab/codeeditor@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/codeeditor@npm:4.4.0-beta.2" dependencies: "@codemirror/state": ^6.5.0 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/nbformat": ^4.4.0-beta.1 - "@jupyterlab/observables": ^5.4.0-beta.1 - "@jupyterlab/statusbar": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/nbformat": ^4.4.0-beta.2 + "@jupyterlab/observables": ^5.4.0-beta.2 + "@jupyterlab/statusbar": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/dragdrop": ^2.1.5 @@ -2976,13 +2976,13 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 4b055fe59a641252662dc3da5f8cac26091125f813a061284bb74131350abf7333395e6750cb79da71692d2d35a1deae7679c0605a050bc766f49fd8405c0c2a + checksum: 3cb25ee4ea41d84172e172a5e8bb827c4bf6e98af62cad8e5c56f409321290c2305e455f8006a149bd14d544553d60b2c5ef1bc2d9770e7de7a8a30bddbd61fc languageName: node linkType: hard -"@jupyterlab/codemirror-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/codemirror-extension@npm:4.4.0-beta.1" +"@jupyterlab/codemirror-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/codemirror-extension@npm:4.4.0-beta.2" dependencies: "@codemirror/commands": ^6.7.1 "@codemirror/lang-markdown": ^6.3.1 @@ -2991,19 +2991,19 @@ __metadata: "@codemirror/search": ^6.5.8 "@codemirror/view": ^6.35.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/codeeditor": ^4.4.0-beta.1 - "@jupyterlab/codemirror": ^4.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/statusbar": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/codeeditor": ^4.4.0-beta.2 + "@jupyterlab/codemirror": ^4.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/statusbar": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.6.0 "@rjsf/utils": ^5.13.4 "@rjsf/validator-ajv8": ^5.13.4 react: ^18.2.0 - checksum: bf8e7c0a3314a02a5725d798a0e2d63f607023341c0254a346b936162b0c88b1f95dce17d97ab7bef1d9e699a7d4f03512951fc2ce8573c5ef13978c86262770 + checksum: 691df973c6d8c6b26166edd783a3fb96de216a0ffa86e18d402e99c21418827e95636b009170fe94b4afedbb5a082e453858dced7f5e54d53ea1338d7f5c5cfa languageName: node linkType: hard @@ -3049,9 +3049,9 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/codemirror@npm:^4.4.0-beta.1, @jupyterlab/codemirror@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/codemirror@npm:4.4.0-beta.1" +"@jupyterlab/codemirror@npm:^4.4.0-beta.2, @jupyterlab/codemirror@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/codemirror@npm:4.4.0-beta.2" dependencies: "@codemirror/autocomplete": ^6.18.3 "@codemirror/commands": ^6.7.1 @@ -3074,11 +3074,11 @@ __metadata: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/codeeditor": ^4.4.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/documentsearch": ^4.4.0-beta.1 - "@jupyterlab/nbformat": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/codeeditor": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/documentsearch": ^4.4.0-beta.2 + "@jupyterlab/nbformat": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 "@lezer/common": ^1.2.1 "@lezer/generator": ^1.7.0 "@lezer/highlight": ^1.2.0 @@ -3087,45 +3087,45 @@ __metadata: "@lumino/disposable": ^2.1.3 "@lumino/signaling": ^2.1.3 yjs: ^13.5.40 - checksum: ba399e75f7d953190481cb7b9f6138b4ba78f4c7ee1a0dfa054d22d4657ba6c8ce255c415e010dd00a1e9a8bb867b57b071ca222f7ea6de62ed02218e85a2c89 + checksum: 0ce42460c6937cf39bc15a8c5b7f03a876b5f7d72aa6ae5dbf1ed964042199f427393c989702ff12eca48353a0912ad4581d8892269b1131052a75abf63c7bcb languageName: node linkType: hard -"@jupyterlab/completer-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/completer-extension@npm:4.4.0-beta.1" +"@jupyterlab/completer-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/completer-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/codeeditor": ^4.4.0-beta.1 - "@jupyterlab/completer": ^4.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/codeeditor": ^4.4.0-beta.2 + "@jupyterlab/completer": ^4.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: eaa26ee35df5e1be61aabb0b281cab8377042d225f357866fd91aec7fafd88cf376c0700dfa72a97e9669def15869bbb5b9c07dd4eb7160b14cdec1f923f3b8d + checksum: cb19f909cefd5ed417c1fb30719c706e2d858f86cb97d8d2328a54e2f164a559376122aee06d982cc70a23489849e373b1c252a371803a48ce55c97f910a45bb languageName: node linkType: hard -"@jupyterlab/completer@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/completer@npm:4.4.0-beta.1" +"@jupyterlab/completer@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/completer@npm:4.4.0-beta.2" dependencies: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/codeeditor": ^4.4.0-beta.1 - "@jupyterlab/codemirror": ^4.4.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/statedb": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/codeeditor": ^4.4.0-beta.2 + "@jupyterlab/codemirror": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/statedb": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -3133,57 +3133,57 @@ __metadata: "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: 8b0f627459f64a55b30a8e216ae78387ba45ce90ae2ed82f7426155e0d026521dca2967a39c0258a8990c891e4498fccac1b146288b1552e6c4d441c5fd33ee8 - languageName: node - linkType: hard - -"@jupyterlab/console-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/console-extension@npm:4.4.0-beta.1" - dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/codeeditor": ^4.4.0-beta.1 - "@jupyterlab/completer": ^4.4.0-beta.1 - "@jupyterlab/console": ^4.4.0-beta.1 - "@jupyterlab/filebrowser": ^4.4.0-beta.1 - "@jupyterlab/launcher": ^4.4.0-beta.1 - "@jupyterlab/mainmenu": ^4.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + checksum: 0f0127f341ddb2ddc4bae86d885e764dfc87888f82868e5f829e441de237d93bdda68fb9f94558b3501c21543493bb5455f8e55ed6a8962fa2fbb00cd59fc3da + languageName: node + linkType: hard + +"@jupyterlab/console-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/console-extension@npm:4.4.0-beta.2" + dependencies: + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/codeeditor": ^4.4.0-beta.2 + "@jupyterlab/completer": ^4.4.0-beta.2 + "@jupyterlab/console": ^4.4.0-beta.2 + "@jupyterlab/filebrowser": ^4.4.0-beta.2 + "@jupyterlab/launcher": ^4.4.0-beta.2 + "@jupyterlab/mainmenu": ^4.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/properties": ^2.0.2 "@lumino/widgets": ^2.6.0 - checksum: 0466dda6b38fdda315577aaa2c5de01ae46453c331e94a0675690576cb80afb4420cb7f0b32e14a32df17ef80cedfa30e38dccff7368dcde8fd216ee3c7103cd + checksum: eb83edef7b4326b1f312b5442175101a1a4e28d1a778ece44829115cafa4a67b79d1c83733cf997cc919288899adb2c0e2befdad315f356dc30e5fe84db2b51e languageName: node linkType: hard -"@jupyterlab/console@npm:^4.4.0-beta.1, @jupyterlab/console@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/console@npm:4.4.0-beta.1" +"@jupyterlab/console@npm:^4.4.0-beta.2, @jupyterlab/console@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/console@npm:4.4.0-beta.2" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/cells": ^4.4.0-beta.1 - "@jupyterlab/codeeditor": ^4.4.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/nbformat": ^4.4.0-beta.1 - "@jupyterlab/observables": ^5.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/cells": ^4.4.0-beta.2 + "@jupyterlab/codeeditor": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/nbformat": ^4.4.0-beta.2 + "@jupyterlab/observables": ^5.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/dragdrop": ^2.1.5 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: 4f224532551491690cc990a0e3a126fdbbb6714857d2afbf27c9111232fe3829b75a8c8e0231942b843a2216f08757e11d486010fc9f36ff4327017948afd05c + checksum: d509f4bac4458c14596e86210dc8459f31a8c686a5c09d1d89f1335bbf43711e1fb0baa1679fc83184709f69e4d8a4d219d324a7796849cad63404bb722bf17b languageName: node linkType: hard @@ -3201,9 +3201,9 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/coreutils@npm:^6.4.0-beta.1, @jupyterlab/coreutils@npm:~6.4.0-beta.1": - version: 6.4.0-beta.1 - resolution: "@jupyterlab/coreutils@npm:6.4.0-beta.1" +"@jupyterlab/coreutils@npm:^6.4.0-beta.2, @jupyterlab/coreutils@npm:~6.4.0-beta.2": + version: 6.4.0-beta.2 + resolution: "@jupyterlab/coreutils@npm:6.4.0-beta.2" dependencies: "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -3211,94 +3211,94 @@ __metadata: minimist: ~1.2.0 path-browserify: ^1.0.0 url-parse: ~1.5.4 - checksum: 7314cea4dedd89b26bf297c3735135315814e66d7d877c301c39f7c4cab7622e7806ae81f053e718adc2b5c21b00fb67071c6af52062c371535b734ffa6e4bb0 + checksum: fb2ef02d4308e2159f93300a862781f4c146f866dcbb6c9379081fa35ec13d9972003ee8d7b7aab8f7b620abfb14f4974a6bd8554085d4e3541e8c9a7da6624c languageName: node linkType: hard -"@jupyterlab/csvviewer-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/csvviewer-extension@npm:4.4.0-beta.1" +"@jupyterlab/csvviewer-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/csvviewer-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/csvviewer": ^4.4.0-beta.1 - "@jupyterlab/docregistry": ^4.4.0-beta.1 - "@jupyterlab/documentsearch": ^4.4.0-beta.1 - "@jupyterlab/mainmenu": ^4.4.0-beta.1 - "@jupyterlab/observables": ^5.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/csvviewer": ^4.4.0-beta.2 + "@jupyterlab/docregistry": ^4.4.0-beta.2 + "@jupyterlab/documentsearch": ^4.4.0-beta.2 + "@jupyterlab/mainmenu": ^4.4.0-beta.2 + "@jupyterlab/observables": ^5.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 "@lumino/datagrid": ^2.5.0 "@lumino/widgets": ^2.6.0 - checksum: 902b6e733bb2c3ecbf58c462b925ffb2ad9744c7571a29d56914febb6a51eb1efb63d6484badd3fdb1108c3def0c1245c93d9f28926908255c6de21145fb7304 + checksum: 9b1fc5e20ce1f8a8775391177bc0ac056367c82f4c14eb2980236cb140d2c13ea68ebfedf0fd65e8337b8e437501d328746103b77243817a2b7a787d2de94840 languageName: node linkType: hard -"@jupyterlab/csvviewer@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/csvviewer@npm:4.4.0-beta.1" +"@jupyterlab/csvviewer@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/csvviewer@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/docregistry": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/docregistry": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 "@lumino/datagrid": ^2.5.0 "@lumino/disposable": ^2.1.3 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: 5ffa765daa7d31157bba42c2f08209da968a3c574ed9008cc235fb9685fa368aa07fc2bf21548acbc07cc7ba998d4157b616e087691c2862af19c2b2c5b86904 - languageName: node - linkType: hard - -"@jupyterlab/debugger-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/debugger-extension@npm:4.4.0-beta.1" - dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/cells": ^4.4.0-beta.1 - "@jupyterlab/codeeditor": ^4.4.0-beta.1 - "@jupyterlab/console": ^4.4.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/debugger": ^4.4.0-beta.1 - "@jupyterlab/docregistry": ^4.4.0-beta.1 - "@jupyterlab/fileeditor": ^4.4.0-beta.1 - "@jupyterlab/logconsole": ^4.4.0-beta.1 - "@jupyterlab/notebook": ^4.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 + checksum: f1d338a2094726d4fddc7e169a629213505d96d56c2149dccb1e075c68455c08799ab1308bca599385554854f27a2a274da29afa970e75c2c783427771ce59f7 + languageName: node + linkType: hard + +"@jupyterlab/debugger-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/debugger-extension@npm:4.4.0-beta.2" + dependencies: + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/cells": ^4.4.0-beta.2 + "@jupyterlab/codeeditor": ^4.4.0-beta.2 + "@jupyterlab/console": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/debugger": ^4.4.0-beta.2 + "@jupyterlab/docregistry": ^4.4.0-beta.2 + "@jupyterlab/fileeditor": ^4.4.0-beta.2 + "@jupyterlab/logconsole": ^4.4.0-beta.2 + "@jupyterlab/notebook": ^4.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 "@lumino/commands": ^2.3.1 - checksum: d0ce5697ed4ab963538a4512cf812b7a0226d35ead7a1341104a5fc25aaaa387cea99b1c472ed2e5135b374a1215d402180c170eb3e93a67e04654b388efe2b9 + checksum: baabfffeed90d3fedca3e75268d6533df1443e938428ecb5f0511d5491bdebf4b0572616706ac404cc3312c9f32307ba5d9f69ee635856167cb4daaac25398e7 languageName: node linkType: hard -"@jupyterlab/debugger@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/debugger@npm:4.4.0-beta.1" +"@jupyterlab/debugger@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/debugger@npm:4.4.0-beta.2" dependencies: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/react-components": ^0.16.6 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/cells": ^4.4.0-beta.1 - "@jupyterlab/codeeditor": ^4.4.0-beta.1 - "@jupyterlab/codemirror": ^4.4.0-beta.1 - "@jupyterlab/console": ^4.4.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/docregistry": ^4.4.0-beta.1 - "@jupyterlab/fileeditor": ^4.4.0-beta.1 - "@jupyterlab/notebook": ^4.4.0-beta.1 - "@jupyterlab/observables": ^5.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/cells": ^4.4.0-beta.2 + "@jupyterlab/codeeditor": ^4.4.0-beta.2 + "@jupyterlab/codemirror": ^4.4.0-beta.2 + "@jupyterlab/console": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/docregistry": ^4.4.0-beta.2 + "@jupyterlab/fileeditor": ^4.4.0-beta.2 + "@jupyterlab/notebook": ^4.4.0-beta.2 + "@jupyterlab/observables": ^5.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -3310,25 +3310,25 @@ __metadata: "@lumino/widgets": ^2.6.0 "@vscode/debugprotocol": ^1.51.0 react: ^18.2.0 - checksum: d3938013248d559e77da67229ec3a676515445de9a5af85d451d0d6d128ff4d3456e9a97a13f63e850c993996aab1371557bd209ecbd6b0eba181ecdf53354a8 + checksum: 08e96574fb541a20038fcaa57a5b95e59ab2f7f3805fdc950a76aaefbeaa02d4fd9fe7009562009896d9c629e5626d86baa5bc943a4b013fc759529b5acdfd93 languageName: node linkType: hard -"@jupyterlab/docmanager-extension@npm:^4.4.0-beta.1, @jupyterlab/docmanager-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/docmanager-extension@npm:4.4.0-beta.1" +"@jupyterlab/docmanager-extension@npm:^4.4.0-beta.2, @jupyterlab/docmanager-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/docmanager-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/docmanager": ^4.4.0-beta.1 - "@jupyterlab/docregistry": ^4.4.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/statedb": ^4.4.0-beta.1 - "@jupyterlab/statusbar": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/docmanager": ^4.4.0-beta.2 + "@jupyterlab/docregistry": ^4.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/statedb": ^4.4.0-beta.2 + "@jupyterlab/statusbar": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -3336,7 +3336,7 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 46f6c358023ca7335d266d996baa69369b053433680df1cbd4a1db2ab43b898083c2b445d0b63f7dc2e079ac6fb32482eb22960a5d0657195bef4f204bab35fe + checksum: 638edacee5d73682a5c3c91d44e7e300c11644324445fd83c99f4a36928668d2adf08b3e48227dbe7f64f4a272e34f32d2083fcbce194ca84ff19dca7ed81f02 languageName: node linkType: hard @@ -3365,18 +3365,18 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/docmanager@npm:^4.4.0-beta.1, @jupyterlab/docmanager@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/docmanager@npm:4.4.0-beta.1" +"@jupyterlab/docmanager@npm:^4.4.0-beta.2, @jupyterlab/docmanager@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/docmanager@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/docregistry": ^4.4.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/statedb": ^4.4.0-beta.1 - "@jupyterlab/statusbar": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/docregistry": ^4.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/statedb": ^4.4.0-beta.2 + "@jupyterlab/statusbar": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -3386,7 +3386,7 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 743ec2e90ffc44b7ff2c5a0fb80da04dc36fb41788961fcab5f983b9b009e718e892651370255f1f1bbfa641d02cc6bc75cee176ad4919031bd2094d6c70ffd8 + checksum: 2854681c32d7c56d3f39ddaed62c2e86564666782d48cecc5ad6984892cdecbb35a9e795d20faed7e843930b14795548db7c890631c91570c7734c95e29dd903 languageName: node linkType: hard @@ -3416,20 +3416,20 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/docregistry@npm:^4.4.0-beta.1, @jupyterlab/docregistry@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/docregistry@npm:4.4.0-beta.1" +"@jupyterlab/docregistry@npm:^4.4.0-beta.2, @jupyterlab/docregistry@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/docregistry@npm:4.4.0-beta.2" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/codeeditor": ^4.4.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/observables": ^5.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/codeeditor": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/observables": ^5.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -3438,22 +3438,22 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: b90b8b4f9675562bff74ae7f0a0895c7c0b06c598a9beef38dec5c720d831e5cfb75f0f65a733b02b60e4e6b56989cf1246c334170a4bfcb5c54d98e45b291db + checksum: 1638511375840016304b08cbe2d700e9d680676c359beae70fc3ebe3d375ac73b898185f4d1d607e0f358c2be3ac843c78b7f1ba458c23cc2f5134692fc1e8a1 languageName: node linkType: hard -"@jupyterlab/documentsearch-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/documentsearch-extension@npm:4.4.0-beta.1" +"@jupyterlab/documentsearch-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/documentsearch-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/documentsearch": ^4.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/documentsearch": ^4.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 "@lumino/commands": ^2.3.1 "@lumino/widgets": ^2.6.0 - checksum: a46fc4f0a9b6bd8b727191e517712aaf80552b252c5b60f182ca6138e33ea813ec79612d706ecdbe3f10ebd46fc8873f8bd5d69099a135cc34fe6009f1bd268b + checksum: d3b213c81ffd7b294bf43bb6dfd6df4b0c63a2e121a61baf4d1f4f62ef5218a33d3c2f6f7af0e7d7739585dfbd3447e07ae643ffb24590d9b19f71c265468e0e languageName: node linkType: hard @@ -3476,13 +3476,13 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/documentsearch@npm:^4.4.0-beta.1, @jupyterlab/documentsearch@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/documentsearch@npm:4.4.0-beta.1" +"@jupyterlab/documentsearch@npm:^4.4.0-beta.2, @jupyterlab/documentsearch@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/documentsearch@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -3491,63 +3491,63 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 908c56e5dec9d6eb1ea3b2fd016726687b509dbe83b5b17869ae534b89a68e372c84eed5138892e0be070d043ebfd9af86cda241120ddde9547aa94e404f8d35 + checksum: 0ac5b4c2e068a0d40afd263ec763e29a5ee095b6359298a779aee50a7cea539d92fb9f623ef70a009535e15818028eac17a7e1c743a866f7918270da9c10bbea languageName: node linkType: hard -"@jupyterlab/extensionmanager-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/extensionmanager-extension@npm:4.4.0-beta.1" +"@jupyterlab/extensionmanager-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/extensionmanager-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/extensionmanager": ^4.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 - checksum: 4175f2b8763adc8065b7eb610a193dfbb8da3168c293c238ff6bcda96390af99f8a2123134ba727e94106e33977b57e10e300b78c68accad60c9c8e44789b0af + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/extensionmanager": ^4.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 + checksum: 9007218139813f4eaf397fa60eeb2b1ec5013481f0a617676e9caf79f9ec6a6bf8e754eb778d3141404da2f0bf8047c3bd6e92290bb2007ac0e233777e5e3e92 languageName: node linkType: hard -"@jupyterlab/extensionmanager@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/extensionmanager@npm:4.4.0-beta.1" +"@jupyterlab/extensionmanager@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/extensionmanager@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/messaging": ^2.0.2 "@lumino/polling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 react-paginate: ^6.3.2 semver: ^7.5.2 - checksum: 93f918b941ebf9c3c5808bda43867c9687fb0080aa90713757fb8b51a069d0a0fb54288b4f5d7fd47e0dfd1cd0979017f69940f6c45fa4e5ba4207e138d3ab13 - languageName: node - linkType: hard - -"@jupyterlab/filebrowser-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/filebrowser-extension@npm:4.4.0-beta.1" - dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/docmanager": ^4.4.0-beta.1 - "@jupyterlab/docregistry": ^4.4.0-beta.1 - "@jupyterlab/filebrowser": ^4.4.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/statedb": ^4.4.0-beta.1 - "@jupyterlab/statusbar": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + checksum: a469442aff8c21e8995d417c5c04125119e321a2d9ccc66e2ed7e82845ac92bdf21c29b31ce028e6a2318eeb22c1481bc07236ff62c593ee0e032ba6022781cf + languageName: node + linkType: hard + +"@jupyterlab/filebrowser-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/filebrowser-extension@npm:4.4.0-beta.2" + dependencies: + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/docmanager": ^4.4.0-beta.2 + "@jupyterlab/docregistry": ^4.4.0-beta.2 + "@jupyterlab/filebrowser": ^4.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/statedb": ^4.4.0-beta.2 + "@jupyterlab/statusbar": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/widgets": ^2.6.0 - checksum: 286cf75c0128802a24d371a81af313e71c393c4cba3f274330ce00e63e5c31600db481826df7b2c7463fa533ddfa5e7633f4345e140576b9e10e40d346bfc37e + checksum: 2011037ef680fb9763c7ffac1a90f2be7b7439ea68c0d5fb10dec21cb49eba6b2f28f3025adeb9737504cefa90166d1dfe57ea4aeaba2b7cff9615466bd1c99a languageName: node linkType: hard @@ -3579,19 +3579,19 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/filebrowser@npm:^4.4.0-beta.1, @jupyterlab/filebrowser@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/filebrowser@npm:4.4.0-beta.1" +"@jupyterlab/filebrowser@npm:^4.4.0-beta.2, @jupyterlab/filebrowser@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/filebrowser@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/docmanager": ^4.4.0-beta.1 - "@jupyterlab/docregistry": ^4.4.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/statedb": ^4.4.0-beta.1 - "@jupyterlab/statusbar": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/docmanager": ^4.4.0-beta.2 + "@jupyterlab/docregistry": ^4.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/statedb": ^4.4.0-beta.2 + "@jupyterlab/statusbar": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -3603,201 +3603,201 @@ __metadata: "@lumino/virtualdom": ^2.0.2 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 25497fce13a09f6141c932a534e73f88806e9859ef7a1673f2be02e2ff4e1da64425100d1f17bcd990b45b06ca616e3f0ebc2cd286d587a75ca0c85e5ab7770a + checksum: e0f4c9977df3c3ceeebd495e7a18566dc09378902e662963e7aef9bcf6e759089faeb7971537cb7a2296e25da1b15d1247fa5baa090f8f10f9fd321a36a573f7 languageName: node linkType: hard -"@jupyterlab/fileeditor-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/fileeditor-extension@npm:4.4.0-beta.1" +"@jupyterlab/fileeditor-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/fileeditor-extension@npm:4.4.0-beta.2" dependencies: "@codemirror/commands": ^6.7.1 "@codemirror/search": ^6.5.8 - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/codeeditor": ^4.4.0-beta.1 - "@jupyterlab/codemirror": ^4.4.0-beta.1 - "@jupyterlab/completer": ^4.4.0-beta.1 - "@jupyterlab/console": ^4.4.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/docregistry": ^4.4.0-beta.1 - "@jupyterlab/documentsearch": ^4.4.0-beta.1 - "@jupyterlab/filebrowser": ^4.4.0-beta.1 - "@jupyterlab/fileeditor": ^4.4.0-beta.1 - "@jupyterlab/launcher": ^4.4.0-beta.1 - "@jupyterlab/lsp": ^4.4.0-beta.1 - "@jupyterlab/mainmenu": ^4.4.0-beta.1 - "@jupyterlab/observables": ^5.4.0-beta.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/statusbar": ^4.4.0-beta.1 - "@jupyterlab/toc": ^6.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/codeeditor": ^4.4.0-beta.2 + "@jupyterlab/codemirror": ^4.4.0-beta.2 + "@jupyterlab/completer": ^4.4.0-beta.2 + "@jupyterlab/console": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/docregistry": ^4.4.0-beta.2 + "@jupyterlab/documentsearch": ^4.4.0-beta.2 + "@jupyterlab/filebrowser": ^4.4.0-beta.2 + "@jupyterlab/fileeditor": ^4.4.0-beta.2 + "@jupyterlab/launcher": ^4.4.0-beta.2 + "@jupyterlab/lsp": ^4.4.0-beta.2 + "@jupyterlab/mainmenu": ^4.4.0-beta.2 + "@jupyterlab/observables": ^5.4.0-beta.2 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/statusbar": ^4.4.0-beta.2 + "@jupyterlab/toc": ^6.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.6.0 - checksum: b73fd56579b6825e9c071322f1883ee6095601685afab3cdc06783b8641e704e0ef91998ac84b2a82532d2ff1b4fe6b21d21398bfb84d191542f966b63daa756 + checksum: 70ea0f2b1d579f51b26fcd1f432b2d5a062ba652a38aa697f64e39347a92b072c2daabf089652735087473c974fc94ea385b3a498551cc375df8051a1cbf9c88 languageName: node linkType: hard -"@jupyterlab/fileeditor@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/fileeditor@npm:4.4.0-beta.1" +"@jupyterlab/fileeditor@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/fileeditor@npm:4.4.0-beta.2" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/codeeditor": ^4.4.0-beta.1 - "@jupyterlab/codemirror": ^4.4.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/docregistry": ^4.4.0-beta.1 - "@jupyterlab/documentsearch": ^4.4.0-beta.1 - "@jupyterlab/lsp": ^4.4.0-beta.1 - "@jupyterlab/statusbar": ^4.4.0-beta.1 - "@jupyterlab/toc": ^6.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/codeeditor": ^4.4.0-beta.2 + "@jupyterlab/codemirror": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/docregistry": ^4.4.0-beta.2 + "@jupyterlab/documentsearch": ^4.4.0-beta.2 + "@jupyterlab/lsp": ^4.4.0-beta.2 + "@jupyterlab/statusbar": ^4.4.0-beta.2 + "@jupyterlab/toc": ^6.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/widgets": ^2.6.0 react: ^18.2.0 regexp-match-indices: ^1.0.2 - checksum: 7e389aa971614fe58491122c17eab99164b488d7829badf7e7181aacd23c5876ac703afd8a7b0cb6549dd19d936b3e491c844021d9dc67f11e7d0331ee9d0caa + checksum: 921a42d927d6454f6d0673fd53b589e08b86d37502f6ca4c7a80965bd37636b316f4cbce73668b02e84c4f0ebdb4f9f5aba11e3e5e52a082bbfe19cbb32d2fc7 languageName: node linkType: hard -"@jupyterlab/help-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/help-extension@npm:4.4.0-beta.1" +"@jupyterlab/help-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/help-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/mainmenu": ^4.4.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/mainmenu": ^4.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 09c133c8397d4868bc523afbad3094e147bae7c929b6fade6701422fe5ee76b3c7963e0af3bc6fd3e0582ca3051d55b29021aeaf5bd63e6aab31da1ec864a26c + checksum: 170e568acfe9d18a7a8ed83ae7043e04676859717de485f3d0b245930df0c17a87839c508a025d6853fb39fcc2227bdd64810174153fdbeafd0225b33d56593a languageName: node linkType: hard -"@jupyterlab/htmlviewer-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/htmlviewer-extension@npm:4.4.0-beta.1" +"@jupyterlab/htmlviewer-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/htmlviewer-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/docregistry": ^4.4.0-beta.1 - "@jupyterlab/htmlviewer": ^4.4.0-beta.1 - "@jupyterlab/observables": ^5.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 - checksum: 6db9cf83d793eef523ff1c0ed4f84faf3472380e87197659c249f4b4e858f1a75e741946ca9c908538e79107c6aaf2b03452746cb2c090f991558cad71d14507 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/docregistry": ^4.4.0-beta.2 + "@jupyterlab/htmlviewer": ^4.4.0-beta.2 + "@jupyterlab/observables": ^5.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 + checksum: 1110aa894adb7773bd72c32d01b20306e7831526dd52e917718153b83b9ca83a6d55027189670ebe02d35a0a9ba50687e27f42765bb6f3c33677e5a98340036c languageName: node linkType: hard -"@jupyterlab/htmlviewer@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/htmlviewer@npm:4.4.0-beta.1" +"@jupyterlab/htmlviewer@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/htmlviewer@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/docregistry": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/docregistry": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: d0ee7ebad3b247fa47095d53183967ff4c68036776146f503d222be60ba69ea5dd9400b9a6bc24b2a129ef25b42d0cfe848c73c65e2b89d1d6082348ef856fb2 + checksum: 4c8afb8002aec942246e8ec405f74a383f1604034c43426a7ecfcfe920fb1a6176a51d23fc371b7cb46a929816d5ca04bae19c46f4ad4a141ae57954267c9a84 languageName: node linkType: hard -"@jupyterlab/hub-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/hub-extension@npm:4.4.0-beta.1" +"@jupyterlab/hub-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/hub-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - checksum: d677f02dd90497689ba42094978d869a3024704afad73c816f3066c27d2f7d7358fcf1b747ab2c6290fa059468bcbbfa16e0fb54de6946189afe54a724840108 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + checksum: c5c8463664678df4544bafad70622687cedb26db5fab7d48146ac0990d0dbf3910a90015357770c7983027cd9951ca705f0628758aab1b5b0a9bedc1ae761ac7 languageName: node linkType: hard -"@jupyterlab/imageviewer-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/imageviewer-extension@npm:4.4.0-beta.1" +"@jupyterlab/imageviewer-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/imageviewer-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/docregistry": ^4.4.0-beta.1 - "@jupyterlab/imageviewer": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - checksum: 791e3454a1411212438734514bc8ec88b43281342f93c022d5e50daf5cbb477f4e56dec714d5d5327a02cca9c0751145f459769c89b6c722ec08c59a5624732f + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/docregistry": ^4.4.0-beta.2 + "@jupyterlab/imageviewer": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + checksum: 4590721704d9be6126b03b052821183ee7101db04f39ea41ab7d1c50948e9dbb4754ba83c768715cdc08aa7d32de6aefdaa5e5b15a57bbb011d0e121e547c4f1 languageName: node linkType: hard -"@jupyterlab/imageviewer@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/imageviewer@npm:4.4.0-beta.1" +"@jupyterlab/imageviewer@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/imageviewer@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/docregistry": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/docregistry": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/widgets": ^2.6.0 - checksum: fb422c4a2a43ddaed9ee58fadc4e29bd0c29e5a054986b183d3cec1fe4b1f417d2298f6ebf7da8f8c67b4529034ebdd26ab501f34b8be55f59fa67e6203f74ac + checksum: 30c26f3b0c46b9c08676b0d8efbb700783ea0df4e25e44fd3aaf90404c7e5907565a2feb7ee05b5b7d4761cece9bcbd6ad85e46af2b7cbb597c3634eca5a85a2 languageName: node linkType: hard -"@jupyterlab/inspector@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/inspector@npm:4.4.0-beta.1" +"@jupyterlab/inspector@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/inspector@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/codeeditor": ^4.4.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/statedb": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/codeeditor": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/statedb": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/polling": ^2.1.3 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: f0a689e9b36ace708b410da64ea1ec997cafea3418323f774999aa9cfeb434c9469dad9067ccff85d44f7971e012385fde1fcca1bc3ab46d9bd6e6ee8808c16c + checksum: 0fcbcdb8363269fd2b704c7bfd966053e3d7f9d82330187190875543a17c19b8bbe393ba2d5bf9b80ac8951fcd27464e9dafe5064457a662afdb8cfa1122fc6d languageName: node linkType: hard -"@jupyterlab/javascript-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/javascript-extension@npm:4.4.0-beta.1" +"@jupyterlab/javascript-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/javascript-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/rendermime": ^4.4.0-beta.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 - checksum: b6b9d6d618a24406f9f113713791ec790ff97f12bdc77c4c0339dec14a9f449bc40246897522dff72e37d8e0834b45e83ff26076d21e4c1af2f7573739bb0d6b + "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 + checksum: 7e7c99a7d1693a7aead29ebb2036ad65666a34fd048bb58a82b0b6d0b1432170261807a245ab6ed07a33fd27eaae149b2a21efd561cb8ef9518a7736cd30d3be languageName: node linkType: hard -"@jupyterlab/json-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/json-extension@npm:4.4.0-beta.1" +"@jupyterlab/json-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/json-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/codemirror": ^4.4.0-beta.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/codemirror": ^4.4.0-beta.2 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lezer/highlight": ^1.2.0 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 @@ -3807,17 +3807,17 @@ __metadata: react-highlight-words: ^0.20.0 react-json-tree: ^0.18.0 style-mod: ^4.0.0 - checksum: 4db3c0883b13741f61dce0b75371c7d695eee35f44e1adbc2841cf565f4a4cbcc2467287e17e9fa65bb52586482a5172b8d7a1d170056ebf8531e0efa9d67bc5 + checksum: f5e242206e59cb7fcbae6a6f8bda1bca538c8d9a6905a9668a3bf3c04fc2d13549b82c5ff9ed163db69c31b9e9a63dd6d8de0308e28021aa42375ca3b458e539 languageName: node linkType: hard -"@jupyterlab/launcher@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/launcher@npm:4.4.0-beta.1" +"@jupyterlab/launcher@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/launcher@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -3825,46 +3825,46 @@ __metadata: "@lumino/properties": ^2.0.2 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: c11130929b2f56811ab5d211f0269b22d1efbb090a44fe30c7a32dbe096fe1675ba94e7ebeca81320668666dcc783ab5f73e5ee2d578db1c4d380b469bbbbd1f + checksum: f38bca2e9fe8c774f7b90666526b2a3bc07d2f31c7b247d5a66248c51c3ccd6b1d4bd8f21b2dc721c4803cbf486203095c8296d0270e737ae4ba3c50da6fe63d languageName: node linkType: hard -"@jupyterlab/logconsole@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/logconsole@npm:4.4.0-beta.1" +"@jupyterlab/logconsole@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/logconsole@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/nbformat": ^4.4.0-beta.1 - "@jupyterlab/outputarea": ^4.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/nbformat": ^4.4.0-beta.2 + "@jupyterlab/outputarea": ^4.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: 81f615a0d21b9543fb48298b4f998a871c0d5a9e10f18d0406a2285afc0f93ab67eceb65d65abde43773abad6152633887eeb79c0b2dd40c13189ee8094236cb + checksum: 60a30f58eaccdc5be8a90a123f750eae15bcbd058b94f5c56a74208d7426a8574891d1c207ebf3be73d0590c2342b01cc3e3e84c5bab5ec2752c0d25dbf00b2f languageName: node linkType: hard -"@jupyterlab/lsp-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/lsp-extension@npm:4.4.0-beta.1" +"@jupyterlab/lsp-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/lsp-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/lsp": ^4.4.0-beta.1 - "@jupyterlab/running": ^4.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/lsp": ^4.4.0-beta.2 + "@jupyterlab/running": ^4.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 "@lumino/polling": ^2.1.3 "@lumino/signaling": ^2.1.3 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: 633ffa03c9e2864c559f9bcbd4b1a66cd095bfec48c8c0ab71e5b36d64f40f74275d43cd134de1b02ed83520e0699541c3b64908ccdcf61de9a2c04b15221996 + checksum: f809674e92faef8955c1dabf3c9cb50910f4c731fe84e27a0e09654f76aaef4dcf70ccedd07f42b0f1a67d848d3067c4d510589916ed3f384ab2c28eb331401c languageName: node linkType: hard @@ -3891,17 +3891,17 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/lsp@npm:^4.4.0-beta.1, @jupyterlab/lsp@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/lsp@npm:4.4.0-beta.1" +"@jupyterlab/lsp@npm:^4.4.0-beta.2, @jupyterlab/lsp@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/lsp@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/codeeditor": ^4.4.0-beta.1 - "@jupyterlab/codemirror": ^4.4.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/docregistry": ^4.4.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/codeeditor": ^4.4.0-beta.2 + "@jupyterlab/codemirror": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/docregistry": ^4.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/signaling": ^2.1.3 @@ -3910,164 +3910,164 @@ __metadata: vscode-jsonrpc: ^6.0.0 vscode-languageserver-protocol: ^3.17.0 vscode-ws-jsonrpc: ~1.0.2 - checksum: b05f41e1ff95622470e63c759f9d3057e9c5588ae69f521f1b8df064df7502d67f82a2bb2138c584efceedf425cdc41ff9523f88b6025e6e43bd14b836c2c61f + checksum: 4670e1f4779485f7618df36b42d9515ed21e9774c32b83387e55f46afc94c787f744cab689e4eeee4764e03c9fdb2cd5e967226dda23f2d1f0b283323763caed languageName: node linkType: hard -"@jupyterlab/mainmenu-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/mainmenu-extension@npm:4.4.0-beta.1" +"@jupyterlab/mainmenu-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/mainmenu-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/docmanager": ^4.4.0-beta.1 - "@jupyterlab/filebrowser": ^4.4.0-beta.1 - "@jupyterlab/mainmenu": ^4.4.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/docmanager": ^4.4.0-beta.2 + "@jupyterlab/filebrowser": ^4.4.0-beta.2 + "@jupyterlab/mainmenu": ^4.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/messaging": ^2.0.2 "@lumino/widgets": ^2.6.0 - checksum: 77ddfd127707d52c8b461045561bdc39fe57b393b6cdea9c3707eec38fdb70395a5b8b9cdd2b561a7f346346bce3dfb0e4f9437175e7414f707526e3d34d9a97 + checksum: 54fca2f578031bcf58829969397022ab91c0c88295c6d79fe730bf6de61842305bc22fe50ad89d68f0f6557139a04f2b4e86fa2c59ec161e9b0f5185f6e8f36e languageName: node linkType: hard -"@jupyterlab/mainmenu@npm:^4.4.0-beta.1, @jupyterlab/mainmenu@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/mainmenu@npm:4.4.0-beta.1" +"@jupyterlab/mainmenu@npm:^4.4.0-beta.2, @jupyterlab/mainmenu@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/mainmenu@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.6.0 - checksum: 273272edf8f57f5a3e9b55861506099778f872b81bf7937d5b16a0140cdb10f3fbdf1118e531b486b5e4870fad8c652bdc9fb9f7071cb73c463d8ecc0cb57ef8 + checksum: e61745f627e809524b31696a793f55f1253fcc780c8aae2188b6b6e974ee597ba75d93400b8aa9062b1cabfd6c9e9a50d75075ddd45e14a11b51c723bcf16e03 languageName: node linkType: hard -"@jupyterlab/markdownviewer-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/markdownviewer-extension@npm:4.4.0-beta.1" +"@jupyterlab/markdownviewer-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/markdownviewer-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/markdownviewer": ^4.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/toc": ^6.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - checksum: 1daf7b7339d5e326dfeef9400ccd829bfebd2e6f0a99b1fce24c8d660e8bc12b37dff63ead366c7ddc0f4bd4eb5525ee534e8bf36f9a3cef9d4977a2cd79cde8 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/markdownviewer": ^4.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/toc": ^6.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + checksum: 97971741871d16d5739beccb4e001af342b26de90b635ab06f90f3f57f5171813b7cba4d6300dcde0bbb86b0ce72f1af7495fdd4f79cefd5a232c86f5661f506 languageName: node linkType: hard -"@jupyterlab/markdownviewer@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/markdownviewer@npm:4.4.0-beta.1" +"@jupyterlab/markdownviewer@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/markdownviewer@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/docregistry": ^4.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 - "@jupyterlab/toc": ^6.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/docregistry": ^4.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/toc": ^6.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: b7fcffc0e00a8ee9d30a8e23f681a0f126502c5c21905698df512556a628763bb77cab1adf62e159c54ac12ce9b54ebff69f5b874e870449e78fe9f6cb3d4241 + checksum: 777240cc411963ea2bc6813d9a4bdf887239ecd423e8eda1c1c52397618bb746bb71e918ebb3c25b8419452d65aa2e99e7e0c66590798e26762f2f947eca97a0 languageName: node linkType: hard -"@jupyterlab/markedparser-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/markedparser-extension@npm:4.4.0-beta.1" +"@jupyterlab/markedparser-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/markedparser-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/codemirror": ^4.4.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/mermaid": ^4.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/codemirror": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/mermaid": ^4.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 marked: ^15.0.3 marked-gfm-heading-id: ^4.1.1 marked-mangle: ^1.1.10 - checksum: 4d86f7333de4a757344e9f3c84590c31789051fa25e633abb8c5371e220b75d7829ee0e296e43df286b27519a5a80b7b9137176744f5cfa94b42e7a4e8277bbd + checksum: 1ca6e4454aec6f853bad6f70078f0f5c085c57dd6160f302cb7ebc03bf38e4f56f10fc5f43305c2a78895fe63fab589ebc6b36a962a96eff738e2e151efd271d languageName: node linkType: hard -"@jupyterlab/mathjax-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/mathjax-extension@npm:4.4.0-beta.1" +"@jupyterlab/mathjax-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/mathjax-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 mathjax-full: ^3.2.2 - checksum: 6dac7639228920a122f187e624097efb3a67d755054bbbe8c8246dcc83660d8dd5f00b5942ea1ecc5aeee59cea702b1fe96a936c95356af15ee22c1b0833d998 + checksum: d997aa992f8464ace0ca61eb5f317cbc026bbde20cd923fab40ba05560746661be89ab115dad04c06a757a649aa367930cf640e624e67745d5b9f1a3b0c0377a languageName: node linkType: hard -"@jupyterlab/mermaid-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/mermaid-extension@npm:4.4.0-beta.1" +"@jupyterlab/mermaid-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/mermaid-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/mermaid": ^4.4.0-beta.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - checksum: e75f3e01f234b5080882213f81fc80aafa8e48fdd8cbb42794c7ede9a23d4738fa9271f81dacb61b3208d51bea36e572d910c467b1e5177110e170014f9f3f62 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/mermaid": ^4.4.0-beta.2 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + checksum: 737a32e9b4769f94ea62f4121b459523932de4d1df920357a52a0ec3e57773db6e790095723738414c70f5e1e33ffcb39cbd3c4b724c76deae68711c552f763e languageName: node linkType: hard -"@jupyterlab/mermaid@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/mermaid@npm:4.4.0-beta.1" +"@jupyterlab/mermaid@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/mermaid@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.6.0 "@mermaid-js/layout-elk": ^0.1.7 mermaid: ^11.4.1 - checksum: 411e8c6708796f1e2cebd57e0d5e7b2d93e4544f442e1e1a24efcb79a3e2d03aabca33ab889f45a11e4c34f1c87c4c0bd8cf750d3cf6edbebb54004aa9532799 + checksum: 713b2829107c6388ceb0a861655e15a5b30089cdca93b4c41edd9e6210bc71272e9dbf7f206cff3a57810b331724c0fbff0b57ecd11e85b2bd25c31e24aa5e8a languageName: node linkType: hard -"@jupyterlab/metadataform-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/metadataform-extension@npm:4.4.0-beta.1" +"@jupyterlab/metadataform-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/metadataform-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/metadataform": ^4.4.0-beta.1 - "@jupyterlab/notebook": ^4.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/metadataform": ^4.4.0-beta.2 + "@jupyterlab/notebook": ^4.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 - checksum: f91828a97f09b9c529d642b31508821e12f815d8f2005305332f7ae5bb7d2742042ed019580fbc0ba29d19fbd1bd742d0c138aadfd16b0ae7b33bc2fea868cb6 + checksum: 96f7faad3e9600626bec390d41539f511c46b4f007f73e2aa4911e0411eda74081309af8f41b39c68c2f00aed44ca69470b4c1867774dd8a7f26d337b06231ff languageName: node linkType: hard -"@jupyterlab/metadataform@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/metadataform@npm:4.4.0-beta.1" +"@jupyterlab/metadataform@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/metadataform@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/nbformat": ^4.4.0-beta.1 - "@jupyterlab/notebook": ^4.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/nbformat": ^4.4.0-beta.2 + "@jupyterlab/notebook": ^4.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/widgets": ^2.6.0 @@ -4075,7 +4075,7 @@ __metadata: "@rjsf/validator-ajv8": ^5.13.4 json-schema: ^0.4.0 react: ^18.2.0 - checksum: ca396f26f556e87de045f10728b500715281e16334cbe4b51df1b7756a0b8dbbb7bf370e85fb1eaa522a793cfe590d4757fd286441f4df550167106f270b7bd9 + checksum: 02541991948fddb23835e42289f2bc0c54433f07c4b100da82203afa9802e156685ea976ed38f92828a759d7e78f74de6a3a0eea37ee4a25d08d01ce6c3f32d5 languageName: node linkType: hard @@ -4088,49 +4088,49 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/nbformat@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/nbformat@npm:4.4.0-beta.1" +"@jupyterlab/nbformat@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/nbformat@npm:4.4.0-beta.2" dependencies: "@lumino/coreutils": ^2.2.0 - checksum: 761245ab4b4895c7d4ae31f92cb593d8493ca7c14c632a01699b86028f269c330652d53374cb71793090015369e65722343188143823e7e2b48ef8f7f7781f1d + checksum: b45e4d87bacb742968596736edaa099337303c840a727545e068a2a8a43e642c22e13c68caea2abc20c93dec1eb931ad7a6ce497e9c9689fcd08ecdc7eddf788 languageName: node linkType: hard -"@jupyterlab/notebook-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/notebook-extension@npm:4.4.0-beta.1" +"@jupyterlab/notebook-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/notebook-extension@npm:4.4.0-beta.2" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/cells": ^4.4.0-beta.1 - "@jupyterlab/codeeditor": ^4.4.0-beta.1 - "@jupyterlab/codemirror": ^4.4.0-beta.1 - "@jupyterlab/completer": ^4.4.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/docmanager": ^4.4.0-beta.1 - "@jupyterlab/docmanager-extension": ^4.4.0-beta.1 - "@jupyterlab/docregistry": ^4.4.0-beta.1 - "@jupyterlab/documentsearch": ^4.4.0-beta.1 - "@jupyterlab/filebrowser": ^4.4.0-beta.1 - "@jupyterlab/launcher": ^4.4.0-beta.1 - "@jupyterlab/logconsole": ^4.4.0-beta.1 - "@jupyterlab/lsp": ^4.4.0-beta.1 - "@jupyterlab/mainmenu": ^4.4.0-beta.1 - "@jupyterlab/metadataform": ^4.4.0-beta.1 - "@jupyterlab/nbformat": ^4.4.0-beta.1 - "@jupyterlab/notebook": ^4.4.0-beta.1 - "@jupyterlab/observables": ^5.4.0-beta.1 - "@jupyterlab/property-inspector": ^4.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/statedb": ^4.4.0-beta.1 - "@jupyterlab/statusbar": ^4.4.0-beta.1 - "@jupyterlab/toc": ^6.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/cells": ^4.4.0-beta.2 + "@jupyterlab/codeeditor": ^4.4.0-beta.2 + "@jupyterlab/codemirror": ^4.4.0-beta.2 + "@jupyterlab/completer": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/docmanager": ^4.4.0-beta.2 + "@jupyterlab/docmanager-extension": ^4.4.0-beta.2 + "@jupyterlab/docregistry": ^4.4.0-beta.2 + "@jupyterlab/documentsearch": ^4.4.0-beta.2 + "@jupyterlab/filebrowser": ^4.4.0-beta.2 + "@jupyterlab/launcher": ^4.4.0-beta.2 + "@jupyterlab/logconsole": ^4.4.0-beta.2 + "@jupyterlab/lsp": ^4.4.0-beta.2 + "@jupyterlab/mainmenu": ^4.4.0-beta.2 + "@jupyterlab/metadataform": ^4.4.0-beta.2 + "@jupyterlab/nbformat": ^4.4.0-beta.2 + "@jupyterlab/notebook": ^4.4.0-beta.2 + "@jupyterlab/observables": ^5.4.0-beta.2 + "@jupyterlab/property-inspector": ^4.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/statedb": ^4.4.0-beta.2 + "@jupyterlab/statusbar": ^4.4.0-beta.2 + "@jupyterlab/toc": ^6.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -4140,7 +4140,7 @@ __metadata: "@lumino/widgets": ^2.6.0 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: c177a2769cd6d823d40f96206b934ee403116467ecff5f49217ff6cedb57ee30858dff07bd9124a0e16b790d22e59582861191c215cfdffa31977755761cecb0 + checksum: c24a4eb703883c55442a413934a5fa3a4d1a3ecca4a1bef5798ed0df063c4de5df79e0ba3d9fc9064f883d43220191e381072323864c8a19579a0c57f9d0bf9c languageName: node linkType: hard @@ -4182,28 +4182,28 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/notebook@npm:^4.4.0-beta.1, @jupyterlab/notebook@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/notebook@npm:4.4.0-beta.1" +"@jupyterlab/notebook@npm:^4.4.0-beta.2, @jupyterlab/notebook@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/notebook@npm:4.4.0-beta.2" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/cells": ^4.4.0-beta.1 - "@jupyterlab/codeeditor": ^4.4.0-beta.1 - "@jupyterlab/codemirror": ^4.4.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/docregistry": ^4.4.0-beta.1 - "@jupyterlab/documentsearch": ^4.4.0-beta.1 - "@jupyterlab/lsp": ^4.4.0-beta.1 - "@jupyterlab/nbformat": ^4.4.0-beta.1 - "@jupyterlab/observables": ^5.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/statusbar": ^4.4.0-beta.1 - "@jupyterlab/toc": ^6.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/cells": ^4.4.0-beta.2 + "@jupyterlab/codeeditor": ^4.4.0-beta.2 + "@jupyterlab/codemirror": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/docregistry": ^4.4.0-beta.2 + "@jupyterlab/documentsearch": ^4.4.0-beta.2 + "@jupyterlab/lsp": ^4.4.0-beta.2 + "@jupyterlab/nbformat": ^4.4.0-beta.2 + "@jupyterlab/observables": ^5.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/statusbar": ^4.4.0-beta.2 + "@jupyterlab/toc": ^6.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -4216,7 +4216,7 @@ __metadata: "@lumino/virtualdom": ^2.0.2 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: dda82ad30ffe3420c73785adb7a20cb1d2e71295b64fd69241caf525194f5e629fb58728313b0fe4bd653b8b304c17aadb2788637bde7ff907786d111bc0586b + checksum: e2beaf97c37006f4f166b7acb7a230d493d524f8d6f4ecf8c9dd0262106041cd2af07a26a100c33bae63f1a656a7dd30e1fd334d463207c0bb9e1762f1daa204 languageName: node linkType: hard @@ -4233,16 +4233,16 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/observables@npm:^5.4.0-beta.1": - version: 5.4.0-beta.1 - resolution: "@jupyterlab/observables@npm:5.4.0-beta.1" +"@jupyterlab/observables@npm:^5.4.0-beta.2": + version: 5.4.0-beta.2 + resolution: "@jupyterlab/observables@npm:5.4.0-beta.2" dependencies: "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 - checksum: 8e3a229ec562cfe35d4dbb77381b54779908736ccee7fcebc58a3a50296764bae13fd7017882c45b0d00e5044631aeedde1343931e7f3d300db795238dd3fd5e + checksum: 4f05a240b612329d6dc99a77ead91e94ef7124ab84d38ccd52aa54116e96c49d6ed40fb6ca04158681bcdc2be333168624ef64fd06f9f6e163cd16849846e1bd languageName: node linkType: hard @@ -4268,17 +4268,17 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/outputarea@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/outputarea@npm:4.4.0-beta.1" +"@jupyterlab/outputarea@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/outputarea@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/nbformat": ^4.4.0-beta.1 - "@jupyterlab/observables": ^5.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/nbformat": ^4.4.0-beta.2 + "@jupyterlab/observables": ^5.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -4286,67 +4286,67 @@ __metadata: "@lumino/properties": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: cb9dd129c7a142e3876a9a7402bb75ee82be90fa4c8d462b070714fe21a2303fe945ecc27560b24b3d6f33cb6d5ee83e6dff5e19150a277db21f9c3b6b4f0ad9 + checksum: 375ce7852acd4ed97a9ebe83ab534effdd9a89ca24ba871d8074e8b0320f0cdd4796511072ff641ccc934d491d476edd4258af3615af64fc0d3e9445e397b0dc languageName: node linkType: hard -"@jupyterlab/pdf-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/pdf-extension@npm:4.4.0-beta.1" +"@jupyterlab/pdf-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/pdf-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: 38f46e83f9bcbf881499e5b0e79db7d56c40113f6fd9c0a7131c66edb49dfad8e91752737db48c64b44f993fe393d4c5b166d6d752830e06be5af05cec8780e3 + checksum: b9a05eb234079a89675000e61401bbb99f6dbd4e0c9914610b31320962df10f851bdac7b1473c8f6ca8aad7b20eb62219f4d898d7ae991012432bab6e602b72d languageName: node linkType: hard -"@jupyterlab/pluginmanager-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/pluginmanager-extension@npm:4.4.0-beta.1" +"@jupyterlab/pluginmanager-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/pluginmanager-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/pluginmanager": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/pluginmanager": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 - checksum: b0f7a4050ac6b8e48f4a371ab7c2cd66d6d5ff46fc585449f416acfaa9c73cb4e2a5010d5930844f8d51fa4d4b2f2e503ebf1679e637eb855de3042f49fed30f + checksum: f00408b9d32fd550efb0c767cc1e2e35c066baf38b6244fc98df4aea08574b2696760b1af62cf05a056d777422a6166b6ac3485cf69fdf8901ae9add305b8dcf languageName: node linkType: hard -"@jupyterlab/pluginmanager@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/pluginmanager@npm:4.4.0-beta.1" +"@jupyterlab/pluginmanager@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/pluginmanager@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 2664fc47ff60380e01badae3bce85d2069ef71b8f09e83543851a8a1a028642de766d46e764d22f95421f39fe5fcf365b86ee5288e349f4e01825f8333114f5e + checksum: 7635e9cc768345bb2126e0e522397868f82d39275725871b45383f7dba66e0ab3c09595da549d46d19626b0862eb5100734fc759005dc56ddd464cec3dd3c8be languageName: node linkType: hard -"@jupyterlab/property-inspector@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/property-inspector@npm:4.4.0-beta.1" +"@jupyterlab/property-inspector@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/property-inspector@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 7ebd48f67f5fb39f4cc651406a5eac530eedb7e298d972787ae9379ae7bcaec482f50905e9cf2c343bbb4385b85cc5cf4bcf78bdfab979f415505564f8eb859c + checksum: 82f83c6e36ef0c0dfeef09ae9ad394e58e04f42aeff3cb5b1e39f2b4d9ddd56f4c8a69fec90524e34741cdb4ca43ffc20b22f79bd18cbf2b62cbe8b2d6e7c3b4 languageName: node linkType: hard @@ -4360,13 +4360,13 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/rendermime-interfaces@npm:^3.12.0-beta.1, @jupyterlab/rendermime-interfaces@npm:~3.12.0-beta.1": - version: 3.12.0-beta.1 - resolution: "@jupyterlab/rendermime-interfaces@npm:3.12.0-beta.1" +"@jupyterlab/rendermime-interfaces@npm:^3.12.0-beta.2, @jupyterlab/rendermime-interfaces@npm:~3.12.0-beta.2": + version: 3.12.0-beta.2 + resolution: "@jupyterlab/rendermime-interfaces@npm:3.12.0-beta.2" dependencies: "@lumino/coreutils": ^1.11.0 || ^2.2.0 "@lumino/widgets": ^1.37.2 || ^2.6.0 - checksum: a357e6bbda886f6c4ac0e3852f8ae7486d27217e58961444c372232b6edf54ead62b18e37d673f86ce3aa115ed5675d815dcd8e49541d21e6309e73c8ce33d80 + checksum: 85fadd071970a324445db5b5d350e17414d8d9b228cfd93bac39654737ff82bbf6a0b65c279c367c7d901c6019c480b2b31d6b91fcedb64396c6487be5d40add languageName: node linkType: hard @@ -4390,59 +4390,59 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/rendermime@npm:^4.4.0-beta.1, @jupyterlab/rendermime@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/rendermime@npm:4.4.0-beta.1" +"@jupyterlab/rendermime@npm:^4.4.0-beta.2, @jupyterlab/rendermime@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/rendermime@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/nbformat": ^4.4.0-beta.1 - "@jupyterlab/observables": ^5.4.0-beta.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/nbformat": ^4.4.0-beta.2 + "@jupyterlab/observables": ^5.4.0-beta.2 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 lodash.escape: ^4.0.1 - checksum: f46d9b9d271ba448c548462b885a4531a0494781fcdabaedba4cfbfa1b9cbb76c37242cbfffc08b52b67de3434ca4613f3cfd736ab09d58d92463918f62a7fd0 + checksum: 761d3ed8bca2fe606198aa735feaaf18e3081ae81b53f10cb3cc12edb2c360cee28c5cb864cba3aa06ba303b9cd36b90672986c1cac3fb7ad53a3240a9b08f0e languageName: node linkType: hard -"@jupyterlab/running-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/running-extension@npm:4.4.0-beta.1" +"@jupyterlab/running-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/running-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/docmanager": ^4.4.0-beta.1 - "@jupyterlab/docregistry": ^4.4.0-beta.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 - "@jupyterlab/running": ^4.4.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/statedb": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/docmanager": ^4.4.0-beta.2 + "@jupyterlab/docregistry": ^4.4.0-beta.2 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 + "@jupyterlab/running": ^4.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/statedb": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/commands": ^2.3.1 "@lumino/polling": ^2.1.3 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 132af385b7fc428b2960e6186617e9e2d3378fe256bc691a8a44a34519d6e3ab0da153b9870fbd65e63dd92a96fb44957b2fc203bd1646b32415be9fc8395f18 + checksum: 319b638e48440fed24b180c301590b07e4523f2678d8a1ba64d5e23f7d18966d98a22286c367d76f0bcfeda5385df0a33a1cf0e232ee7b02e9df6329132f48d2 languageName: node linkType: hard -"@jupyterlab/running@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/running@npm:4.4.0-beta.1" +"@jupyterlab/running@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/running@npm:4.4.0-beta.2" dependencies: "@jupyter/react-components": ^0.16.6 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/statedb": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/statedb": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/domutils": ^2.0.2 @@ -4450,7 +4450,7 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: aced4bb08df45c5fe1ea1933383c4850290e5565ab115355002897870acacbcf7222c6b588bd00cab2c7340b59f5b763b7b4f4ac81c26c7a239a4cef4c213999 + checksum: b0c4fb2a83c7ce3f323b60773fcecb5302f3d73cf3e47396a1e72db254dd6f7fd03c973fb1ae03c9c055300090c50a7d2efbb02e2cc7ba1dc40325c0ca29711a languageName: node linkType: hard @@ -4473,58 +4473,58 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/services@npm:^7.4.0-beta.1, @jupyterlab/services@npm:~7.4.0-beta.1": - version: 7.4.0-beta.1 - resolution: "@jupyterlab/services@npm:7.4.0-beta.1" +"@jupyterlab/services@npm:^7.4.0-beta.2, @jupyterlab/services@npm:~7.4.0-beta.2": + version: 7.4.0-beta.2 + resolution: "@jupyterlab/services@npm:7.4.0-beta.2" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/nbformat": ^4.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/statedb": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/nbformat": ^4.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/statedb": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/polling": ^2.1.3 "@lumino/properties": ^2.0.2 "@lumino/signaling": ^2.1.3 ws: ^8.11.0 - checksum: c9119f3182a4c85631f8c3f0170265165fb6023eb55ee1ff1bfbaac23c283eb8a1aeaadbd87749585723b582a6edf404915f3ffa4f715b61065ed521935679a3 + checksum: 88f3f4d2f9ff9e305a357b10152d280b45e3592beb7188ecab2430b0248da3b4ed4f20d98431c42ea5df21e6f0652e66095fd52bf0f0e014922f4572d5d9d11b languageName: node linkType: hard -"@jupyterlab/settingeditor-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/settingeditor-extension@npm:4.4.0-beta.1" +"@jupyterlab/settingeditor-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/settingeditor-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/codeeditor": ^4.4.0-beta.1 - "@jupyterlab/pluginmanager": ^4.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 - "@jupyterlab/settingeditor": ^4.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/statedb": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/codeeditor": ^4.4.0-beta.2 + "@jupyterlab/pluginmanager": ^4.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/settingeditor": ^4.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/statedb": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/disposable": ^2.1.3 react: ^18.2.0 - checksum: 49e211b79a53e5a57f9e594d99b3d2c04109bdb45df92edfe997d6d029f27f911e7a1d68c716276c88c7cd8710c675fd55e3f2fbe08dc9fc70b24bf630608da3 + checksum: 1fdbad32647f28b594b50d9be208e0a9e2e5f5647ddcd28e7be6e9c82faa644188559b5fe4d878064a13f3b933de916454d24ad9d91d7b00feb67c66d0cc8ef5 languageName: node linkType: hard -"@jupyterlab/settingeditor@npm:^4.4.0-beta.1, @jupyterlab/settingeditor@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/settingeditor@npm:4.4.0-beta.1" +"@jupyterlab/settingeditor@npm:^4.4.0-beta.2, @jupyterlab/settingeditor@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/settingeditor@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/codeeditor": ^4.4.0-beta.1 - "@jupyterlab/inspector": ^4.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/statedb": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/codeeditor": ^4.4.0-beta.2 + "@jupyterlab/inspector": ^4.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/statedb": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -4538,7 +4538,7 @@ __metadata: "@rjsf/validator-ajv8": ^5.13.4 json-schema: ^0.4.0 react: ^18.2.0 - checksum: 4c1581c871318e4ee2f20897a46f093008c6cc1627b66d26659171e34ce43347bdc2a8032e61ce3edd5f3347a43b5ee374b008161f6e628dafd6403b3628f050 + checksum: ca8955a1e6d3af1c9fe0a199ef1808881303f9e4fcf42505d856ab1dd01abdd37eb170a464baa25dba46d624d4b0ad6f30fe0a57c87c0cd4a7ce2e6910f644d1 languageName: node linkType: hard @@ -4561,12 +4561,12 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/settingregistry@npm:^4.4.0-beta.1, @jupyterlab/settingregistry@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/settingregistry@npm:4.4.0-beta.1" +"@jupyterlab/settingregistry@npm:^4.4.0-beta.2, @jupyterlab/settingregistry@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/settingregistry@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/nbformat": ^4.4.0-beta.1 - "@jupyterlab/statedb": ^4.4.0-beta.1 + "@jupyterlab/nbformat": ^4.4.0-beta.2 + "@jupyterlab/statedb": ^4.4.0-beta.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -4576,18 +4576,18 @@ __metadata: json5: ^2.2.3 peerDependencies: react: ">=16" - checksum: 37630b667768dc0f5ceb01a149d4f1c7bdceca85e7d83e5e5f5fbfe75781e02e351257310a43f841c291756e46891a870715c01382c56f927a3a481bed2179d3 + checksum: 0910683251322d1b90722815fc0c79c7f0004a472dafaff39515f8a7ee95149e1bb3ebd728425e21005fa9f1aadb6e0df2a5f53706462d5bb4ef94978b0d5858 languageName: node linkType: hard -"@jupyterlab/shortcuts-extension@npm:~5.2.0-beta.1": - version: 5.2.0-beta.1 - resolution: "@jupyterlab/shortcuts-extension@npm:5.2.0-beta.1" +"@jupyterlab/shortcuts-extension@npm:~5.2.0-beta.2": + version: 5.2.0-beta.2 + resolution: "@jupyterlab/shortcuts-extension@npm:5.2.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -4596,7 +4596,7 @@ __metadata: "@lumino/keyboard": ^2.0.2 "@lumino/signaling": ^2.1.3 react: ^18.2.0 - checksum: 5b819bb3e6fb999b4da74bb105dd1e1fd17a7c3da6123839fa7dfbecafdb75f549c380bbe5dbfff0dd8eaa62eb657d7304a1718c71a205ceb8eaf0dec505fdc8 + checksum: a94a48a7f72906bdc8050fec139b7237d79f8120af2547c8d5202f26d6f0ea1077cf733a0f19590ed7345eebf21e92cd6a0959d494734f9b4af76a247d23b97e languageName: node linkType: hard @@ -4613,16 +4613,16 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/statedb@npm:^4.4.0-beta.1, @jupyterlab/statedb@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/statedb@npm:4.4.0-beta.1" +"@jupyterlab/statedb@npm:^4.4.0-beta.2, @jupyterlab/statedb@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/statedb@npm:4.4.0-beta.2" dependencies: "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/properties": ^2.0.2 "@lumino/signaling": ^2.1.3 - checksum: 57f67cbc2997b607bd29c0cb96a38d5215602e74caa6d776de5f34900f81b56e967843b30b298951ae10af8157c9cbf5ce9166c72dfd8295264c73846e2dbfef + checksum: 4e634b6f4f76a9f38f6ff47cc666aa0e1d3deeeea06eb163ae1cf722b46a772ade34ecaa8a56f88aa41d8fbbc50a7ba69a55557f7236b3f7023dbd850d41b902 languageName: node linkType: hard @@ -4642,11 +4642,11 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/statusbar@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/statusbar@npm:4.4.0-beta.1" +"@jupyterlab/statusbar@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/statusbar@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -4654,36 +4654,36 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: f9f3c6d485cee429bdae7b57df51891a95146cd9e8ddbd5136ba35ab421e8b48d7fabf007240f51fe931cb432358e237c7eac17b84fda8bf4a58bd0b2d9d00b1 + checksum: 942d2cbc84619dc1f03e52049293950b42d9101537f6724bc0955c82fa7b707958bc2f050885e5dab39d5361edc18c1053e2567c5402b8c86eb63d357d1a29f3 languageName: node linkType: hard -"@jupyterlab/terminal-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/terminal-extension@npm:4.4.0-beta.1" +"@jupyterlab/terminal-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/terminal-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/launcher": ^4.4.0-beta.1 - "@jupyterlab/mainmenu": ^4.4.0-beta.1 - "@jupyterlab/running": ^4.4.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/terminal": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/launcher": ^4.4.0-beta.2 + "@jupyterlab/mainmenu": ^4.4.0-beta.2 + "@jupyterlab/running": ^4.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/terminal": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/widgets": ^2.6.0 - checksum: e146c16a34f09ebddcb461207a79a9aa801cf2a72d1e76d44ac940cc698c8bfd596c21e0c461a33c0fdbb5c9dc92c95fd39a9af7198afd5b665a2f7b8c7dd929 + checksum: fb1edd5219ebcde12a26cb6485b03389cbd78527fb9b5637bb605665ecc04c0479490f95d3c345bd4e87b6e7cb3cea7ef3de4a323809b8e28833711372f267a2 languageName: node linkType: hard -"@jupyterlab/terminal@npm:^4.4.0-beta.1, @jupyterlab/terminal@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/terminal@npm:4.4.0-beta.1" +"@jupyterlab/terminal@npm:^4.4.0-beta.2, @jupyterlab/terminal@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/terminal@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 "@lumino/domutils": ^2.0.2 "@lumino/messaging": ^2.0.2 @@ -4693,7 +4693,7 @@ __metadata: "@xterm/addon-web-links": ~0.11.0 "@xterm/addon-webgl": ~0.18.0 "@xterm/xterm": ~5.5.0 - checksum: c15c56836110a7241939da84c590b8b942544604b58df715b5ea56130aa260bf5dbcb75d4344d14bd28d8d6890a42375ee8b5e5a9e3e5fffea2b3fd500a83683 + checksum: c90ab28ccdb3685d6f3867ae3435f125818e42f03dd8e7b097ab3b61aec2740e4d1a3ebfd2672db30bcf50538ccb57f5ca282b97d918658936f4a928a0302df4 languageName: node linkType: hard @@ -4733,49 +4733,49 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/theme-dark-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/theme-dark-extension@npm:4.4.0-beta.1" +"@jupyterlab/theme-dark-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/theme-dark-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - checksum: e44ad5137382920007f1078f2fb0714c4cecd9ec38f23d96c4803c0e7ffe799ff1fbc8b997043640fbc8451763678bd5437eb7a0c01345416f605b0deb1185d4 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + checksum: e7bfacc3e6d7be0befc92984c3b6e3d1448598b3b9900fa7456c956a954427960ff008a69fe8908b0d6e677f3779f17353be4e75eb7dfa03407b37ad20cc12ea languageName: node linkType: hard -"@jupyterlab/theme-dark-high-contrast-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/theme-dark-high-contrast-extension@npm:4.4.0-beta.1" +"@jupyterlab/theme-dark-high-contrast-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/theme-dark-high-contrast-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - checksum: d6b7ff9e5986ec4b9dc191ace7644ff3479cd975eb7f808c5ce918c83c1d06e7f0a81df5f42a43afde0ee89e67a2cdad6ce16ad5a91e1cbe3a3604e99987059e + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + checksum: 4f786b3528832202de3368b9cd614024faa633824e9342b9e0be54e678c7114b3f0c1045fc1936bf23d1f9e6ce2bbe0a31d45d9a150fec0d800b7f05505a7fb0 languageName: node linkType: hard -"@jupyterlab/theme-light-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/theme-light-extension@npm:4.4.0-beta.1" +"@jupyterlab/theme-light-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/theme-light-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - checksum: a53b9e92fa2ffc7069d2cd0a1570b547cfe36e97391f1c6026f7db8e8e248c8c574fcaa1c027427c60eaf12833392ef6b5c0ee61fc627fa349a40bfbf291d631 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + checksum: 908bd242f7b2a177db352517b814c406bb0f41de2aa42ebebde70cd689fac2689af1101eb455dae66b002dc1c4060cd35751f980d38b70c6bfbe2b9c0840abce languageName: node linkType: hard -"@jupyterlab/toc-extension@npm:~6.4.0-beta.1": - version: 6.4.0-beta.1 - resolution: "@jupyterlab/toc-extension@npm:6.4.0-beta.1" +"@jupyterlab/toc-extension@npm:~6.4.0-beta.2": + version: 6.4.0-beta.2 + resolution: "@jupyterlab/toc-extension@npm:6.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/toc": ^6.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 - checksum: ad43ff636e43e90b4eb5cb14577e432d459b5272dc3ea1441e68cc9abfcceaa6e3f5ee0a43179070f746b948c1168535392621d4a6c0a4b3426075212570b377 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/toc": ^6.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 + checksum: bb9f1f8b6aaa38dd4b3d05c3de7fa537b4391c93281da7affdeb1ea0a5cb704a18b9b01d0ad8db2d87ece9836857fefd7dfd9538f93792da20ec9918e49edd9e languageName: node linkType: hard @@ -4802,75 +4802,75 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/toc@npm:^6.4.0-beta.1": - version: 6.4.0-beta.1 - resolution: "@jupyterlab/toc@npm:6.4.0-beta.1" +"@jupyterlab/toc@npm:^6.4.0-beta.2": + version: 6.4.0-beta.2 + resolution: "@jupyterlab/toc@npm:6.4.0-beta.2" dependencies: "@jupyter/react-components": ^0.16.6 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/docregistry": ^4.4.0-beta.1 - "@jupyterlab/observables": ^5.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/docregistry": ^4.4.0-beta.2 + "@jupyterlab/observables": ^5.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 6f47b17b8de4ee7cc7543650f139795956dee1f29c5f475cefa380b1ce089fe366d5a6220a8a346674399c1dfc02b742e3cb88e613ff8c00967c343f2dbbe062 + checksum: 1ecbcf1948132852378dc6e99e3988602df5fd3730f472fae2ce33098855832b3ab46ed4850223a014aae57da492e054d2188616904df9b7bbfbe576783034f8 languageName: node linkType: hard -"@jupyterlab/tooltip-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/tooltip-extension@npm:4.4.0-beta.1" +"@jupyterlab/tooltip-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/tooltip-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/codeeditor": ^4.4.0-beta.1 - "@jupyterlab/console": ^4.4.0-beta.1 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/fileeditor": ^4.4.0-beta.1 - "@jupyterlab/notebook": ^4.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/tooltip": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/codeeditor": ^4.4.0-beta.2 + "@jupyterlab/console": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/fileeditor": ^4.4.0-beta.2 + "@jupyterlab/notebook": ^4.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/tooltip": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.6.0 - checksum: 9a02c4d29cefd49da49f6ff6408971c2ce3fd6f58e6ce350bcaf61e98f12cf7964db22b300d044fe721d151a746bccb66c53bb0666547b630ec3490589c0c86d + checksum: 853a187c160d1a775e9a1233172e346e5157928ef2b8b19e8e110c9a339fbc0e805491c12010a2f321a608161965365c9f697953fffd22db51e89394faa1a886 languageName: node linkType: hard -"@jupyterlab/tooltip@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/tooltip@npm:4.4.0-beta.1" +"@jupyterlab/tooltip@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/tooltip@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/codeeditor": ^4.4.0-beta.1 - "@jupyterlab/rendermime": ^4.4.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 + "@jupyterlab/codeeditor": ^4.4.0-beta.2 + "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/widgets": ^2.6.0 - checksum: a24b20856de268088f7e4d6bbffb2903888175ff0c03da5100235800155a3f6d3c4ac280067698616d2ea3bf3f6dcee50c67bbc39a32bbcc74e4613e12c6e8b9 + checksum: 18a2c6c5f95365bb90f28a2efb94eec8cda2b04330ccfbd99ba230789bd39fb7b0b38832812cea9ef06c726ed497c5fec115865ea14eb782e2ab1e8e32161c7c languageName: node linkType: hard -"@jupyterlab/translation-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/translation-extension@npm:4.4.0-beta.1" +"@jupyterlab/translation-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/translation-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/apputils": ^4.5.0-beta.1 - "@jupyterlab/mainmenu": ^4.4.0-beta.1 - "@jupyterlab/settingregistry": ^4.4.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 - checksum: 3ff89331051ee2a01f91d94d9a5714a3a1abc03e15f08e898822d249e51224df37c7802514b1a9439e2097f7822e2b896cb830960d2dbc54e813792bebf1cad4 + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-beta.2 + "@jupyterlab/mainmenu": ^4.4.0-beta.2 + "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 + checksum: 9a771909311ea3921f6ba08fe8e8d43310862230686f6a77a202ba4c594b4221b7656eb3c4636a1e71cf97b95c80caf89d3a8600781873f9006b401046e93413 languageName: node linkType: hard @@ -4887,26 +4887,26 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/translation@npm:^4.4.0-beta.1, @jupyterlab/translation@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/translation@npm:4.4.0-beta.1" +"@jupyterlab/translation@npm:^4.4.0-beta.2, @jupyterlab/translation@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/translation@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 - "@jupyterlab/services": ^7.4.0-beta.1 - "@jupyterlab/statedb": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 + "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/statedb": ^4.4.0-beta.2 "@lumino/coreutils": ^2.2.0 - checksum: e35b5fde5c154eb136b1de8263b0de4b5b6eb5b28b64af19d399f048aca4d7cc6f4e2f1032f3b402f150da814c12d2750a4c8514c09f7f3c99f3b2b45670a8d4 + checksum: 92ed4804dd1955e5d6d9be78d7d31f7155997d0cb01d44493c70502d5fdb1b8a9a5aedc93e38a14c0e6874fc1322038f7e97e3eeb1b123f3ded53b8e533bcb49 languageName: node linkType: hard -"@jupyterlab/ui-components-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/ui-components-extension@npm:4.4.0-beta.1" +"@jupyterlab/ui-components-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/ui-components-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/application": ^4.4.0-beta.1 - "@jupyterlab/ui-components": ^4.4.0-beta.1 - checksum: 6901f721124a8e24dc89681fa3d01a6bd6df02f8ec7da96062c9277f1866aba08e04be7779991311f32ddb40fca68f93c224cc5bd7304ccc6c525a2496b5e26f + "@jupyterlab/application": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-beta.2 + checksum: 7adc91586c6cf8c6ffcb54bd8909e35a857045d5a3e416484499a8fa92fabca8a4f5a29ad22a645f4dbff234b0f6812d4f9514033abc1ee57f27c3123cf4ac98 languageName: node linkType: hard @@ -4941,16 +4941,16 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/ui-components@npm:^4.4.0-beta.1, @jupyterlab/ui-components@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/ui-components@npm:4.4.0-beta.1" +"@jupyterlab/ui-components@npm:^4.4.0-beta.2, @jupyterlab/ui-components@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/ui-components@npm:4.4.0-beta.2" dependencies: "@jupyter/react-components": ^0.16.6 "@jupyter/web-components": ^0.16.6 - "@jupyterlab/coreutils": ^6.4.0-beta.1 - "@jupyterlab/observables": ^5.4.0-beta.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 - "@jupyterlab/translation": ^4.4.0-beta.1 + "@jupyterlab/coreutils": ^6.4.0-beta.2 + "@jupyterlab/observables": ^5.4.0-beta.2 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 + "@jupyterlab/translation": ^4.4.0-beta.2 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -4968,34 +4968,34 @@ __metadata: typestyle: ^2.0.4 peerDependencies: react: ^18.2.0 - checksum: d30bab6b13e76ec1bf6715cc07531f6e59c3c92bf8d3a4344e27a6ddb22eeb3aa6b99b8cd1084532ccdde9b9154aecd4851a8957d175dbd8fc768f9e054af5b5 + checksum: 8b1a3473058ce3f82d03497114046a21e53f1a5c6a7b3295431d79f67ea001c9272620a16f59812b4d08a450f9f9f48104092a3710bd3f337de29e03b39dab55 languageName: node linkType: hard -"@jupyterlab/vega5-extension@npm:~4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/vega5-extension@npm:4.4.0-beta.1" +"@jupyterlab/vega5-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/vega5-extension@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.6.0 vega: ^5.20.0 vega-embed: ^6.2.1 vega-lite: ^5.6.1-next.1 - checksum: c2ef82a2f804ae302e2ab0edd75e0a6e075d2b2ae87473a35b31168681f4bf30257dd008ea619b8720b57ce3735fac6d1fdfc32f47e34e2400bce41bf428cd3a + checksum: 51c17af20b07772c374c20174d081dcfc791b4704bdc70e8bc99c9000824e597ba3d665d44fc0be7ebeb3aeab679688be07c07d3aa4a4d70ac6e55889d2893bd languageName: node linkType: hard -"@jupyterlab/workspaces@npm:^4.4.0-beta.1": - version: 4.4.0-beta.1 - resolution: "@jupyterlab/workspaces@npm:4.4.0-beta.1" +"@jupyterlab/workspaces@npm:^4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/workspaces@npm:4.4.0-beta.2" dependencies: - "@jupyterlab/services": ^7.4.0-beta.1 + "@jupyterlab/services": ^7.4.0-beta.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/polling": ^2.1.3 "@lumino/signaling": ^2.1.3 - checksum: 48dcd157507c7b55a3e02dc61d023487691554be84fe680385bb10aa38df591572da94d27efd1e5b211fcc6d1ac9bd01741151faf43c2bbd18826fd50b0f9770 + checksum: ccca82957d224c2f085f2fa32ca1e4aec33d545efcf3405119540d5da774b743eb7467e3f8b4320f5076e3f699d64f79633ebffab20d90574cf9d4bd5af86c98 languageName: node linkType: hard From be2fd12f91a64796d9919ee8b8242f3093aac8a5 Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Thu, 20 Mar 2025 08:27:48 +0100 Subject: [PATCH 007/143] Add pixi step to the update workflow (#7608) * Add pixi step to the update workflow * Update upgrade-jupyterlab-dependencies.yml --- .github/workflows/upgrade-jupyterlab-dependencies.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/upgrade-jupyterlab-dependencies.yml b/.github/workflows/upgrade-jupyterlab-dependencies.yml index 0d5988eb72..3734b8e8ee 100644 --- a/.github/workflows/upgrade-jupyterlab-dependencies.yml +++ b/.github/workflows/upgrade-jupyterlab-dependencies.yml @@ -79,6 +79,14 @@ jobs: jlpm jlpm deduplicate fi + - uses: prefix-dev/setup-pixi@v0.8.3 + with: + pixi-version: v0.41.4 + manifest-path: pyproject.toml + locked: false + + - name: Update pixi.lock + run: pixi install - name: Create a PR env: From ab63d5cd8d37c753c70e4b96c4ed01865b2ecc20 Mon Sep 17 00:00:00 2001 From: jtpio Date: Thu, 20 Mar 2025 07:41:24 +0000 Subject: [PATCH 008/143] Publish 7.4.0b2 SHA256 hashes: jupyter-notebook-application-7.4.0-beta.2.tgz: 107063c02d5e8b3f9e4e8353452b93a82440a09848bf52e9e31f26247d362644 jupyter-notebook-application-extension-7.4.0-beta.2.tgz: 13fd7779c9d59da37656c536b3d7299239ff3eff1ebe3557e52a178c2ff6ee17 jupyter-notebook-console-extension-7.4.0-beta.2.tgz: 02a7b499bc697c44dcdb03497fcef181313c82988c17bd8eb78fd47847e86e85 jupyter-notebook-docmanager-extension-7.4.0-beta.2.tgz: 43daf73aa91ac64916ae47c81ccaacafbc8bde6bf29346d08954f10aa6433453 jupyter-notebook-documentsearch-extension-7.4.0-beta.2.tgz: 584136e9ab4e4a1dd2427842a553d06e64c60228c8b5666d33797069e4b4ce90 jupyter-notebook-help-extension-7.4.0-beta.2.tgz: 91dc9b5c9897dca49c1825d118602cd709dd6fbcc64d66ff80688057c864e7ef jupyter-notebook-lab-extension-7.4.0-beta.2.tgz: 2ad443f029658050c2ed86bc8f529b9f22f1242259586f5e695c21d73f395cd2 jupyter-notebook-notebook-extension-7.4.0-beta.2.tgz: 50225a7db8f14f09b3a43917eb2a83e998af56b8adfc7cad7649353c45809704 jupyter-notebook-terminal-extension-7.4.0-beta.2.tgz: 1e4b024e682abd9b4a393c1d1efed491bb691acb9a66f7d5b5f33d9d4091f2b4 jupyter-notebook-tree-7.4.0-beta.2.tgz: c12af45581b146f8f483f47077dc1b6b737f04f8fa8c8a63e0c5f2681910ce35 jupyter-notebook-tree-extension-7.4.0-beta.2.tgz: a7808bce6e6d2063de5b85e289f447b95480cf6a7858167e66612a494ab15323 jupyter-notebook-ui-components-7.4.0-beta.2.tgz: 10eeec81bca5103463e044cd1ddf8ee6f6decd60c2d3c079b04496ff822cca7a notebook-7.4.0b2-py3-none-any.whl: 5941d9c591f81385eed62220a9a9a7dab1469ed2fd361076b274e575bebf0f62 notebook-7.4.0b2.tar.gz: 7e10818a131403133c8c6fe374e540bcb6b7400f3a617683b92f73df9db0d616 --- CHANGELOG.md | 23 ++++- app/package.json | 46 ++++----- buildutils/package.json | 2 +- notebook/_version.py | 2 +- packages/_metapackage/package.json | 26 ++--- packages/application-extension/package.json | 6 +- packages/application/package.json | 2 +- packages/console-extension/package.json | 4 +- packages/docmanager-extension/package.json | 4 +- .../documentsearch-extension/package.json | 4 +- packages/help-extension/package.json | 4 +- packages/lab-extension/package.json | 4 +- packages/notebook-extension/package.json | 4 +- packages/terminal-extension/package.json | 4 +- packages/tree-extension/package.json | 6 +- packages/tree/package.json | 4 +- packages/ui-components/package.json | 2 +- yarn.lock | 94 +++++++++---------- 18 files changed, 130 insertions(+), 111 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f82174ab7..e7b22ba8cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -69,6 +69,27 @@ or via the JSON Settings Editor in the Application Context Menu. +## 7.4.0b2 + +([Full Changelog](https://github.com/jupyter/notebook/compare/@jupyter-notebook/application-extension@7.4.0-beta.1...be2fd12f91a64796d9919ee8b8242f3093aac8a5)) + +### Maintenance and upkeep improvements + +- Update to JupyterLab v4.4.0b2 [#7614](https://github.com/jupyter/notebook/pull/7614) ([@jtpio](https://github.com/jtpio)) +- Add pixi step to the update workflow [#7608](https://github.com/jupyter/notebook/pull/7608) ([@jtpio](https://github.com/jtpio)) + +### Documentation improvements + +- User facing changelog for 7.4 [#7612](https://github.com/jupyter/notebook/pull/7612) ([@jtpio](https://github.com/jtpio)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyter/notebook/graphs/contributors?from=2025-03-14&to=2025-03-20&type=c)) + +[@github-actions](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2025-03-14..2025-03-20&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2025-03-14..2025-03-20&type=Issues) + + + ## 7.4.0b1 ([Full Changelog](https://github.com/jupyter/notebook/compare/@jupyter-notebook/application-extension@7.4.0-beta.0...6d06d97302bd1bb77e25864214ade2277f2e50d4)) @@ -90,8 +111,6 @@ or via the JSON Settings Editor in the Application Context Menu. [@dependabot](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Adependabot+updated%3A2025-02-20..2025-03-14&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2025-02-20..2025-03-14&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2025-02-20..2025-03-14&type=Issues) - - ## 7.4.0b0 ([Full Changelog](https://github.com/jupyter/notebook/compare/@jupyter-notebook/application-extension@7.4.0-alpha.3...48243197bbd004555008cd7cfa14c907147aceca)) diff --git a/app/package.json b/app/package.json index 738b03c85b..47d6b56952 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/app", - "version": "7.4.0-beta.1", + "version": "7.4.0-beta.2", "private": true, "scripts": { "build": "webpack", @@ -12,17 +12,17 @@ "resolutions": { "@codemirror/state": "~6.5.0", "@codemirror/view": "~6.36.1", - "@jupyter-notebook/application": "~7.4.0-beta.1", - "@jupyter-notebook/application-extension": "~7.4.0-beta.1", - "@jupyter-notebook/console-extension": "~7.4.0-beta.1", - "@jupyter-notebook/docmanager-extension": "~7.4.0-beta.1", - "@jupyter-notebook/documentsearch-extension": "~7.4.0-beta.1", - "@jupyter-notebook/help-extension": "~7.4.0-beta.1", - "@jupyter-notebook/notebook-extension": "~7.4.0-beta.1", - "@jupyter-notebook/terminal-extension": "~7.4.0-beta.1", - "@jupyter-notebook/tree": "~7.4.0-beta.1", - "@jupyter-notebook/tree-extension": "~7.4.0-beta.1", - "@jupyter-notebook/ui-components": "~7.4.0-beta.1", + "@jupyter-notebook/application": "~7.4.0-beta.2", + "@jupyter-notebook/application-extension": "~7.4.0-beta.2", + "@jupyter-notebook/console-extension": "~7.4.0-beta.2", + "@jupyter-notebook/docmanager-extension": "~7.4.0-beta.2", + "@jupyter-notebook/documentsearch-extension": "~7.4.0-beta.2", + "@jupyter-notebook/help-extension": "~7.4.0-beta.2", + "@jupyter-notebook/notebook-extension": "~7.4.0-beta.2", + "@jupyter-notebook/terminal-extension": "~7.4.0-beta.2", + "@jupyter-notebook/tree": "~7.4.0-beta.2", + "@jupyter-notebook/tree-extension": "~7.4.0-beta.2", + "@jupyter-notebook/ui-components": "~7.4.0-beta.2", "@jupyter/react-components": "~0.16.7", "@jupyter/web-components": "~0.16.7", "@jupyter/ydoc": "~3.0.0", @@ -123,17 +123,17 @@ "yjs": "~13.6.8" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.1", - "@jupyter-notebook/application-extension": "^7.4.0-beta.1", - "@jupyter-notebook/console-extension": "^7.4.0-beta.1", - "@jupyter-notebook/docmanager-extension": "^7.4.0-beta.1", - "@jupyter-notebook/documentsearch-extension": "^7.4.0-beta.1", - "@jupyter-notebook/help-extension": "^7.4.0-beta.1", - "@jupyter-notebook/notebook-extension": "^7.4.0-beta.1", - "@jupyter-notebook/terminal-extension": "^7.4.0-beta.1", - "@jupyter-notebook/tree": "^7.4.0-beta.1", - "@jupyter-notebook/tree-extension": "^7.4.0-beta.1", - "@jupyter-notebook/ui-components": "^7.4.0-beta.1", + "@jupyter-notebook/application": "^7.4.0-beta.2", + "@jupyter-notebook/application-extension": "^7.4.0-beta.2", + "@jupyter-notebook/console-extension": "^7.4.0-beta.2", + "@jupyter-notebook/docmanager-extension": "^7.4.0-beta.2", + "@jupyter-notebook/documentsearch-extension": "^7.4.0-beta.2", + "@jupyter-notebook/help-extension": "^7.4.0-beta.2", + "@jupyter-notebook/notebook-extension": "^7.4.0-beta.2", + "@jupyter-notebook/terminal-extension": "^7.4.0-beta.2", + "@jupyter-notebook/tree": "^7.4.0-beta.2", + "@jupyter-notebook/tree-extension": "^7.4.0-beta.2", + "@jupyter-notebook/ui-components": "^7.4.0-beta.2", "@jupyterlab/application-extension": "~4.4.0-beta.2", "@jupyterlab/apputils-extension": "~4.4.0-beta.2", "@jupyterlab/attachments": "~4.4.0-beta.2", diff --git a/buildutils/package.json b/buildutils/package.json index 254bdfd3b9..82d0bc827a 100644 --- a/buildutils/package.json +++ b/buildutils/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/buildutils", - "version": "7.4.0-beta.1", + "version": "7.4.0-beta.2", "private": true, "description": "Jupyter Notebook - Build Utilities", "homepage": "https://github.com/jupyter/notebook", diff --git a/notebook/_version.py b/notebook/_version.py index e2edb3bdb7..febf594fbb 100644 --- a/notebook/_version.py +++ b/notebook/_version.py @@ -6,7 +6,7 @@ from collections import namedtuple # Use "hatch version xx.yy.zz" to handle version changes -__version__ = "7.4.0b1" +__version__ = "7.4.0b2" # PEP440 version parser _version_regex = re.compile( diff --git a/packages/_metapackage/package.json b/packages/_metapackage/package.json index 960d536a0b..09c9aa5546 100644 --- a/packages/_metapackage/package.json +++ b/packages/_metapackage/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/metapackage", - "version": "7.4.0-beta.1", + "version": "7.4.0-beta.2", "private": true, "description": "Jupyter Notebook - Metapackage", "homepage": "https://github.com/jupyter/notebook", @@ -20,18 +20,18 @@ "watch": "tsc -b -w --preserveWatchOutput" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.1", - "@jupyter-notebook/application-extension": "^7.4.0-beta.1", - "@jupyter-notebook/console-extension": "^7.4.0-beta.1", - "@jupyter-notebook/docmanager-extension": "^7.4.0-beta.1", - "@jupyter-notebook/documentsearch-extension": "^7.4.0-beta.1", - "@jupyter-notebook/help-extension": "^7.4.0-beta.1", - "@jupyter-notebook/lab-extension": "^7.4.0-beta.1", - "@jupyter-notebook/notebook-extension": "^7.4.0-beta.1", - "@jupyter-notebook/terminal-extension": "^7.4.0-beta.1", - "@jupyter-notebook/tree": "^7.4.0-beta.1", - "@jupyter-notebook/tree-extension": "^7.4.0-beta.1", - "@jupyter-notebook/ui-components": "^7.4.0-beta.1" + "@jupyter-notebook/application": "^7.4.0-beta.2", + "@jupyter-notebook/application-extension": "^7.4.0-beta.2", + "@jupyter-notebook/console-extension": "^7.4.0-beta.2", + "@jupyter-notebook/docmanager-extension": "^7.4.0-beta.2", + "@jupyter-notebook/documentsearch-extension": "^7.4.0-beta.2", + "@jupyter-notebook/help-extension": "^7.4.0-beta.2", + "@jupyter-notebook/lab-extension": "^7.4.0-beta.2", + "@jupyter-notebook/notebook-extension": "^7.4.0-beta.2", + "@jupyter-notebook/terminal-extension": "^7.4.0-beta.2", + "@jupyter-notebook/tree": "^7.4.0-beta.2", + "@jupyter-notebook/tree-extension": "^7.4.0-beta.2", + "@jupyter-notebook/ui-components": "^7.4.0-beta.2" }, "devDependencies": { "typescript": "~5.5.4" diff --git a/packages/application-extension/package.json b/packages/application-extension/package.json index d9484130b4..347e242880 100644 --- a/packages/application-extension/package.json +++ b/packages/application-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/application-extension", - "version": "7.4.0-beta.1", + "version": "7.4.0-beta.2", "description": "Jupyter Notebook - Application Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,8 +38,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.1", - "@jupyter-notebook/ui-components": "^7.4.0-beta.1", + "@jupyter-notebook/application": "^7.4.0-beta.2", + "@jupyter-notebook/ui-components": "^7.4.0-beta.2", "@jupyterlab/application": "~4.4.0-beta.2", "@jupyterlab/apputils": "~4.5.0-beta.2", "@jupyterlab/codeeditor": "~4.4.0-beta.2", diff --git a/packages/application/package.json b/packages/application/package.json index d9bb3d74c6..b9ae167dc1 100644 --- a/packages/application/package.json +++ b/packages/application/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/application", - "version": "7.4.0-beta.1", + "version": "7.4.0-beta.2", "description": "Jupyter Notebook - Application", "homepage": "https://github.com/jupyter/notebook", "bugs": { diff --git a/packages/console-extension/package.json b/packages/console-extension/package.json index e21665e6f2..47c1054dd9 100644 --- a/packages/console-extension/package.json +++ b/packages/console-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/console-extension", - "version": "7.4.0-beta.1", + "version": "7.4.0-beta.2", "description": "Jupyter Notebook - Console Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.1", + "@jupyter-notebook/application": "^7.4.0-beta.2", "@jupyterlab/application": "~4.4.0-beta.2", "@jupyterlab/console": "~4.4.0-beta.2", "@jupyterlab/coreutils": "~6.4.0-beta.2", diff --git a/packages/docmanager-extension/package.json b/packages/docmanager-extension/package.json index 95e010848e..a8285b0aa4 100644 --- a/packages/docmanager-extension/package.json +++ b/packages/docmanager-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/docmanager-extension", - "version": "7.4.0-beta.1", + "version": "7.4.0-beta.2", "description": "Jupyter Notebook - Document Manager Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.1", + "@jupyter-notebook/application": "^7.4.0-beta.2", "@jupyterlab/application": "~4.4.0-beta.2", "@jupyterlab/coreutils": "~6.4.0-beta.2", "@jupyterlab/docmanager": "~4.4.0-beta.2", diff --git a/packages/documentsearch-extension/package.json b/packages/documentsearch-extension/package.json index b152daa6b9..7847e0e026 100644 --- a/packages/documentsearch-extension/package.json +++ b/packages/documentsearch-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/documentsearch-extension", - "version": "7.4.0-beta.1", + "version": "7.4.0-beta.2", "description": "Jupyter Notebook - Document Search Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.1", + "@jupyter-notebook/application": "^7.4.0-beta.2", "@jupyterlab/application": "~4.4.0-beta.2", "@jupyterlab/documentsearch": "~4.4.0-beta.2", "@lumino/widgets": "^2.5.0" diff --git a/packages/help-extension/package.json b/packages/help-extension/package.json index 9d3f2fd88b..107a59c329 100644 --- a/packages/help-extension/package.json +++ b/packages/help-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/help-extension", - "version": "7.4.0-beta.1", + "version": "7.4.0-beta.2", "description": "Jupyter Notebook - Help Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/ui-components": "^7.4.0-beta.1", + "@jupyter-notebook/ui-components": "^7.4.0-beta.2", "@jupyterlab/application": "~4.4.0-beta.2", "@jupyterlab/apputils": "~4.5.0-beta.2", "@jupyterlab/mainmenu": "~4.4.0-beta.2", diff --git a/packages/lab-extension/package.json b/packages/lab-extension/package.json index 1521a7dbd2..6c3261998e 100644 --- a/packages/lab-extension/package.json +++ b/packages/lab-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/lab-extension", - "version": "7.4.0-beta.1", + "version": "7.4.0-beta.2", "description": "Jupyter Notebook - Lab Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -43,7 +43,7 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.1", + "@jupyter-notebook/application": "^7.4.0-beta.2", "@jupyterlab/application": "~4.4.0-beta.2", "@jupyterlab/apputils": "~4.5.0-beta.2", "@jupyterlab/coreutils": "~6.4.0-beta.2", diff --git a/packages/notebook-extension/package.json b/packages/notebook-extension/package.json index 4810e97c48..b810df2cd1 100644 --- a/packages/notebook-extension/package.json +++ b/packages/notebook-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/notebook-extension", - "version": "7.4.0-beta.1", + "version": "7.4.0-beta.2", "description": "Jupyter Notebook - Notebook Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.1", + "@jupyter-notebook/application": "^7.4.0-beta.2", "@jupyterlab/application": "~4.4.0-beta.2", "@jupyterlab/apputils": "~4.5.0-beta.2", "@jupyterlab/cells": "~4.4.0-beta.2", diff --git a/packages/terminal-extension/package.json b/packages/terminal-extension/package.json index 4ac9b3145a..8febe51b46 100644 --- a/packages/terminal-extension/package.json +++ b/packages/terminal-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/terminal-extension", - "version": "7.4.0-beta.1", + "version": "7.4.0-beta.2", "description": "Jupyter Notebook - Terminal Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.1", + "@jupyter-notebook/application": "^7.4.0-beta.2", "@jupyterlab/application": "~4.4.0-beta.2", "@jupyterlab/coreutils": "~6.4.0-beta.2", "@jupyterlab/terminal": "~4.4.0-beta.2", diff --git a/packages/tree-extension/package.json b/packages/tree-extension/package.json index 2ea142c2f8..2bd9b8c2d7 100644 --- a/packages/tree-extension/package.json +++ b/packages/tree-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/tree-extension", - "version": "7.4.0-beta.1", + "version": "7.4.0-beta.2", "description": "Jupyter Notebook - Tree Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,8 +38,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.1", - "@jupyter-notebook/tree": "^7.4.0-beta.1", + "@jupyter-notebook/application": "^7.4.0-beta.2", + "@jupyter-notebook/tree": "^7.4.0-beta.2", "@jupyterlab/application": "~4.4.0-beta.2", "@jupyterlab/apputils": "~4.5.0-beta.2", "@jupyterlab/coreutils": "~6.4.0-beta.2", diff --git a/packages/tree/package.json b/packages/tree/package.json index 6ac74fee94..c136aa320a 100644 --- a/packages/tree/package.json +++ b/packages/tree/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/tree", - "version": "7.4.0-beta.1", + "version": "7.4.0-beta.2", "description": "Jupyter Notebook - Tree", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.1", + "@jupyter-notebook/application": "^7.4.0-beta.2", "@jupyterlab/application": "~4.4.0-beta.2", "@jupyterlab/apputils": "~4.5.0-beta.2", "@jupyterlab/coreutils": "~6.4.0-beta.2", diff --git a/packages/ui-components/package.json b/packages/ui-components/package.json index 2ed0321a59..32060cce22 100644 --- a/packages/ui-components/package.json +++ b/packages/ui-components/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/ui-components", - "version": "7.4.0-beta.1", + "version": "7.4.0-beta.2", "description": "Jupyter Notebook - UI components", "homepage": "https://github.com/jupyter/notebook", "bugs": { diff --git a/yarn.lock b/yarn.lock index 18929c65e7..a5e470128c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2131,17 +2131,17 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyter-notebook/app@workspace:app" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.1 - "@jupyter-notebook/application-extension": ^7.4.0-beta.1 - "@jupyter-notebook/console-extension": ^7.4.0-beta.1 - "@jupyter-notebook/docmanager-extension": ^7.4.0-beta.1 - "@jupyter-notebook/documentsearch-extension": ^7.4.0-beta.1 - "@jupyter-notebook/help-extension": ^7.4.0-beta.1 - "@jupyter-notebook/notebook-extension": ^7.4.0-beta.1 - "@jupyter-notebook/terminal-extension": ^7.4.0-beta.1 - "@jupyter-notebook/tree": ^7.4.0-beta.1 - "@jupyter-notebook/tree-extension": ^7.4.0-beta.1 - "@jupyter-notebook/ui-components": ^7.4.0-beta.1 + "@jupyter-notebook/application": ^7.4.0-beta.2 + "@jupyter-notebook/application-extension": ^7.4.0-beta.2 + "@jupyter-notebook/console-extension": ^7.4.0-beta.2 + "@jupyter-notebook/docmanager-extension": ^7.4.0-beta.2 + "@jupyter-notebook/documentsearch-extension": ^7.4.0-beta.2 + "@jupyter-notebook/help-extension": ^7.4.0-beta.2 + "@jupyter-notebook/notebook-extension": ^7.4.0-beta.2 + "@jupyter-notebook/terminal-extension": ^7.4.0-beta.2 + "@jupyter-notebook/tree": ^7.4.0-beta.2 + "@jupyter-notebook/tree-extension": ^7.4.0-beta.2 + "@jupyter-notebook/ui-components": ^7.4.0-beta.2 "@jupyterlab/application-extension": ~4.4.0-beta.2 "@jupyterlab/apputils-extension": ~4.4.0-beta.2 "@jupyterlab/attachments": ~4.4.0-beta.2 @@ -2213,12 +2213,12 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/application-extension@^7.4.0-beta.1, @jupyter-notebook/application-extension@workspace:packages/application-extension": +"@jupyter-notebook/application-extension@^7.4.0-beta.2, @jupyter-notebook/application-extension@workspace:packages/application-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/application-extension@workspace:packages/application-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.1 - "@jupyter-notebook/ui-components": ^7.4.0-beta.1 + "@jupyter-notebook/application": ^7.4.0-beta.2 + "@jupyter-notebook/ui-components": ^7.4.0-beta.2 "@jupyterlab/application": ~4.4.0-beta.2 "@jupyterlab/apputils": ~4.5.0-beta.2 "@jupyterlab/codeeditor": ~4.4.0-beta.2 @@ -2238,7 +2238,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/application@^7.4.0-beta.1, @jupyter-notebook/application@workspace:packages/application": +"@jupyter-notebook/application@^7.4.0-beta.2, @jupyter-notebook/application@workspace:packages/application": version: 0.0.0-use.local resolution: "@jupyter-notebook/application@workspace:packages/application" dependencies: @@ -2280,11 +2280,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/console-extension@^7.4.0-beta.1, @jupyter-notebook/console-extension@workspace:packages/console-extension": +"@jupyter-notebook/console-extension@^7.4.0-beta.2, @jupyter-notebook/console-extension@workspace:packages/console-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/console-extension@workspace:packages/console-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.1 + "@jupyter-notebook/application": ^7.4.0-beta.2 "@jupyterlab/application": ~4.4.0-beta.2 "@jupyterlab/console": ~4.4.0-beta.2 "@jupyterlab/coreutils": ~6.4.0-beta.2 @@ -2294,11 +2294,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/docmanager-extension@^7.4.0-beta.1, @jupyter-notebook/docmanager-extension@workspace:packages/docmanager-extension": +"@jupyter-notebook/docmanager-extension@^7.4.0-beta.2, @jupyter-notebook/docmanager-extension@workspace:packages/docmanager-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/docmanager-extension@workspace:packages/docmanager-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.1 + "@jupyter-notebook/application": ^7.4.0-beta.2 "@jupyterlab/application": ~4.4.0-beta.2 "@jupyterlab/coreutils": ~6.4.0-beta.2 "@jupyterlab/docmanager": ~4.4.0-beta.2 @@ -2311,11 +2311,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/documentsearch-extension@^7.4.0-beta.1, @jupyter-notebook/documentsearch-extension@workspace:packages/documentsearch-extension": +"@jupyter-notebook/documentsearch-extension@^7.4.0-beta.2, @jupyter-notebook/documentsearch-extension@workspace:packages/documentsearch-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/documentsearch-extension@workspace:packages/documentsearch-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.1 + "@jupyter-notebook/application": ^7.4.0-beta.2 "@jupyterlab/application": ~4.4.0-beta.2 "@jupyterlab/documentsearch": ~4.4.0-beta.2 "@lumino/widgets": ^2.5.0 @@ -2324,11 +2324,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/help-extension@^7.4.0-beta.1, @jupyter-notebook/help-extension@workspace:packages/help-extension": +"@jupyter-notebook/help-extension@^7.4.0-beta.2, @jupyter-notebook/help-extension@workspace:packages/help-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/help-extension@workspace:packages/help-extension" dependencies: - "@jupyter-notebook/ui-components": ^7.4.0-beta.1 + "@jupyter-notebook/ui-components": ^7.4.0-beta.2 "@jupyterlab/application": ~4.4.0-beta.2 "@jupyterlab/apputils": ~4.5.0-beta.2 "@jupyterlab/mainmenu": ~4.4.0-beta.2 @@ -2340,11 +2340,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/lab-extension@^7.4.0-beta.1, @jupyter-notebook/lab-extension@workspace:packages/lab-extension": +"@jupyter-notebook/lab-extension@^7.4.0-beta.2, @jupyter-notebook/lab-extension@workspace:packages/lab-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/lab-extension@workspace:packages/lab-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.1 + "@jupyter-notebook/application": ^7.4.0-beta.2 "@jupyterlab/application": ~4.4.0-beta.2 "@jupyterlab/apputils": ~4.5.0-beta.2 "@jupyterlab/builder": ~4.4.0-beta.2 @@ -2364,27 +2364,27 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyter-notebook/metapackage@workspace:packages/_metapackage" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.1 - "@jupyter-notebook/application-extension": ^7.4.0-beta.1 - "@jupyter-notebook/console-extension": ^7.4.0-beta.1 - "@jupyter-notebook/docmanager-extension": ^7.4.0-beta.1 - "@jupyter-notebook/documentsearch-extension": ^7.4.0-beta.1 - "@jupyter-notebook/help-extension": ^7.4.0-beta.1 - "@jupyter-notebook/lab-extension": ^7.4.0-beta.1 - "@jupyter-notebook/notebook-extension": ^7.4.0-beta.1 - "@jupyter-notebook/terminal-extension": ^7.4.0-beta.1 - "@jupyter-notebook/tree": ^7.4.0-beta.1 - "@jupyter-notebook/tree-extension": ^7.4.0-beta.1 - "@jupyter-notebook/ui-components": ^7.4.0-beta.1 + "@jupyter-notebook/application": ^7.4.0-beta.2 + "@jupyter-notebook/application-extension": ^7.4.0-beta.2 + "@jupyter-notebook/console-extension": ^7.4.0-beta.2 + "@jupyter-notebook/docmanager-extension": ^7.4.0-beta.2 + "@jupyter-notebook/documentsearch-extension": ^7.4.0-beta.2 + "@jupyter-notebook/help-extension": ^7.4.0-beta.2 + "@jupyter-notebook/lab-extension": ^7.4.0-beta.2 + "@jupyter-notebook/notebook-extension": ^7.4.0-beta.2 + "@jupyter-notebook/terminal-extension": ^7.4.0-beta.2 + "@jupyter-notebook/tree": ^7.4.0-beta.2 + "@jupyter-notebook/tree-extension": ^7.4.0-beta.2 + "@jupyter-notebook/ui-components": ^7.4.0-beta.2 typescript: ~5.5.4 languageName: unknown linkType: soft -"@jupyter-notebook/notebook-extension@^7.4.0-beta.1, @jupyter-notebook/notebook-extension@workspace:packages/notebook-extension": +"@jupyter-notebook/notebook-extension@^7.4.0-beta.2, @jupyter-notebook/notebook-extension@workspace:packages/notebook-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/notebook-extension@workspace:packages/notebook-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.1 + "@jupyter-notebook/application": ^7.4.0-beta.2 "@jupyterlab/application": ~4.4.0-beta.2 "@jupyterlab/apputils": ~4.5.0-beta.2 "@jupyterlab/cells": ~4.4.0-beta.2 @@ -2422,11 +2422,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/terminal-extension@^7.4.0-beta.1, @jupyter-notebook/terminal-extension@workspace:packages/terminal-extension": +"@jupyter-notebook/terminal-extension@^7.4.0-beta.2, @jupyter-notebook/terminal-extension@workspace:packages/terminal-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/terminal-extension@workspace:packages/terminal-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.1 + "@jupyter-notebook/application": ^7.4.0-beta.2 "@jupyterlab/application": ~4.4.0-beta.2 "@jupyterlab/coreutils": ~6.4.0-beta.2 "@jupyterlab/terminal": ~4.4.0-beta.2 @@ -2436,12 +2436,12 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/tree-extension@^7.4.0-beta.1, @jupyter-notebook/tree-extension@workspace:packages/tree-extension": +"@jupyter-notebook/tree-extension@^7.4.0-beta.2, @jupyter-notebook/tree-extension@workspace:packages/tree-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/tree-extension@workspace:packages/tree-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.1 - "@jupyter-notebook/tree": ^7.4.0-beta.1 + "@jupyter-notebook/application": ^7.4.0-beta.2 + "@jupyter-notebook/tree": ^7.4.0-beta.2 "@jupyterlab/application": ~4.4.0-beta.2 "@jupyterlab/apputils": ~4.5.0-beta.2 "@jupyterlab/coreutils": ~6.4.0-beta.2 @@ -2462,11 +2462,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/tree@^7.4.0-beta.1, @jupyter-notebook/tree@workspace:packages/tree": +"@jupyter-notebook/tree@^7.4.0-beta.2, @jupyter-notebook/tree@workspace:packages/tree": version: 0.0.0-use.local resolution: "@jupyter-notebook/tree@workspace:packages/tree" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.1 + "@jupyter-notebook/application": ^7.4.0-beta.2 "@jupyterlab/application": ~4.4.0-beta.2 "@jupyterlab/apputils": ~4.5.0-beta.2 "@jupyterlab/coreutils": ~6.4.0-beta.2 @@ -2487,7 +2487,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/ui-components@^7.4.0-beta.1, @jupyter-notebook/ui-components@workspace:packages/ui-components": +"@jupyter-notebook/ui-components@^7.4.0-beta.2, @jupyter-notebook/ui-components@workspace:packages/ui-components": version: 0.0.0-use.local resolution: "@jupyter-notebook/ui-components@workspace:packages/ui-components" dependencies: From 40891bd4248854cc1f94c93be5a0bbc0ff3a6a9a Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Fri, 21 Mar 2025 15:30:09 +0100 Subject: [PATCH 009/143] Support `ServiceManagerPlugin` (#7616) --- app/index.template.js | 16 ++++++++++++++-- app/package.json | 3 +++ yarn.lock | 14 +++++++++++++- 3 files changed, 30 insertions(+), 3 deletions(-) diff --git a/app/index.template.js b/app/index.template.js index 523ea36d75..e5d8a5b26a 100644 --- a/app/index.template.js +++ b/app/index.template.js @@ -5,6 +5,8 @@ import { PageConfig, URLExt } from '@jupyterlab/coreutils'; +import { PluginRegistry } from '@lumino/coreutils'; + require('./style.js'); require('./extraStyle.js'); @@ -213,10 +215,20 @@ async function main() { // plugin even if the debugger is only loaded on the notebook page. PageConfig.setOption('allPlugins', '{{{ json notebook_plugins }}}'); + + const pluginRegistry = new PluginRegistry(); const NotebookApp = require('@jupyter-notebook/application').NotebookApp; - const app = new NotebookApp({ mimeExtensions, availablePlugins }); - app.registerPluginModules(mods); + pluginRegistry.registerPlugins(mods); + const IServiceManager = require('@jupyterlab/services').IServiceManager; + const serviceManager = await pluginRegistry.resolveRequiredService(IServiceManager); + + const app = new NotebookApp({ + pluginRegistry, + serviceManager, + mimeExtensions, + availablePlugins + }); // Expose global app instance when in dev mode or when toggled explicitly. const exposeAppInBrowser = diff --git a/app/package.json b/app/package.json index 47d6b56952..3cc53395ea 100644 --- a/app/package.json +++ b/app/package.json @@ -169,6 +169,7 @@ "@jupyterlab/pdf-extension": "~4.4.0-beta.2", "@jupyterlab/pluginmanager-extension": "~4.4.0-beta.2", "@jupyterlab/running-extension": "~4.4.0-beta.2", + "@jupyterlab/services-extension": "~4.4.0-beta.2", "@jupyterlab/settingeditor": "~4.4.0-beta.2", "@jupyterlab/settingeditor-extension": "~4.4.0-beta.2", "@jupyterlab/shortcuts-extension": "~5.2.0-beta.2", @@ -181,6 +182,7 @@ "@jupyterlab/translation-extension": "~4.4.0-beta.2", "@jupyterlab/ui-components-extension": "~4.4.0-beta.2", "@jupyterlab/vega5-extension": "~4.4.0-beta.2", + "@lumino/coreutils": "~2.2.0", "react": "^18.2.0", "react-dom": "^18.2.0", "yjs": "^13.5.40" @@ -296,6 +298,7 @@ "@jupyterlab/notebook-extension:widget-factory" ], "@jupyterlab/pluginmanager-extension": true, + "@jupyterlab/services-extension": true, "@jupyterlab/shortcuts-extension": true, "@jupyterlab/terminal-extension": true, "@jupyterlab/theme-light-extension": true, diff --git a/yarn.lock b/yarn.lock index a5e470128c..f898ce06a4 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2179,6 +2179,7 @@ __metadata: "@jupyterlab/pdf-extension": ~4.4.0-beta.2 "@jupyterlab/pluginmanager-extension": ~4.4.0-beta.2 "@jupyterlab/running-extension": ~4.4.0-beta.2 + "@jupyterlab/services-extension": ~4.4.0-beta.2 "@jupyterlab/settingeditor": ~4.4.0-beta.2 "@jupyterlab/settingeditor-extension": ~4.4.0-beta.2 "@jupyterlab/shortcuts-extension": ~5.2.0-beta.2 @@ -2191,6 +2192,7 @@ __metadata: "@jupyterlab/translation-extension": ~4.4.0-beta.2 "@jupyterlab/ui-components-extension": ~4.4.0-beta.2 "@jupyterlab/vega5-extension": ~4.4.0-beta.2 + "@lumino/coreutils": ~2.2.0 "@types/rimraf": ^3.0.2 css-loader: ~5.0.1 extra-watch-webpack-plugin: ^1.0.3 @@ -4454,6 +4456,16 @@ __metadata: languageName: node linkType: hard +"@jupyterlab/services-extension@npm:~4.4.0-beta.2": + version: 4.4.0-beta.2 + resolution: "@jupyterlab/services-extension@npm:4.4.0-beta.2" + dependencies: + "@jupyterlab/services": ^7.4.0-beta.2 + "@lumino/coreutils": ^2.2.0 + checksum: bdc141b91af525ec33cfa6f767a93e3cd6c0663afc65314e262779501a66e4cbba56a523e168916d5aab39daa6c92b406e773a68a91f9c451d4aedc954172084 + languageName: node + linkType: hard + "@jupyterlab/services@npm:^7.3.4": version: 7.3.4 resolution: "@jupyterlab/services@npm:7.3.4" @@ -5281,7 +5293,7 @@ __metadata: languageName: node linkType: hard -"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^1.11.0 || ^2.2.0, @lumino/coreutils@npm:^2.2.0": +"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^1.11.0 || ^2.2.0, @lumino/coreutils@npm:^2.2.0, @lumino/coreutils@npm:~2.2.0": version: 2.2.0 resolution: "@lumino/coreutils@npm:2.2.0" dependencies: From 434221c0fe3de3df3b4b54ed1005712e07957352 Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Wed, 26 Mar 2025 09:49:31 +0100 Subject: [PATCH 010/143] Update to JupyterLab v4.4.0rc0 (#7618) * Update to JupyterLab v4.4.0rc0 * Add kernels settings plugin --------- Co-authored-by: github-actions[bot] --- .pre-commit-config.yaml | 2 +- app/package.json | 257 +- buildutils/package.json | 2 +- package.json | 2 +- packages/application-extension/package.json | 22 +- packages/application/package.json | 10 +- packages/console-extension/package.json | 6 +- packages/docmanager-extension/package.json | 10 +- .../documentsearch-extension/package.json | 4 +- packages/help-extension/package.json | 8 +- packages/lab-extension/package.json | 16 +- packages/notebook-extension/package.json | 14 +- packages/terminal-extension/package.json | 6 +- packages/tree-extension/package.json | 24 +- packages/tree/package.json | 22 +- packages/ui-components/package.json | 2 +- pixi.lock | 20 +- pyproject.toml | 6 +- ui-tests/package.json | 2 +- ui-tests/yarn.lock | 602 ++-- yarn.lock | 2441 +++++++++-------- 21 files changed, 1757 insertions(+), 1721 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9d5e130fa1..9c34b570ca 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -45,7 +45,7 @@ repos: files: "^notebook" stages: [manual] args: ["--install-types", "--non-interactive"] - additional_dependencies: ["traitlets>=5.13", "tornado", "jupyter_server>=2.10", "jupyterlab_server>=2.25", "jupyterlab>=4.4.0b2,<4.5"] + additional_dependencies: ["traitlets>=5.13", "tornado", "jupyter_server>=2.10", "jupyterlab_server>=2.25", "jupyterlab>=4.4.0rc0,<4.5"] - repo: https://github.com/pre-commit/pygrep-hooks rev: 'v1.10.0' diff --git a/app/package.json b/app/package.json index 3cc53395ea..2cda6f1a16 100644 --- a/app/package.json +++ b/app/package.json @@ -26,84 +26,84 @@ "@jupyter/react-components": "~0.16.7", "@jupyter/web-components": "~0.16.7", "@jupyter/ydoc": "~3.0.0", - "@jupyterlab/application": "~4.4.0-beta.2", - "@jupyterlab/application-extension": "~4.4.0-beta.2", - "@jupyterlab/apputils": "~4.5.0-beta.2", - "@jupyterlab/apputils-extension": "~4.4.0-beta.2", - "@jupyterlab/attachments": "~4.4.0-beta.2", - "@jupyterlab/cell-toolbar": "~4.4.0-beta.2", - "@jupyterlab/cell-toolbar-extension": "~4.4.0-beta.2", - "@jupyterlab/celltags-extension": "~4.4.0-beta.2", - "@jupyterlab/codeeditor": "~4.4.0-beta.2", - "@jupyterlab/codemirror": "~4.4.0-beta.2", - "@jupyterlab/codemirror-extension": "~4.4.0-beta.2", - "@jupyterlab/completer": "~4.4.0-beta.2", - "@jupyterlab/completer-extension": "~4.4.0-beta.2", - "@jupyterlab/console": "~4.4.0-beta.2", - "@jupyterlab/console-extension": "~4.4.0-beta.2", - "@jupyterlab/coreutils": "~6.4.0-beta.2", - "@jupyterlab/csvviewer-extension": "~4.4.0-beta.2", - "@jupyterlab/debugger": "~4.4.0-beta.2", - "@jupyterlab/debugger-extension": "~4.4.0-beta.2", - "@jupyterlab/docmanager": "~4.4.0-beta.2", - "@jupyterlab/docmanager-extension": "~4.4.0-beta.2", - "@jupyterlab/documentsearch": "~4.4.0-beta.2", - "@jupyterlab/documentsearch-extension": "~4.4.0-beta.2", - "@jupyterlab/extensionmanager": "~4.4.0-beta.2", - "@jupyterlab/extensionmanager-extension": "~4.4.0-beta.2", - "@jupyterlab/filebrowser": "~4.4.0-beta.2", - "@jupyterlab/filebrowser-extension": "~4.4.0-beta.2", - "@jupyterlab/fileeditor": "~4.4.0-beta.2", - "@jupyterlab/fileeditor-extension": "~4.4.0-beta.2", - "@jupyterlab/help-extension": "~4.4.0-beta.2", - "@jupyterlab/htmlviewer": "~4.4.0-beta.2", - "@jupyterlab/htmlviewer-extension": "~4.4.0-beta.2", - "@jupyterlab/hub-extension": "~4.4.0-beta.2", - "@jupyterlab/imageviewer": "~4.4.0-beta.2", - "@jupyterlab/imageviewer-extension": "~4.4.0-beta.2", - "@jupyterlab/javascript-extension": "~4.4.0-beta.2", - "@jupyterlab/json-extension": "~4.4.0-beta.2", - "@jupyterlab/lsp": "~4.4.0-beta.2", - "@jupyterlab/lsp-extension": "~4.4.0-beta.2", - "@jupyterlab/mainmenu": "~4.4.0-beta.2", - "@jupyterlab/mainmenu-extension": "~4.4.0-beta.2", - "@jupyterlab/markdownviewer": "~4.4.0-beta.2", - "@jupyterlab/markdownviewer-extension": "~4.4.0-beta.2", - "@jupyterlab/markedparser-extension": "~4.4.0-beta.2", - "@jupyterlab/mathjax-extension": "~4.4.0-beta.2", - "@jupyterlab/mermaid": "~4.4.0-beta.2", - "@jupyterlab/mermaid-extension": "~4.4.0-beta.2", - "@jupyterlab/metadataform": "~4.4.0-beta.2", - "@jupyterlab/metadataform-extension": "~4.4.0-beta.2", - "@jupyterlab/notebook": "~4.4.0-beta.2", - "@jupyterlab/notebook-extension": "~4.4.0-beta.2", - "@jupyterlab/observables": "~5.4.0-beta.2", - "@jupyterlab/outputarea": "~4.4.0-beta.2", - "@jupyterlab/pdf-extension": "~4.4.0-beta.2", - "@jupyterlab/pluginmanager-extension": "~4.4.0-beta.2", - "@jupyterlab/rendermime": "~4.4.0-beta.2", - "@jupyterlab/rendermime-interfaces": "~3.12.0-beta.2", - "@jupyterlab/running-extension": "~4.4.0-beta.2", - "@jupyterlab/services": "~7.4.0-beta.2", - "@jupyterlab/settingeditor": "~4.4.0-beta.2", - "@jupyterlab/settingeditor-extension": "~4.4.0-beta.2", - "@jupyterlab/settingregistry": "~4.4.0-beta.2", - "@jupyterlab/shortcuts-extension": "~5.2.0-beta.2", - "@jupyterlab/statedb": "~4.4.0-beta.2", - "@jupyterlab/statusbar": "~4.4.0-beta.2", - "@jupyterlab/terminal": "~4.4.0-beta.2", - "@jupyterlab/terminal-extension": "~4.4.0-beta.2", - "@jupyterlab/theme-dark-extension": "~4.4.0-beta.2", - "@jupyterlab/theme-dark-high-contrast-extension": "~4.4.0-beta.2", - "@jupyterlab/theme-light-extension": "~4.4.0-beta.2", - "@jupyterlab/toc-extension": "~6.4.0-beta.2", - "@jupyterlab/tooltip": "~4.4.0-beta.2", - "@jupyterlab/tooltip-extension": "~4.4.0-beta.2", - "@jupyterlab/translation": "~4.4.0-beta.2", - "@jupyterlab/translation-extension": "~4.4.0-beta.2", - "@jupyterlab/ui-components": "~4.4.0-beta.2", - "@jupyterlab/ui-components-extension": "~4.4.0-beta.2", - "@jupyterlab/vega5-extension": "~4.4.0-beta.2", + "@jupyterlab/application": "~4.4.0-rc.0", + "@jupyterlab/application-extension": "~4.4.0-rc.0", + "@jupyterlab/apputils": "~4.5.0-rc.0", + "@jupyterlab/apputils-extension": "~4.4.0-rc.0", + "@jupyterlab/attachments": "~4.4.0-rc.0", + "@jupyterlab/cell-toolbar": "~4.4.0-rc.0", + "@jupyterlab/cell-toolbar-extension": "~4.4.0-rc.0", + "@jupyterlab/celltags-extension": "~4.4.0-rc.0", + "@jupyterlab/codeeditor": "~4.4.0-rc.0", + "@jupyterlab/codemirror": "~4.4.0-rc.0", + "@jupyterlab/codemirror-extension": "~4.4.0-rc.0", + "@jupyterlab/completer": "~4.4.0-rc.0", + "@jupyterlab/completer-extension": "~4.4.0-rc.0", + "@jupyterlab/console": "~4.4.0-rc.0", + "@jupyterlab/console-extension": "~4.4.0-rc.0", + "@jupyterlab/coreutils": "~6.4.0-rc.0", + "@jupyterlab/csvviewer-extension": "~4.4.0-rc.0", + "@jupyterlab/debugger": "~4.4.0-rc.0", + "@jupyterlab/debugger-extension": "~4.4.0-rc.0", + "@jupyterlab/docmanager": "~4.4.0-rc.0", + "@jupyterlab/docmanager-extension": "~4.4.0-rc.0", + "@jupyterlab/documentsearch": "~4.4.0-rc.0", + "@jupyterlab/documentsearch-extension": "~4.4.0-rc.0", + "@jupyterlab/extensionmanager": "~4.4.0-rc.0", + "@jupyterlab/extensionmanager-extension": "~4.4.0-rc.0", + "@jupyterlab/filebrowser": "~4.4.0-rc.0", + "@jupyterlab/filebrowser-extension": "~4.4.0-rc.0", + "@jupyterlab/fileeditor": "~4.4.0-rc.0", + "@jupyterlab/fileeditor-extension": "~4.4.0-rc.0", + "@jupyterlab/help-extension": "~4.4.0-rc.0", + "@jupyterlab/htmlviewer": "~4.4.0-rc.0", + "@jupyterlab/htmlviewer-extension": "~4.4.0-rc.0", + "@jupyterlab/hub-extension": "~4.4.0-rc.0", + "@jupyterlab/imageviewer": "~4.4.0-rc.0", + "@jupyterlab/imageviewer-extension": "~4.4.0-rc.0", + "@jupyterlab/javascript-extension": "~4.4.0-rc.0", + "@jupyterlab/json-extension": "~4.4.0-rc.0", + "@jupyterlab/lsp": "~4.4.0-rc.0", + "@jupyterlab/lsp-extension": "~4.4.0-rc.0", + "@jupyterlab/mainmenu": "~4.4.0-rc.0", + "@jupyterlab/mainmenu-extension": "~4.4.0-rc.0", + "@jupyterlab/markdownviewer": "~4.4.0-rc.0", + "@jupyterlab/markdownviewer-extension": "~4.4.0-rc.0", + "@jupyterlab/markedparser-extension": "~4.4.0-rc.0", + "@jupyterlab/mathjax-extension": "~4.4.0-rc.0", + "@jupyterlab/mermaid": "~4.4.0-rc.0", + "@jupyterlab/mermaid-extension": "~4.4.0-rc.0", + "@jupyterlab/metadataform": "~4.4.0-rc.0", + "@jupyterlab/metadataform-extension": "~4.4.0-rc.0", + "@jupyterlab/notebook": "~4.4.0-rc.0", + "@jupyterlab/notebook-extension": "~4.4.0-rc.0", + "@jupyterlab/observables": "~5.4.0-rc.0", + "@jupyterlab/outputarea": "~4.4.0-rc.0", + "@jupyterlab/pdf-extension": "~4.4.0-rc.0", + "@jupyterlab/pluginmanager-extension": "~4.4.0-rc.0", + "@jupyterlab/rendermime": "~4.4.0-rc.0", + "@jupyterlab/rendermime-interfaces": "~3.12.0-rc.0", + "@jupyterlab/running-extension": "~4.4.0-rc.0", + "@jupyterlab/services": "~7.4.0-rc.0", + "@jupyterlab/settingeditor": "~4.4.0-rc.0", + "@jupyterlab/settingeditor-extension": "~4.4.0-rc.0", + "@jupyterlab/settingregistry": "~4.4.0-rc.0", + "@jupyterlab/shortcuts-extension": "~5.2.0-rc.0", + "@jupyterlab/statedb": "~4.4.0-rc.0", + "@jupyterlab/statusbar": "~4.4.0-rc.0", + "@jupyterlab/terminal": "~4.4.0-rc.0", + "@jupyterlab/terminal-extension": "~4.4.0-rc.0", + "@jupyterlab/theme-dark-extension": "~4.4.0-rc.0", + "@jupyterlab/theme-dark-high-contrast-extension": "~4.4.0-rc.0", + "@jupyterlab/theme-light-extension": "~4.4.0-rc.0", + "@jupyterlab/toc-extension": "~6.4.0-rc.0", + "@jupyterlab/tooltip": "~4.4.0-rc.0", + "@jupyterlab/tooltip-extension": "~4.4.0-rc.0", + "@jupyterlab/translation": "~4.4.0-rc.0", + "@jupyterlab/translation-extension": "~4.4.0-rc.0", + "@jupyterlab/ui-components": "~4.4.0-rc.0", + "@jupyterlab/ui-components-extension": "~4.4.0-rc.0", + "@jupyterlab/vega5-extension": "~4.4.0-rc.0", "@lezer/common": "~1.2.1", "@lezer/highlight": "~1.2.0", "@lumino/algorithm": "~2.0.2", @@ -134,62 +134,62 @@ "@jupyter-notebook/tree": "^7.4.0-beta.2", "@jupyter-notebook/tree-extension": "^7.4.0-beta.2", "@jupyter-notebook/ui-components": "^7.4.0-beta.2", - "@jupyterlab/application-extension": "~4.4.0-beta.2", - "@jupyterlab/apputils-extension": "~4.4.0-beta.2", - "@jupyterlab/attachments": "~4.4.0-beta.2", - "@jupyterlab/cell-toolbar-extension": "~4.4.0-beta.2", - "@jupyterlab/celltags-extension": "~4.4.0-beta.2", - "@jupyterlab/codemirror": "~4.4.0-beta.2", - "@jupyterlab/codemirror-extension": "~4.4.0-beta.2", - "@jupyterlab/completer-extension": "~4.4.0-beta.2", - "@jupyterlab/console-extension": "~4.4.0-beta.2", - "@jupyterlab/coreutils": "~6.4.0-beta.2", - "@jupyterlab/csvviewer-extension": "~4.4.0-beta.2", - "@jupyterlab/debugger-extension": "~4.4.0-beta.2", - "@jupyterlab/docmanager-extension": "~4.4.0-beta.2", - "@jupyterlab/documentsearch-extension": "~4.4.0-beta.2", - "@jupyterlab/extensionmanager-extension": "~4.4.0-beta.2", - "@jupyterlab/filebrowser-extension": "~4.4.0-beta.2", - "@jupyterlab/fileeditor-extension": "~4.4.0-beta.2", - "@jupyterlab/help-extension": "~4.4.0-beta.2", - "@jupyterlab/htmlviewer-extension": "~4.4.0-beta.2", - "@jupyterlab/hub-extension": "~4.4.0-beta.2", - "@jupyterlab/imageviewer-extension": "~4.4.0-beta.2", - "@jupyterlab/javascript-extension": "~4.4.0-beta.2", - "@jupyterlab/json-extension": "~4.4.0-beta.2", - "@jupyterlab/lsp": "~4.4.0-beta.2", - "@jupyterlab/lsp-extension": "~4.4.0-beta.2", - "@jupyterlab/mainmenu-extension": "~4.4.0-beta.2", - "@jupyterlab/markdownviewer-extension": "~4.4.0-beta.2", - "@jupyterlab/markedparser-extension": "~4.4.0-beta.2", - "@jupyterlab/mathjax-extension": "~4.4.0-beta.2", - "@jupyterlab/mermaid-extension": "~4.4.0-beta.2", - "@jupyterlab/metadataform-extension": "~4.4.0-beta.2", - "@jupyterlab/notebook-extension": "~4.4.0-beta.2", - "@jupyterlab/pdf-extension": "~4.4.0-beta.2", - "@jupyterlab/pluginmanager-extension": "~4.4.0-beta.2", - "@jupyterlab/running-extension": "~4.4.0-beta.2", - "@jupyterlab/services-extension": "~4.4.0-beta.2", - "@jupyterlab/settingeditor": "~4.4.0-beta.2", - "@jupyterlab/settingeditor-extension": "~4.4.0-beta.2", - "@jupyterlab/shortcuts-extension": "~5.2.0-beta.2", - "@jupyterlab/terminal-extension": "~4.4.0-beta.2", - "@jupyterlab/theme-dark-extension": "~4.4.0-beta.2", - "@jupyterlab/theme-dark-high-contrast-extension": "~4.4.0-beta.2", - "@jupyterlab/theme-light-extension": "~4.4.0-beta.2", - "@jupyterlab/toc-extension": "~6.4.0-beta.2", - "@jupyterlab/tooltip-extension": "~4.4.0-beta.2", - "@jupyterlab/translation-extension": "~4.4.0-beta.2", - "@jupyterlab/ui-components-extension": "~4.4.0-beta.2", - "@jupyterlab/vega5-extension": "~4.4.0-beta.2", + "@jupyterlab/application-extension": "~4.4.0-rc.0", + "@jupyterlab/apputils-extension": "~4.4.0-rc.0", + "@jupyterlab/attachments": "~4.4.0-rc.0", + "@jupyterlab/cell-toolbar-extension": "~4.4.0-rc.0", + "@jupyterlab/celltags-extension": "~4.4.0-rc.0", + "@jupyterlab/codemirror": "~4.4.0-rc.0", + "@jupyterlab/codemirror-extension": "~4.4.0-rc.0", + "@jupyterlab/completer-extension": "~4.4.0-rc.0", + "@jupyterlab/console-extension": "~4.4.0-rc.0", + "@jupyterlab/coreutils": "~6.4.0-rc.0", + "@jupyterlab/csvviewer-extension": "~4.4.0-rc.0", + "@jupyterlab/debugger-extension": "~4.4.0-rc.0", + "@jupyterlab/docmanager-extension": "~4.4.0-rc.0", + "@jupyterlab/documentsearch-extension": "~4.4.0-rc.0", + "@jupyterlab/extensionmanager-extension": "~4.4.0-rc.0", + "@jupyterlab/filebrowser-extension": "~4.4.0-rc.0", + "@jupyterlab/fileeditor-extension": "~4.4.0-rc.0", + "@jupyterlab/help-extension": "~4.4.0-rc.0", + "@jupyterlab/htmlviewer-extension": "~4.4.0-rc.0", + "@jupyterlab/hub-extension": "~4.4.0-rc.0", + "@jupyterlab/imageviewer-extension": "~4.4.0-rc.0", + "@jupyterlab/javascript-extension": "~4.4.0-rc.0", + "@jupyterlab/json-extension": "~4.4.0-rc.0", + "@jupyterlab/lsp": "~4.4.0-rc.0", + "@jupyterlab/lsp-extension": "~4.4.0-rc.0", + "@jupyterlab/mainmenu-extension": "~4.4.0-rc.0", + "@jupyterlab/markdownviewer-extension": "~4.4.0-rc.0", + "@jupyterlab/markedparser-extension": "~4.4.0-rc.0", + "@jupyterlab/mathjax-extension": "~4.4.0-rc.0", + "@jupyterlab/mermaid-extension": "~4.4.0-rc.0", + "@jupyterlab/metadataform-extension": "~4.4.0-rc.0", + "@jupyterlab/notebook-extension": "~4.4.0-rc.0", + "@jupyterlab/pdf-extension": "~4.4.0-rc.0", + "@jupyterlab/pluginmanager-extension": "~4.4.0-rc.0", + "@jupyterlab/running-extension": "~4.4.0-rc.0", + "@jupyterlab/services-extension": "~4.4.0-rc.0", + "@jupyterlab/settingeditor": "~4.4.0-rc.0", + "@jupyterlab/settingeditor-extension": "~4.4.0-rc.0", + "@jupyterlab/shortcuts-extension": "~5.2.0-rc.0", + "@jupyterlab/terminal-extension": "~4.4.0-rc.0", + "@jupyterlab/theme-dark-extension": "~4.4.0-rc.0", + "@jupyterlab/theme-dark-high-contrast-extension": "~4.4.0-rc.0", + "@jupyterlab/theme-light-extension": "~4.4.0-rc.0", + "@jupyterlab/toc-extension": "~6.4.0-rc.0", + "@jupyterlab/tooltip-extension": "~4.4.0-rc.0", + "@jupyterlab/translation-extension": "~4.4.0-rc.0", + "@jupyterlab/ui-components-extension": "~4.4.0-rc.0", + "@jupyterlab/vega5-extension": "~4.4.0-rc.0", "@lumino/coreutils": "~2.2.0", "react": "^18.2.0", "react-dom": "^18.2.0", "yjs": "^13.5.40" }, "devDependencies": { - "@jupyterlab/builder": "~4.4.0-beta.2", - "@jupyterlab/buildutils": "~4.4.0-beta.2", + "@jupyterlab/builder": "~4.4.0-rc.0", + "@jupyterlab/buildutils": "~4.4.0-rc.0", "@types/rimraf": "^3.0.2", "css-loader": "~5.0.1", "extra-watch-webpack-plugin": "^1.0.3", @@ -233,6 +233,7 @@ "@jupyterlab/application-extension:top-spacer" ], "@jupyterlab/apputils-extension": [ + "@jupyterlab/apputils-extension:kernels-settings", "@jupyterlab/apputils-extension:palette", "@jupyterlab/apputils-extension:notification", "@jupyterlab/apputils-extension:sanitizer", diff --git a/buildutils/package.json b/buildutils/package.json index 82d0bc827a..a62f5f8fe6 100644 --- a/buildutils/package.json +++ b/buildutils/package.json @@ -29,7 +29,7 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/buildutils": "~4.4.0-beta.2", + "@jupyterlab/buildutils": "~4.4.0-rc.0", "commander": "^6.2.0", "fs-extra": "^9.1.0", "semver": "^7.6.3", diff --git a/package.json b/package.json index fae7d7c9cf..a8d9756527 100644 --- a/package.json +++ b/package.json @@ -51,7 +51,7 @@ "yjs": "^13.5.40" }, "devDependencies": { - "@jupyterlab/buildutils": "~4.4.0-beta.2", + "@jupyterlab/buildutils": "~4.4.0-rc.0", "@typescript-eslint/eslint-plugin": "^5.55.0", "@typescript-eslint/parser": "^5.55.0", "eslint": "^8.36.0", diff --git a/packages/application-extension/package.json b/packages/application-extension/package.json index 347e242880..43f9d5848c 100644 --- a/packages/application-extension/package.json +++ b/packages/application-extension/package.json @@ -40,17 +40,17 @@ "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.2", "@jupyter-notebook/ui-components": "^7.4.0-beta.2", - "@jupyterlab/application": "~4.4.0-beta.2", - "@jupyterlab/apputils": "~4.5.0-beta.2", - "@jupyterlab/codeeditor": "~4.4.0-beta.2", - "@jupyterlab/console": "~4.4.0-beta.2", - "@jupyterlab/coreutils": "~6.4.0-beta.2", - "@jupyterlab/docmanager": "~4.4.0-beta.2", - "@jupyterlab/docregistry": "~4.4.0-beta.2", - "@jupyterlab/mainmenu": "~4.4.0-beta.2", - "@jupyterlab/rendermime": "~4.4.0-beta.2", - "@jupyterlab/settingregistry": "~4.4.0-beta.2", - "@jupyterlab/translation": "~4.4.0-beta.2", + "@jupyterlab/application": "~4.4.0-rc.0", + "@jupyterlab/apputils": "~4.5.0-rc.0", + "@jupyterlab/codeeditor": "~4.4.0-rc.0", + "@jupyterlab/console": "~4.4.0-rc.0", + "@jupyterlab/coreutils": "~6.4.0-rc.0", + "@jupyterlab/docmanager": "~4.4.0-rc.0", + "@jupyterlab/docregistry": "~4.4.0-rc.0", + "@jupyterlab/mainmenu": "~4.4.0-rc.0", + "@jupyterlab/rendermime": "~4.4.0-rc.0", + "@jupyterlab/settingregistry": "~4.4.0-rc.0", + "@jupyterlab/translation": "~4.4.0-rc.0", "@lumino/coreutils": "^2.2.0", "@lumino/disposable": "^2.1.3", "@lumino/widgets": "^2.5.0" diff --git a/packages/application/package.json b/packages/application/package.json index b9ae167dc1..32017364be 100644 --- a/packages/application/package.json +++ b/packages/application/package.json @@ -42,11 +42,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "~4.4.0-beta.2", - "@jupyterlab/coreutils": "~6.4.0-beta.2", - "@jupyterlab/docregistry": "~4.4.0-beta.2", - "@jupyterlab/rendermime-interfaces": "~3.12.0-beta.2", - "@jupyterlab/ui-components": "~4.4.0-beta.2", + "@jupyterlab/application": "~4.4.0-rc.0", + "@jupyterlab/coreutils": "~6.4.0-rc.0", + "@jupyterlab/docregistry": "~4.4.0-rc.0", + "@jupyterlab/rendermime-interfaces": "~3.12.0-rc.0", + "@jupyterlab/ui-components": "~4.4.0-rc.0", "@lumino/algorithm": "^2.0.2", "@lumino/coreutils": "^2.2.0", "@lumino/messaging": "^2.0.2", diff --git a/packages/console-extension/package.json b/packages/console-extension/package.json index 47c1054dd9..cd9b116b8e 100644 --- a/packages/console-extension/package.json +++ b/packages/console-extension/package.json @@ -39,9 +39,9 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.2", - "@jupyterlab/application": "~4.4.0-beta.2", - "@jupyterlab/console": "~4.4.0-beta.2", - "@jupyterlab/coreutils": "~6.4.0-beta.2", + "@jupyterlab/application": "~4.4.0-rc.0", + "@jupyterlab/console": "~4.4.0-rc.0", + "@jupyterlab/coreutils": "~6.4.0-rc.0", "@lumino/algorithm": "^2.0.2" }, "devDependencies": { diff --git a/packages/docmanager-extension/package.json b/packages/docmanager-extension/package.json index a8285b0aa4..f925e72458 100644 --- a/packages/docmanager-extension/package.json +++ b/packages/docmanager-extension/package.json @@ -39,11 +39,11 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.2", - "@jupyterlab/application": "~4.4.0-beta.2", - "@jupyterlab/coreutils": "~6.4.0-beta.2", - "@jupyterlab/docmanager": "~4.4.0-beta.2", - "@jupyterlab/docregistry": "~4.4.0-beta.2", - "@jupyterlab/services": "~7.4.0-beta.2", + "@jupyterlab/application": "~4.4.0-rc.0", + "@jupyterlab/coreutils": "~6.4.0-rc.0", + "@jupyterlab/docmanager": "~4.4.0-rc.0", + "@jupyterlab/docregistry": "~4.4.0-rc.0", + "@jupyterlab/services": "~7.4.0-rc.0", "@lumino/algorithm": "^2.0.2", "@lumino/signaling": "^2.1.3" }, diff --git a/packages/documentsearch-extension/package.json b/packages/documentsearch-extension/package.json index 7847e0e026..f6cbf8f0a4 100644 --- a/packages/documentsearch-extension/package.json +++ b/packages/documentsearch-extension/package.json @@ -39,8 +39,8 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.2", - "@jupyterlab/application": "~4.4.0-beta.2", - "@jupyterlab/documentsearch": "~4.4.0-beta.2", + "@jupyterlab/application": "~4.4.0-rc.0", + "@jupyterlab/documentsearch": "~4.4.0-rc.0", "@lumino/widgets": "^2.5.0" }, "devDependencies": { diff --git a/packages/help-extension/package.json b/packages/help-extension/package.json index 107a59c329..6b1f5dfaf0 100644 --- a/packages/help-extension/package.json +++ b/packages/help-extension/package.json @@ -39,10 +39,10 @@ }, "dependencies": { "@jupyter-notebook/ui-components": "^7.4.0-beta.2", - "@jupyterlab/application": "~4.4.0-beta.2", - "@jupyterlab/apputils": "~4.5.0-beta.2", - "@jupyterlab/mainmenu": "~4.4.0-beta.2", - "@jupyterlab/translation": "~4.4.0-beta.2", + "@jupyterlab/application": "~4.4.0-rc.0", + "@jupyterlab/apputils": "~4.5.0-rc.0", + "@jupyterlab/mainmenu": "~4.4.0-rc.0", + "@jupyterlab/translation": "~4.4.0-rc.0", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/packages/lab-extension/package.json b/packages/lab-extension/package.json index 6c3261998e..ac33998c9b 100644 --- a/packages/lab-extension/package.json +++ b/packages/lab-extension/package.json @@ -44,18 +44,18 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.2", - "@jupyterlab/application": "~4.4.0-beta.2", - "@jupyterlab/apputils": "~4.5.0-beta.2", - "@jupyterlab/coreutils": "~6.4.0-beta.2", - "@jupyterlab/docregistry": "~4.4.0-beta.2", - "@jupyterlab/notebook": "~4.4.0-beta.2", - "@jupyterlab/translation": "~4.4.0-beta.2", - "@jupyterlab/ui-components": "~4.4.0-beta.2", + "@jupyterlab/application": "~4.4.0-rc.0", + "@jupyterlab/apputils": "~4.5.0-rc.0", + "@jupyterlab/coreutils": "~6.4.0-rc.0", + "@jupyterlab/docregistry": "~4.4.0-rc.0", + "@jupyterlab/notebook": "~4.4.0-rc.0", + "@jupyterlab/translation": "~4.4.0-rc.0", + "@jupyterlab/ui-components": "~4.4.0-rc.0", "@lumino/commands": "^2.3.1", "@lumino/disposable": "^2.1.3" }, "devDependencies": { - "@jupyterlab/builder": "~4.4.0-beta.2", + "@jupyterlab/builder": "~4.4.0-rc.0", "rimraf": "^3.0.2", "typescript": "~5.5.4" }, diff --git a/packages/notebook-extension/package.json b/packages/notebook-extension/package.json index b810df2cd1..6f1c310fcc 100644 --- a/packages/notebook-extension/package.json +++ b/packages/notebook-extension/package.json @@ -39,13 +39,13 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.2", - "@jupyterlab/application": "~4.4.0-beta.2", - "@jupyterlab/apputils": "~4.5.0-beta.2", - "@jupyterlab/cells": "~4.4.0-beta.2", - "@jupyterlab/docmanager": "~4.4.0-beta.2", - "@jupyterlab/notebook": "~4.4.0-beta.2", - "@jupyterlab/settingregistry": "~4.4.0-beta.2", - "@jupyterlab/translation": "~4.4.0-beta.2", + "@jupyterlab/application": "~4.4.0-rc.0", + "@jupyterlab/apputils": "~4.5.0-rc.0", + "@jupyterlab/cells": "~4.4.0-rc.0", + "@jupyterlab/docmanager": "~4.4.0-rc.0", + "@jupyterlab/notebook": "~4.4.0-rc.0", + "@jupyterlab/settingregistry": "~4.4.0-rc.0", + "@jupyterlab/translation": "~4.4.0-rc.0", "@lumino/polling": "^2.1.3", "@lumino/widgets": "^2.5.0", "react": "^18.2.0", diff --git a/packages/terminal-extension/package.json b/packages/terminal-extension/package.json index 8febe51b46..f444d03312 100644 --- a/packages/terminal-extension/package.json +++ b/packages/terminal-extension/package.json @@ -39,9 +39,9 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.2", - "@jupyterlab/application": "~4.4.0-beta.2", - "@jupyterlab/coreutils": "~6.4.0-beta.2", - "@jupyterlab/terminal": "~4.4.0-beta.2", + "@jupyterlab/application": "~4.4.0-rc.0", + "@jupyterlab/coreutils": "~6.4.0-rc.0", + "@jupyterlab/terminal": "~4.4.0-rc.0", "@lumino/algorithm": "^2.0.2" }, "devDependencies": { diff --git a/packages/tree-extension/package.json b/packages/tree-extension/package.json index 2bd9b8c2d7..d981fd0549 100644 --- a/packages/tree-extension/package.json +++ b/packages/tree-extension/package.json @@ -40,18 +40,18 @@ "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.2", "@jupyter-notebook/tree": "^7.4.0-beta.2", - "@jupyterlab/application": "~4.4.0-beta.2", - "@jupyterlab/apputils": "~4.5.0-beta.2", - "@jupyterlab/coreutils": "~6.4.0-beta.2", - "@jupyterlab/docmanager": "~4.4.0-beta.2", - "@jupyterlab/filebrowser": "~4.4.0-beta.2", - "@jupyterlab/mainmenu": "~4.4.0-beta.2", - "@jupyterlab/services": "~7.4.0-beta.2", - "@jupyterlab/settingeditor": "~4.4.0-beta.2", - "@jupyterlab/settingregistry": "~4.4.0-beta.2", - "@jupyterlab/statedb": "~4.4.0-beta.2", - "@jupyterlab/translation": "~4.4.0-beta.2", - "@jupyterlab/ui-components": "~4.4.0-beta.2", + "@jupyterlab/application": "~4.4.0-rc.0", + "@jupyterlab/apputils": "~4.5.0-rc.0", + "@jupyterlab/coreutils": "~6.4.0-rc.0", + "@jupyterlab/docmanager": "~4.4.0-rc.0", + "@jupyterlab/filebrowser": "~4.4.0-rc.0", + "@jupyterlab/mainmenu": "~4.4.0-rc.0", + "@jupyterlab/services": "~7.4.0-rc.0", + "@jupyterlab/settingeditor": "~4.4.0-rc.0", + "@jupyterlab/settingregistry": "~4.4.0-rc.0", + "@jupyterlab/statedb": "~4.4.0-rc.0", + "@jupyterlab/translation": "~4.4.0-rc.0", + "@jupyterlab/ui-components": "~4.4.0-rc.0", "@lumino/algorithm": "^2.0.2", "@lumino/commands": "^2.3.1", "@lumino/widgets": "^2.5.0" diff --git a/packages/tree/package.json b/packages/tree/package.json index c136aa320a..a625b37a7c 100644 --- a/packages/tree/package.json +++ b/packages/tree/package.json @@ -39,17 +39,17 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.2", - "@jupyterlab/application": "~4.4.0-beta.2", - "@jupyterlab/apputils": "~4.5.0-beta.2", - "@jupyterlab/coreutils": "~6.4.0-beta.2", - "@jupyterlab/docmanager": "~4.4.0-beta.2", - "@jupyterlab/filebrowser": "~4.4.0-beta.2", - "@jupyterlab/mainmenu": "~4.4.0-beta.2", - "@jupyterlab/services": "~7.4.0-beta.2", - "@jupyterlab/settingregistry": "~4.4.0-beta.2", - "@jupyterlab/statedb": "~4.4.0-beta.2", - "@jupyterlab/translation": "~4.4.0-beta.2", - "@jupyterlab/ui-components": "~4.4.0-beta.2", + "@jupyterlab/application": "~4.4.0-rc.0", + "@jupyterlab/apputils": "~4.5.0-rc.0", + "@jupyterlab/coreutils": "~6.4.0-rc.0", + "@jupyterlab/docmanager": "~4.4.0-rc.0", + "@jupyterlab/filebrowser": "~4.4.0-rc.0", + "@jupyterlab/mainmenu": "~4.4.0-rc.0", + "@jupyterlab/services": "~7.4.0-rc.0", + "@jupyterlab/settingregistry": "~4.4.0-rc.0", + "@jupyterlab/statedb": "~4.4.0-rc.0", + "@jupyterlab/translation": "~4.4.0-rc.0", + "@jupyterlab/ui-components": "~4.4.0-rc.0", "@lumino/algorithm": "^2.0.2", "@lumino/commands": "^2.3.1", "@lumino/coreutils": "^2.2.0", diff --git a/packages/ui-components/package.json b/packages/ui-components/package.json index 32060cce22..a1746f137e 100644 --- a/packages/ui-components/package.json +++ b/packages/ui-components/package.json @@ -42,7 +42,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/ui-components": "~4.4.0-beta.2", + "@jupyterlab/ui-components": "~4.4.0-rc.0", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/pixi.lock b/pixi.lock index 98ade68cc8..097d4118e2 100644 --- a/pixi.lock +++ b/pixi.lock @@ -93,7 +93,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/07/e0/7bd7cff65594fd9936e2f9385701e44574fc7d721331ff676ce440b14100/jupyter_lsp-2.2.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e2/a2/89eeaf0bb954a123a909859fa507fa86f96eb61b62dc30667b60dbd5fdaf/jupyter_server-2.15.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/07/2d/2b32cdbe8d2a602f697a649798554e4f072115438e92249624e532e8aca6/jupyter_server_terminals-0.5.3-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/5e/10/5a1fedf8cf17b480a15faf4fa3725599eb8fbb95a67d758835d92a512c64/jupyterlab-4.4.0b2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/39/66/3f0c8f052a68d9293454eb0159d3736e41dd668ef2a81f7f2f5df15d8238/jupyterlab-4.4.0rc0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/09/2032e7d15c544a0e3cd831c51d77a8ca57f7555b2e1b2922142eddb02a84/jupyterlab_server-2.27.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d3/32/da7f44bcb1105d3e88a0b74ebdca50c59121d2ddf71c9e34ba47df7f3a56/keyring-25.6.0-py3-none-any.whl @@ -271,7 +271,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/07/e0/7bd7cff65594fd9936e2f9385701e44574fc7d721331ff676ce440b14100/jupyter_lsp-2.2.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e2/a2/89eeaf0bb954a123a909859fa507fa86f96eb61b62dc30667b60dbd5fdaf/jupyter_server-2.15.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/07/2d/2b32cdbe8d2a602f697a649798554e4f072115438e92249624e532e8aca6/jupyter_server_terminals-0.5.3-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/5e/10/5a1fedf8cf17b480a15faf4fa3725599eb8fbb95a67d758835d92a512c64/jupyterlab-4.4.0b2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/39/66/3f0c8f052a68d9293454eb0159d3736e41dd668ef2a81f7f2f5df15d8238/jupyterlab-4.4.0rc0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/09/2032e7d15c544a0e3cd831c51d77a8ca57f7555b2e1b2922142eddb02a84/jupyterlab_server-2.27.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d3/32/da7f44bcb1105d3e88a0b74ebdca50c59121d2ddf71c9e34ba47df7f3a56/keyring-25.6.0-py3-none-any.whl @@ -449,7 +449,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/07/e0/7bd7cff65594fd9936e2f9385701e44574fc7d721331ff676ce440b14100/jupyter_lsp-2.2.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e2/a2/89eeaf0bb954a123a909859fa507fa86f96eb61b62dc30667b60dbd5fdaf/jupyter_server-2.15.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/07/2d/2b32cdbe8d2a602f697a649798554e4f072115438e92249624e532e8aca6/jupyter_server_terminals-0.5.3-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/5e/10/5a1fedf8cf17b480a15faf4fa3725599eb8fbb95a67d758835d92a512c64/jupyterlab-4.4.0b2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/39/66/3f0c8f052a68d9293454eb0159d3736e41dd668ef2a81f7f2f5df15d8238/jupyterlab-4.4.0rc0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/09/2032e7d15c544a0e3cd831c51d77a8ca57f7555b2e1b2922142eddb02a84/jupyterlab_server-2.27.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d3/32/da7f44bcb1105d3e88a0b74ebdca50c59121d2ddf71c9e34ba47df7f3a56/keyring-25.6.0-py3-none-any.whl @@ -635,7 +635,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/07/e0/7bd7cff65594fd9936e2f9385701e44574fc7d721331ff676ce440b14100/jupyter_lsp-2.2.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e2/a2/89eeaf0bb954a123a909859fa507fa86f96eb61b62dc30667b60dbd5fdaf/jupyter_server-2.15.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/07/2d/2b32cdbe8d2a602f697a649798554e4f072115438e92249624e532e8aca6/jupyter_server_terminals-0.5.3-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/5e/10/5a1fedf8cf17b480a15faf4fa3725599eb8fbb95a67d758835d92a512c64/jupyterlab-4.4.0b2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/39/66/3f0c8f052a68d9293454eb0159d3736e41dd668ef2a81f7f2f5df15d8238/jupyterlab-4.4.0rc0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/09/2032e7d15c544a0e3cd831c51d77a8ca57f7555b2e1b2922142eddb02a84/jupyterlab_server-2.27.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d3/32/da7f44bcb1105d3e88a0b74ebdca50c59121d2ddf71c9e34ba47df7f3a56/keyring-25.6.0-py3-none-any.whl @@ -1724,10 +1724,10 @@ packages: - pytest-timeout ; extra == 'test' - pytest>=7.0 ; extra == 'test' requires_python: '>=3.8' -- pypi: https://files.pythonhosted.org/packages/5e/10/5a1fedf8cf17b480a15faf4fa3725599eb8fbb95a67d758835d92a512c64/jupyterlab-4.4.0b2-py3-none-any.whl +- pypi: https://files.pythonhosted.org/packages/39/66/3f0c8f052a68d9293454eb0159d3736e41dd668ef2a81f7f2f5df15d8238/jupyterlab-4.4.0rc0-py3-none-any.whl name: jupyterlab - version: 4.4.0b2 - sha256: e38b6a745f4d2695e34256c721002c7c5dff0abfbfcf7d9b1f505494b04567e7 + version: 4.4.0rc0 + sha256: d713888709e7d21b6e4c39fdcda6e83a6ddbb14028aeb6171818946b3572c716 requires_dist: - async-lru>=1.0.0 - httpx>=0.25.0 @@ -2302,12 +2302,12 @@ packages: timestamp: 1734113054756 - pypi: . name: notebook - version: 7.4.0b1 - sha256: 1ff13f6f297858406df01832553ace8444a96af791800550a567b56ca63e4931 + version: 7.4.0b2 + sha256: 6647f575ad9bdab15fb2d5b62951f73464341fcb79de4da0d611d4efe6c2c78b requires_dist: - jupyter-server>=2.4.0,<3 - jupyterlab-server>=2.27.1,<3 - - jupyterlab>=4.4.0b2,<4.5 + - jupyterlab>=4.4.0rc0,<4.5 - notebook-shim>=0.2,<0.3 - tornado>=6.2.0 - hatch ; extra == 'dev' diff --git a/pyproject.toml b/pyproject.toml index 60822d2051..f733415bd7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["hatchling>=1.11", "jupyterlab>=4.4.0b2,<4.5"] +requires = ["hatchling>=1.11", "jupyterlab>=4.4.0rc0,<4.5"] build-backend = "hatchling.build" [project] @@ -32,7 +32,7 @@ classifiers = [ ] dependencies = [ "jupyter_server>=2.4.0,<3", - "jupyterlab>=4.4.0b2,<4.5", + "jupyterlab>=4.4.0rc0,<4.5", "jupyterlab_server>=2.27.1,<3", "notebook_shim>=0.2,<0.3", "tornado>=6.2.0", @@ -174,7 +174,7 @@ version-cmd = "jlpm run release:bump --force --skip-commit" [tool.jupyter-releaser.hooks] before-bump-version = [ - "python -m pip install -U \"jupyterlab>=4.4.0b2,<4.5\"", + "python -m pip install -U \"jupyterlab>=4.4.0rc0,<4.5\"", "jlpm", "jlpm run build:utils", "python -m pip install hatch" diff --git a/ui-tests/package.json b/ui-tests/package.json index 1c4b00c6f4..2d4ad2f4ef 100644 --- a/ui-tests/package.json +++ b/ui-tests/package.json @@ -15,7 +15,7 @@ "test:update": "playwright test --update-snapshots" }, "dependencies": { - "@jupyterlab/galata": "~5.4.0-beta.2", + "@jupyterlab/galata": "~5.4.0-rc.0", "@playwright/test": "~1.51.0", "rimraf": "^3.0.2" } diff --git a/ui-tests/yarn.lock b/ui-tests/yarn.lock index a1e98922e5..dc831b8226 100644 --- a/ui-tests/yarn.lock +++ b/ui-tests/yarn.lock @@ -278,7 +278,7 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyter-notebook/ui-tests@workspace:." dependencies: - "@jupyterlab/galata": ~5.4.0-beta.2 + "@jupyterlab/galata": ~5.4.0-rc.0 "@playwright/test": ~1.51.0 rimraf: ^3.0.2 languageName: unknown @@ -320,20 +320,20 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/application@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/application@npm:4.4.0-beta.2" +"@jupyterlab/application@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/application@npm:4.4.0-rc.0" dependencies: "@fortawesome/fontawesome-free": ^5.12.0 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/docregistry": ^4.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/statedb": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/docregistry": ^4.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/statedb": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/application": ^2.4.2 "@lumino/commands": ^2.3.1 @@ -344,23 +344,23 @@ __metadata: "@lumino/properties": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: 20042b03255bb1415d246ccdff839922c40e55d25dd687b5efec5f0be0d855932561692b15d54957c7be25007c5e248e07361f9ca303da8fc35728efcd19fc6e + checksum: b2f940de908502b6a6bd77ea5b47c3d928ac85bbca5db2a89544d2136fc607d2e51b2ab74c3ef36926ccda5f499707c98882d8230c9861980d9e70cbd2b2b51c languageName: node linkType: hard -"@jupyterlab/apputils@npm:^4.5.0-beta.2": - version: 4.5.0-beta.2 - resolution: "@jupyterlab/apputils@npm:4.5.0-beta.2" +"@jupyterlab/apputils@npm:^4.5.0-rc.0": + version: 4.5.0-rc.0 + resolution: "@jupyterlab/apputils@npm:4.5.0-rc.0" dependencies: - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/observables": ^5.4.0-beta.2 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/statedb": ^4.4.0-beta.2 - "@jupyterlab/statusbar": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/observables": ^5.4.0-rc.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/statedb": ^4.4.0-rc.0 + "@jupyterlab/statusbar": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -373,46 +373,46 @@ __metadata: "@types/react": ^18.0.26 react: ^18.2.0 sanitize-html: ~2.12.1 - checksum: 330f541763ea58a0f4b1045b148740498e884f02aa92b8aa3f908e1b7e6fe26d5c68be3520c5c6b10180eed8a9d314de286b163881005daaa1b7c355bfe0b06b + checksum: 3693d10d995d16394d019ec66fc981bc3d6fd478cee359d926c16a8b67a228b336b62eb2c0bb66a6acc5b742047e725fa6aff67ad11631db585f77b31fd68952 languageName: node linkType: hard -"@jupyterlab/attachments@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/attachments@npm:4.4.0-beta.2" +"@jupyterlab/attachments@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/attachments@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/nbformat": ^4.4.0-beta.2 - "@jupyterlab/observables": ^5.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 + "@jupyterlab/nbformat": ^4.4.0-rc.0 + "@jupyterlab/observables": ^5.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 "@lumino/disposable": ^2.1.3 "@lumino/signaling": ^2.1.3 - checksum: 62e9c30ea5dba15199a410a7e7e3abe24a1b867359246e216faacb40466101ed20726057ac6dd80461f411d568894b0002d2eda314d5309f758517bd7210d752 + checksum: 5b8b23559cc5ce6eac4c1fceefb6ddec5b0bd3b8726f92d6ab62390466adc9c03d9e7172be32b97431d06fbebca83f820792e9380fd20d7572a05b6baae61555 languageName: node linkType: hard -"@jupyterlab/cells@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/cells@npm:4.4.0-beta.2" +"@jupyterlab/cells@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/cells@npm:4.4.0-rc.0" dependencies: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/attachments": ^4.4.0-beta.2 - "@jupyterlab/codeeditor": ^4.4.0-beta.2 - "@jupyterlab/codemirror": ^4.4.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/documentsearch": ^4.4.0-beta.2 - "@jupyterlab/filebrowser": ^4.4.0-beta.2 - "@jupyterlab/nbformat": ^4.4.0-beta.2 - "@jupyterlab/observables": ^5.4.0-beta.2 - "@jupyterlab/outputarea": ^4.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/toc": ^6.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/attachments": ^4.4.0-rc.0 + "@jupyterlab/codeeditor": ^4.4.0-rc.0 + "@jupyterlab/codemirror": ^4.4.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/documentsearch": ^4.4.0-rc.0 + "@jupyterlab/filebrowser": ^4.4.0-rc.0 + "@jupyterlab/nbformat": ^4.4.0-rc.0 + "@jupyterlab/observables": ^5.4.0-rc.0 + "@jupyterlab/outputarea": ^4.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/toc": ^6.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/domutils": ^2.0.2 @@ -423,23 +423,23 @@ __metadata: "@lumino/virtualdom": ^2.0.2 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 2f70adfa7bbd56431eb60bb4360f643bb26ff3355ed43fe76f79308fa303fcc9475c650eef494bf5c04ce90f12e0f9ed512adca98205c5c1983fe504c8c2a137 + checksum: e7259eb4bd4c364f3008b989c4c91870977fe0e89e95246407021cb5efec53330223234c3dc0e3c05976e43dad4e8740d3f790b5ce984eb64fe324e3e6428f79 languageName: node linkType: hard -"@jupyterlab/codeeditor@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/codeeditor@npm:4.4.0-beta.2" +"@jupyterlab/codeeditor@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/codeeditor@npm:4.4.0-rc.0" dependencies: "@codemirror/state": ^6.5.0 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/nbformat": ^4.4.0-beta.2 - "@jupyterlab/observables": ^5.4.0-beta.2 - "@jupyterlab/statusbar": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/nbformat": ^4.4.0-rc.0 + "@jupyterlab/observables": ^5.4.0-rc.0 + "@jupyterlab/statusbar": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/dragdrop": ^2.1.5 @@ -447,13 +447,13 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 3cb25ee4ea41d84172e172a5e8bb827c4bf6e98af62cad8e5c56f409321290c2305e455f8006a149bd14d544553d60b2c5ef1bc2d9770e7de7a8a30bddbd61fc + checksum: 703a663518fae5d0fa7ad98c157f4c1febcf7ca31f7c1b8cc548de75d5c0898b437df2f77d29b7c209e5888b0cecb2864a0844d19e9755eb22ee977e2a36c72a languageName: node linkType: hard -"@jupyterlab/codemirror@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/codemirror@npm:4.4.0-beta.2" +"@jupyterlab/codemirror@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/codemirror@npm:4.4.0-rc.0" dependencies: "@codemirror/autocomplete": ^6.18.3 "@codemirror/commands": ^6.7.1 @@ -476,11 +476,11 @@ __metadata: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/codeeditor": ^4.4.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/documentsearch": ^4.4.0-beta.2 - "@jupyterlab/nbformat": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/codeeditor": ^4.4.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/documentsearch": ^4.4.0-rc.0 + "@jupyterlab/nbformat": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 "@lezer/common": ^1.2.1 "@lezer/generator": ^1.7.0 "@lezer/highlight": ^1.2.0 @@ -489,38 +489,38 @@ __metadata: "@lumino/disposable": ^2.1.3 "@lumino/signaling": ^2.1.3 yjs: ^13.5.40 - checksum: 0ce42460c6937cf39bc15a8c5b7f03a876b5f7d72aa6ae5dbf1ed964042199f427393c989702ff12eca48353a0912ad4581d8892269b1131052a75abf63c7bcb + checksum: 349059c4ec6faadbd1d32be152ea35e808c656f3f2c1d7e974db2e737d51b2e392da2eeb6c4f35ed56aed7169d03ae93049b0a57fc957e6da4b2aba74e155fdd languageName: node linkType: hard -"@jupyterlab/console@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/console@npm:4.4.0-beta.2" +"@jupyterlab/console@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/console@npm:4.4.0-rc.0" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/cells": ^4.4.0-beta.2 - "@jupyterlab/codeeditor": ^4.4.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/nbformat": ^4.4.0-beta.2 - "@jupyterlab/observables": ^5.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/cells": ^4.4.0-rc.0 + "@jupyterlab/codeeditor": ^4.4.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/nbformat": ^4.4.0-rc.0 + "@jupyterlab/observables": ^5.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/dragdrop": ^2.1.5 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: d509f4bac4458c14596e86210dc8459f31a8c686a5c09d1d89f1335bbf43711e1fb0baa1679fc83184709f69e4d8a4d219d324a7796849cad63404bb722bf17b + checksum: 9b0a9e91a47fd787c78927d746bb6055c0c581ce569e866a8f87fdeceac9fe27c7935e14e70ac1ec8a09d1f48276b9ceb65a8771861082dc0e8b6d6aa3380828 languageName: node linkType: hard -"@jupyterlab/coreutils@npm:^6.4.0-beta.2": - version: 6.4.0-beta.2 - resolution: "@jupyterlab/coreutils@npm:6.4.0-beta.2" +"@jupyterlab/coreutils@npm:^6.4.0-rc.0": + version: 6.4.0-rc.0 + resolution: "@jupyterlab/coreutils@npm:6.4.0-rc.0" dependencies: "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -528,33 +528,33 @@ __metadata: minimist: ~1.2.0 path-browserify: ^1.0.0 url-parse: ~1.5.4 - checksum: fb2ef02d4308e2159f93300a862781f4c146f866dcbb6c9379081fa35ec13d9972003ee8d7b7aab8f7b620abfb14f4974a6bd8554085d4e3541e8c9a7da6624c + checksum: dff140ce23ba87aa8c8d941e299e2489365055343eaa520ba06d406d94bdf4fd02b88af9cc782ff14c800bc25ed6bf6d7cdc96e084f42d326ff120973c898cde languageName: node linkType: hard -"@jupyterlab/debugger@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/debugger@npm:4.4.0-beta.2" +"@jupyterlab/debugger@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/debugger@npm:4.4.0-rc.0" dependencies: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/react-components": ^0.16.6 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/cells": ^4.4.0-beta.2 - "@jupyterlab/codeeditor": ^4.4.0-beta.2 - "@jupyterlab/codemirror": ^4.4.0-beta.2 - "@jupyterlab/console": ^4.4.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/docregistry": ^4.4.0-beta.2 - "@jupyterlab/fileeditor": ^4.4.0-beta.2 - "@jupyterlab/notebook": ^4.4.0-beta.2 - "@jupyterlab/observables": ^5.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/cells": ^4.4.0-rc.0 + "@jupyterlab/codeeditor": ^4.4.0-rc.0 + "@jupyterlab/codemirror": ^4.4.0-rc.0 + "@jupyterlab/console": ^4.4.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/docregistry": ^4.4.0-rc.0 + "@jupyterlab/fileeditor": ^4.4.0-rc.0 + "@jupyterlab/notebook": ^4.4.0-rc.0 + "@jupyterlab/observables": ^5.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -566,22 +566,22 @@ __metadata: "@lumino/widgets": ^2.6.0 "@vscode/debugprotocol": ^1.51.0 react: ^18.2.0 - checksum: 08e96574fb541a20038fcaa57a5b95e59ab2f7f3805fdc950a76aaefbeaa02d4fd9fe7009562009896d9c629e5626d86baa5bc943a4b013fc759529b5acdfd93 + checksum: 8b80487e71fd75888da3add74169b33880147891d1d5f07fd4b738f729f0ee99a0787fbd7c24a2f0a3c7fe2bd6ee49d365feb3cc0a19531260f93afc6ed5957d languageName: node linkType: hard -"@jupyterlab/docmanager@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/docmanager@npm:4.4.0-beta.2" +"@jupyterlab/docmanager@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/docmanager@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/docregistry": ^4.4.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/statedb": ^4.4.0-beta.2 - "@jupyterlab/statusbar": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/docregistry": ^4.4.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/statedb": ^4.4.0-rc.0 + "@jupyterlab/statusbar": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -591,24 +591,24 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 2854681c32d7c56d3f39ddaed62c2e86564666782d48cecc5ad6984892cdecbb35a9e795d20faed7e843930b14795548db7c890631c91570c7734c95e29dd903 + checksum: 88ac773b96db81759c915674cd03d9b436484540bac0198bd77aa9039a414abe1ea5aed9b6ada2109408a983b39d78eb11b681f7dde4290f6b732185f66f3456 languageName: node linkType: hard -"@jupyterlab/docregistry@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/docregistry@npm:4.4.0-beta.2" +"@jupyterlab/docregistry@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/docregistry@npm:4.4.0-rc.0" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/codeeditor": ^4.4.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/observables": ^5.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/codeeditor": ^4.4.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/observables": ^5.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -617,17 +617,17 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 1638511375840016304b08cbe2d700e9d680676c359beae70fc3ebe3d375ac73b898185f4d1d607e0f358c2be3ac843c78b7f1ba458c23cc2f5134692fc1e8a1 + checksum: bdd65304c1b3132d9962a237f09d3d83915ec3236c256c7aad9ad51f258fe1e34be29cb1b2dc49256965d83c0c80cb6db2224e1e141e2bf62becb266dc88456c languageName: node linkType: hard -"@jupyterlab/documentsearch@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/documentsearch@npm:4.4.0-beta.2" +"@jupyterlab/documentsearch@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/documentsearch@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -636,23 +636,23 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 0ac5b4c2e068a0d40afd263ec763e29a5ee095b6359298a779aee50a7cea539d92fb9f623ef70a009535e15818028eac17a7e1c743a866f7918270da9c10bbea + checksum: 6f27b4e0955843e609ad9e96da289da195fe925b5080d52727df2e0e6d7d0801708d6f55abdd0c2dcb481adeb5e136310857724f5a1802048bb59bc84130a3a1 languageName: node linkType: hard -"@jupyterlab/filebrowser@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/filebrowser@npm:4.4.0-beta.2" +"@jupyterlab/filebrowser@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/filebrowser@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/docmanager": ^4.4.0-beta.2 - "@jupyterlab/docregistry": ^4.4.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/statedb": ^4.4.0-beta.2 - "@jupyterlab/statusbar": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/docmanager": ^4.4.0-rc.0 + "@jupyterlab/docregistry": ^4.4.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/statedb": ^4.4.0-rc.0 + "@jupyterlab/statusbar": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -664,49 +664,49 @@ __metadata: "@lumino/virtualdom": ^2.0.2 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: e0f4c9977df3c3ceeebd495e7a18566dc09378902e662963e7aef9bcf6e759089faeb7971537cb7a2296e25da1b15d1247fa5baa090f8f10f9fd321a36a573f7 + checksum: f4bb40585c51810d402243256ccd608b1bd8698039642a1329f4c372497a5da82f7d64022be142b6e4a89706d87f24e51625ee6354e68055eba22ba3109fe9d9 languageName: node linkType: hard -"@jupyterlab/fileeditor@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/fileeditor@npm:4.4.0-beta.2" +"@jupyterlab/fileeditor@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/fileeditor@npm:4.4.0-rc.0" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/codeeditor": ^4.4.0-beta.2 - "@jupyterlab/codemirror": ^4.4.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/docregistry": ^4.4.0-beta.2 - "@jupyterlab/documentsearch": ^4.4.0-beta.2 - "@jupyterlab/lsp": ^4.4.0-beta.2 - "@jupyterlab/statusbar": ^4.4.0-beta.2 - "@jupyterlab/toc": ^6.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/codeeditor": ^4.4.0-rc.0 + "@jupyterlab/codemirror": ^4.4.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/docregistry": ^4.4.0-rc.0 + "@jupyterlab/documentsearch": ^4.4.0-rc.0 + "@jupyterlab/lsp": ^4.4.0-rc.0 + "@jupyterlab/statusbar": ^4.4.0-rc.0 + "@jupyterlab/toc": ^6.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/widgets": ^2.6.0 react: ^18.2.0 regexp-match-indices: ^1.0.2 - checksum: 921a42d927d6454f6d0673fd53b589e08b86d37502f6ca4c7a80965bd37636b316f4cbce73668b02e84c4f0ebdb4f9f5aba11e3e5e52a082bbfe19cbb32d2fc7 + checksum: 2301e0620bab6e33dcd09385f9213933afd9c9d6837532ed3b3d265e0c658604597592d823bbe517d037a55f1d333313c979c208842506b68a2bae91292fcc9e languageName: node linkType: hard -"@jupyterlab/galata@npm:~5.4.0-beta.2": - version: 5.4.0-beta.2 - resolution: "@jupyterlab/galata@npm:5.4.0-beta.2" +"@jupyterlab/galata@npm:~5.4.0-rc.0": + version: 5.4.0-rc.0 + resolution: "@jupyterlab/galata@npm:5.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/debugger": ^4.4.0-beta.2 - "@jupyterlab/docmanager": ^4.4.0-beta.2 - "@jupyterlab/nbformat": ^4.4.0-beta.2 - "@jupyterlab/notebook": ^4.4.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/debugger": ^4.4.0-rc.0 + "@jupyterlab/docmanager": ^4.4.0-rc.0 + "@jupyterlab/nbformat": ^4.4.0-rc.0 + "@jupyterlab/notebook": ^4.4.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 "@playwright/test": ^1.51.0 "@stdlib/stats": ~0.0.13 @@ -717,21 +717,21 @@ __metadata: vega: ^5.20.0 vega-lite: ^5.6.1 vega-statistics: ^1.7.9 - checksum: 267da5192568514dd54d590641a8bc1001330ecfedea0f85fce1647a779e4d60a69f7eee38b1ba274c3cec2468fc1e3273e7a72e2be3bf91d878618cb9e97df4 + checksum: 92b8ede6b40c2c0652fcf2fb31ea9bee7fac7805ad740e5a71d32b2e205c57b0fe774f98a6c054be015b8ae670935af128da2c5438631f9ef1a3e5a1eb7790b8 languageName: node linkType: hard -"@jupyterlab/lsp@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/lsp@npm:4.4.0-beta.2" +"@jupyterlab/lsp@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/lsp@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/codeeditor": ^4.4.0-beta.2 - "@jupyterlab/codemirror": ^4.4.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/docregistry": ^4.4.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/codeeditor": ^4.4.0-rc.0 + "@jupyterlab/codemirror": ^4.4.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/docregistry": ^4.4.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/signaling": ^2.1.3 @@ -740,7 +740,7 @@ __metadata: vscode-jsonrpc: ^6.0.0 vscode-languageserver-protocol: ^3.17.0 vscode-ws-jsonrpc: ~1.0.2 - checksum: 4670e1f4779485f7618df36b42d9515ed21e9774c32b83387e55f46afc94c787f744cab689e4eeee4764e03c9fdb2cd5e967226dda23f2d1f0b283323763caed + checksum: e06267e976756be96021c7299ee738e4ef4c74ec6f5c76fa3caa6b6b36fe2296dc07b56deb0b6b8b02e27554e8ff129b72b9deecfbe3f4fae46931cbeb720c2b languageName: node linkType: hard @@ -753,37 +753,37 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/nbformat@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/nbformat@npm:4.4.0-beta.2" +"@jupyterlab/nbformat@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/nbformat@npm:4.4.0-rc.0" dependencies: "@lumino/coreutils": ^2.2.0 - checksum: b45e4d87bacb742968596736edaa099337303c840a727545e068a2a8a43e642c22e13c68caea2abc20c93dec1eb931ad7a6ce497e9c9689fcd08ecdc7eddf788 + checksum: 96c59e11087d3ab5abd4872e78dea9035c493669591de18f37600aabb61d5c9c325ea9b12596cd2db471c886a337be76f94a2a59ce48b71769c0e6ece5ea5fe5 languageName: node linkType: hard -"@jupyterlab/notebook@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/notebook@npm:4.4.0-beta.2" +"@jupyterlab/notebook@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/notebook@npm:4.4.0-rc.0" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/cells": ^4.4.0-beta.2 - "@jupyterlab/codeeditor": ^4.4.0-beta.2 - "@jupyterlab/codemirror": ^4.4.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/docregistry": ^4.4.0-beta.2 - "@jupyterlab/documentsearch": ^4.4.0-beta.2 - "@jupyterlab/lsp": ^4.4.0-beta.2 - "@jupyterlab/nbformat": ^4.4.0-beta.2 - "@jupyterlab/observables": ^5.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/statusbar": ^4.4.0-beta.2 - "@jupyterlab/toc": ^6.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/cells": ^4.4.0-rc.0 + "@jupyterlab/codeeditor": ^4.4.0-rc.0 + "@jupyterlab/codemirror": ^4.4.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/docregistry": ^4.4.0-rc.0 + "@jupyterlab/documentsearch": ^4.4.0-rc.0 + "@jupyterlab/lsp": ^4.4.0-rc.0 + "@jupyterlab/nbformat": ^4.4.0-rc.0 + "@jupyterlab/observables": ^5.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/statusbar": ^4.4.0-rc.0 + "@jupyterlab/toc": ^6.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -796,34 +796,34 @@ __metadata: "@lumino/virtualdom": ^2.0.2 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: e2beaf97c37006f4f166b7acb7a230d493d524f8d6f4ecf8c9dd0262106041cd2af07a26a100c33bae63f1a656a7dd30e1fd334d463207c0bb9e1762f1daa204 + checksum: ff5e45e3bdd4f39462f6b3a45073d9eb54ddf0983c3438cd1e1d227613bb46ea31c942cd84d205231998e83acebf3986e9bb1c67ac200644fe1273033ec78b25 languageName: node linkType: hard -"@jupyterlab/observables@npm:^5.4.0-beta.2": - version: 5.4.0-beta.2 - resolution: "@jupyterlab/observables@npm:5.4.0-beta.2" +"@jupyterlab/observables@npm:^5.4.0-rc.0": + version: 5.4.0-rc.0 + resolution: "@jupyterlab/observables@npm:5.4.0-rc.0" dependencies: "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 - checksum: 4f05a240b612329d6dc99a77ead91e94ef7124ab84d38ccd52aa54116e96c49d6ed40fb6ca04158681bcdc2be333168624ef64fd06f9f6e163cd16849846e1bd + checksum: d73e214177eed6592fb902a2f7c18d034496c57024e118abce97f20e6f573a26e05eb80634b7b388671752946ffca8a6292b5261868cc9a0f35fad2c946fa06a languageName: node linkType: hard -"@jupyterlab/outputarea@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/outputarea@npm:4.4.0-beta.2" +"@jupyterlab/outputarea@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/outputarea@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/nbformat": ^4.4.0-beta.2 - "@jupyterlab/observables": ^5.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/nbformat": ^4.4.0-rc.0 + "@jupyterlab/observables": ^5.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -831,65 +831,65 @@ __metadata: "@lumino/properties": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: 375ce7852acd4ed97a9ebe83ab534effdd9a89ca24ba871d8074e8b0320f0cdd4796511072ff641ccc934d491d476edd4258af3615af64fc0d3e9445e397b0dc + checksum: 0c65c5c9c6710def00a20c082c4cece884bdc07b2ac4060e01d6834f4171eeccb8191b2ed3f6a04a444b8c49b03f8501f8885d886d9348035a03e19aee11c738 languageName: node linkType: hard -"@jupyterlab/rendermime-interfaces@npm:^3.12.0-beta.2": - version: 3.12.0-beta.2 - resolution: "@jupyterlab/rendermime-interfaces@npm:3.12.0-beta.2" +"@jupyterlab/rendermime-interfaces@npm:^3.12.0-rc.0": + version: 3.12.0-rc.0 + resolution: "@jupyterlab/rendermime-interfaces@npm:3.12.0-rc.0" dependencies: "@lumino/coreutils": ^1.11.0 || ^2.2.0 "@lumino/widgets": ^1.37.2 || ^2.6.0 - checksum: 85fadd071970a324445db5b5d350e17414d8d9b228cfd93bac39654737ff82bbf6a0b65c279c367c7d901c6019c480b2b31d6b91fcedb64396c6487be5d40add + checksum: de24036ade599e91b35f21579c051070c107bb177d0d22acd27c5e7cfed7b820bf1d7897bc786bf8b5cb562439a370db92b7c461377db5b08dc1123eba69ea92 languageName: node linkType: hard -"@jupyterlab/rendermime@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/rendermime@npm:4.4.0-beta.2" +"@jupyterlab/rendermime@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/rendermime@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/nbformat": ^4.4.0-beta.2 - "@jupyterlab/observables": ^5.4.0-beta.2 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/nbformat": ^4.4.0-rc.0 + "@jupyterlab/observables": ^5.4.0-rc.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 lodash.escape: ^4.0.1 - checksum: 761d3ed8bca2fe606198aa735feaaf18e3081ae81b53f10cb3cc12edb2c360cee28c5cb864cba3aa06ba303b9cd36b90672986c1cac3fb7ad53a3240a9b08f0e + checksum: a863e53a9ff4d65eee7a01aa095e7e38affb71be044a86fed03e5c2c1ef278f0f5e7dfaf4fd9d8c3d72dd7eaa4453d5a1446f933dbd12a1c307d485ee92c77db languageName: node linkType: hard -"@jupyterlab/services@npm:^7.4.0-beta.2": - version: 7.4.0-beta.2 - resolution: "@jupyterlab/services@npm:7.4.0-beta.2" +"@jupyterlab/services@npm:^7.4.0-rc.0": + version: 7.4.0-rc.0 + resolution: "@jupyterlab/services@npm:7.4.0-rc.0" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/nbformat": ^4.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/statedb": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/nbformat": ^4.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/statedb": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/polling": ^2.1.3 "@lumino/properties": ^2.0.2 "@lumino/signaling": ^2.1.3 ws: ^8.11.0 - checksum: 88f3f4d2f9ff9e305a357b10152d280b45e3592beb7188ecab2430b0248da3b4ed4f20d98431c42ea5df21e6f0652e66095fd52bf0f0e014922f4572d5d9d11b + checksum: 9e6667c05f456d9f561b58913143a2b54e1bafedba35a9d67aa5930283c6d40092191262422291e205b0fb540ec2306acbf877aee5ac784c6de2a4108b8f47dc languageName: node linkType: hard -"@jupyterlab/settingregistry@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/settingregistry@npm:4.4.0-beta.2" +"@jupyterlab/settingregistry@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/settingregistry@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/nbformat": ^4.4.0-beta.2 - "@jupyterlab/statedb": ^4.4.0-beta.2 + "@jupyterlab/nbformat": ^4.4.0-rc.0 + "@jupyterlab/statedb": ^4.4.0-rc.0 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -899,28 +899,28 @@ __metadata: json5: ^2.2.3 peerDependencies: react: ">=16" - checksum: 0910683251322d1b90722815fc0c79c7f0004a472dafaff39515f8a7ee95149e1bb3ebd728425e21005fa9f1aadb6e0df2a5f53706462d5bb4ef94978b0d5858 + checksum: bfaefd25d82dd6677a24c93a110c8d922c063af6c37bdee704be6e1b8b006c73c9b3eaf0f06c72b39297c066ad3d0e087dc06d6b61506fcac295146f7993b710 languageName: node linkType: hard -"@jupyterlab/statedb@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/statedb@npm:4.4.0-beta.2" +"@jupyterlab/statedb@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/statedb@npm:4.4.0-rc.0" dependencies: "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/properties": ^2.0.2 "@lumino/signaling": ^2.1.3 - checksum: 4e634b6f4f76a9f38f6ff47cc666aa0e1d3deeeea06eb163ae1cf722b46a772ade34ecaa8a56f88aa41d8fbbc50a7ba69a55557f7236b3f7023dbd850d41b902 + checksum: 0d8a52560142a7a43a5837a6445c1cc71cf5d1bfe78aeff67dfdd26e6741abfe31a4cb4f30d87a925ad3e44ea85cab25f24f19585204910d6440ad8083b17ee0 languageName: node linkType: hard -"@jupyterlab/statusbar@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/statusbar@npm:4.4.0-beta.2" +"@jupyterlab/statusbar@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/statusbar@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -928,56 +928,56 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 942d2cbc84619dc1f03e52049293950b42d9101537f6724bc0955c82fa7b707958bc2f050885e5dab39d5361edc18c1053e2567c5402b8c86eb63d357d1a29f3 + checksum: 3eeb24e53d7660f0dcc08dbee50843e065a021f29cd51f69624b1a873971ce7d063774144e89b1b2d3acaaa169e20a433fa0232c9ce8e140f2429362fee73d42 languageName: node linkType: hard -"@jupyterlab/toc@npm:^6.4.0-beta.2": - version: 6.4.0-beta.2 - resolution: "@jupyterlab/toc@npm:6.4.0-beta.2" +"@jupyterlab/toc@npm:^6.4.0-rc.0": + version: 6.4.0-rc.0 + resolution: "@jupyterlab/toc@npm:6.4.0-rc.0" dependencies: "@jupyter/react-components": ^0.16.6 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/docregistry": ^4.4.0-beta.2 - "@jupyterlab/observables": ^5.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/docregistry": ^4.4.0-rc.0 + "@jupyterlab/observables": ^5.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 1ecbcf1948132852378dc6e99e3988602df5fd3730f472fae2ce33098855832b3ab46ed4850223a014aae57da492e054d2188616904df9b7bbfbe576783034f8 + checksum: 40014291fa1d3b91227359f48850824f4d5ecb7d70f649b573099469ba09616a158ff405aebad3fbbb4e3b488cc6277ed64ba462adeb3e3a0d60e6edd8db52a1 languageName: node linkType: hard -"@jupyterlab/translation@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/translation@npm:4.4.0-beta.2" +"@jupyterlab/translation@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/translation@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/statedb": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/statedb": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 - checksum: 92ed4804dd1955e5d6d9be78d7d31f7155997d0cb01d44493c70502d5fdb1b8a9a5aedc93e38a14c0e6874fc1322038f7e97e3eeb1b123f3ded53b8e533bcb49 + checksum: 0d9f4335544cc9d49a13afae9ad686f11ec1117fff47f2560712b324ac9473a8674e2ab948b21fbeb9644c99e8e15f801e3e90b8514da32b86e2b156dddfc467 languageName: node linkType: hard -"@jupyterlab/ui-components@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/ui-components@npm:4.4.0-beta.2" +"@jupyterlab/ui-components@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/ui-components@npm:4.4.0-rc.0" dependencies: "@jupyter/react-components": ^0.16.6 "@jupyter/web-components": ^0.16.6 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/observables": ^5.4.0-beta.2 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/observables": ^5.4.0-rc.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -995,7 +995,7 @@ __metadata: typestyle: ^2.0.4 peerDependencies: react: ^18.2.0 - checksum: 8b1a3473058ce3f82d03497114046a21e53f1a5c6a7b3295431d79f67ea001c9272620a16f59812b4d08a450f9f9f48104092a3710bd3f337de29e03b39dab55 + checksum: 0931ec59f2fd46f00788f7e0c18e36e1c6ae3bf1f1a800279776011b37d65d3786472deed327d862a94e7d0dceea23e66d9b31213623fc6b1d2e88d60fc41ecb languageName: node linkType: hard diff --git a/yarn.lock b/yarn.lock index f898ce06a4..67492297c3 100644 --- a/yarn.lock +++ b/yarn.lock @@ -22,20 +22,20 @@ __metadata: languageName: node linkType: hard -"@antfu/install-pkg@npm:^0.4.1": - version: 0.4.1 - resolution: "@antfu/install-pkg@npm:0.4.1" +"@antfu/install-pkg@npm:^1.0.0": + version: 1.0.0 + resolution: "@antfu/install-pkg@npm:1.0.0" dependencies: - package-manager-detector: ^0.2.0 - tinyexec: ^0.3.0 - checksum: 3ffd59fa5a21dcb4951a037f5c91dfbfc152adfef9e7ba231a968f108aa28c1cd22213c437a8d34f2bfea8c2b9a6df20447eb04be15b534a8e9e21a9dcf203c0 + package-manager-detector: ^0.2.8 + tinyexec: ^0.3.2 + checksum: 0fdae280f5185d7225e41ed8f19aa14f96716043366d7aeec5e6bea4f995a826bb250dd01d6e2d9886bbd2c023435ad624096bad9e4c8d6cc3d025b6b9ca32a9 languageName: node linkType: hard -"@antfu/utils@npm:^0.7.10": - version: 0.7.10 - resolution: "@antfu/utils@npm:0.7.10" - checksum: b93dd9e2c7e96ae6dca8a07c1fc5e7165ea9c7a89e78ecb75959bc9a8e769d3f565aea1b5c43db7374dd1f405cc277b6d14d85f884886f9d424dd6144d9203f2 +"@antfu/utils@npm:^8.1.0": + version: 8.1.1 + resolution: "@antfu/utils@npm:8.1.1" + checksum: 42ded916c4ff7f45a2f462eb020c801d24f2eee830cba4dbeef5a8bb774b6af22238f0c3efdbcb068296eb948aa13bdc32169186e261c99aae13c12360c02580 languageName: node linkType: hard @@ -1370,7 +1370,7 @@ __metadata: languageName: node linkType: hard -"@braintree/sanitize-url@npm:^7.0.1": +"@braintree/sanitize-url@npm:^7.0.4": version: 7.1.1 resolution: "@braintree/sanitize-url@npm:7.1.1" checksum: bdfb6add95e97c5a611597197cd8385c6592d340a688bfbb176a1799bde64b9ffa1e723a7bac908d61fdecfccf4301332cdebaa4a1650c2616b5269084d9c8e4 @@ -1795,19 +1795,19 @@ __metadata: languageName: node linkType: hard -"@iconify/utils@npm:^2.1.32": - version: 2.2.1 - resolution: "@iconify/utils@npm:2.2.1" +"@iconify/utils@npm:^2.1.33": + version: 2.3.0 + resolution: "@iconify/utils@npm:2.3.0" dependencies: - "@antfu/install-pkg": ^0.4.1 - "@antfu/utils": ^0.7.10 + "@antfu/install-pkg": ^1.0.0 + "@antfu/utils": ^8.1.0 "@iconify/types": ^2.0.0 debug: ^4.4.0 - globals: ^15.13.0 + globals: ^15.14.0 kolorist: ^1.8.0 - local-pkg: ^0.5.1 - mlly: ^1.7.3 - checksum: 7d1566eb30b5eaefe732a293dc5f4c80f5f179e4f0db26a316d5b8cbda570442fded127914a4c916cd296ebf39033c78369a46584a44f20aabb997525ff5c009 + local-pkg: ^1.0.0 + mlly: ^1.7.4 + checksum: b723397c09bdfd116c907db714fd1cd65119283e06d008502d9389593b14520c7084474b2e0b0bae2d46eabc3be2146ab02fba81c9ad199a33b6f1394e23890c languageName: node linkType: hard @@ -2142,56 +2142,56 @@ __metadata: "@jupyter-notebook/tree": ^7.4.0-beta.2 "@jupyter-notebook/tree-extension": ^7.4.0-beta.2 "@jupyter-notebook/ui-components": ^7.4.0-beta.2 - "@jupyterlab/application-extension": ~4.4.0-beta.2 - "@jupyterlab/apputils-extension": ~4.4.0-beta.2 - "@jupyterlab/attachments": ~4.4.0-beta.2 - "@jupyterlab/builder": ~4.4.0-beta.2 - "@jupyterlab/buildutils": ~4.4.0-beta.2 - "@jupyterlab/cell-toolbar-extension": ~4.4.0-beta.2 - "@jupyterlab/celltags-extension": ~4.4.0-beta.2 - "@jupyterlab/codemirror": ~4.4.0-beta.2 - "@jupyterlab/codemirror-extension": ~4.4.0-beta.2 - "@jupyterlab/completer-extension": ~4.4.0-beta.2 - "@jupyterlab/console-extension": ~4.4.0-beta.2 - "@jupyterlab/coreutils": ~6.4.0-beta.2 - "@jupyterlab/csvviewer-extension": ~4.4.0-beta.2 - "@jupyterlab/debugger-extension": ~4.4.0-beta.2 - "@jupyterlab/docmanager-extension": ~4.4.0-beta.2 - "@jupyterlab/documentsearch-extension": ~4.4.0-beta.2 - "@jupyterlab/extensionmanager-extension": ~4.4.0-beta.2 - "@jupyterlab/filebrowser-extension": ~4.4.0-beta.2 - "@jupyterlab/fileeditor-extension": ~4.4.0-beta.2 - "@jupyterlab/help-extension": ~4.4.0-beta.2 - "@jupyterlab/htmlviewer-extension": ~4.4.0-beta.2 - "@jupyterlab/hub-extension": ~4.4.0-beta.2 - "@jupyterlab/imageviewer-extension": ~4.4.0-beta.2 - "@jupyterlab/javascript-extension": ~4.4.0-beta.2 - "@jupyterlab/json-extension": ~4.4.0-beta.2 - "@jupyterlab/lsp": ~4.4.0-beta.2 - "@jupyterlab/lsp-extension": ~4.4.0-beta.2 - "@jupyterlab/mainmenu-extension": ~4.4.0-beta.2 - "@jupyterlab/markdownviewer-extension": ~4.4.0-beta.2 - "@jupyterlab/markedparser-extension": ~4.4.0-beta.2 - "@jupyterlab/mathjax-extension": ~4.4.0-beta.2 - "@jupyterlab/mermaid-extension": ~4.4.0-beta.2 - "@jupyterlab/metadataform-extension": ~4.4.0-beta.2 - "@jupyterlab/notebook-extension": ~4.4.0-beta.2 - "@jupyterlab/pdf-extension": ~4.4.0-beta.2 - "@jupyterlab/pluginmanager-extension": ~4.4.0-beta.2 - "@jupyterlab/running-extension": ~4.4.0-beta.2 - "@jupyterlab/services-extension": ~4.4.0-beta.2 - "@jupyterlab/settingeditor": ~4.4.0-beta.2 - "@jupyterlab/settingeditor-extension": ~4.4.0-beta.2 - "@jupyterlab/shortcuts-extension": ~5.2.0-beta.2 - "@jupyterlab/terminal-extension": ~4.4.0-beta.2 - "@jupyterlab/theme-dark-extension": ~4.4.0-beta.2 - "@jupyterlab/theme-dark-high-contrast-extension": ~4.4.0-beta.2 - "@jupyterlab/theme-light-extension": ~4.4.0-beta.2 - "@jupyterlab/toc-extension": ~6.4.0-beta.2 - "@jupyterlab/tooltip-extension": ~4.4.0-beta.2 - "@jupyterlab/translation-extension": ~4.4.0-beta.2 - "@jupyterlab/ui-components-extension": ~4.4.0-beta.2 - "@jupyterlab/vega5-extension": ~4.4.0-beta.2 + "@jupyterlab/application-extension": ~4.4.0-rc.0 + "@jupyterlab/apputils-extension": ~4.4.0-rc.0 + "@jupyterlab/attachments": ~4.4.0-rc.0 + "@jupyterlab/builder": ~4.4.0-rc.0 + "@jupyterlab/buildutils": ~4.4.0-rc.0 + "@jupyterlab/cell-toolbar-extension": ~4.4.0-rc.0 + "@jupyterlab/celltags-extension": ~4.4.0-rc.0 + "@jupyterlab/codemirror": ~4.4.0-rc.0 + "@jupyterlab/codemirror-extension": ~4.4.0-rc.0 + "@jupyterlab/completer-extension": ~4.4.0-rc.0 + "@jupyterlab/console-extension": ~4.4.0-rc.0 + "@jupyterlab/coreutils": ~6.4.0-rc.0 + "@jupyterlab/csvviewer-extension": ~4.4.0-rc.0 + "@jupyterlab/debugger-extension": ~4.4.0-rc.0 + "@jupyterlab/docmanager-extension": ~4.4.0-rc.0 + "@jupyterlab/documentsearch-extension": ~4.4.0-rc.0 + "@jupyterlab/extensionmanager-extension": ~4.4.0-rc.0 + "@jupyterlab/filebrowser-extension": ~4.4.0-rc.0 + "@jupyterlab/fileeditor-extension": ~4.4.0-rc.0 + "@jupyterlab/help-extension": ~4.4.0-rc.0 + "@jupyterlab/htmlviewer-extension": ~4.4.0-rc.0 + "@jupyterlab/hub-extension": ~4.4.0-rc.0 + "@jupyterlab/imageviewer-extension": ~4.4.0-rc.0 + "@jupyterlab/javascript-extension": ~4.4.0-rc.0 + "@jupyterlab/json-extension": ~4.4.0-rc.0 + "@jupyterlab/lsp": ~4.4.0-rc.0 + "@jupyterlab/lsp-extension": ~4.4.0-rc.0 + "@jupyterlab/mainmenu-extension": ~4.4.0-rc.0 + "@jupyterlab/markdownviewer-extension": ~4.4.0-rc.0 + "@jupyterlab/markedparser-extension": ~4.4.0-rc.0 + "@jupyterlab/mathjax-extension": ~4.4.0-rc.0 + "@jupyterlab/mermaid-extension": ~4.4.0-rc.0 + "@jupyterlab/metadataform-extension": ~4.4.0-rc.0 + "@jupyterlab/notebook-extension": ~4.4.0-rc.0 + "@jupyterlab/pdf-extension": ~4.4.0-rc.0 + "@jupyterlab/pluginmanager-extension": ~4.4.0-rc.0 + "@jupyterlab/running-extension": ~4.4.0-rc.0 + "@jupyterlab/services-extension": ~4.4.0-rc.0 + "@jupyterlab/settingeditor": ~4.4.0-rc.0 + "@jupyterlab/settingeditor-extension": ~4.4.0-rc.0 + "@jupyterlab/shortcuts-extension": ~5.2.0-rc.0 + "@jupyterlab/terminal-extension": ~4.4.0-rc.0 + "@jupyterlab/theme-dark-extension": ~4.4.0-rc.0 + "@jupyterlab/theme-dark-high-contrast-extension": ~4.4.0-rc.0 + "@jupyterlab/theme-light-extension": ~4.4.0-rc.0 + "@jupyterlab/toc-extension": ~6.4.0-rc.0 + "@jupyterlab/tooltip-extension": ~4.4.0-rc.0 + "@jupyterlab/translation-extension": ~4.4.0-rc.0 + "@jupyterlab/ui-components-extension": ~4.4.0-rc.0 + "@jupyterlab/vega5-extension": ~4.4.0-rc.0 "@lumino/coreutils": ~2.2.0 "@types/rimraf": ^3.0.2 css-loader: ~5.0.1 @@ -2221,17 +2221,17 @@ __metadata: dependencies: "@jupyter-notebook/application": ^7.4.0-beta.2 "@jupyter-notebook/ui-components": ^7.4.0-beta.2 - "@jupyterlab/application": ~4.4.0-beta.2 - "@jupyterlab/apputils": ~4.5.0-beta.2 - "@jupyterlab/codeeditor": ~4.4.0-beta.2 - "@jupyterlab/console": ~4.4.0-beta.2 - "@jupyterlab/coreutils": ~6.4.0-beta.2 - "@jupyterlab/docmanager": ~4.4.0-beta.2 - "@jupyterlab/docregistry": ~4.4.0-beta.2 - "@jupyterlab/mainmenu": ~4.4.0-beta.2 - "@jupyterlab/rendermime": ~4.4.0-beta.2 - "@jupyterlab/settingregistry": ~4.4.0-beta.2 - "@jupyterlab/translation": ~4.4.0-beta.2 + "@jupyterlab/application": ~4.4.0-rc.0 + "@jupyterlab/apputils": ~4.5.0-rc.0 + "@jupyterlab/codeeditor": ~4.4.0-rc.0 + "@jupyterlab/console": ~4.4.0-rc.0 + "@jupyterlab/coreutils": ~6.4.0-rc.0 + "@jupyterlab/docmanager": ~4.4.0-rc.0 + "@jupyterlab/docregistry": ~4.4.0-rc.0 + "@jupyterlab/mainmenu": ~4.4.0-rc.0 + "@jupyterlab/rendermime": ~4.4.0-rc.0 + "@jupyterlab/settingregistry": ~4.4.0-rc.0 + "@jupyterlab/translation": ~4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/widgets": ^2.5.0 @@ -2246,12 +2246,12 @@ __metadata: dependencies: "@babel/core": ^7.11.6 "@babel/preset-env": ^7.12.1 - "@jupyterlab/application": ~4.4.0-beta.2 - "@jupyterlab/coreutils": ~6.4.0-beta.2 - "@jupyterlab/docregistry": ~4.4.0-beta.2 - "@jupyterlab/rendermime-interfaces": ~3.12.0-beta.2 + "@jupyterlab/application": ~4.4.0-rc.0 + "@jupyterlab/coreutils": ~6.4.0-rc.0 + "@jupyterlab/docregistry": ~4.4.0-rc.0 + "@jupyterlab/rendermime-interfaces": ~3.12.0-rc.0 "@jupyterlab/testutils": ~4.3.2 - "@jupyterlab/ui-components": ~4.4.0-beta.2 + "@jupyterlab/ui-components": ~4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 @@ -2270,7 +2270,7 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyter-notebook/buildutils@workspace:buildutils" dependencies: - "@jupyterlab/buildutils": ~4.4.0-beta.2 + "@jupyterlab/buildutils": ~4.4.0-rc.0 "@types/fs-extra": ^9.0.10 "@types/node": ^22.13.4 "@types/semver": ^7.5.8 @@ -2287,9 +2287,9 @@ __metadata: resolution: "@jupyter-notebook/console-extension@workspace:packages/console-extension" dependencies: "@jupyter-notebook/application": ^7.4.0-beta.2 - "@jupyterlab/application": ~4.4.0-beta.2 - "@jupyterlab/console": ~4.4.0-beta.2 - "@jupyterlab/coreutils": ~6.4.0-beta.2 + "@jupyterlab/application": ~4.4.0-rc.0 + "@jupyterlab/console": ~4.4.0-rc.0 + "@jupyterlab/coreutils": ~6.4.0-rc.0 "@lumino/algorithm": ^2.0.2 rimraf: ^3.0.2 typescript: ~5.5.4 @@ -2301,11 +2301,11 @@ __metadata: resolution: "@jupyter-notebook/docmanager-extension@workspace:packages/docmanager-extension" dependencies: "@jupyter-notebook/application": ^7.4.0-beta.2 - "@jupyterlab/application": ~4.4.0-beta.2 - "@jupyterlab/coreutils": ~6.4.0-beta.2 - "@jupyterlab/docmanager": ~4.4.0-beta.2 - "@jupyterlab/docregistry": ~4.4.0-beta.2 - "@jupyterlab/services": ~7.4.0-beta.2 + "@jupyterlab/application": ~4.4.0-rc.0 + "@jupyterlab/coreutils": ~6.4.0-rc.0 + "@jupyterlab/docmanager": ~4.4.0-rc.0 + "@jupyterlab/docregistry": ~4.4.0-rc.0 + "@jupyterlab/services": ~7.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/signaling": ^2.1.3 rimraf: ^3.0.2 @@ -2318,8 +2318,8 @@ __metadata: resolution: "@jupyter-notebook/documentsearch-extension@workspace:packages/documentsearch-extension" dependencies: "@jupyter-notebook/application": ^7.4.0-beta.2 - "@jupyterlab/application": ~4.4.0-beta.2 - "@jupyterlab/documentsearch": ~4.4.0-beta.2 + "@jupyterlab/application": ~4.4.0-rc.0 + "@jupyterlab/documentsearch": ~4.4.0-rc.0 "@lumino/widgets": ^2.5.0 rimraf: ^3.0.2 typescript: ~5.5.4 @@ -2331,10 +2331,10 @@ __metadata: resolution: "@jupyter-notebook/help-extension@workspace:packages/help-extension" dependencies: "@jupyter-notebook/ui-components": ^7.4.0-beta.2 - "@jupyterlab/application": ~4.4.0-beta.2 - "@jupyterlab/apputils": ~4.5.0-beta.2 - "@jupyterlab/mainmenu": ~4.4.0-beta.2 - "@jupyterlab/translation": ~4.4.0-beta.2 + "@jupyterlab/application": ~4.4.0-rc.0 + "@jupyterlab/apputils": ~4.5.0-rc.0 + "@jupyterlab/mainmenu": ~4.4.0-rc.0 + "@jupyterlab/translation": ~4.4.0-rc.0 react: ^18.2.0 react-dom: ^18.2.0 rimraf: ^3.0.2 @@ -2347,14 +2347,14 @@ __metadata: resolution: "@jupyter-notebook/lab-extension@workspace:packages/lab-extension" dependencies: "@jupyter-notebook/application": ^7.4.0-beta.2 - "@jupyterlab/application": ~4.4.0-beta.2 - "@jupyterlab/apputils": ~4.5.0-beta.2 - "@jupyterlab/builder": ~4.4.0-beta.2 - "@jupyterlab/coreutils": ~6.4.0-beta.2 - "@jupyterlab/docregistry": ~4.4.0-beta.2 - "@jupyterlab/notebook": ~4.4.0-beta.2 - "@jupyterlab/translation": ~4.4.0-beta.2 - "@jupyterlab/ui-components": ~4.4.0-beta.2 + "@jupyterlab/application": ~4.4.0-rc.0 + "@jupyterlab/apputils": ~4.5.0-rc.0 + "@jupyterlab/builder": ~4.4.0-rc.0 + "@jupyterlab/coreutils": ~6.4.0-rc.0 + "@jupyterlab/docregistry": ~4.4.0-rc.0 + "@jupyterlab/notebook": ~4.4.0-rc.0 + "@jupyterlab/translation": ~4.4.0-rc.0 + "@jupyterlab/ui-components": ~4.4.0-rc.0 "@lumino/commands": ^2.3.1 "@lumino/disposable": ^2.1.3 rimraf: ^3.0.2 @@ -2387,13 +2387,13 @@ __metadata: resolution: "@jupyter-notebook/notebook-extension@workspace:packages/notebook-extension" dependencies: "@jupyter-notebook/application": ^7.4.0-beta.2 - "@jupyterlab/application": ~4.4.0-beta.2 - "@jupyterlab/apputils": ~4.5.0-beta.2 - "@jupyterlab/cells": ~4.4.0-beta.2 - "@jupyterlab/docmanager": ~4.4.0-beta.2 - "@jupyterlab/notebook": ~4.4.0-beta.2 - "@jupyterlab/settingregistry": ~4.4.0-beta.2 - "@jupyterlab/translation": ~4.4.0-beta.2 + "@jupyterlab/application": ~4.4.0-rc.0 + "@jupyterlab/apputils": ~4.5.0-rc.0 + "@jupyterlab/cells": ~4.4.0-rc.0 + "@jupyterlab/docmanager": ~4.4.0-rc.0 + "@jupyterlab/notebook": ~4.4.0-rc.0 + "@jupyterlab/settingregistry": ~4.4.0-rc.0 + "@jupyterlab/translation": ~4.4.0-rc.0 "@lumino/polling": ^2.1.3 "@lumino/widgets": ^2.5.0 react: ^18.2.0 @@ -2407,7 +2407,7 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyter-notebook/root@workspace:." dependencies: - "@jupyterlab/buildutils": ~4.4.0-beta.2 + "@jupyterlab/buildutils": ~4.4.0-rc.0 "@typescript-eslint/eslint-plugin": ^5.55.0 "@typescript-eslint/parser": ^5.55.0 eslint: ^8.36.0 @@ -2429,9 +2429,9 @@ __metadata: resolution: "@jupyter-notebook/terminal-extension@workspace:packages/terminal-extension" dependencies: "@jupyter-notebook/application": ^7.4.0-beta.2 - "@jupyterlab/application": ~4.4.0-beta.2 - "@jupyterlab/coreutils": ~6.4.0-beta.2 - "@jupyterlab/terminal": ~4.4.0-beta.2 + "@jupyterlab/application": ~4.4.0-rc.0 + "@jupyterlab/coreutils": ~6.4.0-rc.0 + "@jupyterlab/terminal": ~4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 rimraf: ^3.0.2 typescript: ~5.5.4 @@ -2444,18 +2444,18 @@ __metadata: dependencies: "@jupyter-notebook/application": ^7.4.0-beta.2 "@jupyter-notebook/tree": ^7.4.0-beta.2 - "@jupyterlab/application": ~4.4.0-beta.2 - "@jupyterlab/apputils": ~4.5.0-beta.2 - "@jupyterlab/coreutils": ~6.4.0-beta.2 - "@jupyterlab/docmanager": ~4.4.0-beta.2 - "@jupyterlab/filebrowser": ~4.4.0-beta.2 - "@jupyterlab/mainmenu": ~4.4.0-beta.2 - "@jupyterlab/services": ~7.4.0-beta.2 - "@jupyterlab/settingeditor": ~4.4.0-beta.2 - "@jupyterlab/settingregistry": ~4.4.0-beta.2 - "@jupyterlab/statedb": ~4.4.0-beta.2 - "@jupyterlab/translation": ~4.4.0-beta.2 - "@jupyterlab/ui-components": ~4.4.0-beta.2 + "@jupyterlab/application": ~4.4.0-rc.0 + "@jupyterlab/apputils": ~4.5.0-rc.0 + "@jupyterlab/coreutils": ~6.4.0-rc.0 + "@jupyterlab/docmanager": ~4.4.0-rc.0 + "@jupyterlab/filebrowser": ~4.4.0-rc.0 + "@jupyterlab/mainmenu": ~4.4.0-rc.0 + "@jupyterlab/services": ~7.4.0-rc.0 + "@jupyterlab/settingeditor": ~4.4.0-rc.0 + "@jupyterlab/settingregistry": ~4.4.0-rc.0 + "@jupyterlab/statedb": ~4.4.0-rc.0 + "@jupyterlab/translation": ~4.4.0-rc.0 + "@jupyterlab/ui-components": ~4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/widgets": ^2.5.0 @@ -2469,17 +2469,17 @@ __metadata: resolution: "@jupyter-notebook/tree@workspace:packages/tree" dependencies: "@jupyter-notebook/application": ^7.4.0-beta.2 - "@jupyterlab/application": ~4.4.0-beta.2 - "@jupyterlab/apputils": ~4.5.0-beta.2 - "@jupyterlab/coreutils": ~6.4.0-beta.2 - "@jupyterlab/docmanager": ~4.4.0-beta.2 - "@jupyterlab/filebrowser": ~4.4.0-beta.2 - "@jupyterlab/mainmenu": ~4.4.0-beta.2 - "@jupyterlab/services": ~7.4.0-beta.2 - "@jupyterlab/settingregistry": ~4.4.0-beta.2 - "@jupyterlab/statedb": ~4.4.0-beta.2 - "@jupyterlab/translation": ~4.4.0-beta.2 - "@jupyterlab/ui-components": ~4.4.0-beta.2 + "@jupyterlab/application": ~4.4.0-rc.0 + "@jupyterlab/apputils": ~4.5.0-rc.0 + "@jupyterlab/coreutils": ~6.4.0-rc.0 + "@jupyterlab/docmanager": ~4.4.0-rc.0 + "@jupyterlab/filebrowser": ~4.4.0-rc.0 + "@jupyterlab/mainmenu": ~4.4.0-rc.0 + "@jupyterlab/services": ~7.4.0-rc.0 + "@jupyterlab/settingregistry": ~4.4.0-rc.0 + "@jupyterlab/statedb": ~4.4.0-rc.0 + "@jupyterlab/translation": ~4.4.0-rc.0 + "@jupyterlab/ui-components": ~4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -2496,7 +2496,7 @@ __metadata: "@babel/core": ^7.10.2 "@babel/preset-env": ^7.10.2 "@jupyterlab/testutils": ~4.3.2 - "@jupyterlab/ui-components": ~4.4.0-beta.2 + "@jupyterlab/ui-components": ~4.4.0-rc.0 "@types/jest": ^29.2.5 babel-loader: ^8.0.6 jest: ^29.3.1 @@ -2544,26 +2544,26 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/application-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/application-extension@npm:4.4.0-beta.2" +"@jupyterlab/application-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/application-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/property-inspector": ^4.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/statedb": ^4.4.0-beta.2 - "@jupyterlab/statusbar": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/property-inspector": ^4.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/statedb": ^4.4.0-rc.0 + "@jupyterlab/statusbar": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 2bef87ae31e96e4b14b244672457d74b371878e5d90c514ce0653ba2782dce23c728e7466e84d18bf71844d69aae9a45d483d25f9d128aa353538b78d85aca9b + checksum: d024959afae3d953ab2c09c60be391171dd1ac01102426a6583fde67ffad5da081a37fb2b4d2b21d538c15271e44e6eb1525c2e09be1168b94e2b60a1033ef31 languageName: node linkType: hard @@ -2595,20 +2595,20 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/application@npm:^4.4.0-beta.2, @jupyterlab/application@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/application@npm:4.4.0-beta.2" +"@jupyterlab/application@npm:^4.4.0-rc.0, @jupyterlab/application@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/application@npm:4.4.0-rc.0" dependencies: "@fortawesome/fontawesome-free": ^5.12.0 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/docregistry": ^4.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/statedb": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/docregistry": ^4.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/statedb": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/application": ^2.4.2 "@lumino/commands": ^2.3.1 @@ -2619,27 +2619,27 @@ __metadata: "@lumino/properties": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: 20042b03255bb1415d246ccdff839922c40e55d25dd687b5efec5f0be0d855932561692b15d54957c7be25007c5e248e07361f9ca303da8fc35728efcd19fc6e - languageName: node - linkType: hard - -"@jupyterlab/apputils-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/apputils-extension@npm:4.4.0-beta.2" - dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/docregistry": ^4.4.0-beta.2 - "@jupyterlab/mainmenu": ^4.4.0-beta.2 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/statedb": ^4.4.0-beta.2 - "@jupyterlab/statusbar": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 - "@jupyterlab/workspaces": ^4.4.0-beta.2 + checksum: b2f940de908502b6a6bd77ea5b47c3d928ac85bbca5db2a89544d2136fc607d2e51b2ab74c3ef36926ccda5f499707c98882d8230c9861980d9e70cbd2b2b51c + languageName: node + linkType: hard + +"@jupyterlab/apputils-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/apputils-extension@npm:4.4.0-rc.0" + dependencies: + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/docregistry": ^4.4.0-rc.0 + "@jupyterlab/mainmenu": ^4.4.0-rc.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/statedb": ^4.4.0-rc.0 + "@jupyterlab/statusbar": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 + "@jupyterlab/workspaces": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -2650,7 +2650,7 @@ __metadata: react: ^18.2.0 react-dom: ^18.2.0 react-toastify: ^9.0.8 - checksum: f64f987605bc4f574405d9400b4f635e14ec337affefeedd9900728ff22a30b9f58a53dcce04a271454c03ce1840032204d5483324433a88dbd77c9e8be01d09 + checksum: b53f67145e0cf385ab1708aaaf5ba7a44b0c8d701faa0cafb183962c42e06236a0729f47e3f94041099aab317510f4491bc2d44af2ba880477bf85285baa0ec2 languageName: node linkType: hard @@ -2683,19 +2683,19 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/apputils@npm:^4.5.0-beta.2, @jupyterlab/apputils@npm:~4.5.0-beta.2": - version: 4.5.0-beta.2 - resolution: "@jupyterlab/apputils@npm:4.5.0-beta.2" +"@jupyterlab/apputils@npm:^4.5.0-rc.0, @jupyterlab/apputils@npm:~4.5.0-rc.0": + version: 4.5.0-rc.0 + resolution: "@jupyterlab/apputils@npm:4.5.0-rc.0" dependencies: - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/observables": ^5.4.0-beta.2 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/statedb": ^4.4.0-beta.2 - "@jupyterlab/statusbar": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/observables": ^5.4.0-rc.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/statedb": ^4.4.0-rc.0 + "@jupyterlab/statusbar": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -2708,7 +2708,7 @@ __metadata: "@types/react": ^18.0.26 react: ^18.2.0 sanitize-html: ~2.12.1 - checksum: 330f541763ea58a0f4b1045b148740498e884f02aa92b8aa3f908e1b7e6fe26d5c68be3520c5c6b10180eed8a9d314de286b163881005daaa1b7c355bfe0b06b + checksum: 3693d10d995d16394d019ec66fc981bc3d6fd478cee359d926c16a8b67a228b336b62eb2c0bb66a6acc5b742047e725fa6aff67ad11631db585f77b31fd68952 languageName: node linkType: hard @@ -2726,23 +2726,23 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/attachments@npm:^4.4.0-beta.2, @jupyterlab/attachments@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/attachments@npm:4.4.0-beta.2" +"@jupyterlab/attachments@npm:^4.4.0-rc.0, @jupyterlab/attachments@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/attachments@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/nbformat": ^4.4.0-beta.2 - "@jupyterlab/observables": ^5.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 + "@jupyterlab/nbformat": ^4.4.0-rc.0 + "@jupyterlab/observables": ^5.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 "@lumino/disposable": ^2.1.3 "@lumino/signaling": ^2.1.3 - checksum: 62e9c30ea5dba15199a410a7e7e3abe24a1b867359246e216faacb40466101ed20726057ac6dd80461f411d568894b0002d2eda314d5309f758517bd7210d752 + checksum: 5b8b23559cc5ce6eac4c1fceefb6ddec5b0bd3b8726f92d6ab62390466adc9c03d9e7172be32b97431d06fbebca83f820792e9380fd20d7572a05b6baae61555 languageName: node linkType: hard -"@jupyterlab/builder@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/builder@npm:4.4.0-beta.2" +"@jupyterlab/builder@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/builder@npm:4.4.0-rc.0" dependencies: "@lumino/algorithm": ^2.0.2 "@lumino/application": ^2.4.2 @@ -2777,13 +2777,13 @@ __metadata: worker-loader: ^3.0.2 bin: build-labextension: lib/build-labextension.js - checksum: 253dea45bd643bffc3b46ae5398255c6a2a2e66e289363031a4e19937251bab29b20ef9776fa82ae27af3229b6cb7c2d539306e35df02e57c8a3e6cbdce84a77 + checksum: 5d84b0c84d181ec8017d97318ffac74b9dd797e04c8aef9c69eba7d2cac7ec8d3760e7a3723228d20369b816a064ed3d01f70d742a521f176a3ad740c5a96edf languageName: node linkType: hard -"@jupyterlab/buildutils@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/buildutils@npm:4.4.0-beta.2" +"@jupyterlab/buildutils@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/buildutils@npm:4.4.0-rc.0" dependencies: "@yarnpkg/core": ^4.0.3 "@yarnpkg/parsers": ^3.0.0 @@ -2810,40 +2810,40 @@ __metadata: update-dependency: lib/update-dependency.js update-dist-tag: lib/update-dist-tag.js update-staging-lock: lib/update-staging-lock.js - checksum: e825a26308d9a857ee710634bbbd25be4860ab18e9ac3981f2bd2a2e40c84507eeb5db0c1013836d186e8032f8cf8be0a692a73c197b0fd0d119f57784394139 + checksum: b1dd7c681f4c6b610e827f80b7c0787f7b1541a167eede390c4b665454c7cfb00e9d507b864ba4fcbc726685280d44da4c2e5c02b8817cb00e991737fe18704f languageName: node linkType: hard -"@jupyterlab/cell-toolbar-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/cell-toolbar-extension@npm:4.4.0-beta.2" +"@jupyterlab/cell-toolbar-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/cell-toolbar-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/cell-toolbar": ^4.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - checksum: ad4e9dadc08ff08ce5eafe459938ba69f0ba89b55b3409c36820d0a91b81768e77d317d24e9983b38ca171bd5a211e060308433b534fb8060f5bb677439a1860 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/cell-toolbar": ^4.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + checksum: 14c8cf1c793cce7c4be44ccfd801dd0aecdc97e771a56db4ee23397ea0e244778ca91c4fd19685bd6b00dc748796a6df091a80e4de28321e1cb3410706b35e5e languageName: node linkType: hard -"@jupyterlab/cell-toolbar@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/cell-toolbar@npm:4.4.0-beta.2" +"@jupyterlab/cell-toolbar@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/cell-toolbar@npm:4.4.0-rc.0" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/cells": ^4.4.0-beta.2 - "@jupyterlab/docregistry": ^4.4.0-beta.2 - "@jupyterlab/notebook": ^4.4.0-beta.2 - "@jupyterlab/observables": ^5.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/cells": ^4.4.0-rc.0 + "@jupyterlab/docregistry": ^4.4.0-rc.0 + "@jupyterlab/notebook": ^4.4.0-rc.0 + "@jupyterlab/observables": ^5.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/disposable": ^2.1.3 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: c2d30a35a733fa67aa8b1f7e8a45ee365906387de24deaab26a4f319d023641dcadab07b7110a3029e3a9a7aa9f3d0a652af2e2511ca3cb870d91e1113b0339f + checksum: 0a20e537781b05528ba78b26336cad05f7ad600e4d6c7cddd24a46e1821f59a666d7fb3efc40801562bae8fce3712cf9946118f16f652059936ae07763dc6247 languageName: node linkType: hard @@ -2883,28 +2883,28 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/cells@npm:^4.4.0-beta.2, @jupyterlab/cells@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/cells@npm:4.4.0-beta.2" +"@jupyterlab/cells@npm:^4.4.0-rc.0, @jupyterlab/cells@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/cells@npm:4.4.0-rc.0" dependencies: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/attachments": ^4.4.0-beta.2 - "@jupyterlab/codeeditor": ^4.4.0-beta.2 - "@jupyterlab/codemirror": ^4.4.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/documentsearch": ^4.4.0-beta.2 - "@jupyterlab/filebrowser": ^4.4.0-beta.2 - "@jupyterlab/nbformat": ^4.4.0-beta.2 - "@jupyterlab/observables": ^5.4.0-beta.2 - "@jupyterlab/outputarea": ^4.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/toc": ^6.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/attachments": ^4.4.0-rc.0 + "@jupyterlab/codeeditor": ^4.4.0-rc.0 + "@jupyterlab/codemirror": ^4.4.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/documentsearch": ^4.4.0-rc.0 + "@jupyterlab/filebrowser": ^4.4.0-rc.0 + "@jupyterlab/nbformat": ^4.4.0-rc.0 + "@jupyterlab/observables": ^5.4.0-rc.0 + "@jupyterlab/outputarea": ^4.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/toc": ^6.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/domutils": ^2.0.2 @@ -2915,22 +2915,22 @@ __metadata: "@lumino/virtualdom": ^2.0.2 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 2f70adfa7bbd56431eb60bb4360f643bb26ff3355ed43fe76f79308fa303fcc9475c650eef494bf5c04ce90f12e0f9ed512adca98205c5c1983fe504c8c2a137 + checksum: e7259eb4bd4c364f3008b989c4c91870977fe0e89e95246407021cb5efec53330223234c3dc0e3c05976e43dad4e8740d3f790b5ce984eb64fe324e3e6428f79 languageName: node linkType: hard -"@jupyterlab/celltags-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/celltags-extension@npm:4.4.0-beta.2" +"@jupyterlab/celltags-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/celltags-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/notebook": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/notebook": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: d8818a464971b2bc992efbf354a3254d9fa380c7731cee51fd8108dd8c3405dfd43f347d9d04fa8c6d01d30351cd929c20567e58268daf03c0861e69d0922ac0 + checksum: ea314573e76ae1df9ba6c8050420685e196e890060968c6db441217ddf9b64d0fd20d6a96dc0eb0cbaa430c038ffeda6af008ebdb7ddb68f06e0da51f555204b languageName: node linkType: hard @@ -2958,19 +2958,19 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/codeeditor@npm:^4.4.0-beta.2, @jupyterlab/codeeditor@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/codeeditor@npm:4.4.0-beta.2" +"@jupyterlab/codeeditor@npm:^4.4.0-rc.0, @jupyterlab/codeeditor@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/codeeditor@npm:4.4.0-rc.0" dependencies: "@codemirror/state": ^6.5.0 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/nbformat": ^4.4.0-beta.2 - "@jupyterlab/observables": ^5.4.0-beta.2 - "@jupyterlab/statusbar": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/nbformat": ^4.4.0-rc.0 + "@jupyterlab/observables": ^5.4.0-rc.0 + "@jupyterlab/statusbar": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/dragdrop": ^2.1.5 @@ -2978,13 +2978,13 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 3cb25ee4ea41d84172e172a5e8bb827c4bf6e98af62cad8e5c56f409321290c2305e455f8006a149bd14d544553d60b2c5ef1bc2d9770e7de7a8a30bddbd61fc + checksum: 703a663518fae5d0fa7ad98c157f4c1febcf7ca31f7c1b8cc548de75d5c0898b437df2f77d29b7c209e5888b0cecb2864a0844d19e9755eb22ee977e2a36c72a languageName: node linkType: hard -"@jupyterlab/codemirror-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/codemirror-extension@npm:4.4.0-beta.2" +"@jupyterlab/codemirror-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/codemirror-extension@npm:4.4.0-rc.0" dependencies: "@codemirror/commands": ^6.7.1 "@codemirror/lang-markdown": ^6.3.1 @@ -2993,19 +2993,19 @@ __metadata: "@codemirror/search": ^6.5.8 "@codemirror/view": ^6.35.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/codeeditor": ^4.4.0-beta.2 - "@jupyterlab/codemirror": ^4.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/statusbar": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/codeeditor": ^4.4.0-rc.0 + "@jupyterlab/codemirror": ^4.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/statusbar": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.6.0 "@rjsf/utils": ^5.13.4 "@rjsf/validator-ajv8": ^5.13.4 react: ^18.2.0 - checksum: 691df973c6d8c6b26166edd783a3fb96de216a0ffa86e18d402e99c21418827e95636b009170fe94b4afedbb5a082e453858dced7f5e54d53ea1338d7f5c5cfa + checksum: 6cf265ebf07adb66aa7fc1df546e20ec6a5ea49de637d73576eedd14ac68347b28cbc378eae997583c536ec0286f1e06e5ce0c6cba1603d627990229ad257e76 languageName: node linkType: hard @@ -3051,9 +3051,9 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/codemirror@npm:^4.4.0-beta.2, @jupyterlab/codemirror@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/codemirror@npm:4.4.0-beta.2" +"@jupyterlab/codemirror@npm:^4.4.0-rc.0, @jupyterlab/codemirror@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/codemirror@npm:4.4.0-rc.0" dependencies: "@codemirror/autocomplete": ^6.18.3 "@codemirror/commands": ^6.7.1 @@ -3076,11 +3076,11 @@ __metadata: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/codeeditor": ^4.4.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/documentsearch": ^4.4.0-beta.2 - "@jupyterlab/nbformat": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/codeeditor": ^4.4.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/documentsearch": ^4.4.0-rc.0 + "@jupyterlab/nbformat": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 "@lezer/common": ^1.2.1 "@lezer/generator": ^1.7.0 "@lezer/highlight": ^1.2.0 @@ -3089,45 +3089,45 @@ __metadata: "@lumino/disposable": ^2.1.3 "@lumino/signaling": ^2.1.3 yjs: ^13.5.40 - checksum: 0ce42460c6937cf39bc15a8c5b7f03a876b5f7d72aa6ae5dbf1ed964042199f427393c989702ff12eca48353a0912ad4581d8892269b1131052a75abf63c7bcb + checksum: 349059c4ec6faadbd1d32be152ea35e808c656f3f2c1d7e974db2e737d51b2e392da2eeb6c4f35ed56aed7169d03ae93049b0a57fc957e6da4b2aba74e155fdd languageName: node linkType: hard -"@jupyterlab/completer-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/completer-extension@npm:4.4.0-beta.2" +"@jupyterlab/completer-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/completer-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/codeeditor": ^4.4.0-beta.2 - "@jupyterlab/completer": ^4.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/codeeditor": ^4.4.0-rc.0 + "@jupyterlab/completer": ^4.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: cb19f909cefd5ed417c1fb30719c706e2d858f86cb97d8d2328a54e2f164a559376122aee06d982cc70a23489849e373b1c252a371803a48ce55c97f910a45bb + checksum: 558663af52d9821dc509a2fb5e46b2273e75edace1cb82c56aac312b765d953f7ddb8c1bfea24accc382b5cbefdf23e9c3917eaf957c30a8742e20814772b75d languageName: node linkType: hard -"@jupyterlab/completer@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/completer@npm:4.4.0-beta.2" +"@jupyterlab/completer@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/completer@npm:4.4.0-rc.0" dependencies: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/codeeditor": ^4.4.0-beta.2 - "@jupyterlab/codemirror": ^4.4.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/statedb": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/codeeditor": ^4.4.0-rc.0 + "@jupyterlab/codemirror": ^4.4.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/statedb": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -3135,57 +3135,57 @@ __metadata: "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: 0f0127f341ddb2ddc4bae86d885e764dfc87888f82868e5f829e441de237d93bdda68fb9f94558b3501c21543493bb5455f8e55ed6a8962fa2fbb00cd59fc3da - languageName: node - linkType: hard - -"@jupyterlab/console-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/console-extension@npm:4.4.0-beta.2" - dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/codeeditor": ^4.4.0-beta.2 - "@jupyterlab/completer": ^4.4.0-beta.2 - "@jupyterlab/console": ^4.4.0-beta.2 - "@jupyterlab/filebrowser": ^4.4.0-beta.2 - "@jupyterlab/launcher": ^4.4.0-beta.2 - "@jupyterlab/mainmenu": ^4.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + checksum: ddd145ee3962c3092a36783a8729a73886831c2e09bacf940c9df0db5d052cb47a313db93133d22507da2c95ec78864fb3d80bf946a44fdbfcc7873e8103cbe3 + languageName: node + linkType: hard + +"@jupyterlab/console-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/console-extension@npm:4.4.0-rc.0" + dependencies: + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/codeeditor": ^4.4.0-rc.0 + "@jupyterlab/completer": ^4.4.0-rc.0 + "@jupyterlab/console": ^4.4.0-rc.0 + "@jupyterlab/filebrowser": ^4.4.0-rc.0 + "@jupyterlab/launcher": ^4.4.0-rc.0 + "@jupyterlab/mainmenu": ^4.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/properties": ^2.0.2 "@lumino/widgets": ^2.6.0 - checksum: eb83edef7b4326b1f312b5442175101a1a4e28d1a778ece44829115cafa4a67b79d1c83733cf997cc919288899adb2c0e2befdad315f356dc30e5fe84db2b51e + checksum: 3f7526e0bc12fa35e68b6fb9f4171d5f64a42701e6c821400ce9835e1e8a4e7654b03faf451fb7fe27d0dcbb0bc355f51430e58429ad18931ec16e97ee92ec15 languageName: node linkType: hard -"@jupyterlab/console@npm:^4.4.0-beta.2, @jupyterlab/console@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/console@npm:4.4.0-beta.2" +"@jupyterlab/console@npm:^4.4.0-rc.0, @jupyterlab/console@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/console@npm:4.4.0-rc.0" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/cells": ^4.4.0-beta.2 - "@jupyterlab/codeeditor": ^4.4.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/nbformat": ^4.4.0-beta.2 - "@jupyterlab/observables": ^5.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/cells": ^4.4.0-rc.0 + "@jupyterlab/codeeditor": ^4.4.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/nbformat": ^4.4.0-rc.0 + "@jupyterlab/observables": ^5.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/dragdrop": ^2.1.5 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: d509f4bac4458c14596e86210dc8459f31a8c686a5c09d1d89f1335bbf43711e1fb0baa1679fc83184709f69e4d8a4d219d324a7796849cad63404bb722bf17b + checksum: 9b0a9e91a47fd787c78927d746bb6055c0c581ce569e866a8f87fdeceac9fe27c7935e14e70ac1ec8a09d1f48276b9ceb65a8771861082dc0e8b6d6aa3380828 languageName: node linkType: hard @@ -3203,9 +3203,9 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/coreutils@npm:^6.4.0-beta.2, @jupyterlab/coreutils@npm:~6.4.0-beta.2": - version: 6.4.0-beta.2 - resolution: "@jupyterlab/coreutils@npm:6.4.0-beta.2" +"@jupyterlab/coreutils@npm:^6.4.0-rc.0, @jupyterlab/coreutils@npm:~6.4.0-rc.0": + version: 6.4.0-rc.0 + resolution: "@jupyterlab/coreutils@npm:6.4.0-rc.0" dependencies: "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -3213,94 +3213,94 @@ __metadata: minimist: ~1.2.0 path-browserify: ^1.0.0 url-parse: ~1.5.4 - checksum: fb2ef02d4308e2159f93300a862781f4c146f866dcbb6c9379081fa35ec13d9972003ee8d7b7aab8f7b620abfb14f4974a6bd8554085d4e3541e8c9a7da6624c + checksum: dff140ce23ba87aa8c8d941e299e2489365055343eaa520ba06d406d94bdf4fd02b88af9cc782ff14c800bc25ed6bf6d7cdc96e084f42d326ff120973c898cde languageName: node linkType: hard -"@jupyterlab/csvviewer-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/csvviewer-extension@npm:4.4.0-beta.2" +"@jupyterlab/csvviewer-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/csvviewer-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/csvviewer": ^4.4.0-beta.2 - "@jupyterlab/docregistry": ^4.4.0-beta.2 - "@jupyterlab/documentsearch": ^4.4.0-beta.2 - "@jupyterlab/mainmenu": ^4.4.0-beta.2 - "@jupyterlab/observables": ^5.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/csvviewer": ^4.4.0-rc.0 + "@jupyterlab/docregistry": ^4.4.0-rc.0 + "@jupyterlab/documentsearch": ^4.4.0-rc.0 + "@jupyterlab/mainmenu": ^4.4.0-rc.0 + "@jupyterlab/observables": ^5.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 "@lumino/datagrid": ^2.5.0 "@lumino/widgets": ^2.6.0 - checksum: 9b1fc5e20ce1f8a8775391177bc0ac056367c82f4c14eb2980236cb140d2c13ea68ebfedf0fd65e8337b8e437501d328746103b77243817a2b7a787d2de94840 + checksum: d0dd1b68557564e7feaa75c682d3cb4b4ef62d8811e60675c9b158b96a8a71987def0589c3b2438b5652323ea1dfa7df1fab14ce8ed576d19cfa8222663db83b languageName: node linkType: hard -"@jupyterlab/csvviewer@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/csvviewer@npm:4.4.0-beta.2" +"@jupyterlab/csvviewer@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/csvviewer@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/docregistry": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/docregistry": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 "@lumino/datagrid": ^2.5.0 "@lumino/disposable": ^2.1.3 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: f1d338a2094726d4fddc7e169a629213505d96d56c2149dccb1e075c68455c08799ab1308bca599385554854f27a2a274da29afa970e75c2c783427771ce59f7 - languageName: node - linkType: hard - -"@jupyterlab/debugger-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/debugger-extension@npm:4.4.0-beta.2" - dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/cells": ^4.4.0-beta.2 - "@jupyterlab/codeeditor": ^4.4.0-beta.2 - "@jupyterlab/console": ^4.4.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/debugger": ^4.4.0-beta.2 - "@jupyterlab/docregistry": ^4.4.0-beta.2 - "@jupyterlab/fileeditor": ^4.4.0-beta.2 - "@jupyterlab/logconsole": ^4.4.0-beta.2 - "@jupyterlab/notebook": ^4.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 + checksum: e4b902a09869085fb9f48c27e2729b6027a2ddfe72a942330d4b2c6716458dd12ce4b0b6cb1db1d4c64cdd748ec63388e2ec4935300b6d6f4c75cc4d953c0ad6 + languageName: node + linkType: hard + +"@jupyterlab/debugger-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/debugger-extension@npm:4.4.0-rc.0" + dependencies: + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/cells": ^4.4.0-rc.0 + "@jupyterlab/codeeditor": ^4.4.0-rc.0 + "@jupyterlab/console": ^4.4.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/debugger": ^4.4.0-rc.0 + "@jupyterlab/docregistry": ^4.4.0-rc.0 + "@jupyterlab/fileeditor": ^4.4.0-rc.0 + "@jupyterlab/logconsole": ^4.4.0-rc.0 + "@jupyterlab/notebook": ^4.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 "@lumino/commands": ^2.3.1 - checksum: baabfffeed90d3fedca3e75268d6533df1443e938428ecb5f0511d5491bdebf4b0572616706ac404cc3312c9f32307ba5d9f69ee635856167cb4daaac25398e7 + checksum: bcff4c3ca3abd68a8eafb8f02eeb783c112a277e36e0f737796022c1572b6dc25ae4ab5c8285d407d258b721aee1d3c175e894634071e48ccb7bca625f23f9c7 languageName: node linkType: hard -"@jupyterlab/debugger@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/debugger@npm:4.4.0-beta.2" +"@jupyterlab/debugger@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/debugger@npm:4.4.0-rc.0" dependencies: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/react-components": ^0.16.6 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/cells": ^4.4.0-beta.2 - "@jupyterlab/codeeditor": ^4.4.0-beta.2 - "@jupyterlab/codemirror": ^4.4.0-beta.2 - "@jupyterlab/console": ^4.4.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/docregistry": ^4.4.0-beta.2 - "@jupyterlab/fileeditor": ^4.4.0-beta.2 - "@jupyterlab/notebook": ^4.4.0-beta.2 - "@jupyterlab/observables": ^5.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/cells": ^4.4.0-rc.0 + "@jupyterlab/codeeditor": ^4.4.0-rc.0 + "@jupyterlab/codemirror": ^4.4.0-rc.0 + "@jupyterlab/console": ^4.4.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/docregistry": ^4.4.0-rc.0 + "@jupyterlab/fileeditor": ^4.4.0-rc.0 + "@jupyterlab/notebook": ^4.4.0-rc.0 + "@jupyterlab/observables": ^5.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -3312,25 +3312,25 @@ __metadata: "@lumino/widgets": ^2.6.0 "@vscode/debugprotocol": ^1.51.0 react: ^18.2.0 - checksum: 08e96574fb541a20038fcaa57a5b95e59ab2f7f3805fdc950a76aaefbeaa02d4fd9fe7009562009896d9c629e5626d86baa5bc943a4b013fc759529b5acdfd93 + checksum: 8b80487e71fd75888da3add74169b33880147891d1d5f07fd4b738f729f0ee99a0787fbd7c24a2f0a3c7fe2bd6ee49d365feb3cc0a19531260f93afc6ed5957d languageName: node linkType: hard -"@jupyterlab/docmanager-extension@npm:^4.4.0-beta.2, @jupyterlab/docmanager-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/docmanager-extension@npm:4.4.0-beta.2" +"@jupyterlab/docmanager-extension@npm:^4.4.0-rc.0, @jupyterlab/docmanager-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/docmanager-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/docmanager": ^4.4.0-beta.2 - "@jupyterlab/docregistry": ^4.4.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/statedb": ^4.4.0-beta.2 - "@jupyterlab/statusbar": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/docmanager": ^4.4.0-rc.0 + "@jupyterlab/docregistry": ^4.4.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/statedb": ^4.4.0-rc.0 + "@jupyterlab/statusbar": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -3338,7 +3338,7 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 638edacee5d73682a5c3c91d44e7e300c11644324445fd83c99f4a36928668d2adf08b3e48227dbe7f64f4a272e34f32d2083fcbce194ca84ff19dca7ed81f02 + checksum: 1a85075d376c63e551fef12e27879f2ea7e3928939fe40f0f32b7d0a73f93f5f95662048532c88c04d32564a1f775e66d8179a6fe404fd299df0b2e88e7fcf4e languageName: node linkType: hard @@ -3367,18 +3367,18 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/docmanager@npm:^4.4.0-beta.2, @jupyterlab/docmanager@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/docmanager@npm:4.4.0-beta.2" +"@jupyterlab/docmanager@npm:^4.4.0-rc.0, @jupyterlab/docmanager@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/docmanager@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/docregistry": ^4.4.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/statedb": ^4.4.0-beta.2 - "@jupyterlab/statusbar": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/docregistry": ^4.4.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/statedb": ^4.4.0-rc.0 + "@jupyterlab/statusbar": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -3388,7 +3388,7 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 2854681c32d7c56d3f39ddaed62c2e86564666782d48cecc5ad6984892cdecbb35a9e795d20faed7e843930b14795548db7c890631c91570c7734c95e29dd903 + checksum: 88ac773b96db81759c915674cd03d9b436484540bac0198bd77aa9039a414abe1ea5aed9b6ada2109408a983b39d78eb11b681f7dde4290f6b732185f66f3456 languageName: node linkType: hard @@ -3418,20 +3418,20 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/docregistry@npm:^4.4.0-beta.2, @jupyterlab/docregistry@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/docregistry@npm:4.4.0-beta.2" +"@jupyterlab/docregistry@npm:^4.4.0-rc.0, @jupyterlab/docregistry@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/docregistry@npm:4.4.0-rc.0" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/codeeditor": ^4.4.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/observables": ^5.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/codeeditor": ^4.4.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/observables": ^5.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -3440,22 +3440,22 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 1638511375840016304b08cbe2d700e9d680676c359beae70fc3ebe3d375ac73b898185f4d1d607e0f358c2be3ac843c78b7f1ba458c23cc2f5134692fc1e8a1 + checksum: bdd65304c1b3132d9962a237f09d3d83915ec3236c256c7aad9ad51f258fe1e34be29cb1b2dc49256965d83c0c80cb6db2224e1e141e2bf62becb266dc88456c languageName: node linkType: hard -"@jupyterlab/documentsearch-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/documentsearch-extension@npm:4.4.0-beta.2" +"@jupyterlab/documentsearch-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/documentsearch-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/documentsearch": ^4.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/documentsearch": ^4.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 "@lumino/commands": ^2.3.1 "@lumino/widgets": ^2.6.0 - checksum: d3b213c81ffd7b294bf43bb6dfd6df4b0c63a2e121a61baf4d1f4f62ef5218a33d3c2f6f7af0e7d7739585dfbd3447e07ae643ffb24590d9b19f71c265468e0e + checksum: fccb594fd684b2e62f0a043e32e6ad1929bd7b75a5b8659132b3c05554d364c15c833b61a186766905cc0641bee1db0af2e6da6c2354797ef1beef8e299c9d6b languageName: node linkType: hard @@ -3478,13 +3478,13 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/documentsearch@npm:^4.4.0-beta.2, @jupyterlab/documentsearch@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/documentsearch@npm:4.4.0-beta.2" +"@jupyterlab/documentsearch@npm:^4.4.0-rc.0, @jupyterlab/documentsearch@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/documentsearch@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -3493,63 +3493,63 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 0ac5b4c2e068a0d40afd263ec763e29a5ee095b6359298a779aee50a7cea539d92fb9f623ef70a009535e15818028eac17a7e1c743a866f7918270da9c10bbea + checksum: 6f27b4e0955843e609ad9e96da289da195fe925b5080d52727df2e0e6d7d0801708d6f55abdd0c2dcb481adeb5e136310857724f5a1802048bb59bc84130a3a1 languageName: node linkType: hard -"@jupyterlab/extensionmanager-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/extensionmanager-extension@npm:4.4.0-beta.2" +"@jupyterlab/extensionmanager-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/extensionmanager-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/extensionmanager": ^4.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 - checksum: 9007218139813f4eaf397fa60eeb2b1ec5013481f0a617676e9caf79f9ec6a6bf8e754eb778d3141404da2f0bf8047c3bd6e92290bb2007ac0e233777e5e3e92 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/extensionmanager": ^4.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 + checksum: 5ada993b624878f3e9535e3ad1724cdc87e28ec7a3ca9a6a8154b253d7ccbe1f11d6adf36cd0267fe7d12ae9d6801527b5d5310d811e62a28cb15618620614ee languageName: node linkType: hard -"@jupyterlab/extensionmanager@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/extensionmanager@npm:4.4.0-beta.2" +"@jupyterlab/extensionmanager@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/extensionmanager@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/messaging": ^2.0.2 "@lumino/polling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 react-paginate: ^6.3.2 semver: ^7.5.2 - checksum: a469442aff8c21e8995d417c5c04125119e321a2d9ccc66e2ed7e82845ac92bdf21c29b31ce028e6a2318eeb22c1481bc07236ff62c593ee0e032ba6022781cf - languageName: node - linkType: hard - -"@jupyterlab/filebrowser-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/filebrowser-extension@npm:4.4.0-beta.2" - dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/docmanager": ^4.4.0-beta.2 - "@jupyterlab/docregistry": ^4.4.0-beta.2 - "@jupyterlab/filebrowser": ^4.4.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/statedb": ^4.4.0-beta.2 - "@jupyterlab/statusbar": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + checksum: da4b7b434b3ae608a1ef4c05307f2df3a51b4b5284dd8cd85e7f474e08e099d7a6845620444dbae78880c6810383a03e72e0b07d62daeaf13e25d60e4ce4a68e + languageName: node + linkType: hard + +"@jupyterlab/filebrowser-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/filebrowser-extension@npm:4.4.0-rc.0" + dependencies: + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/docmanager": ^4.4.0-rc.0 + "@jupyterlab/docregistry": ^4.4.0-rc.0 + "@jupyterlab/filebrowser": ^4.4.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/statedb": ^4.4.0-rc.0 + "@jupyterlab/statusbar": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/widgets": ^2.6.0 - checksum: 2011037ef680fb9763c7ffac1a90f2be7b7439ea68c0d5fb10dec21cb49eba6b2f28f3025adeb9737504cefa90166d1dfe57ea4aeaba2b7cff9615466bd1c99a + checksum: 97d4b75ecb89613b78fee7280aef550b7a04173a648c32f745603d10f7bb750fb03f8735bd347dff946f2df3091beed1a4b08d520b0ff81a78b27847ff929902 languageName: node linkType: hard @@ -3581,19 +3581,19 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/filebrowser@npm:^4.4.0-beta.2, @jupyterlab/filebrowser@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/filebrowser@npm:4.4.0-beta.2" +"@jupyterlab/filebrowser@npm:^4.4.0-rc.0, @jupyterlab/filebrowser@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/filebrowser@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/docmanager": ^4.4.0-beta.2 - "@jupyterlab/docregistry": ^4.4.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/statedb": ^4.4.0-beta.2 - "@jupyterlab/statusbar": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/docmanager": ^4.4.0-rc.0 + "@jupyterlab/docregistry": ^4.4.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/statedb": ^4.4.0-rc.0 + "@jupyterlab/statusbar": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -3605,201 +3605,201 @@ __metadata: "@lumino/virtualdom": ^2.0.2 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: e0f4c9977df3c3ceeebd495e7a18566dc09378902e662963e7aef9bcf6e759089faeb7971537cb7a2296e25da1b15d1247fa5baa090f8f10f9fd321a36a573f7 + checksum: f4bb40585c51810d402243256ccd608b1bd8698039642a1329f4c372497a5da82f7d64022be142b6e4a89706d87f24e51625ee6354e68055eba22ba3109fe9d9 languageName: node linkType: hard -"@jupyterlab/fileeditor-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/fileeditor-extension@npm:4.4.0-beta.2" +"@jupyterlab/fileeditor-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/fileeditor-extension@npm:4.4.0-rc.0" dependencies: "@codemirror/commands": ^6.7.1 "@codemirror/search": ^6.5.8 - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/codeeditor": ^4.4.0-beta.2 - "@jupyterlab/codemirror": ^4.4.0-beta.2 - "@jupyterlab/completer": ^4.4.0-beta.2 - "@jupyterlab/console": ^4.4.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/docregistry": ^4.4.0-beta.2 - "@jupyterlab/documentsearch": ^4.4.0-beta.2 - "@jupyterlab/filebrowser": ^4.4.0-beta.2 - "@jupyterlab/fileeditor": ^4.4.0-beta.2 - "@jupyterlab/launcher": ^4.4.0-beta.2 - "@jupyterlab/lsp": ^4.4.0-beta.2 - "@jupyterlab/mainmenu": ^4.4.0-beta.2 - "@jupyterlab/observables": ^5.4.0-beta.2 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/statusbar": ^4.4.0-beta.2 - "@jupyterlab/toc": ^6.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/codeeditor": ^4.4.0-rc.0 + "@jupyterlab/codemirror": ^4.4.0-rc.0 + "@jupyterlab/completer": ^4.4.0-rc.0 + "@jupyterlab/console": ^4.4.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/docregistry": ^4.4.0-rc.0 + "@jupyterlab/documentsearch": ^4.4.0-rc.0 + "@jupyterlab/filebrowser": ^4.4.0-rc.0 + "@jupyterlab/fileeditor": ^4.4.0-rc.0 + "@jupyterlab/launcher": ^4.4.0-rc.0 + "@jupyterlab/lsp": ^4.4.0-rc.0 + "@jupyterlab/mainmenu": ^4.4.0-rc.0 + "@jupyterlab/observables": ^5.4.0-rc.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/statusbar": ^4.4.0-rc.0 + "@jupyterlab/toc": ^6.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.6.0 - checksum: 70ea0f2b1d579f51b26fcd1f432b2d5a062ba652a38aa697f64e39347a92b072c2daabf089652735087473c974fc94ea385b3a498551cc375df8051a1cbf9c88 + checksum: 21706d5130cdf04f8ba9f3eaad1e041048be4586139cad622c348d01f7750d2cde8cf3f1604f9b7580d48be65a5dd710d106d8c1f9dfe13615334e89c0995149 languageName: node linkType: hard -"@jupyterlab/fileeditor@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/fileeditor@npm:4.4.0-beta.2" +"@jupyterlab/fileeditor@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/fileeditor@npm:4.4.0-rc.0" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/codeeditor": ^4.4.0-beta.2 - "@jupyterlab/codemirror": ^4.4.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/docregistry": ^4.4.0-beta.2 - "@jupyterlab/documentsearch": ^4.4.0-beta.2 - "@jupyterlab/lsp": ^4.4.0-beta.2 - "@jupyterlab/statusbar": ^4.4.0-beta.2 - "@jupyterlab/toc": ^6.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/codeeditor": ^4.4.0-rc.0 + "@jupyterlab/codemirror": ^4.4.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/docregistry": ^4.4.0-rc.0 + "@jupyterlab/documentsearch": ^4.4.0-rc.0 + "@jupyterlab/lsp": ^4.4.0-rc.0 + "@jupyterlab/statusbar": ^4.4.0-rc.0 + "@jupyterlab/toc": ^6.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/widgets": ^2.6.0 react: ^18.2.0 regexp-match-indices: ^1.0.2 - checksum: 921a42d927d6454f6d0673fd53b589e08b86d37502f6ca4c7a80965bd37636b316f4cbce73668b02e84c4f0ebdb4f9f5aba11e3e5e52a082bbfe19cbb32d2fc7 + checksum: 2301e0620bab6e33dcd09385f9213933afd9c9d6837532ed3b3d265e0c658604597592d823bbe517d037a55f1d333313c979c208842506b68a2bae91292fcc9e languageName: node linkType: hard -"@jupyterlab/help-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/help-extension@npm:4.4.0-beta.2" +"@jupyterlab/help-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/help-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/mainmenu": ^4.4.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/mainmenu": ^4.4.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 170e568acfe9d18a7a8ed83ae7043e04676859717de485f3d0b245930df0c17a87839c508a025d6853fb39fcc2227bdd64810174153fdbeafd0225b33d56593a + checksum: 11532b942f8d70f71ea4a61c73240cfb270b05555f98d96fa957868461778e15a2417c5f8ccb4af131ca19a3b40b70abd80cbecc00b4d260ad252ced4d0d909e languageName: node linkType: hard -"@jupyterlab/htmlviewer-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/htmlviewer-extension@npm:4.4.0-beta.2" +"@jupyterlab/htmlviewer-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/htmlviewer-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/docregistry": ^4.4.0-beta.2 - "@jupyterlab/htmlviewer": ^4.4.0-beta.2 - "@jupyterlab/observables": ^5.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 - checksum: 1110aa894adb7773bd72c32d01b20306e7831526dd52e917718153b83b9ca83a6d55027189670ebe02d35a0a9ba50687e27f42765bb6f3c33677e5a98340036c + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/docregistry": ^4.4.0-rc.0 + "@jupyterlab/htmlviewer": ^4.4.0-rc.0 + "@jupyterlab/observables": ^5.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 + checksum: 153e4d5323a9fff9cc190988bdb063ae79df46112d315081f2fc1d591698fb0e756ba494348c6351f78024abdbe22380eadcd33c92586956d3fd1570c2ceeefd languageName: node linkType: hard -"@jupyterlab/htmlviewer@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/htmlviewer@npm:4.4.0-beta.2" +"@jupyterlab/htmlviewer@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/htmlviewer@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/docregistry": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/docregistry": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 4c8afb8002aec942246e8ec405f74a383f1604034c43426a7ecfcfe920fb1a6176a51d23fc371b7cb46a929816d5ca04bae19c46f4ad4a141ae57954267c9a84 + checksum: 2dc88de9d82c70cfd5c3cc472f7700507f1f6b73ea449c7d8fe09c79bb3fda6cb4d4e26a12d7f7125113bb0836bf5770dba0720cb0c7ff7ec2300e693f49c711 languageName: node linkType: hard -"@jupyterlab/hub-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/hub-extension@npm:4.4.0-beta.2" +"@jupyterlab/hub-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/hub-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - checksum: c5c8463664678df4544bafad70622687cedb26db5fab7d48146ac0990d0dbf3910a90015357770c7983027cd9951ca705f0628758aab1b5b0a9bedc1ae761ac7 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + checksum: 3338451de909d7b5a4a0ff3e857b7070fb98fcbe300d5791fde1ff4bd2a752b87c0421381c47b3d44e98572e1fff548c743029b02dd5e3850478dd3a4e94f789 languageName: node linkType: hard -"@jupyterlab/imageviewer-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/imageviewer-extension@npm:4.4.0-beta.2" +"@jupyterlab/imageviewer-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/imageviewer-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/docregistry": ^4.4.0-beta.2 - "@jupyterlab/imageviewer": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - checksum: 4590721704d9be6126b03b052821183ee7101db04f39ea41ab7d1c50948e9dbb4754ba83c768715cdc08aa7d32de6aefdaa5e5b15a57bbb011d0e121e547c4f1 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/docregistry": ^4.4.0-rc.0 + "@jupyterlab/imageviewer": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + checksum: 40a83257af47cd4e93b6476758f2b6ac9213eedaf9a91584909bb82c9833c178eeb73eb5aa3f6415b719f80243991e596914cc860b6ee5e4bc6d76104f250629 languageName: node linkType: hard -"@jupyterlab/imageviewer@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/imageviewer@npm:4.4.0-beta.2" +"@jupyterlab/imageviewer@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/imageviewer@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/docregistry": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/docregistry": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/widgets": ^2.6.0 - checksum: 30c26f3b0c46b9c08676b0d8efbb700783ea0df4e25e44fd3aaf90404c7e5907565a2feb7ee05b5b7d4761cece9bcbd6ad85e46af2b7cbb597c3634eca5a85a2 + checksum: 0b9e662b8fc898719a6291b85d52b6d9a0d4bacc326a79f6f30f201a1d3d40646f666907b603e1c2db12a3dab1f8722b4a823443e2992fb63b290da50cb5d861 languageName: node linkType: hard -"@jupyterlab/inspector@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/inspector@npm:4.4.0-beta.2" +"@jupyterlab/inspector@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/inspector@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/codeeditor": ^4.4.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/statedb": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/codeeditor": ^4.4.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/statedb": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/polling": ^2.1.3 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: 0fcbcdb8363269fd2b704c7bfd966053e3d7f9d82330187190875543a17c19b8bbe393ba2d5bf9b80ac8951fcd27464e9dafe5064457a662afdb8cfa1122fc6d + checksum: 263bff82c9f8d5152e7c9f9c37d3c45221ad816595ced51a50e99e8ca24716ba59e8945d1e4aed98d61747a06a8c75913b923d117e57914290c9ac6baff551e5 languageName: node linkType: hard -"@jupyterlab/javascript-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/javascript-extension@npm:4.4.0-beta.2" +"@jupyterlab/javascript-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/javascript-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/rendermime": ^4.4.0-beta.2 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 - checksum: 7e7c99a7d1693a7aead29ebb2036ad65666a34fd048bb58a82b0b6d0b1432170261807a245ab6ed07a33fd27eaae149b2a21efd561cb8ef9518a7736cd30d3be + "@jupyterlab/rendermime": ^4.4.0-rc.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 + checksum: a84a7707645162ddd8d043e237652f69d190b0a3c87a0f95d0984fb77549fefb0b4323aeb419b7abcb3146272324db132e4f33ce7bd5ca74e13b65f6359274b4 languageName: node linkType: hard -"@jupyterlab/json-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/json-extension@npm:4.4.0-beta.2" +"@jupyterlab/json-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/json-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/codemirror": ^4.4.0-beta.2 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/codemirror": ^4.4.0-rc.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lezer/highlight": ^1.2.0 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 @@ -3809,17 +3809,17 @@ __metadata: react-highlight-words: ^0.20.0 react-json-tree: ^0.18.0 style-mod: ^4.0.0 - checksum: f5e242206e59cb7fcbae6a6f8bda1bca538c8d9a6905a9668a3bf3c04fc2d13549b82c5ff9ed163db69c31b9e9a63dd6d8de0308e28021aa42375ca3b458e539 + checksum: 98238c65f8917152d2ba6fd423de8623064ca370bb7d033ff27c826bb9efc8c95f2bc210a0260ffa78d9b50309ce69af4313307f6a667bf86772a0e03fdbcdd1 languageName: node linkType: hard -"@jupyterlab/launcher@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/launcher@npm:4.4.0-beta.2" +"@jupyterlab/launcher@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/launcher@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -3827,46 +3827,46 @@ __metadata: "@lumino/properties": ^2.0.2 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: f38bca2e9fe8c774f7b90666526b2a3bc07d2f31c7b247d5a66248c51c3ccd6b1d4bd8f21b2dc721c4803cbf486203095c8296d0270e737ae4ba3c50da6fe63d + checksum: 2e0d6da6a76d235def05a107509252a85672b1c250fbf457e4709133e3eefceb02bdc336b422d274392dc6032df3f9b049298c69463b99834991005dfed1cba8 languageName: node linkType: hard -"@jupyterlab/logconsole@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/logconsole@npm:4.4.0-beta.2" +"@jupyterlab/logconsole@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/logconsole@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/nbformat": ^4.4.0-beta.2 - "@jupyterlab/outputarea": ^4.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/nbformat": ^4.4.0-rc.0 + "@jupyterlab/outputarea": ^4.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: 60a30f58eaccdc5be8a90a123f750eae15bcbd058b94f5c56a74208d7426a8574891d1c207ebf3be73d0590c2342b01cc3e3e84c5bab5ec2752c0d25dbf00b2f + checksum: 6e5d9c0c521683cb49e252e5bcbb1c46ef58fd167a0b8917a3ed782ea9f0a1c03457443b5ca1ce81f9a53a3350a24a2b8d56abf364350e62cc26df263b1c6dcd languageName: node linkType: hard -"@jupyterlab/lsp-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/lsp-extension@npm:4.4.0-beta.2" +"@jupyterlab/lsp-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/lsp-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/lsp": ^4.4.0-beta.2 - "@jupyterlab/running": ^4.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/lsp": ^4.4.0-rc.0 + "@jupyterlab/running": ^4.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 "@lumino/polling": ^2.1.3 "@lumino/signaling": ^2.1.3 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: f809674e92faef8955c1dabf3c9cb50910f4c731fe84e27a0e09654f76aaef4dcf70ccedd07f42b0f1a67d848d3067c4d510589916ed3f384ab2c28eb331401c + checksum: 144029874d666761de6cbec5d78a3962004a18e1f9aea358bb613d2f5e614c9bdb3d7998f2720f225478ef0efeba5e564cc1c0acdeeb438ebc95a34dee139cb3 languageName: node linkType: hard @@ -3893,17 +3893,17 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/lsp@npm:^4.4.0-beta.2, @jupyterlab/lsp@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/lsp@npm:4.4.0-beta.2" +"@jupyterlab/lsp@npm:^4.4.0-rc.0, @jupyterlab/lsp@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/lsp@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/codeeditor": ^4.4.0-beta.2 - "@jupyterlab/codemirror": ^4.4.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/docregistry": ^4.4.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/codeeditor": ^4.4.0-rc.0 + "@jupyterlab/codemirror": ^4.4.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/docregistry": ^4.4.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/signaling": ^2.1.3 @@ -3912,164 +3912,164 @@ __metadata: vscode-jsonrpc: ^6.0.0 vscode-languageserver-protocol: ^3.17.0 vscode-ws-jsonrpc: ~1.0.2 - checksum: 4670e1f4779485f7618df36b42d9515ed21e9774c32b83387e55f46afc94c787f744cab689e4eeee4764e03c9fdb2cd5e967226dda23f2d1f0b283323763caed + checksum: e06267e976756be96021c7299ee738e4ef4c74ec6f5c76fa3caa6b6b36fe2296dc07b56deb0b6b8b02e27554e8ff129b72b9deecfbe3f4fae46931cbeb720c2b languageName: node linkType: hard -"@jupyterlab/mainmenu-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/mainmenu-extension@npm:4.4.0-beta.2" +"@jupyterlab/mainmenu-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/mainmenu-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/docmanager": ^4.4.0-beta.2 - "@jupyterlab/filebrowser": ^4.4.0-beta.2 - "@jupyterlab/mainmenu": ^4.4.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/docmanager": ^4.4.0-rc.0 + "@jupyterlab/filebrowser": ^4.4.0-rc.0 + "@jupyterlab/mainmenu": ^4.4.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/messaging": ^2.0.2 "@lumino/widgets": ^2.6.0 - checksum: 54fca2f578031bcf58829969397022ab91c0c88295c6d79fe730bf6de61842305bc22fe50ad89d68f0f6557139a04f2b4e86fa2c59ec161e9b0f5185f6e8f36e + checksum: d656e67c02e6601ce20fdbbc67d9b32544d08ae75ff007f80ac2cad65c29a644599e412ee4a1442940d578c026074c6edfc32cb803a184b979032e2ec64e0f16 languageName: node linkType: hard -"@jupyterlab/mainmenu@npm:^4.4.0-beta.2, @jupyterlab/mainmenu@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/mainmenu@npm:4.4.0-beta.2" +"@jupyterlab/mainmenu@npm:^4.4.0-rc.0, @jupyterlab/mainmenu@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/mainmenu@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.6.0 - checksum: e61745f627e809524b31696a793f55f1253fcc780c8aae2188b6b6e974ee597ba75d93400b8aa9062b1cabfd6c9e9a50d75075ddd45e14a11b51c723bcf16e03 + checksum: 1aee73b96ed563aa7aa90f56d749c22abd6f773b62a1cf03066ebc8587490776b6e0dd4a5abae86191dc8167429a50c77f38c35d5f37013195581e01c0724936 languageName: node linkType: hard -"@jupyterlab/markdownviewer-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/markdownviewer-extension@npm:4.4.0-beta.2" +"@jupyterlab/markdownviewer-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/markdownviewer-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/markdownviewer": ^4.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/toc": ^6.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - checksum: 97971741871d16d5739beccb4e001af342b26de90b635ab06f90f3f57f5171813b7cba4d6300dcde0bbb86b0ce72f1af7495fdd4f79cefd5a232c86f5661f506 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/markdownviewer": ^4.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/toc": ^6.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + checksum: 133e056870c553964311e72d4dc68d19d74d4373475d067687b9e9de2c8607b5af37c9f9425b563d5a4a75960f1ada6792119d303cfa3378609ee14aa95e78c5 languageName: node linkType: hard -"@jupyterlab/markdownviewer@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/markdownviewer@npm:4.4.0-beta.2" +"@jupyterlab/markdownviewer@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/markdownviewer@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/docregistry": ^4.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 - "@jupyterlab/toc": ^6.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/docregistry": ^4.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 + "@jupyterlab/toc": ^6.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: 777240cc411963ea2bc6813d9a4bdf887239ecd423e8eda1c1c52397618bb746bb71e918ebb3c25b8419452d65aa2e99e7e0c66590798e26762f2f947eca97a0 + checksum: 40c967b46b1e9e7e2b0e193d87e62611123fd44a7c8000f6e958f0fa9d501e4763de0e05a25b98b3440bdcc1274865f40194de42fcb2136b523b04e4dc7bf955 languageName: node linkType: hard -"@jupyterlab/markedparser-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/markedparser-extension@npm:4.4.0-beta.2" +"@jupyterlab/markedparser-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/markedparser-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/codemirror": ^4.4.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/mermaid": ^4.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/codemirror": ^4.4.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/mermaid": ^4.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 - marked: ^15.0.3 + marked: ^15.0.7 marked-gfm-heading-id: ^4.1.1 marked-mangle: ^1.1.10 - checksum: 1ca6e4454aec6f853bad6f70078f0f5c085c57dd6160f302cb7ebc03bf38e4f56f10fc5f43305c2a78895fe63fab589ebc6b36a962a96eff738e2e151efd271d + checksum: 265b7d27ec5a457cc346cbcea62d79602ae130147309532dce077f88dbe625c2d6e98ef771f809dd46be9ea4bcb17f165258b8e4d169574cafe6354e9c3d7829 languageName: node linkType: hard -"@jupyterlab/mathjax-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/mathjax-extension@npm:4.4.0-beta.2" +"@jupyterlab/mathjax-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/mathjax-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 mathjax-full: ^3.2.2 - checksum: d997aa992f8464ace0ca61eb5f317cbc026bbde20cd923fab40ba05560746661be89ab115dad04c06a757a649aa367930cf640e624e67745d5b9f1a3b0c0377a + checksum: ed7ae2e2ab93f3d0b1975e1a2e3c893b14c2def037b2a34eaf213d8b685525605ccc0929f44f25e7e0f5ccd886061b743d00c4f26430a5aaecbb8b1080915ac8 languageName: node linkType: hard -"@jupyterlab/mermaid-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/mermaid-extension@npm:4.4.0-beta.2" +"@jupyterlab/mermaid-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/mermaid-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/mermaid": ^4.4.0-beta.2 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - checksum: 737a32e9b4769f94ea62f4121b459523932de4d1df920357a52a0ec3e57773db6e790095723738414c70f5e1e33ffcb39cbd3c4b724c76deae68711c552f763e + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/mermaid": ^4.4.0-rc.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + checksum: d6bd3348d98c78d3794e7a425155206148d32e9c19762d49edabb522710fa8a4c8f9cef8a09720eff96a1e647947d94388f3521b84cbe5e8a8530665083cc377 languageName: node linkType: hard -"@jupyterlab/mermaid@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/mermaid@npm:4.4.0-beta.2" +"@jupyterlab/mermaid@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/mermaid@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.6.0 "@mermaid-js/layout-elk": ^0.1.7 - mermaid: ^11.4.1 - checksum: 713b2829107c6388ceb0a861655e15a5b30089cdca93b4c41edd9e6210bc71272e9dbf7f206cff3a57810b331724c0fbff0b57ecd11e85b2bd25c31e24aa5e8a + mermaid: ^11.6.0 + checksum: 8d19bb2bd09b46bd167af8773940df539460ee4be533fcd7c059a0154367871890e7f7381f7189e7201261126fa0d535b10d4ee9f10630cfde9179dd2d10ee6f languageName: node linkType: hard -"@jupyterlab/metadataform-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/metadataform-extension@npm:4.4.0-beta.2" +"@jupyterlab/metadataform-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/metadataform-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/metadataform": ^4.4.0-beta.2 - "@jupyterlab/notebook": ^4.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/metadataform": ^4.4.0-rc.0 + "@jupyterlab/notebook": ^4.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 - checksum: 96f7faad3e9600626bec390d41539f511c46b4f007f73e2aa4911e0411eda74081309af8f41b39c68c2f00aed44ca69470b4c1867774dd8a7f26d337b06231ff + checksum: ffd4a51dbbd09858113c3c796a9f9e157bc0ee3d44a81318a0b6eb91626a8eab22d891ae2541eeac0d7136bc7ceb42ec49bb086437c66184c9b90cd3002da745 languageName: node linkType: hard -"@jupyterlab/metadataform@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/metadataform@npm:4.4.0-beta.2" +"@jupyterlab/metadataform@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/metadataform@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/nbformat": ^4.4.0-beta.2 - "@jupyterlab/notebook": ^4.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/nbformat": ^4.4.0-rc.0 + "@jupyterlab/notebook": ^4.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/widgets": ^2.6.0 @@ -4077,7 +4077,7 @@ __metadata: "@rjsf/validator-ajv8": ^5.13.4 json-schema: ^0.4.0 react: ^18.2.0 - checksum: 02541991948fddb23835e42289f2bc0c54433f07c4b100da82203afa9802e156685ea976ed38f92828a759d7e78f74de6a3a0eea37ee4a25d08d01ce6c3f32d5 + checksum: a1333bc8ce4c309b29ccd515cd6cb6a09e4ceb38997f7741325a10526fd697b5a1192b14d208c112bdeb406b7a8e2b636ae757c2d82fd50df17b488ea279adb1 languageName: node linkType: hard @@ -4090,49 +4090,49 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/nbformat@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/nbformat@npm:4.4.0-beta.2" +"@jupyterlab/nbformat@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/nbformat@npm:4.4.0-rc.0" dependencies: "@lumino/coreutils": ^2.2.0 - checksum: b45e4d87bacb742968596736edaa099337303c840a727545e068a2a8a43e642c22e13c68caea2abc20c93dec1eb931ad7a6ce497e9c9689fcd08ecdc7eddf788 + checksum: 96c59e11087d3ab5abd4872e78dea9035c493669591de18f37600aabb61d5c9c325ea9b12596cd2db471c886a337be76f94a2a59ce48b71769c0e6ece5ea5fe5 languageName: node linkType: hard -"@jupyterlab/notebook-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/notebook-extension@npm:4.4.0-beta.2" +"@jupyterlab/notebook-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/notebook-extension@npm:4.4.0-rc.0" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/cells": ^4.4.0-beta.2 - "@jupyterlab/codeeditor": ^4.4.0-beta.2 - "@jupyterlab/codemirror": ^4.4.0-beta.2 - "@jupyterlab/completer": ^4.4.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/docmanager": ^4.4.0-beta.2 - "@jupyterlab/docmanager-extension": ^4.4.0-beta.2 - "@jupyterlab/docregistry": ^4.4.0-beta.2 - "@jupyterlab/documentsearch": ^4.4.0-beta.2 - "@jupyterlab/filebrowser": ^4.4.0-beta.2 - "@jupyterlab/launcher": ^4.4.0-beta.2 - "@jupyterlab/logconsole": ^4.4.0-beta.2 - "@jupyterlab/lsp": ^4.4.0-beta.2 - "@jupyterlab/mainmenu": ^4.4.0-beta.2 - "@jupyterlab/metadataform": ^4.4.0-beta.2 - "@jupyterlab/nbformat": ^4.4.0-beta.2 - "@jupyterlab/notebook": ^4.4.0-beta.2 - "@jupyterlab/observables": ^5.4.0-beta.2 - "@jupyterlab/property-inspector": ^4.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/statedb": ^4.4.0-beta.2 - "@jupyterlab/statusbar": ^4.4.0-beta.2 - "@jupyterlab/toc": ^6.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/cells": ^4.4.0-rc.0 + "@jupyterlab/codeeditor": ^4.4.0-rc.0 + "@jupyterlab/codemirror": ^4.4.0-rc.0 + "@jupyterlab/completer": ^4.4.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/docmanager": ^4.4.0-rc.0 + "@jupyterlab/docmanager-extension": ^4.4.0-rc.0 + "@jupyterlab/docregistry": ^4.4.0-rc.0 + "@jupyterlab/documentsearch": ^4.4.0-rc.0 + "@jupyterlab/filebrowser": ^4.4.0-rc.0 + "@jupyterlab/launcher": ^4.4.0-rc.0 + "@jupyterlab/logconsole": ^4.4.0-rc.0 + "@jupyterlab/lsp": ^4.4.0-rc.0 + "@jupyterlab/mainmenu": ^4.4.0-rc.0 + "@jupyterlab/metadataform": ^4.4.0-rc.0 + "@jupyterlab/nbformat": ^4.4.0-rc.0 + "@jupyterlab/notebook": ^4.4.0-rc.0 + "@jupyterlab/observables": ^5.4.0-rc.0 + "@jupyterlab/property-inspector": ^4.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/statedb": ^4.4.0-rc.0 + "@jupyterlab/statusbar": ^4.4.0-rc.0 + "@jupyterlab/toc": ^6.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -4142,7 +4142,7 @@ __metadata: "@lumino/widgets": ^2.6.0 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: c24a4eb703883c55442a413934a5fa3a4d1a3ecca4a1bef5798ed0df063c4de5df79e0ba3d9fc9064f883d43220191e381072323864c8a19579a0c57f9d0bf9c + checksum: b7b68ca5f4888cb67c7504647c0fd1891954f49ba1b63ccdeb056c5bb9af46f3a8283d8f84ab1c4fc2690ec80758e7bab93988cfc258bd3f22a439c6dd894f40 languageName: node linkType: hard @@ -4184,28 +4184,28 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/notebook@npm:^4.4.0-beta.2, @jupyterlab/notebook@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/notebook@npm:4.4.0-beta.2" +"@jupyterlab/notebook@npm:^4.4.0-rc.0, @jupyterlab/notebook@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/notebook@npm:4.4.0-rc.0" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/cells": ^4.4.0-beta.2 - "@jupyterlab/codeeditor": ^4.4.0-beta.2 - "@jupyterlab/codemirror": ^4.4.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/docregistry": ^4.4.0-beta.2 - "@jupyterlab/documentsearch": ^4.4.0-beta.2 - "@jupyterlab/lsp": ^4.4.0-beta.2 - "@jupyterlab/nbformat": ^4.4.0-beta.2 - "@jupyterlab/observables": ^5.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/statusbar": ^4.4.0-beta.2 - "@jupyterlab/toc": ^6.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/cells": ^4.4.0-rc.0 + "@jupyterlab/codeeditor": ^4.4.0-rc.0 + "@jupyterlab/codemirror": ^4.4.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/docregistry": ^4.4.0-rc.0 + "@jupyterlab/documentsearch": ^4.4.0-rc.0 + "@jupyterlab/lsp": ^4.4.0-rc.0 + "@jupyterlab/nbformat": ^4.4.0-rc.0 + "@jupyterlab/observables": ^5.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/statusbar": ^4.4.0-rc.0 + "@jupyterlab/toc": ^6.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -4218,7 +4218,7 @@ __metadata: "@lumino/virtualdom": ^2.0.2 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: e2beaf97c37006f4f166b7acb7a230d493d524f8d6f4ecf8c9dd0262106041cd2af07a26a100c33bae63f1a656a7dd30e1fd334d463207c0bb9e1762f1daa204 + checksum: ff5e45e3bdd4f39462f6b3a45073d9eb54ddf0983c3438cd1e1d227613bb46ea31c942cd84d205231998e83acebf3986e9bb1c67ac200644fe1273033ec78b25 languageName: node linkType: hard @@ -4235,16 +4235,16 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/observables@npm:^5.4.0-beta.2": - version: 5.4.0-beta.2 - resolution: "@jupyterlab/observables@npm:5.4.0-beta.2" +"@jupyterlab/observables@npm:^5.4.0-rc.0": + version: 5.4.0-rc.0 + resolution: "@jupyterlab/observables@npm:5.4.0-rc.0" dependencies: "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 - checksum: 4f05a240b612329d6dc99a77ead91e94ef7124ab84d38ccd52aa54116e96c49d6ed40fb6ca04158681bcdc2be333168624ef64fd06f9f6e163cd16849846e1bd + checksum: d73e214177eed6592fb902a2f7c18d034496c57024e118abce97f20e6f573a26e05eb80634b7b388671752946ffca8a6292b5261868cc9a0f35fad2c946fa06a languageName: node linkType: hard @@ -4270,17 +4270,17 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/outputarea@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/outputarea@npm:4.4.0-beta.2" +"@jupyterlab/outputarea@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/outputarea@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/nbformat": ^4.4.0-beta.2 - "@jupyterlab/observables": ^5.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/nbformat": ^4.4.0-rc.0 + "@jupyterlab/observables": ^5.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -4288,67 +4288,67 @@ __metadata: "@lumino/properties": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: 375ce7852acd4ed97a9ebe83ab534effdd9a89ca24ba871d8074e8b0320f0cdd4796511072ff641ccc934d491d476edd4258af3615af64fc0d3e9445e397b0dc + checksum: 0c65c5c9c6710def00a20c082c4cece884bdc07b2ac4060e01d6834f4171eeccb8191b2ed3f6a04a444b8c49b03f8501f8885d886d9348035a03e19aee11c738 languageName: node linkType: hard -"@jupyterlab/pdf-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/pdf-extension@npm:4.4.0-beta.2" +"@jupyterlab/pdf-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/pdf-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/widgets": ^2.6.0 - checksum: b9a05eb234079a89675000e61401bbb99f6dbd4e0c9914610b31320962df10f851bdac7b1473c8f6ca8aad7b20eb62219f4d898d7ae991012432bab6e602b72d + checksum: 7ffba699e01e21858a2572e29bf23dc6417caa60a52ec191be209edc4f944ba152403285e70af1268dd73a54fc4c6aa0f4e811b5dc9e637430fa1b003b59b4eb languageName: node linkType: hard -"@jupyterlab/pluginmanager-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/pluginmanager-extension@npm:4.4.0-beta.2" +"@jupyterlab/pluginmanager-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/pluginmanager-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/pluginmanager": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/pluginmanager": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 - checksum: f00408b9d32fd550efb0c767cc1e2e35c066baf38b6244fc98df4aea08574b2696760b1af62cf05a056d777422a6166b6ac3485cf69fdf8901ae9add305b8dcf + checksum: f80e71267d4d60acdcc464438308db48ddd2ce7de03babbcdea18172873b8ca0c2f9e7e36ecb298352c1c235c89c876aacdaf9d2a720d33ab401a94cbf0b97ff languageName: node linkType: hard -"@jupyterlab/pluginmanager@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/pluginmanager@npm:4.4.0-beta.2" +"@jupyterlab/pluginmanager@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/pluginmanager@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 7635e9cc768345bb2126e0e522397868f82d39275725871b45383f7dba66e0ab3c09595da549d46d19626b0862eb5100734fc759005dc56ddd464cec3dd3c8be + checksum: 16a0886c2965d11d1a341052e376a43d53df13debd1d679c2c802b4eec5548ed8077fe021e63ac61129ebcf79d03e7d195de16ece9405f1bb387d88469d91c0e languageName: node linkType: hard -"@jupyterlab/property-inspector@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/property-inspector@npm:4.4.0-beta.2" +"@jupyterlab/property-inspector@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/property-inspector@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 82f83c6e36ef0c0dfeef09ae9ad394e58e04f42aeff3cb5b1e39f2b4d9ddd56f4c8a69fec90524e34741cdb4ca43ffc20b22f79bd18cbf2b62cbe8b2d6e7c3b4 + checksum: d7748820af2ddee2fe452c5be41d5196bbbfd27d0dde145aeec3aa15296feacba2bbe285711d3f3dc083cd72c3e0b361407d0b3846cab50e47424a0d910d1971 languageName: node linkType: hard @@ -4362,13 +4362,13 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/rendermime-interfaces@npm:^3.12.0-beta.2, @jupyterlab/rendermime-interfaces@npm:~3.12.0-beta.2": - version: 3.12.0-beta.2 - resolution: "@jupyterlab/rendermime-interfaces@npm:3.12.0-beta.2" +"@jupyterlab/rendermime-interfaces@npm:^3.12.0-rc.0, @jupyterlab/rendermime-interfaces@npm:~3.12.0-rc.0": + version: 3.12.0-rc.0 + resolution: "@jupyterlab/rendermime-interfaces@npm:3.12.0-rc.0" dependencies: "@lumino/coreutils": ^1.11.0 || ^2.2.0 "@lumino/widgets": ^1.37.2 || ^2.6.0 - checksum: 85fadd071970a324445db5b5d350e17414d8d9b228cfd93bac39654737ff82bbf6a0b65c279c367c7d901c6019c480b2b31d6b91fcedb64396c6487be5d40add + checksum: de24036ade599e91b35f21579c051070c107bb177d0d22acd27c5e7cfed7b820bf1d7897bc786bf8b5cb562439a370db92b7c461377db5b08dc1123eba69ea92 languageName: node linkType: hard @@ -4392,59 +4392,59 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/rendermime@npm:^4.4.0-beta.2, @jupyterlab/rendermime@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/rendermime@npm:4.4.0-beta.2" +"@jupyterlab/rendermime@npm:^4.4.0-rc.0, @jupyterlab/rendermime@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/rendermime@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/nbformat": ^4.4.0-beta.2 - "@jupyterlab/observables": ^5.4.0-beta.2 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/nbformat": ^4.4.0-rc.0 + "@jupyterlab/observables": ^5.4.0-rc.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 lodash.escape: ^4.0.1 - checksum: 761d3ed8bca2fe606198aa735feaaf18e3081ae81b53f10cb3cc12edb2c360cee28c5cb864cba3aa06ba303b9cd36b90672986c1cac3fb7ad53a3240a9b08f0e + checksum: a863e53a9ff4d65eee7a01aa095e7e38affb71be044a86fed03e5c2c1ef278f0f5e7dfaf4fd9d8c3d72dd7eaa4453d5a1446f933dbd12a1c307d485ee92c77db languageName: node linkType: hard -"@jupyterlab/running-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/running-extension@npm:4.4.0-beta.2" +"@jupyterlab/running-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/running-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/docmanager": ^4.4.0-beta.2 - "@jupyterlab/docregistry": ^4.4.0-beta.2 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 - "@jupyterlab/running": ^4.4.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/statedb": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/docmanager": ^4.4.0-rc.0 + "@jupyterlab/docregistry": ^4.4.0-rc.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 + "@jupyterlab/running": ^4.4.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/statedb": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/commands": ^2.3.1 "@lumino/polling": ^2.1.3 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 319b638e48440fed24b180c301590b07e4523f2678d8a1ba64d5e23f7d18966d98a22286c367d76f0bcfeda5385df0a33a1cf0e232ee7b02e9df6329132f48d2 + checksum: 16b4379bd8d180d49579fd91fa7a5ae64f461d72a3c78c40fcc5df6af6c05698c8ea3ee0a95001d8a766fb804cb8bd09802df2085bc70dbacd2300297069b031 languageName: node linkType: hard -"@jupyterlab/running@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/running@npm:4.4.0-beta.2" +"@jupyterlab/running@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/running@npm:4.4.0-rc.0" dependencies: "@jupyter/react-components": ^0.16.6 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/statedb": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/statedb": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/domutils": ^2.0.2 @@ -4452,17 +4452,17 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: b0c4fb2a83c7ce3f323b60773fcecb5302f3d73cf3e47396a1e72db254dd6f7fd03c973fb1ae03c9c055300090c50a7d2efbb02e2cc7ba1dc40325c0ca29711a + checksum: f8e40ef9737977175caab9f8a553c81dda6f7c551cbf970c41c26a023f00dfa8344d4b73c99c5864cb085bf25b37c8ef30eca15d8bdd4887f0d49ae3b5258a09 languageName: node linkType: hard -"@jupyterlab/services-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/services-extension@npm:4.4.0-beta.2" +"@jupyterlab/services-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/services-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-rc.0 "@lumino/coreutils": ^2.2.0 - checksum: bdc141b91af525ec33cfa6f767a93e3cd6c0663afc65314e262779501a66e4cbba56a523e168916d5aab39daa6c92b406e773a68a91f9c451d4aedc954172084 + checksum: 151de81c573ca9fae25ebc6a7ae34df0dd19853137d4596439a4d602aafbb229a4aa6575f48276da9e55cdb937e4b3c705c9b3a92c97808c3c59323185d6b1ee languageName: node linkType: hard @@ -4485,58 +4485,58 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/services@npm:^7.4.0-beta.2, @jupyterlab/services@npm:~7.4.0-beta.2": - version: 7.4.0-beta.2 - resolution: "@jupyterlab/services@npm:7.4.0-beta.2" +"@jupyterlab/services@npm:^7.4.0-rc.0, @jupyterlab/services@npm:~7.4.0-rc.0": + version: 7.4.0-rc.0 + resolution: "@jupyterlab/services@npm:7.4.0-rc.0" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/nbformat": ^4.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/statedb": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/nbformat": ^4.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/statedb": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/polling": ^2.1.3 "@lumino/properties": ^2.0.2 "@lumino/signaling": ^2.1.3 ws: ^8.11.0 - checksum: 88f3f4d2f9ff9e305a357b10152d280b45e3592beb7188ecab2430b0248da3b4ed4f20d98431c42ea5df21e6f0652e66095fd52bf0f0e014922f4572d5d9d11b + checksum: 9e6667c05f456d9f561b58913143a2b54e1bafedba35a9d67aa5930283c6d40092191262422291e205b0fb540ec2306acbf877aee5ac784c6de2a4108b8f47dc languageName: node linkType: hard -"@jupyterlab/settingeditor-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/settingeditor-extension@npm:4.4.0-beta.2" +"@jupyterlab/settingeditor-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/settingeditor-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/codeeditor": ^4.4.0-beta.2 - "@jupyterlab/pluginmanager": ^4.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 - "@jupyterlab/settingeditor": ^4.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/statedb": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/codeeditor": ^4.4.0-rc.0 + "@jupyterlab/pluginmanager": ^4.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 + "@jupyterlab/settingeditor": ^4.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/statedb": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/disposable": ^2.1.3 react: ^18.2.0 - checksum: 1fdbad32647f28b594b50d9be208e0a9e2e5f5647ddcd28e7be6e9c82faa644188559b5fe4d878064a13f3b933de916454d24ad9d91d7b00feb67c66d0cc8ef5 + checksum: 9e39db2465dcc41390ae93880c3572df94cb04c42b77eeb2c4b240898c141fe6820f6b6e6ec3451b9508c1c1dbc8b6cf70735e585b86d00c99e9cca1c693ba5c languageName: node linkType: hard -"@jupyterlab/settingeditor@npm:^4.4.0-beta.2, @jupyterlab/settingeditor@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/settingeditor@npm:4.4.0-beta.2" +"@jupyterlab/settingeditor@npm:^4.4.0-rc.0, @jupyterlab/settingeditor@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/settingeditor@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/codeeditor": ^4.4.0-beta.2 - "@jupyterlab/inspector": ^4.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/statedb": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/codeeditor": ^4.4.0-rc.0 + "@jupyterlab/inspector": ^4.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/statedb": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -4550,7 +4550,7 @@ __metadata: "@rjsf/validator-ajv8": ^5.13.4 json-schema: ^0.4.0 react: ^18.2.0 - checksum: ca8955a1e6d3af1c9fe0a199ef1808881303f9e4fcf42505d856ab1dd01abdd37eb170a464baa25dba46d624d4b0ad6f30fe0a57c87c0cd4a7ce2e6910f644d1 + checksum: b814b48545497c60d5c0c4ce3512207a6ac80beb2e72cb6452e03bb48f97c5efc02a88e423c536bb3b110f372c0e1f17740c47a2f185f37410757ba764de6b78 languageName: node linkType: hard @@ -4573,12 +4573,12 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/settingregistry@npm:^4.4.0-beta.2, @jupyterlab/settingregistry@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/settingregistry@npm:4.4.0-beta.2" +"@jupyterlab/settingregistry@npm:^4.4.0-rc.0, @jupyterlab/settingregistry@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/settingregistry@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/nbformat": ^4.4.0-beta.2 - "@jupyterlab/statedb": ^4.4.0-beta.2 + "@jupyterlab/nbformat": ^4.4.0-rc.0 + "@jupyterlab/statedb": ^4.4.0-rc.0 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -4588,18 +4588,18 @@ __metadata: json5: ^2.2.3 peerDependencies: react: ">=16" - checksum: 0910683251322d1b90722815fc0c79c7f0004a472dafaff39515f8a7ee95149e1bb3ebd728425e21005fa9f1aadb6e0df2a5f53706462d5bb4ef94978b0d5858 + checksum: bfaefd25d82dd6677a24c93a110c8d922c063af6c37bdee704be6e1b8b006c73c9b3eaf0f06c72b39297c066ad3d0e087dc06d6b61506fcac295146f7993b710 languageName: node linkType: hard -"@jupyterlab/shortcuts-extension@npm:~5.2.0-beta.2": - version: 5.2.0-beta.2 - resolution: "@jupyterlab/shortcuts-extension@npm:5.2.0-beta.2" +"@jupyterlab/shortcuts-extension@npm:~5.2.0-rc.0": + version: 5.2.0-rc.0 + resolution: "@jupyterlab/shortcuts-extension@npm:5.2.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -4608,7 +4608,7 @@ __metadata: "@lumino/keyboard": ^2.0.2 "@lumino/signaling": ^2.1.3 react: ^18.2.0 - checksum: a94a48a7f72906bdc8050fec139b7237d79f8120af2547c8d5202f26d6f0ea1077cf733a0f19590ed7345eebf21e92cd6a0959d494734f9b4af76a247d23b97e + checksum: 99c24510cab1ee941a728e2504fad8b5db4587cf3e0e0cf189fff82610b3d6b58cd0470520f5d76e64c8c7e0c91c353a773b17f9032d0df2463a95a21a9fec52 languageName: node linkType: hard @@ -4625,16 +4625,16 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/statedb@npm:^4.4.0-beta.2, @jupyterlab/statedb@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/statedb@npm:4.4.0-beta.2" +"@jupyterlab/statedb@npm:^4.4.0-rc.0, @jupyterlab/statedb@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/statedb@npm:4.4.0-rc.0" dependencies: "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/properties": ^2.0.2 "@lumino/signaling": ^2.1.3 - checksum: 4e634b6f4f76a9f38f6ff47cc666aa0e1d3deeeea06eb163ae1cf722b46a772ade34ecaa8a56f88aa41d8fbbc50a7ba69a55557f7236b3f7023dbd850d41b902 + checksum: 0d8a52560142a7a43a5837a6445c1cc71cf5d1bfe78aeff67dfdd26e6741abfe31a4cb4f30d87a925ad3e44ea85cab25f24f19585204910d6440ad8083b17ee0 languageName: node linkType: hard @@ -4654,11 +4654,11 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/statusbar@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/statusbar@npm:4.4.0-beta.2" +"@jupyterlab/statusbar@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/statusbar@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -4666,36 +4666,36 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 942d2cbc84619dc1f03e52049293950b42d9101537f6724bc0955c82fa7b707958bc2f050885e5dab39d5361edc18c1053e2567c5402b8c86eb63d357d1a29f3 + checksum: 3eeb24e53d7660f0dcc08dbee50843e065a021f29cd51f69624b1a873971ce7d063774144e89b1b2d3acaaa169e20a433fa0232c9ce8e140f2429362fee73d42 languageName: node linkType: hard -"@jupyterlab/terminal-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/terminal-extension@npm:4.4.0-beta.2" +"@jupyterlab/terminal-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/terminal-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/launcher": ^4.4.0-beta.2 - "@jupyterlab/mainmenu": ^4.4.0-beta.2 - "@jupyterlab/running": ^4.4.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/terminal": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/launcher": ^4.4.0-rc.0 + "@jupyterlab/mainmenu": ^4.4.0-rc.0 + "@jupyterlab/running": ^4.4.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/terminal": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/widgets": ^2.6.0 - checksum: fb1edd5219ebcde12a26cb6485b03389cbd78527fb9b5637bb605665ecc04c0479490f95d3c345bd4e87b6e7cb3cea7ef3de4a323809b8e28833711372f267a2 + checksum: 8cbf33abb7edcec2a48c1d5a5d4e6d7436a900f40b248f5e2ea5f00326a570f81f5674fc1cf2b091e06fc4acd79642d540384572cf3ce3694c512961a5e46acd languageName: node linkType: hard -"@jupyterlab/terminal@npm:^4.4.0-beta.2, @jupyterlab/terminal@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/terminal@npm:4.4.0-beta.2" +"@jupyterlab/terminal@npm:^4.4.0-rc.0, @jupyterlab/terminal@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/terminal@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 "@lumino/domutils": ^2.0.2 "@lumino/messaging": ^2.0.2 @@ -4705,7 +4705,7 @@ __metadata: "@xterm/addon-web-links": ~0.11.0 "@xterm/addon-webgl": ~0.18.0 "@xterm/xterm": ~5.5.0 - checksum: c90ab28ccdb3685d6f3867ae3435f125818e42f03dd8e7b097ab3b61aec2740e4d1a3ebfd2672db30bcf50538ccb57f5ca282b97d918658936f4a928a0302df4 + checksum: 628437ab36e8c927e4f9fa88e4b6e1bd4b09481864ee6d12684813b158480e259d45ca3aefad55ddf54441c6f76b6f19d7cc4b2c15c950ec0db035cda3d1246d languageName: node linkType: hard @@ -4745,49 +4745,49 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/theme-dark-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/theme-dark-extension@npm:4.4.0-beta.2" +"@jupyterlab/theme-dark-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/theme-dark-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - checksum: e7bfacc3e6d7be0befc92984c3b6e3d1448598b3b9900fa7456c956a954427960ff008a69fe8908b0d6e677f3779f17353be4e75eb7dfa03407b37ad20cc12ea + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + checksum: 7bf5d219bebddfca4875be837af5b22ca910b48a3aa08978c8d98a309161b0a1d7f2cc64d521592ffb871b7d601b39c36ac45a888b981f5f3f1975c3dc45e95a languageName: node linkType: hard -"@jupyterlab/theme-dark-high-contrast-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/theme-dark-high-contrast-extension@npm:4.4.0-beta.2" +"@jupyterlab/theme-dark-high-contrast-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/theme-dark-high-contrast-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - checksum: 4f786b3528832202de3368b9cd614024faa633824e9342b9e0be54e678c7114b3f0c1045fc1936bf23d1f9e6ce2bbe0a31d45d9a150fec0d800b7f05505a7fb0 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + checksum: 7f9f60eafcd6ac601cb00387c457355684ed8720dbb0b9dad452d711bcdafe94c010f10a258a4b48b75b8664c5a38fae8a6af4ea3983b915c02b3dd27342856a languageName: node linkType: hard -"@jupyterlab/theme-light-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/theme-light-extension@npm:4.4.0-beta.2" +"@jupyterlab/theme-light-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/theme-light-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - checksum: 908bd242f7b2a177db352517b814c406bb0f41de2aa42ebebde70cd689fac2689af1101eb455dae66b002dc1c4060cd35751f980d38b70c6bfbe2b9c0840abce + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + checksum: 62b299b6cd2d5bc39dc7bd5c618e228e8c7f1327c2d6febc912b056c0b6d6e117d05bfde9779cf770e782959a869f88ab891dc883c55d62d53a62b4ae799234e languageName: node linkType: hard -"@jupyterlab/toc-extension@npm:~6.4.0-beta.2": - version: 6.4.0-beta.2 - resolution: "@jupyterlab/toc-extension@npm:6.4.0-beta.2" +"@jupyterlab/toc-extension@npm:~6.4.0-rc.0": + version: 6.4.0-rc.0 + resolution: "@jupyterlab/toc-extension@npm:6.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/toc": ^6.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 - checksum: bb9f1f8b6aaa38dd4b3d05c3de7fa537b4391c93281da7affdeb1ea0a5cb704a18b9b01d0ad8db2d87ece9836857fefd7dfd9538f93792da20ec9918e49edd9e + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/toc": ^6.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 + checksum: ed6f4e914477da85decdb176a05b73164b11cd9dbc96673371af5140690ff9911b910941f5b966953f4f9fe69e4c88e4f3977f546fc39db263c8f7e742c16c98 languageName: node linkType: hard @@ -4814,75 +4814,75 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/toc@npm:^6.4.0-beta.2": - version: 6.4.0-beta.2 - resolution: "@jupyterlab/toc@npm:6.4.0-beta.2" +"@jupyterlab/toc@npm:^6.4.0-rc.0": + version: 6.4.0-rc.0 + resolution: "@jupyterlab/toc@npm:6.4.0-rc.0" dependencies: "@jupyter/react-components": ^0.16.6 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/docregistry": ^4.4.0-beta.2 - "@jupyterlab/observables": ^5.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/docregistry": ^4.4.0-rc.0 + "@jupyterlab/observables": ^5.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.6.0 react: ^18.2.0 - checksum: 1ecbcf1948132852378dc6e99e3988602df5fd3730f472fae2ce33098855832b3ab46ed4850223a014aae57da492e054d2188616904df9b7bbfbe576783034f8 + checksum: 40014291fa1d3b91227359f48850824f4d5ecb7d70f649b573099469ba09616a158ff405aebad3fbbb4e3b488cc6277ed64ba462adeb3e3a0d60e6edd8db52a1 languageName: node linkType: hard -"@jupyterlab/tooltip-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/tooltip-extension@npm:4.4.0-beta.2" +"@jupyterlab/tooltip-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/tooltip-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/codeeditor": ^4.4.0-beta.2 - "@jupyterlab/console": ^4.4.0-beta.2 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/fileeditor": ^4.4.0-beta.2 - "@jupyterlab/notebook": ^4.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/tooltip": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/codeeditor": ^4.4.0-rc.0 + "@jupyterlab/console": ^4.4.0-rc.0 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/fileeditor": ^4.4.0-rc.0 + "@jupyterlab/notebook": ^4.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/tooltip": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.6.0 - checksum: 853a187c160d1a775e9a1233172e346e5157928ef2b8b19e8e110c9a339fbc0e805491c12010a2f321a608161965365c9f697953fffd22db51e89394faa1a886 + checksum: 450a3a8c8ce39dd7dd5a39c2adcccfc224eda790e0aa016ea23d112c5e32e1c8c21f1f5172dd94d7fd4529b9301ee820a15e96658bda12afb72a8f6ccfb36d64 languageName: node linkType: hard -"@jupyterlab/tooltip@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/tooltip@npm:4.4.0-beta.2" +"@jupyterlab/tooltip@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/tooltip@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/codeeditor": ^4.4.0-beta.2 - "@jupyterlab/rendermime": ^4.4.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 + "@jupyterlab/codeeditor": ^4.4.0-rc.0 + "@jupyterlab/rendermime": ^4.4.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/widgets": ^2.6.0 - checksum: 18a2c6c5f95365bb90f28a2efb94eec8cda2b04330ccfbd99ba230789bd39fb7b0b38832812cea9ef06c726ed497c5fec115865ea14eb782e2ab1e8e32161c7c + checksum: a00c281bdb6b8508fac6ca4eff90c48741e0094a5c6a75f3517dcd9f88a5ccde3b03d8cac361d0ef6b44cd2886e0af51d81002c548ac4797d044593230b0f538 languageName: node linkType: hard -"@jupyterlab/translation-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/translation-extension@npm:4.4.0-beta.2" +"@jupyterlab/translation-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/translation-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/apputils": ^4.5.0-beta.2 - "@jupyterlab/mainmenu": ^4.4.0-beta.2 - "@jupyterlab/settingregistry": ^4.4.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 - checksum: 9a771909311ea3921f6ba08fe8e8d43310862230686f6a77a202ba4c594b4221b7656eb3c4636a1e71cf97b95c80caf89d3a8600781873f9006b401046e93413 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.0 + "@jupyterlab/mainmenu": ^4.4.0-rc.0 + "@jupyterlab/settingregistry": ^4.4.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 + checksum: 4c1fad03545b0f5c9ba0e7df83d7cea2c6cc4f6be59da43ffb774251ee68eabe8a7a11cbafa5e2ff81e46b7185da005a419319f4b430ee950d2ab9455f8cbceb languageName: node linkType: hard @@ -4899,26 +4899,26 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/translation@npm:^4.4.0-beta.2, @jupyterlab/translation@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/translation@npm:4.4.0-beta.2" +"@jupyterlab/translation@npm:^4.4.0-rc.0, @jupyterlab/translation@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/translation@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 - "@jupyterlab/services": ^7.4.0-beta.2 - "@jupyterlab/statedb": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 + "@jupyterlab/services": ^7.4.0-rc.0 + "@jupyterlab/statedb": ^4.4.0-rc.0 "@lumino/coreutils": ^2.2.0 - checksum: 92ed4804dd1955e5d6d9be78d7d31f7155997d0cb01d44493c70502d5fdb1b8a9a5aedc93e38a14c0e6874fc1322038f7e97e3eeb1b123f3ded53b8e533bcb49 + checksum: 0d9f4335544cc9d49a13afae9ad686f11ec1117fff47f2560712b324ac9473a8674e2ab948b21fbeb9644c99e8e15f801e3e90b8514da32b86e2b156dddfc467 languageName: node linkType: hard -"@jupyterlab/ui-components-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/ui-components-extension@npm:4.4.0-beta.2" +"@jupyterlab/ui-components-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/ui-components-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/application": ^4.4.0-beta.2 - "@jupyterlab/ui-components": ^4.4.0-beta.2 - checksum: 7adc91586c6cf8c6ffcb54bd8909e35a857045d5a3e416484499a8fa92fabca8a4f5a29ad22a645f4dbff234b0f6812d4f9514033abc1ee57f27c3123cf4ac98 + "@jupyterlab/application": ^4.4.0-rc.0 + "@jupyterlab/ui-components": ^4.4.0-rc.0 + checksum: 301f468218dd6452b1f3c872caf8579045205e1eb81f3fbdfff18f43c4b7d1db8d9ea964096c8c1f56f66a2f995e68ec8c1f1cd3fe56119ff15ad0cecfe06b46 languageName: node linkType: hard @@ -4953,16 +4953,16 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/ui-components@npm:^4.4.0-beta.2, @jupyterlab/ui-components@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/ui-components@npm:4.4.0-beta.2" +"@jupyterlab/ui-components@npm:^4.4.0-rc.0, @jupyterlab/ui-components@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/ui-components@npm:4.4.0-rc.0" dependencies: "@jupyter/react-components": ^0.16.6 "@jupyter/web-components": ^0.16.6 - "@jupyterlab/coreutils": ^6.4.0-beta.2 - "@jupyterlab/observables": ^5.4.0-beta.2 - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 - "@jupyterlab/translation": ^4.4.0-beta.2 + "@jupyterlab/coreutils": ^6.4.0-rc.0 + "@jupyterlab/observables": ^5.4.0-rc.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 + "@jupyterlab/translation": ^4.4.0-rc.0 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -4980,34 +4980,34 @@ __metadata: typestyle: ^2.0.4 peerDependencies: react: ^18.2.0 - checksum: 8b1a3473058ce3f82d03497114046a21e53f1a5c6a7b3295431d79f67ea001c9272620a16f59812b4d08a450f9f9f48104092a3710bd3f337de29e03b39dab55 + checksum: 0931ec59f2fd46f00788f7e0c18e36e1c6ae3bf1f1a800279776011b37d65d3786472deed327d862a94e7d0dceea23e66d9b31213623fc6b1d2e88d60fc41ecb languageName: node linkType: hard -"@jupyterlab/vega5-extension@npm:~4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/vega5-extension@npm:4.4.0-beta.2" +"@jupyterlab/vega5-extension@npm:~4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/vega5-extension@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.12.0-beta.2 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.6.0 vega: ^5.20.0 vega-embed: ^6.2.1 vega-lite: ^5.6.1-next.1 - checksum: 51c17af20b07772c374c20174d081dcfc791b4704bdc70e8bc99c9000824e597ba3d665d44fc0be7ebeb3aeab679688be07c07d3aa4a4d70ac6e55889d2893bd + checksum: 6b1456fbd3ea21c8a0a125abe8cf382bb462aa5f9173c7923dcf85d8d596a0d4d6a18552f7d7e62f7e13161a4744417c5c915435dac4f641d6a249e32126bb27 languageName: node linkType: hard -"@jupyterlab/workspaces@npm:^4.4.0-beta.2": - version: 4.4.0-beta.2 - resolution: "@jupyterlab/workspaces@npm:4.4.0-beta.2" +"@jupyterlab/workspaces@npm:^4.4.0-rc.0": + version: 4.4.0-rc.0 + resolution: "@jupyterlab/workspaces@npm:4.4.0-rc.0" dependencies: - "@jupyterlab/services": ^7.4.0-beta.2 + "@jupyterlab/services": ^7.4.0-rc.0 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/polling": ^2.1.3 "@lumino/signaling": ^2.1.3 - checksum: ccca82957d224c2f085f2fa32ca1e4aec33d545efcf3405119540d5da774b743eb7467e3f8b4320f5076e3f699d64f79633ebffab20d90574cf9d4bd5af86c98 + checksum: 3337cbba08941776ad4949f781c57ea57e948262789229064a1004923090bb65863161b6e3d58d8b6e18fd85933ce66b52e836be8bda001ee22c61cea5abf8a4 languageName: node linkType: hard @@ -5437,12 +5437,12 @@ __metadata: languageName: node linkType: hard -"@mermaid-js/parser@npm:^0.3.0": - version: 0.3.0 - resolution: "@mermaid-js/parser@npm:0.3.0" +"@mermaid-js/parser@npm:^0.4.0": + version: 0.4.0 + resolution: "@mermaid-js/parser@npm:0.4.0" dependencies: - langium: 3.0.0 - checksum: 7c92d69b74a1aaa3d2352c9a21a913cb4dd8f4212b22130359ef98ced4509fdb709ac9942dc78d3c2f75360f27a2917fbdb1ef2c7ac0057078d935666a1afe1d + langium: 3.3.1 + checksum: bb2412416807fea35a4c6dce8908cf54e1192293e1e16696b4b7a793b871cc03519738247a59ff8d8e2aac39665883f2c1e75567354a6498e874e18d973d3de7 languageName: node linkType: hard @@ -8825,6 +8825,13 @@ __metadata: languageName: node linkType: hard +"confbox@npm:^0.2.1": + version: 0.2.1 + resolution: "confbox@npm:0.2.1" + checksum: a8c511a5aa7c9246ccc8997711bebb69413c6ffb66059860b53d46fe7d948bd6753aede559bdf8f62ab36e1e6be95b57919519fe8b04c53c78a92b63a50f07f1 + languageName: node + linkType: hard + "console-control-strings@npm:^1.1.0": version: 1.1.0 resolution: "console-control-strings@npm:1.1.0" @@ -9213,10 +9220,10 @@ __metadata: languageName: node linkType: hard -"cytoscape@npm:^3.29.2": - version: 3.30.4 - resolution: "cytoscape@npm:3.30.4" - checksum: a6b33f018456766c3e49a34fd5860716a2008c29b804b105a8409520d81c778a747ef90a9eba877001c770a077c5b4d87f7cbef0b9d3686aaffc4fd1a86b051e +"cytoscape@npm:^3.29.3": + version: 3.31.1 + resolution: "cytoscape@npm:3.31.1" + checksum: 88dabf36caa2fdd01ff6f511989a436424f90f95a5a81b7062574f6dcaf5079bbb91f9b70dc0549ba6dadbea3b96b4ad7538948f2ff6ed866db8a10593597ed6 languageName: node linkType: hard @@ -9645,7 +9652,7 @@ __metadata: languageName: node linkType: hard -"dayjs@npm:1.11.13, dayjs@npm:^1.11.10": +"dayjs@npm:1.11.13, dayjs@npm:^1.11.13": version: 1.11.13 resolution: "dayjs@npm:1.11.13" checksum: f388db88a6aa93956c1f6121644e783391c7b738b73dbc54485578736565c8931bdfba4bb94e9b1535c6e509c97d5deb918bbe1ae6b34358d994de735055cca9 @@ -9993,15 +10000,15 @@ __metadata: languageName: node linkType: hard -"dompurify@npm:^3.2.1": - version: 3.2.3 - resolution: "dompurify@npm:3.2.3" +"dompurify@npm:^3.2.4": + version: 3.2.4 + resolution: "dompurify@npm:3.2.4" dependencies: "@types/trusted-types": ^2.0.7 dependenciesMeta: "@types/trusted-types": optional: true - checksum: cd66ae8b22e1cfe5bc207b95fc119ce62f9a56eb313a9a1af6262d789d84e7bd27e29f26ed80110d108670dacb9527cb96ddf48a1da89126a37ec8b48702279a + checksum: 7a299cbbfe3b3d189e5fc77ab94ad312807e37fda1e24a927548b76a58a9c98137e612ce8d94a2f6cd3d3db59844f14fca477676b5eae6103568a82142771df6 languageName: node linkType: hard @@ -10881,6 +10888,13 @@ __metadata: languageName: node linkType: hard +"exsolve@npm:^1.0.1": + version: 1.0.4 + resolution: "exsolve@npm:1.0.4" + checksum: 57eabd784003df951bc43db92ef1b8c4d329a57c8649df2fa863c2bc22a40dc8e8231338a08d1bc382218b261457d553c622fbc6bf01133a391169ec29b98446 + languageName: node + linkType: hard + "extend@npm:~3.0.2": version: 3.0.2 resolution: "extend@npm:3.0.2" @@ -11677,10 +11691,10 @@ __metadata: languageName: node linkType: hard -"globals@npm:^15.13.0": - version: 15.14.0 - resolution: "globals@npm:15.14.0" - checksum: fa993433a01bf4a118904fbafbcff34db487fce83f73da75fb4a8653afc6dcd72905e6208c49bab307ff0980928273d0ecd1cfc67e1a4782dabfbd92c234ab68 +"globals@npm:^15.14.0": + version: 15.15.0 + resolution: "globals@npm:15.15.0" + checksum: a2a92199a112db00562a2f85eeef2a7e3943e171f7f7d9b17dfa9231e35fd612588f3c199d1509ab1757273467e413b08c80424cf6e399e96acdaf93deb3ee88 languageName: node linkType: hard @@ -13752,16 +13766,16 @@ __metadata: languageName: node linkType: hard -"langium@npm:3.0.0": - version: 3.0.0 - resolution: "langium@npm:3.0.0" +"langium@npm:3.3.1": + version: 3.3.1 + resolution: "langium@npm:3.3.1" dependencies: chevrotain: ~11.0.3 chevrotain-allstar: ~0.3.0 vscode-languageserver: ~9.0.1 vscode-languageserver-textdocument: ~1.0.11 vscode-uri: ~3.0.8 - checksum: fc184dcef5cc83eaaf93e7d892c74ac74ff441f820378ceba29e4d1245bf82a0b1808a97d628f065f085046b85ed88df8c5cce3a5fc380efa4bad84fe6c2c88e + checksum: b5fcf1cd8d9e8fd9f79425afae5926546f57a30506be20cf7638880a01b2b04ccfe1cd5cae599a7733ad4d38af0bf2ed9bd9e1a95cc5f3de1725628fa7883446 languageName: node linkType: hard @@ -13999,13 +14013,14 @@ __metadata: languageName: node linkType: hard -"local-pkg@npm:^0.5.1": - version: 0.5.1 - resolution: "local-pkg@npm:0.5.1" +"local-pkg@npm:^1.0.0": + version: 1.1.1 + resolution: "local-pkg@npm:1.1.1" dependencies: - mlly: ^1.7.3 - pkg-types: ^1.2.1 - checksum: 478effb440780d412bff78ed80d1593d707a504931a7e5899d6570d207da1e661a6128c3087286ff964696a55c607c2bbd2bbe98377401c7d395891c160fa6e1 + mlly: ^1.7.4 + pkg-types: ^2.0.1 + quansync: ^0.2.8 + checksum: 523c6ecc67e783986cf1b0aa3372a07e3bdf5ff56d3fd00b15b2be598c6677d921e2be79170471fafa15a0de82ff88972782d81cdce9271c2b2f9b02a9f144bc languageName: node linkType: hard @@ -14385,21 +14400,12 @@ __metadata: languageName: node linkType: hard -"marked@npm:^13.0.2": - version: 13.0.3 - resolution: "marked@npm:13.0.3" - bin: - marked: bin/marked.js - checksum: 1e35459ccf26a2a4ba086d9acd5ade00736dd24bacc817b202a3ba7d219e1b252fee91fca41b07de5bc6cfe3442edebe4f0efb18975978d65043050feb116425 - languageName: node - linkType: hard - -"marked@npm:^15.0.3": - version: 15.0.4 - resolution: "marked@npm:15.0.4" +"marked@npm:^15.0.7": + version: 15.0.7 + resolution: "marked@npm:15.0.7" bin: marked: bin/marked.js - checksum: a3832ebfe1722f89a43afc7056b7135dffc5247dcc486b4a9195b5a23453236ec31f024c448f6bdbd0eab1872eaa759092b7c52dfae995a78f150b801d55b96f + checksum: 5863eddd39b9b47dd8dc0d9aa1a4a675580c5c2194ea25b887b905ea9c1e8115e3da50293db4814d5e84a98c466f164c4aebf6c3b9a0e86ecde43c1c4273dbee languageName: node linkType: hard @@ -14490,31 +14496,31 @@ __metadata: languageName: node linkType: hard -"mermaid@npm:^11.4.1": - version: 11.4.1 - resolution: "mermaid@npm:11.4.1" +"mermaid@npm:^11.6.0": + version: 11.6.0 + resolution: "mermaid@npm:11.6.0" dependencies: - "@braintree/sanitize-url": ^7.0.1 - "@iconify/utils": ^2.1.32 - "@mermaid-js/parser": ^0.3.0 + "@braintree/sanitize-url": ^7.0.4 + "@iconify/utils": ^2.1.33 + "@mermaid-js/parser": ^0.4.0 "@types/d3": ^7.4.3 - cytoscape: ^3.29.2 + cytoscape: ^3.29.3 cytoscape-cose-bilkent: ^4.1.0 cytoscape-fcose: ^2.2.0 d3: ^7.9.0 d3-sankey: ^0.12.3 dagre-d3-es: 7.0.11 - dayjs: ^1.11.10 - dompurify: ^3.2.1 + dayjs: ^1.11.13 + dompurify: ^3.2.4 katex: ^0.16.9 khroma: ^2.1.0 lodash-es: ^4.17.21 - marked: ^13.0.2 + marked: ^15.0.7 roughjs: ^4.6.6 - stylis: ^4.3.1 + stylis: ^4.3.6 ts-dedent: ^2.2.0 - uuid: ^9.0.1 - checksum: ede145a0638264936a70800adead21b6538cccad8ad82ff200fa640ce6c70c666e6154c74fc87b293fb968c591b355ad5666f2be7994758d72877be88c5f1059 + uuid: ^11.1.0 + checksum: 1796e7c96ed511801f364d301bcda9d3942cd5a6f86be16f087ab1cc5d9988e27f2c5a03db3997bf2d77172d91c37caf1e4a42c95b1a39ce6ebf18836cc5956b languageName: node linkType: hard @@ -14847,15 +14853,15 @@ __metadata: languageName: node linkType: hard -"mlly@npm:^1.7.2, mlly@npm:^1.7.3": - version: 1.7.3 - resolution: "mlly@npm:1.7.3" +"mlly@npm:^1.7.4": + version: 1.7.4 + resolution: "mlly@npm:1.7.4" dependencies: acorn: ^8.14.0 - pathe: ^1.1.2 - pkg-types: ^1.2.1 + pathe: ^2.0.1 + pkg-types: ^1.3.0 ufo: ^1.5.4 - checksum: 60d309c7ce2ac162224a087fcd683a891260511f57011b2f436b54dfef146b8aae7473013958a58d5b6039f2a8692c32a2599c8390c5b307d1119ad0d917b414 + checksum: a290da940d208f9d77ceed7ed1db3397e37ff083d28bf75e3c92097a8e58967a2b2e2bea33fdcdc63005e2987854cd081dd0621461d89eee4b61c977b5fa020c languageName: node linkType: hard @@ -15749,10 +15755,12 @@ __metadata: languageName: node linkType: hard -"package-manager-detector@npm:^0.2.0": - version: 0.2.8 - resolution: "package-manager-detector@npm:0.2.8" - checksum: 6007d4a0bc8746d8fe01c941c4f4e1d86c192b04aebc121228122bcb103d16d71792e08143bd1a3d08a01ddbf2b38b6b8bb3fbeb1cd58656c654973c73cd80ac +"package-manager-detector@npm:^0.2.8": + version: 0.2.11 + resolution: "package-manager-detector@npm:0.2.11" + dependencies: + quansync: ^0.2.7 + checksum: cea626a294f04028ea291bf0a5a32a21e3914daef4f3959e708ae36f8f2d8097d813e8bb488f5d2b6edaf43a976c6a3d2c361ef8dd9a12c360a7129cd8e29e0f languageName: node linkType: hard @@ -15972,10 +15980,10 @@ __metadata: languageName: node linkType: hard -"pathe@npm:^1.1.2": - version: 1.1.2 - resolution: "pathe@npm:1.1.2" - checksum: ec5f778d9790e7b9ffc3e4c1df39a5bb1ce94657a4e3ad830c1276491ca9d79f189f47609884671db173400256b005f4955f7952f52a2aeb5834ad5fb4faf134 +"pathe@npm:^2.0.1, pathe@npm:^2.0.3": + version: 2.0.3 + resolution: "pathe@npm:2.0.3" + checksum: 0602bdd4acb54d91044e0c56f1fb63467ae7d44ab3afea1f797947b0eb2b4d1d91cf0d58d065fdb0a8ab0c4acbbd8d3a5b424983eaf10dd5285d37a16f6e3ee9 languageName: node linkType: hard @@ -16140,14 +16148,25 @@ __metadata: languageName: node linkType: hard -"pkg-types@npm:^1.2.1": - version: 1.2.1 - resolution: "pkg-types@npm:1.2.1" +"pkg-types@npm:^1.3.0": + version: 1.3.1 + resolution: "pkg-types@npm:1.3.1" dependencies: confbox: ^0.1.8 - mlly: ^1.7.2 - pathe: ^1.1.2 - checksum: d2e3ad7aef36cc92b17403e61c04db521bf0beb175ccb4d432c284239f00ec32ff37feb072a260613e9ff727911cff1127a083fd52f91b9bec6b62970f385702 + mlly: ^1.7.4 + pathe: ^2.0.1 + checksum: 4fa4edb2bb845646cdbd04c5c6bc43cdbc8f02ed4d1c28bfcafb6e65928aece789bcf1335e4cac5f65dfdc376e4bd7435bd509a35e9ec73ef2c076a1b88e289c + languageName: node + linkType: hard + +"pkg-types@npm:^2.0.1": + version: 2.1.0 + resolution: "pkg-types@npm:2.1.0" + dependencies: + confbox: ^0.2.1 + exsolve: ^1.0.1 + pathe: ^2.0.3 + checksum: ac0ac8c7d612397276c931888e04e2b5d99bb8169e0c42dce2371b371ad265ce58fbf1f6bdcd44f86fe545b9491983bd79647ac1568beea3f6871ad9dc74692f languageName: node linkType: hard @@ -16476,6 +16495,13 @@ __metadata: languageName: node linkType: hard +"quansync@npm:^0.2.7, quansync@npm:^0.2.8": + version: 0.2.10 + resolution: "quansync@npm:0.2.10" + checksum: 0328dd30fc864722e1ebd9cc779ca2c36005ac7552f52f1b318eb6cc225382c0ee337d021a086daa113efcfeec8d9a5891e3fd26d8081425eaf33cbc108f68f4 + languageName: node + linkType: hard + "query-string@npm:^4.1.0": version: 4.3.4 resolution: "query-string@npm:4.3.4" @@ -18137,10 +18163,10 @@ __metadata: languageName: node linkType: hard -"stylis@npm:^4.3.1": - version: 4.3.4 - resolution: "stylis@npm:4.3.4" - checksum: 7e3a482c7bba6e0e9e3187972e958acf800b1abe99f23e081fcb5dea8e4a05eca44286c1381ce2bc7179245ddbd7bf1f74237ed413fce7491320a543bcfebda9 +"stylis@npm:^4.3.6": + version: 4.3.6 + resolution: "stylis@npm:4.3.6" + checksum: 4f56a087caace85b34c3a163cf9d662f58f42dc865b2447af5c3ee3588eebaffe90875fe294578cce26f172ff527cad2b01433f6e1ae156400ec38c37c79fd61 languageName: node linkType: hard @@ -18361,10 +18387,10 @@ __metadata: languageName: node linkType: hard -"tinyexec@npm:^0.3.0": - version: 0.3.1 - resolution: "tinyexec@npm:0.3.1" - checksum: 691b531d464bdc09eeba934e43d8ac2a74c9d22a4bec9cd7f4991375c64e22712f7e5a95ba243a9369a478afd34d41171359012a2248ea49615cd2816ab12959 +"tinyexec@npm:^0.3.2": + version: 0.3.2 + resolution: "tinyexec@npm:0.3.2" + checksum: bd491923020610bdeadb0d8cf5d70e7cbad5a3201620fd01048c9bf3b31ffaa75c33254e1540e13b993ce4e8187852b0b5a93057bb598e7a57afa2ca2048a35c languageName: node linkType: hard @@ -18970,6 +18996,15 @@ __metadata: languageName: node linkType: hard +"uuid@npm:^11.1.0": + version: 11.1.0 + resolution: "uuid@npm:11.1.0" + bin: + uuid: dist/esm/bin/uuid + checksum: 840f19758543c4631e58a29439e51b5b669d5f34b4dd2700b6a1d15c5708c7a6e0c3e2c8c4a2eae761a3a7caa7e9884d00c86c02622ba91137bd3deade6b4b4a + languageName: node + linkType: hard + "uuid@npm:^8.3.2": version: 8.3.2 resolution: "uuid@npm:8.3.2" @@ -18979,7 +19014,7 @@ __metadata: languageName: node linkType: hard -"uuid@npm:^9.0.0, uuid@npm:^9.0.1": +"uuid@npm:^9.0.0": version: 9.0.1 resolution: "uuid@npm:9.0.1" bin: From 903fef574e5f8bd53fb85175f64e8576f36215b8 Mon Sep 17 00:00:00 2001 From: jtpio Date: Wed, 26 Mar 2025 10:07:53 +0000 Subject: [PATCH 011/143] Publish 7.4.0b3 SHA256 hashes: jupyter-notebook-application-7.4.0-beta.3.tgz: a05bfb6e838878abd78e6f1c571a02af9179ae64c17c768e1264aea26861f2e7 jupyter-notebook-application-extension-7.4.0-beta.3.tgz: 336eb7d09755c16eb496c31941f09ba3bc3395bbbd085fc532f297268b72b73d jupyter-notebook-console-extension-7.4.0-beta.3.tgz: 107fc785ae440a48ecfe4b5d5588660f71c3577b8d9e5d2829ff890655405c20 jupyter-notebook-docmanager-extension-7.4.0-beta.3.tgz: 92f53a211003c11906a0998bba2399070ca34447722ca24499d5013a877df646 jupyter-notebook-documentsearch-extension-7.4.0-beta.3.tgz: 3038185ee6002dbcaaa9b586d63ff39cd55cad6b02d2404d193636707d50ead3 jupyter-notebook-help-extension-7.4.0-beta.3.tgz: db781f01425ce1ba8e1e5ddd09c979056f40e22da62300841a28bbbbf3795fbc jupyter-notebook-lab-extension-7.4.0-beta.3.tgz: 8402bfd268d793722c39d342a447c76978824c9d654410a5a36f4bd056ca2dcc jupyter-notebook-notebook-extension-7.4.0-beta.3.tgz: 87715a175957dd3b0a59657fe44d445b6af5d74fdf33724de1c23d2de6fb787b jupyter-notebook-terminal-extension-7.4.0-beta.3.tgz: aadab50e080999207fe60f3d925c04234809573fd653aea3a67547ed93e61da4 jupyter-notebook-tree-7.4.0-beta.3.tgz: 50e88564e7886867e261f017f3f19fd4390c8ec9375926fbdabcc966fef4bb8e jupyter-notebook-tree-extension-7.4.0-beta.3.tgz: 01bc4291dce00e996d37d1aaf4d334d0de926531dcd9b837109edc5405bac6d8 jupyter-notebook-ui-components-7.4.0-beta.3.tgz: ee559b07e18c687a57d0e82540f7163f93221c8d7e560abfc7bcb1172ad83fd2 notebook-7.4.0b3-py3-none-any.whl: f63e3013a32deeea2f4e6b1c069273299a991a1843c6f49257ccba2e0177a08e notebook-7.4.0b3.tar.gz: 28694ebbe482ee5dc56540b6d6188a6919a57a8403c1a5d9748932c640b5c240 --- CHANGELOG.md | 19 +++- app/package.json | 47 +++++----- buildutils/package.json | 2 +- notebook/_version.py | 2 +- packages/_metapackage/package.json | 26 ++--- packages/application-extension/package.json | 6 +- packages/application/package.json | 2 +- packages/console-extension/package.json | 4 +- packages/docmanager-extension/package.json | 4 +- .../documentsearch-extension/package.json | 4 +- packages/help-extension/package.json | 4 +- packages/lab-extension/package.json | 4 +- packages/notebook-extension/package.json | 4 +- packages/terminal-extension/package.json | 4 +- packages/tree-extension/package.json | 6 +- packages/tree/package.json | 4 +- packages/ui-components/package.json | 2 +- yarn.lock | 94 +++++++++---------- 18 files changed, 127 insertions(+), 111 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e7b22ba8cc..9666c201a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -69,6 +69,23 @@ or via the JSON Settings Editor in the Application Context Menu. +## 7.4.0b3 + +([Full Changelog](https://github.com/jupyter/notebook/compare/@jupyter-notebook/application-extension@7.4.0-beta.2...434221c0fe3de3df3b4b54ed1005712e07957352)) + +### Enhancements made + +- Update to JupyterLab v4.4.0rc0 [#7618](https://github.com/jupyter/notebook/pull/7618) ([@jtpio](https://github.com/jtpio)) +- Support `ServiceManagerPlugin` [#7616](https://github.com/jupyter/notebook/pull/7616) ([@jtpio](https://github.com/jtpio)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyter/notebook/graphs/contributors?from=2025-03-20&to=2025-03-26&type=c)) + +[@github-actions](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2025-03-20..2025-03-26&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2025-03-20..2025-03-26&type=Issues) + + + ## 7.4.0b2 ([Full Changelog](https://github.com/jupyter/notebook/compare/@jupyter-notebook/application-extension@7.4.0-beta.1...be2fd12f91a64796d9919ee8b8242f3093aac8a5)) @@ -88,8 +105,6 @@ or via the JSON Settings Editor in the Application Context Menu. [@github-actions](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2025-03-14..2025-03-20&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2025-03-14..2025-03-20&type=Issues) - - ## 7.4.0b1 ([Full Changelog](https://github.com/jupyter/notebook/compare/@jupyter-notebook/application-extension@7.4.0-beta.0...6d06d97302bd1bb77e25864214ade2277f2e50d4)) diff --git a/app/package.json b/app/package.json index 2cda6f1a16..15b3ec5e1d 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/app", - "version": "7.4.0-beta.2", + "version": "7.4.0-beta.3", "private": true, "scripts": { "build": "webpack", @@ -12,17 +12,17 @@ "resolutions": { "@codemirror/state": "~6.5.0", "@codemirror/view": "~6.36.1", - "@jupyter-notebook/application": "~7.4.0-beta.2", - "@jupyter-notebook/application-extension": "~7.4.0-beta.2", - "@jupyter-notebook/console-extension": "~7.4.0-beta.2", - "@jupyter-notebook/docmanager-extension": "~7.4.0-beta.2", - "@jupyter-notebook/documentsearch-extension": "~7.4.0-beta.2", - "@jupyter-notebook/help-extension": "~7.4.0-beta.2", - "@jupyter-notebook/notebook-extension": "~7.4.0-beta.2", - "@jupyter-notebook/terminal-extension": "~7.4.0-beta.2", - "@jupyter-notebook/tree": "~7.4.0-beta.2", - "@jupyter-notebook/tree-extension": "~7.4.0-beta.2", - "@jupyter-notebook/ui-components": "~7.4.0-beta.2", + "@jupyter-notebook/application": "~7.4.0-beta.3", + "@jupyter-notebook/application-extension": "~7.4.0-beta.3", + "@jupyter-notebook/console-extension": "~7.4.0-beta.3", + "@jupyter-notebook/docmanager-extension": "~7.4.0-beta.3", + "@jupyter-notebook/documentsearch-extension": "~7.4.0-beta.3", + "@jupyter-notebook/help-extension": "~7.4.0-beta.3", + "@jupyter-notebook/notebook-extension": "~7.4.0-beta.3", + "@jupyter-notebook/terminal-extension": "~7.4.0-beta.3", + "@jupyter-notebook/tree": "~7.4.0-beta.3", + "@jupyter-notebook/tree-extension": "~7.4.0-beta.3", + "@jupyter-notebook/ui-components": "~7.4.0-beta.3", "@jupyter/react-components": "~0.16.7", "@jupyter/web-components": "~0.16.7", "@jupyter/ydoc": "~3.0.0", @@ -85,6 +85,7 @@ "@jupyterlab/rendermime-interfaces": "~3.12.0-rc.0", "@jupyterlab/running-extension": "~4.4.0-rc.0", "@jupyterlab/services": "~7.4.0-rc.0", + "@jupyterlab/services-extension": "~4.4.0-rc.0", "@jupyterlab/settingeditor": "~4.4.0-rc.0", "@jupyterlab/settingeditor-extension": "~4.4.0-rc.0", "@jupyterlab/settingregistry": "~4.4.0-rc.0", @@ -123,17 +124,17 @@ "yjs": "~13.6.8" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.2", - "@jupyter-notebook/application-extension": "^7.4.0-beta.2", - "@jupyter-notebook/console-extension": "^7.4.0-beta.2", - "@jupyter-notebook/docmanager-extension": "^7.4.0-beta.2", - "@jupyter-notebook/documentsearch-extension": "^7.4.0-beta.2", - "@jupyter-notebook/help-extension": "^7.4.0-beta.2", - "@jupyter-notebook/notebook-extension": "^7.4.0-beta.2", - "@jupyter-notebook/terminal-extension": "^7.4.0-beta.2", - "@jupyter-notebook/tree": "^7.4.0-beta.2", - "@jupyter-notebook/tree-extension": "^7.4.0-beta.2", - "@jupyter-notebook/ui-components": "^7.4.0-beta.2", + "@jupyter-notebook/application": "^7.4.0-beta.3", + "@jupyter-notebook/application-extension": "^7.4.0-beta.3", + "@jupyter-notebook/console-extension": "^7.4.0-beta.3", + "@jupyter-notebook/docmanager-extension": "^7.4.0-beta.3", + "@jupyter-notebook/documentsearch-extension": "^7.4.0-beta.3", + "@jupyter-notebook/help-extension": "^7.4.0-beta.3", + "@jupyter-notebook/notebook-extension": "^7.4.0-beta.3", + "@jupyter-notebook/terminal-extension": "^7.4.0-beta.3", + "@jupyter-notebook/tree": "^7.4.0-beta.3", + "@jupyter-notebook/tree-extension": "^7.4.0-beta.3", + "@jupyter-notebook/ui-components": "^7.4.0-beta.3", "@jupyterlab/application-extension": "~4.4.0-rc.0", "@jupyterlab/apputils-extension": "~4.4.0-rc.0", "@jupyterlab/attachments": "~4.4.0-rc.0", diff --git a/buildutils/package.json b/buildutils/package.json index a62f5f8fe6..ef74af357d 100644 --- a/buildutils/package.json +++ b/buildutils/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/buildutils", - "version": "7.4.0-beta.2", + "version": "7.4.0-beta.3", "private": true, "description": "Jupyter Notebook - Build Utilities", "homepage": "https://github.com/jupyter/notebook", diff --git a/notebook/_version.py b/notebook/_version.py index febf594fbb..850c4369b8 100644 --- a/notebook/_version.py +++ b/notebook/_version.py @@ -6,7 +6,7 @@ from collections import namedtuple # Use "hatch version xx.yy.zz" to handle version changes -__version__ = "7.4.0b2" +__version__ = "7.4.0b3" # PEP440 version parser _version_regex = re.compile( diff --git a/packages/_metapackage/package.json b/packages/_metapackage/package.json index 09c9aa5546..c93a9ac24f 100644 --- a/packages/_metapackage/package.json +++ b/packages/_metapackage/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/metapackage", - "version": "7.4.0-beta.2", + "version": "7.4.0-beta.3", "private": true, "description": "Jupyter Notebook - Metapackage", "homepage": "https://github.com/jupyter/notebook", @@ -20,18 +20,18 @@ "watch": "tsc -b -w --preserveWatchOutput" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.2", - "@jupyter-notebook/application-extension": "^7.4.0-beta.2", - "@jupyter-notebook/console-extension": "^7.4.0-beta.2", - "@jupyter-notebook/docmanager-extension": "^7.4.0-beta.2", - "@jupyter-notebook/documentsearch-extension": "^7.4.0-beta.2", - "@jupyter-notebook/help-extension": "^7.4.0-beta.2", - "@jupyter-notebook/lab-extension": "^7.4.0-beta.2", - "@jupyter-notebook/notebook-extension": "^7.4.0-beta.2", - "@jupyter-notebook/terminal-extension": "^7.4.0-beta.2", - "@jupyter-notebook/tree": "^7.4.0-beta.2", - "@jupyter-notebook/tree-extension": "^7.4.0-beta.2", - "@jupyter-notebook/ui-components": "^7.4.0-beta.2" + "@jupyter-notebook/application": "^7.4.0-beta.3", + "@jupyter-notebook/application-extension": "^7.4.0-beta.3", + "@jupyter-notebook/console-extension": "^7.4.0-beta.3", + "@jupyter-notebook/docmanager-extension": "^7.4.0-beta.3", + "@jupyter-notebook/documentsearch-extension": "^7.4.0-beta.3", + "@jupyter-notebook/help-extension": "^7.4.0-beta.3", + "@jupyter-notebook/lab-extension": "^7.4.0-beta.3", + "@jupyter-notebook/notebook-extension": "^7.4.0-beta.3", + "@jupyter-notebook/terminal-extension": "^7.4.0-beta.3", + "@jupyter-notebook/tree": "^7.4.0-beta.3", + "@jupyter-notebook/tree-extension": "^7.4.0-beta.3", + "@jupyter-notebook/ui-components": "^7.4.0-beta.3" }, "devDependencies": { "typescript": "~5.5.4" diff --git a/packages/application-extension/package.json b/packages/application-extension/package.json index 43f9d5848c..bf8459e062 100644 --- a/packages/application-extension/package.json +++ b/packages/application-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/application-extension", - "version": "7.4.0-beta.2", + "version": "7.4.0-beta.3", "description": "Jupyter Notebook - Application Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,8 +38,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.2", - "@jupyter-notebook/ui-components": "^7.4.0-beta.2", + "@jupyter-notebook/application": "^7.4.0-beta.3", + "@jupyter-notebook/ui-components": "^7.4.0-beta.3", "@jupyterlab/application": "~4.4.0-rc.0", "@jupyterlab/apputils": "~4.5.0-rc.0", "@jupyterlab/codeeditor": "~4.4.0-rc.0", diff --git a/packages/application/package.json b/packages/application/package.json index 32017364be..df311f4012 100644 --- a/packages/application/package.json +++ b/packages/application/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/application", - "version": "7.4.0-beta.2", + "version": "7.4.0-beta.3", "description": "Jupyter Notebook - Application", "homepage": "https://github.com/jupyter/notebook", "bugs": { diff --git a/packages/console-extension/package.json b/packages/console-extension/package.json index cd9b116b8e..e3bbc64246 100644 --- a/packages/console-extension/package.json +++ b/packages/console-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/console-extension", - "version": "7.4.0-beta.2", + "version": "7.4.0-beta.3", "description": "Jupyter Notebook - Console Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.2", + "@jupyter-notebook/application": "^7.4.0-beta.3", "@jupyterlab/application": "~4.4.0-rc.0", "@jupyterlab/console": "~4.4.0-rc.0", "@jupyterlab/coreutils": "~6.4.0-rc.0", diff --git a/packages/docmanager-extension/package.json b/packages/docmanager-extension/package.json index f925e72458..150ab092a0 100644 --- a/packages/docmanager-extension/package.json +++ b/packages/docmanager-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/docmanager-extension", - "version": "7.4.0-beta.2", + "version": "7.4.0-beta.3", "description": "Jupyter Notebook - Document Manager Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.2", + "@jupyter-notebook/application": "^7.4.0-beta.3", "@jupyterlab/application": "~4.4.0-rc.0", "@jupyterlab/coreutils": "~6.4.0-rc.0", "@jupyterlab/docmanager": "~4.4.0-rc.0", diff --git a/packages/documentsearch-extension/package.json b/packages/documentsearch-extension/package.json index f6cbf8f0a4..1e35450a4e 100644 --- a/packages/documentsearch-extension/package.json +++ b/packages/documentsearch-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/documentsearch-extension", - "version": "7.4.0-beta.2", + "version": "7.4.0-beta.3", "description": "Jupyter Notebook - Document Search Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.2", + "@jupyter-notebook/application": "^7.4.0-beta.3", "@jupyterlab/application": "~4.4.0-rc.0", "@jupyterlab/documentsearch": "~4.4.0-rc.0", "@lumino/widgets": "^2.5.0" diff --git a/packages/help-extension/package.json b/packages/help-extension/package.json index 6b1f5dfaf0..953f491834 100644 --- a/packages/help-extension/package.json +++ b/packages/help-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/help-extension", - "version": "7.4.0-beta.2", + "version": "7.4.0-beta.3", "description": "Jupyter Notebook - Help Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/ui-components": "^7.4.0-beta.2", + "@jupyter-notebook/ui-components": "^7.4.0-beta.3", "@jupyterlab/application": "~4.4.0-rc.0", "@jupyterlab/apputils": "~4.5.0-rc.0", "@jupyterlab/mainmenu": "~4.4.0-rc.0", diff --git a/packages/lab-extension/package.json b/packages/lab-extension/package.json index ac33998c9b..cbb48a81f5 100644 --- a/packages/lab-extension/package.json +++ b/packages/lab-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/lab-extension", - "version": "7.4.0-beta.2", + "version": "7.4.0-beta.3", "description": "Jupyter Notebook - Lab Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -43,7 +43,7 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.2", + "@jupyter-notebook/application": "^7.4.0-beta.3", "@jupyterlab/application": "~4.4.0-rc.0", "@jupyterlab/apputils": "~4.5.0-rc.0", "@jupyterlab/coreutils": "~6.4.0-rc.0", diff --git a/packages/notebook-extension/package.json b/packages/notebook-extension/package.json index 6f1c310fcc..a15a5e215f 100644 --- a/packages/notebook-extension/package.json +++ b/packages/notebook-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/notebook-extension", - "version": "7.4.0-beta.2", + "version": "7.4.0-beta.3", "description": "Jupyter Notebook - Notebook Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.2", + "@jupyter-notebook/application": "^7.4.0-beta.3", "@jupyterlab/application": "~4.4.0-rc.0", "@jupyterlab/apputils": "~4.5.0-rc.0", "@jupyterlab/cells": "~4.4.0-rc.0", diff --git a/packages/terminal-extension/package.json b/packages/terminal-extension/package.json index f444d03312..feb60f7d61 100644 --- a/packages/terminal-extension/package.json +++ b/packages/terminal-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/terminal-extension", - "version": "7.4.0-beta.2", + "version": "7.4.0-beta.3", "description": "Jupyter Notebook - Terminal Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.2", + "@jupyter-notebook/application": "^7.4.0-beta.3", "@jupyterlab/application": "~4.4.0-rc.0", "@jupyterlab/coreutils": "~6.4.0-rc.0", "@jupyterlab/terminal": "~4.4.0-rc.0", diff --git a/packages/tree-extension/package.json b/packages/tree-extension/package.json index d981fd0549..fda49c5680 100644 --- a/packages/tree-extension/package.json +++ b/packages/tree-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/tree-extension", - "version": "7.4.0-beta.2", + "version": "7.4.0-beta.3", "description": "Jupyter Notebook - Tree Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,8 +38,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.2", - "@jupyter-notebook/tree": "^7.4.0-beta.2", + "@jupyter-notebook/application": "^7.4.0-beta.3", + "@jupyter-notebook/tree": "^7.4.0-beta.3", "@jupyterlab/application": "~4.4.0-rc.0", "@jupyterlab/apputils": "~4.5.0-rc.0", "@jupyterlab/coreutils": "~6.4.0-rc.0", diff --git a/packages/tree/package.json b/packages/tree/package.json index a625b37a7c..689f5d7ec7 100644 --- a/packages/tree/package.json +++ b/packages/tree/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/tree", - "version": "7.4.0-beta.2", + "version": "7.4.0-beta.3", "description": "Jupyter Notebook - Tree", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.2", + "@jupyter-notebook/application": "^7.4.0-beta.3", "@jupyterlab/application": "~4.4.0-rc.0", "@jupyterlab/apputils": "~4.5.0-rc.0", "@jupyterlab/coreutils": "~6.4.0-rc.0", diff --git a/packages/ui-components/package.json b/packages/ui-components/package.json index a1746f137e..9c56091355 100644 --- a/packages/ui-components/package.json +++ b/packages/ui-components/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/ui-components", - "version": "7.4.0-beta.2", + "version": "7.4.0-beta.3", "description": "Jupyter Notebook - UI components", "homepage": "https://github.com/jupyter/notebook", "bugs": { diff --git a/yarn.lock b/yarn.lock index 67492297c3..7e72a99fb5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2131,17 +2131,17 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyter-notebook/app@workspace:app" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.2 - "@jupyter-notebook/application-extension": ^7.4.0-beta.2 - "@jupyter-notebook/console-extension": ^7.4.0-beta.2 - "@jupyter-notebook/docmanager-extension": ^7.4.0-beta.2 - "@jupyter-notebook/documentsearch-extension": ^7.4.0-beta.2 - "@jupyter-notebook/help-extension": ^7.4.0-beta.2 - "@jupyter-notebook/notebook-extension": ^7.4.0-beta.2 - "@jupyter-notebook/terminal-extension": ^7.4.0-beta.2 - "@jupyter-notebook/tree": ^7.4.0-beta.2 - "@jupyter-notebook/tree-extension": ^7.4.0-beta.2 - "@jupyter-notebook/ui-components": ^7.4.0-beta.2 + "@jupyter-notebook/application": ^7.4.0-beta.3 + "@jupyter-notebook/application-extension": ^7.4.0-beta.3 + "@jupyter-notebook/console-extension": ^7.4.0-beta.3 + "@jupyter-notebook/docmanager-extension": ^7.4.0-beta.3 + "@jupyter-notebook/documentsearch-extension": ^7.4.0-beta.3 + "@jupyter-notebook/help-extension": ^7.4.0-beta.3 + "@jupyter-notebook/notebook-extension": ^7.4.0-beta.3 + "@jupyter-notebook/terminal-extension": ^7.4.0-beta.3 + "@jupyter-notebook/tree": ^7.4.0-beta.3 + "@jupyter-notebook/tree-extension": ^7.4.0-beta.3 + "@jupyter-notebook/ui-components": ^7.4.0-beta.3 "@jupyterlab/application-extension": ~4.4.0-rc.0 "@jupyterlab/apputils-extension": ~4.4.0-rc.0 "@jupyterlab/attachments": ~4.4.0-rc.0 @@ -2215,12 +2215,12 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/application-extension@^7.4.0-beta.2, @jupyter-notebook/application-extension@workspace:packages/application-extension": +"@jupyter-notebook/application-extension@^7.4.0-beta.3, @jupyter-notebook/application-extension@workspace:packages/application-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/application-extension@workspace:packages/application-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.2 - "@jupyter-notebook/ui-components": ^7.4.0-beta.2 + "@jupyter-notebook/application": ^7.4.0-beta.3 + "@jupyter-notebook/ui-components": ^7.4.0-beta.3 "@jupyterlab/application": ~4.4.0-rc.0 "@jupyterlab/apputils": ~4.5.0-rc.0 "@jupyterlab/codeeditor": ~4.4.0-rc.0 @@ -2240,7 +2240,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/application@^7.4.0-beta.2, @jupyter-notebook/application@workspace:packages/application": +"@jupyter-notebook/application@^7.4.0-beta.3, @jupyter-notebook/application@workspace:packages/application": version: 0.0.0-use.local resolution: "@jupyter-notebook/application@workspace:packages/application" dependencies: @@ -2282,11 +2282,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/console-extension@^7.4.0-beta.2, @jupyter-notebook/console-extension@workspace:packages/console-extension": +"@jupyter-notebook/console-extension@^7.4.0-beta.3, @jupyter-notebook/console-extension@workspace:packages/console-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/console-extension@workspace:packages/console-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.2 + "@jupyter-notebook/application": ^7.4.0-beta.3 "@jupyterlab/application": ~4.4.0-rc.0 "@jupyterlab/console": ~4.4.0-rc.0 "@jupyterlab/coreutils": ~6.4.0-rc.0 @@ -2296,11 +2296,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/docmanager-extension@^7.4.0-beta.2, @jupyter-notebook/docmanager-extension@workspace:packages/docmanager-extension": +"@jupyter-notebook/docmanager-extension@^7.4.0-beta.3, @jupyter-notebook/docmanager-extension@workspace:packages/docmanager-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/docmanager-extension@workspace:packages/docmanager-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.2 + "@jupyter-notebook/application": ^7.4.0-beta.3 "@jupyterlab/application": ~4.4.0-rc.0 "@jupyterlab/coreutils": ~6.4.0-rc.0 "@jupyterlab/docmanager": ~4.4.0-rc.0 @@ -2313,11 +2313,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/documentsearch-extension@^7.4.0-beta.2, @jupyter-notebook/documentsearch-extension@workspace:packages/documentsearch-extension": +"@jupyter-notebook/documentsearch-extension@^7.4.0-beta.3, @jupyter-notebook/documentsearch-extension@workspace:packages/documentsearch-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/documentsearch-extension@workspace:packages/documentsearch-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.2 + "@jupyter-notebook/application": ^7.4.0-beta.3 "@jupyterlab/application": ~4.4.0-rc.0 "@jupyterlab/documentsearch": ~4.4.0-rc.0 "@lumino/widgets": ^2.5.0 @@ -2326,11 +2326,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/help-extension@^7.4.0-beta.2, @jupyter-notebook/help-extension@workspace:packages/help-extension": +"@jupyter-notebook/help-extension@^7.4.0-beta.3, @jupyter-notebook/help-extension@workspace:packages/help-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/help-extension@workspace:packages/help-extension" dependencies: - "@jupyter-notebook/ui-components": ^7.4.0-beta.2 + "@jupyter-notebook/ui-components": ^7.4.0-beta.3 "@jupyterlab/application": ~4.4.0-rc.0 "@jupyterlab/apputils": ~4.5.0-rc.0 "@jupyterlab/mainmenu": ~4.4.0-rc.0 @@ -2342,11 +2342,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/lab-extension@^7.4.0-beta.2, @jupyter-notebook/lab-extension@workspace:packages/lab-extension": +"@jupyter-notebook/lab-extension@^7.4.0-beta.3, @jupyter-notebook/lab-extension@workspace:packages/lab-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/lab-extension@workspace:packages/lab-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.2 + "@jupyter-notebook/application": ^7.4.0-beta.3 "@jupyterlab/application": ~4.4.0-rc.0 "@jupyterlab/apputils": ~4.5.0-rc.0 "@jupyterlab/builder": ~4.4.0-rc.0 @@ -2366,27 +2366,27 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyter-notebook/metapackage@workspace:packages/_metapackage" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.2 - "@jupyter-notebook/application-extension": ^7.4.0-beta.2 - "@jupyter-notebook/console-extension": ^7.4.0-beta.2 - "@jupyter-notebook/docmanager-extension": ^7.4.0-beta.2 - "@jupyter-notebook/documentsearch-extension": ^7.4.0-beta.2 - "@jupyter-notebook/help-extension": ^7.4.0-beta.2 - "@jupyter-notebook/lab-extension": ^7.4.0-beta.2 - "@jupyter-notebook/notebook-extension": ^7.4.0-beta.2 - "@jupyter-notebook/terminal-extension": ^7.4.0-beta.2 - "@jupyter-notebook/tree": ^7.4.0-beta.2 - "@jupyter-notebook/tree-extension": ^7.4.0-beta.2 - "@jupyter-notebook/ui-components": ^7.4.0-beta.2 + "@jupyter-notebook/application": ^7.4.0-beta.3 + "@jupyter-notebook/application-extension": ^7.4.0-beta.3 + "@jupyter-notebook/console-extension": ^7.4.0-beta.3 + "@jupyter-notebook/docmanager-extension": ^7.4.0-beta.3 + "@jupyter-notebook/documentsearch-extension": ^7.4.0-beta.3 + "@jupyter-notebook/help-extension": ^7.4.0-beta.3 + "@jupyter-notebook/lab-extension": ^7.4.0-beta.3 + "@jupyter-notebook/notebook-extension": ^7.4.0-beta.3 + "@jupyter-notebook/terminal-extension": ^7.4.0-beta.3 + "@jupyter-notebook/tree": ^7.4.0-beta.3 + "@jupyter-notebook/tree-extension": ^7.4.0-beta.3 + "@jupyter-notebook/ui-components": ^7.4.0-beta.3 typescript: ~5.5.4 languageName: unknown linkType: soft -"@jupyter-notebook/notebook-extension@^7.4.0-beta.2, @jupyter-notebook/notebook-extension@workspace:packages/notebook-extension": +"@jupyter-notebook/notebook-extension@^7.4.0-beta.3, @jupyter-notebook/notebook-extension@workspace:packages/notebook-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/notebook-extension@workspace:packages/notebook-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.2 + "@jupyter-notebook/application": ^7.4.0-beta.3 "@jupyterlab/application": ~4.4.0-rc.0 "@jupyterlab/apputils": ~4.5.0-rc.0 "@jupyterlab/cells": ~4.4.0-rc.0 @@ -2424,11 +2424,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/terminal-extension@^7.4.0-beta.2, @jupyter-notebook/terminal-extension@workspace:packages/terminal-extension": +"@jupyter-notebook/terminal-extension@^7.4.0-beta.3, @jupyter-notebook/terminal-extension@workspace:packages/terminal-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/terminal-extension@workspace:packages/terminal-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.2 + "@jupyter-notebook/application": ^7.4.0-beta.3 "@jupyterlab/application": ~4.4.0-rc.0 "@jupyterlab/coreutils": ~6.4.0-rc.0 "@jupyterlab/terminal": ~4.4.0-rc.0 @@ -2438,12 +2438,12 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/tree-extension@^7.4.0-beta.2, @jupyter-notebook/tree-extension@workspace:packages/tree-extension": +"@jupyter-notebook/tree-extension@^7.4.0-beta.3, @jupyter-notebook/tree-extension@workspace:packages/tree-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/tree-extension@workspace:packages/tree-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.2 - "@jupyter-notebook/tree": ^7.4.0-beta.2 + "@jupyter-notebook/application": ^7.4.0-beta.3 + "@jupyter-notebook/tree": ^7.4.0-beta.3 "@jupyterlab/application": ~4.4.0-rc.0 "@jupyterlab/apputils": ~4.5.0-rc.0 "@jupyterlab/coreutils": ~6.4.0-rc.0 @@ -2464,11 +2464,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/tree@^7.4.0-beta.2, @jupyter-notebook/tree@workspace:packages/tree": +"@jupyter-notebook/tree@^7.4.0-beta.3, @jupyter-notebook/tree@workspace:packages/tree": version: 0.0.0-use.local resolution: "@jupyter-notebook/tree@workspace:packages/tree" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.2 + "@jupyter-notebook/application": ^7.4.0-beta.3 "@jupyterlab/application": ~4.4.0-rc.0 "@jupyterlab/apputils": ~4.5.0-rc.0 "@jupyterlab/coreutils": ~6.4.0-rc.0 @@ -2489,7 +2489,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/ui-components@^7.4.0-beta.2, @jupyter-notebook/ui-components@workspace:packages/ui-components": +"@jupyter-notebook/ui-components@^7.4.0-beta.3, @jupyter-notebook/ui-components@workspace:packages/ui-components": version: 0.0.0-use.local resolution: "@jupyter-notebook/ui-components@workspace:packages/ui-components" dependencies: From 68530960445ba3b49fdf6fff06e281fa9fa9152d Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Wed, 2 Apr 2025 19:23:27 +0200 Subject: [PATCH 012/143] Update to JupyterLab v4.4.0rc1 (#7622) Co-authored-by: github-actions[bot] --- app/package.json | 258 +- buildutils/package.json | 2 +- package.json | 2 +- packages/application-extension/package.json | 22 +- packages/application/package.json | 10 +- packages/console-extension/package.json | 6 +- packages/docmanager-extension/package.json | 10 +- .../documentsearch-extension/package.json | 4 +- packages/help-extension/package.json | 8 +- packages/lab-extension/package.json | 16 +- packages/notebook-extension/package.json | 14 +- packages/terminal-extension/package.json | 6 +- packages/tree-extension/package.json | 24 +- packages/tree/package.json | 22 +- packages/ui-components/package.json | 2 +- ui-tests/package.json | 2 +- ui-tests/yarn.lock | 1176 +++--- yarn.lock | 3231 +++++++++-------- 18 files changed, 2408 insertions(+), 2407 deletions(-) diff --git a/app/package.json b/app/package.json index 15b3ec5e1d..9d23d56540 100644 --- a/app/package.json +++ b/app/package.json @@ -26,85 +26,85 @@ "@jupyter/react-components": "~0.16.7", "@jupyter/web-components": "~0.16.7", "@jupyter/ydoc": "~3.0.0", - "@jupyterlab/application": "~4.4.0-rc.0", - "@jupyterlab/application-extension": "~4.4.0-rc.0", - "@jupyterlab/apputils": "~4.5.0-rc.0", - "@jupyterlab/apputils-extension": "~4.4.0-rc.0", - "@jupyterlab/attachments": "~4.4.0-rc.0", - "@jupyterlab/cell-toolbar": "~4.4.0-rc.0", - "@jupyterlab/cell-toolbar-extension": "~4.4.0-rc.0", - "@jupyterlab/celltags-extension": "~4.4.0-rc.0", - "@jupyterlab/codeeditor": "~4.4.0-rc.0", - "@jupyterlab/codemirror": "~4.4.0-rc.0", - "@jupyterlab/codemirror-extension": "~4.4.0-rc.0", - "@jupyterlab/completer": "~4.4.0-rc.0", - "@jupyterlab/completer-extension": "~4.4.0-rc.0", - "@jupyterlab/console": "~4.4.0-rc.0", - "@jupyterlab/console-extension": "~4.4.0-rc.0", - "@jupyterlab/coreutils": "~6.4.0-rc.0", - "@jupyterlab/csvviewer-extension": "~4.4.0-rc.0", - "@jupyterlab/debugger": "~4.4.0-rc.0", - "@jupyterlab/debugger-extension": "~4.4.0-rc.0", - "@jupyterlab/docmanager": "~4.4.0-rc.0", - "@jupyterlab/docmanager-extension": "~4.4.0-rc.0", - "@jupyterlab/documentsearch": "~4.4.0-rc.0", - "@jupyterlab/documentsearch-extension": "~4.4.0-rc.0", - "@jupyterlab/extensionmanager": "~4.4.0-rc.0", - "@jupyterlab/extensionmanager-extension": "~4.4.0-rc.0", - "@jupyterlab/filebrowser": "~4.4.0-rc.0", - "@jupyterlab/filebrowser-extension": "~4.4.0-rc.0", - "@jupyterlab/fileeditor": "~4.4.0-rc.0", - "@jupyterlab/fileeditor-extension": "~4.4.0-rc.0", - "@jupyterlab/help-extension": "~4.4.0-rc.0", - "@jupyterlab/htmlviewer": "~4.4.0-rc.0", - "@jupyterlab/htmlviewer-extension": "~4.4.0-rc.0", - "@jupyterlab/hub-extension": "~4.4.0-rc.0", - "@jupyterlab/imageviewer": "~4.4.0-rc.0", - "@jupyterlab/imageviewer-extension": "~4.4.0-rc.0", - "@jupyterlab/javascript-extension": "~4.4.0-rc.0", - "@jupyterlab/json-extension": "~4.4.0-rc.0", - "@jupyterlab/lsp": "~4.4.0-rc.0", - "@jupyterlab/lsp-extension": "~4.4.0-rc.0", - "@jupyterlab/mainmenu": "~4.4.0-rc.0", - "@jupyterlab/mainmenu-extension": "~4.4.0-rc.0", - "@jupyterlab/markdownviewer": "~4.4.0-rc.0", - "@jupyterlab/markdownviewer-extension": "~4.4.0-rc.0", - "@jupyterlab/markedparser-extension": "~4.4.0-rc.0", - "@jupyterlab/mathjax-extension": "~4.4.0-rc.0", - "@jupyterlab/mermaid": "~4.4.0-rc.0", - "@jupyterlab/mermaid-extension": "~4.4.0-rc.0", - "@jupyterlab/metadataform": "~4.4.0-rc.0", - "@jupyterlab/metadataform-extension": "~4.4.0-rc.0", - "@jupyterlab/notebook": "~4.4.0-rc.0", - "@jupyterlab/notebook-extension": "~4.4.0-rc.0", - "@jupyterlab/observables": "~5.4.0-rc.0", - "@jupyterlab/outputarea": "~4.4.0-rc.0", - "@jupyterlab/pdf-extension": "~4.4.0-rc.0", - "@jupyterlab/pluginmanager-extension": "~4.4.0-rc.0", - "@jupyterlab/rendermime": "~4.4.0-rc.0", - "@jupyterlab/rendermime-interfaces": "~3.12.0-rc.0", - "@jupyterlab/running-extension": "~4.4.0-rc.0", - "@jupyterlab/services": "~7.4.0-rc.0", - "@jupyterlab/services-extension": "~4.4.0-rc.0", - "@jupyterlab/settingeditor": "~4.4.0-rc.0", - "@jupyterlab/settingeditor-extension": "~4.4.0-rc.0", - "@jupyterlab/settingregistry": "~4.4.0-rc.0", - "@jupyterlab/shortcuts-extension": "~5.2.0-rc.0", - "@jupyterlab/statedb": "~4.4.0-rc.0", - "@jupyterlab/statusbar": "~4.4.0-rc.0", - "@jupyterlab/terminal": "~4.4.0-rc.0", - "@jupyterlab/terminal-extension": "~4.4.0-rc.0", - "@jupyterlab/theme-dark-extension": "~4.4.0-rc.0", - "@jupyterlab/theme-dark-high-contrast-extension": "~4.4.0-rc.0", - "@jupyterlab/theme-light-extension": "~4.4.0-rc.0", - "@jupyterlab/toc-extension": "~6.4.0-rc.0", - "@jupyterlab/tooltip": "~4.4.0-rc.0", - "@jupyterlab/tooltip-extension": "~4.4.0-rc.0", - "@jupyterlab/translation": "~4.4.0-rc.0", - "@jupyterlab/translation-extension": "~4.4.0-rc.0", - "@jupyterlab/ui-components": "~4.4.0-rc.0", - "@jupyterlab/ui-components-extension": "~4.4.0-rc.0", - "@jupyterlab/vega5-extension": "~4.4.0-rc.0", + "@jupyterlab/application": "~4.4.0-rc.1", + "@jupyterlab/application-extension": "~4.4.0-rc.1", + "@jupyterlab/apputils": "~4.5.0-rc.1", + "@jupyterlab/apputils-extension": "~4.4.0-rc.1", + "@jupyterlab/attachments": "~4.4.0-rc.1", + "@jupyterlab/cell-toolbar": "~4.4.0-rc.1", + "@jupyterlab/cell-toolbar-extension": "~4.4.0-rc.1", + "@jupyterlab/celltags-extension": "~4.4.0-rc.1", + "@jupyterlab/codeeditor": "~4.4.0-rc.1", + "@jupyterlab/codemirror": "~4.4.0-rc.1", + "@jupyterlab/codemirror-extension": "~4.4.0-rc.1", + "@jupyterlab/completer": "~4.4.0-rc.1", + "@jupyterlab/completer-extension": "~4.4.0-rc.1", + "@jupyterlab/console": "~4.4.0-rc.1", + "@jupyterlab/console-extension": "~4.4.0-rc.1", + "@jupyterlab/coreutils": "~6.4.0-rc.1", + "@jupyterlab/csvviewer-extension": "~4.4.0-rc.1", + "@jupyterlab/debugger": "~4.4.0-rc.1", + "@jupyterlab/debugger-extension": "~4.4.0-rc.1", + "@jupyterlab/docmanager": "~4.4.0-rc.1", + "@jupyterlab/docmanager-extension": "~4.4.0-rc.1", + "@jupyterlab/documentsearch": "~4.4.0-rc.1", + "@jupyterlab/documentsearch-extension": "~4.4.0-rc.1", + "@jupyterlab/extensionmanager": "~4.4.0-rc.1", + "@jupyterlab/extensionmanager-extension": "~4.4.0-rc.1", + "@jupyterlab/filebrowser": "~4.4.0-rc.1", + "@jupyterlab/filebrowser-extension": "~4.4.0-rc.1", + "@jupyterlab/fileeditor": "~4.4.0-rc.1", + "@jupyterlab/fileeditor-extension": "~4.4.0-rc.1", + "@jupyterlab/help-extension": "~4.4.0-rc.1", + "@jupyterlab/htmlviewer": "~4.4.0-rc.1", + "@jupyterlab/htmlviewer-extension": "~4.4.0-rc.1", + "@jupyterlab/hub-extension": "~4.4.0-rc.1", + "@jupyterlab/imageviewer": "~4.4.0-rc.1", + "@jupyterlab/imageviewer-extension": "~4.4.0-rc.1", + "@jupyterlab/javascript-extension": "~4.4.0-rc.1", + "@jupyterlab/json-extension": "~4.4.0-rc.1", + "@jupyterlab/lsp": "~4.4.0-rc.1", + "@jupyterlab/lsp-extension": "~4.4.0-rc.1", + "@jupyterlab/mainmenu": "~4.4.0-rc.1", + "@jupyterlab/mainmenu-extension": "~4.4.0-rc.1", + "@jupyterlab/markdownviewer": "~4.4.0-rc.1", + "@jupyterlab/markdownviewer-extension": "~4.4.0-rc.1", + "@jupyterlab/markedparser-extension": "~4.4.0-rc.1", + "@jupyterlab/mathjax-extension": "~4.4.0-rc.1", + "@jupyterlab/mermaid": "~4.4.0-rc.1", + "@jupyterlab/mermaid-extension": "~4.4.0-rc.1", + "@jupyterlab/metadataform": "~4.4.0-rc.1", + "@jupyterlab/metadataform-extension": "~4.4.0-rc.1", + "@jupyterlab/notebook": "~4.4.0-rc.1", + "@jupyterlab/notebook-extension": "~4.4.0-rc.1", + "@jupyterlab/observables": "~5.4.0-rc.1", + "@jupyterlab/outputarea": "~4.4.0-rc.1", + "@jupyterlab/pdf-extension": "~4.4.0-rc.1", + "@jupyterlab/pluginmanager-extension": "~4.4.0-rc.1", + "@jupyterlab/rendermime": "~4.4.0-rc.1", + "@jupyterlab/rendermime-interfaces": "~3.12.0-rc.1", + "@jupyterlab/running-extension": "~4.4.0-rc.1", + "@jupyterlab/services": "~7.4.0-rc.1", + "@jupyterlab/services-extension": "~4.4.0-rc.1", + "@jupyterlab/settingeditor": "~4.4.0-rc.1", + "@jupyterlab/settingeditor-extension": "~4.4.0-rc.1", + "@jupyterlab/settingregistry": "~4.4.0-rc.1", + "@jupyterlab/shortcuts-extension": "~5.2.0-rc.1", + "@jupyterlab/statedb": "~4.4.0-rc.1", + "@jupyterlab/statusbar": "~4.4.0-rc.1", + "@jupyterlab/terminal": "~4.4.0-rc.1", + "@jupyterlab/terminal-extension": "~4.4.0-rc.1", + "@jupyterlab/theme-dark-extension": "~4.4.0-rc.1", + "@jupyterlab/theme-dark-high-contrast-extension": "~4.4.0-rc.1", + "@jupyterlab/theme-light-extension": "~4.4.0-rc.1", + "@jupyterlab/toc-extension": "~6.4.0-rc.1", + "@jupyterlab/tooltip": "~4.4.0-rc.1", + "@jupyterlab/tooltip-extension": "~4.4.0-rc.1", + "@jupyterlab/translation": "~4.4.0-rc.1", + "@jupyterlab/translation-extension": "~4.4.0-rc.1", + "@jupyterlab/ui-components": "~4.4.0-rc.1", + "@jupyterlab/ui-components-extension": "~4.4.0-rc.1", + "@jupyterlab/vega5-extension": "~4.4.0-rc.1", "@lezer/common": "~1.2.1", "@lezer/highlight": "~1.2.0", "@lumino/algorithm": "~2.0.2", @@ -135,62 +135,62 @@ "@jupyter-notebook/tree": "^7.4.0-beta.3", "@jupyter-notebook/tree-extension": "^7.4.0-beta.3", "@jupyter-notebook/ui-components": "^7.4.0-beta.3", - "@jupyterlab/application-extension": "~4.4.0-rc.0", - "@jupyterlab/apputils-extension": "~4.4.0-rc.0", - "@jupyterlab/attachments": "~4.4.0-rc.0", - "@jupyterlab/cell-toolbar-extension": "~4.4.0-rc.0", - "@jupyterlab/celltags-extension": "~4.4.0-rc.0", - "@jupyterlab/codemirror": "~4.4.0-rc.0", - "@jupyterlab/codemirror-extension": "~4.4.0-rc.0", - "@jupyterlab/completer-extension": "~4.4.0-rc.0", - "@jupyterlab/console-extension": "~4.4.0-rc.0", - "@jupyterlab/coreutils": "~6.4.0-rc.0", - "@jupyterlab/csvviewer-extension": "~4.4.0-rc.0", - "@jupyterlab/debugger-extension": "~4.4.0-rc.0", - "@jupyterlab/docmanager-extension": "~4.4.0-rc.0", - "@jupyterlab/documentsearch-extension": "~4.4.0-rc.0", - "@jupyterlab/extensionmanager-extension": "~4.4.0-rc.0", - "@jupyterlab/filebrowser-extension": "~4.4.0-rc.0", - "@jupyterlab/fileeditor-extension": "~4.4.0-rc.0", - "@jupyterlab/help-extension": "~4.4.0-rc.0", - "@jupyterlab/htmlviewer-extension": "~4.4.0-rc.0", - "@jupyterlab/hub-extension": "~4.4.0-rc.0", - "@jupyterlab/imageviewer-extension": "~4.4.0-rc.0", - "@jupyterlab/javascript-extension": "~4.4.0-rc.0", - "@jupyterlab/json-extension": "~4.4.0-rc.0", - "@jupyterlab/lsp": "~4.4.0-rc.0", - "@jupyterlab/lsp-extension": "~4.4.0-rc.0", - "@jupyterlab/mainmenu-extension": "~4.4.0-rc.0", - "@jupyterlab/markdownviewer-extension": "~4.4.0-rc.0", - "@jupyterlab/markedparser-extension": "~4.4.0-rc.0", - "@jupyterlab/mathjax-extension": "~4.4.0-rc.0", - "@jupyterlab/mermaid-extension": "~4.4.0-rc.0", - "@jupyterlab/metadataform-extension": "~4.4.0-rc.0", - "@jupyterlab/notebook-extension": "~4.4.0-rc.0", - "@jupyterlab/pdf-extension": "~4.4.0-rc.0", - "@jupyterlab/pluginmanager-extension": "~4.4.0-rc.0", - "@jupyterlab/running-extension": "~4.4.0-rc.0", - "@jupyterlab/services-extension": "~4.4.0-rc.0", - "@jupyterlab/settingeditor": "~4.4.0-rc.0", - "@jupyterlab/settingeditor-extension": "~4.4.0-rc.0", - "@jupyterlab/shortcuts-extension": "~5.2.0-rc.0", - "@jupyterlab/terminal-extension": "~4.4.0-rc.0", - "@jupyterlab/theme-dark-extension": "~4.4.0-rc.0", - "@jupyterlab/theme-dark-high-contrast-extension": "~4.4.0-rc.0", - "@jupyterlab/theme-light-extension": "~4.4.0-rc.0", - "@jupyterlab/toc-extension": "~6.4.0-rc.0", - "@jupyterlab/tooltip-extension": "~4.4.0-rc.0", - "@jupyterlab/translation-extension": "~4.4.0-rc.0", - "@jupyterlab/ui-components-extension": "~4.4.0-rc.0", - "@jupyterlab/vega5-extension": "~4.4.0-rc.0", + "@jupyterlab/application-extension": "~4.4.0-rc.1", + "@jupyterlab/apputils-extension": "~4.4.0-rc.1", + "@jupyterlab/attachments": "~4.4.0-rc.1", + "@jupyterlab/cell-toolbar-extension": "~4.4.0-rc.1", + "@jupyterlab/celltags-extension": "~4.4.0-rc.1", + "@jupyterlab/codemirror": "~4.4.0-rc.1", + "@jupyterlab/codemirror-extension": "~4.4.0-rc.1", + "@jupyterlab/completer-extension": "~4.4.0-rc.1", + "@jupyterlab/console-extension": "~4.4.0-rc.1", + "@jupyterlab/coreutils": "~6.4.0-rc.1", + "@jupyterlab/csvviewer-extension": "~4.4.0-rc.1", + "@jupyterlab/debugger-extension": "~4.4.0-rc.1", + "@jupyterlab/docmanager-extension": "~4.4.0-rc.1", + "@jupyterlab/documentsearch-extension": "~4.4.0-rc.1", + "@jupyterlab/extensionmanager-extension": "~4.4.0-rc.1", + "@jupyterlab/filebrowser-extension": "~4.4.0-rc.1", + "@jupyterlab/fileeditor-extension": "~4.4.0-rc.1", + "@jupyterlab/help-extension": "~4.4.0-rc.1", + "@jupyterlab/htmlviewer-extension": "~4.4.0-rc.1", + "@jupyterlab/hub-extension": "~4.4.0-rc.1", + "@jupyterlab/imageviewer-extension": "~4.4.0-rc.1", + "@jupyterlab/javascript-extension": "~4.4.0-rc.1", + "@jupyterlab/json-extension": "~4.4.0-rc.1", + "@jupyterlab/lsp": "~4.4.0-rc.1", + "@jupyterlab/lsp-extension": "~4.4.0-rc.1", + "@jupyterlab/mainmenu-extension": "~4.4.0-rc.1", + "@jupyterlab/markdownviewer-extension": "~4.4.0-rc.1", + "@jupyterlab/markedparser-extension": "~4.4.0-rc.1", + "@jupyterlab/mathjax-extension": "~4.4.0-rc.1", + "@jupyterlab/mermaid-extension": "~4.4.0-rc.1", + "@jupyterlab/metadataform-extension": "~4.4.0-rc.1", + "@jupyterlab/notebook-extension": "~4.4.0-rc.1", + "@jupyterlab/pdf-extension": "~4.4.0-rc.1", + "@jupyterlab/pluginmanager-extension": "~4.4.0-rc.1", + "@jupyterlab/running-extension": "~4.4.0-rc.1", + "@jupyterlab/services-extension": "~4.4.0-rc.1", + "@jupyterlab/settingeditor": "~4.4.0-rc.1", + "@jupyterlab/settingeditor-extension": "~4.4.0-rc.1", + "@jupyterlab/shortcuts-extension": "~5.2.0-rc.1", + "@jupyterlab/terminal-extension": "~4.4.0-rc.1", + "@jupyterlab/theme-dark-extension": "~4.4.0-rc.1", + "@jupyterlab/theme-dark-high-contrast-extension": "~4.4.0-rc.1", + "@jupyterlab/theme-light-extension": "~4.4.0-rc.1", + "@jupyterlab/toc-extension": "~6.4.0-rc.1", + "@jupyterlab/tooltip-extension": "~4.4.0-rc.1", + "@jupyterlab/translation-extension": "~4.4.0-rc.1", + "@jupyterlab/ui-components-extension": "~4.4.0-rc.1", + "@jupyterlab/vega5-extension": "~4.4.0-rc.1", "@lumino/coreutils": "~2.2.0", "react": "^18.2.0", "react-dom": "^18.2.0", "yjs": "^13.5.40" }, "devDependencies": { - "@jupyterlab/builder": "~4.4.0-rc.0", - "@jupyterlab/buildutils": "~4.4.0-rc.0", + "@jupyterlab/builder": "~4.4.0-rc.1", + "@jupyterlab/buildutils": "~4.4.0-rc.1", "@types/rimraf": "^3.0.2", "css-loader": "~5.0.1", "extra-watch-webpack-plugin": "^1.0.3", diff --git a/buildutils/package.json b/buildutils/package.json index ef74af357d..7880ddbb82 100644 --- a/buildutils/package.json +++ b/buildutils/package.json @@ -29,7 +29,7 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/buildutils": "~4.4.0-rc.0", + "@jupyterlab/buildutils": "~4.4.0-rc.1", "commander": "^6.2.0", "fs-extra": "^9.1.0", "semver": "^7.6.3", diff --git a/package.json b/package.json index a8d9756527..be4d6d2abb 100644 --- a/package.json +++ b/package.json @@ -51,7 +51,7 @@ "yjs": "^13.5.40" }, "devDependencies": { - "@jupyterlab/buildutils": "~4.4.0-rc.0", + "@jupyterlab/buildutils": "~4.4.0-rc.1", "@typescript-eslint/eslint-plugin": "^5.55.0", "@typescript-eslint/parser": "^5.55.0", "eslint": "^8.36.0", diff --git a/packages/application-extension/package.json b/packages/application-extension/package.json index bf8459e062..13b93bf46c 100644 --- a/packages/application-extension/package.json +++ b/packages/application-extension/package.json @@ -40,17 +40,17 @@ "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.3", "@jupyter-notebook/ui-components": "^7.4.0-beta.3", - "@jupyterlab/application": "~4.4.0-rc.0", - "@jupyterlab/apputils": "~4.5.0-rc.0", - "@jupyterlab/codeeditor": "~4.4.0-rc.0", - "@jupyterlab/console": "~4.4.0-rc.0", - "@jupyterlab/coreutils": "~6.4.0-rc.0", - "@jupyterlab/docmanager": "~4.4.0-rc.0", - "@jupyterlab/docregistry": "~4.4.0-rc.0", - "@jupyterlab/mainmenu": "~4.4.0-rc.0", - "@jupyterlab/rendermime": "~4.4.0-rc.0", - "@jupyterlab/settingregistry": "~4.4.0-rc.0", - "@jupyterlab/translation": "~4.4.0-rc.0", + "@jupyterlab/application": "~4.4.0-rc.1", + "@jupyterlab/apputils": "~4.5.0-rc.1", + "@jupyterlab/codeeditor": "~4.4.0-rc.1", + "@jupyterlab/console": "~4.4.0-rc.1", + "@jupyterlab/coreutils": "~6.4.0-rc.1", + "@jupyterlab/docmanager": "~4.4.0-rc.1", + "@jupyterlab/docregistry": "~4.4.0-rc.1", + "@jupyterlab/mainmenu": "~4.4.0-rc.1", + "@jupyterlab/rendermime": "~4.4.0-rc.1", + "@jupyterlab/settingregistry": "~4.4.0-rc.1", + "@jupyterlab/translation": "~4.4.0-rc.1", "@lumino/coreutils": "^2.2.0", "@lumino/disposable": "^2.1.3", "@lumino/widgets": "^2.5.0" diff --git a/packages/application/package.json b/packages/application/package.json index df311f4012..b302d2c4d3 100644 --- a/packages/application/package.json +++ b/packages/application/package.json @@ -42,11 +42,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "~4.4.0-rc.0", - "@jupyterlab/coreutils": "~6.4.0-rc.0", - "@jupyterlab/docregistry": "~4.4.0-rc.0", - "@jupyterlab/rendermime-interfaces": "~3.12.0-rc.0", - "@jupyterlab/ui-components": "~4.4.0-rc.0", + "@jupyterlab/application": "~4.4.0-rc.1", + "@jupyterlab/coreutils": "~6.4.0-rc.1", + "@jupyterlab/docregistry": "~4.4.0-rc.1", + "@jupyterlab/rendermime-interfaces": "~3.12.0-rc.1", + "@jupyterlab/ui-components": "~4.4.0-rc.1", "@lumino/algorithm": "^2.0.2", "@lumino/coreutils": "^2.2.0", "@lumino/messaging": "^2.0.2", diff --git a/packages/console-extension/package.json b/packages/console-extension/package.json index e3bbc64246..a705e2ec06 100644 --- a/packages/console-extension/package.json +++ b/packages/console-extension/package.json @@ -39,9 +39,9 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.3", - "@jupyterlab/application": "~4.4.0-rc.0", - "@jupyterlab/console": "~4.4.0-rc.0", - "@jupyterlab/coreutils": "~6.4.0-rc.0", + "@jupyterlab/application": "~4.4.0-rc.1", + "@jupyterlab/console": "~4.4.0-rc.1", + "@jupyterlab/coreutils": "~6.4.0-rc.1", "@lumino/algorithm": "^2.0.2" }, "devDependencies": { diff --git a/packages/docmanager-extension/package.json b/packages/docmanager-extension/package.json index 150ab092a0..c53a5287d5 100644 --- a/packages/docmanager-extension/package.json +++ b/packages/docmanager-extension/package.json @@ -39,11 +39,11 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.3", - "@jupyterlab/application": "~4.4.0-rc.0", - "@jupyterlab/coreutils": "~6.4.0-rc.0", - "@jupyterlab/docmanager": "~4.4.0-rc.0", - "@jupyterlab/docregistry": "~4.4.0-rc.0", - "@jupyterlab/services": "~7.4.0-rc.0", + "@jupyterlab/application": "~4.4.0-rc.1", + "@jupyterlab/coreutils": "~6.4.0-rc.1", + "@jupyterlab/docmanager": "~4.4.0-rc.1", + "@jupyterlab/docregistry": "~4.4.0-rc.1", + "@jupyterlab/services": "~7.4.0-rc.1", "@lumino/algorithm": "^2.0.2", "@lumino/signaling": "^2.1.3" }, diff --git a/packages/documentsearch-extension/package.json b/packages/documentsearch-extension/package.json index 1e35450a4e..8b577f3524 100644 --- a/packages/documentsearch-extension/package.json +++ b/packages/documentsearch-extension/package.json @@ -39,8 +39,8 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.3", - "@jupyterlab/application": "~4.4.0-rc.0", - "@jupyterlab/documentsearch": "~4.4.0-rc.0", + "@jupyterlab/application": "~4.4.0-rc.1", + "@jupyterlab/documentsearch": "~4.4.0-rc.1", "@lumino/widgets": "^2.5.0" }, "devDependencies": { diff --git a/packages/help-extension/package.json b/packages/help-extension/package.json index 953f491834..8d26bb0457 100644 --- a/packages/help-extension/package.json +++ b/packages/help-extension/package.json @@ -39,10 +39,10 @@ }, "dependencies": { "@jupyter-notebook/ui-components": "^7.4.0-beta.3", - "@jupyterlab/application": "~4.4.0-rc.0", - "@jupyterlab/apputils": "~4.5.0-rc.0", - "@jupyterlab/mainmenu": "~4.4.0-rc.0", - "@jupyterlab/translation": "~4.4.0-rc.0", + "@jupyterlab/application": "~4.4.0-rc.1", + "@jupyterlab/apputils": "~4.5.0-rc.1", + "@jupyterlab/mainmenu": "~4.4.0-rc.1", + "@jupyterlab/translation": "~4.4.0-rc.1", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/packages/lab-extension/package.json b/packages/lab-extension/package.json index cbb48a81f5..3f2d0cdcac 100644 --- a/packages/lab-extension/package.json +++ b/packages/lab-extension/package.json @@ -44,18 +44,18 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.3", - "@jupyterlab/application": "~4.4.0-rc.0", - "@jupyterlab/apputils": "~4.5.0-rc.0", - "@jupyterlab/coreutils": "~6.4.0-rc.0", - "@jupyterlab/docregistry": "~4.4.0-rc.0", - "@jupyterlab/notebook": "~4.4.0-rc.0", - "@jupyterlab/translation": "~4.4.0-rc.0", - "@jupyterlab/ui-components": "~4.4.0-rc.0", + "@jupyterlab/application": "~4.4.0-rc.1", + "@jupyterlab/apputils": "~4.5.0-rc.1", + "@jupyterlab/coreutils": "~6.4.0-rc.1", + "@jupyterlab/docregistry": "~4.4.0-rc.1", + "@jupyterlab/notebook": "~4.4.0-rc.1", + "@jupyterlab/translation": "~4.4.0-rc.1", + "@jupyterlab/ui-components": "~4.4.0-rc.1", "@lumino/commands": "^2.3.1", "@lumino/disposable": "^2.1.3" }, "devDependencies": { - "@jupyterlab/builder": "~4.4.0-rc.0", + "@jupyterlab/builder": "~4.4.0-rc.1", "rimraf": "^3.0.2", "typescript": "~5.5.4" }, diff --git a/packages/notebook-extension/package.json b/packages/notebook-extension/package.json index a15a5e215f..1beaafe8c5 100644 --- a/packages/notebook-extension/package.json +++ b/packages/notebook-extension/package.json @@ -39,13 +39,13 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.3", - "@jupyterlab/application": "~4.4.0-rc.0", - "@jupyterlab/apputils": "~4.5.0-rc.0", - "@jupyterlab/cells": "~4.4.0-rc.0", - "@jupyterlab/docmanager": "~4.4.0-rc.0", - "@jupyterlab/notebook": "~4.4.0-rc.0", - "@jupyterlab/settingregistry": "~4.4.0-rc.0", - "@jupyterlab/translation": "~4.4.0-rc.0", + "@jupyterlab/application": "~4.4.0-rc.1", + "@jupyterlab/apputils": "~4.5.0-rc.1", + "@jupyterlab/cells": "~4.4.0-rc.1", + "@jupyterlab/docmanager": "~4.4.0-rc.1", + "@jupyterlab/notebook": "~4.4.0-rc.1", + "@jupyterlab/settingregistry": "~4.4.0-rc.1", + "@jupyterlab/translation": "~4.4.0-rc.1", "@lumino/polling": "^2.1.3", "@lumino/widgets": "^2.5.0", "react": "^18.2.0", diff --git a/packages/terminal-extension/package.json b/packages/terminal-extension/package.json index feb60f7d61..1b21e4ddf7 100644 --- a/packages/terminal-extension/package.json +++ b/packages/terminal-extension/package.json @@ -39,9 +39,9 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.3", - "@jupyterlab/application": "~4.4.0-rc.0", - "@jupyterlab/coreutils": "~6.4.0-rc.0", - "@jupyterlab/terminal": "~4.4.0-rc.0", + "@jupyterlab/application": "~4.4.0-rc.1", + "@jupyterlab/coreutils": "~6.4.0-rc.1", + "@jupyterlab/terminal": "~4.4.0-rc.1", "@lumino/algorithm": "^2.0.2" }, "devDependencies": { diff --git a/packages/tree-extension/package.json b/packages/tree-extension/package.json index fda49c5680..aa983a6d6a 100644 --- a/packages/tree-extension/package.json +++ b/packages/tree-extension/package.json @@ -40,18 +40,18 @@ "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.3", "@jupyter-notebook/tree": "^7.4.0-beta.3", - "@jupyterlab/application": "~4.4.0-rc.0", - "@jupyterlab/apputils": "~4.5.0-rc.0", - "@jupyterlab/coreutils": "~6.4.0-rc.0", - "@jupyterlab/docmanager": "~4.4.0-rc.0", - "@jupyterlab/filebrowser": "~4.4.0-rc.0", - "@jupyterlab/mainmenu": "~4.4.0-rc.0", - "@jupyterlab/services": "~7.4.0-rc.0", - "@jupyterlab/settingeditor": "~4.4.0-rc.0", - "@jupyterlab/settingregistry": "~4.4.0-rc.0", - "@jupyterlab/statedb": "~4.4.0-rc.0", - "@jupyterlab/translation": "~4.4.0-rc.0", - "@jupyterlab/ui-components": "~4.4.0-rc.0", + "@jupyterlab/application": "~4.4.0-rc.1", + "@jupyterlab/apputils": "~4.5.0-rc.1", + "@jupyterlab/coreutils": "~6.4.0-rc.1", + "@jupyterlab/docmanager": "~4.4.0-rc.1", + "@jupyterlab/filebrowser": "~4.4.0-rc.1", + "@jupyterlab/mainmenu": "~4.4.0-rc.1", + "@jupyterlab/services": "~7.4.0-rc.1", + "@jupyterlab/settingeditor": "~4.4.0-rc.1", + "@jupyterlab/settingregistry": "~4.4.0-rc.1", + "@jupyterlab/statedb": "~4.4.0-rc.1", + "@jupyterlab/translation": "~4.4.0-rc.1", + "@jupyterlab/ui-components": "~4.4.0-rc.1", "@lumino/algorithm": "^2.0.2", "@lumino/commands": "^2.3.1", "@lumino/widgets": "^2.5.0" diff --git a/packages/tree/package.json b/packages/tree/package.json index 689f5d7ec7..dbe7a7f73c 100644 --- a/packages/tree/package.json +++ b/packages/tree/package.json @@ -39,17 +39,17 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-beta.3", - "@jupyterlab/application": "~4.4.0-rc.0", - "@jupyterlab/apputils": "~4.5.0-rc.0", - "@jupyterlab/coreutils": "~6.4.0-rc.0", - "@jupyterlab/docmanager": "~4.4.0-rc.0", - "@jupyterlab/filebrowser": "~4.4.0-rc.0", - "@jupyterlab/mainmenu": "~4.4.0-rc.0", - "@jupyterlab/services": "~7.4.0-rc.0", - "@jupyterlab/settingregistry": "~4.4.0-rc.0", - "@jupyterlab/statedb": "~4.4.0-rc.0", - "@jupyterlab/translation": "~4.4.0-rc.0", - "@jupyterlab/ui-components": "~4.4.0-rc.0", + "@jupyterlab/application": "~4.4.0-rc.1", + "@jupyterlab/apputils": "~4.5.0-rc.1", + "@jupyterlab/coreutils": "~6.4.0-rc.1", + "@jupyterlab/docmanager": "~4.4.0-rc.1", + "@jupyterlab/filebrowser": "~4.4.0-rc.1", + "@jupyterlab/mainmenu": "~4.4.0-rc.1", + "@jupyterlab/services": "~7.4.0-rc.1", + "@jupyterlab/settingregistry": "~4.4.0-rc.1", + "@jupyterlab/statedb": "~4.4.0-rc.1", + "@jupyterlab/translation": "~4.4.0-rc.1", + "@jupyterlab/ui-components": "~4.4.0-rc.1", "@lumino/algorithm": "^2.0.2", "@lumino/commands": "^2.3.1", "@lumino/coreutils": "^2.2.0", diff --git a/packages/ui-components/package.json b/packages/ui-components/package.json index 9c56091355..2b84d5a7f4 100644 --- a/packages/ui-components/package.json +++ b/packages/ui-components/package.json @@ -42,7 +42,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/ui-components": "~4.4.0-rc.0", + "@jupyterlab/ui-components": "~4.4.0-rc.1", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/ui-tests/package.json b/ui-tests/package.json index 2d4ad2f4ef..6818f91342 100644 --- a/ui-tests/package.json +++ b/ui-tests/package.json @@ -15,7 +15,7 @@ "test:update": "playwright test --update-snapshots" }, "dependencies": { - "@jupyterlab/galata": "~5.4.0-rc.0", + "@jupyterlab/galata": "~5.4.0-rc.1", "@playwright/test": "~1.51.0", "rimraf": "^3.0.2" } diff --git a/ui-tests/yarn.lock b/ui-tests/yarn.lock index dc831b8226..be41d74e35 100644 --- a/ui-tests/yarn.lock +++ b/ui-tests/yarn.lock @@ -278,7 +278,7 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyter-notebook/ui-tests@workspace:." dependencies: - "@jupyterlab/galata": ~5.4.0-rc.0 + "@jupyterlab/galata": ~5.4.0-rc.1 "@playwright/test": ~1.51.0 rimraf: ^3.0.2 languageName: unknown @@ -320,140 +320,140 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/application@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/application@npm:4.4.0-rc.0" +"@jupyterlab/application@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/application@npm:4.4.0-rc.1" dependencies: "@fortawesome/fontawesome-free": ^5.12.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/docregistry": ^4.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/statedb": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/application": ^2.4.2 - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/polling": ^2.1.3 - "@lumino/properties": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 - checksum: b2f940de908502b6a6bd77ea5b47c3d928ac85bbca5db2a89544d2136fc607d2e51b2ab74c3ef36926ccda5f499707c98882d8230c9861980d9e70cbd2b2b51c - languageName: node - linkType: hard - -"@jupyterlab/apputils@npm:^4.5.0-rc.0": - version: 4.5.0-rc.0 - resolution: "@jupyterlab/apputils@npm:4.5.0-rc.0" - dependencies: - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/observables": ^5.4.0-rc.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/statedb": ^4.4.0-rc.0 - "@jupyterlab/statusbar": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/domutils": ^2.0.2 - "@lumino/messaging": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/virtualdom": ^2.0.2 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/statedb": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/application": ^2.4.3 + "@lumino/commands": ^2.3.2 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/messaging": ^2.0.3 + "@lumino/polling": ^2.1.4 + "@lumino/properties": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 + checksum: 1feaa59a203d0627020282906f33c3d482e8d0c9c6dc54f93c76e6eaddabe66670b8431ccebb45957ec2ad9791007e6f0e2a9975314e0786d602fe4f00c9c0b2 + languageName: node + linkType: hard + +"@jupyterlab/apputils@npm:^4.5.0-rc.1": + version: 4.5.0-rc.1 + resolution: "@jupyterlab/apputils@npm:4.5.0-rc.1" + dependencies: + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/observables": ^5.4.0-rc.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/statedb": ^4.4.0-rc.1 + "@jupyterlab/statusbar": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/commands": ^2.3.2 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/domutils": ^2.0.3 + "@lumino/messaging": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/virtualdom": ^2.0.3 + "@lumino/widgets": ^2.7.0 "@types/react": ^18.0.26 react: ^18.2.0 sanitize-html: ~2.12.1 - checksum: 3693d10d995d16394d019ec66fc981bc3d6fd478cee359d926c16a8b67a228b336b62eb2c0bb66a6acc5b742047e725fa6aff67ad11631db585f77b31fd68952 + checksum: 62765932efb83625ce251ddb2a4d43476ced1d2b3a656a7cea2f3f284502461dae49b7eeb33bff21d8f6612abfa52115b5b3b1e61c81bcf606afcf9d6d973ea2 languageName: node linkType: hard -"@jupyterlab/attachments@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/attachments@npm:4.4.0-rc.0" +"@jupyterlab/attachments@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/attachments@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/nbformat": ^4.4.0-rc.0 - "@jupyterlab/observables": ^5.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 - "@lumino/disposable": ^2.1.3 - "@lumino/signaling": ^2.1.3 - checksum: 5b8b23559cc5ce6eac4c1fceefb6ddec5b0bd3b8726f92d6ab62390466adc9c03d9e7172be32b97431d06fbebca83f820792e9380fd20d7572a05b6baae61555 + "@jupyterlab/nbformat": ^4.4.0-rc.1 + "@jupyterlab/observables": ^5.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + "@lumino/disposable": ^2.1.4 + "@lumino/signaling": ^2.1.4 + checksum: 277f79b7499cd021832ec88e36395e5c3f9386c71b4c5c38b042d8d0a9c46a8ef2fc7b916b233d0c177f54dbb016b0d6f044f9c48102763f500b0e3a250c8579 languageName: node linkType: hard -"@jupyterlab/cells@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/cells@npm:4.4.0-rc.0" +"@jupyterlab/cells@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/cells@npm:4.4.0-rc.1" dependencies: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/attachments": ^4.4.0-rc.0 - "@jupyterlab/codeeditor": ^4.4.0-rc.0 - "@jupyterlab/codemirror": ^4.4.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/documentsearch": ^4.4.0-rc.0 - "@jupyterlab/filebrowser": ^4.4.0-rc.0 - "@jupyterlab/nbformat": ^4.4.0-rc.0 - "@jupyterlab/observables": ^5.4.0-rc.0 - "@jupyterlab/outputarea": ^4.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/toc": ^6.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/coreutils": ^2.2.0 - "@lumino/domutils": ^2.0.2 - "@lumino/dragdrop": ^2.1.5 - "@lumino/messaging": ^2.0.2 - "@lumino/polling": ^2.1.3 - "@lumino/signaling": ^2.1.3 - "@lumino/virtualdom": ^2.0.2 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/attachments": ^4.4.0-rc.1 + "@jupyterlab/codeeditor": ^4.4.0-rc.1 + "@jupyterlab/codemirror": ^4.4.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/documentsearch": ^4.4.0-rc.1 + "@jupyterlab/filebrowser": ^4.4.0-rc.1 + "@jupyterlab/nbformat": ^4.4.0-rc.1 + "@jupyterlab/observables": ^5.4.0-rc.1 + "@jupyterlab/outputarea": ^4.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/toc": ^6.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/coreutils": ^2.2.1 + "@lumino/domutils": ^2.0.3 + "@lumino/dragdrop": ^2.1.6 + "@lumino/messaging": ^2.0.3 + "@lumino/polling": ^2.1.4 + "@lumino/signaling": ^2.1.4 + "@lumino/virtualdom": ^2.0.3 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: e7259eb4bd4c364f3008b989c4c91870977fe0e89e95246407021cb5efec53330223234c3dc0e3c05976e43dad4e8740d3f790b5ce984eb64fe324e3e6428f79 + checksum: 5302104f2e467990247b6da3b9f155b975b11b5306b97f21a71f988e0ceb6193865c47f77f8050ef23eec3ba3d5d96cc514c9845ec10e884f826642ee8536a25 languageName: node linkType: hard -"@jupyterlab/codeeditor@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/codeeditor@npm:4.4.0-rc.0" +"@jupyterlab/codeeditor@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/codeeditor@npm:4.4.0-rc.1" dependencies: "@codemirror/state": ^6.5.0 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/nbformat": ^4.4.0-rc.0 - "@jupyterlab/observables": ^5.4.0-rc.0 - "@jupyterlab/statusbar": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/dragdrop": ^2.1.5 - "@lumino/messaging": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/nbformat": ^4.4.0-rc.1 + "@jupyterlab/observables": ^5.4.0-rc.1 + "@jupyterlab/statusbar": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/dragdrop": ^2.1.6 + "@lumino/messaging": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 703a663518fae5d0fa7ad98c157f4c1febcf7ca31f7c1b8cc548de75d5c0898b437df2f77d29b7c209e5888b0cecb2864a0844d19e9755eb22ee977e2a36c72a + checksum: 4c79f06ea5f3e65eec610c74817ed0eba2d6e7d7f58327021b58559bad291fd7ddd5a3388ea5b0bd8cb0614ec5d82d941633f0e0aed2348840ffa2c746bca9eb languageName: node linkType: hard -"@jupyterlab/codemirror@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/codemirror@npm:4.4.0-rc.0" +"@jupyterlab/codemirror@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/codemirror@npm:4.4.0-rc.1" dependencies: "@codemirror/autocomplete": ^6.18.3 "@codemirror/commands": ^6.7.1 @@ -476,238 +476,238 @@ __metadata: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/codeeditor": ^4.4.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/documentsearch": ^4.4.0-rc.0 - "@jupyterlab/nbformat": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/codeeditor": ^4.4.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/documentsearch": ^4.4.0-rc.1 + "@jupyterlab/nbformat": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 "@lezer/common": ^1.2.1 "@lezer/generator": ^1.7.0 "@lezer/highlight": ^1.2.0 "@lezer/markdown": ^1.3.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/signaling": ^2.1.3 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/signaling": ^2.1.4 yjs: ^13.5.40 - checksum: 349059c4ec6faadbd1d32be152ea35e808c656f3f2c1d7e974db2e737d51b2e392da2eeb6c4f35ed56aed7169d03ae93049b0a57fc957e6da4b2aba74e155fdd + checksum: 9c0e3b938837181c763130025462f66b45dbb0fad7ef47fd4d6497d4589cdd08cbcd635413bcfe114b94b5228e84366885ad9ec8d28dbd0422e5ebe70c815b06 languageName: node linkType: hard -"@jupyterlab/console@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/console@npm:4.4.0-rc.0" +"@jupyterlab/console@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/console@npm:4.4.0-rc.1" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/cells": ^4.4.0-rc.0 - "@jupyterlab/codeeditor": ^4.4.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/nbformat": ^4.4.0-rc.0 - "@jupyterlab/observables": ^5.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/dragdrop": ^2.1.5 - "@lumino/messaging": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 - checksum: 9b0a9e91a47fd787c78927d746bb6055c0c581ce569e866a8f87fdeceac9fe27c7935e14e70ac1ec8a09d1f48276b9ceb65a8771861082dc0e8b6d6aa3380828 - languageName: node - linkType: hard - -"@jupyterlab/coreutils@npm:^6.4.0-rc.0": - version: 6.4.0-rc.0 - resolution: "@jupyterlab/coreutils@npm:6.4.0-rc.0" - dependencies: - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/signaling": ^2.1.3 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/cells": ^4.4.0-rc.1 + "@jupyterlab/codeeditor": ^4.4.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/nbformat": ^4.4.0-rc.1 + "@jupyterlab/observables": ^5.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/dragdrop": ^2.1.6 + "@lumino/messaging": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 + checksum: 169152c0f1f6cb044c711278e2948bf95fae36877d9339240a5fbdb1fa0f030e0f9bef1323f4200cc62760dc009fd8c3ab0cd99e44dbac69564301b3d1dbf8c2 + languageName: node + linkType: hard + +"@jupyterlab/coreutils@npm:^6.4.0-rc.1": + version: 6.4.0-rc.1 + resolution: "@jupyterlab/coreutils@npm:6.4.0-rc.1" + dependencies: + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/signaling": ^2.1.4 minimist: ~1.2.0 path-browserify: ^1.0.0 url-parse: ~1.5.4 - checksum: dff140ce23ba87aa8c8d941e299e2489365055343eaa520ba06d406d94bdf4fd02b88af9cc782ff14c800bc25ed6bf6d7cdc96e084f42d326ff120973c898cde + checksum: 1bd469a1af2ba409f2be12b8a82adea57f2781c9d6e3d7e10e784636a15dd523e37dcf5500bab1d47b3a63edadecfc46119f73f39625a06115f0c01c23ffd68e languageName: node linkType: hard -"@jupyterlab/debugger@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/debugger@npm:4.4.0-rc.0" +"@jupyterlab/debugger@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/debugger@npm:4.4.0-rc.1" dependencies: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/react-components": ^0.16.6 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/cells": ^4.4.0-rc.0 - "@jupyterlab/codeeditor": ^4.4.0-rc.0 - "@jupyterlab/codemirror": ^4.4.0-rc.0 - "@jupyterlab/console": ^4.4.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/docregistry": ^4.4.0-rc.0 - "@jupyterlab/fileeditor": ^4.4.0-rc.0 - "@jupyterlab/notebook": ^4.4.0-rc.0 - "@jupyterlab/observables": ^5.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/datagrid": ^2.5.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/polling": ^2.1.3 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/cells": ^4.4.0-rc.1 + "@jupyterlab/codeeditor": ^4.4.0-rc.1 + "@jupyterlab/codemirror": ^4.4.0-rc.1 + "@jupyterlab/console": ^4.4.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/fileeditor": ^4.4.0-rc.1 + "@jupyterlab/notebook": ^4.4.0-rc.1 + "@jupyterlab/observables": ^5.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/commands": ^2.3.2 + "@lumino/coreutils": ^2.2.1 + "@lumino/datagrid": ^2.5.1 + "@lumino/disposable": ^2.1.4 + "@lumino/messaging": ^2.0.3 + "@lumino/polling": ^2.1.4 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 "@vscode/debugprotocol": ^1.51.0 react: ^18.2.0 - checksum: 8b80487e71fd75888da3add74169b33880147891d1d5f07fd4b738f729f0ee99a0787fbd7c24a2f0a3c7fe2bd6ee49d365feb3cc0a19531260f93afc6ed5957d - languageName: node - linkType: hard - -"@jupyterlab/docmanager@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/docmanager@npm:4.4.0-rc.0" - dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/docregistry": ^4.4.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/statedb": ^4.4.0-rc.0 - "@jupyterlab/statusbar": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/polling": ^2.1.3 - "@lumino/properties": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 + checksum: e7f331dda8c82c29a04de9cb9fecc09bf9f1a8439f7da0d510b7ca40bbd6a8018c20486810e052081eb9bde108c2868a01d0db3c900e1e4ed1f53206abb62912 + languageName: node + linkType: hard + +"@jupyterlab/docmanager@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/docmanager@npm:4.4.0-rc.1" + dependencies: + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/statedb": ^4.4.0-rc.1 + "@jupyterlab/statusbar": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/messaging": ^2.0.3 + "@lumino/polling": ^2.1.4 + "@lumino/properties": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 88ac773b96db81759c915674cd03d9b436484540bac0198bd77aa9039a414abe1ea5aed9b6ada2109408a983b39d78eb11b681f7dde4290f6b732185f66f3456 + checksum: 1e07946f362d8ad044c1afd549a62147f3fd94dfafa4d79c89aba659adc5db8b3ebcf25cd9a9c3bbba0dbfeab030c98815e042e420bb403e30210137add125d2 languageName: node linkType: hard -"@jupyterlab/docregistry@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/docregistry@npm:4.4.0-rc.0" +"@jupyterlab/docregistry@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/docregistry@npm:4.4.0-rc.1" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/codeeditor": ^4.4.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/observables": ^5.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/properties": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/codeeditor": ^4.4.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/observables": ^5.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/messaging": ^2.0.3 + "@lumino/properties": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: bdd65304c1b3132d9962a237f09d3d83915ec3236c256c7aad9ad51f258fe1e34be29cb1b2dc49256965d83c0c80cb6db2224e1e141e2bf62becb266dc88456c + checksum: eea0e455c63d09624beb5738835ef432c093fde2176db953a30dd00ce9066c65ca80a335fad77d2f81ba491298bf36d28337d37de53c4653ca4489207c0500ad languageName: node linkType: hard -"@jupyterlab/documentsearch@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/documentsearch@npm:4.4.0-rc.0" +"@jupyterlab/documentsearch@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/documentsearch@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/polling": ^2.1.3 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/commands": ^2.3.2 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/messaging": ^2.0.3 + "@lumino/polling": ^2.1.4 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 6f27b4e0955843e609ad9e96da289da195fe925b5080d52727df2e0e6d7d0801708d6f55abdd0c2dcb481adeb5e136310857724f5a1802048bb59bc84130a3a1 - languageName: node - linkType: hard - -"@jupyterlab/filebrowser@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/filebrowser@npm:4.4.0-rc.0" - dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/docmanager": ^4.4.0-rc.0 - "@jupyterlab/docregistry": ^4.4.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/statedb": ^4.4.0-rc.0 - "@jupyterlab/statusbar": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/domutils": ^2.0.2 - "@lumino/dragdrop": ^2.1.5 - "@lumino/messaging": ^2.0.2 - "@lumino/polling": ^2.1.3 - "@lumino/signaling": ^2.1.3 - "@lumino/virtualdom": ^2.0.2 - "@lumino/widgets": ^2.6.0 + checksum: e5da695174e79a4484dd6fcdad087f49919e1cafbcd2d0b7338e42a841e0dbb13309317c174ab787fe70c067218f529d41fc7e15b85524bc00a6a24da62a09b5 + languageName: node + linkType: hard + +"@jupyterlab/filebrowser@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/filebrowser@npm:4.4.0-rc.1" + dependencies: + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/docmanager": ^4.4.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/statedb": ^4.4.0-rc.1 + "@jupyterlab/statusbar": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/domutils": ^2.0.3 + "@lumino/dragdrop": ^2.1.6 + "@lumino/messaging": ^2.0.3 + "@lumino/polling": ^2.1.4 + "@lumino/signaling": ^2.1.4 + "@lumino/virtualdom": ^2.0.3 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: f4bb40585c51810d402243256ccd608b1bd8698039642a1329f4c372497a5da82f7d64022be142b6e4a89706d87f24e51625ee6354e68055eba22ba3109fe9d9 + checksum: 31ba501c3bab8a8ff54d673e693336486604a165b64f0255687f9d833c31877b4fa1cd73e1ef92d3ed9396ae740fe259b4843011e07efe9b2085fff207190130 languageName: node linkType: hard -"@jupyterlab/fileeditor@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/fileeditor@npm:4.4.0-rc.0" +"@jupyterlab/fileeditor@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/fileeditor@npm:4.4.0-rc.1" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/codeeditor": ^4.4.0-rc.0 - "@jupyterlab/codemirror": ^4.4.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/docregistry": ^4.4.0-rc.0 - "@jupyterlab/documentsearch": ^4.4.0-rc.0 - "@jupyterlab/lsp": ^4.4.0-rc.0 - "@jupyterlab/statusbar": ^4.4.0-rc.0 - "@jupyterlab/toc": ^6.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/messaging": ^2.0.2 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/codeeditor": ^4.4.0-rc.1 + "@jupyterlab/codemirror": ^4.4.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/documentsearch": ^4.4.0-rc.1 + "@jupyterlab/lsp": ^4.4.0-rc.1 + "@jupyterlab/statusbar": ^4.4.0-rc.1 + "@jupyterlab/toc": ^6.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/commands": ^2.3.2 + "@lumino/coreutils": ^2.2.1 + "@lumino/messaging": ^2.0.3 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 regexp-match-indices: ^1.0.2 - checksum: 2301e0620bab6e33dcd09385f9213933afd9c9d6837532ed3b3d265e0c658604597592d823bbe517d037a55f1d333313c979c208842506b68a2bae91292fcc9e + checksum: 761d5eec861bede4a3898489b75b4cec5ce03d55c576bc12448f900ebe449bf90e5cf17c8a41bb130a2d83cb999bf1a3e0745ddf211a16f78252b685b88ce308 languageName: node linkType: hard -"@jupyterlab/galata@npm:~5.4.0-rc.0": - version: 5.4.0-rc.0 - resolution: "@jupyterlab/galata@npm:5.4.0-rc.0" +"@jupyterlab/galata@npm:~5.4.0-rc.1": + version: 5.4.0-rc.1 + resolution: "@jupyterlab/galata@npm:5.4.0-rc.1" dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/debugger": ^4.4.0-rc.0 - "@jupyterlab/docmanager": ^4.4.0-rc.0 - "@jupyterlab/nbformat": ^4.4.0-rc.0 - "@jupyterlab/notebook": ^4.4.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/debugger": ^4.4.0-rc.1 + "@jupyterlab/docmanager": ^4.4.0-rc.1 + "@jupyterlab/nbformat": ^4.4.0-rc.1 + "@jupyterlab/notebook": ^4.4.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 "@playwright/test": ^1.51.0 "@stdlib/stats": ~0.0.13 fs-extra: ^10.1.0 @@ -717,30 +717,30 @@ __metadata: vega: ^5.20.0 vega-lite: ^5.6.1 vega-statistics: ^1.7.9 - checksum: 92b8ede6b40c2c0652fcf2fb31ea9bee7fac7805ad740e5a71d32b2e205c57b0fe774f98a6c054be015b8ae670935af128da2c5438631f9ef1a3e5a1eb7790b8 + checksum: aec0a83bdff9bd1c8e501a7340ce4ef369dae6300e9ff0271a064227c116a75b3f0f0844ebff365b2054a0037b6f5ceed903460c8d938fc6272f4c5dbd051ce1 languageName: node linkType: hard -"@jupyterlab/lsp@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/lsp@npm:4.4.0-rc.0" +"@jupyterlab/lsp@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/lsp@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/codeeditor": ^4.4.0-rc.0 - "@jupyterlab/codemirror": ^4.4.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/docregistry": ^4.4.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/codeeditor": ^4.4.0-rc.1 + "@jupyterlab/codemirror": ^4.4.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 lodash.mergewith: ^4.6.1 vscode-jsonrpc: ^6.0.0 vscode-languageserver-protocol: ^3.17.0 vscode-ws-jsonrpc: ~1.0.2 - checksum: e06267e976756be96021c7299ee738e4ef4c74ec6f5c76fa3caa6b6b36fe2296dc07b56deb0b6b8b02e27554e8ff129b72b9deecfbe3f4fae46931cbeb720c2b + checksum: da3edacdb16cfa01e7a078f65f00ff168e6f0b42a28798422483f77df0130972f233058d9877322b44f06d1658693dbff82c58acde74095f67e62bbad43d64cc languageName: node linkType: hard @@ -753,241 +753,241 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/nbformat@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/nbformat@npm:4.4.0-rc.0" +"@jupyterlab/nbformat@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/nbformat@npm:4.4.0-rc.1" dependencies: - "@lumino/coreutils": ^2.2.0 - checksum: 96c59e11087d3ab5abd4872e78dea9035c493669591de18f37600aabb61d5c9c325ea9b12596cd2db471c886a337be76f94a2a59ce48b71769c0e6ece5ea5fe5 + "@lumino/coreutils": ^2.2.1 + checksum: efb7489320c1dd3b192de3b2c96e3642c13c62b9eba18efe91f5d8fdf59281b6357d0b7c9bfcba18c3ca1c3da811f2618c1e2aee8ce1ff44d28429f5f15f6aee languageName: node linkType: hard -"@jupyterlab/notebook@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/notebook@npm:4.4.0-rc.0" +"@jupyterlab/notebook@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/notebook@npm:4.4.0-rc.1" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/cells": ^4.4.0-rc.0 - "@jupyterlab/codeeditor": ^4.4.0-rc.0 - "@jupyterlab/codemirror": ^4.4.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/docregistry": ^4.4.0-rc.0 - "@jupyterlab/documentsearch": ^4.4.0-rc.0 - "@jupyterlab/lsp": ^4.4.0-rc.0 - "@jupyterlab/nbformat": ^4.4.0-rc.0 - "@jupyterlab/observables": ^5.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/statusbar": ^4.4.0-rc.0 - "@jupyterlab/toc": ^6.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/domutils": ^2.0.2 - "@lumino/dragdrop": ^2.1.5 - "@lumino/messaging": ^2.0.2 - "@lumino/polling": ^2.1.3 - "@lumino/properties": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/virtualdom": ^2.0.2 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/cells": ^4.4.0-rc.1 + "@jupyterlab/codeeditor": ^4.4.0-rc.1 + "@jupyterlab/codemirror": ^4.4.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/documentsearch": ^4.4.0-rc.1 + "@jupyterlab/lsp": ^4.4.0-rc.1 + "@jupyterlab/nbformat": ^4.4.0-rc.1 + "@jupyterlab/observables": ^5.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/statusbar": ^4.4.0-rc.1 + "@jupyterlab/toc": ^6.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/domutils": ^2.0.3 + "@lumino/dragdrop": ^2.1.6 + "@lumino/messaging": ^2.0.3 + "@lumino/polling": ^2.1.4 + "@lumino/properties": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/virtualdom": ^2.0.3 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: ff5e45e3bdd4f39462f6b3a45073d9eb54ddf0983c3438cd1e1d227613bb46ea31c942cd84d205231998e83acebf3986e9bb1c67ac200644fe1273033ec78b25 + checksum: a7c0930de5bbfbecb5a047bdbb6987ea7353978f3979952b78dba3f02266679e494d3131c873b5e841c8c2cd8bcfa42d62d4d064b0c158edb37a66362aa1c227 languageName: node linkType: hard -"@jupyterlab/observables@npm:^5.4.0-rc.0": - version: 5.4.0-rc.0 - resolution: "@jupyterlab/observables@npm:5.4.0-rc.0" +"@jupyterlab/observables@npm:^5.4.0-rc.1": + version: 5.4.0-rc.1 + resolution: "@jupyterlab/observables@npm:5.4.0-rc.1" dependencies: - "@lumino/algorithm": ^2.0.2 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/signaling": ^2.1.3 - checksum: d73e214177eed6592fb902a2f7c18d034496c57024e118abce97f20e6f573a26e05eb80634b7b388671752946ffca8a6292b5261868cc9a0f35fad2c946fa06a + "@lumino/algorithm": ^2.0.3 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/messaging": ^2.0.3 + "@lumino/signaling": ^2.1.4 + checksum: eda86553394af93ca3f34ad2ac70c071d7fd1fb11c343b6204cbdddf7994e70f3a2299b8def8461fd66539421d6b1d024677a1d6009f8174ec9ff867a84e0929 languageName: node linkType: hard -"@jupyterlab/outputarea@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/outputarea@npm:4.4.0-rc.0" +"@jupyterlab/outputarea@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/outputarea@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/nbformat": ^4.4.0-rc.0 - "@jupyterlab/observables": ^5.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/properties": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 - checksum: 0c65c5c9c6710def00a20c082c4cece884bdc07b2ac4060e01d6834f4171eeccb8191b2ed3f6a04a444b8c49b03f8501f8885d886d9348035a03e19aee11c738 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/nbformat": ^4.4.0-rc.1 + "@jupyterlab/observables": ^5.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/messaging": ^2.0.3 + "@lumino/properties": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 + checksum: 8285ff4acd2281909c427dd086c209ca02eb1ca3aced50bcbebd415751209e081d30e1ad95906f156d3b9e87265d1a3a2ec20873f15eb24144f28d84fb0d41a5 languageName: node linkType: hard -"@jupyterlab/rendermime-interfaces@npm:^3.12.0-rc.0": - version: 3.12.0-rc.0 - resolution: "@jupyterlab/rendermime-interfaces@npm:3.12.0-rc.0" +"@jupyterlab/rendermime-interfaces@npm:^3.12.0-rc.1": + version: 3.12.0-rc.1 + resolution: "@jupyterlab/rendermime-interfaces@npm:3.12.0-rc.1" dependencies: - "@lumino/coreutils": ^1.11.0 || ^2.2.0 - "@lumino/widgets": ^1.37.2 || ^2.6.0 - checksum: de24036ade599e91b35f21579c051070c107bb177d0d22acd27c5e7cfed7b820bf1d7897bc786bf8b5cb562439a370db92b7c461377db5b08dc1123eba69ea92 + "@lumino/coreutils": ^1.11.0 || ^2.2.1 + "@lumino/widgets": ^1.37.2 || ^2.7.0 + checksum: 4f1f8158cc35bf8ebabdd9f1aea0c98c6b9f47d5a5a1bffd0d4b7bc76350702c7f171622199986b1d3f31b2fd3556ceded7e587d5e0db965f222b48c8ac8910e languageName: node linkType: hard -"@jupyterlab/rendermime@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/rendermime@npm:4.4.0-rc.0" +"@jupyterlab/rendermime@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/rendermime@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/nbformat": ^4.4.0-rc.0 - "@jupyterlab/observables": ^5.4.0-rc.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/messaging": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/nbformat": ^4.4.0-rc.1 + "@jupyterlab/observables": ^5.4.0-rc.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + "@lumino/messaging": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 lodash.escape: ^4.0.1 - checksum: a863e53a9ff4d65eee7a01aa095e7e38affb71be044a86fed03e5c2c1ef278f0f5e7dfaf4fd9d8c3d72dd7eaa4453d5a1446f933dbd12a1c307d485ee92c77db + checksum: e77026755af411358f3b47c8c7ef8221cb435c810aaa0eaf3d8b57b8e4e9bd79abc2b15688d26de69cad15a5d8b23e41c2a5ba871eb4e2a5f6d8254a51618745 languageName: node linkType: hard -"@jupyterlab/services@npm:^7.4.0-rc.0": - version: 7.4.0-rc.0 - resolution: "@jupyterlab/services@npm:7.4.0-rc.0" +"@jupyterlab/services@npm:^7.4.0-rc.1": + version: 7.4.0-rc.1 + resolution: "@jupyterlab/services@npm:7.4.0-rc.1" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/nbformat": ^4.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/statedb": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/polling": ^2.1.3 - "@lumino/properties": ^2.0.2 - "@lumino/signaling": ^2.1.3 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/nbformat": ^4.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/statedb": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/polling": ^2.1.4 + "@lumino/properties": ^2.0.3 + "@lumino/signaling": ^2.1.4 ws: ^8.11.0 - checksum: 9e6667c05f456d9f561b58913143a2b54e1bafedba35a9d67aa5930283c6d40092191262422291e205b0fb540ec2306acbf877aee5ac784c6de2a4108b8f47dc + checksum: e99d712aac8fbef4b30b5853fcc38e11bfda4c261f4dcdd7d0ed2f7a2fa350657ad19f95decb57293a15b78d4e56922bcba41a61ff46f647e7b151423ef95e1a languageName: node linkType: hard -"@jupyterlab/settingregistry@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/settingregistry@npm:4.4.0-rc.0" +"@jupyterlab/settingregistry@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/settingregistry@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/nbformat": ^4.4.0-rc.0 - "@jupyterlab/statedb": ^4.4.0-rc.0 - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/signaling": ^2.1.3 + "@jupyterlab/nbformat": ^4.4.0-rc.1 + "@jupyterlab/statedb": ^4.4.0-rc.1 + "@lumino/commands": ^2.3.2 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/signaling": ^2.1.4 "@rjsf/utils": ^5.13.4 ajv: ^8.12.0 json5: ^2.2.3 peerDependencies: react: ">=16" - checksum: bfaefd25d82dd6677a24c93a110c8d922c063af6c37bdee704be6e1b8b006c73c9b3eaf0f06c72b39297c066ad3d0e087dc06d6b61506fcac295146f7993b710 + checksum: 3b83f98d8fb8814817675258ce05f33cd72a90b0e94249d0b0144fcebc9fc1f102b967ce7850c3f77a560f4d3416d0a54e1eb692ff309abf8d3395c6796f0932 languageName: node linkType: hard -"@jupyterlab/statedb@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/statedb@npm:4.4.0-rc.0" +"@jupyterlab/statedb@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/statedb@npm:4.4.0-rc.1" dependencies: - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/properties": ^2.0.2 - "@lumino/signaling": ^2.1.3 - checksum: 0d8a52560142a7a43a5837a6445c1cc71cf5d1bfe78aeff67dfdd26e6741abfe31a4cb4f30d87a925ad3e44ea85cab25f24f19585204910d6440ad8083b17ee0 + "@lumino/commands": ^2.3.2 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/properties": ^2.0.3 + "@lumino/signaling": ^2.1.4 + checksum: ffb29e8bdd27a9796943a9a0d2586944827df0e55f88f20ba3eea4cdebbdcb605bb35e8ce2a2b8217931d273744710c52f52326c91705d024779657810e5b06b languageName: node linkType: hard -"@jupyterlab/statusbar@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/statusbar@npm:4.4.0-rc.0" +"@jupyterlab/statusbar@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/statusbar@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/messaging": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 3eeb24e53d7660f0dcc08dbee50843e065a021f29cd51f69624b1a873971ce7d063774144e89b1b2d3acaaa169e20a433fa0232c9ce8e140f2429362fee73d42 + checksum: 63c538fb1286fc74d4d92331ed21c5d99d8e29f8238bcef2f50d5d8a21280bec41065f4166e6de5788d9525879da06bd408e07d6cdbed902fa809c01a9e415a8 languageName: node linkType: hard -"@jupyterlab/toc@npm:^6.4.0-rc.0": - version: 6.4.0-rc.0 - resolution: "@jupyterlab/toc@npm:6.4.0-rc.0" +"@jupyterlab/toc@npm:^6.4.0-rc.1": + version: 6.4.0-rc.1 + resolution: "@jupyterlab/toc@npm:6.4.0-rc.1" dependencies: "@jupyter/react-components": ^0.16.6 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/docregistry": ^4.4.0-rc.0 - "@jupyterlab/observables": ^5.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/observables": ^5.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/messaging": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 40014291fa1d3b91227359f48850824f4d5ecb7d70f649b573099469ba09616a158ff405aebad3fbbb4e3b488cc6277ed64ba462adeb3e3a0d60e6edd8db52a1 + checksum: afba4a8d02fa98164623d6f21eafac93c039575197cfea907ebaba8894ba3f0e21dcd17e0a282c22caee5aa0fd8f1a683f1f303411f7ce9c8db0b536b3680064 languageName: node linkType: hard -"@jupyterlab/translation@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/translation@npm:4.4.0-rc.0" +"@jupyterlab/translation@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/translation@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/statedb": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - checksum: 0d9f4335544cc9d49a13afae9ad686f11ec1117fff47f2560712b324ac9473a8674e2ab948b21fbeb9644c99e8e15f801e3e90b8514da32b86e2b156dddfc467 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/statedb": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + checksum: 2ec9f05375a9d9e79f1f27ad418c4e69d2c45729e196d76258c762c0a6e9056937581c1775aa8a520a5e9c83c41d6a49501672c61d30f54794a1caea978a5327 languageName: node linkType: hard -"@jupyterlab/ui-components@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/ui-components@npm:4.4.0-rc.0" +"@jupyterlab/ui-components@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/ui-components@npm:4.4.0-rc.1" dependencies: "@jupyter/react-components": ^0.16.6 "@jupyter/web-components": ^0.16.6 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/observables": ^5.4.0-rc.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/polling": ^2.1.3 - "@lumino/properties": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/virtualdom": ^2.0.2 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/observables": ^5.4.0-rc.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/commands": ^2.3.2 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/messaging": ^2.0.3 + "@lumino/polling": ^2.1.4 + "@lumino/properties": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/virtualdom": ^2.0.3 + "@lumino/widgets": ^2.7.0 "@rjsf/core": ^5.13.4 "@rjsf/utils": ^5.13.4 react: ^18.2.0 @@ -995,7 +995,7 @@ __metadata: typestyle: ^2.0.4 peerDependencies: react: ^18.2.0 - checksum: 0931ec59f2fd46f00788f7e0c18e36e1c6ae3bf1f1a800279776011b37d65d3786472deed327d862a94e7d0dceea23e66d9b31213623fc6b1d2e88d60fc41ecb + checksum: a9bc2830b5a96861d17d536dc2f55d5f6c1e1a7696c157f95c0170bffb080d025831c10b57d965db953a0f79089373b9ff4f03f841690019a8139ba685837555 languageName: node linkType: hard @@ -1148,170 +1148,170 @@ __metadata: languageName: node linkType: hard -"@lumino/algorithm@npm:^2.0.2": - version: 2.0.2 - resolution: "@lumino/algorithm@npm:2.0.2" - checksum: 34b25684b845f1bdbf78ca45ebd99a97b67b2992440c9643aafe5fc5a99fae1ddafa9e5890b246b233dc3a12d9f66aa84afe4a2aac44cf31071348ed217740db +"@lumino/algorithm@npm:^2.0.3": + version: 2.0.3 + resolution: "@lumino/algorithm@npm:2.0.3" + checksum: 03932cdc39d612a00579ee40bafb0b1d8bf5f8a12449f777a1ae7201843ddefb557bc3f9260aa6b9441d87bfc43e53cced854e71c4737de59e32cd00d4ac1394 languageName: node linkType: hard -"@lumino/application@npm:^2.4.2": - version: 2.4.2 - resolution: "@lumino/application@npm:2.4.2" +"@lumino/application@npm:^2.4.3": + version: 2.4.3 + resolution: "@lumino/application@npm:2.4.3" dependencies: - "@lumino/commands": "npm:^2.3.1" - "@lumino/coreutils": "npm:^2.2.0" - "@lumino/widgets": "npm:^2.6.0" - checksum: 210dce74beb528e94839b209c5bebb858b56c8c9d896359614a47ce9c5cb117736233d9d81b6009b9916b8ede480d6240f991f988b8bcf9c6a229ef86bf90a85 + "@lumino/commands": ^2.3.2 + "@lumino/coreutils": ^2.2.1 + "@lumino/widgets": ^2.7.0 + checksum: 1a1ebd7a883664b29624765fe01d31ff30324e39c90565827ba8b578a21e36c94dc096d9a285dc8738e0ec9dbaf48c50337a7976ec01acd0e78afc9066370bee languageName: node linkType: hard -"@lumino/collections@npm:^2.0.2": - version: 2.0.2 - resolution: "@lumino/collections@npm:2.0.2" +"@lumino/collections@npm:^2.0.3": + version: 2.0.3 + resolution: "@lumino/collections@npm:2.0.3" dependencies: - "@lumino/algorithm": "npm:^2.0.2" - checksum: e8bb2068a3741940e0dd396fa729c3c9d12458b41b7c2a9d171c5c034e69fb5834116a824094a8aa4182397e13abace06025ed5032a755ea85b976eae74ee9a9 + "@lumino/algorithm": ^2.0.3 + checksum: 1c7aca239731e6c7379ce593318fd3f646b38c1903e81e884e36ed01f61017498f6699ba58848c43191f4825a9968b7f9c94e9355f1614c9baee84ce9ea6221f languageName: node linkType: hard -"@lumino/commands@npm:^2.3.1": - version: 2.3.1 - resolution: "@lumino/commands@npm:2.3.1" +"@lumino/commands@npm:^2.3.2": + version: 2.3.2 + resolution: "@lumino/commands@npm:2.3.2" dependencies: - "@lumino/algorithm": "npm:^2.0.2" - "@lumino/coreutils": "npm:^2.2.0" - "@lumino/disposable": "npm:^2.1.3" - "@lumino/domutils": "npm:^2.0.2" - "@lumino/keyboard": "npm:^2.0.2" - "@lumino/signaling": "npm:^2.1.3" - "@lumino/virtualdom": "npm:^2.0.2" - checksum: 83bc6d66de37e58582b00f70ce66e797c9fcf84e36041c6881631ed0d281305e2a49927f5b2fe6c5c965733f3cd6fb4a233c7b7967fc050497024a941659bd65 + "@lumino/algorithm": ^2.0.3 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/domutils": ^2.0.3 + "@lumino/keyboard": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/virtualdom": ^2.0.3 + checksum: 090454bcc07aeb71f0791d6ca86ca4857b16bb6286a47ab6e59c3046e7f99cd3ef27c36d2dd35de7cf2bdeeaf5fc00ae8f29246a39e276eac2d186ae3cd7023e languageName: node linkType: hard -"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^1.11.0 || ^2.2.0, @lumino/coreutils@npm:^2.1.2, @lumino/coreutils@npm:^2.2.0": - version: 2.2.0 - resolution: "@lumino/coreutils@npm:2.2.0" +"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^1.11.0 || ^2.2.1, @lumino/coreutils@npm:^2.1.2, @lumino/coreutils@npm:^2.2.1": + version: 2.2.1 + resolution: "@lumino/coreutils@npm:2.2.1" dependencies: - "@lumino/algorithm": "npm:^2.0.2" - checksum: 345fcd5d7493d745831dd944edfbd8eda06cc59a117e71023fc97ce53badd697be2bd51671f071f5ff0064f75f104575d9695f116a07517bafbedd38e5c7a785 + "@lumino/algorithm": ^2.0.3 + checksum: d08570d1ebcf6bca973ba3af0836fb19a5a7a5b24979e90aab0fb4acb245e9619a0db356a78d67f618ae565435bb2aaf7c158c5bc0ae1ef9e9f1638ebfa05484 languageName: node linkType: hard -"@lumino/datagrid@npm:^2.5.0": - version: 2.5.0 - resolution: "@lumino/datagrid@npm:2.5.0" +"@lumino/datagrid@npm:^2.5.1": + version: 2.5.1 + resolution: "@lumino/datagrid@npm:2.5.1" dependencies: - "@lumino/algorithm": "npm:^2.0.2" - "@lumino/coreutils": "npm:^2.2.0" - "@lumino/disposable": "npm:^2.1.3" - "@lumino/domutils": "npm:^2.0.2" - "@lumino/dragdrop": "npm:^2.1.5" - "@lumino/keyboard": "npm:^2.0.2" - "@lumino/messaging": "npm:^2.0.2" - "@lumino/signaling": "npm:^2.1.3" - "@lumino/widgets": "npm:^2.6.0" - checksum: 32cbe8676745077b3aa29cbe9d05c151da8cb51a6dff417b3e506fa4a15c65c48ba93e4a72f7d57bd1347fc559f3583bdb4e3158b14c172e076204fc26019149 + "@lumino/algorithm": ^2.0.3 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/domutils": ^2.0.3 + "@lumino/dragdrop": ^2.1.6 + "@lumino/keyboard": ^2.0.3 + "@lumino/messaging": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 + checksum: 760485cde3a6a28f71143eddd28f6a3f2b8bed6daa7f71cf4545af20cf7cfc59a8b39a453a189fbfbffba3ca2ac82b0be4d500705c10d7bfdabc32de879b4082 languageName: node linkType: hard -"@lumino/disposable@npm:^1.10.0 || ^2.0.0, @lumino/disposable@npm:^2.1.3": - version: 2.1.3 - resolution: "@lumino/disposable@npm:2.1.3" +"@lumino/disposable@npm:^1.10.0 || ^2.0.0, @lumino/disposable@npm:^2.1.4": + version: 2.1.4 + resolution: "@lumino/disposable@npm:2.1.4" dependencies: - "@lumino/signaling": "npm:^2.1.3" - checksum: b9a346fa2752b3cd1b053cb637ee173501d33082a73423429070e8acc508b034ea0babdae0549b923cbdd287ee1fc7f6159f0539c9fff7574393a214eef07c57 + "@lumino/signaling": ^2.1.4 + checksum: 0274c1cd81683f0d37c79795ed683fe49929452e6f075b9027b62dee376b5c6aa5f27b279236c4e1621bcbdcb844d5be0bbde3a065ab39159deb995244d1d2a7 languageName: node linkType: hard -"@lumino/domutils@npm:^2.0.2": - version: 2.0.2 - resolution: "@lumino/domutils@npm:2.0.2" - checksum: 037b8d0b62af43887fd7edd506fa551e2af104a4b46d62e6fef256e16754dba40d351513beb5083834d468b2c7806aae0fe205fd6aac8ef24759451ee998bbd9 +"@lumino/domutils@npm:^2.0.3": + version: 2.0.3 + resolution: "@lumino/domutils@npm:2.0.3" + checksum: 46cbcbd38f6abb53eab1b6de0a2ea8a9fa5e28b0f5aa4b058c35f2380cb8ec881fe7616c7468ba200b785f95357ac8cbac6b64512f9945f5973d1d425864b163 languageName: node linkType: hard -"@lumino/dragdrop@npm:^2.1.5": - version: 2.1.5 - resolution: "@lumino/dragdrop@npm:2.1.5" +"@lumino/dragdrop@npm:^2.1.6": + version: 2.1.6 + resolution: "@lumino/dragdrop@npm:2.1.6" dependencies: - "@lumino/coreutils": "npm:^2.2.0" - "@lumino/disposable": "npm:^2.1.3" - checksum: 48e34bea73186dcde4565fa68cd25067b7f5fe910813d28da9ab3c5392bfaa0b26aab1290635dc953d85bbb139da7ac1ffc040a5d5777d58fd087975dd4b5ef7 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + checksum: 5a746ee0644e2fa02cba47d6ef45f3fb09ebc3391ac0f478f6f3073864a9637e13fcee666038c751ab8f17bc69c55299c85a88f526ea645cc3240a367490c8ca languageName: node linkType: hard -"@lumino/keyboard@npm:^2.0.2": - version: 2.0.2 - resolution: "@lumino/keyboard@npm:2.0.2" - checksum: 198e8c17825c9a831fa0770f58a71574b936acb0f0bbbe7f8feb73d89686dda7ff41fcb02d12b401f5d462b45fe0bba24f7f38befb7cefe0826576559f0bee6d +"@lumino/keyboard@npm:^2.0.3": + version: 2.0.3 + resolution: "@lumino/keyboard@npm:2.0.3" + checksum: ca648cf978ddcf15fe3af2b8c8beb8aff153dfe616099df5a8bc7f43124420f77c358dbd33a988911b82f68debe07268d630c1777618b182ef7b520962d653e7 languageName: node linkType: hard -"@lumino/messaging@npm:^2.0.2": - version: 2.0.2 - resolution: "@lumino/messaging@npm:2.0.2" +"@lumino/messaging@npm:^2.0.3": + version: 2.0.3 + resolution: "@lumino/messaging@npm:2.0.3" dependencies: - "@lumino/algorithm": "npm:^2.0.2" - "@lumino/collections": "npm:^2.0.2" - checksum: 66abd8c473026123589dc22f2ce8f85da10e0b1a05c05ed9b2011035721da5f751cc7ef63b628877f446a78a4287e26ad1450efbeaf0c2e03b1d08be9abaca4d + "@lumino/algorithm": ^2.0.3 + "@lumino/collections": ^2.0.3 + checksum: 9c2bea2a31d3922a29276df751b651e6bd41d1ed3a5f61ba94d3e90d454c53f07fc4dac7d435867fb8480415222a3d45d74188dd73e9c89c43110ebbee0ff301 languageName: node linkType: hard -"@lumino/polling@npm:^2.1.3": - version: 2.1.3 - resolution: "@lumino/polling@npm:2.1.3" +"@lumino/polling@npm:^2.1.4": + version: 2.1.4 + resolution: "@lumino/polling@npm:2.1.4" dependencies: - "@lumino/coreutils": "npm:^2.2.0" - "@lumino/disposable": "npm:^2.1.3" - "@lumino/signaling": "npm:^2.1.3" - checksum: 2c94dbc2339dd06b3b89a3a690d23576ce095f92bf1f614557dcaeb1c1a8a707b2a18d78c03e5fd7376a43e3f393cc4fec42a65580ae4b67c6630ea86cecbac6 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/signaling": ^2.1.4 + checksum: e08d07d11eb030fed83bea232dba91af4ea40ef8f6ec7b8fe61722ebbd29faba10c67d269596c19c515c920f607c73bb64cdc9319af9ecef4619cddfd92ea764 languageName: node linkType: hard -"@lumino/properties@npm:^2.0.2": - version: 2.0.2 - resolution: "@lumino/properties@npm:2.0.2" - checksum: cbe802bd49ced7e13e50b1d89b82e0f03fb44a590c704e6b9343226498b21d8abfe119b024209e79876b4fc0938dbf85e964c6c4cd5bbdd4d7ba41ce0fb69f3f +"@lumino/properties@npm:^2.0.3": + version: 2.0.3 + resolution: "@lumino/properties@npm:2.0.3" + checksum: a575d821f994090907abb567d3af21a828f528ae5f329ada92719eba9818bbb2b0955e675b91bd392043a5d835c345d7b500994a77157c5ea317f36442ce570e languageName: node linkType: hard -"@lumino/signaling@npm:^1.10.0 || ^2.0.0, @lumino/signaling@npm:^2.1.3": - version: 2.1.3 - resolution: "@lumino/signaling@npm:2.1.3" +"@lumino/signaling@npm:^1.10.0 || ^2.0.0, @lumino/signaling@npm:^2.1.4": + version: 2.1.4 + resolution: "@lumino/signaling@npm:2.1.4" dependencies: - "@lumino/algorithm": "npm:^2.0.2" - "@lumino/coreutils": "npm:^2.2.0" - checksum: ce59383bd75fe30df5800e0442dbc4193cc6778e2530b9be0f484d159f1d8668be5c6ee92cee9df36d5a0c3dbd9126d0479a82581dee1df889d5c9f922d3328d + "@lumino/algorithm": ^2.0.3 + "@lumino/coreutils": ^2.2.1 + checksum: 554a5135c8742ed3f61a4923b1f26cb29b55447ca5939df70033449cfb654a37048d7a3e2fd0932497099cd24501a3819b85cd1fdf4e76023ba0af747c171d53 languageName: node linkType: hard -"@lumino/virtualdom@npm:^2.0.2": - version: 2.0.2 - resolution: "@lumino/virtualdom@npm:2.0.2" +"@lumino/virtualdom@npm:^2.0.3": + version: 2.0.3 + resolution: "@lumino/virtualdom@npm:2.0.3" dependencies: - "@lumino/algorithm": "npm:^2.0.2" - checksum: 0e1220d5b3b2441e7668f3542a6341e015bdbea0c8bd6d4be962009386c034336540732596d5dedcd54ca57fbde61c2942549129a3e1b0fccb1aa143685fcd15 + "@lumino/algorithm": ^2.0.3 + checksum: 66c18494fdfc1b87e76286140cd256b3616aede262641912646a18395226e200048ddeaa6d1644dff3f597b1cde8e583968cb973d64a9e9d4f45e2b24c1e2c7c languageName: node linkType: hard -"@lumino/widgets@npm:^1.37.2 || ^2.6.0, @lumino/widgets@npm:^2.6.0": - version: 2.6.0 - resolution: "@lumino/widgets@npm:2.6.0" +"@lumino/widgets@npm:^1.37.2 || ^2.7.0, @lumino/widgets@npm:^2.7.0": + version: 2.7.0 + resolution: "@lumino/widgets@npm:2.7.0" dependencies: - "@lumino/algorithm": "npm:^2.0.2" - "@lumino/commands": "npm:^2.3.1" - "@lumino/coreutils": "npm:^2.2.0" - "@lumino/disposable": "npm:^2.1.3" - "@lumino/domutils": "npm:^2.0.2" - "@lumino/dragdrop": "npm:^2.1.5" - "@lumino/keyboard": "npm:^2.0.2" - "@lumino/messaging": "npm:^2.0.2" - "@lumino/properties": "npm:^2.0.2" - "@lumino/signaling": "npm:^2.1.3" - "@lumino/virtualdom": "npm:^2.0.2" - checksum: 925acbe8813af32a7d0bbfb4a91f848f9b840561fa48d26c6b08c041c2f5077c25f02424b82e793945b26de5d3137127f754a5e788239364c92bc2863218619e + "@lumino/algorithm": ^2.0.3 + "@lumino/commands": ^2.3.2 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/domutils": ^2.0.3 + "@lumino/dragdrop": ^2.1.6 + "@lumino/keyboard": ^2.0.3 + "@lumino/messaging": ^2.0.3 + "@lumino/properties": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/virtualdom": ^2.0.3 + checksum: 6c2426e50549c7685cf2ad4d5f86d2b8e0d325003a70b29b14dc7b4655b0b3d41034728564675244fd09822ef200651aa856d28b6940aabccbf1dbc1f67f19f8 languageName: node linkType: hard diff --git a/yarn.lock b/yarn.lock index 7e72a99fb5..e6af74f4db 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2142,56 +2142,56 @@ __metadata: "@jupyter-notebook/tree": ^7.4.0-beta.3 "@jupyter-notebook/tree-extension": ^7.4.0-beta.3 "@jupyter-notebook/ui-components": ^7.4.0-beta.3 - "@jupyterlab/application-extension": ~4.4.0-rc.0 - "@jupyterlab/apputils-extension": ~4.4.0-rc.0 - "@jupyterlab/attachments": ~4.4.0-rc.0 - "@jupyterlab/builder": ~4.4.0-rc.0 - "@jupyterlab/buildutils": ~4.4.0-rc.0 - "@jupyterlab/cell-toolbar-extension": ~4.4.0-rc.0 - "@jupyterlab/celltags-extension": ~4.4.0-rc.0 - "@jupyterlab/codemirror": ~4.4.0-rc.0 - "@jupyterlab/codemirror-extension": ~4.4.0-rc.0 - "@jupyterlab/completer-extension": ~4.4.0-rc.0 - "@jupyterlab/console-extension": ~4.4.0-rc.0 - "@jupyterlab/coreutils": ~6.4.0-rc.0 - "@jupyterlab/csvviewer-extension": ~4.4.0-rc.0 - "@jupyterlab/debugger-extension": ~4.4.0-rc.0 - "@jupyterlab/docmanager-extension": ~4.4.0-rc.0 - "@jupyterlab/documentsearch-extension": ~4.4.0-rc.0 - "@jupyterlab/extensionmanager-extension": ~4.4.0-rc.0 - "@jupyterlab/filebrowser-extension": ~4.4.0-rc.0 - "@jupyterlab/fileeditor-extension": ~4.4.0-rc.0 - "@jupyterlab/help-extension": ~4.4.0-rc.0 - "@jupyterlab/htmlviewer-extension": ~4.4.0-rc.0 - "@jupyterlab/hub-extension": ~4.4.0-rc.0 - "@jupyterlab/imageviewer-extension": ~4.4.0-rc.0 - "@jupyterlab/javascript-extension": ~4.4.0-rc.0 - "@jupyterlab/json-extension": ~4.4.0-rc.0 - "@jupyterlab/lsp": ~4.4.0-rc.0 - "@jupyterlab/lsp-extension": ~4.4.0-rc.0 - "@jupyterlab/mainmenu-extension": ~4.4.0-rc.0 - "@jupyterlab/markdownviewer-extension": ~4.4.0-rc.0 - "@jupyterlab/markedparser-extension": ~4.4.0-rc.0 - "@jupyterlab/mathjax-extension": ~4.4.0-rc.0 - "@jupyterlab/mermaid-extension": ~4.4.0-rc.0 - "@jupyterlab/metadataform-extension": ~4.4.0-rc.0 - "@jupyterlab/notebook-extension": ~4.4.0-rc.0 - "@jupyterlab/pdf-extension": ~4.4.0-rc.0 - "@jupyterlab/pluginmanager-extension": ~4.4.0-rc.0 - "@jupyterlab/running-extension": ~4.4.0-rc.0 - "@jupyterlab/services-extension": ~4.4.0-rc.0 - "@jupyterlab/settingeditor": ~4.4.0-rc.0 - "@jupyterlab/settingeditor-extension": ~4.4.0-rc.0 - "@jupyterlab/shortcuts-extension": ~5.2.0-rc.0 - "@jupyterlab/terminal-extension": ~4.4.0-rc.0 - "@jupyterlab/theme-dark-extension": ~4.4.0-rc.0 - "@jupyterlab/theme-dark-high-contrast-extension": ~4.4.0-rc.0 - "@jupyterlab/theme-light-extension": ~4.4.0-rc.0 - "@jupyterlab/toc-extension": ~6.4.0-rc.0 - "@jupyterlab/tooltip-extension": ~4.4.0-rc.0 - "@jupyterlab/translation-extension": ~4.4.0-rc.0 - "@jupyterlab/ui-components-extension": ~4.4.0-rc.0 - "@jupyterlab/vega5-extension": ~4.4.0-rc.0 + "@jupyterlab/application-extension": ~4.4.0-rc.1 + "@jupyterlab/apputils-extension": ~4.4.0-rc.1 + "@jupyterlab/attachments": ~4.4.0-rc.1 + "@jupyterlab/builder": ~4.4.0-rc.1 + "@jupyterlab/buildutils": ~4.4.0-rc.1 + "@jupyterlab/cell-toolbar-extension": ~4.4.0-rc.1 + "@jupyterlab/celltags-extension": ~4.4.0-rc.1 + "@jupyterlab/codemirror": ~4.4.0-rc.1 + "@jupyterlab/codemirror-extension": ~4.4.0-rc.1 + "@jupyterlab/completer-extension": ~4.4.0-rc.1 + "@jupyterlab/console-extension": ~4.4.0-rc.1 + "@jupyterlab/coreutils": ~6.4.0-rc.1 + "@jupyterlab/csvviewer-extension": ~4.4.0-rc.1 + "@jupyterlab/debugger-extension": ~4.4.0-rc.1 + "@jupyterlab/docmanager-extension": ~4.4.0-rc.1 + "@jupyterlab/documentsearch-extension": ~4.4.0-rc.1 + "@jupyterlab/extensionmanager-extension": ~4.4.0-rc.1 + "@jupyterlab/filebrowser-extension": ~4.4.0-rc.1 + "@jupyterlab/fileeditor-extension": ~4.4.0-rc.1 + "@jupyterlab/help-extension": ~4.4.0-rc.1 + "@jupyterlab/htmlviewer-extension": ~4.4.0-rc.1 + "@jupyterlab/hub-extension": ~4.4.0-rc.1 + "@jupyterlab/imageviewer-extension": ~4.4.0-rc.1 + "@jupyterlab/javascript-extension": ~4.4.0-rc.1 + "@jupyterlab/json-extension": ~4.4.0-rc.1 + "@jupyterlab/lsp": ~4.4.0-rc.1 + "@jupyterlab/lsp-extension": ~4.4.0-rc.1 + "@jupyterlab/mainmenu-extension": ~4.4.0-rc.1 + "@jupyterlab/markdownviewer-extension": ~4.4.0-rc.1 + "@jupyterlab/markedparser-extension": ~4.4.0-rc.1 + "@jupyterlab/mathjax-extension": ~4.4.0-rc.1 + "@jupyterlab/mermaid-extension": ~4.4.0-rc.1 + "@jupyterlab/metadataform-extension": ~4.4.0-rc.1 + "@jupyterlab/notebook-extension": ~4.4.0-rc.1 + "@jupyterlab/pdf-extension": ~4.4.0-rc.1 + "@jupyterlab/pluginmanager-extension": ~4.4.0-rc.1 + "@jupyterlab/running-extension": ~4.4.0-rc.1 + "@jupyterlab/services-extension": ~4.4.0-rc.1 + "@jupyterlab/settingeditor": ~4.4.0-rc.1 + "@jupyterlab/settingeditor-extension": ~4.4.0-rc.1 + "@jupyterlab/shortcuts-extension": ~5.2.0-rc.1 + "@jupyterlab/terminal-extension": ~4.4.0-rc.1 + "@jupyterlab/theme-dark-extension": ~4.4.0-rc.1 + "@jupyterlab/theme-dark-high-contrast-extension": ~4.4.0-rc.1 + "@jupyterlab/theme-light-extension": ~4.4.0-rc.1 + "@jupyterlab/toc-extension": ~6.4.0-rc.1 + "@jupyterlab/tooltip-extension": ~4.4.0-rc.1 + "@jupyterlab/translation-extension": ~4.4.0-rc.1 + "@jupyterlab/ui-components-extension": ~4.4.0-rc.1 + "@jupyterlab/vega5-extension": ~4.4.0-rc.1 "@lumino/coreutils": ~2.2.0 "@types/rimraf": ^3.0.2 css-loader: ~5.0.1 @@ -2221,17 +2221,17 @@ __metadata: dependencies: "@jupyter-notebook/application": ^7.4.0-beta.3 "@jupyter-notebook/ui-components": ^7.4.0-beta.3 - "@jupyterlab/application": ~4.4.0-rc.0 - "@jupyterlab/apputils": ~4.5.0-rc.0 - "@jupyterlab/codeeditor": ~4.4.0-rc.0 - "@jupyterlab/console": ~4.4.0-rc.0 - "@jupyterlab/coreutils": ~6.4.0-rc.0 - "@jupyterlab/docmanager": ~4.4.0-rc.0 - "@jupyterlab/docregistry": ~4.4.0-rc.0 - "@jupyterlab/mainmenu": ~4.4.0-rc.0 - "@jupyterlab/rendermime": ~4.4.0-rc.0 - "@jupyterlab/settingregistry": ~4.4.0-rc.0 - "@jupyterlab/translation": ~4.4.0-rc.0 + "@jupyterlab/application": ~4.4.0-rc.1 + "@jupyterlab/apputils": ~4.5.0-rc.1 + "@jupyterlab/codeeditor": ~4.4.0-rc.1 + "@jupyterlab/console": ~4.4.0-rc.1 + "@jupyterlab/coreutils": ~6.4.0-rc.1 + "@jupyterlab/docmanager": ~4.4.0-rc.1 + "@jupyterlab/docregistry": ~4.4.0-rc.1 + "@jupyterlab/mainmenu": ~4.4.0-rc.1 + "@jupyterlab/rendermime": ~4.4.0-rc.1 + "@jupyterlab/settingregistry": ~4.4.0-rc.1 + "@jupyterlab/translation": ~4.4.0-rc.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/widgets": ^2.5.0 @@ -2246,12 +2246,12 @@ __metadata: dependencies: "@babel/core": ^7.11.6 "@babel/preset-env": ^7.12.1 - "@jupyterlab/application": ~4.4.0-rc.0 - "@jupyterlab/coreutils": ~6.4.0-rc.0 - "@jupyterlab/docregistry": ~4.4.0-rc.0 - "@jupyterlab/rendermime-interfaces": ~3.12.0-rc.0 + "@jupyterlab/application": ~4.4.0-rc.1 + "@jupyterlab/coreutils": ~6.4.0-rc.1 + "@jupyterlab/docregistry": ~4.4.0-rc.1 + "@jupyterlab/rendermime-interfaces": ~3.12.0-rc.1 "@jupyterlab/testutils": ~4.3.2 - "@jupyterlab/ui-components": ~4.4.0-rc.0 + "@jupyterlab/ui-components": ~4.4.0-rc.1 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 @@ -2270,7 +2270,7 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyter-notebook/buildutils@workspace:buildutils" dependencies: - "@jupyterlab/buildutils": ~4.4.0-rc.0 + "@jupyterlab/buildutils": ~4.4.0-rc.1 "@types/fs-extra": ^9.0.10 "@types/node": ^22.13.4 "@types/semver": ^7.5.8 @@ -2287,9 +2287,9 @@ __metadata: resolution: "@jupyter-notebook/console-extension@workspace:packages/console-extension" dependencies: "@jupyter-notebook/application": ^7.4.0-beta.3 - "@jupyterlab/application": ~4.4.0-rc.0 - "@jupyterlab/console": ~4.4.0-rc.0 - "@jupyterlab/coreutils": ~6.4.0-rc.0 + "@jupyterlab/application": ~4.4.0-rc.1 + "@jupyterlab/console": ~4.4.0-rc.1 + "@jupyterlab/coreutils": ~6.4.0-rc.1 "@lumino/algorithm": ^2.0.2 rimraf: ^3.0.2 typescript: ~5.5.4 @@ -2301,11 +2301,11 @@ __metadata: resolution: "@jupyter-notebook/docmanager-extension@workspace:packages/docmanager-extension" dependencies: "@jupyter-notebook/application": ^7.4.0-beta.3 - "@jupyterlab/application": ~4.4.0-rc.0 - "@jupyterlab/coreutils": ~6.4.0-rc.0 - "@jupyterlab/docmanager": ~4.4.0-rc.0 - "@jupyterlab/docregistry": ~4.4.0-rc.0 - "@jupyterlab/services": ~7.4.0-rc.0 + "@jupyterlab/application": ~4.4.0-rc.1 + "@jupyterlab/coreutils": ~6.4.0-rc.1 + "@jupyterlab/docmanager": ~4.4.0-rc.1 + "@jupyterlab/docregistry": ~4.4.0-rc.1 + "@jupyterlab/services": ~7.4.0-rc.1 "@lumino/algorithm": ^2.0.2 "@lumino/signaling": ^2.1.3 rimraf: ^3.0.2 @@ -2318,8 +2318,8 @@ __metadata: resolution: "@jupyter-notebook/documentsearch-extension@workspace:packages/documentsearch-extension" dependencies: "@jupyter-notebook/application": ^7.4.0-beta.3 - "@jupyterlab/application": ~4.4.0-rc.0 - "@jupyterlab/documentsearch": ~4.4.0-rc.0 + "@jupyterlab/application": ~4.4.0-rc.1 + "@jupyterlab/documentsearch": ~4.4.0-rc.1 "@lumino/widgets": ^2.5.0 rimraf: ^3.0.2 typescript: ~5.5.4 @@ -2331,10 +2331,10 @@ __metadata: resolution: "@jupyter-notebook/help-extension@workspace:packages/help-extension" dependencies: "@jupyter-notebook/ui-components": ^7.4.0-beta.3 - "@jupyterlab/application": ~4.4.0-rc.0 - "@jupyterlab/apputils": ~4.5.0-rc.0 - "@jupyterlab/mainmenu": ~4.4.0-rc.0 - "@jupyterlab/translation": ~4.4.0-rc.0 + "@jupyterlab/application": ~4.4.0-rc.1 + "@jupyterlab/apputils": ~4.5.0-rc.1 + "@jupyterlab/mainmenu": ~4.4.0-rc.1 + "@jupyterlab/translation": ~4.4.0-rc.1 react: ^18.2.0 react-dom: ^18.2.0 rimraf: ^3.0.2 @@ -2347,14 +2347,14 @@ __metadata: resolution: "@jupyter-notebook/lab-extension@workspace:packages/lab-extension" dependencies: "@jupyter-notebook/application": ^7.4.0-beta.3 - "@jupyterlab/application": ~4.4.0-rc.0 - "@jupyterlab/apputils": ~4.5.0-rc.0 - "@jupyterlab/builder": ~4.4.0-rc.0 - "@jupyterlab/coreutils": ~6.4.0-rc.0 - "@jupyterlab/docregistry": ~4.4.0-rc.0 - "@jupyterlab/notebook": ~4.4.0-rc.0 - "@jupyterlab/translation": ~4.4.0-rc.0 - "@jupyterlab/ui-components": ~4.4.0-rc.0 + "@jupyterlab/application": ~4.4.0-rc.1 + "@jupyterlab/apputils": ~4.5.0-rc.1 + "@jupyterlab/builder": ~4.4.0-rc.1 + "@jupyterlab/coreutils": ~6.4.0-rc.1 + "@jupyterlab/docregistry": ~4.4.0-rc.1 + "@jupyterlab/notebook": ~4.4.0-rc.1 + "@jupyterlab/translation": ~4.4.0-rc.1 + "@jupyterlab/ui-components": ~4.4.0-rc.1 "@lumino/commands": ^2.3.1 "@lumino/disposable": ^2.1.3 rimraf: ^3.0.2 @@ -2387,13 +2387,13 @@ __metadata: resolution: "@jupyter-notebook/notebook-extension@workspace:packages/notebook-extension" dependencies: "@jupyter-notebook/application": ^7.4.0-beta.3 - "@jupyterlab/application": ~4.4.0-rc.0 - "@jupyterlab/apputils": ~4.5.0-rc.0 - "@jupyterlab/cells": ~4.4.0-rc.0 - "@jupyterlab/docmanager": ~4.4.0-rc.0 - "@jupyterlab/notebook": ~4.4.0-rc.0 - "@jupyterlab/settingregistry": ~4.4.0-rc.0 - "@jupyterlab/translation": ~4.4.0-rc.0 + "@jupyterlab/application": ~4.4.0-rc.1 + "@jupyterlab/apputils": ~4.5.0-rc.1 + "@jupyterlab/cells": ~4.4.0-rc.1 + "@jupyterlab/docmanager": ~4.4.0-rc.1 + "@jupyterlab/notebook": ~4.4.0-rc.1 + "@jupyterlab/settingregistry": ~4.4.0-rc.1 + "@jupyterlab/translation": ~4.4.0-rc.1 "@lumino/polling": ^2.1.3 "@lumino/widgets": ^2.5.0 react: ^18.2.0 @@ -2407,7 +2407,7 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyter-notebook/root@workspace:." dependencies: - "@jupyterlab/buildutils": ~4.4.0-rc.0 + "@jupyterlab/buildutils": ~4.4.0-rc.1 "@typescript-eslint/eslint-plugin": ^5.55.0 "@typescript-eslint/parser": ^5.55.0 eslint: ^8.36.0 @@ -2429,9 +2429,9 @@ __metadata: resolution: "@jupyter-notebook/terminal-extension@workspace:packages/terminal-extension" dependencies: "@jupyter-notebook/application": ^7.4.0-beta.3 - "@jupyterlab/application": ~4.4.0-rc.0 - "@jupyterlab/coreutils": ~6.4.0-rc.0 - "@jupyterlab/terminal": ~4.4.0-rc.0 + "@jupyterlab/application": ~4.4.0-rc.1 + "@jupyterlab/coreutils": ~6.4.0-rc.1 + "@jupyterlab/terminal": ~4.4.0-rc.1 "@lumino/algorithm": ^2.0.2 rimraf: ^3.0.2 typescript: ~5.5.4 @@ -2444,18 +2444,18 @@ __metadata: dependencies: "@jupyter-notebook/application": ^7.4.0-beta.3 "@jupyter-notebook/tree": ^7.4.0-beta.3 - "@jupyterlab/application": ~4.4.0-rc.0 - "@jupyterlab/apputils": ~4.5.0-rc.0 - "@jupyterlab/coreutils": ~6.4.0-rc.0 - "@jupyterlab/docmanager": ~4.4.0-rc.0 - "@jupyterlab/filebrowser": ~4.4.0-rc.0 - "@jupyterlab/mainmenu": ~4.4.0-rc.0 - "@jupyterlab/services": ~7.4.0-rc.0 - "@jupyterlab/settingeditor": ~4.4.0-rc.0 - "@jupyterlab/settingregistry": ~4.4.0-rc.0 - "@jupyterlab/statedb": ~4.4.0-rc.0 - "@jupyterlab/translation": ~4.4.0-rc.0 - "@jupyterlab/ui-components": ~4.4.0-rc.0 + "@jupyterlab/application": ~4.4.0-rc.1 + "@jupyterlab/apputils": ~4.5.0-rc.1 + "@jupyterlab/coreutils": ~6.4.0-rc.1 + "@jupyterlab/docmanager": ~4.4.0-rc.1 + "@jupyterlab/filebrowser": ~4.4.0-rc.1 + "@jupyterlab/mainmenu": ~4.4.0-rc.1 + "@jupyterlab/services": ~7.4.0-rc.1 + "@jupyterlab/settingeditor": ~4.4.0-rc.1 + "@jupyterlab/settingregistry": ~4.4.0-rc.1 + "@jupyterlab/statedb": ~4.4.0-rc.1 + "@jupyterlab/translation": ~4.4.0-rc.1 + "@jupyterlab/ui-components": ~4.4.0-rc.1 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/widgets": ^2.5.0 @@ -2469,17 +2469,17 @@ __metadata: resolution: "@jupyter-notebook/tree@workspace:packages/tree" dependencies: "@jupyter-notebook/application": ^7.4.0-beta.3 - "@jupyterlab/application": ~4.4.0-rc.0 - "@jupyterlab/apputils": ~4.5.0-rc.0 - "@jupyterlab/coreutils": ~6.4.0-rc.0 - "@jupyterlab/docmanager": ~4.4.0-rc.0 - "@jupyterlab/filebrowser": ~4.4.0-rc.0 - "@jupyterlab/mainmenu": ~4.4.0-rc.0 - "@jupyterlab/services": ~7.4.0-rc.0 - "@jupyterlab/settingregistry": ~4.4.0-rc.0 - "@jupyterlab/statedb": ~4.4.0-rc.0 - "@jupyterlab/translation": ~4.4.0-rc.0 - "@jupyterlab/ui-components": ~4.4.0-rc.0 + "@jupyterlab/application": ~4.4.0-rc.1 + "@jupyterlab/apputils": ~4.5.0-rc.1 + "@jupyterlab/coreutils": ~6.4.0-rc.1 + "@jupyterlab/docmanager": ~4.4.0-rc.1 + "@jupyterlab/filebrowser": ~4.4.0-rc.1 + "@jupyterlab/mainmenu": ~4.4.0-rc.1 + "@jupyterlab/services": ~7.4.0-rc.1 + "@jupyterlab/settingregistry": ~4.4.0-rc.1 + "@jupyterlab/statedb": ~4.4.0-rc.1 + "@jupyterlab/translation": ~4.4.0-rc.1 + "@jupyterlab/ui-components": ~4.4.0-rc.1 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -2496,7 +2496,7 @@ __metadata: "@babel/core": ^7.10.2 "@babel/preset-env": ^7.10.2 "@jupyterlab/testutils": ~4.3.2 - "@jupyterlab/ui-components": ~4.4.0-rc.0 + "@jupyterlab/ui-components": ~4.4.0-rc.1 "@types/jest": ^29.2.5 babel-loader: ^8.0.6 jest: ^29.3.1 @@ -2544,26 +2544,26 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/application-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/application-extension@npm:4.4.0-rc.0" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/property-inspector": ^4.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/statedb": ^4.4.0-rc.0 - "@jupyterlab/statusbar": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/widgets": ^2.6.0 +"@jupyterlab/application-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/application-extension@npm:4.4.0-rc.1" + dependencies: + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/property-inspector": ^4.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/statedb": ^4.4.0-rc.1 + "@jupyterlab/statusbar": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/commands": ^2.3.2 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: d024959afae3d953ab2c09c60be391171dd1ac01102426a6583fde67ffad5da081a37fb2b4d2b21d538c15271e44e6eb1525c2e09be1168b94e2b60a1033ef31 + checksum: 07614d3863a40a08b9948e28d0ba7f8acb8a2555d1b0abc6aa99980cd0aa8dee008d10ea8330b4ba299b1fc8c47cf296834fb313bd9eacf80d1603dad665f216 languageName: node linkType: hard @@ -2595,62 +2595,62 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/application@npm:^4.4.0-rc.0, @jupyterlab/application@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/application@npm:4.4.0-rc.0" +"@jupyterlab/application@npm:^4.4.0-rc.1, @jupyterlab/application@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/application@npm:4.4.0-rc.1" dependencies: "@fortawesome/fontawesome-free": ^5.12.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/docregistry": ^4.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/statedb": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/application": ^2.4.2 - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/polling": ^2.1.3 - "@lumino/properties": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 - checksum: b2f940de908502b6a6bd77ea5b47c3d928ac85bbca5db2a89544d2136fc607d2e51b2ab74c3ef36926ccda5f499707c98882d8230c9861980d9e70cbd2b2b51c - languageName: node - linkType: hard - -"@jupyterlab/apputils-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/apputils-extension@npm:4.4.0-rc.0" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/docregistry": ^4.4.0-rc.0 - "@jupyterlab/mainmenu": ^4.4.0-rc.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/statedb": ^4.4.0-rc.0 - "@jupyterlab/statusbar": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@jupyterlab/workspaces": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/domutils": ^2.0.2 - "@lumino/polling": ^2.1.3 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/statedb": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/application": ^2.4.3 + "@lumino/commands": ^2.3.2 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/messaging": ^2.0.3 + "@lumino/polling": ^2.1.4 + "@lumino/properties": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 + checksum: 1feaa59a203d0627020282906f33c3d482e8d0c9c6dc54f93c76e6eaddabe66670b8431ccebb45957ec2ad9791007e6f0e2a9975314e0786d602fe4f00c9c0b2 + languageName: node + linkType: hard + +"@jupyterlab/apputils-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/apputils-extension@npm:4.4.0-rc.1" + dependencies: + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/mainmenu": ^4.4.0-rc.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/statedb": ^4.4.0-rc.1 + "@jupyterlab/statusbar": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/workspaces": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/commands": ^2.3.2 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/domutils": ^2.0.3 + "@lumino/polling": ^2.1.4 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 react-dom: ^18.2.0 react-toastify: ^9.0.8 - checksum: b53f67145e0cf385ab1708aaaf5ba7a44b0c8d701faa0cafb183962c42e06236a0729f47e3f94041099aab317510f4491bc2d44af2ba880477bf85285baa0ec2 + checksum: dc5cd51a4b487ba03c54ec8de7ccb92649c47c4566d1571463f61189d7e358c2c5e1639981523640c4cd3ed6198ad2cf3875610dcc7530b78d3c9073ca7a352c languageName: node linkType: hard @@ -2683,32 +2683,32 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/apputils@npm:^4.5.0-rc.0, @jupyterlab/apputils@npm:~4.5.0-rc.0": - version: 4.5.0-rc.0 - resolution: "@jupyterlab/apputils@npm:4.5.0-rc.0" - dependencies: - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/observables": ^5.4.0-rc.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/statedb": ^4.4.0-rc.0 - "@jupyterlab/statusbar": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/domutils": ^2.0.2 - "@lumino/messaging": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/virtualdom": ^2.0.2 - "@lumino/widgets": ^2.6.0 +"@jupyterlab/apputils@npm:^4.5.0-rc.1, @jupyterlab/apputils@npm:~4.5.0-rc.1": + version: 4.5.0-rc.1 + resolution: "@jupyterlab/apputils@npm:4.5.0-rc.1" + dependencies: + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/observables": ^5.4.0-rc.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/statedb": ^4.4.0-rc.1 + "@jupyterlab/statusbar": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/commands": ^2.3.2 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/domutils": ^2.0.3 + "@lumino/messaging": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/virtualdom": ^2.0.3 + "@lumino/widgets": ^2.7.0 "@types/react": ^18.0.26 react: ^18.2.0 sanitize-html: ~2.12.1 - checksum: 3693d10d995d16394d019ec66fc981bc3d6fd478cee359d926c16a8b67a228b336b62eb2c0bb66a6acc5b742047e725fa6aff67ad11631db585f77b31fd68952 + checksum: 62765932efb83625ce251ddb2a4d43476ced1d2b3a656a7cea2f3f284502461dae49b7eeb33bff21d8f6612abfa52115b5b3b1e61c81bcf606afcf9d6d973ea2 languageName: node linkType: hard @@ -2726,36 +2726,36 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/attachments@npm:^4.4.0-rc.0, @jupyterlab/attachments@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/attachments@npm:4.4.0-rc.0" +"@jupyterlab/attachments@npm:^4.4.0-rc.1, @jupyterlab/attachments@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/attachments@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/nbformat": ^4.4.0-rc.0 - "@jupyterlab/observables": ^5.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 - "@lumino/disposable": ^2.1.3 - "@lumino/signaling": ^2.1.3 - checksum: 5b8b23559cc5ce6eac4c1fceefb6ddec5b0bd3b8726f92d6ab62390466adc9c03d9e7172be32b97431d06fbebca83f820792e9380fd20d7572a05b6baae61555 + "@jupyterlab/nbformat": ^4.4.0-rc.1 + "@jupyterlab/observables": ^5.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + "@lumino/disposable": ^2.1.4 + "@lumino/signaling": ^2.1.4 + checksum: 277f79b7499cd021832ec88e36395e5c3f9386c71b4c5c38b042d8d0a9c46a8ef2fc7b916b233d0c177f54dbb016b0d6f044f9c48102763f500b0e3a250c8579 languageName: node linkType: hard -"@jupyterlab/builder@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/builder@npm:4.4.0-rc.0" +"@jupyterlab/builder@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/builder@npm:4.4.0-rc.1" dependencies: - "@lumino/algorithm": ^2.0.2 - "@lumino/application": ^2.4.2 - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/domutils": ^2.0.2 - "@lumino/dragdrop": ^2.1.5 - "@lumino/messaging": ^2.0.2 - "@lumino/properties": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/virtualdom": ^2.0.2 - "@lumino/widgets": ^2.6.0 + "@lumino/algorithm": ^2.0.3 + "@lumino/application": ^2.4.3 + "@lumino/commands": ^2.3.2 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/domutils": ^2.0.3 + "@lumino/dragdrop": ^2.1.6 + "@lumino/messaging": ^2.0.3 + "@lumino/properties": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/virtualdom": ^2.0.3 + "@lumino/widgets": ^2.7.0 ajv: ^8.12.0 commander: ^9.4.1 css-loader: ^6.7.1 @@ -2777,13 +2777,13 @@ __metadata: worker-loader: ^3.0.2 bin: build-labextension: lib/build-labextension.js - checksum: 5d84b0c84d181ec8017d97318ffac74b9dd797e04c8aef9c69eba7d2cac7ec8d3760e7a3723228d20369b816a064ed3d01f70d742a521f176a3ad740c5a96edf + checksum: 7799e78fefec0734669e8c63361763deef9421f77007f39d36738c558ca9faffeb0100e429c089dcf68b4217c3723584ab73f9e516c72ddcb818b3f18a3c0900 languageName: node linkType: hard -"@jupyterlab/buildutils@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/buildutils@npm:4.4.0-rc.0" +"@jupyterlab/buildutils@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/buildutils@npm:4.4.0-rc.1" dependencies: "@yarnpkg/core": ^4.0.3 "@yarnpkg/parsers": ^3.0.0 @@ -2810,40 +2810,41 @@ __metadata: update-dependency: lib/update-dependency.js update-dist-tag: lib/update-dist-tag.js update-staging-lock: lib/update-staging-lock.js - checksum: b1dd7c681f4c6b610e827f80b7c0787f7b1541a167eede390c4b665454c7cfb00e9d507b864ba4fcbc726685280d44da4c2e5c02b8817cb00e991737fe18704f + checksum: 84e77d717276fe229eb135952af02225e3613c96500049da035c0681e69a85197fb6462dca0d8c565fc3962ce42405b47f98d614e515e4d680cf8608c347e460 languageName: node linkType: hard -"@jupyterlab/cell-toolbar-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/cell-toolbar-extension@npm:4.4.0-rc.0" +"@jupyterlab/cell-toolbar-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/cell-toolbar-extension@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/cell-toolbar": ^4.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - checksum: 14c8cf1c793cce7c4be44ccfd801dd0aecdc97e771a56db4ee23397ea0e244778ca91c4fd19685bd6b00dc748796a6df091a80e4de28321e1cb3410706b35e5e + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/cell-toolbar": ^4.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + checksum: 854ab753313c964a19904306cf7cb10bf9456c4c5c7c2910ecfd1596da98c909aa33c2bd39246eda470f2746a80e80af2a392e02b9a9bf847827806e5df42e4a languageName: node linkType: hard -"@jupyterlab/cell-toolbar@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/cell-toolbar@npm:4.4.0-rc.0" +"@jupyterlab/cell-toolbar@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/cell-toolbar@npm:4.4.0-rc.1" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/cells": ^4.4.0-rc.0 - "@jupyterlab/docregistry": ^4.4.0-rc.0 - "@jupyterlab/notebook": ^4.4.0-rc.0 - "@jupyterlab/observables": ^5.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/commands": ^2.3.1 - "@lumino/disposable": ^2.1.3 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 - checksum: 0a20e537781b05528ba78b26336cad05f7ad600e4d6c7cddd24a46e1821f59a666d7fb3efc40801562bae8fce3712cf9946118f16f652059936ae07763dc6247 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/cells": ^4.4.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/notebook": ^4.4.0-rc.1 + "@jupyterlab/observables": ^5.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/commands": ^2.3.2 + "@lumino/disposable": ^2.1.4 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 + checksum: e04dd561757523256d1d06afa0cd462b72caaf71575ecb2ccd42761ab26084278d24c2118ccf1581e81485f3d49a9c60ce0a36122bc67ac78b0f027b28743072 languageName: node linkType: hard @@ -2883,54 +2884,54 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/cells@npm:^4.4.0-rc.0, @jupyterlab/cells@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/cells@npm:4.4.0-rc.0" +"@jupyterlab/cells@npm:^4.4.0-rc.1, @jupyterlab/cells@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/cells@npm:4.4.0-rc.1" dependencies: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/attachments": ^4.4.0-rc.0 - "@jupyterlab/codeeditor": ^4.4.0-rc.0 - "@jupyterlab/codemirror": ^4.4.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/documentsearch": ^4.4.0-rc.0 - "@jupyterlab/filebrowser": ^4.4.0-rc.0 - "@jupyterlab/nbformat": ^4.4.0-rc.0 - "@jupyterlab/observables": ^5.4.0-rc.0 - "@jupyterlab/outputarea": ^4.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/toc": ^6.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/coreutils": ^2.2.0 - "@lumino/domutils": ^2.0.2 - "@lumino/dragdrop": ^2.1.5 - "@lumino/messaging": ^2.0.2 - "@lumino/polling": ^2.1.3 - "@lumino/signaling": ^2.1.3 - "@lumino/virtualdom": ^2.0.2 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/attachments": ^4.4.0-rc.1 + "@jupyterlab/codeeditor": ^4.4.0-rc.1 + "@jupyterlab/codemirror": ^4.4.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/documentsearch": ^4.4.0-rc.1 + "@jupyterlab/filebrowser": ^4.4.0-rc.1 + "@jupyterlab/nbformat": ^4.4.0-rc.1 + "@jupyterlab/observables": ^5.4.0-rc.1 + "@jupyterlab/outputarea": ^4.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/toc": ^6.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/coreutils": ^2.2.1 + "@lumino/domutils": ^2.0.3 + "@lumino/dragdrop": ^2.1.6 + "@lumino/messaging": ^2.0.3 + "@lumino/polling": ^2.1.4 + "@lumino/signaling": ^2.1.4 + "@lumino/virtualdom": ^2.0.3 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: e7259eb4bd4c364f3008b989c4c91870977fe0e89e95246407021cb5efec53330223234c3dc0e3c05976e43dad4e8740d3f790b5ce984eb64fe324e3e6428f79 + checksum: 5302104f2e467990247b6da3b9f155b975b11b5306b97f21a71f988e0ceb6193865c47f77f8050ef23eec3ba3d5d96cc514c9845ec10e884f826642ee8536a25 languageName: node linkType: hard -"@jupyterlab/celltags-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/celltags-extension@npm:4.4.0-rc.0" +"@jupyterlab/celltags-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/celltags-extension@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/notebook": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/notebook": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: ea314573e76ae1df9ba6c8050420685e196e890060968c6db441217ddf9b64d0fd20d6a96dc0eb0cbaa430c038ffeda6af008ebdb7ddb68f06e0da51f555204b + checksum: 35243839ca7748d5d44fe77686dc1876fa7aeadbb339d445755672b1eb73669cbe71359d585e834949e0395262e3a2c620e6f3b42e6e0e670782e771adef5592 languageName: node linkType: hard @@ -2958,33 +2959,33 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/codeeditor@npm:^4.4.0-rc.0, @jupyterlab/codeeditor@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/codeeditor@npm:4.4.0-rc.0" +"@jupyterlab/codeeditor@npm:^4.4.0-rc.1, @jupyterlab/codeeditor@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/codeeditor@npm:4.4.0-rc.1" dependencies: "@codemirror/state": ^6.5.0 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/nbformat": ^4.4.0-rc.0 - "@jupyterlab/observables": ^5.4.0-rc.0 - "@jupyterlab/statusbar": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/dragdrop": ^2.1.5 - "@lumino/messaging": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/nbformat": ^4.4.0-rc.1 + "@jupyterlab/observables": ^5.4.0-rc.1 + "@jupyterlab/statusbar": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/dragdrop": ^2.1.6 + "@lumino/messaging": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 703a663518fae5d0fa7ad98c157f4c1febcf7ca31f7c1b8cc548de75d5c0898b437df2f77d29b7c209e5888b0cecb2864a0844d19e9755eb22ee977e2a36c72a + checksum: 4c79f06ea5f3e65eec610c74817ed0eba2d6e7d7f58327021b58559bad291fd7ddd5a3388ea5b0bd8cb0614ec5d82d941633f0e0aed2348840ffa2c746bca9eb languageName: node linkType: hard -"@jupyterlab/codemirror-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/codemirror-extension@npm:4.4.0-rc.0" +"@jupyterlab/codemirror-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/codemirror-extension@npm:4.4.0-rc.1" dependencies: "@codemirror/commands": ^6.7.1 "@codemirror/lang-markdown": ^6.3.1 @@ -2993,19 +2994,19 @@ __metadata: "@codemirror/search": ^6.5.8 "@codemirror/view": ^6.35.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/codeeditor": ^4.4.0-rc.0 - "@jupyterlab/codemirror": ^4.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/statusbar": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/codeeditor": ^4.4.0-rc.1 + "@jupyterlab/codemirror": ^4.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/statusbar": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + "@lumino/widgets": ^2.7.0 "@rjsf/utils": ^5.13.4 "@rjsf/validator-ajv8": ^5.13.4 react: ^18.2.0 - checksum: 6cf265ebf07adb66aa7fc1df546e20ec6a5ea49de637d73576eedd14ac68347b28cbc378eae997583c536ec0286f1e06e5ce0c6cba1603d627990229ad257e76 + checksum: c09601df1c1fb3dbb8cf09de41146d36a351881636ff02109690b83580733d7eb964c9638d5a423cd5d8efe5ae59be2fd528e0aa09b9a561fdf6b14e7d744590 languageName: node linkType: hard @@ -3051,9 +3052,9 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/codemirror@npm:^4.4.0-rc.0, @jupyterlab/codemirror@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/codemirror@npm:4.4.0-rc.0" +"@jupyterlab/codemirror@npm:^4.4.0-rc.1, @jupyterlab/codemirror@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/codemirror@npm:4.4.0-rc.1" dependencies: "@codemirror/autocomplete": ^6.18.3 "@codemirror/commands": ^6.7.1 @@ -3076,116 +3077,116 @@ __metadata: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/codeeditor": ^4.4.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/documentsearch": ^4.4.0-rc.0 - "@jupyterlab/nbformat": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 + "@jupyterlab/codeeditor": ^4.4.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/documentsearch": ^4.4.0-rc.1 + "@jupyterlab/nbformat": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 "@lezer/common": ^1.2.1 "@lezer/generator": ^1.7.0 "@lezer/highlight": ^1.2.0 "@lezer/markdown": ^1.3.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/signaling": ^2.1.3 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/signaling": ^2.1.4 yjs: ^13.5.40 - checksum: 349059c4ec6faadbd1d32be152ea35e808c656f3f2c1d7e974db2e737d51b2e392da2eeb6c4f35ed56aed7169d03ae93049b0a57fc957e6da4b2aba74e155fdd + checksum: 9c0e3b938837181c763130025462f66b45dbb0fad7ef47fd4d6497d4589cdd08cbcd635413bcfe114b94b5228e84366885ad9ec8d28dbd0422e5ebe70c815b06 languageName: node linkType: hard -"@jupyterlab/completer-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/completer-extension@npm:4.4.0-rc.0" +"@jupyterlab/completer-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/completer-extension@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/codeeditor": ^4.4.0-rc.0 - "@jupyterlab/completer": ^4.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/codeeditor": ^4.4.0-rc.1 + "@jupyterlab/completer": ^4.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/commands": ^2.3.2 + "@lumino/coreutils": ^2.2.1 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: 558663af52d9821dc509a2fb5e46b2273e75edace1cb82c56aac312b765d953f7ddb8c1bfea24accc382b5cbefdf23e9c3917eaf957c30a8742e20814772b75d + checksum: fc7c0c1a6ad33f6258d1691a3348b9ad8b29651dc4133915acd0d464ecd999aaa499e60605b0f08691522c9b7d1bd8b4784ea20e63623d9682c79f2c7b63c2f7 languageName: node linkType: hard -"@jupyterlab/completer@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/completer@npm:4.4.0-rc.0" +"@jupyterlab/completer@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/completer@npm:4.4.0-rc.1" dependencies: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/codeeditor": ^4.4.0-rc.0 - "@jupyterlab/codemirror": ^4.4.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/statedb": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/domutils": ^2.0.2 - "@lumino/messaging": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 - checksum: ddd145ee3962c3092a36783a8729a73886831c2e09bacf940c9df0db5d052cb47a313db93133d22507da2c95ec78864fb3d80bf946a44fdbfcc7873e8103cbe3 - languageName: node - linkType: hard - -"@jupyterlab/console-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/console-extension@npm:4.4.0-rc.0" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/codeeditor": ^4.4.0-rc.0 - "@jupyterlab/completer": ^4.4.0-rc.0 - "@jupyterlab/console": ^4.4.0-rc.0 - "@jupyterlab/filebrowser": ^4.4.0-rc.0 - "@jupyterlab/launcher": ^4.4.0-rc.0 - "@jupyterlab/mainmenu": ^4.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/properties": ^2.0.2 - "@lumino/widgets": ^2.6.0 - checksum: 3f7526e0bc12fa35e68b6fb9f4171d5f64a42701e6c821400ce9835e1e8a4e7654b03faf451fb7fe27d0dcbb0bc355f51430e58429ad18931ec16e97ee92ec15 - languageName: node - linkType: hard - -"@jupyterlab/console@npm:^4.4.0-rc.0, @jupyterlab/console@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/console@npm:4.4.0-rc.0" + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/codeeditor": ^4.4.0-rc.1 + "@jupyterlab/codemirror": ^4.4.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/statedb": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/domutils": ^2.0.3 + "@lumino/messaging": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 + checksum: 6bf740c0d12951c50426f4f14371671c26dd9a8e5a2eb1fb7531ba2ae7185c60f786328d695cf4f1e219450dcb326fca75e9a65974aa3a352891a0729b639dc3 + languageName: node + linkType: hard + +"@jupyterlab/console-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/console-extension@npm:4.4.0-rc.1" + dependencies: + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/codeeditor": ^4.4.0-rc.1 + "@jupyterlab/completer": ^4.4.0-rc.1 + "@jupyterlab/console": ^4.4.0-rc.1 + "@jupyterlab/filebrowser": ^4.4.0-rc.1 + "@jupyterlab/launcher": ^4.4.0-rc.1 + "@jupyterlab/mainmenu": ^4.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/properties": ^2.0.3 + "@lumino/widgets": ^2.7.0 + checksum: 75ccf04a302bbe304ea3b9140c70324eb00f76cef728c9e8f9c6127a2a86e17a402d600e5c1dc8b1de78a007172138535e6fda1df930f6d4a6cb7f4765f1f4ea + languageName: node + linkType: hard + +"@jupyterlab/console@npm:^4.4.0-rc.1, @jupyterlab/console@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/console@npm:4.4.0-rc.1" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/cells": ^4.4.0-rc.0 - "@jupyterlab/codeeditor": ^4.4.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/nbformat": ^4.4.0-rc.0 - "@jupyterlab/observables": ^5.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/dragdrop": ^2.1.5 - "@lumino/messaging": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 - checksum: 9b0a9e91a47fd787c78927d746bb6055c0c581ce569e866a8f87fdeceac9fe27c7935e14e70ac1ec8a09d1f48276b9ceb65a8771861082dc0e8b6d6aa3380828 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/cells": ^4.4.0-rc.1 + "@jupyterlab/codeeditor": ^4.4.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/nbformat": ^4.4.0-rc.1 + "@jupyterlab/observables": ^5.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/dragdrop": ^2.1.6 + "@lumino/messaging": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 + checksum: 169152c0f1f6cb044c711278e2948bf95fae36877d9339240a5fbdb1fa0f030e0f9bef1323f4200cc62760dc009fd8c3ab0cd99e44dbac69564301b3d1dbf8c2 languageName: node linkType: hard @@ -3203,142 +3204,142 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/coreutils@npm:^6.4.0-rc.0, @jupyterlab/coreutils@npm:~6.4.0-rc.0": - version: 6.4.0-rc.0 - resolution: "@jupyterlab/coreutils@npm:6.4.0-rc.0" +"@jupyterlab/coreutils@npm:^6.4.0-rc.1, @jupyterlab/coreutils@npm:~6.4.0-rc.1": + version: 6.4.0-rc.1 + resolution: "@jupyterlab/coreutils@npm:6.4.0-rc.1" dependencies: - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/signaling": ^2.1.3 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/signaling": ^2.1.4 minimist: ~1.2.0 path-browserify: ^1.0.0 url-parse: ~1.5.4 - checksum: dff140ce23ba87aa8c8d941e299e2489365055343eaa520ba06d406d94bdf4fd02b88af9cc782ff14c800bc25ed6bf6d7cdc96e084f42d326ff120973c898cde - languageName: node - linkType: hard - -"@jupyterlab/csvviewer-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/csvviewer-extension@npm:4.4.0-rc.0" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/csvviewer": ^4.4.0-rc.0 - "@jupyterlab/docregistry": ^4.4.0-rc.0 - "@jupyterlab/documentsearch": ^4.4.0-rc.0 - "@jupyterlab/mainmenu": ^4.4.0-rc.0 - "@jupyterlab/observables": ^5.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@lumino/datagrid": ^2.5.0 - "@lumino/widgets": ^2.6.0 - checksum: d0dd1b68557564e7feaa75c682d3cb4b4ef62d8811e60675c9b158b96a8a71987def0589c3b2438b5652323ea1dfa7df1fab14ce8ed576d19cfa8222663db83b - languageName: node - linkType: hard - -"@jupyterlab/csvviewer@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/csvviewer@npm:4.4.0-rc.0" - dependencies: - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/docregistry": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/datagrid": ^2.5.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 - checksum: e4b902a09869085fb9f48c27e2729b6027a2ddfe72a942330d4b2c6716458dd12ce4b0b6cb1db1d4c64cdd748ec63388e2ec4935300b6d6f4c75cc4d953c0ad6 - languageName: node - linkType: hard - -"@jupyterlab/debugger-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/debugger-extension@npm:4.4.0-rc.0" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/cells": ^4.4.0-rc.0 - "@jupyterlab/codeeditor": ^4.4.0-rc.0 - "@jupyterlab/console": ^4.4.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/debugger": ^4.4.0-rc.0 - "@jupyterlab/docregistry": ^4.4.0-rc.0 - "@jupyterlab/fileeditor": ^4.4.0-rc.0 - "@jupyterlab/logconsole": ^4.4.0-rc.0 - "@jupyterlab/notebook": ^4.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@lumino/commands": ^2.3.1 - checksum: bcff4c3ca3abd68a8eafb8f02eeb783c112a277e36e0f737796022c1572b6dc25ae4ab5c8285d407d258b721aee1d3c175e894634071e48ccb7bca625f23f9c7 - languageName: node - linkType: hard - -"@jupyterlab/debugger@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/debugger@npm:4.4.0-rc.0" + checksum: 1bd469a1af2ba409f2be12b8a82adea57f2781c9d6e3d7e10e784636a15dd523e37dcf5500bab1d47b3a63edadecfc46119f73f39625a06115f0c01c23ffd68e + languageName: node + linkType: hard + +"@jupyterlab/csvviewer-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/csvviewer-extension@npm:4.4.0-rc.1" + dependencies: + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/csvviewer": ^4.4.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/documentsearch": ^4.4.0-rc.1 + "@jupyterlab/mainmenu": ^4.4.0-rc.1 + "@jupyterlab/observables": ^5.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@lumino/datagrid": ^2.5.1 + "@lumino/widgets": ^2.7.0 + checksum: 940a25ac160cbd5103af1bc70677722631f45195b920d0e23eca88629372ddb540fa28597c1942a5b1141de757e7a01e889aca8e87350962fb43a3b96a413794 + languageName: node + linkType: hard + +"@jupyterlab/csvviewer@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/csvviewer@npm:4.4.0-rc.1" + dependencies: + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + "@lumino/datagrid": ^2.5.1 + "@lumino/disposable": ^2.1.4 + "@lumino/messaging": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 + checksum: 0776250cc107b3e5eb3bfa44ca15b192d2aff0998a98c00aa38acb6ecab8078eb8e85b57d84aba2e667c5c44151ddc3c3bf1814a0141201d19dbed4b30853085 + languageName: node + linkType: hard + +"@jupyterlab/debugger-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/debugger-extension@npm:4.4.0-rc.1" + dependencies: + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/cells": ^4.4.0-rc.1 + "@jupyterlab/codeeditor": ^4.4.0-rc.1 + "@jupyterlab/console": ^4.4.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/debugger": ^4.4.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/fileeditor": ^4.4.0-rc.1 + "@jupyterlab/logconsole": ^4.4.0-rc.1 + "@jupyterlab/notebook": ^4.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@lumino/commands": ^2.3.2 + checksum: c56a2694c6d37d49589ea97932878ae25ba94332bc080c6ca494f926d2c90e652f1072602811bf812c2347088018043d703fbdc8ce8f31c9e9bc854ee7b5f80f + languageName: node + linkType: hard + +"@jupyterlab/debugger@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/debugger@npm:4.4.0-rc.1" dependencies: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/react-components": ^0.16.6 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/cells": ^4.4.0-rc.0 - "@jupyterlab/codeeditor": ^4.4.0-rc.0 - "@jupyterlab/codemirror": ^4.4.0-rc.0 - "@jupyterlab/console": ^4.4.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/docregistry": ^4.4.0-rc.0 - "@jupyterlab/fileeditor": ^4.4.0-rc.0 - "@jupyterlab/notebook": ^4.4.0-rc.0 - "@jupyterlab/observables": ^5.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/datagrid": ^2.5.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/polling": ^2.1.3 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/cells": ^4.4.0-rc.1 + "@jupyterlab/codeeditor": ^4.4.0-rc.1 + "@jupyterlab/codemirror": ^4.4.0-rc.1 + "@jupyterlab/console": ^4.4.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/fileeditor": ^4.4.0-rc.1 + "@jupyterlab/notebook": ^4.4.0-rc.1 + "@jupyterlab/observables": ^5.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/commands": ^2.3.2 + "@lumino/coreutils": ^2.2.1 + "@lumino/datagrid": ^2.5.1 + "@lumino/disposable": ^2.1.4 + "@lumino/messaging": ^2.0.3 + "@lumino/polling": ^2.1.4 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 "@vscode/debugprotocol": ^1.51.0 react: ^18.2.0 - checksum: 8b80487e71fd75888da3add74169b33880147891d1d5f07fd4b738f729f0ee99a0787fbd7c24a2f0a3c7fe2bd6ee49d365feb3cc0a19531260f93afc6ed5957d - languageName: node - linkType: hard - -"@jupyterlab/docmanager-extension@npm:^4.4.0-rc.0, @jupyterlab/docmanager-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/docmanager-extension@npm:4.4.0-rc.0" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/docmanager": ^4.4.0-rc.0 - "@jupyterlab/docregistry": ^4.4.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/statedb": ^4.4.0-rc.0 - "@jupyterlab/statusbar": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 + checksum: e7f331dda8c82c29a04de9cb9fecc09bf9f1a8439f7da0d510b7ca40bbd6a8018c20486810e052081eb9bde108c2868a01d0db3c900e1e4ed1f53206abb62912 + languageName: node + linkType: hard + +"@jupyterlab/docmanager-extension@npm:^4.4.0-rc.1, @jupyterlab/docmanager-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/docmanager-extension@npm:4.4.0-rc.1" + dependencies: + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/docmanager": ^4.4.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/statedb": ^4.4.0-rc.1 + "@jupyterlab/statusbar": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/commands": ^2.3.2 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 1a85075d376c63e551fef12e27879f2ea7e3928939fe40f0f32b7d0a73f93f5f95662048532c88c04d32564a1f775e66d8179a6fe404fd299df0b2e88e7fcf4e + checksum: 9d69833d156e697f64bda6138fc1cd1a18f15dfb9de44bf09f451087256b0e104130d05df61beb920c4d3f479021a185b1749568daab9adc3f49ce4eb400fd28 languageName: node linkType: hard @@ -3367,28 +3368,28 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/docmanager@npm:^4.4.0-rc.0, @jupyterlab/docmanager@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/docmanager@npm:4.4.0-rc.0" - dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/docregistry": ^4.4.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/statedb": ^4.4.0-rc.0 - "@jupyterlab/statusbar": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/polling": ^2.1.3 - "@lumino/properties": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 +"@jupyterlab/docmanager@npm:^4.4.0-rc.1, @jupyterlab/docmanager@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/docmanager@npm:4.4.0-rc.1" + dependencies: + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/statedb": ^4.4.0-rc.1 + "@jupyterlab/statusbar": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/messaging": ^2.0.3 + "@lumino/polling": ^2.1.4 + "@lumino/properties": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 88ac773b96db81759c915674cd03d9b436484540bac0198bd77aa9039a414abe1ea5aed9b6ada2109408a983b39d78eb11b681f7dde4290f6b732185f66f3456 + checksum: 1e07946f362d8ad044c1afd549a62147f3fd94dfafa4d79c89aba659adc5db8b3ebcf25cd9a9c3bbba0dbfeab030c98815e042e420bb403e30210137add125d2 languageName: node linkType: hard @@ -3418,44 +3419,44 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/docregistry@npm:^4.4.0-rc.0, @jupyterlab/docregistry@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/docregistry@npm:4.4.0-rc.0" +"@jupyterlab/docregistry@npm:^4.4.0-rc.1, @jupyterlab/docregistry@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/docregistry@npm:4.4.0-rc.1" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/codeeditor": ^4.4.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/observables": ^5.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/properties": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/codeeditor": ^4.4.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/observables": ^5.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/messaging": ^2.0.3 + "@lumino/properties": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: bdd65304c1b3132d9962a237f09d3d83915ec3236c256c7aad9ad51f258fe1e34be29cb1b2dc49256965d83c0c80cb6db2224e1e141e2bf62becb266dc88456c + checksum: eea0e455c63d09624beb5738835ef432c093fde2176db953a30dd00ce9066c65ca80a335fad77d2f81ba491298bf36d28337d37de53c4653ca4489207c0500ad languageName: node linkType: hard -"@jupyterlab/documentsearch-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/documentsearch-extension@npm:4.4.0-rc.0" +"@jupyterlab/documentsearch-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/documentsearch-extension@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/documentsearch": ^4.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@lumino/commands": ^2.3.1 - "@lumino/widgets": ^2.6.0 - checksum: fccb594fd684b2e62f0a043e32e6ad1929bd7b75a5b8659132b3c05554d364c15c833b61a186766905cc0641bee1db0af2e6da6c2354797ef1beef8e299c9d6b + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/documentsearch": ^4.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@lumino/commands": ^2.3.2 + "@lumino/widgets": ^2.7.0 + checksum: 84eef45e7879ca0e031f3386a27e9820b105dd5ba51ec9e058a7d58f63a8c9c155b8053b4bf84c5f6d35d4025df7f74a2ef633f6df7d4c54a2f60944b8098ee0 languageName: node linkType: hard @@ -3478,78 +3479,78 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/documentsearch@npm:^4.4.0-rc.0, @jupyterlab/documentsearch@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/documentsearch@npm:4.4.0-rc.0" +"@jupyterlab/documentsearch@npm:^4.4.0-rc.1, @jupyterlab/documentsearch@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/documentsearch@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/polling": ^2.1.3 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/commands": ^2.3.2 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/messaging": ^2.0.3 + "@lumino/polling": ^2.1.4 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 6f27b4e0955843e609ad9e96da289da195fe925b5080d52727df2e0e6d7d0801708d6f55abdd0c2dcb481adeb5e136310857724f5a1802048bb59bc84130a3a1 + checksum: e5da695174e79a4484dd6fcdad087f49919e1cafbcd2d0b7338e42a841e0dbb13309317c174ab787fe70c067218f529d41fc7e15b85524bc00a6a24da62a09b5 languageName: node linkType: hard -"@jupyterlab/extensionmanager-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/extensionmanager-extension@npm:4.4.0-rc.0" +"@jupyterlab/extensionmanager-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/extensionmanager-extension@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/extensionmanager": ^4.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - checksum: 5ada993b624878f3e9535e3ad1724cdc87e28ec7a3ca9a6a8154b253d7ccbe1f11d6adf36cd0267fe7d12ae9d6801527b5d5310d811e62a28cb15618620614ee + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/extensionmanager": ^4.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + checksum: 8b929516f82a048153536e64fd7af823509411b867e6ded71b6ffdffb7a0b57daf27d4198c874e3961b4d189d0cf1cc43c7981b1c4cfd217fafdf07060a22abc languageName: node linkType: hard -"@jupyterlab/extensionmanager@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/extensionmanager@npm:4.4.0-rc.0" +"@jupyterlab/extensionmanager@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/extensionmanager@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/messaging": ^2.0.2 - "@lumino/polling": ^2.1.3 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/messaging": ^2.0.3 + "@lumino/polling": ^2.1.4 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 react-paginate: ^6.3.2 semver: ^7.5.2 - checksum: da4b7b434b3ae608a1ef4c05307f2df3a51b4b5284dd8cd85e7f474e08e099d7a6845620444dbae78880c6810383a03e72e0b07d62daeaf13e25d60e4ce4a68e - languageName: node - linkType: hard - -"@jupyterlab/filebrowser-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/filebrowser-extension@npm:4.4.0-rc.0" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/docmanager": ^4.4.0-rc.0 - "@jupyterlab/docregistry": ^4.4.0-rc.0 - "@jupyterlab/filebrowser": ^4.4.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/statedb": ^4.4.0-rc.0 - "@jupyterlab/statusbar": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/commands": ^2.3.1 - "@lumino/widgets": ^2.6.0 - checksum: 97d4b75ecb89613b78fee7280aef550b7a04173a648c32f745603d10f7bb750fb03f8735bd347dff946f2df3091beed1a4b08d520b0ff81a78b27847ff929902 + checksum: f0fb3b98c6ab0bb2e20918d8a10b14868587ea397a1e0cadabf2389338172dbefe59e37849fc0a412b863908b24d486388f8454199b1b659593116d039c26e86 + languageName: node + linkType: hard + +"@jupyterlab/filebrowser-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/filebrowser-extension@npm:4.4.0-rc.1" + dependencies: + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/docmanager": ^4.4.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/filebrowser": ^4.4.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/statedb": ^4.4.0-rc.1 + "@jupyterlab/statusbar": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/commands": ^2.3.2 + "@lumino/widgets": ^2.7.0 + checksum: c673fcf9ad6bcfb9b2cdc02013dc4defd7e8c7c6d71925651498c04178e9649062b3f8e6a19de96a0cbdf04afb749015c076f900d496be9d49ce46d259b33440 languageName: node linkType: hard @@ -3581,292 +3582,292 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/filebrowser@npm:^4.4.0-rc.0, @jupyterlab/filebrowser@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/filebrowser@npm:4.4.0-rc.0" - dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/docmanager": ^4.4.0-rc.0 - "@jupyterlab/docregistry": ^4.4.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/statedb": ^4.4.0-rc.0 - "@jupyterlab/statusbar": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/domutils": ^2.0.2 - "@lumino/dragdrop": ^2.1.5 - "@lumino/messaging": ^2.0.2 - "@lumino/polling": ^2.1.3 - "@lumino/signaling": ^2.1.3 - "@lumino/virtualdom": ^2.0.2 - "@lumino/widgets": ^2.6.0 +"@jupyterlab/filebrowser@npm:^4.4.0-rc.1, @jupyterlab/filebrowser@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/filebrowser@npm:4.4.0-rc.1" + dependencies: + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/docmanager": ^4.4.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/statedb": ^4.4.0-rc.1 + "@jupyterlab/statusbar": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/domutils": ^2.0.3 + "@lumino/dragdrop": ^2.1.6 + "@lumino/messaging": ^2.0.3 + "@lumino/polling": ^2.1.4 + "@lumino/signaling": ^2.1.4 + "@lumino/virtualdom": ^2.0.3 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: f4bb40585c51810d402243256ccd608b1bd8698039642a1329f4c372497a5da82f7d64022be142b6e4a89706d87f24e51625ee6354e68055eba22ba3109fe9d9 + checksum: 31ba501c3bab8a8ff54d673e693336486604a165b64f0255687f9d833c31877b4fa1cd73e1ef92d3ed9396ae740fe259b4843011e07efe9b2085fff207190130 languageName: node linkType: hard -"@jupyterlab/fileeditor-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/fileeditor-extension@npm:4.4.0-rc.0" +"@jupyterlab/fileeditor-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/fileeditor-extension@npm:4.4.0-rc.1" dependencies: "@codemirror/commands": ^6.7.1 "@codemirror/search": ^6.5.8 - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/codeeditor": ^4.4.0-rc.0 - "@jupyterlab/codemirror": ^4.4.0-rc.0 - "@jupyterlab/completer": ^4.4.0-rc.0 - "@jupyterlab/console": ^4.4.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/docregistry": ^4.4.0-rc.0 - "@jupyterlab/documentsearch": ^4.4.0-rc.0 - "@jupyterlab/filebrowser": ^4.4.0-rc.0 - "@jupyterlab/fileeditor": ^4.4.0-rc.0 - "@jupyterlab/launcher": ^4.4.0-rc.0 - "@jupyterlab/lsp": ^4.4.0-rc.0 - "@jupyterlab/mainmenu": ^4.4.0-rc.0 - "@jupyterlab/observables": ^5.4.0-rc.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/statusbar": ^4.4.0-rc.0 - "@jupyterlab/toc": ^6.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/widgets": ^2.6.0 - checksum: 21706d5130cdf04f8ba9f3eaad1e041048be4586139cad622c348d01f7750d2cde8cf3f1604f9b7580d48be65a5dd710d106d8c1f9dfe13615334e89c0995149 - languageName: node - linkType: hard - -"@jupyterlab/fileeditor@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/fileeditor@npm:4.4.0-rc.0" + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/codeeditor": ^4.4.0-rc.1 + "@jupyterlab/codemirror": ^4.4.0-rc.1 + "@jupyterlab/completer": ^4.4.0-rc.1 + "@jupyterlab/console": ^4.4.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/documentsearch": ^4.4.0-rc.1 + "@jupyterlab/filebrowser": ^4.4.0-rc.1 + "@jupyterlab/fileeditor": ^4.4.0-rc.1 + "@jupyterlab/launcher": ^4.4.0-rc.1 + "@jupyterlab/lsp": ^4.4.0-rc.1 + "@jupyterlab/mainmenu": ^4.4.0-rc.1 + "@jupyterlab/observables": ^5.4.0-rc.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/statusbar": ^4.4.0-rc.1 + "@jupyterlab/toc": ^6.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/commands": ^2.3.2 + "@lumino/coreutils": ^2.2.1 + "@lumino/widgets": ^2.7.0 + checksum: 327b389d78de2b200ef5af11e4a93ffa2743c6f2b3acf4978b83fa67cee36b4cf08ed3cd128e2ecf90d23fd1ad7365fb3610d796bf9895f13e2192d8935944e2 + languageName: node + linkType: hard + +"@jupyterlab/fileeditor@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/fileeditor@npm:4.4.0-rc.1" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/codeeditor": ^4.4.0-rc.0 - "@jupyterlab/codemirror": ^4.4.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/docregistry": ^4.4.0-rc.0 - "@jupyterlab/documentsearch": ^4.4.0-rc.0 - "@jupyterlab/lsp": ^4.4.0-rc.0 - "@jupyterlab/statusbar": ^4.4.0-rc.0 - "@jupyterlab/toc": ^6.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/messaging": ^2.0.2 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/codeeditor": ^4.4.0-rc.1 + "@jupyterlab/codemirror": ^4.4.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/documentsearch": ^4.4.0-rc.1 + "@jupyterlab/lsp": ^4.4.0-rc.1 + "@jupyterlab/statusbar": ^4.4.0-rc.1 + "@jupyterlab/toc": ^6.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/commands": ^2.3.2 + "@lumino/coreutils": ^2.2.1 + "@lumino/messaging": ^2.0.3 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 regexp-match-indices: ^1.0.2 - checksum: 2301e0620bab6e33dcd09385f9213933afd9c9d6837532ed3b3d265e0c658604597592d823bbe517d037a55f1d333313c979c208842506b68a2bae91292fcc9e + checksum: 761d5eec861bede4a3898489b75b4cec5ce03d55c576bc12448f900ebe449bf90e5cf17c8a41bb130a2d83cb999bf1a3e0745ddf211a16f78252b685b88ce308 languageName: node linkType: hard -"@jupyterlab/help-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/help-extension@npm:4.4.0-rc.0" +"@jupyterlab/help-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/help-extension@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/mainmenu": ^4.4.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/mainmenu": ^4.4.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 11532b942f8d70f71ea4a61c73240cfb270b05555f98d96fa957868461778e15a2417c5f8ccb4af131ca19a3b40b70abd80cbecc00b4d260ad252ced4d0d909e + checksum: 49e11c2c162f89bba6e9dbc801b2a93f665d1c4514d3e9c8c1996e39932b7660ee96c0085836ea06c0f0847c95dbece06514f349155e8c733b389be537f216e3 languageName: node linkType: hard -"@jupyterlab/htmlviewer-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/htmlviewer-extension@npm:4.4.0-rc.0" +"@jupyterlab/htmlviewer-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/htmlviewer-extension@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/docregistry": ^4.4.0-rc.0 - "@jupyterlab/htmlviewer": ^4.4.0-rc.0 - "@jupyterlab/observables": ^5.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - checksum: 153e4d5323a9fff9cc190988bdb063ae79df46112d315081f2fc1d591698fb0e756ba494348c6351f78024abdbe22380eadcd33c92586956d3fd1570c2ceeefd + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/htmlviewer": ^4.4.0-rc.1 + "@jupyterlab/observables": ^5.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + checksum: 61913fa935642597b9023281cf218d217af51a3c53671c2d3fc530f8de1cd7dd98f4113dc5a96bbd9f4308736817ba25f8a7db0ff2d25aff2b96059f17a51ed4 languageName: node linkType: hard -"@jupyterlab/htmlviewer@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/htmlviewer@npm:4.4.0-rc.0" +"@jupyterlab/htmlviewer@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/htmlviewer@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/docregistry": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 2dc88de9d82c70cfd5c3cc472f7700507f1f6b73ea449c7d8fe09c79bb3fda6cb4d4e26a12d7f7125113bb0836bf5770dba0720cb0c7ff7ec2300e693f49c711 + checksum: 41fe7d0142ba78b8f686738830cd85d043f5ef530d84dedb85f382ee85c8c6595e48c9c6740dd633d68cc8706cad1126f26afc94abe96eca020e5ea111af3462 languageName: node linkType: hard -"@jupyterlab/hub-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/hub-extension@npm:4.4.0-rc.0" +"@jupyterlab/hub-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/hub-extension@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - checksum: 3338451de909d7b5a4a0ff3e857b7070fb98fcbe300d5791fde1ff4bd2a752b87c0421381c47b3d44e98572e1fff548c743029b02dd5e3850478dd3a4e94f789 + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + checksum: c8b85309438fa239ca22cb701b9e877f5a97798db0c1fb08888c211b89e8041a25f707b902cf17d06aa9700c9cc4c013909cdff5489fa049050d93410ca63be2 languageName: node linkType: hard -"@jupyterlab/imageviewer-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/imageviewer-extension@npm:4.4.0-rc.0" +"@jupyterlab/imageviewer-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/imageviewer-extension@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/docregistry": ^4.4.0-rc.0 - "@jupyterlab/imageviewer": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - checksum: 40a83257af47cd4e93b6476758f2b6ac9213eedaf9a91584909bb82c9833c178eeb73eb5aa3f6415b719f80243991e596914cc860b6ee5e4bc6d76104f250629 + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/imageviewer": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + checksum: 490674fb029163000f0edf3ebb4727cb696f18ec0d6bb8765b859a08e615cdea7f02f9abcc8624e328b43e521d2f479a64c99051002688f97ce8fb20b172dc0b languageName: node linkType: hard -"@jupyterlab/imageviewer@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/imageviewer@npm:4.4.0-rc.0" +"@jupyterlab/imageviewer@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/imageviewer@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/docregistry": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/messaging": ^2.0.2 - "@lumino/widgets": ^2.6.0 - checksum: 0b9e662b8fc898719a6291b85d52b6d9a0d4bacc326a79f6f30f201a1d3d40646f666907b603e1c2db12a3dab1f8722b4a823443e2992fb63b290da50cb5d861 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + "@lumino/messaging": ^2.0.3 + "@lumino/widgets": ^2.7.0 + checksum: 9d4fcdff547ae3c760d3021d6934d8bf5bec6ac22fc86dcd8df680c6fe4cdc4755a6e72a149ba2bf07d0600f35f05fe82d0bcf43df6b6ad6e88be0219f26195d languageName: node linkType: hard -"@jupyterlab/inspector@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/inspector@npm:4.4.0-rc.0" +"@jupyterlab/inspector@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/inspector@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/codeeditor": ^4.4.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/statedb": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/polling": ^2.1.3 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 - checksum: 263bff82c9f8d5152e7c9f9c37d3c45221ad816595ced51a50e99e8ca24716ba59e8945d1e4aed98d61747a06a8c75913b923d117e57914290c9ac6baff551e5 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/codeeditor": ^4.4.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/statedb": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/polling": ^2.1.4 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 + checksum: 74628070d1632b5ba8e6823bba56ced2218b070e6ee8eb7cea333713f9d0927bff0c6e7d435e149a3281be3eef508b690f279fbaab3c51763ad55caab27172f4 languageName: node linkType: hard -"@jupyterlab/javascript-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/javascript-extension@npm:4.4.0-rc.0" +"@jupyterlab/javascript-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/javascript-extension@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 - checksum: a84a7707645162ddd8d043e237652f69d190b0a3c87a0f95d0984fb77549fefb0b4323aeb419b7abcb3146272324db132e4f33ce7bd5ca74e13b65f6359274b4 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + checksum: d55757e51da299eee5a9037517f00a5a32a47bf6c139450963a1e326b9a9b8915cd154e57ec7a1822e2c541dfed48d82d93e8e30644298a7cdf7252e5afd28be languageName: node linkType: hard -"@jupyterlab/json-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/json-extension@npm:4.4.0-rc.0" +"@jupyterlab/json-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/json-extension@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/codemirror": ^4.4.0-rc.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/codemirror": ^4.4.0-rc.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 "@lezer/highlight": ^1.2.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/messaging": ^2.0.2 - "@lumino/widgets": ^2.6.0 + "@lumino/coreutils": ^2.2.1 + "@lumino/messaging": ^2.0.3 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 react-dom: ^18.2.0 react-highlight-words: ^0.20.0 react-json-tree: ^0.18.0 style-mod: ^4.0.0 - checksum: 98238c65f8917152d2ba6fd423de8623064ca370bb7d033ff27c826bb9efc8c95f2bc210a0260ffa78d9b50309ce69af4313307f6a667bf86772a0e03fdbcdd1 + checksum: 2b9172601f3af819c17982eb47d440ba9d954b3c5cf3f84d016fe1acd8e2d9a9160e7ac0965f6a4c415d79b85489fd827d40224c0ca53680ebce26137db9d3ab languageName: node linkType: hard -"@jupyterlab/launcher@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/launcher@npm:4.4.0-rc.0" +"@jupyterlab/launcher@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/launcher@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/properties": ^2.0.2 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/commands": ^2.3.2 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/properties": ^2.0.3 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 2e0d6da6a76d235def05a107509252a85672b1c250fbf457e4709133e3eefceb02bdc336b422d274392dc6032df3f9b049298c69463b99834991005dfed1cba8 - languageName: node - linkType: hard - -"@jupyterlab/logconsole@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/logconsole@npm:4.4.0-rc.0" - dependencies: - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/nbformat": ^4.4.0-rc.0 - "@jupyterlab/outputarea": ^4.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 - checksum: 6e5d9c0c521683cb49e252e5bcbb1c46ef58fd167a0b8917a3ed782ea9f0a1c03457443b5ca1ce81f9a53a3350a24a2b8d56abf364350e62cc26df263b1c6dcd - languageName: node - linkType: hard - -"@jupyterlab/lsp-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/lsp-extension@npm:4.4.0-rc.0" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/lsp": ^4.4.0-rc.0 - "@jupyterlab/running": ^4.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/polling": ^2.1.3 - "@lumino/signaling": ^2.1.3 + checksum: e5895a41d45c20a160022553c75fdd6b92d152c101ce9b96bd85b67d5bf510ef50d01a95384dd5ac7021da6abdf847443363aba35e8cfe99e1dca19cce50fc67 + languageName: node + linkType: hard + +"@jupyterlab/logconsole@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/logconsole@npm:4.4.0-rc.1" + dependencies: + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/nbformat": ^4.4.0-rc.1 + "@jupyterlab/outputarea": ^4.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/messaging": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 + checksum: 1c5318b82f518dec40335f8342bf05b995d63baf69d4eff635dd70e0509a4b07eda3e4cbcf52eff941f7a6ae5263745bae8b487c183fcbf47f20755e67128e4d + languageName: node + linkType: hard + +"@jupyterlab/lsp-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/lsp-extension@npm:4.4.0-rc.1" + dependencies: + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/lsp": ^4.4.0-rc.1 + "@jupyterlab/running": ^4.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + "@lumino/polling": ^2.1.4 + "@lumino/signaling": ^2.1.4 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: 144029874d666761de6cbec5d78a3962004a18e1f9aea358bb613d2f5e614c9bdb3d7998f2720f225478ef0efeba5e564cc1c0acdeeb438ebc95a34dee139cb3 + checksum: 6ddfeabffc1e5dc44704e7da5d7a81a941b9eacf50382bdef8618e5c4bdf5879d8da7da54b6413c146cc53887d97501edec1a3704674e68ee5d79aaaced5142f languageName: node linkType: hard @@ -3893,191 +3894,191 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/lsp@npm:^4.4.0-rc.0, @jupyterlab/lsp@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/lsp@npm:4.4.0-rc.0" +"@jupyterlab/lsp@npm:^4.4.0-rc.1, @jupyterlab/lsp@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/lsp@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/codeeditor": ^4.4.0-rc.0 - "@jupyterlab/codemirror": ^4.4.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/docregistry": ^4.4.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/codeeditor": ^4.4.0-rc.1 + "@jupyterlab/codemirror": ^4.4.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 lodash.mergewith: ^4.6.1 vscode-jsonrpc: ^6.0.0 vscode-languageserver-protocol: ^3.17.0 vscode-ws-jsonrpc: ~1.0.2 - checksum: e06267e976756be96021c7299ee738e4ef4c74ec6f5c76fa3caa6b6b36fe2296dc07b56deb0b6b8b02e27554e8ff129b72b9deecfbe3f4fae46931cbeb720c2b - languageName: node - linkType: hard - -"@jupyterlab/mainmenu-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/mainmenu-extension@npm:4.4.0-rc.0" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/docmanager": ^4.4.0-rc.0 - "@jupyterlab/filebrowser": ^4.4.0-rc.0 - "@jupyterlab/mainmenu": ^4.4.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/widgets": ^2.6.0 - checksum: d656e67c02e6601ce20fdbbc67d9b32544d08ae75ff007f80ac2cad65c29a644599e412ee4a1442940d578c026074c6edfc32cb803a184b979032e2ec64e0f16 - languageName: node - linkType: hard - -"@jupyterlab/mainmenu@npm:^4.4.0-rc.0, @jupyterlab/mainmenu@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/mainmenu@npm:4.4.0-rc.0" - dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/widgets": ^2.6.0 - checksum: 1aee73b96ed563aa7aa90f56d749c22abd6f773b62a1cf03066ebc8587490776b6e0dd4a5abae86191dc8167429a50c77f38c35d5f37013195581e01c0724936 - languageName: node - linkType: hard - -"@jupyterlab/markdownviewer-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/markdownviewer-extension@npm:4.4.0-rc.0" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/markdownviewer": ^4.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/toc": ^6.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - checksum: 133e056870c553964311e72d4dc68d19d74d4373475d067687b9e9de2c8607b5af37c9f9425b563d5a4a75960f1ada6792119d303cfa3378609ee14aa95e78c5 - languageName: node - linkType: hard - -"@jupyterlab/markdownviewer@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/markdownviewer@npm:4.4.0-rc.0" - dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/docregistry": ^4.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@jupyterlab/toc": ^6.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/messaging": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 - checksum: 40c967b46b1e9e7e2b0e193d87e62611123fd44a7c8000f6e958f0fa9d501e4763de0e05a25b98b3440bdcc1274865f40194de42fcb2136b523b04e4dc7bf955 - languageName: node - linkType: hard - -"@jupyterlab/markedparser-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/markedparser-extension@npm:4.4.0-rc.0" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/codemirror": ^4.4.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/mermaid": ^4.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 + checksum: da3edacdb16cfa01e7a078f65f00ff168e6f0b42a28798422483f77df0130972f233058d9877322b44f06d1658693dbff82c58acde74095f67e62bbad43d64cc + languageName: node + linkType: hard + +"@jupyterlab/mainmenu-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/mainmenu-extension@npm:4.4.0-rc.1" + dependencies: + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/docmanager": ^4.4.0-rc.1 + "@jupyterlab/filebrowser": ^4.4.0-rc.1 + "@jupyterlab/mainmenu": ^4.4.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/messaging": ^2.0.3 + "@lumino/widgets": ^2.7.0 + checksum: a5cbf9242a22e992b9fe307df3c1715d88004c93639289286c6e70ff1be6f0e9e8f83137b3950fe9756571bfb3ce9f83f4fb9faab453641b797069ea14ee038e + languageName: node + linkType: hard + +"@jupyterlab/mainmenu@npm:^4.4.0-rc.1, @jupyterlab/mainmenu@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/mainmenu@npm:4.4.0-rc.1" + dependencies: + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/commands": ^2.3.2 + "@lumino/coreutils": ^2.2.1 + "@lumino/widgets": ^2.7.0 + checksum: 06b155bdeeeae3ea7bb5b9d64b615a7a02bdcacdb090b6f1e53bfc6f28fa476943edaf5dbcf2c6686725d0c761878283dc6de55a5e598ebff22ce3693ea8f414 + languageName: node + linkType: hard + +"@jupyterlab/markdownviewer-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/markdownviewer-extension@npm:4.4.0-rc.1" + dependencies: + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/markdownviewer": ^4.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/toc": ^6.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + checksum: f3a1e59357b49f368f9202d1a9b833b79c23425d58f3f8c1df5af52146d25c39f39f68e55b4cf37239b4a52de3a2e4408380c609bf2bbe293dd71a81b5fb20c7 + languageName: node + linkType: hard + +"@jupyterlab/markdownviewer@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/markdownviewer@npm:4.4.0-rc.1" + dependencies: + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/toc": ^6.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + "@lumino/messaging": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 + checksum: ad5b7ce1265f1688d2807fbaf3c02f13ee613bac18b1d17fa974dda66645140e4dde11fcd31a660b7735088fc34db520cae3eee68d2d4906a69b81f170a442dd + languageName: node + linkType: hard + +"@jupyterlab/markedparser-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/markedparser-extension@npm:4.4.0-rc.1" + dependencies: + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/codemirror": ^4.4.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/mermaid": ^4.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 marked: ^15.0.7 marked-gfm-heading-id: ^4.1.1 marked-mangle: ^1.1.10 - checksum: 265b7d27ec5a457cc346cbcea62d79602ae130147309532dce077f88dbe625c2d6e98ef771f809dd46be9ea4bcb17f165258b8e4d169574cafe6354e9c3d7829 + checksum: 20ef670cb574c8b8cae713b4ce6717c45317f41d0018b056e3dd4ddcf8af025feb3415812ea223edcd3c44cbfceed5537137d6244b5c8d31624df403baa2dbe6 languageName: node linkType: hard -"@jupyterlab/mathjax-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/mathjax-extension@npm:4.4.0-rc.0" +"@jupyterlab/mathjax-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/mathjax-extension@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 mathjax-full: ^3.2.2 - checksum: ed7ae2e2ab93f3d0b1975e1a2e3c893b14c2def037b2a34eaf213d8b685525605ccc0929f44f25e7e0f5ccd886061b743d00c4f26430a5aaecbb8b1080915ac8 + checksum: 6381a0aa36bc4bb4e396003757fd153dadd8363ada6ea8d83753a39793f7ff1574f8021953f80abfda06d0ddea9fd36f52eed05c8143f63b098ab04d889010be languageName: node linkType: hard -"@jupyterlab/mermaid-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/mermaid-extension@npm:4.4.0-rc.0" +"@jupyterlab/mermaid-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/mermaid-extension@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/mermaid": ^4.4.0-rc.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - checksum: d6bd3348d98c78d3794e7a425155206148d32e9c19762d49edabb522710fa8a4c8f9cef8a09720eff96a1e647947d94388f3521b84cbe5e8a8530665083cc377 + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/mermaid": ^4.4.0-rc.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + checksum: fe1c86300aa8c70f0b0d958a7b73df1580b90f24a9ff605c0efcf1b2f1212e95f0e033d25d8ab34344f6c1014d9c75cc2ee01a9c04a456765b338f1b355db2fa languageName: node linkType: hard -"@jupyterlab/mermaid@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/mermaid@npm:4.4.0-rc.0" +"@jupyterlab/mermaid@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/mermaid@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + "@lumino/coreutils": ^2.2.1 + "@lumino/widgets": ^2.7.0 "@mermaid-js/layout-elk": ^0.1.7 mermaid: ^11.6.0 - checksum: 8d19bb2bd09b46bd167af8773940df539460ee4be533fcd7c059a0154367871890e7f7381f7189e7201261126fa0d535b10d4ee9f10630cfde9179dd2d10ee6f + checksum: 625c2680ac792f3297e0d447be0ac3ccaa644c92e3c979805872e7c7ca1f7524d52d468c121e7475581e02046ca64f1b5df1480d6f3d34a8b069527a5a667440 languageName: node linkType: hard -"@jupyterlab/metadataform-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/metadataform-extension@npm:4.4.0-rc.0" +"@jupyterlab/metadataform-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/metadataform-extension@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/metadataform": ^4.4.0-rc.0 - "@jupyterlab/notebook": ^4.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - checksum: ffd4a51dbbd09858113c3c796a9f9e157bc0ee3d44a81318a0b6eb91626a8eab22d891ae2541eeac0d7136bc7ceb42ec49bb086437c66184c9b90cd3002da745 + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/metadataform": ^4.4.0-rc.1 + "@jupyterlab/notebook": ^4.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + checksum: 3285248b97f2d02abbc7a85491541d727c305c9a74f2beb08f958c49803cb981292144f055f41fa3b4a95dc73c881d3b05c46cec6a267d203c5c35fe4b1677b1 languageName: node linkType: hard -"@jupyterlab/metadataform@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/metadataform@npm:4.4.0-rc.0" +"@jupyterlab/metadataform@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/metadataform@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/nbformat": ^4.4.0-rc.0 - "@jupyterlab/notebook": ^4.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/messaging": ^2.0.2 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/nbformat": ^4.4.0-rc.1 + "@jupyterlab/notebook": ^4.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + "@lumino/messaging": ^2.0.3 + "@lumino/widgets": ^2.7.0 "@rjsf/core": ^5.13.4 "@rjsf/validator-ajv8": ^5.13.4 json-schema: ^0.4.0 react: ^18.2.0 - checksum: a1333bc8ce4c309b29ccd515cd6cb6a09e4ceb38997f7741325a10526fd697b5a1192b14d208c112bdeb406b7a8e2b636ae757c2d82fd50df17b488ea279adb1 + checksum: 10c1cb4162f2403e1ed9da079183d47f338b514bc404c331d091ef01f439e4569fe4fda46db0fe948808f73d7f9be6a16dcd981b639bd19b12456a87d447d757 languageName: node linkType: hard @@ -4090,59 +4091,59 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/nbformat@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/nbformat@npm:4.4.0-rc.0" +"@jupyterlab/nbformat@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/nbformat@npm:4.4.0-rc.1" dependencies: - "@lumino/coreutils": ^2.2.0 - checksum: 96c59e11087d3ab5abd4872e78dea9035c493669591de18f37600aabb61d5c9c325ea9b12596cd2db471c886a337be76f94a2a59ce48b71769c0e6ece5ea5fe5 + "@lumino/coreutils": ^2.2.1 + checksum: efb7489320c1dd3b192de3b2c96e3642c13c62b9eba18efe91f5d8fdf59281b6357d0b7c9bfcba18c3ca1c3da811f2618c1e2aee8ce1ff44d28429f5f15f6aee languageName: node linkType: hard -"@jupyterlab/notebook-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/notebook-extension@npm:4.4.0-rc.0" +"@jupyterlab/notebook-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/notebook-extension@npm:4.4.0-rc.1" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/cells": ^4.4.0-rc.0 - "@jupyterlab/codeeditor": ^4.4.0-rc.0 - "@jupyterlab/codemirror": ^4.4.0-rc.0 - "@jupyterlab/completer": ^4.4.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/docmanager": ^4.4.0-rc.0 - "@jupyterlab/docmanager-extension": ^4.4.0-rc.0 - "@jupyterlab/docregistry": ^4.4.0-rc.0 - "@jupyterlab/documentsearch": ^4.4.0-rc.0 - "@jupyterlab/filebrowser": ^4.4.0-rc.0 - "@jupyterlab/launcher": ^4.4.0-rc.0 - "@jupyterlab/logconsole": ^4.4.0-rc.0 - "@jupyterlab/lsp": ^4.4.0-rc.0 - "@jupyterlab/mainmenu": ^4.4.0-rc.0 - "@jupyterlab/metadataform": ^4.4.0-rc.0 - "@jupyterlab/nbformat": ^4.4.0-rc.0 - "@jupyterlab/notebook": ^4.4.0-rc.0 - "@jupyterlab/observables": ^5.4.0-rc.0 - "@jupyterlab/property-inspector": ^4.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/statedb": ^4.4.0-rc.0 - "@jupyterlab/statusbar": ^4.4.0-rc.0 - "@jupyterlab/toc": ^6.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/polling": ^2.1.3 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/cells": ^4.4.0-rc.1 + "@jupyterlab/codeeditor": ^4.4.0-rc.1 + "@jupyterlab/codemirror": ^4.4.0-rc.1 + "@jupyterlab/completer": ^4.4.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/docmanager": ^4.4.0-rc.1 + "@jupyterlab/docmanager-extension": ^4.4.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/documentsearch": ^4.4.0-rc.1 + "@jupyterlab/filebrowser": ^4.4.0-rc.1 + "@jupyterlab/launcher": ^4.4.0-rc.1 + "@jupyterlab/logconsole": ^4.4.0-rc.1 + "@jupyterlab/lsp": ^4.4.0-rc.1 + "@jupyterlab/mainmenu": ^4.4.0-rc.1 + "@jupyterlab/metadataform": ^4.4.0-rc.1 + "@jupyterlab/nbformat": ^4.4.0-rc.1 + "@jupyterlab/notebook": ^4.4.0-rc.1 + "@jupyterlab/observables": ^5.4.0-rc.1 + "@jupyterlab/property-inspector": ^4.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/statedb": ^4.4.0-rc.1 + "@jupyterlab/statusbar": ^4.4.0-rc.1 + "@jupyterlab/toc": ^6.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/commands": ^2.3.2 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/messaging": ^2.0.3 + "@lumino/polling": ^2.1.4 + "@lumino/widgets": ^2.7.0 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: b7b68ca5f4888cb67c7504647c0fd1891954f49ba1b63ccdeb056c5bb9af46f3a8283d8f84ab1c4fc2690ec80758e7bab93988cfc258bd3f22a439c6dd894f40 + checksum: 0805568b123db645600a3c430946827306bdfaea2b1f4859d33620e3d8acedc047575bbb2a6f7d8492450ec34128a10b70c166b3e9f36e34f7e01536e3009142 languageName: node linkType: hard @@ -4184,41 +4185,41 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/notebook@npm:^4.4.0-rc.0, @jupyterlab/notebook@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/notebook@npm:4.4.0-rc.0" +"@jupyterlab/notebook@npm:^4.4.0-rc.1, @jupyterlab/notebook@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/notebook@npm:4.4.0-rc.1" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/cells": ^4.4.0-rc.0 - "@jupyterlab/codeeditor": ^4.4.0-rc.0 - "@jupyterlab/codemirror": ^4.4.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/docregistry": ^4.4.0-rc.0 - "@jupyterlab/documentsearch": ^4.4.0-rc.0 - "@jupyterlab/lsp": ^4.4.0-rc.0 - "@jupyterlab/nbformat": ^4.4.0-rc.0 - "@jupyterlab/observables": ^5.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/statusbar": ^4.4.0-rc.0 - "@jupyterlab/toc": ^6.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/domutils": ^2.0.2 - "@lumino/dragdrop": ^2.1.5 - "@lumino/messaging": ^2.0.2 - "@lumino/polling": ^2.1.3 - "@lumino/properties": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/virtualdom": ^2.0.2 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/cells": ^4.4.0-rc.1 + "@jupyterlab/codeeditor": ^4.4.0-rc.1 + "@jupyterlab/codemirror": ^4.4.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/documentsearch": ^4.4.0-rc.1 + "@jupyterlab/lsp": ^4.4.0-rc.1 + "@jupyterlab/nbformat": ^4.4.0-rc.1 + "@jupyterlab/observables": ^5.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/statusbar": ^4.4.0-rc.1 + "@jupyterlab/toc": ^6.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/domutils": ^2.0.3 + "@lumino/dragdrop": ^2.1.6 + "@lumino/messaging": ^2.0.3 + "@lumino/polling": ^2.1.4 + "@lumino/properties": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/virtualdom": ^2.0.3 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: ff5e45e3bdd4f39462f6b3a45073d9eb54ddf0983c3438cd1e1d227613bb46ea31c942cd84d205231998e83acebf3986e9bb1c67ac200644fe1273033ec78b25 + checksum: a7c0930de5bbfbecb5a047bdbb6987ea7353978f3979952b78dba3f02266679e494d3131c873b5e841c8c2cd8bcfa42d62d4d064b0c158edb37a66362aa1c227 languageName: node linkType: hard @@ -4235,16 +4236,16 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/observables@npm:^5.4.0-rc.0": - version: 5.4.0-rc.0 - resolution: "@jupyterlab/observables@npm:5.4.0-rc.0" +"@jupyterlab/observables@npm:^5.4.0-rc.1": + version: 5.4.0-rc.1 + resolution: "@jupyterlab/observables@npm:5.4.0-rc.1" dependencies: - "@lumino/algorithm": ^2.0.2 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/signaling": ^2.1.3 - checksum: d73e214177eed6592fb902a2f7c18d034496c57024e118abce97f20e6f573a26e05eb80634b7b388671752946ffca8a6292b5261868cc9a0f35fad2c946fa06a + "@lumino/algorithm": ^2.0.3 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/messaging": ^2.0.3 + "@lumino/signaling": ^2.1.4 + checksum: eda86553394af93ca3f34ad2ac70c071d7fd1fb11c343b6204cbdddf7994e70f3a2299b8def8461fd66539421d6b1d024677a1d6009f8174ec9ff867a84e0929 languageName: node linkType: hard @@ -4270,85 +4271,85 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/outputarea@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/outputarea@npm:4.4.0-rc.0" +"@jupyterlab/outputarea@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/outputarea@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/nbformat": ^4.4.0-rc.0 - "@jupyterlab/observables": ^5.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/properties": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 - checksum: 0c65c5c9c6710def00a20c082c4cece884bdc07b2ac4060e01d6834f4171eeccb8191b2ed3f6a04a444b8c49b03f8501f8885d886d9348035a03e19aee11c738 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/nbformat": ^4.4.0-rc.1 + "@jupyterlab/observables": ^5.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/messaging": ^2.0.3 + "@lumino/properties": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 + checksum: 8285ff4acd2281909c427dd086c209ca02eb1ca3aced50bcbebd415751209e081d30e1ad95906f156d3b9e87265d1a3a2ec20873f15eb24144f28d84fb0d41a5 languageName: node linkType: hard -"@jupyterlab/pdf-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/pdf-extension@npm:4.4.0-rc.0" +"@jupyterlab/pdf-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/pdf-extension@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/widgets": ^2.6.0 - checksum: 7ffba699e01e21858a2572e29bf23dc6417caa60a52ec191be209edc4f944ba152403285e70af1268dd73a54fc4c6aa0f4e811b5dc9e637430fa1b003b59b4eb + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/widgets": ^2.7.0 + checksum: 7dd5f9a9314037c0b34653a66dbb1de7ba7d5eaa8b10c74ca6c1103ed2a413bfb4a5178c129e884316a5b2be0857177c6cf3577cbbc49822d042d9f2523bafda languageName: node linkType: hard -"@jupyterlab/pluginmanager-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/pluginmanager-extension@npm:4.4.0-rc.0" +"@jupyterlab/pluginmanager-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/pluginmanager-extension@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/pluginmanager": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - checksum: f80e71267d4d60acdcc464438308db48ddd2ce7de03babbcdea18172873b8ca0c2f9e7e36ecb298352c1c235c89c876aacdaf9d2a720d33ab401a94cbf0b97ff + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/pluginmanager": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + checksum: 377008e058557dd7f29658cf3c8f72540683709e497e7d9de475bf5ef7bf66a306737c156f60de4441be8883b216c10280aae724c0ea195aa0847c3308bbfc9a languageName: node linkType: hard -"@jupyterlab/pluginmanager@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/pluginmanager@npm:4.4.0-rc.0" +"@jupyterlab/pluginmanager@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/pluginmanager@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 16a0886c2965d11d1a341052e376a43d53df13debd1d679c2c802b4eec5548ed8077fe021e63ac61129ebcf79d03e7d195de16ece9405f1bb387d88469d91c0e + checksum: 12c8ea78bf93e69d38984d2bf1e17f25c1421fa7244a155083d2b22d587f5d9fa6fa8471007d361fb99002a2216cafe914a5999e5c3f85000db948069e59ae78 languageName: node linkType: hard -"@jupyterlab/property-inspector@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/property-inspector@npm:4.4.0-rc.0" +"@jupyterlab/property-inspector@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/property-inspector@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: d7748820af2ddee2fe452c5be41d5196bbbfd27d0dde145aeec3aa15296feacba2bbe285711d3f3dc083cd72c3e0b361407d0b3846cab50e47424a0d910d1971 + checksum: 3f4d3796fc45f8c43e7fb5c4243efbee6f0b107e2fc15d2caf6c27d364e8e658bbce732d929595b05c6b0f7ae3f4738435e9e6d36488db1af2d67fb80225619d languageName: node linkType: hard @@ -4362,13 +4363,13 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/rendermime-interfaces@npm:^3.12.0-rc.0, @jupyterlab/rendermime-interfaces@npm:~3.12.0-rc.0": - version: 3.12.0-rc.0 - resolution: "@jupyterlab/rendermime-interfaces@npm:3.12.0-rc.0" +"@jupyterlab/rendermime-interfaces@npm:^3.12.0-rc.1, @jupyterlab/rendermime-interfaces@npm:~3.12.0-rc.1": + version: 3.12.0-rc.1 + resolution: "@jupyterlab/rendermime-interfaces@npm:3.12.0-rc.1" dependencies: - "@lumino/coreutils": ^1.11.0 || ^2.2.0 - "@lumino/widgets": ^1.37.2 || ^2.6.0 - checksum: de24036ade599e91b35f21579c051070c107bb177d0d22acd27c5e7cfed7b820bf1d7897bc786bf8b5cb562439a370db92b7c461377db5b08dc1123eba69ea92 + "@lumino/coreutils": ^1.11.0 || ^2.2.1 + "@lumino/widgets": ^1.37.2 || ^2.7.0 + checksum: 4f1f8158cc35bf8ebabdd9f1aea0c98c6b9f47d5a5a1bffd0d4b7bc76350702c7f171622199986b1d3f31b2fd3556ceded7e587d5e0db965f222b48c8ac8910e languageName: node linkType: hard @@ -4392,77 +4393,77 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/rendermime@npm:^4.4.0-rc.0, @jupyterlab/rendermime@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/rendermime@npm:4.4.0-rc.0" +"@jupyterlab/rendermime@npm:^4.4.0-rc.1, @jupyterlab/rendermime@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/rendermime@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/nbformat": ^4.4.0-rc.0 - "@jupyterlab/observables": ^5.4.0-rc.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/messaging": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/nbformat": ^4.4.0-rc.1 + "@jupyterlab/observables": ^5.4.0-rc.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + "@lumino/messaging": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 lodash.escape: ^4.0.1 - checksum: a863e53a9ff4d65eee7a01aa095e7e38affb71be044a86fed03e5c2c1ef278f0f5e7dfaf4fd9d8c3d72dd7eaa4453d5a1446f933dbd12a1c307d485ee92c77db - languageName: node - linkType: hard - -"@jupyterlab/running-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/running-extension@npm:4.4.0-rc.0" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/docmanager": ^4.4.0-rc.0 - "@jupyterlab/docregistry": ^4.4.0-rc.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 - "@jupyterlab/running": ^4.4.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/statedb": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/commands": ^2.3.1 - "@lumino/polling": ^2.1.3 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 + checksum: e77026755af411358f3b47c8c7ef8221cb435c810aaa0eaf3d8b57b8e4e9bd79abc2b15688d26de69cad15a5d8b23e41c2a5ba871eb4e2a5f6d8254a51618745 + languageName: node + linkType: hard + +"@jupyterlab/running-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/running-extension@npm:4.4.0-rc.1" + dependencies: + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/docmanager": ^4.4.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + "@jupyterlab/running": ^4.4.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/statedb": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/commands": ^2.3.2 + "@lumino/polling": ^2.1.4 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 16b4379bd8d180d49579fd91fa7a5ae64f461d72a3c78c40fcc5df6af6c05698c8ea3ee0a95001d8a766fb804cb8bd09802df2085bc70dbacd2300297069b031 + checksum: 74d4c909bcd0ac1e2016120e2a3a07c30586350b93d9d530146baefb7ea7f0274df3234f029bdbd0fbc5b9491d2a983165fb9585bc746cc13d25a3fa179cbd69 languageName: node linkType: hard -"@jupyterlab/running@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/running@npm:4.4.0-rc.0" +"@jupyterlab/running@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/running@npm:4.4.0-rc.1" dependencies: "@jupyter/react-components": ^0.16.6 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/statedb": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/domutils": ^2.0.2 - "@lumino/messaging": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/statedb": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/domutils": ^2.0.3 + "@lumino/messaging": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: f8e40ef9737977175caab9f8a553c81dda6f7c551cbf970c41c26a023f00dfa8344d4b73c99c5864cb085bf25b37c8ef30eca15d8bdd4887f0d49ae3b5258a09 + checksum: 498954dba7f763aa7f44cef05c29e45ae8b8d1a4c115022e6c0dd53d96a83c63f9113da7e09d4fa16b7293bc9ceb01fd2b74b9ed5c77f185792265390a769673 languageName: node linkType: hard -"@jupyterlab/services-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/services-extension@npm:4.4.0-rc.0" +"@jupyterlab/services-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/services-extension@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/services": ^7.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - checksum: 151de81c573ca9fae25ebc6a7ae34df0dd19853137d4596439a4d602aafbb229a4aa6575f48276da9e55cdb937e4b3c705c9b3a92c97808c3c59323185d6b1ee + "@jupyterlab/services": ^7.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + checksum: 7eaad6289e0b9f97fc55be14dd01337d1d09462a30aea242e657f4296443cd342cd8bf9dbb30088600f3be29eabbf0d1c0b995d3d84e21bf34cb988b585e2bc1 languageName: node linkType: hard @@ -4485,72 +4486,72 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/services@npm:^7.4.0-rc.0, @jupyterlab/services@npm:~7.4.0-rc.0": - version: 7.4.0-rc.0 - resolution: "@jupyterlab/services@npm:7.4.0-rc.0" +"@jupyterlab/services@npm:^7.4.0-rc.1, @jupyterlab/services@npm:~7.4.0-rc.1": + version: 7.4.0-rc.1 + resolution: "@jupyterlab/services@npm:7.4.0-rc.1" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/nbformat": ^4.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/statedb": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/polling": ^2.1.3 - "@lumino/properties": ^2.0.2 - "@lumino/signaling": ^2.1.3 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/nbformat": ^4.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/statedb": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/polling": ^2.1.4 + "@lumino/properties": ^2.0.3 + "@lumino/signaling": ^2.1.4 ws: ^8.11.0 - checksum: 9e6667c05f456d9f561b58913143a2b54e1bafedba35a9d67aa5930283c6d40092191262422291e205b0fb540ec2306acbf877aee5ac784c6de2a4108b8f47dc + checksum: e99d712aac8fbef4b30b5853fcc38e11bfda4c261f4dcdd7d0ed2f7a2fa350657ad19f95decb57293a15b78d4e56922bcba41a61ff46f647e7b151423ef95e1a languageName: node linkType: hard -"@jupyterlab/settingeditor-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/settingeditor-extension@npm:4.4.0-rc.0" +"@jupyterlab/settingeditor-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/settingeditor-extension@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/codeeditor": ^4.4.0-rc.0 - "@jupyterlab/pluginmanager": ^4.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@jupyterlab/settingeditor": ^4.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/statedb": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/disposable": ^2.1.3 + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/codeeditor": ^4.4.0-rc.1 + "@jupyterlab/pluginmanager": ^4.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/settingeditor": ^4.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/statedb": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/disposable": ^2.1.4 react: ^18.2.0 - checksum: 9e39db2465dcc41390ae93880c3572df94cb04c42b77eeb2c4b240898c141fe6820f6b6e6ec3451b9508c1c1dbc8b6cf70735e585b86d00c99e9cca1c693ba5c - languageName: node - linkType: hard - -"@jupyterlab/settingeditor@npm:^4.4.0-rc.0, @jupyterlab/settingeditor@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/settingeditor@npm:4.4.0-rc.0" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/codeeditor": ^4.4.0-rc.0 - "@jupyterlab/inspector": ^4.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/statedb": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/polling": ^2.1.3 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 + checksum: 48c392a7cc74eb216cd0cb665f531b43a762d6675015129cc35431a672cb9f09bf8a5b0b6b830786d56cedd8010087409c8899e7c103a2f8bd889c6a3b0ef5a2 + languageName: node + linkType: hard + +"@jupyterlab/settingeditor@npm:^4.4.0-rc.1, @jupyterlab/settingeditor@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/settingeditor@npm:4.4.0-rc.1" + dependencies: + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/codeeditor": ^4.4.0-rc.1 + "@jupyterlab/inspector": ^4.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/statedb": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/commands": ^2.3.2 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/messaging": ^2.0.3 + "@lumino/polling": ^2.1.4 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 "@rjsf/core": ^5.13.4 "@rjsf/utils": ^5.13.4 "@rjsf/validator-ajv8": ^5.13.4 json-schema: ^0.4.0 react: ^18.2.0 - checksum: b814b48545497c60d5c0c4ce3512207a6ac80beb2e72cb6452e03bb48f97c5efc02a88e423c536bb3b110f372c0e1f17740c47a2f185f37410757ba764de6b78 + checksum: 54369cfeffb878c9c5d97a321f221f76865de298674ecc856918646ebb511c3c7d9121023a7eea837f22151a2884d3ae58e5c7c4365a36a08b1200a3f8e19d3e languageName: node linkType: hard @@ -4573,42 +4574,42 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/settingregistry@npm:^4.4.0-rc.0, @jupyterlab/settingregistry@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/settingregistry@npm:4.4.0-rc.0" +"@jupyterlab/settingregistry@npm:^4.4.0-rc.1, @jupyterlab/settingregistry@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/settingregistry@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/nbformat": ^4.4.0-rc.0 - "@jupyterlab/statedb": ^4.4.0-rc.0 - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/signaling": ^2.1.3 + "@jupyterlab/nbformat": ^4.4.0-rc.1 + "@jupyterlab/statedb": ^4.4.0-rc.1 + "@lumino/commands": ^2.3.2 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/signaling": ^2.1.4 "@rjsf/utils": ^5.13.4 ajv: ^8.12.0 json5: ^2.2.3 peerDependencies: react: ">=16" - checksum: bfaefd25d82dd6677a24c93a110c8d922c063af6c37bdee704be6e1b8b006c73c9b3eaf0f06c72b39297c066ad3d0e087dc06d6b61506fcac295146f7993b710 + checksum: 3b83f98d8fb8814817675258ce05f33cd72a90b0e94249d0b0144fcebc9fc1f102b967ce7850c3f77a560f4d3416d0a54e1eb692ff309abf8d3395c6796f0932 languageName: node linkType: hard -"@jupyterlab/shortcuts-extension@npm:~5.2.0-rc.0": - version: 5.2.0-rc.0 - resolution: "@jupyterlab/shortcuts-extension@npm:5.2.0-rc.0" +"@jupyterlab/shortcuts-extension@npm:~5.2.0-rc.1": + version: 5.2.0-rc.1 + resolution: "@jupyterlab/shortcuts-extension@npm:5.2.0-rc.1" dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/domutils": ^2.0.2 - "@lumino/keyboard": ^2.0.2 - "@lumino/signaling": ^2.1.3 + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/commands": ^2.3.2 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/domutils": ^2.0.3 + "@lumino/keyboard": ^2.0.3 + "@lumino/signaling": ^2.1.4 react: ^18.2.0 - checksum: 99c24510cab1ee941a728e2504fad8b5db4587cf3e0e0cf189fff82610b3d6b58cd0470520f5d76e64c8c7e0c91c353a773b17f9032d0df2463a95a21a9fec52 + checksum: 3854802971da7ab1eda7926958ae479f8f3afe380b7ee0e4c05169513d8976b23f5574e5bc56495b72fa1d6317c60ed54161ffc9b398ea54ecc1fe7068d51c9c languageName: node linkType: hard @@ -4625,16 +4626,16 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/statedb@npm:^4.4.0-rc.0, @jupyterlab/statedb@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/statedb@npm:4.4.0-rc.0" +"@jupyterlab/statedb@npm:^4.4.0-rc.1, @jupyterlab/statedb@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/statedb@npm:4.4.0-rc.1" dependencies: - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/properties": ^2.0.2 - "@lumino/signaling": ^2.1.3 - checksum: 0d8a52560142a7a43a5837a6445c1cc71cf5d1bfe78aeff67dfdd26e6741abfe31a4cb4f30d87a925ad3e44ea85cab25f24f19585204910d6440ad8083b17ee0 + "@lumino/commands": ^2.3.2 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/properties": ^2.0.3 + "@lumino/signaling": ^2.1.4 + checksum: ffb29e8bdd27a9796943a9a0d2586944827df0e55f88f20ba3eea4cdebbdcb605bb35e8ce2a2b8217931d273744710c52f52326c91705d024779657810e5b06b languageName: node linkType: hard @@ -4654,58 +4655,58 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/statusbar@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/statusbar@npm:4.4.0-rc.0" +"@jupyterlab/statusbar@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/statusbar@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/messaging": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 3eeb24e53d7660f0dcc08dbee50843e065a021f29cd51f69624b1a873971ce7d063774144e89b1b2d3acaaa169e20a433fa0232c9ce8e140f2429362fee73d42 + checksum: 63c538fb1286fc74d4d92331ed21c5d99d8e29f8238bcef2f50d5d8a21280bec41065f4166e6de5788d9525879da06bd408e07d6cdbed902fa809c01a9e415a8 languageName: node linkType: hard -"@jupyterlab/terminal-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/terminal-extension@npm:4.4.0-rc.0" +"@jupyterlab/terminal-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/terminal-extension@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/launcher": ^4.4.0-rc.0 - "@jupyterlab/mainmenu": ^4.4.0-rc.0 - "@jupyterlab/running": ^4.4.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/terminal": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/widgets": ^2.6.0 - checksum: 8cbf33abb7edcec2a48c1d5a5d4e6d7436a900f40b248f5e2ea5f00326a570f81f5674fc1cf2b091e06fc4acd79642d540384572cf3ce3694c512961a5e46acd + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/launcher": ^4.4.0-rc.1 + "@jupyterlab/mainmenu": ^4.4.0-rc.1 + "@jupyterlab/running": ^4.4.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/terminal": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/widgets": ^2.7.0 + checksum: 9685d0ead095bedd23fd2b5e8e0c1afb369b28d679ba92437a7872138365ebee6905e4bfec8905011cc3497153f2073973437e018e532baa0e70e0479e4eeba9 languageName: node linkType: hard -"@jupyterlab/terminal@npm:^4.4.0-rc.0, @jupyterlab/terminal@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/terminal@npm:4.4.0-rc.0" +"@jupyterlab/terminal@npm:^4.4.0-rc.1, @jupyterlab/terminal@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/terminal@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/domutils": ^2.0.2 - "@lumino/messaging": ^2.0.2 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + "@lumino/domutils": ^2.0.3 + "@lumino/messaging": ^2.0.3 + "@lumino/widgets": ^2.7.0 "@xterm/addon-canvas": ~0.7.0 "@xterm/addon-fit": ~0.10.0 "@xterm/addon-web-links": ~0.11.0 "@xterm/addon-webgl": ~0.18.0 "@xterm/xterm": ~5.5.0 - checksum: 628437ab36e8c927e4f9fa88e4b6e1bd4b09481864ee6d12684813b158480e259d45ca3aefad55ddf54441c6f76b6f19d7cc4b2c15c950ec0db035cda3d1246d + checksum: a855d0c863bcba2d7feeb9993930f37b7d876a7b8dfb72098ffc64c7fdb1baf81382b372616546ac163335568ce74c44c416e6b67d6f6548d5c69aa51e5fd98f languageName: node linkType: hard @@ -4745,49 +4746,49 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/theme-dark-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/theme-dark-extension@npm:4.4.0-rc.0" +"@jupyterlab/theme-dark-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/theme-dark-extension@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - checksum: 7bf5d219bebddfca4875be837af5b22ca910b48a3aa08978c8d98a309161b0a1d7f2cc64d521592ffb871b7d601b39c36ac45a888b981f5f3f1975c3dc45e95a + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + checksum: b16c32c4ec06cc2bb756694e991e18696ab2e75dbbbf380db269feadfb7ff1f450671c14dc763ff6ac9df6ccc54e5f1c2aca5da02a97c65c5b5888ef65c1a152 languageName: node linkType: hard -"@jupyterlab/theme-dark-high-contrast-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/theme-dark-high-contrast-extension@npm:4.4.0-rc.0" +"@jupyterlab/theme-dark-high-contrast-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/theme-dark-high-contrast-extension@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - checksum: 7f9f60eafcd6ac601cb00387c457355684ed8720dbb0b9dad452d711bcdafe94c010f10a258a4b48b75b8664c5a38fae8a6af4ea3983b915c02b3dd27342856a + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + checksum: 7d5a0f98fd6a403e5000594f21f37137d2bb20a579cb08f0d90c25f5c4a7e228cf4c8bddf70bece8d9c779b1aaa11a56458e08619a591e187946b46496831b36 languageName: node linkType: hard -"@jupyterlab/theme-light-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/theme-light-extension@npm:4.4.0-rc.0" +"@jupyterlab/theme-light-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/theme-light-extension@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - checksum: 62b299b6cd2d5bc39dc7bd5c618e228e8c7f1327c2d6febc912b056c0b6d6e117d05bfde9779cf770e782959a869f88ab891dc883c55d62d53a62b4ae799234e + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + checksum: fa07934def7fd389310aaa907a953ddeb3867f6c5a217ac11ffedfa6a03e5d3156dc36dd512495dd88222fc624bf204c98a1ea4a72de0382040f2e1cd79448d8 languageName: node linkType: hard -"@jupyterlab/toc-extension@npm:~6.4.0-rc.0": - version: 6.4.0-rc.0 - resolution: "@jupyterlab/toc-extension@npm:6.4.0-rc.0" +"@jupyterlab/toc-extension@npm:~6.4.0-rc.1": + version: 6.4.0-rc.1 + resolution: "@jupyterlab/toc-extension@npm:6.4.0-rc.1" dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/toc": ^6.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - checksum: ed6f4e914477da85decdb176a05b73164b11cd9dbc96673371af5140690ff9911b910941f5b966953f4f9fe69e4c88e4f3977f546fc39db263c8f7e742c16c98 + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/toc": ^6.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + checksum: f3015672fcea968aa641c6fdaab9482847fb77c27f7d48a048117f0a59d4b15f5d3a5783c70948d80c18988d365258d9beb174572e19b044dd1a3cef7f7dfc96 languageName: node linkType: hard @@ -4814,75 +4815,75 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/toc@npm:^6.4.0-rc.0": - version: 6.4.0-rc.0 - resolution: "@jupyterlab/toc@npm:6.4.0-rc.0" +"@jupyterlab/toc@npm:^6.4.0-rc.1": + version: 6.4.0-rc.1 + resolution: "@jupyterlab/toc@npm:6.4.0-rc.1" dependencies: "@jupyter/react-components": ^0.16.6 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/docregistry": ^4.4.0-rc.0 - "@jupyterlab/observables": ^5.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/observables": ^5.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/messaging": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 40014291fa1d3b91227359f48850824f4d5ecb7d70f649b573099469ba09616a158ff405aebad3fbbb4e3b488cc6277ed64ba462adeb3e3a0d60e6edd8db52a1 + checksum: afba4a8d02fa98164623d6f21eafac93c039575197cfea907ebaba8894ba3f0e21dcd17e0a282c22caee5aa0fd8f1a683f1f303411f7ce9c8db0b536b3680064 languageName: node linkType: hard -"@jupyterlab/tooltip-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/tooltip-extension@npm:4.4.0-rc.0" +"@jupyterlab/tooltip-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/tooltip-extension@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/codeeditor": ^4.4.0-rc.0 - "@jupyterlab/console": ^4.4.0-rc.0 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/fileeditor": ^4.4.0-rc.0 - "@jupyterlab/notebook": ^4.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/tooltip": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/coreutils": ^2.2.0 - "@lumino/widgets": ^2.6.0 - checksum: 450a3a8c8ce39dd7dd5a39c2adcccfc224eda790e0aa016ea23d112c5e32e1c8c21f1f5172dd94d7fd4529b9301ee820a15e96658bda12afb72a8f6ccfb36d64 + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/codeeditor": ^4.4.0-rc.1 + "@jupyterlab/console": ^4.4.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/fileeditor": ^4.4.0-rc.1 + "@jupyterlab/notebook": ^4.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/tooltip": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/coreutils": ^2.2.1 + "@lumino/widgets": ^2.7.0 + checksum: ca987540da9f4d3503f6b1917b2cdd34e974e64682f8c5c6686290fe0fd212bc39b33bda97e2ac120e68bb8c5d950dc8e8085d40bf35230a677301f27dddb223 languageName: node linkType: hard -"@jupyterlab/tooltip@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/tooltip@npm:4.4.0-rc.0" +"@jupyterlab/tooltip@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/tooltip@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/codeeditor": ^4.4.0-rc.0 - "@jupyterlab/rendermime": ^4.4.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/messaging": ^2.0.2 - "@lumino/widgets": ^2.6.0 - checksum: a00c281bdb6b8508fac6ca4eff90c48741e0094a5c6a75f3517dcd9f88a5ccde3b03d8cac361d0ef6b44cd2886e0af51d81002c548ac4797d044593230b0f538 + "@jupyterlab/codeeditor": ^4.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + "@lumino/messaging": ^2.0.3 + "@lumino/widgets": ^2.7.0 + checksum: 54d0b40a65184e4e77c75dc045e85faed3b3631e02b828c2b366f0755a12a44374604b2a9356c08642c2c83dd5556378ecf3ce748060be39c49c3555a315df4f languageName: node linkType: hard -"@jupyterlab/translation-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/translation-extension@npm:4.4.0-rc.0" +"@jupyterlab/translation-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/translation-extension@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/apputils": ^4.5.0-rc.0 - "@jupyterlab/mainmenu": ^4.4.0-rc.0 - "@jupyterlab/settingregistry": ^4.4.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - checksum: 4c1fad03545b0f5c9ba0e7df83d7cea2c6cc4f6be59da43ffb774251ee68eabe8a7a11cbafa5e2ff81e46b7185da005a419319f4b430ee950d2ab9455f8cbceb + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/mainmenu": ^4.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + checksum: 66c9879eb68d40ccd7f91db00aed44506f3917313ae2a66c693b843d495d301e22919c1e73bf29ad069710e8a37b75209a22e9d39de3d533d6109770ff821f40 languageName: node linkType: hard @@ -4899,26 +4900,26 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/translation@npm:^4.4.0-rc.0, @jupyterlab/translation@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/translation@npm:4.4.0-rc.0" +"@jupyterlab/translation@npm:^4.4.0-rc.1, @jupyterlab/translation@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/translation@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 - "@jupyterlab/services": ^7.4.0-rc.0 - "@jupyterlab/statedb": ^4.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - checksum: 0d9f4335544cc9d49a13afae9ad686f11ec1117fff47f2560712b324ac9473a8674e2ab948b21fbeb9644c99e8e15f801e3e90b8514da32b86e2b156dddfc467 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/statedb": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + checksum: 2ec9f05375a9d9e79f1f27ad418c4e69d2c45729e196d76258c762c0a6e9056937581c1775aa8a520a5e9c83c41d6a49501672c61d30f54794a1caea978a5327 languageName: node linkType: hard -"@jupyterlab/ui-components-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/ui-components-extension@npm:4.4.0-rc.0" +"@jupyterlab/ui-components-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/ui-components-extension@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/application": ^4.4.0-rc.0 - "@jupyterlab/ui-components": ^4.4.0-rc.0 - checksum: 301f468218dd6452b1f3c872caf8579045205e1eb81f3fbdfff18f43c4b7d1db8d9ea964096c8c1f56f66a2f995e68ec8c1f1cd3fe56119ff15ad0cecfe06b46 + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + checksum: daad3df8a5102780387309e87b4edd14cf68957e807ca94a13d8d5e972215ea2223486ada83bee4cf311ff59c73ac7d202b101221bf0062601cf608460d8c814 languageName: node linkType: hard @@ -4953,26 +4954,26 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/ui-components@npm:^4.4.0-rc.0, @jupyterlab/ui-components@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/ui-components@npm:4.4.0-rc.0" +"@jupyterlab/ui-components@npm:^4.4.0-rc.1, @jupyterlab/ui-components@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/ui-components@npm:4.4.0-rc.1" dependencies: "@jupyter/react-components": ^0.16.6 "@jupyter/web-components": ^0.16.6 - "@jupyterlab/coreutils": ^6.4.0-rc.0 - "@jupyterlab/observables": ^5.4.0-rc.0 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 - "@jupyterlab/translation": ^4.4.0-rc.0 - "@lumino/algorithm": ^2.0.2 - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/polling": ^2.1.3 - "@lumino/properties": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/virtualdom": ^2.0.2 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/observables": ^5.4.0-rc.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@lumino/algorithm": ^2.0.3 + "@lumino/commands": ^2.3.2 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/messaging": ^2.0.3 + "@lumino/polling": ^2.1.4 + "@lumino/properties": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/virtualdom": ^2.0.3 + "@lumino/widgets": ^2.7.0 "@rjsf/core": ^5.13.4 "@rjsf/utils": ^5.13.4 react: ^18.2.0 @@ -4980,34 +4981,34 @@ __metadata: typestyle: ^2.0.4 peerDependencies: react: ^18.2.0 - checksum: 0931ec59f2fd46f00788f7e0c18e36e1c6ae3bf1f1a800279776011b37d65d3786472deed327d862a94e7d0dceea23e66d9b31213623fc6b1d2e88d60fc41ecb + checksum: a9bc2830b5a96861d17d536dc2f55d5f6c1e1a7696c157f95c0170bffb080d025831c10b57d965db953a0f79089373b9ff4f03f841690019a8139ba685837555 languageName: node linkType: hard -"@jupyterlab/vega5-extension@npm:~4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/vega5-extension@npm:4.4.0-rc.0" +"@jupyterlab/vega5-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/vega5-extension@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/widgets": ^2.6.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + "@lumino/coreutils": ^2.2.1 + "@lumino/widgets": ^2.7.0 vega: ^5.20.0 vega-embed: ^6.2.1 vega-lite: ^5.6.1-next.1 - checksum: 6b1456fbd3ea21c8a0a125abe8cf382bb462aa5f9173c7923dcf85d8d596a0d4d6a18552f7d7e62f7e13161a4744417c5c915435dac4f641d6a249e32126bb27 + checksum: 3b2d077826140c0a4b8528f645a2b7ed03478f0ccf191c76fcdff88155bf907db6e71c2083e53d618a95c2163d01ca0f629e03e1f74a1c072d6493d280e3dc02 languageName: node linkType: hard -"@jupyterlab/workspaces@npm:^4.4.0-rc.0": - version: 4.4.0-rc.0 - resolution: "@jupyterlab/workspaces@npm:4.4.0-rc.0" +"@jupyterlab/workspaces@npm:^4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/workspaces@npm:4.4.0-rc.1" dependencies: - "@jupyterlab/services": ^7.4.0-rc.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/polling": ^2.1.3 - "@lumino/signaling": ^2.1.3 - checksum: 3337cbba08941776ad4949f781c57ea57e948262789229064a1004923090bb65863161b6e3d58d8b6e18fd85933ce66b52e836be8bda001ee22c61cea5abf8a4 + "@jupyterlab/services": ^7.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/polling": ^2.1.4 + "@lumino/signaling": ^2.1.4 + checksum: 468c780176d9fe5ea228470c76b9a559e71fce2c50b900fdb35f0e93d99009f1a20c8992bc69235526a6eb6d534069c2e141dc612ec885ea7c2f6e6be455e628 languageName: node linkType: hard @@ -5251,170 +5252,170 @@ __metadata: languageName: node linkType: hard -"@lumino/algorithm@npm:^2.0.2": - version: 2.0.2 - resolution: "@lumino/algorithm@npm:2.0.2" - checksum: 34b25684b845f1bdbf78ca45ebd99a97b67b2992440c9643aafe5fc5a99fae1ddafa9e5890b246b233dc3a12d9f66aa84afe4a2aac44cf31071348ed217740db +"@lumino/algorithm@npm:^2.0.2, @lumino/algorithm@npm:^2.0.3": + version: 2.0.3 + resolution: "@lumino/algorithm@npm:2.0.3" + checksum: 03932cdc39d612a00579ee40bafb0b1d8bf5f8a12449f777a1ae7201843ddefb557bc3f9260aa6b9441d87bfc43e53cced854e71c4737de59e32cd00d4ac1394 languageName: node linkType: hard -"@lumino/application@npm:^2.4.1, @lumino/application@npm:^2.4.2": - version: 2.4.2 - resolution: "@lumino/application@npm:2.4.2" +"@lumino/application@npm:^2.4.1, @lumino/application@npm:^2.4.3": + version: 2.4.3 + resolution: "@lumino/application@npm:2.4.3" dependencies: - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/widgets": ^2.6.0 - checksum: 210dce74beb528e94839b209c5bebb858b56c8c9d896359614a47ce9c5cb117736233d9d81b6009b9916b8ede480d6240f991f988b8bcf9c6a229ef86bf90a85 + "@lumino/commands": ^2.3.2 + "@lumino/coreutils": ^2.2.1 + "@lumino/widgets": ^2.7.0 + checksum: 1a1ebd7a883664b29624765fe01d31ff30324e39c90565827ba8b578a21e36c94dc096d9a285dc8738e0ec9dbaf48c50337a7976ec01acd0e78afc9066370bee languageName: node linkType: hard -"@lumino/collections@npm:^2.0.2": - version: 2.0.2 - resolution: "@lumino/collections@npm:2.0.2" +"@lumino/collections@npm:^2.0.3": + version: 2.0.3 + resolution: "@lumino/collections@npm:2.0.3" dependencies: - "@lumino/algorithm": ^2.0.2 - checksum: e8bb2068a3741940e0dd396fa729c3c9d12458b41b7c2a9d171c5c034e69fb5834116a824094a8aa4182397e13abace06025ed5032a755ea85b976eae74ee9a9 + "@lumino/algorithm": ^2.0.3 + checksum: 1c7aca239731e6c7379ce593318fd3f646b38c1903e81e884e36ed01f61017498f6699ba58848c43191f4825a9968b7f9c94e9355f1614c9baee84ce9ea6221f languageName: node linkType: hard -"@lumino/commands@npm:^2.3.1": - version: 2.3.1 - resolution: "@lumino/commands@npm:2.3.1" +"@lumino/commands@npm:^2.3.1, @lumino/commands@npm:^2.3.2": + version: 2.3.2 + resolution: "@lumino/commands@npm:2.3.2" dependencies: - "@lumino/algorithm": ^2.0.2 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/domutils": ^2.0.2 - "@lumino/keyboard": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/virtualdom": ^2.0.2 - checksum: 83bc6d66de37e58582b00f70ce66e797c9fcf84e36041c6881631ed0d281305e2a49927f5b2fe6c5c965733f3cd6fb4a233c7b7967fc050497024a941659bd65 + "@lumino/algorithm": ^2.0.3 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/domutils": ^2.0.3 + "@lumino/keyboard": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/virtualdom": ^2.0.3 + checksum: 090454bcc07aeb71f0791d6ca86ca4857b16bb6286a47ab6e59c3046e7f99cd3ef27c36d2dd35de7cf2bdeeaf5fc00ae8f29246a39e276eac2d186ae3cd7023e languageName: node linkType: hard -"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^1.11.0 || ^2.2.0, @lumino/coreutils@npm:^2.2.0, @lumino/coreutils@npm:~2.2.0": - version: 2.2.0 - resolution: "@lumino/coreutils@npm:2.2.0" +"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^1.11.0 || ^2.2.0, @lumino/coreutils@npm:^1.11.0 || ^2.2.1, @lumino/coreutils@npm:^2.2.0, @lumino/coreutils@npm:^2.2.1, @lumino/coreutils@npm:~2.2.0": + version: 2.2.1 + resolution: "@lumino/coreutils@npm:2.2.1" dependencies: - "@lumino/algorithm": ^2.0.2 - checksum: 345fcd5d7493d745831dd944edfbd8eda06cc59a117e71023fc97ce53badd697be2bd51671f071f5ff0064f75f104575d9695f116a07517bafbedd38e5c7a785 + "@lumino/algorithm": ^2.0.3 + checksum: d08570d1ebcf6bca973ba3af0836fb19a5a7a5b24979e90aab0fb4acb245e9619a0db356a78d67f618ae565435bb2aaf7c158c5bc0ae1ef9e9f1638ebfa05484 languageName: node linkType: hard -"@lumino/datagrid@npm:^2.5.0": - version: 2.5.0 - resolution: "@lumino/datagrid@npm:2.5.0" +"@lumino/datagrid@npm:^2.5.1": + version: 2.5.1 + resolution: "@lumino/datagrid@npm:2.5.1" dependencies: - "@lumino/algorithm": ^2.0.2 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/domutils": ^2.0.2 - "@lumino/dragdrop": ^2.1.5 - "@lumino/keyboard": ^2.0.2 - "@lumino/messaging": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.6.0 - checksum: 32cbe8676745077b3aa29cbe9d05c151da8cb51a6dff417b3e506fa4a15c65c48ba93e4a72f7d57bd1347fc559f3583bdb4e3158b14c172e076204fc26019149 + "@lumino/algorithm": ^2.0.3 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/domutils": ^2.0.3 + "@lumino/dragdrop": ^2.1.6 + "@lumino/keyboard": ^2.0.3 + "@lumino/messaging": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 + checksum: 760485cde3a6a28f71143eddd28f6a3f2b8bed6daa7f71cf4545af20cf7cfc59a8b39a453a189fbfbffba3ca2ac82b0be4d500705c10d7bfdabc32de879b4082 languageName: node linkType: hard -"@lumino/disposable@npm:^1.10.0 || ^2.0.0, @lumino/disposable@npm:^2.1.3": - version: 2.1.3 - resolution: "@lumino/disposable@npm:2.1.3" +"@lumino/disposable@npm:^1.10.0 || ^2.0.0, @lumino/disposable@npm:^2.1.3, @lumino/disposable@npm:^2.1.4": + version: 2.1.4 + resolution: "@lumino/disposable@npm:2.1.4" dependencies: - "@lumino/signaling": ^2.1.3 - checksum: b9a346fa2752b3cd1b053cb637ee173501d33082a73423429070e8acc508b034ea0babdae0549b923cbdd287ee1fc7f6159f0539c9fff7574393a214eef07c57 + "@lumino/signaling": ^2.1.4 + checksum: 0274c1cd81683f0d37c79795ed683fe49929452e6f075b9027b62dee376b5c6aa5f27b279236c4e1621bcbdcb844d5be0bbde3a065ab39159deb995244d1d2a7 languageName: node linkType: hard -"@lumino/domutils@npm:^2.0.2": - version: 2.0.2 - resolution: "@lumino/domutils@npm:2.0.2" - checksum: 037b8d0b62af43887fd7edd506fa551e2af104a4b46d62e6fef256e16754dba40d351513beb5083834d468b2c7806aae0fe205fd6aac8ef24759451ee998bbd9 +"@lumino/domutils@npm:^2.0.2, @lumino/domutils@npm:^2.0.3": + version: 2.0.3 + resolution: "@lumino/domutils@npm:2.0.3" + checksum: 46cbcbd38f6abb53eab1b6de0a2ea8a9fa5e28b0f5aa4b058c35f2380cb8ec881fe7616c7468ba200b785f95357ac8cbac6b64512f9945f5973d1d425864b163 languageName: node linkType: hard -"@lumino/dragdrop@npm:^2.1.5": - version: 2.1.5 - resolution: "@lumino/dragdrop@npm:2.1.5" +"@lumino/dragdrop@npm:^2.1.5, @lumino/dragdrop@npm:^2.1.6": + version: 2.1.6 + resolution: "@lumino/dragdrop@npm:2.1.6" dependencies: - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - checksum: 48e34bea73186dcde4565fa68cd25067b7f5fe910813d28da9ab3c5392bfaa0b26aab1290635dc953d85bbb139da7ac1ffc040a5d5777d58fd087975dd4b5ef7 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + checksum: 5a746ee0644e2fa02cba47d6ef45f3fb09ebc3391ac0f478f6f3073864a9637e13fcee666038c751ab8f17bc69c55299c85a88f526ea645cc3240a367490c8ca languageName: node linkType: hard -"@lumino/keyboard@npm:^2.0.2": - version: 2.0.2 - resolution: "@lumino/keyboard@npm:2.0.2" - checksum: 198e8c17825c9a831fa0770f58a71574b936acb0f0bbbe7f8feb73d89686dda7ff41fcb02d12b401f5d462b45fe0bba24f7f38befb7cefe0826576559f0bee6d +"@lumino/keyboard@npm:^2.0.3": + version: 2.0.3 + resolution: "@lumino/keyboard@npm:2.0.3" + checksum: ca648cf978ddcf15fe3af2b8c8beb8aff153dfe616099df5a8bc7f43124420f77c358dbd33a988911b82f68debe07268d630c1777618b182ef7b520962d653e7 languageName: node linkType: hard -"@lumino/messaging@npm:^2.0.2": - version: 2.0.2 - resolution: "@lumino/messaging@npm:2.0.2" +"@lumino/messaging@npm:^2.0.2, @lumino/messaging@npm:^2.0.3": + version: 2.0.3 + resolution: "@lumino/messaging@npm:2.0.3" dependencies: - "@lumino/algorithm": ^2.0.2 - "@lumino/collections": ^2.0.2 - checksum: 66abd8c473026123589dc22f2ce8f85da10e0b1a05c05ed9b2011035721da5f751cc7ef63b628877f446a78a4287e26ad1450efbeaf0c2e03b1d08be9abaca4d + "@lumino/algorithm": ^2.0.3 + "@lumino/collections": ^2.0.3 + checksum: 9c2bea2a31d3922a29276df751b651e6bd41d1ed3a5f61ba94d3e90d454c53f07fc4dac7d435867fb8480415222a3d45d74188dd73e9c89c43110ebbee0ff301 languageName: node linkType: hard -"@lumino/polling@npm:^2.1.3": - version: 2.1.3 - resolution: "@lumino/polling@npm:2.1.3" +"@lumino/polling@npm:^2.1.3, @lumino/polling@npm:^2.1.4": + version: 2.1.4 + resolution: "@lumino/polling@npm:2.1.4" dependencies: - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/signaling": ^2.1.3 - checksum: 2c94dbc2339dd06b3b89a3a690d23576ce095f92bf1f614557dcaeb1c1a8a707b2a18d78c03e5fd7376a43e3f393cc4fec42a65580ae4b67c6630ea86cecbac6 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/signaling": ^2.1.4 + checksum: e08d07d11eb030fed83bea232dba91af4ea40ef8f6ec7b8fe61722ebbd29faba10c67d269596c19c515c920f607c73bb64cdc9319af9ecef4619cddfd92ea764 languageName: node linkType: hard -"@lumino/properties@npm:^2.0.2": - version: 2.0.2 - resolution: "@lumino/properties@npm:2.0.2" - checksum: cbe802bd49ced7e13e50b1d89b82e0f03fb44a590c704e6b9343226498b21d8abfe119b024209e79876b4fc0938dbf85e964c6c4cd5bbdd4d7ba41ce0fb69f3f +"@lumino/properties@npm:^2.0.2, @lumino/properties@npm:^2.0.3": + version: 2.0.3 + resolution: "@lumino/properties@npm:2.0.3" + checksum: a575d821f994090907abb567d3af21a828f528ae5f329ada92719eba9818bbb2b0955e675b91bd392043a5d835c345d7b500994a77157c5ea317f36442ce570e languageName: node linkType: hard -"@lumino/signaling@npm:^1.10.0 || ^2.0.0, @lumino/signaling@npm:^2.1.3": - version: 2.1.3 - resolution: "@lumino/signaling@npm:2.1.3" +"@lumino/signaling@npm:^1.10.0 || ^2.0.0, @lumino/signaling@npm:^2.1.3, @lumino/signaling@npm:^2.1.4": + version: 2.1.4 + resolution: "@lumino/signaling@npm:2.1.4" dependencies: - "@lumino/algorithm": ^2.0.2 - "@lumino/coreutils": ^2.2.0 - checksum: ce59383bd75fe30df5800e0442dbc4193cc6778e2530b9be0f484d159f1d8668be5c6ee92cee9df36d5a0c3dbd9126d0479a82581dee1df889d5c9f922d3328d + "@lumino/algorithm": ^2.0.3 + "@lumino/coreutils": ^2.2.1 + checksum: 554a5135c8742ed3f61a4923b1f26cb29b55447ca5939df70033449cfb654a37048d7a3e2fd0932497099cd24501a3819b85cd1fdf4e76023ba0af747c171d53 languageName: node linkType: hard -"@lumino/virtualdom@npm:^2.0.2": - version: 2.0.2 - resolution: "@lumino/virtualdom@npm:2.0.2" +"@lumino/virtualdom@npm:^2.0.2, @lumino/virtualdom@npm:^2.0.3": + version: 2.0.3 + resolution: "@lumino/virtualdom@npm:2.0.3" dependencies: - "@lumino/algorithm": ^2.0.2 - checksum: 0e1220d5b3b2441e7668f3542a6341e015bdbea0c8bd6d4be962009386c034336540732596d5dedcd54ca57fbde61c2942549129a3e1b0fccb1aa143685fcd15 + "@lumino/algorithm": ^2.0.3 + checksum: 66c18494fdfc1b87e76286140cd256b3616aede262641912646a18395226e200048ddeaa6d1644dff3f597b1cde8e583968cb973d64a9e9d4f45e2b24c1e2c7c languageName: node linkType: hard -"@lumino/widgets@npm:^1.37.2 || ^2.5.0, @lumino/widgets@npm:^1.37.2 || ^2.6.0, @lumino/widgets@npm:^2.5.0, @lumino/widgets@npm:^2.6.0": - version: 2.6.0 - resolution: "@lumino/widgets@npm:2.6.0" - dependencies: - "@lumino/algorithm": ^2.0.2 - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/domutils": ^2.0.2 - "@lumino/dragdrop": ^2.1.5 - "@lumino/keyboard": ^2.0.2 - "@lumino/messaging": ^2.0.2 - "@lumino/properties": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/virtualdom": ^2.0.2 - checksum: 925acbe8813af32a7d0bbfb4a91f848f9b840561fa48d26c6b08c041c2f5077c25f02424b82e793945b26de5d3137127f754a5e788239364c92bc2863218619e +"@lumino/widgets@npm:^1.37.2 || ^2.5.0, @lumino/widgets@npm:^1.37.2 || ^2.7.0, @lumino/widgets@npm:^2.5.0, @lumino/widgets@npm:^2.7.0": + version: 2.7.0 + resolution: "@lumino/widgets@npm:2.7.0" + dependencies: + "@lumino/algorithm": ^2.0.3 + "@lumino/commands": ^2.3.2 + "@lumino/coreutils": ^2.2.1 + "@lumino/disposable": ^2.1.4 + "@lumino/domutils": ^2.0.3 + "@lumino/dragdrop": ^2.1.6 + "@lumino/keyboard": ^2.0.3 + "@lumino/messaging": ^2.0.3 + "@lumino/properties": ^2.0.3 + "@lumino/signaling": ^2.1.4 + "@lumino/virtualdom": ^2.0.3 + checksum: 6c2426e50549c7685cf2ad4d5f86d2b8e0d325003a70b29b14dc7b4655b0b3d41034728564675244fd09822ef200651aa856d28b6940aabccbf1dbc1f67f19f8 languageName: node linkType: hard From 7fa19999c9e01d713a684e0f25d8017dbc999528 Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Thu, 3 Apr 2025 08:17:07 +0200 Subject: [PATCH 013/143] Add support for a `down` area (#7619) * add a down area * log console * temp patch for the logconsole-extension * fix default * update snapshots * remove patch * add UI test --- .gitignore | 3 ++ app/package.json | 27 +++++----- packages/application/src/shell.ts | 51 ++++++++++++++++-- .../opened-menu-view-chromium-linux.png | Bin 42794 -> 43759 bytes .../opened-menu-view-firefox-linux.png | Bin 51305 -> 54096 bytes ui-tests/test/notebook.spec.ts | 17 ++++++ yarn.lock | 23 ++++++++ 7 files changed, 106 insertions(+), 15 deletions(-) diff --git a/.gitignore b/.gitignore index c2da64815b..06e98145ab 100644 --- a/.gitignore +++ b/.gitignore @@ -136,6 +136,9 @@ ui-tests/playwright-report ui-tests/.yarn/* ui-tests/.pnp.* +# keep potential upstream patches +!.yarn/patches + # generated html notebook/templates/*.html diff --git a/app/package.json b/app/package.json index 9d23d56540..99df4c46c5 100644 --- a/app/package.json +++ b/app/package.json @@ -63,6 +63,7 @@ "@jupyterlab/imageviewer-extension": "~4.4.0-rc.1", "@jupyterlab/javascript-extension": "~4.4.0-rc.1", "@jupyterlab/json-extension": "~4.4.0-rc.1", + "@jupyterlab/logconsole-extension": "~4.4.0-rc.1", "@jupyterlab/lsp": "~4.4.0-rc.1", "@jupyterlab/lsp-extension": "~4.4.0-rc.1", "@jupyterlab/mainmenu": "~4.4.0-rc.1", @@ -107,18 +108,18 @@ "@jupyterlab/vega5-extension": "~4.4.0-rc.1", "@lezer/common": "~1.2.1", "@lezer/highlight": "~1.2.0", - "@lumino/algorithm": "~2.0.2", - "@lumino/application": "~2.4.2", - "@lumino/commands": "~2.3.1", - "@lumino/coreutils": "~2.2.0", - "@lumino/disposable": "~2.1.3", - "@lumino/domutils": "~2.0.2", - "@lumino/dragdrop": "~2.1.5", - "@lumino/messaging": "~2.0.2", - "@lumino/properties": "~2.0.2", - "@lumino/signaling": "~2.1.3", - "@lumino/virtualdom": "~2.0.2", - "@lumino/widgets": "~2.6.0", + "@lumino/algorithm": "~2.0.3", + "@lumino/application": "~2.4.3", + "@lumino/commands": "~2.3.2", + "@lumino/coreutils": "~2.2.1", + "@lumino/disposable": "~2.1.4", + "@lumino/domutils": "~2.0.3", + "@lumino/dragdrop": "~2.1.6", + "@lumino/messaging": "~2.0.3", + "@lumino/properties": "~2.0.3", + "@lumino/signaling": "~2.1.4", + "@lumino/virtualdom": "~2.0.3", + "@lumino/widgets": "~2.7.0", "react": "~18.2.0", "react-dom": "~18.2.0", "yjs": "~13.6.8" @@ -158,6 +159,7 @@ "@jupyterlab/imageviewer-extension": "~4.4.0-rc.1", "@jupyterlab/javascript-extension": "~4.4.0-rc.1", "@jupyterlab/json-extension": "~4.4.0-rc.1", + "@jupyterlab/logconsole-extension": "~4.4.0-rc.1", "@jupyterlab/lsp": "~4.4.0-rc.1", "@jupyterlab/lsp-extension": "~4.4.0-rc.1", "@jupyterlab/mainmenu-extension": "~4.4.0-rc.1", @@ -337,6 +339,7 @@ "@jupyterlab/debugger-extension:sidebar", "@jupyterlab/debugger-extension:sources" ], + "@jupyterlab/logconsole-extension": true, "@jupyterlab/metadataform-extension": true, "@jupyterlab/notebook-extension": [ "@jupyterlab/notebook-extension:active-cell-tool", diff --git a/packages/application/src/shell.ts b/packages/application/src/shell.ts index aa8b52e7e1..65a7159c14 100644 --- a/packages/application/src/shell.ts +++ b/packages/application/src/shell.ts @@ -14,9 +14,11 @@ import { FocusTracker, Panel, SplitPanel, + TabPanel, Widget, } from '@lumino/widgets'; import { PanelHandler, SidePanelHandler } from './panelhandler'; +import { TabPanelSvg } from '@jupyterlab/ui-components'; /** * The Jupyter Notebook application shell token. @@ -37,7 +39,7 @@ export namespace INotebookShell { /** * The areas of the application shell where widgets can reside. */ - export type Area = 'main' | 'top' | 'menu' | 'left' | 'right'; + export type Area = 'main' | 'top' | 'menu' | 'left' | 'right' | 'down'; /** * Widget position @@ -134,6 +136,18 @@ export class NotebookShell extends Widget implements JupyterFrontEnd.IShell { middlePanel.addWidget(this._spacer_bottom); middlePanel.layout = middleLayout; + const vsplitPanel = new SplitPanel(); + vsplitPanel.id = 'jp-main-vsplit-panel'; + vsplitPanel.spacing = 1; + vsplitPanel.orientation = 'vertical'; + SplitPanel.setStretch(vsplitPanel, 1); + + const downPanel = new TabPanelSvg({ + tabsMovable: true, + }); + this._downPanel = downPanel; + this._downPanel.id = 'jp-down-stack'; + // TODO: Consider storing this as an attribute this._hsplitPanel if saving/restoring layout needed const hsplitPanel = new SplitPanel(); hsplitPanel.id = 'main-split-panel'; @@ -153,8 +167,21 @@ export class NotebookShell extends Widget implements JupyterFrontEnd.IShell { // panel. hsplitPanel.setRelativeSizes([1, 2.5, 1]); + vsplitPanel.addWidget(hsplitPanel); + vsplitPanel.addWidget(downPanel); + rootLayout.spacing = 0; - rootLayout.addWidget(hsplitPanel); + rootLayout.addWidget(vsplitPanel); + + // initially hiding the down panel + this._downPanel.hide(); + + // Connect down panel change listeners + this._downPanel.tabBar.tabMoved.connect(this._onTabPanelChanged, this); + this._downPanel.stackedPanel.widgetRemoved.connect( + this._onTabPanelChanged, + this + ); this.layout = rootLayout; @@ -267,7 +294,7 @@ export class NotebookShell extends Widget implements JupyterFrontEnd.IShell { */ activateById(id: string): void { // Search all areas that can have widgets for this widget, starting with main. - for (const area of ['main', 'top', 'left', 'right', 'menu']) { + for (const area of ['main', 'top', 'left', 'right', 'menu', 'down']) { const widget = find( this.widgets(area as INotebookShell.Area), (w) => w.id === id @@ -277,6 +304,9 @@ export class NotebookShell extends Widget implements JupyterFrontEnd.IShell { this.expandLeft(id); } else if (area === 'right') { this.expandRight(id); + } else if (area === 'down') { + this._downPanel.show(); + widget.activate(); } else { widget.activate(); } @@ -342,6 +372,8 @@ export class NotebookShell extends Widget implements JupyterFrontEnd.IShell { return this._leftHandler.addWidget(widget, rank); case 'right': return this._rightHandler.addWidget(widget, rank); + case 'down': + return this._downPanel.addWidget(widget); default: console.warn(`Cannot add widget to area: ${area}`); } @@ -385,6 +417,9 @@ export class NotebookShell extends Widget implements JupyterFrontEnd.IShell { case 'right': yield* this._rightHandler.widgets; return; + case 'down': + yield* this._downPanel.widgets; + return; default: console.error(`This shell has no area called "${area}"`); return; @@ -432,6 +467,15 @@ export class NotebookShell extends Widget implements JupyterFrontEnd.IShell { this._userLayout = configuration; } + /** + * Handle a change on the down panel widgets + */ + private _onTabPanelChanged(): void { + if (this._downPanel.stackedPanel.widgets.length === 0) { + this._downPanel.hide(); + } + } + private _topWrapper: Panel; private _topHandler: PanelHandler; private _menuWrapper: Panel; @@ -442,6 +486,7 @@ export class NotebookShell extends Widget implements JupyterFrontEnd.IShell { private _spacer_bottom: Widget; private _skipLinkWidgetHandler: Private.SkipLinkWidgetHandler; private _main: Panel; + private _downPanel: TabPanel; private _translator: ITranslator = nullTranslator; private _currentChanged = new Signal>( this diff --git a/ui-tests/test/menus.spec.ts-snapshots/opened-menu-view-chromium-linux.png b/ui-tests/test/menus.spec.ts-snapshots/opened-menu-view-chromium-linux.png index dd2a993c7d8688b840055aff1a919a8ad6047b4a..580f322ed59d187d98940d98aa6eda3f053d645a 100644 GIT binary patch literal 43759 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 literal 51305 zcmb@ucQjmI_%5#3(S|6|8AOO0jFRY#E+i7Y6VZF`y^oRzQ4=9W5M6X8dI=$-GYHX3 zMCZ3BpYL7wue*Nhu66%RoH=Ljv-f`A=Y5{%J@LBQs$?WLNwBc6$kY%@dRSQ4?pRnj zMMMPPe@Y(Y(_&$eFL>UiMmw;dCsn;z~L#vL)MGb?Jky& z%zOybXV1K4BXFqMt(4Brm8qbRUd(a#B5>h)ce<^oZe;2lGIKw0_dKL!IMMU3Xqoq? zBa=+Z2SDt>*L?wdyeZR7J~GJ1DBH}YI0L$uNs_Y8y>i` zr7%l#OU(Pd8O#yWNVvgQ5^CJ+_Zh+j*PYpE56AV`{8ZoH|D132U_fwkE z#!Q{FZC4E0K@V%_)21;B_`LEPmE>ao!(U?!?$!$n&8rkKJ>&27ZD$+YMSOQm7ETpo zAZgL0bp02nhpXqiZCTT`jv5QC!Ee={-?p#Od1iIkj!V&dcC>lKaM(P;2BU9lmDjw-kM*yI(;XSM9y|W9;K&K`u%b z)E(nGL>hP$K}x^pQZdSt(?1Qf464{KT%V-4(CeNW+(n+*rVr<&C)1jFTNc&a^4|2tQrvb-gbD+axb8FW8&lLcOBUY z?5x=YaXYWj ziGnMi>gNyUvJR41?is1&Vyzv|2kOv2EN?w~_Ivz&1~lLq!KJ89zD&-EU!?t;fTIm{ zbcYbye~)MXjcRIt7&dNDRxGdY-BooDDzL;Ab?iv7(|O5C(AwhxUz_fmwNBf z6NDpXZI`aHPsk)@3z@U9S%wu{Cj=!_KXR*k-t~-f3ow7*S-!pJ%`)ITN*< zp=~=~Ht+Ir@V!m4QQK`kOra1ZP$ejq!)`puqK1|V*i45ba)1o*OSBkypHvo-*Uc9SK+2HP zeq1qB+3?GFRJ?qS$3f5oRk}Z1Re=L2MVFjPmX}WqcCNG2{R%Z@D6_8*M`YE9DcPp5 zqZV z*z7^u(v%vJ1Y}W$Y}E~k0$&h>L(I}XPv?kXtaed@l_qRrGy*11>>mqYLIfc_=i4+J zAvU2yc>$ZhkthXO`^7i2e{K*#i8n!Le&8Tj%fSv-cbpDN5km#j4n;F~!|uDIm7YJk zDem-cgss{t-%v2-{UgFA?R6qpbaUeeL26%pxllB@(u&R7^)^Z`kO_j`zKPsh3_9Pg zKa&{dlBSpRDBk$x<%FQIy8ZASl0~tONG*Mo?vBwzZ{sSZ8qK@&x*U}8idf-y-FGOa z4%|d2sk|&U`uu>blv~jTO*Wt9Ub2wgVgd{jcH`f4T^%?A*K`)R2$a1e+El1W$Jt8OWjbB&ksZ zyoxH6{?Q~iijC`Cq&C^sWo_chl#%`!a3$rjke$4OC9|i@7oMVqKrsH`^I1BzvFb?{2||r3(bam zlYtjG>=bQ?2h$D|K|F9F@cv=kKp{$(*vpQj!SU_69e=IbdL1Bbc1vjoA>}b~8R}a? zeNf36DK|f_$%Nh)aC#Pf?YiHd=BF2?L3&gxqC}1@@`yl-VB{$|BG-@+H&c09o=tde z#<*XUR&1%}TE+gke)CG+x9b)wVpQTzUP$DsJCD- z%;%u8aB!H_F2`nJt1{u2h4@f83+H~#L_!g=K{lK(_OkxT@9!vP;qwf?cT@f_HZ_v? zz-rfBFIbTWkL`dCY{TUkB8Y>yixAtou;58OT4wjtTg>k9P#q1THFJlm#~{@1m0)>*yBYJWhrZqp8o~Kb~ ziZ~{W-7STRDAW1;BY~MAd@hu4+rF1~OWQ4q+>%F(RCW?J@|p=Y{6gA?xFHx#S@)P) z0xH{cZ`8$}h#m)ZF8q|SRzAL_g=*vv5}L!3l0>w^^Cz z3;p*^j~}_W>Z1IeaF-KV%!7}f@1)um2&R*se>5ClN@NU=xc9S+qOvq+aey(Fg7wF7 zQ^VqyEoXbdCerz$4hr+|zZ5=Kl_OadVmvfK?u29o2aSswV*Dka>LFRAuE=s5ki* z?Y)JxJ{9rXv$z)>Jg`-ag=@zd)R7R}w&l)qLUR9nIrMauZthy^uJiOmcl73Ec!Xd? z7~yXE()`vK7H7HEo|gPy!AMbaakNp;eqXS1{=LN@!}ylz=9?X|Pf2|OD*-2>@49wSLFyf4(PI9oB(myL^0Aj3 zI`ixK9fP_?ck)mkHc^(ls$()rLB9wXTgiv_7eNMCnMvQdln5${aV=B$;-yI-#B#T; zSQ1)l-9)G5&kA8V0U+QvosY?$+}`#q3Xyv*|95dCIINMJLa1PWPnTt*_wl^r#0T$g zMF#bzC|Ns@5mJxE{1J zZwAXEn`B3L%qf={YmkD(G%)RjU!*Ytw?u<;3s#VD!La4TAc6JNpa;XR${Ow2GuLEH zoSB57s)1|RJf5C{KCjb*^pV{w%q*0gZ@2`#4=Cyo`!}{wBJRWN8C=!N#y&xOncAK8 zn?!Ns=x`YZQ+7`kv)0qtR&CnA^>0O@BJNesTE~V53KfW}{N{r@!#c{k7?A|iwAt{S z)_UAA-uADy=p}A<0+OnmB0lp^5JJ-EYn#Ci09DYCCp*cB5T>93VPWXn1i|7Ct4yXv zch^Rh-yWN%HP&J1t;kx9!aB|5zhrMIls1KTUbQ1(3oAzylcA@-_=0C;sgJp-ayJ+3 z<~KWVDLF<0-^ssH{5D9Sua1UkjCV-Kon%G2D(S13Jz8Qdl36SI!S}vLISGaRDdh6( z?EVea4>b8(8JdZq4DNmT*m1u0-`az2OgqQh1Pldg!}IsD^iLRfuPy#~EvS3D7A}h- zZbT>;EKWmiA|z5!X}A46nGH)agnNzVt}KZP0uNdt<*W0=%g%V^15K*PxRYo11<9>{ zbVTqUDWos1YFTtNS>NK(SDBye2=3z^R^}d_9P^LHic&vCYWbbgX8YZOY3E7i9~^Q) ztLRHUFJ>`8*ESC!#XCo&7XylT;^7FHCrx`5AmzSb1tf@xnDQFsW>≠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 Pz<-8%Cc35Cm&5)W81R0U diff --git a/ui-tests/test/notebook.spec.ts b/ui-tests/test/notebook.spec.ts index 4a7c2bcf9f..9ecab41844 100644 --- a/ui-tests/test/notebook.spec.ts +++ b/ui-tests/test/notebook.spec.ts @@ -206,4 +206,21 @@ test.describe('Notebook', () => { await page.menu.clickMenuItem(menuPath); await expect(notebookPanel).not.toHaveClass(/jp-mod-fullwidth/); }); + + test('Open the log console widget in the down area', async ({ + page, + tmpPath, + }) => { + const notebook = 'simple.ipynb'; + await page.contents.uploadFile( + path.resolve(__dirname, `./notebooks/${notebook}`), + `${tmpPath}/${notebook}` + ); + await page.goto(`notebooks/${tmpPath}/${notebook}`); + + const menuPath = 'View>Show Log Console'; + await page.menu.clickMenuItem(menuPath); + + await expect(page.locator('.jp-LogConsole')).toBeVisible(); + }); }); diff --git a/yarn.lock b/yarn.lock index e6af74f4db..ab51d6a9f7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2167,6 +2167,7 @@ __metadata: "@jupyterlab/imageviewer-extension": ~4.4.0-rc.1 "@jupyterlab/javascript-extension": ~4.4.0-rc.1 "@jupyterlab/json-extension": ~4.4.0-rc.1 + "@jupyterlab/logconsole-extension": ~4.4.0-rc.1 "@jupyterlab/lsp": ~4.4.0-rc.1 "@jupyterlab/lsp-extension": ~4.4.0-rc.1 "@jupyterlab/mainmenu-extension": ~4.4.0-rc.1 @@ -3832,6 +3833,28 @@ __metadata: languageName: node linkType: hard +"@jupyterlab/logconsole-extension@npm:~4.4.0-rc.1": + version: 4.4.0-rc.1 + resolution: "@jupyterlab/logconsole-extension@npm:4.4.0-rc.1" + dependencies: + "@jupyterlab/application": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0-rc.1 + "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/logconsole": ^4.4.0-rc.1 + "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/statusbar": ^4.4.0-rc.1 + "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@lumino/coreutils": ^2.2.1 + "@lumino/signaling": ^2.1.4 + "@lumino/widgets": ^2.7.0 + react: ^18.2.0 + checksum: b49a7a16162dd612f8e7acb24d505cfaa4540957c82630c53392e5d93be8333795777c5a31cd3a5c3864f89cff0ba725980832a86778baf952a65eacf2659a14 + languageName: node + linkType: hard + "@jupyterlab/logconsole@npm:^4.4.0-rc.1": version: 4.4.0-rc.1 resolution: "@jupyterlab/logconsole@npm:4.4.0-rc.1" From 2077c92956ebbbb3d497e0f9b382e0a3b36f26dc Mon Sep 17 00:00:00 2001 From: jtpio Date: Thu, 3 Apr 2025 06:49:38 +0000 Subject: [PATCH 014/143] Publish 7.4.0rc0 SHA256 hashes: jupyter-notebook-application-7.4.0-rc.0.tgz: 10c59d2b8fd583743a18251bb16486e0add2d73a6772c9088b9549acbf8f5eae jupyter-notebook-application-extension-7.4.0-rc.0.tgz: 08f334fc534c25248c6452716c5d9face9f0cbc4dc3e5dd3f06be14d67a88be4 jupyter-notebook-console-extension-7.4.0-rc.0.tgz: 6ab8546f014094355711698ed7b70e16cbdb04a66194bd2d5fd4f6e2826111da jupyter-notebook-docmanager-extension-7.4.0-rc.0.tgz: e9a436afcf2831a7e3b682a56eabf6fa5c4b396340f36e8ddc0d2f83cdffe394 jupyter-notebook-documentsearch-extension-7.4.0-rc.0.tgz: b2093cda87a067c120e50bdd6ff8f556a8037992415972603508551d808d123c jupyter-notebook-help-extension-7.4.0-rc.0.tgz: e5a2f204c4e137fd1801caf5fd97b53c013279e8575778ffcb1ef4c081e16a58 jupyter-notebook-lab-extension-7.4.0-rc.0.tgz: 5d6335f80a9ddb53c394a1703db861b1332b40f004bb5aeb5b84540885afb24b jupyter-notebook-notebook-extension-7.4.0-rc.0.tgz: 41d42ab0f749ae4ace3e34ed7598db4941778546af6ef97dad4aa991f05d7b14 jupyter-notebook-terminal-extension-7.4.0-rc.0.tgz: 8647108d5f75cc25ad9aa57315a4ac0d30ed0b96dffd20a0a9b0625539515e96 jupyter-notebook-tree-7.4.0-rc.0.tgz: c49e77a4b1824337e35f2d8a50807ca7a6e98694751507e6e513257b2c37061a jupyter-notebook-tree-extension-7.4.0-rc.0.tgz: 4503839c104397631ba95379f1df3aa0696e90e38e9209ed10e772745594b31d jupyter-notebook-ui-components-7.4.0-rc.0.tgz: 85d4cde06b2a5c8a1348bbb686555b3721cc614a05d4f7ee2ff0bd97f3e54a91 notebook-7.4.0rc0-py3-none-any.whl: d5482bd95301e0b714344847e83c39d6fa5ab3e9a426cb048402905315c6cef9 notebook-7.4.0rc0.tar.gz: f6922801c03460e32c3d839ab0e3d05606eb9e01c845178872a3ab09a6210137 --- CHANGELOG.md | 19 +++- app/package.json | 46 ++++----- buildutils/package.json | 2 +- notebook/_version.py | 2 +- packages/_metapackage/package.json | 26 ++--- packages/application-extension/package.json | 6 +- packages/application/package.json | 2 +- packages/console-extension/package.json | 4 +- packages/docmanager-extension/package.json | 4 +- .../documentsearch-extension/package.json | 4 +- packages/help-extension/package.json | 4 +- packages/lab-extension/package.json | 4 +- packages/notebook-extension/package.json | 4 +- packages/terminal-extension/package.json | 4 +- packages/tree-extension/package.json | 6 +- packages/tree/package.json | 4 +- packages/ui-components/package.json | 2 +- yarn.lock | 94 +++++++++---------- 18 files changed, 126 insertions(+), 111 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9666c201a7..8ecafe3157 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -69,6 +69,23 @@ or via the JSON Settings Editor in the Application Context Menu. +## 7.4.0rc0 + +([Full Changelog](https://github.com/jupyter/notebook/compare/@jupyter-notebook/application-extension@7.4.0-beta.3...7fa19999c9e01d713a684e0f25d8017dbc999528)) + +### Enhancements made + +- Update to JupyterLab v4.4.0rc1 [#7622](https://github.com/jupyter/notebook/pull/7622) ([@jtpio](https://github.com/jtpio)) +- Add support for a `down` area [#7619](https://github.com/jupyter/notebook/pull/7619) ([@jtpio](https://github.com/jtpio)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyter/notebook/graphs/contributors?from=2025-03-26&to=2025-04-03&type=c)) + +[@github-actions](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2025-03-26..2025-04-03&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2025-03-26..2025-04-03&type=Issues) + + + ## 7.4.0b3 ([Full Changelog](https://github.com/jupyter/notebook/compare/@jupyter-notebook/application-extension@7.4.0-beta.2...434221c0fe3de3df3b4b54ed1005712e07957352)) @@ -84,8 +101,6 @@ or via the JSON Settings Editor in the Application Context Menu. [@github-actions](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2025-03-20..2025-03-26&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2025-03-20..2025-03-26&type=Issues) - - ## 7.4.0b2 ([Full Changelog](https://github.com/jupyter/notebook/compare/@jupyter-notebook/application-extension@7.4.0-beta.1...be2fd12f91a64796d9919ee8b8242f3093aac8a5)) diff --git a/app/package.json b/app/package.json index 99df4c46c5..f3cddc9ce5 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/app", - "version": "7.4.0-beta.3", + "version": "7.4.0-rc.0", "private": true, "scripts": { "build": "webpack", @@ -12,17 +12,17 @@ "resolutions": { "@codemirror/state": "~6.5.0", "@codemirror/view": "~6.36.1", - "@jupyter-notebook/application": "~7.4.0-beta.3", - "@jupyter-notebook/application-extension": "~7.4.0-beta.3", - "@jupyter-notebook/console-extension": "~7.4.0-beta.3", - "@jupyter-notebook/docmanager-extension": "~7.4.0-beta.3", - "@jupyter-notebook/documentsearch-extension": "~7.4.0-beta.3", - "@jupyter-notebook/help-extension": "~7.4.0-beta.3", - "@jupyter-notebook/notebook-extension": "~7.4.0-beta.3", - "@jupyter-notebook/terminal-extension": "~7.4.0-beta.3", - "@jupyter-notebook/tree": "~7.4.0-beta.3", - "@jupyter-notebook/tree-extension": "~7.4.0-beta.3", - "@jupyter-notebook/ui-components": "~7.4.0-beta.3", + "@jupyter-notebook/application": "~7.4.0-rc.0", + "@jupyter-notebook/application-extension": "~7.4.0-rc.0", + "@jupyter-notebook/console-extension": "~7.4.0-rc.0", + "@jupyter-notebook/docmanager-extension": "~7.4.0-rc.0", + "@jupyter-notebook/documentsearch-extension": "~7.4.0-rc.0", + "@jupyter-notebook/help-extension": "~7.4.0-rc.0", + "@jupyter-notebook/notebook-extension": "~7.4.0-rc.0", + "@jupyter-notebook/terminal-extension": "~7.4.0-rc.0", + "@jupyter-notebook/tree": "~7.4.0-rc.0", + "@jupyter-notebook/tree-extension": "~7.4.0-rc.0", + "@jupyter-notebook/ui-components": "~7.4.0-rc.0", "@jupyter/react-components": "~0.16.7", "@jupyter/web-components": "~0.16.7", "@jupyter/ydoc": "~3.0.0", @@ -125,17 +125,17 @@ "yjs": "~13.6.8" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.3", - "@jupyter-notebook/application-extension": "^7.4.0-beta.3", - "@jupyter-notebook/console-extension": "^7.4.0-beta.3", - "@jupyter-notebook/docmanager-extension": "^7.4.0-beta.3", - "@jupyter-notebook/documentsearch-extension": "^7.4.0-beta.3", - "@jupyter-notebook/help-extension": "^7.4.0-beta.3", - "@jupyter-notebook/notebook-extension": "^7.4.0-beta.3", - "@jupyter-notebook/terminal-extension": "^7.4.0-beta.3", - "@jupyter-notebook/tree": "^7.4.0-beta.3", - "@jupyter-notebook/tree-extension": "^7.4.0-beta.3", - "@jupyter-notebook/ui-components": "^7.4.0-beta.3", + "@jupyter-notebook/application": "^7.4.0-rc.0", + "@jupyter-notebook/application-extension": "^7.4.0-rc.0", + "@jupyter-notebook/console-extension": "^7.4.0-rc.0", + "@jupyter-notebook/docmanager-extension": "^7.4.0-rc.0", + "@jupyter-notebook/documentsearch-extension": "^7.4.0-rc.0", + "@jupyter-notebook/help-extension": "^7.4.0-rc.0", + "@jupyter-notebook/notebook-extension": "^7.4.0-rc.0", + "@jupyter-notebook/terminal-extension": "^7.4.0-rc.0", + "@jupyter-notebook/tree": "^7.4.0-rc.0", + "@jupyter-notebook/tree-extension": "^7.4.0-rc.0", + "@jupyter-notebook/ui-components": "^7.4.0-rc.0", "@jupyterlab/application-extension": "~4.4.0-rc.1", "@jupyterlab/apputils-extension": "~4.4.0-rc.1", "@jupyterlab/attachments": "~4.4.0-rc.1", diff --git a/buildutils/package.json b/buildutils/package.json index 7880ddbb82..70520662e2 100644 --- a/buildutils/package.json +++ b/buildutils/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/buildutils", - "version": "7.4.0-beta.3", + "version": "7.4.0-rc.0", "private": true, "description": "Jupyter Notebook - Build Utilities", "homepage": "https://github.com/jupyter/notebook", diff --git a/notebook/_version.py b/notebook/_version.py index 850c4369b8..f5db537c5a 100644 --- a/notebook/_version.py +++ b/notebook/_version.py @@ -6,7 +6,7 @@ from collections import namedtuple # Use "hatch version xx.yy.zz" to handle version changes -__version__ = "7.4.0b3" +__version__ = "7.4.0rc0" # PEP440 version parser _version_regex = re.compile( diff --git a/packages/_metapackage/package.json b/packages/_metapackage/package.json index c93a9ac24f..4ba03cab76 100644 --- a/packages/_metapackage/package.json +++ b/packages/_metapackage/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/metapackage", - "version": "7.4.0-beta.3", + "version": "7.4.0-rc.0", "private": true, "description": "Jupyter Notebook - Metapackage", "homepage": "https://github.com/jupyter/notebook", @@ -20,18 +20,18 @@ "watch": "tsc -b -w --preserveWatchOutput" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.3", - "@jupyter-notebook/application-extension": "^7.4.0-beta.3", - "@jupyter-notebook/console-extension": "^7.4.0-beta.3", - "@jupyter-notebook/docmanager-extension": "^7.4.0-beta.3", - "@jupyter-notebook/documentsearch-extension": "^7.4.0-beta.3", - "@jupyter-notebook/help-extension": "^7.4.0-beta.3", - "@jupyter-notebook/lab-extension": "^7.4.0-beta.3", - "@jupyter-notebook/notebook-extension": "^7.4.0-beta.3", - "@jupyter-notebook/terminal-extension": "^7.4.0-beta.3", - "@jupyter-notebook/tree": "^7.4.0-beta.3", - "@jupyter-notebook/tree-extension": "^7.4.0-beta.3", - "@jupyter-notebook/ui-components": "^7.4.0-beta.3" + "@jupyter-notebook/application": "^7.4.0-rc.0", + "@jupyter-notebook/application-extension": "^7.4.0-rc.0", + "@jupyter-notebook/console-extension": "^7.4.0-rc.0", + "@jupyter-notebook/docmanager-extension": "^7.4.0-rc.0", + "@jupyter-notebook/documentsearch-extension": "^7.4.0-rc.0", + "@jupyter-notebook/help-extension": "^7.4.0-rc.0", + "@jupyter-notebook/lab-extension": "^7.4.0-rc.0", + "@jupyter-notebook/notebook-extension": "^7.4.0-rc.0", + "@jupyter-notebook/terminal-extension": "^7.4.0-rc.0", + "@jupyter-notebook/tree": "^7.4.0-rc.0", + "@jupyter-notebook/tree-extension": "^7.4.0-rc.0", + "@jupyter-notebook/ui-components": "^7.4.0-rc.0" }, "devDependencies": { "typescript": "~5.5.4" diff --git a/packages/application-extension/package.json b/packages/application-extension/package.json index 13b93bf46c..fb749d5952 100644 --- a/packages/application-extension/package.json +++ b/packages/application-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/application-extension", - "version": "7.4.0-beta.3", + "version": "7.4.0-rc.0", "description": "Jupyter Notebook - Application Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,8 +38,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.3", - "@jupyter-notebook/ui-components": "^7.4.0-beta.3", + "@jupyter-notebook/application": "^7.4.0-rc.0", + "@jupyter-notebook/ui-components": "^7.4.0-rc.0", "@jupyterlab/application": "~4.4.0-rc.1", "@jupyterlab/apputils": "~4.5.0-rc.1", "@jupyterlab/codeeditor": "~4.4.0-rc.1", diff --git a/packages/application/package.json b/packages/application/package.json index b302d2c4d3..288e0511cd 100644 --- a/packages/application/package.json +++ b/packages/application/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/application", - "version": "7.4.0-beta.3", + "version": "7.4.0-rc.0", "description": "Jupyter Notebook - Application", "homepage": "https://github.com/jupyter/notebook", "bugs": { diff --git a/packages/console-extension/package.json b/packages/console-extension/package.json index a705e2ec06..b3e2597c68 100644 --- a/packages/console-extension/package.json +++ b/packages/console-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/console-extension", - "version": "7.4.0-beta.3", + "version": "7.4.0-rc.0", "description": "Jupyter Notebook - Console Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.3", + "@jupyter-notebook/application": "^7.4.0-rc.0", "@jupyterlab/application": "~4.4.0-rc.1", "@jupyterlab/console": "~4.4.0-rc.1", "@jupyterlab/coreutils": "~6.4.0-rc.1", diff --git a/packages/docmanager-extension/package.json b/packages/docmanager-extension/package.json index c53a5287d5..dd51beedcc 100644 --- a/packages/docmanager-extension/package.json +++ b/packages/docmanager-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/docmanager-extension", - "version": "7.4.0-beta.3", + "version": "7.4.0-rc.0", "description": "Jupyter Notebook - Document Manager Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.3", + "@jupyter-notebook/application": "^7.4.0-rc.0", "@jupyterlab/application": "~4.4.0-rc.1", "@jupyterlab/coreutils": "~6.4.0-rc.1", "@jupyterlab/docmanager": "~4.4.0-rc.1", diff --git a/packages/documentsearch-extension/package.json b/packages/documentsearch-extension/package.json index 8b577f3524..dd516cdfc6 100644 --- a/packages/documentsearch-extension/package.json +++ b/packages/documentsearch-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/documentsearch-extension", - "version": "7.4.0-beta.3", + "version": "7.4.0-rc.0", "description": "Jupyter Notebook - Document Search Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.3", + "@jupyter-notebook/application": "^7.4.0-rc.0", "@jupyterlab/application": "~4.4.0-rc.1", "@jupyterlab/documentsearch": "~4.4.0-rc.1", "@lumino/widgets": "^2.5.0" diff --git a/packages/help-extension/package.json b/packages/help-extension/package.json index 8d26bb0457..c7d67bb14a 100644 --- a/packages/help-extension/package.json +++ b/packages/help-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/help-extension", - "version": "7.4.0-beta.3", + "version": "7.4.0-rc.0", "description": "Jupyter Notebook - Help Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/ui-components": "^7.4.0-beta.3", + "@jupyter-notebook/ui-components": "^7.4.0-rc.0", "@jupyterlab/application": "~4.4.0-rc.1", "@jupyterlab/apputils": "~4.5.0-rc.1", "@jupyterlab/mainmenu": "~4.4.0-rc.1", diff --git a/packages/lab-extension/package.json b/packages/lab-extension/package.json index 3f2d0cdcac..085d69ded2 100644 --- a/packages/lab-extension/package.json +++ b/packages/lab-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/lab-extension", - "version": "7.4.0-beta.3", + "version": "7.4.0-rc.0", "description": "Jupyter Notebook - Lab Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -43,7 +43,7 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.3", + "@jupyter-notebook/application": "^7.4.0-rc.0", "@jupyterlab/application": "~4.4.0-rc.1", "@jupyterlab/apputils": "~4.5.0-rc.1", "@jupyterlab/coreutils": "~6.4.0-rc.1", diff --git a/packages/notebook-extension/package.json b/packages/notebook-extension/package.json index 1beaafe8c5..b1c4fa6948 100644 --- a/packages/notebook-extension/package.json +++ b/packages/notebook-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/notebook-extension", - "version": "7.4.0-beta.3", + "version": "7.4.0-rc.0", "description": "Jupyter Notebook - Notebook Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.3", + "@jupyter-notebook/application": "^7.4.0-rc.0", "@jupyterlab/application": "~4.4.0-rc.1", "@jupyterlab/apputils": "~4.5.0-rc.1", "@jupyterlab/cells": "~4.4.0-rc.1", diff --git a/packages/terminal-extension/package.json b/packages/terminal-extension/package.json index 1b21e4ddf7..7e364caa3a 100644 --- a/packages/terminal-extension/package.json +++ b/packages/terminal-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/terminal-extension", - "version": "7.4.0-beta.3", + "version": "7.4.0-rc.0", "description": "Jupyter Notebook - Terminal Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.3", + "@jupyter-notebook/application": "^7.4.0-rc.0", "@jupyterlab/application": "~4.4.0-rc.1", "@jupyterlab/coreutils": "~6.4.0-rc.1", "@jupyterlab/terminal": "~4.4.0-rc.1", diff --git a/packages/tree-extension/package.json b/packages/tree-extension/package.json index aa983a6d6a..03be0b77db 100644 --- a/packages/tree-extension/package.json +++ b/packages/tree-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/tree-extension", - "version": "7.4.0-beta.3", + "version": "7.4.0-rc.0", "description": "Jupyter Notebook - Tree Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,8 +38,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.3", - "@jupyter-notebook/tree": "^7.4.0-beta.3", + "@jupyter-notebook/application": "^7.4.0-rc.0", + "@jupyter-notebook/tree": "^7.4.0-rc.0", "@jupyterlab/application": "~4.4.0-rc.1", "@jupyterlab/apputils": "~4.5.0-rc.1", "@jupyterlab/coreutils": "~6.4.0-rc.1", diff --git a/packages/tree/package.json b/packages/tree/package.json index dbe7a7f73c..0132769e32 100644 --- a/packages/tree/package.json +++ b/packages/tree/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/tree", - "version": "7.4.0-beta.3", + "version": "7.4.0-rc.0", "description": "Jupyter Notebook - Tree", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-beta.3", + "@jupyter-notebook/application": "^7.4.0-rc.0", "@jupyterlab/application": "~4.4.0-rc.1", "@jupyterlab/apputils": "~4.5.0-rc.1", "@jupyterlab/coreutils": "~6.4.0-rc.1", diff --git a/packages/ui-components/package.json b/packages/ui-components/package.json index 2b84d5a7f4..5ff0a4e323 100644 --- a/packages/ui-components/package.json +++ b/packages/ui-components/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/ui-components", - "version": "7.4.0-beta.3", + "version": "7.4.0-rc.0", "description": "Jupyter Notebook - UI components", "homepage": "https://github.com/jupyter/notebook", "bugs": { diff --git a/yarn.lock b/yarn.lock index ab51d6a9f7..ace488861a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2131,17 +2131,17 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyter-notebook/app@workspace:app" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.3 - "@jupyter-notebook/application-extension": ^7.4.0-beta.3 - "@jupyter-notebook/console-extension": ^7.4.0-beta.3 - "@jupyter-notebook/docmanager-extension": ^7.4.0-beta.3 - "@jupyter-notebook/documentsearch-extension": ^7.4.0-beta.3 - "@jupyter-notebook/help-extension": ^7.4.0-beta.3 - "@jupyter-notebook/notebook-extension": ^7.4.0-beta.3 - "@jupyter-notebook/terminal-extension": ^7.4.0-beta.3 - "@jupyter-notebook/tree": ^7.4.0-beta.3 - "@jupyter-notebook/tree-extension": ^7.4.0-beta.3 - "@jupyter-notebook/ui-components": ^7.4.0-beta.3 + "@jupyter-notebook/application": ^7.4.0-rc.0 + "@jupyter-notebook/application-extension": ^7.4.0-rc.0 + "@jupyter-notebook/console-extension": ^7.4.0-rc.0 + "@jupyter-notebook/docmanager-extension": ^7.4.0-rc.0 + "@jupyter-notebook/documentsearch-extension": ^7.4.0-rc.0 + "@jupyter-notebook/help-extension": ^7.4.0-rc.0 + "@jupyter-notebook/notebook-extension": ^7.4.0-rc.0 + "@jupyter-notebook/terminal-extension": ^7.4.0-rc.0 + "@jupyter-notebook/tree": ^7.4.0-rc.0 + "@jupyter-notebook/tree-extension": ^7.4.0-rc.0 + "@jupyter-notebook/ui-components": ^7.4.0-rc.0 "@jupyterlab/application-extension": ~4.4.0-rc.1 "@jupyterlab/apputils-extension": ~4.4.0-rc.1 "@jupyterlab/attachments": ~4.4.0-rc.1 @@ -2216,12 +2216,12 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/application-extension@^7.4.0-beta.3, @jupyter-notebook/application-extension@workspace:packages/application-extension": +"@jupyter-notebook/application-extension@^7.4.0-rc.0, @jupyter-notebook/application-extension@workspace:packages/application-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/application-extension@workspace:packages/application-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.3 - "@jupyter-notebook/ui-components": ^7.4.0-beta.3 + "@jupyter-notebook/application": ^7.4.0-rc.0 + "@jupyter-notebook/ui-components": ^7.4.0-rc.0 "@jupyterlab/application": ~4.4.0-rc.1 "@jupyterlab/apputils": ~4.5.0-rc.1 "@jupyterlab/codeeditor": ~4.4.0-rc.1 @@ -2241,7 +2241,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/application@^7.4.0-beta.3, @jupyter-notebook/application@workspace:packages/application": +"@jupyter-notebook/application@^7.4.0-rc.0, @jupyter-notebook/application@workspace:packages/application": version: 0.0.0-use.local resolution: "@jupyter-notebook/application@workspace:packages/application" dependencies: @@ -2283,11 +2283,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/console-extension@^7.4.0-beta.3, @jupyter-notebook/console-extension@workspace:packages/console-extension": +"@jupyter-notebook/console-extension@^7.4.0-rc.0, @jupyter-notebook/console-extension@workspace:packages/console-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/console-extension@workspace:packages/console-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.3 + "@jupyter-notebook/application": ^7.4.0-rc.0 "@jupyterlab/application": ~4.4.0-rc.1 "@jupyterlab/console": ~4.4.0-rc.1 "@jupyterlab/coreutils": ~6.4.0-rc.1 @@ -2297,11 +2297,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/docmanager-extension@^7.4.0-beta.3, @jupyter-notebook/docmanager-extension@workspace:packages/docmanager-extension": +"@jupyter-notebook/docmanager-extension@^7.4.0-rc.0, @jupyter-notebook/docmanager-extension@workspace:packages/docmanager-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/docmanager-extension@workspace:packages/docmanager-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.3 + "@jupyter-notebook/application": ^7.4.0-rc.0 "@jupyterlab/application": ~4.4.0-rc.1 "@jupyterlab/coreutils": ~6.4.0-rc.1 "@jupyterlab/docmanager": ~4.4.0-rc.1 @@ -2314,11 +2314,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/documentsearch-extension@^7.4.0-beta.3, @jupyter-notebook/documentsearch-extension@workspace:packages/documentsearch-extension": +"@jupyter-notebook/documentsearch-extension@^7.4.0-rc.0, @jupyter-notebook/documentsearch-extension@workspace:packages/documentsearch-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/documentsearch-extension@workspace:packages/documentsearch-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.3 + "@jupyter-notebook/application": ^7.4.0-rc.0 "@jupyterlab/application": ~4.4.0-rc.1 "@jupyterlab/documentsearch": ~4.4.0-rc.1 "@lumino/widgets": ^2.5.0 @@ -2327,11 +2327,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/help-extension@^7.4.0-beta.3, @jupyter-notebook/help-extension@workspace:packages/help-extension": +"@jupyter-notebook/help-extension@^7.4.0-rc.0, @jupyter-notebook/help-extension@workspace:packages/help-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/help-extension@workspace:packages/help-extension" dependencies: - "@jupyter-notebook/ui-components": ^7.4.0-beta.3 + "@jupyter-notebook/ui-components": ^7.4.0-rc.0 "@jupyterlab/application": ~4.4.0-rc.1 "@jupyterlab/apputils": ~4.5.0-rc.1 "@jupyterlab/mainmenu": ~4.4.0-rc.1 @@ -2343,11 +2343,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/lab-extension@^7.4.0-beta.3, @jupyter-notebook/lab-extension@workspace:packages/lab-extension": +"@jupyter-notebook/lab-extension@^7.4.0-rc.0, @jupyter-notebook/lab-extension@workspace:packages/lab-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/lab-extension@workspace:packages/lab-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.3 + "@jupyter-notebook/application": ^7.4.0-rc.0 "@jupyterlab/application": ~4.4.0-rc.1 "@jupyterlab/apputils": ~4.5.0-rc.1 "@jupyterlab/builder": ~4.4.0-rc.1 @@ -2367,27 +2367,27 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyter-notebook/metapackage@workspace:packages/_metapackage" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.3 - "@jupyter-notebook/application-extension": ^7.4.0-beta.3 - "@jupyter-notebook/console-extension": ^7.4.0-beta.3 - "@jupyter-notebook/docmanager-extension": ^7.4.0-beta.3 - "@jupyter-notebook/documentsearch-extension": ^7.4.0-beta.3 - "@jupyter-notebook/help-extension": ^7.4.0-beta.3 - "@jupyter-notebook/lab-extension": ^7.4.0-beta.3 - "@jupyter-notebook/notebook-extension": ^7.4.0-beta.3 - "@jupyter-notebook/terminal-extension": ^7.4.0-beta.3 - "@jupyter-notebook/tree": ^7.4.0-beta.3 - "@jupyter-notebook/tree-extension": ^7.4.0-beta.3 - "@jupyter-notebook/ui-components": ^7.4.0-beta.3 + "@jupyter-notebook/application": ^7.4.0-rc.0 + "@jupyter-notebook/application-extension": ^7.4.0-rc.0 + "@jupyter-notebook/console-extension": ^7.4.0-rc.0 + "@jupyter-notebook/docmanager-extension": ^7.4.0-rc.0 + "@jupyter-notebook/documentsearch-extension": ^7.4.0-rc.0 + "@jupyter-notebook/help-extension": ^7.4.0-rc.0 + "@jupyter-notebook/lab-extension": ^7.4.0-rc.0 + "@jupyter-notebook/notebook-extension": ^7.4.0-rc.0 + "@jupyter-notebook/terminal-extension": ^7.4.0-rc.0 + "@jupyter-notebook/tree": ^7.4.0-rc.0 + "@jupyter-notebook/tree-extension": ^7.4.0-rc.0 + "@jupyter-notebook/ui-components": ^7.4.0-rc.0 typescript: ~5.5.4 languageName: unknown linkType: soft -"@jupyter-notebook/notebook-extension@^7.4.0-beta.3, @jupyter-notebook/notebook-extension@workspace:packages/notebook-extension": +"@jupyter-notebook/notebook-extension@^7.4.0-rc.0, @jupyter-notebook/notebook-extension@workspace:packages/notebook-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/notebook-extension@workspace:packages/notebook-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.3 + "@jupyter-notebook/application": ^7.4.0-rc.0 "@jupyterlab/application": ~4.4.0-rc.1 "@jupyterlab/apputils": ~4.5.0-rc.1 "@jupyterlab/cells": ~4.4.0-rc.1 @@ -2425,11 +2425,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/terminal-extension@^7.4.0-beta.3, @jupyter-notebook/terminal-extension@workspace:packages/terminal-extension": +"@jupyter-notebook/terminal-extension@^7.4.0-rc.0, @jupyter-notebook/terminal-extension@workspace:packages/terminal-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/terminal-extension@workspace:packages/terminal-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.3 + "@jupyter-notebook/application": ^7.4.0-rc.0 "@jupyterlab/application": ~4.4.0-rc.1 "@jupyterlab/coreutils": ~6.4.0-rc.1 "@jupyterlab/terminal": ~4.4.0-rc.1 @@ -2439,12 +2439,12 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/tree-extension@^7.4.0-beta.3, @jupyter-notebook/tree-extension@workspace:packages/tree-extension": +"@jupyter-notebook/tree-extension@^7.4.0-rc.0, @jupyter-notebook/tree-extension@workspace:packages/tree-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/tree-extension@workspace:packages/tree-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.3 - "@jupyter-notebook/tree": ^7.4.0-beta.3 + "@jupyter-notebook/application": ^7.4.0-rc.0 + "@jupyter-notebook/tree": ^7.4.0-rc.0 "@jupyterlab/application": ~4.4.0-rc.1 "@jupyterlab/apputils": ~4.5.0-rc.1 "@jupyterlab/coreutils": ~6.4.0-rc.1 @@ -2465,11 +2465,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/tree@^7.4.0-beta.3, @jupyter-notebook/tree@workspace:packages/tree": +"@jupyter-notebook/tree@^7.4.0-rc.0, @jupyter-notebook/tree@workspace:packages/tree": version: 0.0.0-use.local resolution: "@jupyter-notebook/tree@workspace:packages/tree" dependencies: - "@jupyter-notebook/application": ^7.4.0-beta.3 + "@jupyter-notebook/application": ^7.4.0-rc.0 "@jupyterlab/application": ~4.4.0-rc.1 "@jupyterlab/apputils": ~4.5.0-rc.1 "@jupyterlab/coreutils": ~6.4.0-rc.1 @@ -2490,7 +2490,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/ui-components@^7.4.0-beta.3, @jupyter-notebook/ui-components@workspace:packages/ui-components": +"@jupyter-notebook/ui-components@^7.4.0-rc.0, @jupyter-notebook/ui-components@workspace:packages/ui-components": version: 0.0.0-use.local resolution: "@jupyter-notebook/ui-components@workspace:packages/ui-components" dependencies: From 3edc44b62ac25bb487114c0f1ed757397bc0fb60 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 3 Apr 2025 20:53:19 +0200 Subject: [PATCH 015/143] Update to JupyterLab v4.4.0 (#7623) Co-authored-by: github-actions[bot] --- app/package.json | 262 +- buildutils/package.json | 2 +- package.json | 2 +- packages/application-extension/package.json | 22 +- packages/application/package.json | 10 +- packages/console-extension/package.json | 6 +- packages/docmanager-extension/package.json | 10 +- .../documentsearch-extension/package.json | 4 +- packages/help-extension/package.json | 8 +- packages/lab-extension/package.json | 16 +- packages/notebook-extension/package.json | 14 +- packages/terminal-extension/package.json | 6 +- packages/tree-extension/package.json | 24 +- packages/tree/package.json | 22 +- packages/ui-components/package.json | 2 +- ui-tests/package.json | 2 +- ui-tests/yarn.lock | 615 ++-- yarn.lock | 2868 +++++++---------- 18 files changed, 1666 insertions(+), 2229 deletions(-) diff --git a/app/package.json b/app/package.json index f3cddc9ce5..d93899b3c9 100644 --- a/app/package.json +++ b/app/package.json @@ -26,86 +26,86 @@ "@jupyter/react-components": "~0.16.7", "@jupyter/web-components": "~0.16.7", "@jupyter/ydoc": "~3.0.0", - "@jupyterlab/application": "~4.4.0-rc.1", - "@jupyterlab/application-extension": "~4.4.0-rc.1", - "@jupyterlab/apputils": "~4.5.0-rc.1", - "@jupyterlab/apputils-extension": "~4.4.0-rc.1", - "@jupyterlab/attachments": "~4.4.0-rc.1", - "@jupyterlab/cell-toolbar": "~4.4.0-rc.1", - "@jupyterlab/cell-toolbar-extension": "~4.4.0-rc.1", - "@jupyterlab/celltags-extension": "~4.4.0-rc.1", - "@jupyterlab/codeeditor": "~4.4.0-rc.1", - "@jupyterlab/codemirror": "~4.4.0-rc.1", - "@jupyterlab/codemirror-extension": "~4.4.0-rc.1", - "@jupyterlab/completer": "~4.4.0-rc.1", - "@jupyterlab/completer-extension": "~4.4.0-rc.1", - "@jupyterlab/console": "~4.4.0-rc.1", - "@jupyterlab/console-extension": "~4.4.0-rc.1", - "@jupyterlab/coreutils": "~6.4.0-rc.1", - "@jupyterlab/csvviewer-extension": "~4.4.0-rc.1", - "@jupyterlab/debugger": "~4.4.0-rc.1", - "@jupyterlab/debugger-extension": "~4.4.0-rc.1", - "@jupyterlab/docmanager": "~4.4.0-rc.1", - "@jupyterlab/docmanager-extension": "~4.4.0-rc.1", - "@jupyterlab/documentsearch": "~4.4.0-rc.1", - "@jupyterlab/documentsearch-extension": "~4.4.0-rc.1", - "@jupyterlab/extensionmanager": "~4.4.0-rc.1", - "@jupyterlab/extensionmanager-extension": "~4.4.0-rc.1", - "@jupyterlab/filebrowser": "~4.4.0-rc.1", - "@jupyterlab/filebrowser-extension": "~4.4.0-rc.1", - "@jupyterlab/fileeditor": "~4.4.0-rc.1", - "@jupyterlab/fileeditor-extension": "~4.4.0-rc.1", - "@jupyterlab/help-extension": "~4.4.0-rc.1", - "@jupyterlab/htmlviewer": "~4.4.0-rc.1", - "@jupyterlab/htmlviewer-extension": "~4.4.0-rc.1", - "@jupyterlab/hub-extension": "~4.4.0-rc.1", - "@jupyterlab/imageviewer": "~4.4.0-rc.1", - "@jupyterlab/imageviewer-extension": "~4.4.0-rc.1", - "@jupyterlab/javascript-extension": "~4.4.0-rc.1", - "@jupyterlab/json-extension": "~4.4.0-rc.1", - "@jupyterlab/logconsole-extension": "~4.4.0-rc.1", - "@jupyterlab/lsp": "~4.4.0-rc.1", - "@jupyterlab/lsp-extension": "~4.4.0-rc.1", - "@jupyterlab/mainmenu": "~4.4.0-rc.1", - "@jupyterlab/mainmenu-extension": "~4.4.0-rc.1", - "@jupyterlab/markdownviewer": "~4.4.0-rc.1", - "@jupyterlab/markdownviewer-extension": "~4.4.0-rc.1", - "@jupyterlab/markedparser-extension": "~4.4.0-rc.1", - "@jupyterlab/mathjax-extension": "~4.4.0-rc.1", - "@jupyterlab/mermaid": "~4.4.0-rc.1", - "@jupyterlab/mermaid-extension": "~4.4.0-rc.1", - "@jupyterlab/metadataform": "~4.4.0-rc.1", - "@jupyterlab/metadataform-extension": "~4.4.0-rc.1", - "@jupyterlab/notebook": "~4.4.0-rc.1", - "@jupyterlab/notebook-extension": "~4.4.0-rc.1", - "@jupyterlab/observables": "~5.4.0-rc.1", - "@jupyterlab/outputarea": "~4.4.0-rc.1", - "@jupyterlab/pdf-extension": "~4.4.0-rc.1", - "@jupyterlab/pluginmanager-extension": "~4.4.0-rc.1", - "@jupyterlab/rendermime": "~4.4.0-rc.1", - "@jupyterlab/rendermime-interfaces": "~3.12.0-rc.1", - "@jupyterlab/running-extension": "~4.4.0-rc.1", - "@jupyterlab/services": "~7.4.0-rc.1", - "@jupyterlab/services-extension": "~4.4.0-rc.1", - "@jupyterlab/settingeditor": "~4.4.0-rc.1", - "@jupyterlab/settingeditor-extension": "~4.4.0-rc.1", - "@jupyterlab/settingregistry": "~4.4.0-rc.1", - "@jupyterlab/shortcuts-extension": "~5.2.0-rc.1", - "@jupyterlab/statedb": "~4.4.0-rc.1", - "@jupyterlab/statusbar": "~4.4.0-rc.1", - "@jupyterlab/terminal": "~4.4.0-rc.1", - "@jupyterlab/terminal-extension": "~4.4.0-rc.1", - "@jupyterlab/theme-dark-extension": "~4.4.0-rc.1", - "@jupyterlab/theme-dark-high-contrast-extension": "~4.4.0-rc.1", - "@jupyterlab/theme-light-extension": "~4.4.0-rc.1", - "@jupyterlab/toc-extension": "~6.4.0-rc.1", - "@jupyterlab/tooltip": "~4.4.0-rc.1", - "@jupyterlab/tooltip-extension": "~4.4.0-rc.1", - "@jupyterlab/translation": "~4.4.0-rc.1", - "@jupyterlab/translation-extension": "~4.4.0-rc.1", - "@jupyterlab/ui-components": "~4.4.0-rc.1", - "@jupyterlab/ui-components-extension": "~4.4.0-rc.1", - "@jupyterlab/vega5-extension": "~4.4.0-rc.1", + "@jupyterlab/application": "~4.4.0", + "@jupyterlab/application-extension": "~4.4.0", + "@jupyterlab/apputils": "~4.5.0", + "@jupyterlab/apputils-extension": "~4.4.0", + "@jupyterlab/attachments": "~4.4.0", + "@jupyterlab/cell-toolbar": "~4.4.0", + "@jupyterlab/cell-toolbar-extension": "~4.4.0", + "@jupyterlab/celltags-extension": "~4.4.0", + "@jupyterlab/codeeditor": "~4.4.0", + "@jupyterlab/codemirror": "~4.4.0", + "@jupyterlab/codemirror-extension": "~4.4.0", + "@jupyterlab/completer": "~4.4.0", + "@jupyterlab/completer-extension": "~4.4.0", + "@jupyterlab/console": "~4.4.0", + "@jupyterlab/console-extension": "~4.4.0", + "@jupyterlab/coreutils": "~6.4.0", + "@jupyterlab/csvviewer-extension": "~4.4.0", + "@jupyterlab/debugger": "~4.4.0", + "@jupyterlab/debugger-extension": "~4.4.0", + "@jupyterlab/docmanager": "~4.4.0", + "@jupyterlab/docmanager-extension": "~4.4.0", + "@jupyterlab/documentsearch": "~4.4.0", + "@jupyterlab/documentsearch-extension": "~4.4.0", + "@jupyterlab/extensionmanager": "~4.4.0", + "@jupyterlab/extensionmanager-extension": "~4.4.0", + "@jupyterlab/filebrowser": "~4.4.0", + "@jupyterlab/filebrowser-extension": "~4.4.0", + "@jupyterlab/fileeditor": "~4.4.0", + "@jupyterlab/fileeditor-extension": "~4.4.0", + "@jupyterlab/help-extension": "~4.4.0", + "@jupyterlab/htmlviewer": "~4.4.0", + "@jupyterlab/htmlviewer-extension": "~4.4.0", + "@jupyterlab/hub-extension": "~4.4.0", + "@jupyterlab/imageviewer": "~4.4.0", + "@jupyterlab/imageviewer-extension": "~4.4.0", + "@jupyterlab/javascript-extension": "~4.4.0", + "@jupyterlab/json-extension": "~4.4.0", + "@jupyterlab/logconsole-extension": "~4.4.0", + "@jupyterlab/lsp": "~4.4.0", + "@jupyterlab/lsp-extension": "~4.4.0", + "@jupyterlab/mainmenu": "~4.4.0", + "@jupyterlab/mainmenu-extension": "~4.4.0", + "@jupyterlab/markdownviewer": "~4.4.0", + "@jupyterlab/markdownviewer-extension": "~4.4.0", + "@jupyterlab/markedparser-extension": "~4.4.0", + "@jupyterlab/mathjax-extension": "~4.4.0", + "@jupyterlab/mermaid": "~4.4.0", + "@jupyterlab/mermaid-extension": "~4.4.0", + "@jupyterlab/metadataform": "~4.4.0", + "@jupyterlab/metadataform-extension": "~4.4.0", + "@jupyterlab/notebook": "~4.4.0", + "@jupyterlab/notebook-extension": "~4.4.0", + "@jupyterlab/observables": "~5.4.0", + "@jupyterlab/outputarea": "~4.4.0", + "@jupyterlab/pdf-extension": "~4.4.0", + "@jupyterlab/pluginmanager-extension": "~4.4.0", + "@jupyterlab/rendermime": "~4.4.0", + "@jupyterlab/rendermime-interfaces": "~3.12.0", + "@jupyterlab/running-extension": "~4.4.0", + "@jupyterlab/services": "~7.4.0", + "@jupyterlab/services-extension": "~4.4.0", + "@jupyterlab/settingeditor": "~4.4.0", + "@jupyterlab/settingeditor-extension": "~4.4.0", + "@jupyterlab/settingregistry": "~4.4.0", + "@jupyterlab/shortcuts-extension": "~5.2.0", + "@jupyterlab/statedb": "~4.4.0", + "@jupyterlab/statusbar": "~4.4.0", + "@jupyterlab/terminal": "~4.4.0", + "@jupyterlab/terminal-extension": "~4.4.0", + "@jupyterlab/theme-dark-extension": "~4.4.0", + "@jupyterlab/theme-dark-high-contrast-extension": "~4.4.0", + "@jupyterlab/theme-light-extension": "~4.4.0", + "@jupyterlab/toc-extension": "~6.4.0", + "@jupyterlab/tooltip": "~4.4.0", + "@jupyterlab/tooltip-extension": "~4.4.0", + "@jupyterlab/translation": "~4.4.0", + "@jupyterlab/translation-extension": "~4.4.0", + "@jupyterlab/ui-components": "~4.4.0", + "@jupyterlab/ui-components-extension": "~4.4.0", + "@jupyterlab/vega5-extension": "~4.4.0", "@lezer/common": "~1.2.1", "@lezer/highlight": "~1.2.0", "@lumino/algorithm": "~2.0.3", @@ -136,63 +136,63 @@ "@jupyter-notebook/tree": "^7.4.0-rc.0", "@jupyter-notebook/tree-extension": "^7.4.0-rc.0", "@jupyter-notebook/ui-components": "^7.4.0-rc.0", - "@jupyterlab/application-extension": "~4.4.0-rc.1", - "@jupyterlab/apputils-extension": "~4.4.0-rc.1", - "@jupyterlab/attachments": "~4.4.0-rc.1", - "@jupyterlab/cell-toolbar-extension": "~4.4.0-rc.1", - "@jupyterlab/celltags-extension": "~4.4.0-rc.1", - "@jupyterlab/codemirror": "~4.4.0-rc.1", - "@jupyterlab/codemirror-extension": "~4.4.0-rc.1", - "@jupyterlab/completer-extension": "~4.4.0-rc.1", - "@jupyterlab/console-extension": "~4.4.0-rc.1", - "@jupyterlab/coreutils": "~6.4.0-rc.1", - "@jupyterlab/csvviewer-extension": "~4.4.0-rc.1", - "@jupyterlab/debugger-extension": "~4.4.0-rc.1", - "@jupyterlab/docmanager-extension": "~4.4.0-rc.1", - "@jupyterlab/documentsearch-extension": "~4.4.0-rc.1", - "@jupyterlab/extensionmanager-extension": "~4.4.0-rc.1", - "@jupyterlab/filebrowser-extension": "~4.4.0-rc.1", - "@jupyterlab/fileeditor-extension": "~4.4.0-rc.1", - "@jupyterlab/help-extension": "~4.4.0-rc.1", - "@jupyterlab/htmlviewer-extension": "~4.4.0-rc.1", - "@jupyterlab/hub-extension": "~4.4.0-rc.1", - "@jupyterlab/imageviewer-extension": "~4.4.0-rc.1", - "@jupyterlab/javascript-extension": "~4.4.0-rc.1", - "@jupyterlab/json-extension": "~4.4.0-rc.1", - "@jupyterlab/logconsole-extension": "~4.4.0-rc.1", - "@jupyterlab/lsp": "~4.4.0-rc.1", - "@jupyterlab/lsp-extension": "~4.4.0-rc.1", - "@jupyterlab/mainmenu-extension": "~4.4.0-rc.1", - "@jupyterlab/markdownviewer-extension": "~4.4.0-rc.1", - "@jupyterlab/markedparser-extension": "~4.4.0-rc.1", - "@jupyterlab/mathjax-extension": "~4.4.0-rc.1", - "@jupyterlab/mermaid-extension": "~4.4.0-rc.1", - "@jupyterlab/metadataform-extension": "~4.4.0-rc.1", - "@jupyterlab/notebook-extension": "~4.4.0-rc.1", - "@jupyterlab/pdf-extension": "~4.4.0-rc.1", - "@jupyterlab/pluginmanager-extension": "~4.4.0-rc.1", - "@jupyterlab/running-extension": "~4.4.0-rc.1", - "@jupyterlab/services-extension": "~4.4.0-rc.1", - "@jupyterlab/settingeditor": "~4.4.0-rc.1", - "@jupyterlab/settingeditor-extension": "~4.4.0-rc.1", - "@jupyterlab/shortcuts-extension": "~5.2.0-rc.1", - "@jupyterlab/terminal-extension": "~4.4.0-rc.1", - "@jupyterlab/theme-dark-extension": "~4.4.0-rc.1", - "@jupyterlab/theme-dark-high-contrast-extension": "~4.4.0-rc.1", - "@jupyterlab/theme-light-extension": "~4.4.0-rc.1", - "@jupyterlab/toc-extension": "~6.4.0-rc.1", - "@jupyterlab/tooltip-extension": "~4.4.0-rc.1", - "@jupyterlab/translation-extension": "~4.4.0-rc.1", - "@jupyterlab/ui-components-extension": "~4.4.0-rc.1", - "@jupyterlab/vega5-extension": "~4.4.0-rc.1", + "@jupyterlab/application-extension": "~4.4.0", + "@jupyterlab/apputils-extension": "~4.4.0", + "@jupyterlab/attachments": "~4.4.0", + "@jupyterlab/cell-toolbar-extension": "~4.4.0", + "@jupyterlab/celltags-extension": "~4.4.0", + "@jupyterlab/codemirror": "~4.4.0", + "@jupyterlab/codemirror-extension": "~4.4.0", + "@jupyterlab/completer-extension": "~4.4.0", + "@jupyterlab/console-extension": "~4.4.0", + "@jupyterlab/coreutils": "~6.4.0", + "@jupyterlab/csvviewer-extension": "~4.4.0", + "@jupyterlab/debugger-extension": "~4.4.0", + "@jupyterlab/docmanager-extension": "~4.4.0", + "@jupyterlab/documentsearch-extension": "~4.4.0", + "@jupyterlab/extensionmanager-extension": "~4.4.0", + "@jupyterlab/filebrowser-extension": "~4.4.0", + "@jupyterlab/fileeditor-extension": "~4.4.0", + "@jupyterlab/help-extension": "~4.4.0", + "@jupyterlab/htmlviewer-extension": "~4.4.0", + "@jupyterlab/hub-extension": "~4.4.0", + "@jupyterlab/imageviewer-extension": "~4.4.0", + "@jupyterlab/javascript-extension": "~4.4.0", + "@jupyterlab/json-extension": "~4.4.0", + "@jupyterlab/logconsole-extension": "~4.4.0", + "@jupyterlab/lsp": "~4.4.0", + "@jupyterlab/lsp-extension": "~4.4.0", + "@jupyterlab/mainmenu-extension": "~4.4.0", + "@jupyterlab/markdownviewer-extension": "~4.4.0", + "@jupyterlab/markedparser-extension": "~4.4.0", + "@jupyterlab/mathjax-extension": "~4.4.0", + "@jupyterlab/mermaid-extension": "~4.4.0", + "@jupyterlab/metadataform-extension": "~4.4.0", + "@jupyterlab/notebook-extension": "~4.4.0", + "@jupyterlab/pdf-extension": "~4.4.0", + "@jupyterlab/pluginmanager-extension": "~4.4.0", + "@jupyterlab/running-extension": "~4.4.0", + "@jupyterlab/services-extension": "~4.4.0", + "@jupyterlab/settingeditor": "~4.4.0", + "@jupyterlab/settingeditor-extension": "~4.4.0", + "@jupyterlab/shortcuts-extension": "~5.2.0", + "@jupyterlab/terminal-extension": "~4.4.0", + "@jupyterlab/theme-dark-extension": "~4.4.0", + "@jupyterlab/theme-dark-high-contrast-extension": "~4.4.0", + "@jupyterlab/theme-light-extension": "~4.4.0", + "@jupyterlab/toc-extension": "~6.4.0", + "@jupyterlab/tooltip-extension": "~4.4.0", + "@jupyterlab/translation-extension": "~4.4.0", + "@jupyterlab/ui-components-extension": "~4.4.0", + "@jupyterlab/vega5-extension": "~4.4.0", "@lumino/coreutils": "~2.2.0", "react": "^18.2.0", "react-dom": "^18.2.0", "yjs": "^13.5.40" }, "devDependencies": { - "@jupyterlab/builder": "~4.4.0-rc.1", - "@jupyterlab/buildutils": "~4.4.0-rc.1", + "@jupyterlab/builder": "~4.4.0", + "@jupyterlab/buildutils": "~4.4.0", "@types/rimraf": "^3.0.2", "css-loader": "~5.0.1", "extra-watch-webpack-plugin": "^1.0.3", diff --git a/buildutils/package.json b/buildutils/package.json index 70520662e2..bb47277152 100644 --- a/buildutils/package.json +++ b/buildutils/package.json @@ -29,7 +29,7 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/buildutils": "~4.4.0-rc.1", + "@jupyterlab/buildutils": "~4.4.0", "commander": "^6.2.0", "fs-extra": "^9.1.0", "semver": "^7.6.3", diff --git a/package.json b/package.json index be4d6d2abb..326951d85e 100644 --- a/package.json +++ b/package.json @@ -51,7 +51,7 @@ "yjs": "^13.5.40" }, "devDependencies": { - "@jupyterlab/buildutils": "~4.4.0-rc.1", + "@jupyterlab/buildutils": "~4.4.0", "@typescript-eslint/eslint-plugin": "^5.55.0", "@typescript-eslint/parser": "^5.55.0", "eslint": "^8.36.0", diff --git a/packages/application-extension/package.json b/packages/application-extension/package.json index fb749d5952..85d2215325 100644 --- a/packages/application-extension/package.json +++ b/packages/application-extension/package.json @@ -40,17 +40,17 @@ "dependencies": { "@jupyter-notebook/application": "^7.4.0-rc.0", "@jupyter-notebook/ui-components": "^7.4.0-rc.0", - "@jupyterlab/application": "~4.4.0-rc.1", - "@jupyterlab/apputils": "~4.5.0-rc.1", - "@jupyterlab/codeeditor": "~4.4.0-rc.1", - "@jupyterlab/console": "~4.4.0-rc.1", - "@jupyterlab/coreutils": "~6.4.0-rc.1", - "@jupyterlab/docmanager": "~4.4.0-rc.1", - "@jupyterlab/docregistry": "~4.4.0-rc.1", - "@jupyterlab/mainmenu": "~4.4.0-rc.1", - "@jupyterlab/rendermime": "~4.4.0-rc.1", - "@jupyterlab/settingregistry": "~4.4.0-rc.1", - "@jupyterlab/translation": "~4.4.0-rc.1", + "@jupyterlab/application": "~4.4.0", + "@jupyterlab/apputils": "~4.5.0", + "@jupyterlab/codeeditor": "~4.4.0", + "@jupyterlab/console": "~4.4.0", + "@jupyterlab/coreutils": "~6.4.0", + "@jupyterlab/docmanager": "~4.4.0", + "@jupyterlab/docregistry": "~4.4.0", + "@jupyterlab/mainmenu": "~4.4.0", + "@jupyterlab/rendermime": "~4.4.0", + "@jupyterlab/settingregistry": "~4.4.0", + "@jupyterlab/translation": "~4.4.0", "@lumino/coreutils": "^2.2.0", "@lumino/disposable": "^2.1.3", "@lumino/widgets": "^2.5.0" diff --git a/packages/application/package.json b/packages/application/package.json index 288e0511cd..463bf77052 100644 --- a/packages/application/package.json +++ b/packages/application/package.json @@ -42,11 +42,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "~4.4.0-rc.1", - "@jupyterlab/coreutils": "~6.4.0-rc.1", - "@jupyterlab/docregistry": "~4.4.0-rc.1", - "@jupyterlab/rendermime-interfaces": "~3.12.0-rc.1", - "@jupyterlab/ui-components": "~4.4.0-rc.1", + "@jupyterlab/application": "~4.4.0", + "@jupyterlab/coreutils": "~6.4.0", + "@jupyterlab/docregistry": "~4.4.0", + "@jupyterlab/rendermime-interfaces": "~3.12.0", + "@jupyterlab/ui-components": "~4.4.0", "@lumino/algorithm": "^2.0.2", "@lumino/coreutils": "^2.2.0", "@lumino/messaging": "^2.0.2", diff --git a/packages/console-extension/package.json b/packages/console-extension/package.json index b3e2597c68..15e06e9cb4 100644 --- a/packages/console-extension/package.json +++ b/packages/console-extension/package.json @@ -39,9 +39,9 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-rc.0", - "@jupyterlab/application": "~4.4.0-rc.1", - "@jupyterlab/console": "~4.4.0-rc.1", - "@jupyterlab/coreutils": "~6.4.0-rc.1", + "@jupyterlab/application": "~4.4.0", + "@jupyterlab/console": "~4.4.0", + "@jupyterlab/coreutils": "~6.4.0", "@lumino/algorithm": "^2.0.2" }, "devDependencies": { diff --git a/packages/docmanager-extension/package.json b/packages/docmanager-extension/package.json index dd51beedcc..71caaa93c7 100644 --- a/packages/docmanager-extension/package.json +++ b/packages/docmanager-extension/package.json @@ -39,11 +39,11 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-rc.0", - "@jupyterlab/application": "~4.4.0-rc.1", - "@jupyterlab/coreutils": "~6.4.0-rc.1", - "@jupyterlab/docmanager": "~4.4.0-rc.1", - "@jupyterlab/docregistry": "~4.4.0-rc.1", - "@jupyterlab/services": "~7.4.0-rc.1", + "@jupyterlab/application": "~4.4.0", + "@jupyterlab/coreutils": "~6.4.0", + "@jupyterlab/docmanager": "~4.4.0", + "@jupyterlab/docregistry": "~4.4.0", + "@jupyterlab/services": "~7.4.0", "@lumino/algorithm": "^2.0.2", "@lumino/signaling": "^2.1.3" }, diff --git a/packages/documentsearch-extension/package.json b/packages/documentsearch-extension/package.json index dd516cdfc6..234b59abee 100644 --- a/packages/documentsearch-extension/package.json +++ b/packages/documentsearch-extension/package.json @@ -39,8 +39,8 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-rc.0", - "@jupyterlab/application": "~4.4.0-rc.1", - "@jupyterlab/documentsearch": "~4.4.0-rc.1", + "@jupyterlab/application": "~4.4.0", + "@jupyterlab/documentsearch": "~4.4.0", "@lumino/widgets": "^2.5.0" }, "devDependencies": { diff --git a/packages/help-extension/package.json b/packages/help-extension/package.json index c7d67bb14a..38150a94a7 100644 --- a/packages/help-extension/package.json +++ b/packages/help-extension/package.json @@ -39,10 +39,10 @@ }, "dependencies": { "@jupyter-notebook/ui-components": "^7.4.0-rc.0", - "@jupyterlab/application": "~4.4.0-rc.1", - "@jupyterlab/apputils": "~4.5.0-rc.1", - "@jupyterlab/mainmenu": "~4.4.0-rc.1", - "@jupyterlab/translation": "~4.4.0-rc.1", + "@jupyterlab/application": "~4.4.0", + "@jupyterlab/apputils": "~4.5.0", + "@jupyterlab/mainmenu": "~4.4.0", + "@jupyterlab/translation": "~4.4.0", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/packages/lab-extension/package.json b/packages/lab-extension/package.json index 085d69ded2..ef00b1af13 100644 --- a/packages/lab-extension/package.json +++ b/packages/lab-extension/package.json @@ -44,18 +44,18 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-rc.0", - "@jupyterlab/application": "~4.4.0-rc.1", - "@jupyterlab/apputils": "~4.5.0-rc.1", - "@jupyterlab/coreutils": "~6.4.0-rc.1", - "@jupyterlab/docregistry": "~4.4.0-rc.1", - "@jupyterlab/notebook": "~4.4.0-rc.1", - "@jupyterlab/translation": "~4.4.0-rc.1", - "@jupyterlab/ui-components": "~4.4.0-rc.1", + "@jupyterlab/application": "~4.4.0", + "@jupyterlab/apputils": "~4.5.0", + "@jupyterlab/coreutils": "~6.4.0", + "@jupyterlab/docregistry": "~4.4.0", + "@jupyterlab/notebook": "~4.4.0", + "@jupyterlab/translation": "~4.4.0", + "@jupyterlab/ui-components": "~4.4.0", "@lumino/commands": "^2.3.1", "@lumino/disposable": "^2.1.3" }, "devDependencies": { - "@jupyterlab/builder": "~4.4.0-rc.1", + "@jupyterlab/builder": "~4.4.0", "rimraf": "^3.0.2", "typescript": "~5.5.4" }, diff --git a/packages/notebook-extension/package.json b/packages/notebook-extension/package.json index b1c4fa6948..d89b85f84d 100644 --- a/packages/notebook-extension/package.json +++ b/packages/notebook-extension/package.json @@ -39,13 +39,13 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-rc.0", - "@jupyterlab/application": "~4.4.0-rc.1", - "@jupyterlab/apputils": "~4.5.0-rc.1", - "@jupyterlab/cells": "~4.4.0-rc.1", - "@jupyterlab/docmanager": "~4.4.0-rc.1", - "@jupyterlab/notebook": "~4.4.0-rc.1", - "@jupyterlab/settingregistry": "~4.4.0-rc.1", - "@jupyterlab/translation": "~4.4.0-rc.1", + "@jupyterlab/application": "~4.4.0", + "@jupyterlab/apputils": "~4.5.0", + "@jupyterlab/cells": "~4.4.0", + "@jupyterlab/docmanager": "~4.4.0", + "@jupyterlab/notebook": "~4.4.0", + "@jupyterlab/settingregistry": "~4.4.0", + "@jupyterlab/translation": "~4.4.0", "@lumino/polling": "^2.1.3", "@lumino/widgets": "^2.5.0", "react": "^18.2.0", diff --git a/packages/terminal-extension/package.json b/packages/terminal-extension/package.json index 7e364caa3a..211fb570a1 100644 --- a/packages/terminal-extension/package.json +++ b/packages/terminal-extension/package.json @@ -39,9 +39,9 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-rc.0", - "@jupyterlab/application": "~4.4.0-rc.1", - "@jupyterlab/coreutils": "~6.4.0-rc.1", - "@jupyterlab/terminal": "~4.4.0-rc.1", + "@jupyterlab/application": "~4.4.0", + "@jupyterlab/coreutils": "~6.4.0", + "@jupyterlab/terminal": "~4.4.0", "@lumino/algorithm": "^2.0.2" }, "devDependencies": { diff --git a/packages/tree-extension/package.json b/packages/tree-extension/package.json index 03be0b77db..137fc55986 100644 --- a/packages/tree-extension/package.json +++ b/packages/tree-extension/package.json @@ -40,18 +40,18 @@ "dependencies": { "@jupyter-notebook/application": "^7.4.0-rc.0", "@jupyter-notebook/tree": "^7.4.0-rc.0", - "@jupyterlab/application": "~4.4.0-rc.1", - "@jupyterlab/apputils": "~4.5.0-rc.1", - "@jupyterlab/coreutils": "~6.4.0-rc.1", - "@jupyterlab/docmanager": "~4.4.0-rc.1", - "@jupyterlab/filebrowser": "~4.4.0-rc.1", - "@jupyterlab/mainmenu": "~4.4.0-rc.1", - "@jupyterlab/services": "~7.4.0-rc.1", - "@jupyterlab/settingeditor": "~4.4.0-rc.1", - "@jupyterlab/settingregistry": "~4.4.0-rc.1", - "@jupyterlab/statedb": "~4.4.0-rc.1", - "@jupyterlab/translation": "~4.4.0-rc.1", - "@jupyterlab/ui-components": "~4.4.0-rc.1", + "@jupyterlab/application": "~4.4.0", + "@jupyterlab/apputils": "~4.5.0", + "@jupyterlab/coreutils": "~6.4.0", + "@jupyterlab/docmanager": "~4.4.0", + "@jupyterlab/filebrowser": "~4.4.0", + "@jupyterlab/mainmenu": "~4.4.0", + "@jupyterlab/services": "~7.4.0", + "@jupyterlab/settingeditor": "~4.4.0", + "@jupyterlab/settingregistry": "~4.4.0", + "@jupyterlab/statedb": "~4.4.0", + "@jupyterlab/translation": "~4.4.0", + "@jupyterlab/ui-components": "~4.4.0", "@lumino/algorithm": "^2.0.2", "@lumino/commands": "^2.3.1", "@lumino/widgets": "^2.5.0" diff --git a/packages/tree/package.json b/packages/tree/package.json index 0132769e32..1af68744b4 100644 --- a/packages/tree/package.json +++ b/packages/tree/package.json @@ -39,17 +39,17 @@ }, "dependencies": { "@jupyter-notebook/application": "^7.4.0-rc.0", - "@jupyterlab/application": "~4.4.0-rc.1", - "@jupyterlab/apputils": "~4.5.0-rc.1", - "@jupyterlab/coreutils": "~6.4.0-rc.1", - "@jupyterlab/docmanager": "~4.4.0-rc.1", - "@jupyterlab/filebrowser": "~4.4.0-rc.1", - "@jupyterlab/mainmenu": "~4.4.0-rc.1", - "@jupyterlab/services": "~7.4.0-rc.1", - "@jupyterlab/settingregistry": "~4.4.0-rc.1", - "@jupyterlab/statedb": "~4.4.0-rc.1", - "@jupyterlab/translation": "~4.4.0-rc.1", - "@jupyterlab/ui-components": "~4.4.0-rc.1", + "@jupyterlab/application": "~4.4.0", + "@jupyterlab/apputils": "~4.5.0", + "@jupyterlab/coreutils": "~6.4.0", + "@jupyterlab/docmanager": "~4.4.0", + "@jupyterlab/filebrowser": "~4.4.0", + "@jupyterlab/mainmenu": "~4.4.0", + "@jupyterlab/services": "~7.4.0", + "@jupyterlab/settingregistry": "~4.4.0", + "@jupyterlab/statedb": "~4.4.0", + "@jupyterlab/translation": "~4.4.0", + "@jupyterlab/ui-components": "~4.4.0", "@lumino/algorithm": "^2.0.2", "@lumino/commands": "^2.3.1", "@lumino/coreutils": "^2.2.0", diff --git a/packages/ui-components/package.json b/packages/ui-components/package.json index 5ff0a4e323..5ad9b121eb 100644 --- a/packages/ui-components/package.json +++ b/packages/ui-components/package.json @@ -42,7 +42,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/ui-components": "~4.4.0-rc.1", + "@jupyterlab/ui-components": "~4.4.0", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/ui-tests/package.json b/ui-tests/package.json index 6818f91342..72e3fb865d 100644 --- a/ui-tests/package.json +++ b/ui-tests/package.json @@ -15,7 +15,7 @@ "test:update": "playwright test --update-snapshots" }, "dependencies": { - "@jupyterlab/galata": "~5.4.0-rc.1", + "@jupyterlab/galata": "~5.4.0", "@playwright/test": "~1.51.0", "rimraf": "^3.0.2" } diff --git a/ui-tests/yarn.lock b/ui-tests/yarn.lock index be41d74e35..17698c6017 100644 --- a/ui-tests/yarn.lock +++ b/ui-tests/yarn.lock @@ -278,7 +278,7 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyter-notebook/ui-tests@workspace:." dependencies: - "@jupyterlab/galata": ~5.4.0-rc.1 + "@jupyterlab/galata": ~5.4.0 "@playwright/test": ~1.51.0 rimraf: ^3.0.2 languageName: unknown @@ -320,20 +320,20 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/application@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/application@npm:4.4.0-rc.1" +"@jupyterlab/application@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/application@npm:4.4.0" dependencies: "@fortawesome/fontawesome-free": ^5.12.0 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/statedb": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/docregistry": ^4.4.0 + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/statedb": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/application": ^2.4.3 "@lumino/commands": ^2.3.2 @@ -344,23 +344,23 @@ __metadata: "@lumino/properties": ^2.0.3 "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 - checksum: 1feaa59a203d0627020282906f33c3d482e8d0c9c6dc54f93c76e6eaddabe66670b8431ccebb45957ec2ad9791007e6f0e2a9975314e0786d602fe4f00c9c0b2 + checksum: 655acf6571474e52dddcd7beb60159be8aa6e6dc11315f458fe8559cebd3790e853925a1de24fdcbcea96d92c3bfed0a7fe0ca5b53ac8f9b65fd1728307a43a3 languageName: node linkType: hard -"@jupyterlab/apputils@npm:^4.5.0-rc.1": - version: 4.5.0-rc.1 - resolution: "@jupyterlab/apputils@npm:4.5.0-rc.1" - dependencies: - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/observables": ^5.4.0-rc.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/statedb": ^4.4.0-rc.1 - "@jupyterlab/statusbar": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 +"@jupyterlab/apputils@npm:^4.5.0": + version: 4.5.0 + resolution: "@jupyterlab/apputils@npm:4.5.0" + dependencies: + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/observables": ^5.4.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/statedb": ^4.4.0 + "@jupyterlab/statusbar": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/commands": ^2.3.2 "@lumino/coreutils": ^2.2.1 @@ -373,46 +373,46 @@ __metadata: "@types/react": ^18.0.26 react: ^18.2.0 sanitize-html: ~2.12.1 - checksum: 62765932efb83625ce251ddb2a4d43476ced1d2b3a656a7cea2f3f284502461dae49b7eeb33bff21d8f6612abfa52115b5b3b1e61c81bcf606afcf9d6d973ea2 + checksum: afca456beae128481d1bc58b55323600ac40b72540c1724c29cd9191fa0a383fe47ea0da3c0b3075264055e0bee8955b9989d3935ba5105618ddd85b2d4089ec languageName: node linkType: hard -"@jupyterlab/attachments@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/attachments@npm:4.4.0-rc.1" +"@jupyterlab/attachments@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/attachments@npm:4.4.0" dependencies: - "@jupyterlab/nbformat": ^4.4.0-rc.1 - "@jupyterlab/observables": ^5.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + "@jupyterlab/nbformat": ^4.4.0 + "@jupyterlab/observables": ^5.4.0 + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0 "@lumino/disposable": ^2.1.4 "@lumino/signaling": ^2.1.4 - checksum: 277f79b7499cd021832ec88e36395e5c3f9386c71b4c5c38b042d8d0a9c46a8ef2fc7b916b233d0c177f54dbb016b0d6f044f9c48102763f500b0e3a250c8579 + checksum: 6e417fa40f1c8e9f7358664a9f0d7d315b13312caba971a93bf38fbb702dae0a2ec7f3fa6c8197d1d895eb08722fe3497d16357d9bff7561cb03126632cf07cb languageName: node linkType: hard -"@jupyterlab/cells@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/cells@npm:4.4.0-rc.1" +"@jupyterlab/cells@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/cells@npm:4.4.0" dependencies: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/attachments": ^4.4.0-rc.1 - "@jupyterlab/codeeditor": ^4.4.0-rc.1 - "@jupyterlab/codemirror": ^4.4.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/documentsearch": ^4.4.0-rc.1 - "@jupyterlab/filebrowser": ^4.4.0-rc.1 - "@jupyterlab/nbformat": ^4.4.0-rc.1 - "@jupyterlab/observables": ^5.4.0-rc.1 - "@jupyterlab/outputarea": ^4.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/toc": ^6.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/attachments": ^4.4.0 + "@jupyterlab/codeeditor": ^4.4.0 + "@jupyterlab/codemirror": ^4.4.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/documentsearch": ^4.4.0 + "@jupyterlab/filebrowser": ^4.4.0 + "@jupyterlab/nbformat": ^4.4.0 + "@jupyterlab/observables": ^5.4.0 + "@jupyterlab/outputarea": ^4.4.0 + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/toc": ^6.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/coreutils": ^2.2.1 "@lumino/domutils": ^2.0.3 @@ -423,23 +423,23 @@ __metadata: "@lumino/virtualdom": ^2.0.3 "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 5302104f2e467990247b6da3b9f155b975b11b5306b97f21a71f988e0ceb6193865c47f77f8050ef23eec3ba3d5d96cc514c9845ec10e884f826642ee8536a25 + checksum: bc1a5250d0f084fc85cf2304924e5917e07a2065e436f6c39062a3fd3fa5eed91f12a5c68251114cc056914d0b7703280cbb023707a0217e5c7dce34599f263a languageName: node linkType: hard -"@jupyterlab/codeeditor@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/codeeditor@npm:4.4.0-rc.1" +"@jupyterlab/codeeditor@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/codeeditor@npm:4.4.0" dependencies: "@codemirror/state": ^6.5.0 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/nbformat": ^4.4.0-rc.1 - "@jupyterlab/observables": ^5.4.0-rc.1 - "@jupyterlab/statusbar": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/nbformat": ^4.4.0 + "@jupyterlab/observables": ^5.4.0 + "@jupyterlab/statusbar": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 "@lumino/dragdrop": ^2.1.6 @@ -447,13 +447,13 @@ __metadata: "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 4c79f06ea5f3e65eec610c74817ed0eba2d6e7d7f58327021b58559bad291fd7ddd5a3388ea5b0bd8cb0614ec5d82d941633f0e0aed2348840ffa2c746bca9eb + checksum: a8015b42e7626fe2a082caf59372777fb0cb6484d5075beaa1f56b2e81b36f2f818eb3dbd6e143eec4d490c2f1e4bb1e11569135c66487646a406608389a37ad languageName: node linkType: hard -"@jupyterlab/codemirror@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/codemirror@npm:4.4.0-rc.1" +"@jupyterlab/codemirror@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/codemirror@npm:4.4.0" dependencies: "@codemirror/autocomplete": ^6.18.3 "@codemirror/commands": ^6.7.1 @@ -476,11 +476,11 @@ __metadata: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/codeeditor": ^4.4.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/documentsearch": ^4.4.0-rc.1 - "@jupyterlab/nbformat": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/codeeditor": ^4.4.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/documentsearch": ^4.4.0 + "@jupyterlab/nbformat": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 "@lezer/common": ^1.2.1 "@lezer/generator": ^1.7.0 "@lezer/highlight": ^1.2.0 @@ -489,38 +489,38 @@ __metadata: "@lumino/disposable": ^2.1.4 "@lumino/signaling": ^2.1.4 yjs: ^13.5.40 - checksum: 9c0e3b938837181c763130025462f66b45dbb0fad7ef47fd4d6497d4589cdd08cbcd635413bcfe114b94b5228e84366885ad9ec8d28dbd0422e5ebe70c815b06 + checksum: d4f7db1d641ce4fa46b7a8db122604a9cf61df0ce417330337ae7ac04f358e2dac3bd66aad85477f1eb08bff50861c15027c42fd60e9e5c6d3c68ba3051d74ef languageName: node linkType: hard -"@jupyterlab/console@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/console@npm:4.4.0-rc.1" +"@jupyterlab/console@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/console@npm:4.4.0" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/cells": ^4.4.0-rc.1 - "@jupyterlab/codeeditor": ^4.4.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/nbformat": ^4.4.0-rc.1 - "@jupyterlab/observables": ^5.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/cells": ^4.4.0 + "@jupyterlab/codeeditor": ^4.4.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/nbformat": ^4.4.0 + "@jupyterlab/observables": ^5.4.0 + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 "@lumino/dragdrop": ^2.1.6 "@lumino/messaging": ^2.0.3 "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 - checksum: 169152c0f1f6cb044c711278e2948bf95fae36877d9339240a5fbdb1fa0f030e0f9bef1323f4200cc62760dc009fd8c3ab0cd99e44dbac69564301b3d1dbf8c2 + checksum: 4980bc3b53bef8e24ebb61ebe551915a7a4d78586ec7e70195ad9aa90a9be7876985e30aa9d27f6f02ffe13afc29862e247990e1d4b989e72086f02d0d464499 languageName: node linkType: hard -"@jupyterlab/coreutils@npm:^6.4.0-rc.1": - version: 6.4.0-rc.1 - resolution: "@jupyterlab/coreutils@npm:6.4.0-rc.1" +"@jupyterlab/coreutils@npm:^6.4.0": + version: 6.4.0 + resolution: "@jupyterlab/coreutils@npm:6.4.0" dependencies: "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 @@ -528,33 +528,33 @@ __metadata: minimist: ~1.2.0 path-browserify: ^1.0.0 url-parse: ~1.5.4 - checksum: 1bd469a1af2ba409f2be12b8a82adea57f2781c9d6e3d7e10e784636a15dd523e37dcf5500bab1d47b3a63edadecfc46119f73f39625a06115f0c01c23ffd68e + checksum: d8306d05f058a6d387cdf8ba311bdfdc6882089d55f51c710a189119e5a8c2bdd683481cb341c3a422e23f33e361f7a32a793b8ad8342479f6c0790f95b20380 languageName: node linkType: hard -"@jupyterlab/debugger@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/debugger@npm:4.4.0-rc.1" +"@jupyterlab/debugger@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/debugger@npm:4.4.0" dependencies: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/react-components": ^0.16.6 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/cells": ^4.4.0-rc.1 - "@jupyterlab/codeeditor": ^4.4.0-rc.1 - "@jupyterlab/codemirror": ^4.4.0-rc.1 - "@jupyterlab/console": ^4.4.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 - "@jupyterlab/fileeditor": ^4.4.0-rc.1 - "@jupyterlab/notebook": ^4.4.0-rc.1 - "@jupyterlab/observables": ^5.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/cells": ^4.4.0 + "@jupyterlab/codeeditor": ^4.4.0 + "@jupyterlab/codemirror": ^4.4.0 + "@jupyterlab/console": ^4.4.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/docregistry": ^4.4.0 + "@jupyterlab/fileeditor": ^4.4.0 + "@jupyterlab/notebook": ^4.4.0 + "@jupyterlab/observables": ^5.4.0 + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/commands": ^2.3.2 "@lumino/coreutils": ^2.2.1 @@ -566,22 +566,22 @@ __metadata: "@lumino/widgets": ^2.7.0 "@vscode/debugprotocol": ^1.51.0 react: ^18.2.0 - checksum: e7f331dda8c82c29a04de9cb9fecc09bf9f1a8439f7da0d510b7ca40bbd6a8018c20486810e052081eb9bde108c2868a01d0db3c900e1e4ed1f53206abb62912 + checksum: 56d8aaff0b6174ad8ff3e4c8442201bca26bead3c223e4d16c80d0b7bd2d181cd71859b03f6ea5cb20b4434b13148783467374418e69526f424ac1d7bb701082 languageName: node linkType: hard -"@jupyterlab/docmanager@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/docmanager@npm:4.4.0-rc.1" +"@jupyterlab/docmanager@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/docmanager@npm:4.4.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/statedb": ^4.4.0-rc.1 - "@jupyterlab/statusbar": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/docregistry": ^4.4.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/statedb": ^4.4.0 + "@jupyterlab/statusbar": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 @@ -591,24 +591,24 @@ __metadata: "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 1e07946f362d8ad044c1afd549a62147f3fd94dfafa4d79c89aba659adc5db8b3ebcf25cd9a9c3bbba0dbfeab030c98815e042e420bb403e30210137add125d2 + checksum: cbbc0df4ae70a892c1da337f201fa7a3c91dc3591e35842ca497f5c31b7c62e02a08105c5201c0b0ecc6c978d7e7cc8321be16dbec08343409ffeef17a3182d8 languageName: node linkType: hard -"@jupyterlab/docregistry@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/docregistry@npm:4.4.0-rc.1" +"@jupyterlab/docregistry@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/docregistry@npm:4.4.0" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/codeeditor": ^4.4.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/observables": ^5.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/codeeditor": ^4.4.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/observables": ^5.4.0 + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 @@ -617,17 +617,17 @@ __metadata: "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: eea0e455c63d09624beb5738835ef432c093fde2176db953a30dd00ce9066c65ca80a335fad77d2f81ba491298bf36d28337d37de53c4653ca4489207c0500ad + checksum: 32f747a6aed172157ca6bc6d9be91bc72266f5b0eb1ea316767c014993f498db42bd5c362ddd82d7de895965f9ddd5fa39fdeb432ef0534955ff30d6d673c63c languageName: node linkType: hard -"@jupyterlab/documentsearch@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/documentsearch@npm:4.4.0-rc.1" +"@jupyterlab/documentsearch@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/documentsearch@npm:4.4.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/commands": ^2.3.2 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 @@ -636,23 +636,23 @@ __metadata: "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: e5da695174e79a4484dd6fcdad087f49919e1cafbcd2d0b7338e42a841e0dbb13309317c174ab787fe70c067218f529d41fc7e15b85524bc00a6a24da62a09b5 + checksum: 57d4f02e517cd98dc1d6b28a203b01ab09db601d0ca12097db508226267c88db802c94349b399bbdf56542155d105d0ac0e0f4a98a6bee9ced39642fd22c4d31 languageName: node linkType: hard -"@jupyterlab/filebrowser@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/filebrowser@npm:4.4.0-rc.1" +"@jupyterlab/filebrowser@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/filebrowser@npm:4.4.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/docmanager": ^4.4.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/statedb": ^4.4.0-rc.1 - "@jupyterlab/statusbar": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/docmanager": ^4.4.0 + "@jupyterlab/docregistry": ^4.4.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/statedb": ^4.4.0 + "@jupyterlab/statusbar": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 @@ -664,49 +664,49 @@ __metadata: "@lumino/virtualdom": ^2.0.3 "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 31ba501c3bab8a8ff54d673e693336486604a165b64f0255687f9d833c31877b4fa1cd73e1ef92d3ed9396ae740fe259b4843011e07efe9b2085fff207190130 + checksum: 9fc207d33a0cdcbd916acf5b5ff94ef4d89443073a90bedd36b8ab16b82f6bd0d3463a167e07b82fac9575cbb00f54cb899536b271d7f0864dcb362b732fb9fb languageName: node linkType: hard -"@jupyterlab/fileeditor@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/fileeditor@npm:4.4.0-rc.1" +"@jupyterlab/fileeditor@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/fileeditor@npm:4.4.0" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/codeeditor": ^4.4.0-rc.1 - "@jupyterlab/codemirror": ^4.4.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 - "@jupyterlab/documentsearch": ^4.4.0-rc.1 - "@jupyterlab/lsp": ^4.4.0-rc.1 - "@jupyterlab/statusbar": ^4.4.0-rc.1 - "@jupyterlab/toc": ^6.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/codeeditor": ^4.4.0 + "@jupyterlab/codemirror": ^4.4.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/docregistry": ^4.4.0 + "@jupyterlab/documentsearch": ^4.4.0 + "@jupyterlab/lsp": ^4.4.0 + "@jupyterlab/statusbar": ^4.4.0 + "@jupyterlab/toc": ^6.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/commands": ^2.3.2 "@lumino/coreutils": ^2.2.1 "@lumino/messaging": ^2.0.3 "@lumino/widgets": ^2.7.0 react: ^18.2.0 regexp-match-indices: ^1.0.2 - checksum: 761d5eec861bede4a3898489b75b4cec5ce03d55c576bc12448f900ebe449bf90e5cf17c8a41bb130a2d83cb999bf1a3e0745ddf211a16f78252b685b88ce308 + checksum: 346663d54a9d2feb1a80e279deb4a62e19914990d98b971502d195161b4e34d963fd2abfcf8f5c75a17a2e0ed474ac53d7065698dc1f0c90df329094cabc4c0c languageName: node linkType: hard -"@jupyterlab/galata@npm:~5.4.0-rc.1": - version: 5.4.0-rc.1 - resolution: "@jupyterlab/galata@npm:5.4.0-rc.1" +"@jupyterlab/galata@npm:~5.4.0": + version: 5.4.0 + resolution: "@jupyterlab/galata@npm:5.4.0" dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/debugger": ^4.4.0-rc.1 - "@jupyterlab/docmanager": ^4.4.0-rc.1 - "@jupyterlab/nbformat": ^4.4.0-rc.1 - "@jupyterlab/notebook": ^4.4.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/debugger": ^4.4.0 + "@jupyterlab/docmanager": ^4.4.0 + "@jupyterlab/nbformat": ^4.4.0 + "@jupyterlab/notebook": ^4.4.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/settingregistry": ^4.4.0 "@lumino/coreutils": ^2.2.1 "@playwright/test": ^1.51.0 "@stdlib/stats": ~0.0.13 @@ -717,21 +717,21 @@ __metadata: vega: ^5.20.0 vega-lite: ^5.6.1 vega-statistics: ^1.7.9 - checksum: aec0a83bdff9bd1c8e501a7340ce4ef369dae6300e9ff0271a064227c116a75b3f0f0844ebff365b2054a0037b6f5ceed903460c8d938fc6272f4c5dbd051ce1 + checksum: 4728ccdc88803961fdc73b403a0b3bbe1d389d1c7676d5d6b79ce861a92d364d25c2dcbfabcd64fe1a7840921c6b926cca2b5492b90f1a47da4e7d6d4e936af6 languageName: node linkType: hard -"@jupyterlab/lsp@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/lsp@npm:4.4.0-rc.1" +"@jupyterlab/lsp@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/lsp@npm:4.4.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/codeeditor": ^4.4.0-rc.1 - "@jupyterlab/codemirror": ^4.4.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/codeeditor": ^4.4.0 + "@jupyterlab/codemirror": ^4.4.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/docregistry": ^4.4.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/translation": ^4.4.0 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 "@lumino/signaling": ^2.1.4 @@ -740,50 +740,41 @@ __metadata: vscode-jsonrpc: ^6.0.0 vscode-languageserver-protocol: ^3.17.0 vscode-ws-jsonrpc: ~1.0.2 - checksum: da3edacdb16cfa01e7a078f65f00ff168e6f0b42a28798422483f77df0130972f233058d9877322b44f06d1658693dbff82c58acde74095f67e62bbad43d64cc - languageName: node - linkType: hard - -"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0": - version: 4.2.0 - resolution: "@jupyterlab/nbformat@npm:4.2.0" - dependencies: - "@lumino/coreutils": "npm:^2.1.2" - checksum: adecadcb63de48f09aeb54eebfed8b77ab322c478fd903001e09780a01e7cf68f93716a2598631d4426d8ad9d3dc6349e8892db12575f74c8daea33f63b9c111 + checksum: 0b81665dc4da42572d2d890c327291f1413bf3259d10fef0588d793c0cd96360f481c6f99e8d8c0c1e16046f0f2b790dd635ba0339f4cd7c2da38b3056e3c5dc languageName: node linkType: hard -"@jupyterlab/nbformat@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/nbformat@npm:4.4.0-rc.1" +"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/nbformat@npm:4.4.0" dependencies: "@lumino/coreutils": ^2.2.1 - checksum: efb7489320c1dd3b192de3b2c96e3642c13c62b9eba18efe91f5d8fdf59281b6357d0b7c9bfcba18c3ca1c3da811f2618c1e2aee8ce1ff44d28429f5f15f6aee + checksum: b9d5c12e339f67334f4240e978c45078b588904d31571fc8cc4cb1667ad06442890481575e86a6d4290a6bdecf57500bc69fd1f3ca32007f1c87718ad55333a7 languageName: node linkType: hard -"@jupyterlab/notebook@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/notebook@npm:4.4.0-rc.1" +"@jupyterlab/notebook@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/notebook@npm:4.4.0" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/cells": ^4.4.0-rc.1 - "@jupyterlab/codeeditor": ^4.4.0-rc.1 - "@jupyterlab/codemirror": ^4.4.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 - "@jupyterlab/documentsearch": ^4.4.0-rc.1 - "@jupyterlab/lsp": ^4.4.0-rc.1 - "@jupyterlab/nbformat": ^4.4.0-rc.1 - "@jupyterlab/observables": ^5.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/statusbar": ^4.4.0-rc.1 - "@jupyterlab/toc": ^6.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/cells": ^4.4.0 + "@jupyterlab/codeeditor": ^4.4.0 + "@jupyterlab/codemirror": ^4.4.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/docregistry": ^4.4.0 + "@jupyterlab/documentsearch": ^4.4.0 + "@jupyterlab/lsp": ^4.4.0 + "@jupyterlab/nbformat": ^4.4.0 + "@jupyterlab/observables": ^5.4.0 + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/statusbar": ^4.4.0 + "@jupyterlab/toc": ^6.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 @@ -796,34 +787,34 @@ __metadata: "@lumino/virtualdom": ^2.0.3 "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: a7c0930de5bbfbecb5a047bdbb6987ea7353978f3979952b78dba3f02266679e494d3131c873b5e841c8c2cd8bcfa42d62d4d064b0c158edb37a66362aa1c227 + checksum: f0d364594afa4d9ff416d657d549c51284ef555279bf59f9020afd6aa58930c4f5b965a623371c34b7eb5da02d3be7a34c0c09f0c67d121c68f255c23eae59bb languageName: node linkType: hard -"@jupyterlab/observables@npm:^5.4.0-rc.1": - version: 5.4.0-rc.1 - resolution: "@jupyterlab/observables@npm:5.4.0-rc.1" +"@jupyterlab/observables@npm:^5.4.0": + version: 5.4.0 + resolution: "@jupyterlab/observables@npm:5.4.0" dependencies: "@lumino/algorithm": ^2.0.3 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 "@lumino/messaging": ^2.0.3 "@lumino/signaling": ^2.1.4 - checksum: eda86553394af93ca3f34ad2ac70c071d7fd1fb11c343b6204cbdddf7994e70f3a2299b8def8461fd66539421d6b1d024677a1d6009f8174ec9ff867a84e0929 + checksum: 4958117211330fd054fba8de279d7f521c78d9ebe3c23dd4ed5c53ab3a3360b53c8c04244f653092bd4f8fb7e2ef5a4f2f9c8a8106dab9d29ff4425154b2a4b5 languageName: node linkType: hard -"@jupyterlab/outputarea@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/outputarea@npm:4.4.0-rc.1" +"@jupyterlab/outputarea@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/outputarea@npm:4.4.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/nbformat": ^4.4.0-rc.1 - "@jupyterlab/observables": ^5.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/nbformat": ^4.4.0 + "@jupyterlab/observables": ^5.4.0 + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/translation": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 @@ -831,65 +822,65 @@ __metadata: "@lumino/properties": ^2.0.3 "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 - checksum: 8285ff4acd2281909c427dd086c209ca02eb1ca3aced50bcbebd415751209e081d30e1ad95906f156d3b9e87265d1a3a2ec20873f15eb24144f28d84fb0d41a5 + checksum: d1ee8c3f19674d437b397008bee222241e7fcc6e37af811609d738dda3bb0351af8be350038fe0b676c6e6c18d5f628abb9aed373cb3f562059945a9ff8eb55d languageName: node linkType: hard -"@jupyterlab/rendermime-interfaces@npm:^3.12.0-rc.1": - version: 3.12.0-rc.1 - resolution: "@jupyterlab/rendermime-interfaces@npm:3.12.0-rc.1" +"@jupyterlab/rendermime-interfaces@npm:^3.12.0": + version: 3.12.0 + resolution: "@jupyterlab/rendermime-interfaces@npm:3.12.0" dependencies: "@lumino/coreutils": ^1.11.0 || ^2.2.1 "@lumino/widgets": ^1.37.2 || ^2.7.0 - checksum: 4f1f8158cc35bf8ebabdd9f1aea0c98c6b9f47d5a5a1bffd0d4b7bc76350702c7f171622199986b1d3f31b2fd3556ceded7e587d5e0db965f222b48c8ac8910e + checksum: e9a5adfbcb9a50d5f9324f5930d0007dbc3a8fb205af71570e56f5037479f234825b79f266179708d53030f9302d066291c9e1af7945e70d25b865057954b4a9 languageName: node linkType: hard -"@jupyterlab/rendermime@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/rendermime@npm:4.4.0-rc.1" +"@jupyterlab/rendermime@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/rendermime@npm:4.4.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/nbformat": ^4.4.0-rc.1 - "@jupyterlab/observables": ^5.4.0-rc.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/nbformat": ^4.4.0 + "@jupyterlab/observables": ^5.4.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/translation": ^4.4.0 "@lumino/coreutils": ^2.2.1 "@lumino/messaging": ^2.0.3 "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 lodash.escape: ^4.0.1 - checksum: e77026755af411358f3b47c8c7ef8221cb435c810aaa0eaf3d8b57b8e4e9bd79abc2b15688d26de69cad15a5d8b23e41c2a5ba871eb4e2a5f6d8254a51618745 + checksum: ae650501a65e082bfe54041292dfd2c762378ff06a50971a680af6d42310029ea1b3d72a4a2e4e261e055526d412e53b172ce23d5e6c7437cacfc9a41d016272 languageName: node linkType: hard -"@jupyterlab/services@npm:^7.4.0-rc.1": - version: 7.4.0-rc.1 - resolution: "@jupyterlab/services@npm:7.4.0-rc.1" +"@jupyterlab/services@npm:^7.4.0": + version: 7.4.0 + resolution: "@jupyterlab/services@npm:7.4.0" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/nbformat": ^4.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/statedb": ^4.4.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/nbformat": ^4.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/statedb": ^4.4.0 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 "@lumino/polling": ^2.1.4 "@lumino/properties": ^2.0.3 "@lumino/signaling": ^2.1.4 ws: ^8.11.0 - checksum: e99d712aac8fbef4b30b5853fcc38e11bfda4c261f4dcdd7d0ed2f7a2fa350657ad19f95decb57293a15b78d4e56922bcba41a61ff46f647e7b151423ef95e1a + checksum: e04aa750ad89ad46e90652c0fba1cc2f50a54eec6dd0cb12b4d1a6678207a699576cb652fbd6d00010462421feadad8825cca2a7f18f99bf104f2cd80b3889e1 languageName: node linkType: hard -"@jupyterlab/settingregistry@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/settingregistry@npm:4.4.0-rc.1" +"@jupyterlab/settingregistry@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/settingregistry@npm:4.4.0" dependencies: - "@jupyterlab/nbformat": ^4.4.0-rc.1 - "@jupyterlab/statedb": ^4.4.0-rc.1 + "@jupyterlab/nbformat": ^4.4.0 + "@jupyterlab/statedb": ^4.4.0 "@lumino/commands": ^2.3.2 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 @@ -899,28 +890,28 @@ __metadata: json5: ^2.2.3 peerDependencies: react: ">=16" - checksum: 3b83f98d8fb8814817675258ce05f33cd72a90b0e94249d0b0144fcebc9fc1f102b967ce7850c3f77a560f4d3416d0a54e1eb692ff309abf8d3395c6796f0932 + checksum: ed2fac2dc631e630083f00dd64c576847f5fecbc7ff338b1655e7a5062daee9c2f1fbf6408ae5b951acd5330521a7e7620514ead9fb94e269cd9bfec78859151 languageName: node linkType: hard -"@jupyterlab/statedb@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/statedb@npm:4.4.0-rc.1" +"@jupyterlab/statedb@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/statedb@npm:4.4.0" dependencies: "@lumino/commands": ^2.3.2 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 "@lumino/properties": ^2.0.3 "@lumino/signaling": ^2.1.4 - checksum: ffb29e8bdd27a9796943a9a0d2586944827df0e55f88f20ba3eea4cdebbdcb605bb35e8ce2a2b8217931d273744710c52f52326c91705d024779657810e5b06b + checksum: 2267701b99576b97be03b7bfab9b353c7ac3f24334e6337bbc4ee71c957bfb110808892271d5739795d43dcb3a2f4099c8dd25e80209059aba49a9750871adcb languageName: node linkType: hard -"@jupyterlab/statusbar@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/statusbar@npm:4.4.0-rc.1" +"@jupyterlab/statusbar@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/statusbar@npm:4.4.0" dependencies: - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 @@ -928,56 +919,56 @@ __metadata: "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 63c538fb1286fc74d4d92331ed21c5d99d8e29f8238bcef2f50d5d8a21280bec41065f4166e6de5788d9525879da06bd408e07d6cdbed902fa809c01a9e415a8 + checksum: c3225ae1ce9f6c5f73311d14e3f3cd4fcdf560ea85120c911f45ca2d09851a550c496c63ad4d37a2b639a0de632689115a1ba5862b0cb2ae1a50b7dcaa2012f9 languageName: node linkType: hard -"@jupyterlab/toc@npm:^6.4.0-rc.1": - version: 6.4.0-rc.1 - resolution: "@jupyterlab/toc@npm:6.4.0-rc.1" +"@jupyterlab/toc@npm:^6.4.0": + version: 6.4.0 + resolution: "@jupyterlab/toc@npm:6.4.0" dependencies: "@jupyter/react-components": ^0.16.6 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 - "@jupyterlab/observables": ^5.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/docregistry": ^4.4.0 + "@jupyterlab/observables": ^5.4.0 + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 "@lumino/messaging": ^2.0.3 "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: afba4a8d02fa98164623d6f21eafac93c039575197cfea907ebaba8894ba3f0e21dcd17e0a282c22caee5aa0fd8f1a683f1f303411f7ce9c8db0b536b3680064 + checksum: db6486acdbc003197338558d66a9b7e206dbc4762326a16e2e11dc1901acc6ac2ce00e9a12ccf4052b50076da9cc51ed3ac51f043eedf00c280bf4de28b42c10 languageName: node linkType: hard -"@jupyterlab/translation@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/translation@npm:4.4.0-rc.1" +"@jupyterlab/translation@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/translation@npm:4.4.0" dependencies: - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/statedb": ^4.4.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/statedb": ^4.4.0 "@lumino/coreutils": ^2.2.1 - checksum: 2ec9f05375a9d9e79f1f27ad418c4e69d2c45729e196d76258c762c0a6e9056937581c1775aa8a520a5e9c83c41d6a49501672c61d30f54794a1caea978a5327 + checksum: 6c97d78d3f87fb037736ef8d327fae4047e6961a7447656d03f4b6e5fa668ff280b4e05410ff7a018064f1788fb67504cab256b158b62d71ac50f36bcbe11000 languageName: node linkType: hard -"@jupyterlab/ui-components@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/ui-components@npm:4.4.0-rc.1" +"@jupyterlab/ui-components@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/ui-components@npm:4.4.0" dependencies: "@jupyter/react-components": ^0.16.6 "@jupyter/web-components": ^0.16.6 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/observables": ^5.4.0-rc.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/observables": ^5.4.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0 + "@jupyterlab/translation": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/commands": ^2.3.2 "@lumino/coreutils": ^2.2.1 @@ -995,7 +986,7 @@ __metadata: typestyle: ^2.0.4 peerDependencies: react: ^18.2.0 - checksum: a9bc2830b5a96861d17d536dc2f55d5f6c1e1a7696c157f95c0170bffb080d025831c10b57d965db953a0f79089373b9ff4f03f841690019a8139ba685837555 + checksum: 428fa8fc51137ff0c9bef62eb70ff0c311aed6ce0c2e4f656be4b2bc1c2930be4242d84fc8745597fc0e8460cdea29d715531ca425ddbcd320ebdd58cb0440dc languageName: node linkType: hard @@ -1190,7 +1181,7 @@ __metadata: languageName: node linkType: hard -"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^1.11.0 || ^2.2.1, @lumino/coreutils@npm:^2.1.2, @lumino/coreutils@npm:^2.2.1": +"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^1.11.0 || ^2.2.1, @lumino/coreutils@npm:^2.2.1": version: 2.2.1 resolution: "@lumino/coreutils@npm:2.2.1" dependencies: diff --git a/yarn.lock b/yarn.lock index ace488861a..394aaf10cc 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1419,7 +1419,7 @@ __metadata: languageName: node linkType: hard -"@codemirror/autocomplete@npm:^6.0.0, @codemirror/autocomplete@npm:^6.16.0, @codemirror/autocomplete@npm:^6.18.3, @codemirror/autocomplete@npm:^6.3.2, @codemirror/autocomplete@npm:^6.7.1": +"@codemirror/autocomplete@npm:^6.0.0, @codemirror/autocomplete@npm:^6.18.3, @codemirror/autocomplete@npm:^6.3.2, @codemirror/autocomplete@npm:^6.7.1": version: 6.18.4 resolution: "@codemirror/autocomplete@npm:6.18.4" dependencies: @@ -1431,7 +1431,7 @@ __metadata: languageName: node linkType: hard -"@codemirror/commands@npm:^6.5.0, @codemirror/commands@npm:^6.7.1": +"@codemirror/commands@npm:^6.7.1": version: 6.7.1 resolution: "@codemirror/commands@npm:6.7.1" dependencies: @@ -1453,7 +1453,7 @@ __metadata: languageName: node linkType: hard -"@codemirror/lang-css@npm:^6.0.0, @codemirror/lang-css@npm:^6.2.1, @codemirror/lang-css@npm:^6.3.1": +"@codemirror/lang-css@npm:^6.0.0, @codemirror/lang-css@npm:^6.3.1": version: 6.3.1 resolution: "@codemirror/lang-css@npm:6.3.1" dependencies: @@ -1518,7 +1518,7 @@ __metadata: languageName: node linkType: hard -"@codemirror/lang-markdown@npm:^6.2.5, @codemirror/lang-markdown@npm:^6.3.1": +"@codemirror/lang-markdown@npm:^6.3.1": version: 6.3.1 resolution: "@codemirror/lang-markdown@npm:6.3.1" dependencies: @@ -1546,7 +1546,7 @@ __metadata: languageName: node linkType: hard -"@codemirror/lang-python@npm:^6.1.6, @codemirror/lang-python@npm:^6.1.7": +"@codemirror/lang-python@npm:^6.1.7": version: 6.1.7 resolution: "@codemirror/lang-python@npm:6.1.7" dependencies: @@ -1569,7 +1569,7 @@ __metadata: languageName: node linkType: hard -"@codemirror/lang-sql@npm:^6.6.4, @codemirror/lang-sql@npm:^6.8.0": +"@codemirror/lang-sql@npm:^6.8.0": version: 6.8.0 resolution: "@codemirror/lang-sql@npm:6.8.0" dependencies: @@ -1609,7 +1609,7 @@ __metadata: languageName: node linkType: hard -"@codemirror/language@npm:^6.0.0, @codemirror/language@npm:^6.10.1, @codemirror/language@npm:^6.10.6, @codemirror/language@npm:^6.3.0, @codemirror/language@npm:^6.4.0, @codemirror/language@npm:^6.6.0, @codemirror/language@npm:^6.8.0": +"@codemirror/language@npm:^6.0.0, @codemirror/language@npm:^6.10.6, @codemirror/language@npm:^6.3.0, @codemirror/language@npm:^6.4.0, @codemirror/language@npm:^6.6.0, @codemirror/language@npm:^6.8.0": version: 6.10.7 resolution: "@codemirror/language@npm:6.10.7" dependencies: @@ -1623,7 +1623,7 @@ __metadata: languageName: node linkType: hard -"@codemirror/legacy-modes@npm:^6.4.0, @codemirror/legacy-modes@npm:^6.4.2": +"@codemirror/legacy-modes@npm:^6.4.2": version: 6.4.2 resolution: "@codemirror/legacy-modes@npm:6.4.2" dependencies: @@ -1643,7 +1643,7 @@ __metadata: languageName: node linkType: hard -"@codemirror/search@npm:^6.5.6, @codemirror/search@npm:^6.5.8": +"@codemirror/search@npm:^6.5.8": version: 6.5.8 resolution: "@codemirror/search@npm:6.5.8" dependencies: @@ -1654,7 +1654,7 @@ __metadata: languageName: node linkType: hard -"@codemirror/state@npm:^6.0.0, @codemirror/state@npm:^6.4.0, @codemirror/state@npm:^6.4.1, @codemirror/state@npm:^6.5.0": +"@codemirror/state@npm:^6.0.0, @codemirror/state@npm:^6.4.0, @codemirror/state@npm:^6.5.0": version: 6.5.0 resolution: "@codemirror/state@npm:6.5.0" dependencies: @@ -1663,7 +1663,7 @@ __metadata: languageName: node linkType: hard -"@codemirror/view@npm:^6.0.0, @codemirror/view@npm:^6.17.0, @codemirror/view@npm:^6.23.0, @codemirror/view@npm:^6.26.3, @codemirror/view@npm:^6.27.0, @codemirror/view@npm:^6.35.3": +"@codemirror/view@npm:^6.0.0, @codemirror/view@npm:^6.17.0, @codemirror/view@npm:^6.23.0, @codemirror/view@npm:^6.27.0, @codemirror/view@npm:^6.35.3": version: 6.36.1 resolution: "@codemirror/view@npm:6.36.1" dependencies: @@ -2142,57 +2142,57 @@ __metadata: "@jupyter-notebook/tree": ^7.4.0-rc.0 "@jupyter-notebook/tree-extension": ^7.4.0-rc.0 "@jupyter-notebook/ui-components": ^7.4.0-rc.0 - "@jupyterlab/application-extension": ~4.4.0-rc.1 - "@jupyterlab/apputils-extension": ~4.4.0-rc.1 - "@jupyterlab/attachments": ~4.4.0-rc.1 - "@jupyterlab/builder": ~4.4.0-rc.1 - "@jupyterlab/buildutils": ~4.4.0-rc.1 - "@jupyterlab/cell-toolbar-extension": ~4.4.0-rc.1 - "@jupyterlab/celltags-extension": ~4.4.0-rc.1 - "@jupyterlab/codemirror": ~4.4.0-rc.1 - "@jupyterlab/codemirror-extension": ~4.4.0-rc.1 - "@jupyterlab/completer-extension": ~4.4.0-rc.1 - "@jupyterlab/console-extension": ~4.4.0-rc.1 - "@jupyterlab/coreutils": ~6.4.0-rc.1 - "@jupyterlab/csvviewer-extension": ~4.4.0-rc.1 - "@jupyterlab/debugger-extension": ~4.4.0-rc.1 - "@jupyterlab/docmanager-extension": ~4.4.0-rc.1 - "@jupyterlab/documentsearch-extension": ~4.4.0-rc.1 - "@jupyterlab/extensionmanager-extension": ~4.4.0-rc.1 - "@jupyterlab/filebrowser-extension": ~4.4.0-rc.1 - "@jupyterlab/fileeditor-extension": ~4.4.0-rc.1 - "@jupyterlab/help-extension": ~4.4.0-rc.1 - "@jupyterlab/htmlviewer-extension": ~4.4.0-rc.1 - "@jupyterlab/hub-extension": ~4.4.0-rc.1 - "@jupyterlab/imageviewer-extension": ~4.4.0-rc.1 - "@jupyterlab/javascript-extension": ~4.4.0-rc.1 - "@jupyterlab/json-extension": ~4.4.0-rc.1 - "@jupyterlab/logconsole-extension": ~4.4.0-rc.1 - "@jupyterlab/lsp": ~4.4.0-rc.1 - "@jupyterlab/lsp-extension": ~4.4.0-rc.1 - "@jupyterlab/mainmenu-extension": ~4.4.0-rc.1 - "@jupyterlab/markdownviewer-extension": ~4.4.0-rc.1 - "@jupyterlab/markedparser-extension": ~4.4.0-rc.1 - "@jupyterlab/mathjax-extension": ~4.4.0-rc.1 - "@jupyterlab/mermaid-extension": ~4.4.0-rc.1 - "@jupyterlab/metadataform-extension": ~4.4.0-rc.1 - "@jupyterlab/notebook-extension": ~4.4.0-rc.1 - "@jupyterlab/pdf-extension": ~4.4.0-rc.1 - "@jupyterlab/pluginmanager-extension": ~4.4.0-rc.1 - "@jupyterlab/running-extension": ~4.4.0-rc.1 - "@jupyterlab/services-extension": ~4.4.0-rc.1 - "@jupyterlab/settingeditor": ~4.4.0-rc.1 - "@jupyterlab/settingeditor-extension": ~4.4.0-rc.1 - "@jupyterlab/shortcuts-extension": ~5.2.0-rc.1 - "@jupyterlab/terminal-extension": ~4.4.0-rc.1 - "@jupyterlab/theme-dark-extension": ~4.4.0-rc.1 - "@jupyterlab/theme-dark-high-contrast-extension": ~4.4.0-rc.1 - "@jupyterlab/theme-light-extension": ~4.4.0-rc.1 - "@jupyterlab/toc-extension": ~6.4.0-rc.1 - "@jupyterlab/tooltip-extension": ~4.4.0-rc.1 - "@jupyterlab/translation-extension": ~4.4.0-rc.1 - "@jupyterlab/ui-components-extension": ~4.4.0-rc.1 - "@jupyterlab/vega5-extension": ~4.4.0-rc.1 + "@jupyterlab/application-extension": ~4.4.0 + "@jupyterlab/apputils-extension": ~4.4.0 + "@jupyterlab/attachments": ~4.4.0 + "@jupyterlab/builder": ~4.4.0 + "@jupyterlab/buildutils": ~4.4.0 + "@jupyterlab/cell-toolbar-extension": ~4.4.0 + "@jupyterlab/celltags-extension": ~4.4.0 + "@jupyterlab/codemirror": ~4.4.0 + "@jupyterlab/codemirror-extension": ~4.4.0 + "@jupyterlab/completer-extension": ~4.4.0 + "@jupyterlab/console-extension": ~4.4.0 + "@jupyterlab/coreutils": ~6.4.0 + "@jupyterlab/csvviewer-extension": ~4.4.0 + "@jupyterlab/debugger-extension": ~4.4.0 + "@jupyterlab/docmanager-extension": ~4.4.0 + "@jupyterlab/documentsearch-extension": ~4.4.0 + "@jupyterlab/extensionmanager-extension": ~4.4.0 + "@jupyterlab/filebrowser-extension": ~4.4.0 + "@jupyterlab/fileeditor-extension": ~4.4.0 + "@jupyterlab/help-extension": ~4.4.0 + "@jupyterlab/htmlviewer-extension": ~4.4.0 + "@jupyterlab/hub-extension": ~4.4.0 + "@jupyterlab/imageviewer-extension": ~4.4.0 + "@jupyterlab/javascript-extension": ~4.4.0 + "@jupyterlab/json-extension": ~4.4.0 + "@jupyterlab/logconsole-extension": ~4.4.0 + "@jupyterlab/lsp": ~4.4.0 + "@jupyterlab/lsp-extension": ~4.4.0 + "@jupyterlab/mainmenu-extension": ~4.4.0 + "@jupyterlab/markdownviewer-extension": ~4.4.0 + "@jupyterlab/markedparser-extension": ~4.4.0 + "@jupyterlab/mathjax-extension": ~4.4.0 + "@jupyterlab/mermaid-extension": ~4.4.0 + "@jupyterlab/metadataform-extension": ~4.4.0 + "@jupyterlab/notebook-extension": ~4.4.0 + "@jupyterlab/pdf-extension": ~4.4.0 + "@jupyterlab/pluginmanager-extension": ~4.4.0 + "@jupyterlab/running-extension": ~4.4.0 + "@jupyterlab/services-extension": ~4.4.0 + "@jupyterlab/settingeditor": ~4.4.0 + "@jupyterlab/settingeditor-extension": ~4.4.0 + "@jupyterlab/shortcuts-extension": ~5.2.0 + "@jupyterlab/terminal-extension": ~4.4.0 + "@jupyterlab/theme-dark-extension": ~4.4.0 + "@jupyterlab/theme-dark-high-contrast-extension": ~4.4.0 + "@jupyterlab/theme-light-extension": ~4.4.0 + "@jupyterlab/toc-extension": ~6.4.0 + "@jupyterlab/tooltip-extension": ~4.4.0 + "@jupyterlab/translation-extension": ~4.4.0 + "@jupyterlab/ui-components-extension": ~4.4.0 + "@jupyterlab/vega5-extension": ~4.4.0 "@lumino/coreutils": ~2.2.0 "@types/rimraf": ^3.0.2 css-loader: ~5.0.1 @@ -2222,17 +2222,17 @@ __metadata: dependencies: "@jupyter-notebook/application": ^7.4.0-rc.0 "@jupyter-notebook/ui-components": ^7.4.0-rc.0 - "@jupyterlab/application": ~4.4.0-rc.1 - "@jupyterlab/apputils": ~4.5.0-rc.1 - "@jupyterlab/codeeditor": ~4.4.0-rc.1 - "@jupyterlab/console": ~4.4.0-rc.1 - "@jupyterlab/coreutils": ~6.4.0-rc.1 - "@jupyterlab/docmanager": ~4.4.0-rc.1 - "@jupyterlab/docregistry": ~4.4.0-rc.1 - "@jupyterlab/mainmenu": ~4.4.0-rc.1 - "@jupyterlab/rendermime": ~4.4.0-rc.1 - "@jupyterlab/settingregistry": ~4.4.0-rc.1 - "@jupyterlab/translation": ~4.4.0-rc.1 + "@jupyterlab/application": ~4.4.0 + "@jupyterlab/apputils": ~4.5.0 + "@jupyterlab/codeeditor": ~4.4.0 + "@jupyterlab/console": ~4.4.0 + "@jupyterlab/coreutils": ~6.4.0 + "@jupyterlab/docmanager": ~4.4.0 + "@jupyterlab/docregistry": ~4.4.0 + "@jupyterlab/mainmenu": ~4.4.0 + "@jupyterlab/rendermime": ~4.4.0 + "@jupyterlab/settingregistry": ~4.4.0 + "@jupyterlab/translation": ~4.4.0 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/widgets": ^2.5.0 @@ -2247,12 +2247,12 @@ __metadata: dependencies: "@babel/core": ^7.11.6 "@babel/preset-env": ^7.12.1 - "@jupyterlab/application": ~4.4.0-rc.1 - "@jupyterlab/coreutils": ~6.4.0-rc.1 - "@jupyterlab/docregistry": ~4.4.0-rc.1 - "@jupyterlab/rendermime-interfaces": ~3.12.0-rc.1 + "@jupyterlab/application": ~4.4.0 + "@jupyterlab/coreutils": ~6.4.0 + "@jupyterlab/docregistry": ~4.4.0 + "@jupyterlab/rendermime-interfaces": ~3.12.0 "@jupyterlab/testutils": ~4.3.2 - "@jupyterlab/ui-components": ~4.4.0-rc.1 + "@jupyterlab/ui-components": ~4.4.0 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 @@ -2271,7 +2271,7 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyter-notebook/buildutils@workspace:buildutils" dependencies: - "@jupyterlab/buildutils": ~4.4.0-rc.1 + "@jupyterlab/buildutils": ~4.4.0 "@types/fs-extra": ^9.0.10 "@types/node": ^22.13.4 "@types/semver": ^7.5.8 @@ -2288,9 +2288,9 @@ __metadata: resolution: "@jupyter-notebook/console-extension@workspace:packages/console-extension" dependencies: "@jupyter-notebook/application": ^7.4.0-rc.0 - "@jupyterlab/application": ~4.4.0-rc.1 - "@jupyterlab/console": ~4.4.0-rc.1 - "@jupyterlab/coreutils": ~6.4.0-rc.1 + "@jupyterlab/application": ~4.4.0 + "@jupyterlab/console": ~4.4.0 + "@jupyterlab/coreutils": ~6.4.0 "@lumino/algorithm": ^2.0.2 rimraf: ^3.0.2 typescript: ~5.5.4 @@ -2302,11 +2302,11 @@ __metadata: resolution: "@jupyter-notebook/docmanager-extension@workspace:packages/docmanager-extension" dependencies: "@jupyter-notebook/application": ^7.4.0-rc.0 - "@jupyterlab/application": ~4.4.0-rc.1 - "@jupyterlab/coreutils": ~6.4.0-rc.1 - "@jupyterlab/docmanager": ~4.4.0-rc.1 - "@jupyterlab/docregistry": ~4.4.0-rc.1 - "@jupyterlab/services": ~7.4.0-rc.1 + "@jupyterlab/application": ~4.4.0 + "@jupyterlab/coreutils": ~6.4.0 + "@jupyterlab/docmanager": ~4.4.0 + "@jupyterlab/docregistry": ~4.4.0 + "@jupyterlab/services": ~7.4.0 "@lumino/algorithm": ^2.0.2 "@lumino/signaling": ^2.1.3 rimraf: ^3.0.2 @@ -2319,8 +2319,8 @@ __metadata: resolution: "@jupyter-notebook/documentsearch-extension@workspace:packages/documentsearch-extension" dependencies: "@jupyter-notebook/application": ^7.4.0-rc.0 - "@jupyterlab/application": ~4.4.0-rc.1 - "@jupyterlab/documentsearch": ~4.4.0-rc.1 + "@jupyterlab/application": ~4.4.0 + "@jupyterlab/documentsearch": ~4.4.0 "@lumino/widgets": ^2.5.0 rimraf: ^3.0.2 typescript: ~5.5.4 @@ -2332,10 +2332,10 @@ __metadata: resolution: "@jupyter-notebook/help-extension@workspace:packages/help-extension" dependencies: "@jupyter-notebook/ui-components": ^7.4.0-rc.0 - "@jupyterlab/application": ~4.4.0-rc.1 - "@jupyterlab/apputils": ~4.5.0-rc.1 - "@jupyterlab/mainmenu": ~4.4.0-rc.1 - "@jupyterlab/translation": ~4.4.0-rc.1 + "@jupyterlab/application": ~4.4.0 + "@jupyterlab/apputils": ~4.5.0 + "@jupyterlab/mainmenu": ~4.4.0 + "@jupyterlab/translation": ~4.4.0 react: ^18.2.0 react-dom: ^18.2.0 rimraf: ^3.0.2 @@ -2348,14 +2348,14 @@ __metadata: resolution: "@jupyter-notebook/lab-extension@workspace:packages/lab-extension" dependencies: "@jupyter-notebook/application": ^7.4.0-rc.0 - "@jupyterlab/application": ~4.4.0-rc.1 - "@jupyterlab/apputils": ~4.5.0-rc.1 - "@jupyterlab/builder": ~4.4.0-rc.1 - "@jupyterlab/coreutils": ~6.4.0-rc.1 - "@jupyterlab/docregistry": ~4.4.0-rc.1 - "@jupyterlab/notebook": ~4.4.0-rc.1 - "@jupyterlab/translation": ~4.4.0-rc.1 - "@jupyterlab/ui-components": ~4.4.0-rc.1 + "@jupyterlab/application": ~4.4.0 + "@jupyterlab/apputils": ~4.5.0 + "@jupyterlab/builder": ~4.4.0 + "@jupyterlab/coreutils": ~6.4.0 + "@jupyterlab/docregistry": ~4.4.0 + "@jupyterlab/notebook": ~4.4.0 + "@jupyterlab/translation": ~4.4.0 + "@jupyterlab/ui-components": ~4.4.0 "@lumino/commands": ^2.3.1 "@lumino/disposable": ^2.1.3 rimraf: ^3.0.2 @@ -2388,13 +2388,13 @@ __metadata: resolution: "@jupyter-notebook/notebook-extension@workspace:packages/notebook-extension" dependencies: "@jupyter-notebook/application": ^7.4.0-rc.0 - "@jupyterlab/application": ~4.4.0-rc.1 - "@jupyterlab/apputils": ~4.5.0-rc.1 - "@jupyterlab/cells": ~4.4.0-rc.1 - "@jupyterlab/docmanager": ~4.4.0-rc.1 - "@jupyterlab/notebook": ~4.4.0-rc.1 - "@jupyterlab/settingregistry": ~4.4.0-rc.1 - "@jupyterlab/translation": ~4.4.0-rc.1 + "@jupyterlab/application": ~4.4.0 + "@jupyterlab/apputils": ~4.5.0 + "@jupyterlab/cells": ~4.4.0 + "@jupyterlab/docmanager": ~4.4.0 + "@jupyterlab/notebook": ~4.4.0 + "@jupyterlab/settingregistry": ~4.4.0 + "@jupyterlab/translation": ~4.4.0 "@lumino/polling": ^2.1.3 "@lumino/widgets": ^2.5.0 react: ^18.2.0 @@ -2408,7 +2408,7 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyter-notebook/root@workspace:." dependencies: - "@jupyterlab/buildutils": ~4.4.0-rc.1 + "@jupyterlab/buildutils": ~4.4.0 "@typescript-eslint/eslint-plugin": ^5.55.0 "@typescript-eslint/parser": ^5.55.0 eslint: ^8.36.0 @@ -2430,9 +2430,9 @@ __metadata: resolution: "@jupyter-notebook/terminal-extension@workspace:packages/terminal-extension" dependencies: "@jupyter-notebook/application": ^7.4.0-rc.0 - "@jupyterlab/application": ~4.4.0-rc.1 - "@jupyterlab/coreutils": ~6.4.0-rc.1 - "@jupyterlab/terminal": ~4.4.0-rc.1 + "@jupyterlab/application": ~4.4.0 + "@jupyterlab/coreutils": ~6.4.0 + "@jupyterlab/terminal": ~4.4.0 "@lumino/algorithm": ^2.0.2 rimraf: ^3.0.2 typescript: ~5.5.4 @@ -2445,18 +2445,18 @@ __metadata: dependencies: "@jupyter-notebook/application": ^7.4.0-rc.0 "@jupyter-notebook/tree": ^7.4.0-rc.0 - "@jupyterlab/application": ~4.4.0-rc.1 - "@jupyterlab/apputils": ~4.5.0-rc.1 - "@jupyterlab/coreutils": ~6.4.0-rc.1 - "@jupyterlab/docmanager": ~4.4.0-rc.1 - "@jupyterlab/filebrowser": ~4.4.0-rc.1 - "@jupyterlab/mainmenu": ~4.4.0-rc.1 - "@jupyterlab/services": ~7.4.0-rc.1 - "@jupyterlab/settingeditor": ~4.4.0-rc.1 - "@jupyterlab/settingregistry": ~4.4.0-rc.1 - "@jupyterlab/statedb": ~4.4.0-rc.1 - "@jupyterlab/translation": ~4.4.0-rc.1 - "@jupyterlab/ui-components": ~4.4.0-rc.1 + "@jupyterlab/application": ~4.4.0 + "@jupyterlab/apputils": ~4.5.0 + "@jupyterlab/coreutils": ~6.4.0 + "@jupyterlab/docmanager": ~4.4.0 + "@jupyterlab/filebrowser": ~4.4.0 + "@jupyterlab/mainmenu": ~4.4.0 + "@jupyterlab/services": ~7.4.0 + "@jupyterlab/settingeditor": ~4.4.0 + "@jupyterlab/settingregistry": ~4.4.0 + "@jupyterlab/statedb": ~4.4.0 + "@jupyterlab/translation": ~4.4.0 + "@jupyterlab/ui-components": ~4.4.0 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/widgets": ^2.5.0 @@ -2470,17 +2470,17 @@ __metadata: resolution: "@jupyter-notebook/tree@workspace:packages/tree" dependencies: "@jupyter-notebook/application": ^7.4.0-rc.0 - "@jupyterlab/application": ~4.4.0-rc.1 - "@jupyterlab/apputils": ~4.5.0-rc.1 - "@jupyterlab/coreutils": ~6.4.0-rc.1 - "@jupyterlab/docmanager": ~4.4.0-rc.1 - "@jupyterlab/filebrowser": ~4.4.0-rc.1 - "@jupyterlab/mainmenu": ~4.4.0-rc.1 - "@jupyterlab/services": ~7.4.0-rc.1 - "@jupyterlab/settingregistry": ~4.4.0-rc.1 - "@jupyterlab/statedb": ~4.4.0-rc.1 - "@jupyterlab/translation": ~4.4.0-rc.1 - "@jupyterlab/ui-components": ~4.4.0-rc.1 + "@jupyterlab/application": ~4.4.0 + "@jupyterlab/apputils": ~4.5.0 + "@jupyterlab/coreutils": ~6.4.0 + "@jupyterlab/docmanager": ~4.4.0 + "@jupyterlab/filebrowser": ~4.4.0 + "@jupyterlab/mainmenu": ~4.4.0 + "@jupyterlab/services": ~7.4.0 + "@jupyterlab/settingregistry": ~4.4.0 + "@jupyterlab/statedb": ~4.4.0 + "@jupyterlab/translation": ~4.4.0 + "@jupyterlab/ui-components": ~4.4.0 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -2497,7 +2497,7 @@ __metadata: "@babel/core": ^7.10.2 "@babel/preset-env": ^7.10.2 "@jupyterlab/testutils": ~4.3.2 - "@jupyterlab/ui-components": ~4.4.0-rc.1 + "@jupyterlab/ui-components": ~4.4.0 "@types/jest": ^29.2.5 babel-loader: ^8.0.6 jest: ^29.3.1 @@ -2545,71 +2545,43 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/application-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/application-extension@npm:4.4.0-rc.1" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/property-inspector": ^4.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/statedb": ^4.4.0-rc.1 - "@jupyterlab/statusbar": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 +"@jupyterlab/application-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/application-extension@npm:4.4.0" + dependencies: + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/property-inspector": ^4.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/statedb": ^4.4.0 + "@jupyterlab/statusbar": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/commands": ^2.3.2 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 07614d3863a40a08b9948e28d0ba7f8acb8a2555d1b0abc6aa99980cd0aa8dee008d10ea8330b4ba299b1fc8c47cf296834fb313bd9eacf80d1603dad665f216 - languageName: node - linkType: hard - -"@jupyterlab/application@npm:^4.3.2": - version: 4.3.4 - resolution: "@jupyterlab/application@npm:4.3.4" - dependencies: - "@fortawesome/fontawesome-free": ^5.12.0 - "@jupyterlab/apputils": ^4.4.4 - "@jupyterlab/coreutils": ^6.3.4 - "@jupyterlab/docregistry": ^4.3.4 - "@jupyterlab/rendermime": ^4.3.4 - "@jupyterlab/rendermime-interfaces": ^3.11.4 - "@jupyterlab/services": ^7.3.4 - "@jupyterlab/statedb": ^4.3.4 - "@jupyterlab/translation": ^4.3.4 - "@jupyterlab/ui-components": ^4.3.4 - "@lumino/algorithm": ^2.0.2 - "@lumino/application": ^2.4.1 - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/polling": ^2.1.3 - "@lumino/properties": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.5.0 - checksum: 7afd40976775799062cfc1f86c240642f7b5dc8d60558f5f7982337323a3afadb8df5bbb687d9fc0aed1618c80b62827c74946966e72b2760d22c4aa0825e6d1 + checksum: a69e2a1e8e9b654c3135f16500e6e0120a048cf757f07a3b22e2e9ba1b3e9d4f4f4c0752c55e2acc3ec32be8fe8719de5c50787435e3a104ab3dc6663bea63a8 languageName: node linkType: hard -"@jupyterlab/application@npm:^4.4.0-rc.1, @jupyterlab/application@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/application@npm:4.4.0-rc.1" +"@jupyterlab/application@npm:^4.3.2, @jupyterlab/application@npm:^4.4.0, @jupyterlab/application@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/application@npm:4.4.0" dependencies: "@fortawesome/fontawesome-free": ^5.12.0 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/statedb": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/docregistry": ^4.4.0 + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/statedb": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/application": ^2.4.3 "@lumino/commands": ^2.3.2 @@ -2620,27 +2592,27 @@ __metadata: "@lumino/properties": ^2.0.3 "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 - checksum: 1feaa59a203d0627020282906f33c3d482e8d0c9c6dc54f93c76e6eaddabe66670b8431ccebb45957ec2ad9791007e6f0e2a9975314e0786d602fe4f00c9c0b2 - languageName: node - linkType: hard - -"@jupyterlab/apputils-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/apputils-extension@npm:4.4.0-rc.1" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 - "@jupyterlab/mainmenu": ^4.4.0-rc.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/statedb": ^4.4.0-rc.1 - "@jupyterlab/statusbar": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 - "@jupyterlab/workspaces": ^4.4.0-rc.1 + checksum: 655acf6571474e52dddcd7beb60159be8aa6e6dc11315f458fe8559cebd3790e853925a1de24fdcbcea96d92c3bfed0a7fe0ca5b53ac8f9b65fd1728307a43a3 + languageName: node + linkType: hard + +"@jupyterlab/apputils-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/apputils-extension@npm:4.4.0" + dependencies: + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/docregistry": ^4.4.0 + "@jupyterlab/mainmenu": ^4.4.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/statedb": ^4.4.0 + "@jupyterlab/statusbar": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 + "@jupyterlab/workspaces": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/commands": ^2.3.2 "@lumino/coreutils": ^2.2.1 @@ -2651,52 +2623,23 @@ __metadata: react: ^18.2.0 react-dom: ^18.2.0 react-toastify: ^9.0.8 - checksum: dc5cd51a4b487ba03c54ec8de7ccb92649c47c4566d1571463f61189d7e358c2c5e1639981523640c4cd3ed6198ad2cf3875610dcc7530b78d3c9073ca7a352c - languageName: node - linkType: hard - -"@jupyterlab/apputils@npm:^4.4.2, @jupyterlab/apputils@npm:^4.4.4": - version: 4.4.4 - resolution: "@jupyterlab/apputils@npm:4.4.4" - dependencies: - "@jupyterlab/coreutils": ^6.3.4 - "@jupyterlab/observables": ^5.3.4 - "@jupyterlab/rendermime-interfaces": ^3.11.4 - "@jupyterlab/services": ^7.3.4 - "@jupyterlab/settingregistry": ^4.3.4 - "@jupyterlab/statedb": ^4.3.4 - "@jupyterlab/statusbar": ^4.3.4 - "@jupyterlab/translation": ^4.3.4 - "@jupyterlab/ui-components": ^4.3.4 - "@lumino/algorithm": ^2.0.2 - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/domutils": ^2.0.2 - "@lumino/messaging": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/virtualdom": ^2.0.2 - "@lumino/widgets": ^2.5.0 - "@types/react": ^18.0.26 - react: ^18.2.0 - sanitize-html: ~2.12.1 - checksum: cac57d28905578799cda60c53af22a5ea14232aa6e2498d38398fc5d3ab8fbd69ddbeb4b04a70c60a89bd94cfef8bdd5a9c07613eb9a51bcfce15a5251b34366 + checksum: db5b8ad135a2e340b179b3be3deb8083665e0a4b9bc110bbc8b17f235c7bd1f93680031ea5b05d7cc5a1f0d2f614424a2218377dd3b1fd80f43b45267e3f01dd languageName: node linkType: hard -"@jupyterlab/apputils@npm:^4.5.0-rc.1, @jupyterlab/apputils@npm:~4.5.0-rc.1": - version: 4.5.0-rc.1 - resolution: "@jupyterlab/apputils@npm:4.5.0-rc.1" - dependencies: - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/observables": ^5.4.0-rc.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/statedb": ^4.4.0-rc.1 - "@jupyterlab/statusbar": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 +"@jupyterlab/apputils@npm:^4.4.2, @jupyterlab/apputils@npm:^4.5.0, @jupyterlab/apputils@npm:~4.5.0": + version: 4.5.0 + resolution: "@jupyterlab/apputils@npm:4.5.0" + dependencies: + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/observables": ^5.4.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/statedb": ^4.4.0 + "@jupyterlab/statusbar": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/commands": ^2.3.2 "@lumino/coreutils": ^2.2.1 @@ -2709,41 +2652,27 @@ __metadata: "@types/react": ^18.0.26 react: ^18.2.0 sanitize-html: ~2.12.1 - checksum: 62765932efb83625ce251ddb2a4d43476ced1d2b3a656a7cea2f3f284502461dae49b7eeb33bff21d8f6612abfa52115b5b3b1e61c81bcf606afcf9d6d973ea2 - languageName: node - linkType: hard - -"@jupyterlab/attachments@npm:^4.3.4": - version: 4.3.4 - resolution: "@jupyterlab/attachments@npm:4.3.4" - dependencies: - "@jupyterlab/nbformat": ^4.3.4 - "@jupyterlab/observables": ^5.3.4 - "@jupyterlab/rendermime": ^4.3.4 - "@jupyterlab/rendermime-interfaces": ^3.11.4 - "@lumino/disposable": ^2.1.3 - "@lumino/signaling": ^2.1.3 - checksum: 1e253e3ec6482d849573d561a13c3476624d9ddd8c14705268cfa8728a8d5d308decb4c0baf640f707f61f769054277b660bab3d4c6ff9df96a6fd958d583d34 + checksum: afca456beae128481d1bc58b55323600ac40b72540c1724c29cd9191fa0a383fe47ea0da3c0b3075264055e0bee8955b9989d3935ba5105618ddd85b2d4089ec languageName: node linkType: hard -"@jupyterlab/attachments@npm:^4.4.0-rc.1, @jupyterlab/attachments@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/attachments@npm:4.4.0-rc.1" +"@jupyterlab/attachments@npm:^4.4.0, @jupyterlab/attachments@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/attachments@npm:4.4.0" dependencies: - "@jupyterlab/nbformat": ^4.4.0-rc.1 - "@jupyterlab/observables": ^5.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + "@jupyterlab/nbformat": ^4.4.0 + "@jupyterlab/observables": ^5.4.0 + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0 "@lumino/disposable": ^2.1.4 "@lumino/signaling": ^2.1.4 - checksum: 277f79b7499cd021832ec88e36395e5c3f9386c71b4c5c38b042d8d0a9c46a8ef2fc7b916b233d0c177f54dbb016b0d6f044f9c48102763f500b0e3a250c8579 + checksum: 6e417fa40f1c8e9f7358664a9f0d7d315b13312caba971a93bf38fbb702dae0a2ec7f3fa6c8197d1d895eb08722fe3497d16357d9bff7561cb03126632cf07cb languageName: node linkType: hard -"@jupyterlab/builder@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/builder@npm:4.4.0-rc.1" +"@jupyterlab/builder@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/builder@npm:4.4.0" dependencies: "@lumino/algorithm": ^2.0.3 "@lumino/application": ^2.4.3 @@ -2778,13 +2707,13 @@ __metadata: worker-loader: ^3.0.2 bin: build-labextension: lib/build-labextension.js - checksum: 7799e78fefec0734669e8c63361763deef9421f77007f39d36738c558ca9faffeb0100e429c089dcf68b4217c3723584ab73f9e516c72ddcb818b3f18a3c0900 + checksum: 06e14bdc57ca43ccf157afa19ffa8af788fccfdc773975541e9d3856ef563c862ce87f31c4e5d9044c510f8808ef53c0220a0626d6802a0feeb6b5aa752b57c1 languageName: node linkType: hard -"@jupyterlab/buildutils@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/buildutils@npm:4.4.0-rc.1" +"@jupyterlab/buildutils@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/buildutils@npm:4.4.0" dependencies: "@yarnpkg/core": ^4.0.3 "@yarnpkg/parsers": ^3.0.0 @@ -2811,102 +2740,66 @@ __metadata: update-dependency: lib/update-dependency.js update-dist-tag: lib/update-dist-tag.js update-staging-lock: lib/update-staging-lock.js - checksum: 84e77d717276fe229eb135952af02225e3613c96500049da035c0681e69a85197fb6462dca0d8c565fc3962ce42405b47f98d614e515e4d680cf8608c347e460 + checksum: a241bca8ec371edd0d49f32aea207fcbf2f7c132873df34743ad9e4df7d7827fa6797d779094574cb4896d225e7fe1d71c7e0c8c7e95bbf88dc96f0758ffcb3f languageName: node linkType: hard -"@jupyterlab/cell-toolbar-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/cell-toolbar-extension@npm:4.4.0-rc.1" +"@jupyterlab/cell-toolbar-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/cell-toolbar-extension@npm:4.4.0" dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/cell-toolbar": ^4.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - checksum: 854ab753313c964a19904306cf7cb10bf9456c4c5c7c2910ecfd1596da98c909aa33c2bd39246eda470f2746a80e80af2a392e02b9a9bf847827806e5df42e4a + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/cell-toolbar": ^4.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + checksum: 775c38aba8535f3e389a16592c8570a24a48d1d5fe65c7e115b7bb1ae86d7ad4c8ee9a4e956e68dedfb3d2047d9b6b72bc6ac5c999ceebf20ef87ef3a458174d languageName: node linkType: hard -"@jupyterlab/cell-toolbar@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/cell-toolbar@npm:4.4.0-rc.1" +"@jupyterlab/cell-toolbar@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/cell-toolbar@npm:4.4.0" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/cells": ^4.4.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 - "@jupyterlab/notebook": ^4.4.0-rc.1 - "@jupyterlab/observables": ^5.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/cells": ^4.4.0 + "@jupyterlab/docregistry": ^4.4.0 + "@jupyterlab/notebook": ^4.4.0 + "@jupyterlab/observables": ^5.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/commands": ^2.3.2 "@lumino/disposable": ^2.1.4 "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 - checksum: e04dd561757523256d1d06afa0cd462b72caaf71575ecb2ccd42761ab26084278d24c2118ccf1581e81485f3d49a9c60ce0a36122bc67ac78b0f027b28743072 - languageName: node - linkType: hard - -"@jupyterlab/cells@npm:^4.3.4": - version: 4.3.4 - resolution: "@jupyterlab/cells@npm:4.3.4" - dependencies: - "@codemirror/state": ^6.4.1 - "@codemirror/view": ^6.26.3 - "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.4.4 - "@jupyterlab/attachments": ^4.3.4 - "@jupyterlab/codeeditor": ^4.3.4 - "@jupyterlab/codemirror": ^4.3.4 - "@jupyterlab/coreutils": ^6.3.4 - "@jupyterlab/documentsearch": ^4.3.4 - "@jupyterlab/filebrowser": ^4.3.4 - "@jupyterlab/nbformat": ^4.3.4 - "@jupyterlab/observables": ^5.3.4 - "@jupyterlab/outputarea": ^4.3.4 - "@jupyterlab/rendermime": ^4.3.4 - "@jupyterlab/services": ^7.3.4 - "@jupyterlab/toc": ^6.3.4 - "@jupyterlab/translation": ^4.3.4 - "@jupyterlab/ui-components": ^4.3.4 - "@lumino/algorithm": ^2.0.2 - "@lumino/coreutils": ^2.2.0 - "@lumino/domutils": ^2.0.2 - "@lumino/dragdrop": ^2.1.5 - "@lumino/messaging": ^2.0.2 - "@lumino/polling": ^2.1.3 - "@lumino/signaling": ^2.1.3 - "@lumino/virtualdom": ^2.0.2 - "@lumino/widgets": ^2.5.0 - react: ^18.2.0 - checksum: 7c0d9d1b48b9c7139ed9adef059b6f03cd9e62a30e8fdca3224044382facb145e0d3edec64d57818860d0e733e9defea89084bd4e83015cf5683f2711f54ebe5 + checksum: c5778dc2eb0283d082630c19d2dd9b16fdab0e607c83884ab58e66229dea01f03d1109cb4b77d113ae3582374ae3d9ff6a2996169d44cb5816f3476479d1f46e languageName: node linkType: hard -"@jupyterlab/cells@npm:^4.4.0-rc.1, @jupyterlab/cells@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/cells@npm:4.4.0-rc.1" +"@jupyterlab/cells@npm:^4.4.0, @jupyterlab/cells@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/cells@npm:4.4.0" dependencies: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/attachments": ^4.4.0-rc.1 - "@jupyterlab/codeeditor": ^4.4.0-rc.1 - "@jupyterlab/codemirror": ^4.4.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/documentsearch": ^4.4.0-rc.1 - "@jupyterlab/filebrowser": ^4.4.0-rc.1 - "@jupyterlab/nbformat": ^4.4.0-rc.1 - "@jupyterlab/observables": ^5.4.0-rc.1 - "@jupyterlab/outputarea": ^4.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/toc": ^6.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/attachments": ^4.4.0 + "@jupyterlab/codeeditor": ^4.4.0 + "@jupyterlab/codemirror": ^4.4.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/documentsearch": ^4.4.0 + "@jupyterlab/filebrowser": ^4.4.0 + "@jupyterlab/nbformat": ^4.4.0 + "@jupyterlab/observables": ^5.4.0 + "@jupyterlab/outputarea": ^4.4.0 + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/toc": ^6.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/coreutils": ^2.2.1 "@lumino/domutils": ^2.0.3 @@ -2917,62 +2810,38 @@ __metadata: "@lumino/virtualdom": ^2.0.3 "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 5302104f2e467990247b6da3b9f155b975b11b5306b97f21a71f988e0ceb6193865c47f77f8050ef23eec3ba3d5d96cc514c9845ec10e884f826642ee8536a25 + checksum: bc1a5250d0f084fc85cf2304924e5917e07a2065e436f6c39062a3fd3fa5eed91f12a5c68251114cc056914d0b7703280cbb023707a0217e5c7dce34599f263a languageName: node linkType: hard -"@jupyterlab/celltags-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/celltags-extension@npm:4.4.0-rc.1" +"@jupyterlab/celltags-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/celltags-extension@npm:4.4.0" dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/notebook": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/notebook": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: 35243839ca7748d5d44fe77686dc1876fa7aeadbb339d445755672b1eb73669cbe71359d585e834949e0395262e3a2c620e6f3b42e6e0e670782e771adef5592 - languageName: node - linkType: hard - -"@jupyterlab/codeeditor@npm:^4.3.4": - version: 4.3.4 - resolution: "@jupyterlab/codeeditor@npm:4.3.4" - dependencies: - "@codemirror/state": ^6.4.1 - "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.4.4 - "@jupyterlab/coreutils": ^6.3.4 - "@jupyterlab/nbformat": ^4.3.4 - "@jupyterlab/observables": ^5.3.4 - "@jupyterlab/statusbar": ^4.3.4 - "@jupyterlab/translation": ^4.3.4 - "@jupyterlab/ui-components": ^4.3.4 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/dragdrop": ^2.1.5 - "@lumino/messaging": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.5.0 - react: ^18.2.0 - checksum: bbd3d13a01450de40cd9d5bee5b347c7828b9c43a08433856540b0a73ac0c9703f669352f26c579ba8bd5ba7da35ab5de79db2a5afcc8a9f7b516d7d28f0b162 + checksum: c82ac548ec13ecf1692316194a339615b8d8a84e7db5b25069b1c27bff97bb4726d040319dc7fe35ca38583a678dfb1105325b46198caabe43a6c5594ac2e70c languageName: node linkType: hard -"@jupyterlab/codeeditor@npm:^4.4.0-rc.1, @jupyterlab/codeeditor@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/codeeditor@npm:4.4.0-rc.1" +"@jupyterlab/codeeditor@npm:^4.4.0, @jupyterlab/codeeditor@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/codeeditor@npm:4.4.0" dependencies: "@codemirror/state": ^6.5.0 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/nbformat": ^4.4.0-rc.1 - "@jupyterlab/observables": ^5.4.0-rc.1 - "@jupyterlab/statusbar": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/nbformat": ^4.4.0 + "@jupyterlab/observables": ^5.4.0 + "@jupyterlab/statusbar": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 "@lumino/dragdrop": ^2.1.6 @@ -2980,13 +2849,13 @@ __metadata: "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 4c79f06ea5f3e65eec610c74817ed0eba2d6e7d7f58327021b58559bad291fd7ddd5a3388ea5b0bd8cb0614ec5d82d941633f0e0aed2348840ffa2c746bca9eb + checksum: a8015b42e7626fe2a082caf59372777fb0cb6484d5075beaa1f56b2e81b36f2f818eb3dbd6e143eec4d490c2f1e4bb1e11569135c66487646a406608389a37ad languageName: node linkType: hard -"@jupyterlab/codemirror-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/codemirror-extension@npm:4.4.0-rc.1" +"@jupyterlab/codemirror-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/codemirror-extension@npm:4.4.0" dependencies: "@codemirror/commands": ^6.7.1 "@codemirror/lang-markdown": ^6.3.1 @@ -2995,67 +2864,25 @@ __metadata: "@codemirror/search": ^6.5.8 "@codemirror/view": ^6.35.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/codeeditor": ^4.4.0-rc.1 - "@jupyterlab/codemirror": ^4.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/statusbar": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/codeeditor": ^4.4.0 + "@jupyterlab/codemirror": ^4.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/statusbar": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/coreutils": ^2.2.1 "@lumino/widgets": ^2.7.0 "@rjsf/utils": ^5.13.4 "@rjsf/validator-ajv8": ^5.13.4 react: ^18.2.0 - checksum: c09601df1c1fb3dbb8cf09de41146d36a351881636ff02109690b83580733d7eb964c9638d5a423cd5d8efe5ae59be2fd528e0aa09b9a561fdf6b14e7d744590 + checksum: fa220b798e7d4725bde87e113106f8c5c8475518d8a91d43112f74c3743de386e03913c5dafcba9ed6a6f38167bd6bbac7654cd15680979b936ceec93be01307 languageName: node linkType: hard -"@jupyterlab/codemirror@npm:^4.3.4": - version: 4.3.4 - resolution: "@jupyterlab/codemirror@npm:4.3.4" - dependencies: - "@codemirror/autocomplete": ^6.16.0 - "@codemirror/commands": ^6.5.0 - "@codemirror/lang-cpp": ^6.0.2 - "@codemirror/lang-css": ^6.2.1 - "@codemirror/lang-html": ^6.4.9 - "@codemirror/lang-java": ^6.0.1 - "@codemirror/lang-javascript": ^6.2.2 - "@codemirror/lang-json": ^6.0.1 - "@codemirror/lang-markdown": ^6.2.5 - "@codemirror/lang-php": ^6.0.1 - "@codemirror/lang-python": ^6.1.6 - "@codemirror/lang-rust": ^6.0.1 - "@codemirror/lang-sql": ^6.6.4 - "@codemirror/lang-wast": ^6.0.2 - "@codemirror/lang-xml": ^6.1.0 - "@codemirror/language": ^6.10.1 - "@codemirror/legacy-modes": ^6.4.0 - "@codemirror/search": ^6.5.6 - "@codemirror/state": ^6.4.1 - "@codemirror/view": ^6.26.3 - "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/codeeditor": ^4.3.4 - "@jupyterlab/coreutils": ^6.3.4 - "@jupyterlab/documentsearch": ^4.3.4 - "@jupyterlab/nbformat": ^4.3.4 - "@jupyterlab/translation": ^4.3.4 - "@lezer/common": ^1.2.1 - "@lezer/generator": ^1.7.0 - "@lezer/highlight": ^1.2.0 - "@lezer/markdown": ^1.3.0 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/signaling": ^2.1.3 - yjs: ^13.5.40 - checksum: 9c9067f3cf5eb59891c474748c04b85c9fe2910cc9ba87c7d833fcd3c0b3d0212f0699f797b28e9a78c0fdd92fb67ad5d4165657712708fd9174c0b94d3811db - languageName: node - linkType: hard - -"@jupyterlab/codemirror@npm:^4.4.0-rc.1, @jupyterlab/codemirror@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/codemirror@npm:4.4.0-rc.1" +"@jupyterlab/codemirror@npm:^4.4.0, @jupyterlab/codemirror@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/codemirror@npm:4.4.0" dependencies: "@codemirror/autocomplete": ^6.18.3 "@codemirror/commands": ^6.7.1 @@ -3078,11 +2905,11 @@ __metadata: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/codeeditor": ^4.4.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/documentsearch": ^4.4.0-rc.1 - "@jupyterlab/nbformat": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/codeeditor": ^4.4.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/documentsearch": ^4.4.0 + "@jupyterlab/nbformat": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 "@lezer/common": ^1.2.1 "@lezer/generator": ^1.7.0 "@lezer/highlight": ^1.2.0 @@ -3091,45 +2918,45 @@ __metadata: "@lumino/disposable": ^2.1.4 "@lumino/signaling": ^2.1.4 yjs: ^13.5.40 - checksum: 9c0e3b938837181c763130025462f66b45dbb0fad7ef47fd4d6497d4589cdd08cbcd635413bcfe114b94b5228e84366885ad9ec8d28dbd0422e5ebe70c815b06 + checksum: d4f7db1d641ce4fa46b7a8db122604a9cf61df0ce417330337ae7ac04f358e2dac3bd66aad85477f1eb08bff50861c15027c42fd60e9e5c6d3c68ba3051d74ef languageName: node linkType: hard -"@jupyterlab/completer-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/completer-extension@npm:4.4.0-rc.1" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/codeeditor": ^4.4.0-rc.1 - "@jupyterlab/completer": ^4.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 +"@jupyterlab/completer-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/completer-extension@npm:4.4.0" + dependencies: + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/codeeditor": ^4.4.0 + "@jupyterlab/completer": ^4.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/commands": ^2.3.2 "@lumino/coreutils": ^2.2.1 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: fc7c0c1a6ad33f6258d1691a3348b9ad8b29651dc4133915acd0d464ecd999aaa499e60605b0f08691522c9b7d1bd8b4784ea20e63623d9682c79f2c7b63c2f7 + checksum: 9f73d723174abe63e4b105128dbc65855cbd550165941af442a25fabd1dca73be20743547ec8ff1fe9b57941bd3bc71bcb0a277ab5f7146fe973e38826799db5 languageName: node linkType: hard -"@jupyterlab/completer@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/completer@npm:4.4.0-rc.1" +"@jupyterlab/completer@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/completer@npm:4.4.0" dependencies: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/codeeditor": ^4.4.0-rc.1 - "@jupyterlab/codemirror": ^4.4.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/statedb": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/codeeditor": ^4.4.0 + "@jupyterlab/codemirror": ^4.4.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/statedb": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 @@ -3137,77 +2964,63 @@ __metadata: "@lumino/messaging": ^2.0.3 "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 - checksum: 6bf740c0d12951c50426f4f14371671c26dd9a8e5a2eb1fb7531ba2ae7185c60f786328d695cf4f1e219450dcb326fca75e9a65974aa3a352891a0729b639dc3 - languageName: node - linkType: hard - -"@jupyterlab/console-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/console-extension@npm:4.4.0-rc.1" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/codeeditor": ^4.4.0-rc.1 - "@jupyterlab/completer": ^4.4.0-rc.1 - "@jupyterlab/console": ^4.4.0-rc.1 - "@jupyterlab/filebrowser": ^4.4.0-rc.1 - "@jupyterlab/launcher": ^4.4.0-rc.1 - "@jupyterlab/mainmenu": ^4.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + checksum: 623afe405293cfb61e56a088897b7d15ff31cc34e43802504591c04ec7c2aa37a804af84a37c9c9b3f1a27c44303c0ca369b68d525cc9fbd45055d3f5dd0dd75 + languageName: node + linkType: hard + +"@jupyterlab/console-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/console-extension@npm:4.4.0" + dependencies: + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/codeeditor": ^4.4.0 + "@jupyterlab/completer": ^4.4.0 + "@jupyterlab/console": ^4.4.0 + "@jupyterlab/filebrowser": ^4.4.0 + "@jupyterlab/launcher": ^4.4.0 + "@jupyterlab/mainmenu": ^4.4.0 + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 "@lumino/properties": ^2.0.3 "@lumino/widgets": ^2.7.0 - checksum: 75ccf04a302bbe304ea3b9140c70324eb00f76cef728c9e8f9c6127a2a86e17a402d600e5c1dc8b1de78a007172138535e6fda1df930f6d4a6cb7f4765f1f4ea + checksum: 3a8c3dc73f8384155628f9be82375c75078a1d600ef1cb480e41e21ae94e3df4712e983da61dc06979e62e51c4675dcdc316418aaf9561d34087436e70879b9a languageName: node linkType: hard -"@jupyterlab/console@npm:^4.4.0-rc.1, @jupyterlab/console@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/console@npm:4.4.0-rc.1" +"@jupyterlab/console@npm:^4.4.0, @jupyterlab/console@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/console@npm:4.4.0" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/cells": ^4.4.0-rc.1 - "@jupyterlab/codeeditor": ^4.4.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/nbformat": ^4.4.0-rc.1 - "@jupyterlab/observables": ^5.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/cells": ^4.4.0 + "@jupyterlab/codeeditor": ^4.4.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/nbformat": ^4.4.0 + "@jupyterlab/observables": ^5.4.0 + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 "@lumino/dragdrop": ^2.1.6 "@lumino/messaging": ^2.0.3 "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 - checksum: 169152c0f1f6cb044c711278e2948bf95fae36877d9339240a5fbdb1fa0f030e0f9bef1323f4200cc62760dc009fd8c3ab0cd99e44dbac69564301b3d1dbf8c2 - languageName: node - linkType: hard - -"@jupyterlab/coreutils@npm:^6.3.2, @jupyterlab/coreutils@npm:^6.3.4": - version: 6.3.4 - resolution: "@jupyterlab/coreutils@npm:6.3.4" - dependencies: - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/signaling": ^2.1.3 - minimist: ~1.2.0 - path-browserify: ^1.0.0 - url-parse: ~1.5.4 - checksum: 3db39307315acb29dd606d02d5fcc6c09a57556aa0d41ba439a0577cf69c7338a90ae99e1106ebd20d842861ebda39266a910644e5a41301f62a03bb33cc4555 + checksum: 4980bc3b53bef8e24ebb61ebe551915a7a4d78586ec7e70195ad9aa90a9be7876985e30aa9d27f6f02ffe13afc29862e247990e1d4b989e72086f02d0d464499 languageName: node linkType: hard -"@jupyterlab/coreutils@npm:^6.4.0-rc.1, @jupyterlab/coreutils@npm:~6.4.0-rc.1": - version: 6.4.0-rc.1 - resolution: "@jupyterlab/coreutils@npm:6.4.0-rc.1" +"@jupyterlab/coreutils@npm:^6.3.2, @jupyterlab/coreutils@npm:^6.4.0, @jupyterlab/coreutils@npm:~6.4.0": + version: 6.4.0 + resolution: "@jupyterlab/coreutils@npm:6.4.0" dependencies: "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 @@ -3215,94 +3028,94 @@ __metadata: minimist: ~1.2.0 path-browserify: ^1.0.0 url-parse: ~1.5.4 - checksum: 1bd469a1af2ba409f2be12b8a82adea57f2781c9d6e3d7e10e784636a15dd523e37dcf5500bab1d47b3a63edadecfc46119f73f39625a06115f0c01c23ffd68e + checksum: d8306d05f058a6d387cdf8ba311bdfdc6882089d55f51c710a189119e5a8c2bdd683481cb341c3a422e23f33e361f7a32a793b8ad8342479f6c0790f95b20380 languageName: node linkType: hard -"@jupyterlab/csvviewer-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/csvviewer-extension@npm:4.4.0-rc.1" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/csvviewer": ^4.4.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 - "@jupyterlab/documentsearch": ^4.4.0-rc.1 - "@jupyterlab/mainmenu": ^4.4.0-rc.1 - "@jupyterlab/observables": ^5.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 +"@jupyterlab/csvviewer-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/csvviewer-extension@npm:4.4.0" + dependencies: + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/csvviewer": ^4.4.0 + "@jupyterlab/docregistry": ^4.4.0 + "@jupyterlab/documentsearch": ^4.4.0 + "@jupyterlab/mainmenu": ^4.4.0 + "@jupyterlab/observables": ^5.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 "@lumino/datagrid": ^2.5.1 "@lumino/widgets": ^2.7.0 - checksum: 940a25ac160cbd5103af1bc70677722631f45195b920d0e23eca88629372ddb540fa28597c1942a5b1141de757e7a01e889aca8e87350962fb43a3b96a413794 + checksum: 32fc5ea9c3bb54afab055670f4f3f4c833a54c5374721a838090d238676c8210dcbdfd3e579fd3691a005783ef5953324e832e72633777d22c4da2a0ca76446b languageName: node linkType: hard -"@jupyterlab/csvviewer@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/csvviewer@npm:4.4.0-rc.1" +"@jupyterlab/csvviewer@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/csvviewer@npm:4.4.0" dependencies: - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/docregistry": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/coreutils": ^2.2.1 "@lumino/datagrid": ^2.5.1 "@lumino/disposable": ^2.1.4 "@lumino/messaging": ^2.0.3 "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 - checksum: 0776250cc107b3e5eb3bfa44ca15b192d2aff0998a98c00aa38acb6ecab8078eb8e85b57d84aba2e667c5c44151ddc3c3bf1814a0141201d19dbed4b30853085 - languageName: node - linkType: hard - -"@jupyterlab/debugger-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/debugger-extension@npm:4.4.0-rc.1" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/cells": ^4.4.0-rc.1 - "@jupyterlab/codeeditor": ^4.4.0-rc.1 - "@jupyterlab/console": ^4.4.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/debugger": ^4.4.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 - "@jupyterlab/fileeditor": ^4.4.0-rc.1 - "@jupyterlab/logconsole": ^4.4.0-rc.1 - "@jupyterlab/notebook": ^4.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 + checksum: aa8f32d102f1d5312a7d1e09bd2bed6e02e90fb1a5f24db6c281d8fc2476a99b8fb9d4fde5de631ce37062c66e530145407cfb403b63c96af1e8399be4b05216 + languageName: node + linkType: hard + +"@jupyterlab/debugger-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/debugger-extension@npm:4.4.0" + dependencies: + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/cells": ^4.4.0 + "@jupyterlab/codeeditor": ^4.4.0 + "@jupyterlab/console": ^4.4.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/debugger": ^4.4.0 + "@jupyterlab/docregistry": ^4.4.0 + "@jupyterlab/fileeditor": ^4.4.0 + "@jupyterlab/logconsole": ^4.4.0 + "@jupyterlab/notebook": ^4.4.0 + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 "@lumino/commands": ^2.3.2 - checksum: c56a2694c6d37d49589ea97932878ae25ba94332bc080c6ca494f926d2c90e652f1072602811bf812c2347088018043d703fbdc8ce8f31c9e9bc854ee7b5f80f + checksum: d4a0345cc51734555101fd59960877512d517f758ea8093b398a8b9b54c32eca8e8f6cf85b3307ba31b6bd9d10be389c7137ffeb1cccecabde36e05cc2e92e9c languageName: node linkType: hard -"@jupyterlab/debugger@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/debugger@npm:4.4.0-rc.1" +"@jupyterlab/debugger@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/debugger@npm:4.4.0" dependencies: "@codemirror/state": ^6.5.0 "@codemirror/view": ^6.35.3 "@jupyter/react-components": ^0.16.6 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/cells": ^4.4.0-rc.1 - "@jupyterlab/codeeditor": ^4.4.0-rc.1 - "@jupyterlab/codemirror": ^4.4.0-rc.1 - "@jupyterlab/console": ^4.4.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 - "@jupyterlab/fileeditor": ^4.4.0-rc.1 - "@jupyterlab/notebook": ^4.4.0-rc.1 - "@jupyterlab/observables": ^5.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/cells": ^4.4.0 + "@jupyterlab/codeeditor": ^4.4.0 + "@jupyterlab/codemirror": ^4.4.0 + "@jupyterlab/console": ^4.4.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/docregistry": ^4.4.0 + "@jupyterlab/fileeditor": ^4.4.0 + "@jupyterlab/notebook": ^4.4.0 + "@jupyterlab/observables": ^5.4.0 + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/commands": ^2.3.2 "@lumino/coreutils": ^2.2.1 @@ -3314,25 +3127,25 @@ __metadata: "@lumino/widgets": ^2.7.0 "@vscode/debugprotocol": ^1.51.0 react: ^18.2.0 - checksum: e7f331dda8c82c29a04de9cb9fecc09bf9f1a8439f7da0d510b7ca40bbd6a8018c20486810e052081eb9bde108c2868a01d0db3c900e1e4ed1f53206abb62912 + checksum: 56d8aaff0b6174ad8ff3e4c8442201bca26bead3c223e4d16c80d0b7bd2d181cd71859b03f6ea5cb20b4434b13148783467374418e69526f424ac1d7bb701082 languageName: node linkType: hard -"@jupyterlab/docmanager-extension@npm:^4.4.0-rc.1, @jupyterlab/docmanager-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/docmanager-extension@npm:4.4.0-rc.1" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/docmanager": ^4.4.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/statedb": ^4.4.0-rc.1 - "@jupyterlab/statusbar": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 +"@jupyterlab/docmanager-extension@npm:^4.4.0, @jupyterlab/docmanager-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/docmanager-extension@npm:4.4.0" + dependencies: + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/docmanager": ^4.4.0 + "@jupyterlab/docregistry": ^4.4.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/statedb": ^4.4.0 + "@jupyterlab/statusbar": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/commands": ^2.3.2 "@lumino/coreutils": ^2.2.1 @@ -3340,47 +3153,22 @@ __metadata: "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 9d69833d156e697f64bda6138fc1cd1a18f15dfb9de44bf09f451087256b0e104130d05df61beb920c4d3f479021a185b1749568daab9adc3f49ce4eb400fd28 + checksum: 43d74e103192042760d0f3c9b78b3e90c14dc6c0debba86d39ef3bbe19a9f39c9659341c09982baa41204ca2fa60a60a9c7e3ae145e26ce810743de7971cd481 languageName: node linkType: hard -"@jupyterlab/docmanager@npm:^4.3.4": - version: 4.3.4 - resolution: "@jupyterlab/docmanager@npm:4.3.4" - dependencies: - "@jupyterlab/apputils": ^4.4.4 - "@jupyterlab/coreutils": ^6.3.4 - "@jupyterlab/docregistry": ^4.3.4 - "@jupyterlab/services": ^7.3.4 - "@jupyterlab/statedb": ^4.3.4 - "@jupyterlab/statusbar": ^4.3.4 - "@jupyterlab/translation": ^4.3.4 - "@jupyterlab/ui-components": ^4.3.4 - "@lumino/algorithm": ^2.0.2 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/polling": ^2.1.3 - "@lumino/properties": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.5.0 - react: ^18.2.0 - checksum: 5a6c15459a94180e3cc5ae7c023ba98ae043fdac2dffc8c83167b634d001734d0afad5862c85153179c790c4838a57caa394a4631122493351d001f84e2d53a6 - languageName: node - linkType: hard - -"@jupyterlab/docmanager@npm:^4.4.0-rc.1, @jupyterlab/docmanager@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/docmanager@npm:4.4.0-rc.1" - dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/statedb": ^4.4.0-rc.1 - "@jupyterlab/statusbar": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 +"@jupyterlab/docmanager@npm:^4.4.0, @jupyterlab/docmanager@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/docmanager@npm:4.4.0" + dependencies: + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/docregistry": ^4.4.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/statedb": ^4.4.0 + "@jupyterlab/statusbar": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 @@ -3390,50 +3178,24 @@ __metadata: "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 1e07946f362d8ad044c1afd549a62147f3fd94dfafa4d79c89aba659adc5db8b3ebcf25cd9a9c3bbba0dbfeab030c98815e042e420bb403e30210137add125d2 - languageName: node - linkType: hard - -"@jupyterlab/docregistry@npm:^4.3.4": - version: 4.3.4 - resolution: "@jupyterlab/docregistry@npm:4.3.4" - dependencies: - "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.4.4 - "@jupyterlab/codeeditor": ^4.3.4 - "@jupyterlab/coreutils": ^6.3.4 - "@jupyterlab/observables": ^5.3.4 - "@jupyterlab/rendermime": ^4.3.4 - "@jupyterlab/rendermime-interfaces": ^3.11.4 - "@jupyterlab/services": ^7.3.4 - "@jupyterlab/translation": ^4.3.4 - "@jupyterlab/ui-components": ^4.3.4 - "@lumino/algorithm": ^2.0.2 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/properties": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.5.0 - react: ^18.2.0 - checksum: da1103a659dfdf90cf040efeccdba6ccd3e33cb898b46b6dc32fc9423280c1c609a45f558cd12646958d9ee0af5f5c0e562880d2c8778df6a4756a1c688765da + checksum: cbbc0df4ae70a892c1da337f201fa7a3c91dc3591e35842ca497f5c31b7c62e02a08105c5201c0b0ecc6c978d7e7cc8321be16dbec08343409ffeef17a3182d8 languageName: node linkType: hard -"@jupyterlab/docregistry@npm:^4.4.0-rc.1, @jupyterlab/docregistry@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/docregistry@npm:4.4.0-rc.1" +"@jupyterlab/docregistry@npm:^4.4.0, @jupyterlab/docregistry@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/docregistry@npm:4.4.0" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/codeeditor": ^4.4.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/observables": ^5.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/codeeditor": ^4.4.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/observables": ^5.4.0 + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 @@ -3442,51 +3204,32 @@ __metadata: "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: eea0e455c63d09624beb5738835ef432c093fde2176db953a30dd00ce9066c65ca80a335fad77d2f81ba491298bf36d28337d37de53c4653ca4489207c0500ad + checksum: 32f747a6aed172157ca6bc6d9be91bc72266f5b0eb1ea316767c014993f498db42bd5c362ddd82d7de895965f9ddd5fa39fdeb432ef0534955ff30d6d673c63c languageName: node linkType: hard -"@jupyterlab/documentsearch-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/documentsearch-extension@npm:4.4.0-rc.1" +"@jupyterlab/documentsearch-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/documentsearch-extension@npm:4.4.0" dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/documentsearch": ^4.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/documentsearch": ^4.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 "@lumino/commands": ^2.3.2 "@lumino/widgets": ^2.7.0 - checksum: 84eef45e7879ca0e031f3386a27e9820b105dd5ba51ec9e058a7d58f63a8c9c155b8053b4bf84c5f6d35d4025df7f74a2ef633f6df7d4c54a2f60944b8098ee0 - languageName: node - linkType: hard - -"@jupyterlab/documentsearch@npm:^4.3.4": - version: 4.3.4 - resolution: "@jupyterlab/documentsearch@npm:4.3.4" - dependencies: - "@jupyterlab/apputils": ^4.4.4 - "@jupyterlab/translation": ^4.3.4 - "@jupyterlab/ui-components": ^4.3.4 - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/polling": ^2.1.3 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.5.0 - react: ^18.2.0 - checksum: 5866fb6ba1a14b1a7823bef3418abbc0d8607ec0afa85280ea2c9e05851148a0f72fd18ba62931bd08694bfdaf83753c4df11c8a7e11e73f6de3e8fbe251f769 + checksum: fa9740936c27606e9e3c39391770307e7284f02b980a0413c0492fa8457585ce44a21fd838da9d9fcda96110c9326475331f7feb5f604360ec490058506dfc17 languageName: node linkType: hard -"@jupyterlab/documentsearch@npm:^4.4.0-rc.1, @jupyterlab/documentsearch@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/documentsearch@npm:4.4.0-rc.1" +"@jupyterlab/documentsearch@npm:^4.4.0, @jupyterlab/documentsearch@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/documentsearch@npm:4.4.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/commands": ^2.3.2 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 @@ -3495,107 +3238,79 @@ __metadata: "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: e5da695174e79a4484dd6fcdad087f49919e1cafbcd2d0b7338e42a841e0dbb13309317c174ab787fe70c067218f529d41fc7e15b85524bc00a6a24da62a09b5 + checksum: 57d4f02e517cd98dc1d6b28a203b01ab09db601d0ca12097db508226267c88db802c94349b399bbdf56542155d105d0ac0e0f4a98a6bee9ced39642fd22c4d31 languageName: node linkType: hard -"@jupyterlab/extensionmanager-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/extensionmanager-extension@npm:4.4.0-rc.1" +"@jupyterlab/extensionmanager-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/extensionmanager-extension@npm:4.4.0" dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/extensionmanager": ^4.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 - checksum: 8b929516f82a048153536e64fd7af823509411b867e6ded71b6ffdffb7a0b57daf27d4198c874e3961b4d189d0cf1cc43c7981b1c4cfd217fafdf07060a22abc + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/extensionmanager": ^4.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 + checksum: c14868859cd484f46552d6db07a72f91855c3ce4c93e040367adfd48935587ff209b25b19307de84ca8c316373743158443caf06e78e929ea86e091a40f9a28f languageName: node linkType: hard -"@jupyterlab/extensionmanager@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/extensionmanager@npm:4.4.0-rc.1" +"@jupyterlab/extensionmanager@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/extensionmanager@npm:4.4.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/messaging": ^2.0.3 "@lumino/polling": ^2.1.4 "@lumino/widgets": ^2.7.0 react: ^18.2.0 react-paginate: ^6.3.2 semver: ^7.5.2 - checksum: f0fb3b98c6ab0bb2e20918d8a10b14868587ea397a1e0cadabf2389338172dbefe59e37849fc0a412b863908b24d486388f8454199b1b659593116d039c26e86 - languageName: node - linkType: hard - -"@jupyterlab/filebrowser-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/filebrowser-extension@npm:4.4.0-rc.1" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/docmanager": ^4.4.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 - "@jupyterlab/filebrowser": ^4.4.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/statedb": ^4.4.0-rc.1 - "@jupyterlab/statusbar": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 - "@lumino/algorithm": ^2.0.3 - "@lumino/commands": ^2.3.2 - "@lumino/widgets": ^2.7.0 - checksum: c673fcf9ad6bcfb9b2cdc02013dc4defd7e8c7c6d71925651498c04178e9649062b3f8e6a19de96a0cbdf04afb749015c076f900d496be9d49ce46d259b33440 + checksum: bbf5368dcaa0e55376cdcae0d998623a87cd10499a86f88ca7686e69e7d7de41964478b082f8787907aa2cb09bf495301b4ba9b32441061310375d848ae87b41 languageName: node linkType: hard -"@jupyterlab/filebrowser@npm:^4.3.4": - version: 4.3.4 - resolution: "@jupyterlab/filebrowser@npm:4.3.4" - dependencies: - "@jupyterlab/apputils": ^4.4.4 - "@jupyterlab/coreutils": ^6.3.4 - "@jupyterlab/docmanager": ^4.3.4 - "@jupyterlab/docregistry": ^4.3.4 - "@jupyterlab/services": ^7.3.4 - "@jupyterlab/statedb": ^4.3.4 - "@jupyterlab/statusbar": ^4.3.4 - "@jupyterlab/translation": ^4.3.4 - "@jupyterlab/ui-components": ^4.3.4 - "@lumino/algorithm": ^2.0.2 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/domutils": ^2.0.2 - "@lumino/dragdrop": ^2.1.5 - "@lumino/messaging": ^2.0.2 - "@lumino/polling": ^2.1.3 - "@lumino/signaling": ^2.1.3 - "@lumino/virtualdom": ^2.0.2 - "@lumino/widgets": ^2.5.0 - react: ^18.2.0 - checksum: 84d24fff8cd416e9de8e71489714044d05c5af263623d560a4f24605a84e3f48af4ffc9eac134f02c57c7712998242355c8959adc9a270937d54fa07885cb607 +"@jupyterlab/filebrowser-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/filebrowser-extension@npm:4.4.0" + dependencies: + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/docmanager": ^4.4.0 + "@jupyterlab/docregistry": ^4.4.0 + "@jupyterlab/filebrowser": ^4.4.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/statedb": ^4.4.0 + "@jupyterlab/statusbar": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 + "@lumino/algorithm": ^2.0.3 + "@lumino/commands": ^2.3.2 + "@lumino/widgets": ^2.7.0 + checksum: e446dbc38a870a61e9cd485620788e41742cd43aeb1046153e04882b38d704aa7e03d0b7bdc6824579c2d0475c51c9d7d8cde007221d35cdb9516cee3bd56c0d languageName: node linkType: hard -"@jupyterlab/filebrowser@npm:^4.4.0-rc.1, @jupyterlab/filebrowser@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/filebrowser@npm:4.4.0-rc.1" - dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/docmanager": ^4.4.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/statedb": ^4.4.0-rc.1 - "@jupyterlab/statusbar": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 +"@jupyterlab/filebrowser@npm:^4.4.0, @jupyterlab/filebrowser@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/filebrowser@npm:4.4.0" + dependencies: + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/docmanager": ^4.4.0 + "@jupyterlab/docregistry": ^4.4.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/statedb": ^4.4.0 + "@jupyterlab/statusbar": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 @@ -3607,201 +3322,201 @@ __metadata: "@lumino/virtualdom": ^2.0.3 "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 31ba501c3bab8a8ff54d673e693336486604a165b64f0255687f9d833c31877b4fa1cd73e1ef92d3ed9396ae740fe259b4843011e07efe9b2085fff207190130 + checksum: 9fc207d33a0cdcbd916acf5b5ff94ef4d89443073a90bedd36b8ab16b82f6bd0d3463a167e07b82fac9575cbb00f54cb899536b271d7f0864dcb362b732fb9fb languageName: node linkType: hard -"@jupyterlab/fileeditor-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/fileeditor-extension@npm:4.4.0-rc.1" +"@jupyterlab/fileeditor-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/fileeditor-extension@npm:4.4.0" dependencies: "@codemirror/commands": ^6.7.1 "@codemirror/search": ^6.5.8 - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/codeeditor": ^4.4.0-rc.1 - "@jupyterlab/codemirror": ^4.4.0-rc.1 - "@jupyterlab/completer": ^4.4.0-rc.1 - "@jupyterlab/console": ^4.4.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 - "@jupyterlab/documentsearch": ^4.4.0-rc.1 - "@jupyterlab/filebrowser": ^4.4.0-rc.1 - "@jupyterlab/fileeditor": ^4.4.0-rc.1 - "@jupyterlab/launcher": ^4.4.0-rc.1 - "@jupyterlab/lsp": ^4.4.0-rc.1 - "@jupyterlab/mainmenu": ^4.4.0-rc.1 - "@jupyterlab/observables": ^5.4.0-rc.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/statusbar": ^4.4.0-rc.1 - "@jupyterlab/toc": ^6.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/codeeditor": ^4.4.0 + "@jupyterlab/codemirror": ^4.4.0 + "@jupyterlab/completer": ^4.4.0 + "@jupyterlab/console": ^4.4.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/docregistry": ^4.4.0 + "@jupyterlab/documentsearch": ^4.4.0 + "@jupyterlab/filebrowser": ^4.4.0 + "@jupyterlab/fileeditor": ^4.4.0 + "@jupyterlab/launcher": ^4.4.0 + "@jupyterlab/lsp": ^4.4.0 + "@jupyterlab/mainmenu": ^4.4.0 + "@jupyterlab/observables": ^5.4.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/statusbar": ^4.4.0 + "@jupyterlab/toc": ^6.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/commands": ^2.3.2 "@lumino/coreutils": ^2.2.1 "@lumino/widgets": ^2.7.0 - checksum: 327b389d78de2b200ef5af11e4a93ffa2743c6f2b3acf4978b83fa67cee36b4cf08ed3cd128e2ecf90d23fd1ad7365fb3610d796bf9895f13e2192d8935944e2 + checksum: 563679cf3d12d25ea60b17067979cf33e1c1b3f54f83f8ff840e76d5f561ca1294b1d4532ef001143614fdfe0f030491d07f31ab0cd3193a3c2b2c73dbe7031a languageName: node linkType: hard -"@jupyterlab/fileeditor@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/fileeditor@npm:4.4.0-rc.1" +"@jupyterlab/fileeditor@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/fileeditor@npm:4.4.0" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/codeeditor": ^4.4.0-rc.1 - "@jupyterlab/codemirror": ^4.4.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 - "@jupyterlab/documentsearch": ^4.4.0-rc.1 - "@jupyterlab/lsp": ^4.4.0-rc.1 - "@jupyterlab/statusbar": ^4.4.0-rc.1 - "@jupyterlab/toc": ^6.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/codeeditor": ^4.4.0 + "@jupyterlab/codemirror": ^4.4.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/docregistry": ^4.4.0 + "@jupyterlab/documentsearch": ^4.4.0 + "@jupyterlab/lsp": ^4.4.0 + "@jupyterlab/statusbar": ^4.4.0 + "@jupyterlab/toc": ^6.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/commands": ^2.3.2 "@lumino/coreutils": ^2.2.1 "@lumino/messaging": ^2.0.3 "@lumino/widgets": ^2.7.0 react: ^18.2.0 regexp-match-indices: ^1.0.2 - checksum: 761d5eec861bede4a3898489b75b4cec5ce03d55c576bc12448f900ebe449bf90e5cf17c8a41bb130a2d83cb999bf1a3e0745ddf211a16f78252b685b88ce308 + checksum: 346663d54a9d2feb1a80e279deb4a62e19914990d98b971502d195161b4e34d963fd2abfcf8f5c75a17a2e0ed474ac53d7065698dc1f0c90df329094cabc4c0c languageName: node linkType: hard -"@jupyterlab/help-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/help-extension@npm:4.4.0-rc.1" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/mainmenu": ^4.4.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 +"@jupyterlab/help-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/help-extension@npm:4.4.0" + dependencies: + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/mainmenu": ^4.4.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 49e11c2c162f89bba6e9dbc801b2a93f665d1c4514d3e9c8c1996e39932b7660ee96c0085836ea06c0f0847c95dbece06514f349155e8c733b389be537f216e3 + checksum: b9a45dcdff59e10829e8d8bb4d6c1538d0330ebf97433fd2308a363053b3a191ab392d6bff51db2dbff7b0dc528e444d0e1140e1a6d967db06779c39cb34ea6d languageName: node linkType: hard -"@jupyterlab/htmlviewer-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/htmlviewer-extension@npm:4.4.0-rc.1" +"@jupyterlab/htmlviewer-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/htmlviewer-extension@npm:4.4.0" dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 - "@jupyterlab/htmlviewer": ^4.4.0-rc.1 - "@jupyterlab/observables": ^5.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 - checksum: 61913fa935642597b9023281cf218d217af51a3c53671c2d3fc530f8de1cd7dd98f4113dc5a96bbd9f4308736817ba25f8a7db0ff2d25aff2b96059f17a51ed4 + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/docregistry": ^4.4.0 + "@jupyterlab/htmlviewer": ^4.4.0 + "@jupyterlab/observables": ^5.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 + checksum: 1bfa8e7f30989632c647b86024a48e159bf27e5d8b14b96045a31fd4be20f0dcbf678d1fa8f8756eea417c0865e2d1dc9bb6e6c369ecb7580363bb0fcd038d3a languageName: node linkType: hard -"@jupyterlab/htmlviewer@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/htmlviewer@npm:4.4.0-rc.1" +"@jupyterlab/htmlviewer@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/htmlviewer@npm:4.4.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/docregistry": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/coreutils": ^2.2.1 "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 41fe7d0142ba78b8f686738830cd85d043f5ef530d84dedb85f382ee85c8c6595e48c9c6740dd633d68cc8706cad1126f26afc94abe96eca020e5ea111af3462 + checksum: 2f89bc99140a1b0bfe36baf63b881afbb6ede8bb332cf1391a4b3e05fb2a6ed94d6e084ac31dbccb95997d5a144a0f2f545deda2fa3f501b72462cd77cc18322 languageName: node linkType: hard -"@jupyterlab/hub-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/hub-extension@npm:4.4.0-rc.1" +"@jupyterlab/hub-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/hub-extension@npm:4.4.0" dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - checksum: c8b85309438fa239ca22cb701b9e877f5a97798db0c1fb08888c211b89e8041a25f707b902cf17d06aa9700c9cc4c013909cdff5489fa049050d93410ca63be2 + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/translation": ^4.4.0 + checksum: 5d8c7faf097fd2edcd4fcb35ada8539875ff92403c6d754203685ec4b7f9692fb9978032f52b02834cdefca36f53a51ed094d6c282271214356c629ffd04e1ff languageName: node linkType: hard -"@jupyterlab/imageviewer-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/imageviewer-extension@npm:4.4.0-rc.1" +"@jupyterlab/imageviewer-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/imageviewer-extension@npm:4.4.0" dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 - "@jupyterlab/imageviewer": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - checksum: 490674fb029163000f0edf3ebb4727cb696f18ec0d6bb8765b859a08e615cdea7f02f9abcc8624e328b43e521d2f479a64c99051002688f97ce8fb20b172dc0b + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/docregistry": ^4.4.0 + "@jupyterlab/imageviewer": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + checksum: 2af207a3154660fd028f4af5c17bd2202f601035116b11d57b97b391c7f952d205d7981f8090c2098259ed30c10af6afc8bc1ebce52480730941933325b535fe languageName: node linkType: hard -"@jupyterlab/imageviewer@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/imageviewer@npm:4.4.0-rc.1" +"@jupyterlab/imageviewer@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/imageviewer@npm:4.4.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/docregistry": ^4.4.0 "@lumino/coreutils": ^2.2.1 "@lumino/messaging": ^2.0.3 "@lumino/widgets": ^2.7.0 - checksum: 9d4fcdff547ae3c760d3021d6934d8bf5bec6ac22fc86dcd8df680c6fe4cdc4755a6e72a149ba2bf07d0600f35f05fe82d0bcf43df6b6ad6e88be0219f26195d + checksum: e9cd0077f3d102dc4de49a671d1e3c3ec04901547b9bebe7580f9a74222baaa34004ca355ce7b7dba76ed3558951ee8ce9f3c8fa630f0e4f517eb0c31af943a7 languageName: node linkType: hard -"@jupyterlab/inspector@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/inspector@npm:4.4.0-rc.1" - dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/codeeditor": ^4.4.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/statedb": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 +"@jupyterlab/inspector@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/inspector@npm:4.4.0" + dependencies: + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/codeeditor": ^4.4.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/statedb": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 "@lumino/polling": ^2.1.4 "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 - checksum: 74628070d1632b5ba8e6823bba56ced2218b070e6ee8eb7cea333713f9d0927bff0c6e7d435e149a3281be3eef508b690f279fbaab3c51763ad55caab27172f4 + checksum: 869870681b45d0015cb57d1b95612e4cf65f9438bbfc760400f193a04b4121d5b551e967b5554631680f377ff80569c00fc9dafeb1753b49fc4658d1d31602fe languageName: node linkType: hard -"@jupyterlab/javascript-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/javascript-extension@npm:4.4.0-rc.1" +"@jupyterlab/javascript-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/javascript-extension@npm:4.4.0" dependencies: - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 - checksum: d55757e51da299eee5a9037517f00a5a32a47bf6c139450963a1e326b9a9b8915cd154e57ec7a1822e2c541dfed48d82d93e8e30644298a7cdf7252e5afd28be + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0 + checksum: 2151844dd02bac1c4f78ed03bbc8f390bab0fbce0a013640801815b12ed6711e3c9138ca2009d49d8c13e19ea9f2a383d3465631917e6513688d54924881940e languageName: node linkType: hard -"@jupyterlab/json-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/json-extension@npm:4.4.0-rc.1" +"@jupyterlab/json-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/json-extension@npm:4.4.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/codemirror": ^4.4.0-rc.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/codemirror": ^4.4.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lezer/highlight": ^1.2.0 "@lumino/coreutils": ^2.2.1 "@lumino/messaging": ^2.0.3 @@ -3811,17 +3526,17 @@ __metadata: react-highlight-words: ^0.20.0 react-json-tree: ^0.18.0 style-mod: ^4.0.0 - checksum: 2b9172601f3af819c17982eb47d440ba9d954b3c5cf3f84d016fe1acd8e2d9a9160e7ac0965f6a4c415d79b85489fd827d40224c0ca53680ebce26137db9d3ab + checksum: 738b8a95d3ea688b7552014f1a35f4696bfc043e5a3a79bda41ee98945693216b0c860cd1fad2d1185da9c7d61a74630919c15fe7d8e1d674aaa4e02bdd9c932 languageName: node linkType: hard -"@jupyterlab/launcher@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/launcher@npm:4.4.0-rc.1" +"@jupyterlab/launcher@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/launcher@npm:4.4.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/commands": ^2.3.2 "@lumino/coreutils": ^2.2.1 @@ -3829,105 +3544,82 @@ __metadata: "@lumino/properties": ^2.0.3 "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: e5895a41d45c20a160022553c75fdd6b92d152c101ce9b96bd85b67d5bf510ef50d01a95384dd5ac7021da6abdf847443363aba35e8cfe99e1dca19cce50fc67 + checksum: eac28828f81d18755bd281734cfc706bbdf3627964128c1df487cd4f9e5892ca343123a08128d179f01f85607eca46603783135d141c1939c978dc7b00292dba languageName: node linkType: hard -"@jupyterlab/logconsole-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/logconsole-extension@npm:4.4.0-rc.1" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 - "@jupyterlab/logconsole": ^4.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/statusbar": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 +"@jupyterlab/logconsole-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/logconsole-extension@npm:4.4.0" + dependencies: + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/docregistry": ^4.4.0 + "@jupyterlab/logconsole": ^4.4.0 + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/statusbar": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/coreutils": ^2.2.1 "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: b49a7a16162dd612f8e7acb24d505cfaa4540957c82630c53392e5d93be8333795777c5a31cd3a5c3864f89cff0ba725980832a86778baf952a65eacf2659a14 + checksum: 114b529883acefd3b5d15899a8eb4006c5eccd0d732f6ccb63d8d30d5ae55c1e1890ba7a8da73df544da2753ec0c2950a81729c8621bce4c37f395d0ffae0c2a languageName: node linkType: hard -"@jupyterlab/logconsole@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/logconsole@npm:4.4.0-rc.1" - dependencies: - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/nbformat": ^4.4.0-rc.1 - "@jupyterlab/outputarea": ^4.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 +"@jupyterlab/logconsole@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/logconsole@npm:4.4.0" + dependencies: + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/nbformat": ^4.4.0 + "@jupyterlab/outputarea": ^4.4.0 + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/translation": ^4.4.0 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 "@lumino/messaging": ^2.0.3 "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 - checksum: 1c5318b82f518dec40335f8342bf05b995d63baf69d4eff635dd70e0509a4b07eda3e4cbcf52eff941f7a6ae5263745bae8b487c183fcbf47f20755e67128e4d + checksum: b8a178ccaa563623b0e3e3332e68e3d03d88656cce396f5bed6e5b7bf9770ffede96398ea1c5d53ee2b4917fa3b66c7f8c4d39eab2339191d426f631926c3534 languageName: node linkType: hard -"@jupyterlab/lsp-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/lsp-extension@npm:4.4.0-rc.1" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/lsp": ^4.4.0-rc.1 - "@jupyterlab/running": ^4.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 +"@jupyterlab/lsp-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/lsp-extension@npm:4.4.0" + dependencies: + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/lsp": ^4.4.0 + "@jupyterlab/running": ^4.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/coreutils": ^2.2.1 "@lumino/polling": ^2.1.4 "@lumino/signaling": ^2.1.4 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: 6ddfeabffc1e5dc44704e7da5d7a81a941b9eacf50382bdef8618e5c4bdf5879d8da7da54b6413c146cc53887d97501edec1a3704674e68ee5d79aaaced5142f - languageName: node - linkType: hard - -"@jupyterlab/lsp@npm:^4.3.4": - version: 4.3.4 - resolution: "@jupyterlab/lsp@npm:4.3.4" - dependencies: - "@jupyterlab/apputils": ^4.4.4 - "@jupyterlab/codeeditor": ^4.3.4 - "@jupyterlab/codemirror": ^4.3.4 - "@jupyterlab/coreutils": ^6.3.4 - "@jupyterlab/docregistry": ^4.3.4 - "@jupyterlab/services": ^7.3.4 - "@jupyterlab/translation": ^4.3.4 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.5.0 - lodash.mergewith: ^4.6.1 - vscode-jsonrpc: ^6.0.0 - vscode-languageserver-protocol: ^3.17.0 - vscode-ws-jsonrpc: ~1.0.2 - checksum: 478bed4c947d01d1cec5e6afafeb33c3b6a1fe203c0eaab2890dd1f4a920678785c7d4a47dc7627b2a55fdf61744a28e9d289774b8706d8df8600cbb014f2977 + checksum: ada492614fd5372af7dc1cc5e7f210311806e4acadfe1a7e292e6f5ab0c177dbf3063ef6a6676737275837d8279ce32e45b21c6703b5a0df34e66e0dbe664b71 languageName: node linkType: hard -"@jupyterlab/lsp@npm:^4.4.0-rc.1, @jupyterlab/lsp@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/lsp@npm:4.4.0-rc.1" - dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/codeeditor": ^4.4.0-rc.1 - "@jupyterlab/codemirror": ^4.4.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 +"@jupyterlab/lsp@npm:^4.4.0, @jupyterlab/lsp@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/lsp@npm:4.4.0" + dependencies: + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/codeeditor": ^4.4.0 + "@jupyterlab/codemirror": ^4.4.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/docregistry": ^4.4.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/translation": ^4.4.0 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 "@lumino/signaling": ^2.1.4 @@ -3936,164 +3628,164 @@ __metadata: vscode-jsonrpc: ^6.0.0 vscode-languageserver-protocol: ^3.17.0 vscode-ws-jsonrpc: ~1.0.2 - checksum: da3edacdb16cfa01e7a078f65f00ff168e6f0b42a28798422483f77df0130972f233058d9877322b44f06d1658693dbff82c58acde74095f67e62bbad43d64cc + checksum: 0b81665dc4da42572d2d890c327291f1413bf3259d10fef0588d793c0cd96360f481c6f99e8d8c0c1e16046f0f2b790dd635ba0339f4cd7c2da38b3056e3c5dc languageName: node linkType: hard -"@jupyterlab/mainmenu-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/mainmenu-extension@npm:4.4.0-rc.1" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/docmanager": ^4.4.0-rc.1 - "@jupyterlab/filebrowser": ^4.4.0-rc.1 - "@jupyterlab/mainmenu": ^4.4.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 +"@jupyterlab/mainmenu-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/mainmenu-extension@npm:4.4.0" + dependencies: + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/docmanager": ^4.4.0 + "@jupyterlab/filebrowser": ^4.4.0 + "@jupyterlab/mainmenu": ^4.4.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 "@lumino/messaging": ^2.0.3 "@lumino/widgets": ^2.7.0 - checksum: a5cbf9242a22e992b9fe307df3c1715d88004c93639289286c6e70ff1be6f0e9e8f83137b3950fe9756571bfb3ce9f83f4fb9faab453641b797069ea14ee038e + checksum: a3d907a1b6cc4c9c16a1728a837405bb678b7d7a8fe87f86ac4aa684359309cfd5a8eca783acc8863f05d540a633453edc35f44a4135bbe5b8af67fb9f2cc783 languageName: node linkType: hard -"@jupyterlab/mainmenu@npm:^4.4.0-rc.1, @jupyterlab/mainmenu@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/mainmenu@npm:4.4.0-rc.1" +"@jupyterlab/mainmenu@npm:^4.4.0, @jupyterlab/mainmenu@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/mainmenu@npm:4.4.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/commands": ^2.3.2 "@lumino/coreutils": ^2.2.1 "@lumino/widgets": ^2.7.0 - checksum: 06b155bdeeeae3ea7bb5b9d64b615a7a02bdcacdb090b6f1e53bfc6f28fa476943edaf5dbcf2c6686725d0c761878283dc6de55a5e598ebff22ce3693ea8f414 + checksum: 334b9e90171f92e9be8116d33dbb3346b8f6ac428cdc18313e98f2ef9f8d5a4fb6b872d14b4dcf44d8a7ccbf15d7d8f8e95480f55efe032a6a53d5f634f72171 languageName: node linkType: hard -"@jupyterlab/markdownviewer-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/markdownviewer-extension@npm:4.4.0-rc.1" +"@jupyterlab/markdownviewer-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/markdownviewer-extension@npm:4.4.0" dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/markdownviewer": ^4.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/toc": ^6.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - checksum: f3a1e59357b49f368f9202d1a9b833b79c23425d58f3f8c1df5af52146d25c39f39f68e55b4cf37239b4a52de3a2e4408380c609bf2bbe293dd71a81b5fb20c7 + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/markdownviewer": ^4.4.0 + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/toc": ^6.4.0 + "@jupyterlab/translation": ^4.4.0 + checksum: 136ffe63a5d6fe4f6ad538e0615f8322786e03abeacd4bdd21f7dddf06876bbbfe510bb882db99570ad16d80fb6394c57a67cb750a7687b34f996f2d3da569c1 languageName: node linkType: hard -"@jupyterlab/markdownviewer@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/markdownviewer@npm:4.4.0-rc.1" - dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/toc": ^6.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 +"@jupyterlab/markdownviewer@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/markdownviewer@npm:4.4.0" + dependencies: + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/docregistry": ^4.4.0 + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/toc": ^6.4.0 + "@jupyterlab/translation": ^4.4.0 "@lumino/coreutils": ^2.2.1 "@lumino/messaging": ^2.0.3 "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 - checksum: ad5b7ce1265f1688d2807fbaf3c02f13ee613bac18b1d17fa974dda66645140e4dde11fcd31a660b7735088fc34db520cae3eee68d2d4906a69b81f170a442dd + checksum: 5295f14ed89b03b1b7195a5f6726bd304bcdbb2279324172c67a226d0ba89065ec1033d6e15b31777dc19df922cbe6de6f825319e0df6bd86e3f049f4c5f8f1b languageName: node linkType: hard -"@jupyterlab/markedparser-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/markedparser-extension@npm:4.4.0-rc.1" +"@jupyterlab/markedparser-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/markedparser-extension@npm:4.4.0" dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/codemirror": ^4.4.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/mermaid": ^4.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/codemirror": ^4.4.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/mermaid": ^4.4.0 + "@jupyterlab/rendermime": ^4.4.0 "@lumino/coreutils": ^2.2.1 marked: ^15.0.7 marked-gfm-heading-id: ^4.1.1 marked-mangle: ^1.1.10 - checksum: 20ef670cb574c8b8cae713b4ce6717c45317f41d0018b056e3dd4ddcf8af025feb3415812ea223edcd3c44cbfceed5537137d6244b5c8d31624df403baa2dbe6 + checksum: 3956687b65b389977debe9183d53d6a9ad2ba050930648900c7c321a990f50a1763f1f56d6b4af0c2ef86e6cc6bc57018822f29b2d00b77831294c13d6bcf039 languageName: node linkType: hard -"@jupyterlab/mathjax-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/mathjax-extension@npm:4.4.0-rc.1" +"@jupyterlab/mathjax-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/mathjax-extension@npm:4.4.0" dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/rendermime": ^4.4.0 "@lumino/coreutils": ^2.2.1 mathjax-full: ^3.2.2 - checksum: 6381a0aa36bc4bb4e396003757fd153dadd8363ada6ea8d83753a39793f7ff1574f8021953f80abfda06d0ddea9fd36f52eed05c8143f63b098ab04d889010be + checksum: 9ecea7cf8a8909d773dcf0c47b2d4434ee1023b0a9d570371c7e06eca34242e1f95529e7e970d50a97e228598136b345c076b988863622465c8df4344a46a7cc languageName: node linkType: hard -"@jupyterlab/mermaid-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/mermaid-extension@npm:4.4.0-rc.1" +"@jupyterlab/mermaid-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/mermaid-extension@npm:4.4.0" dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/mermaid": ^4.4.0-rc.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - checksum: fe1c86300aa8c70f0b0d958a7b73df1580b90f24a9ff605c0efcf1b2f1212e95f0e033d25d8ab34344f6c1014d9c75cc2ee01a9c04a456765b338f1b355db2fa + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/mermaid": ^4.4.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0 + "@jupyterlab/translation": ^4.4.0 + checksum: 4781156be5da0b387cf84c10d4c781fc4d755011bcf8978e7a44ae7327432bb5c180f53ecf8ea478ea2577f520311aabff72c3314fbfe1d1d853a4731d4c6d88 languageName: node linkType: hard -"@jupyterlab/mermaid@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/mermaid@npm:4.4.0-rc.1" +"@jupyterlab/mermaid@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/mermaid@npm:4.4.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0 "@lumino/coreutils": ^2.2.1 "@lumino/widgets": ^2.7.0 "@mermaid-js/layout-elk": ^0.1.7 mermaid: ^11.6.0 - checksum: 625c2680ac792f3297e0d447be0ac3ccaa644c92e3c979805872e7c7ca1f7524d52d468c121e7475581e02046ca64f1b5df1480d6f3d34a8b069527a5a667440 + checksum: 15a8ae42e79f1244d20a4f627aafb8b9f909452e1d704ce48121b67b5d55956046eb210c901221967e902c7fe1c7e692dddfc472bc1a3ef564820a4fbdf0d15f languageName: node linkType: hard -"@jupyterlab/metadataform-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/metadataform-extension@npm:4.4.0-rc.1" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/metadataform": ^4.4.0-rc.1 - "@jupyterlab/notebook": ^4.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 +"@jupyterlab/metadataform-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/metadataform-extension@npm:4.4.0" + dependencies: + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/metadataform": ^4.4.0 + "@jupyterlab/notebook": ^4.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/coreutils": ^2.2.1 - checksum: 3285248b97f2d02abbc7a85491541d727c305c9a74f2beb08f958c49803cb981292144f055f41fa3b4a95dc73c881d3b05c46cec6a267d203c5c35fe4b1677b1 + checksum: 3fc28733f5ad28ac397c14c08ca0863fcf2d93eec3f0880dc5ac70951a7c7b01ac4427eddc6a9e9aebe5bca8491af9cb13dff5a1cea1e34278efc56a29752875 languageName: node linkType: hard -"@jupyterlab/metadataform@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/metadataform@npm:4.4.0-rc.1" - dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/nbformat": ^4.4.0-rc.1 - "@jupyterlab/notebook": ^4.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 +"@jupyterlab/metadataform@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/metadataform@npm:4.4.0" + dependencies: + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/nbformat": ^4.4.0 + "@jupyterlab/notebook": ^4.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/coreutils": ^2.2.1 "@lumino/messaging": ^2.0.3 "@lumino/widgets": ^2.7.0 @@ -4101,62 +3793,53 @@ __metadata: "@rjsf/validator-ajv8": ^5.13.4 json-schema: ^0.4.0 react: ^18.2.0 - checksum: 10c1cb4162f2403e1ed9da079183d47f338b514bc404c331d091ef01f439e4569fe4fda46db0fe948808f73d7f9be6a16dcd981b639bd19b12456a87d447d757 - languageName: node - linkType: hard - -"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.3.4": - version: 4.3.4 - resolution: "@jupyterlab/nbformat@npm:4.3.4" - dependencies: - "@lumino/coreutils": ^2.2.0 - checksum: 7c2b2bf9ce1632b8d4b0aa415e19c5b25e0fb155457cdd9fed9d7a162e477e728fefdef07d18ac25aa8ac1223534615abbc0e1f7d58c0607dc66326d694a8823 + checksum: 05a54646d9b27fc4ce67e9a4744d29c69bc6dcde7a598e6284c1ace6375a72379bb2e2d9f89540201d198c05c4bfc13aea34160f2adf0bfdb8630183a7350d21 languageName: node linkType: hard -"@jupyterlab/nbformat@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/nbformat@npm:4.4.0-rc.1" +"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/nbformat@npm:4.4.0" dependencies: "@lumino/coreutils": ^2.2.1 - checksum: efb7489320c1dd3b192de3b2c96e3642c13c62b9eba18efe91f5d8fdf59281b6357d0b7c9bfcba18c3ca1c3da811f2618c1e2aee8ce1ff44d28429f5f15f6aee + checksum: b9d5c12e339f67334f4240e978c45078b588904d31571fc8cc4cb1667ad06442890481575e86a6d4290a6bdecf57500bc69fd1f3ca32007f1c87718ad55333a7 languageName: node linkType: hard -"@jupyterlab/notebook-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/notebook-extension@npm:4.4.0-rc.1" +"@jupyterlab/notebook-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/notebook-extension@npm:4.4.0" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/cells": ^4.4.0-rc.1 - "@jupyterlab/codeeditor": ^4.4.0-rc.1 - "@jupyterlab/codemirror": ^4.4.0-rc.1 - "@jupyterlab/completer": ^4.4.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/docmanager": ^4.4.0-rc.1 - "@jupyterlab/docmanager-extension": ^4.4.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 - "@jupyterlab/documentsearch": ^4.4.0-rc.1 - "@jupyterlab/filebrowser": ^4.4.0-rc.1 - "@jupyterlab/launcher": ^4.4.0-rc.1 - "@jupyterlab/logconsole": ^4.4.0-rc.1 - "@jupyterlab/lsp": ^4.4.0-rc.1 - "@jupyterlab/mainmenu": ^4.4.0-rc.1 - "@jupyterlab/metadataform": ^4.4.0-rc.1 - "@jupyterlab/nbformat": ^4.4.0-rc.1 - "@jupyterlab/notebook": ^4.4.0-rc.1 - "@jupyterlab/observables": ^5.4.0-rc.1 - "@jupyterlab/property-inspector": ^4.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/statedb": ^4.4.0-rc.1 - "@jupyterlab/statusbar": ^4.4.0-rc.1 - "@jupyterlab/toc": ^6.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/cells": ^4.4.0 + "@jupyterlab/codeeditor": ^4.4.0 + "@jupyterlab/codemirror": ^4.4.0 + "@jupyterlab/completer": ^4.4.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/docmanager": ^4.4.0 + "@jupyterlab/docmanager-extension": ^4.4.0 + "@jupyterlab/docregistry": ^4.4.0 + "@jupyterlab/documentsearch": ^4.4.0 + "@jupyterlab/filebrowser": ^4.4.0 + "@jupyterlab/launcher": ^4.4.0 + "@jupyterlab/logconsole": ^4.4.0 + "@jupyterlab/lsp": ^4.4.0 + "@jupyterlab/mainmenu": ^4.4.0 + "@jupyterlab/metadataform": ^4.4.0 + "@jupyterlab/nbformat": ^4.4.0 + "@jupyterlab/notebook": ^4.4.0 + "@jupyterlab/observables": ^5.4.0 + "@jupyterlab/property-inspector": ^4.4.0 + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/statedb": ^4.4.0 + "@jupyterlab/statusbar": ^4.4.0 + "@jupyterlab/toc": ^6.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/commands": ^2.3.2 "@lumino/coreutils": ^2.2.1 @@ -4166,70 +3849,32 @@ __metadata: "@lumino/widgets": ^2.7.0 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: 0805568b123db645600a3c430946827306bdfaea2b1f4859d33620e3d8acedc047575bbb2a6f7d8492450ec34128a10b70c166b3e9f36e34f7e01536e3009142 - languageName: node - linkType: hard - -"@jupyterlab/notebook@npm:^4.3.2": - version: 4.3.4 - resolution: "@jupyterlab/notebook@npm:4.3.4" - dependencies: - "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.4.4 - "@jupyterlab/cells": ^4.3.4 - "@jupyterlab/codeeditor": ^4.3.4 - "@jupyterlab/codemirror": ^4.3.4 - "@jupyterlab/coreutils": ^6.3.4 - "@jupyterlab/docregistry": ^4.3.4 - "@jupyterlab/documentsearch": ^4.3.4 - "@jupyterlab/lsp": ^4.3.4 - "@jupyterlab/nbformat": ^4.3.4 - "@jupyterlab/observables": ^5.3.4 - "@jupyterlab/rendermime": ^4.3.4 - "@jupyterlab/services": ^7.3.4 - "@jupyterlab/settingregistry": ^4.3.4 - "@jupyterlab/statusbar": ^4.3.4 - "@jupyterlab/toc": ^6.3.4 - "@jupyterlab/translation": ^4.3.4 - "@jupyterlab/ui-components": ^4.3.4 - "@lumino/algorithm": ^2.0.2 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/domutils": ^2.0.2 - "@lumino/dragdrop": ^2.1.5 - "@lumino/messaging": ^2.0.2 - "@lumino/polling": ^2.1.3 - "@lumino/properties": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/virtualdom": ^2.0.2 - "@lumino/widgets": ^2.5.0 - react: ^18.2.0 - checksum: 4ee00b85f059cc9fe0cbd747db8566b728e2fe33a79f634a16a913c637e8dffca4a6dc16bdacb94db6fded96ad24770f518768ca64e2717c9f1f9422d6784330 + checksum: f68d051bab644836d5b50e88df0ddb5219f683ed5ccc4a594686d99d1eeea3176c6ec1259dc416d1aad0e6ee047d4269a7e2bd474fd131323474db704071522b languageName: node linkType: hard -"@jupyterlab/notebook@npm:^4.4.0-rc.1, @jupyterlab/notebook@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/notebook@npm:4.4.0-rc.1" +"@jupyterlab/notebook@npm:^4.3.2, @jupyterlab/notebook@npm:^4.4.0, @jupyterlab/notebook@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/notebook@npm:4.4.0" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/cells": ^4.4.0-rc.1 - "@jupyterlab/codeeditor": ^4.4.0-rc.1 - "@jupyterlab/codemirror": ^4.4.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 - "@jupyterlab/documentsearch": ^4.4.0-rc.1 - "@jupyterlab/lsp": ^4.4.0-rc.1 - "@jupyterlab/nbformat": ^4.4.0-rc.1 - "@jupyterlab/observables": ^5.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/statusbar": ^4.4.0-rc.1 - "@jupyterlab/toc": ^6.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/cells": ^4.4.0 + "@jupyterlab/codeeditor": ^4.4.0 + "@jupyterlab/codemirror": ^4.4.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/docregistry": ^4.4.0 + "@jupyterlab/documentsearch": ^4.4.0 + "@jupyterlab/lsp": ^4.4.0 + "@jupyterlab/nbformat": ^4.4.0 + "@jupyterlab/observables": ^5.4.0 + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/statusbar": ^4.4.0 + "@jupyterlab/toc": ^6.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 @@ -4242,69 +3887,34 @@ __metadata: "@lumino/virtualdom": ^2.0.3 "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: a7c0930de5bbfbecb5a047bdbb6987ea7353978f3979952b78dba3f02266679e494d3131c873b5e841c8c2cd8bcfa42d62d4d064b0c158edb37a66362aa1c227 - languageName: node - linkType: hard - -"@jupyterlab/observables@npm:^5.3.4": - version: 5.3.4 - resolution: "@jupyterlab/observables@npm:5.3.4" - dependencies: - "@lumino/algorithm": ^2.0.2 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/signaling": ^2.1.3 - checksum: ff8129e0801da786546091d534ff38a76b786efe59f1a20a928c638e7b0354dde5d871c59cece1df598731bff3fac9fe527b228a7da44430d22c9b1a7683569b + checksum: f0d364594afa4d9ff416d657d549c51284ef555279bf59f9020afd6aa58930c4f5b965a623371c34b7eb5da02d3be7a34c0c09f0c67d121c68f255c23eae59bb languageName: node linkType: hard -"@jupyterlab/observables@npm:^5.4.0-rc.1": - version: 5.4.0-rc.1 - resolution: "@jupyterlab/observables@npm:5.4.0-rc.1" +"@jupyterlab/observables@npm:^5.4.0": + version: 5.4.0 + resolution: "@jupyterlab/observables@npm:5.4.0" dependencies: "@lumino/algorithm": ^2.0.3 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 "@lumino/messaging": ^2.0.3 "@lumino/signaling": ^2.1.4 - checksum: eda86553394af93ca3f34ad2ac70c071d7fd1fb11c343b6204cbdddf7994e70f3a2299b8def8461fd66539421d6b1d024677a1d6009f8174ec9ff867a84e0929 + checksum: 4958117211330fd054fba8de279d7f521c78d9ebe3c23dd4ed5c53ab3a3360b53c8c04244f653092bd4f8fb7e2ef5a4f2f9c8a8106dab9d29ff4425154b2a4b5 languageName: node linkType: hard -"@jupyterlab/outputarea@npm:^4.3.4": - version: 4.3.4 - resolution: "@jupyterlab/outputarea@npm:4.3.4" - dependencies: - "@jupyterlab/apputils": ^4.4.4 - "@jupyterlab/nbformat": ^4.3.4 - "@jupyterlab/observables": ^5.3.4 - "@jupyterlab/rendermime": ^4.3.4 - "@jupyterlab/rendermime-interfaces": ^3.11.4 - "@jupyterlab/services": ^7.3.4 - "@jupyterlab/translation": ^4.3.4 - "@lumino/algorithm": ^2.0.2 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/properties": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.5.0 - checksum: 4cc6c65af6e14838958a91f8f0a113e073426612503610979ea48a407ab6ceabd2e9faaab638f89a7e2a12b2d925440617589cb6d043767bad3f510ab9fa6903 - languageName: node - linkType: hard - -"@jupyterlab/outputarea@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/outputarea@npm:4.4.0-rc.1" - dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/nbformat": ^4.4.0-rc.1 - "@jupyterlab/observables": ^5.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 +"@jupyterlab/outputarea@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/outputarea@npm:4.4.0" + dependencies: + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/nbformat": ^4.4.0 + "@jupyterlab/observables": ^5.4.0 + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/translation": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 @@ -4312,163 +3922,133 @@ __metadata: "@lumino/properties": ^2.0.3 "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 - checksum: 8285ff4acd2281909c427dd086c209ca02eb1ca3aced50bcbebd415751209e081d30e1ad95906f156d3b9e87265d1a3a2ec20873f15eb24144f28d84fb0d41a5 + checksum: d1ee8c3f19674d437b397008bee222241e7fcc6e37af811609d738dda3bb0351af8be350038fe0b676c6e6c18d5f628abb9aed373cb3f562059945a9ff8eb55d languageName: node linkType: hard -"@jupyterlab/pdf-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/pdf-extension@npm:4.4.0-rc.1" +"@jupyterlab/pdf-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/pdf-extension@npm:4.4.0" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 "@lumino/widgets": ^2.7.0 - checksum: 7dd5f9a9314037c0b34653a66dbb1de7ba7d5eaa8b10c74ca6c1103ed2a413bfb4a5178c129e884316a5b2be0857177c6cf3577cbbc49822d042d9f2523bafda + checksum: 1515364fc4cd0fd16740a8ef7326331c309bc7a85643c0dcd7ca4629d083895f567b36b7fe19812c124b9123378ff71693be90b2021c0c4dc92d5c1713b4e118 languageName: node linkType: hard -"@jupyterlab/pluginmanager-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/pluginmanager-extension@npm:4.4.0-rc.1" +"@jupyterlab/pluginmanager-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/pluginmanager-extension@npm:4.4.0" dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/pluginmanager": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/pluginmanager": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/coreutils": ^2.2.1 - checksum: 377008e058557dd7f29658cf3c8f72540683709e497e7d9de475bf5ef7bf66a306737c156f60de4441be8883b216c10280aae724c0ea195aa0847c3308bbfc9a + checksum: fccb1bbd59bbe13e22a5124315f8998379ead0d015850d783f09c6ee79e86f0e9729271fd0e4d2f2d22509c8892785fec8e02024454be952ef9c912f5bc1d36b languageName: node linkType: hard -"@jupyterlab/pluginmanager@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/pluginmanager@npm:4.4.0-rc.1" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 +"@jupyterlab/pluginmanager@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/pluginmanager@npm:4.4.0" + dependencies: + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/coreutils": ^2.2.1 "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 12c8ea78bf93e69d38984d2bf1e17f25c1421fa7244a155083d2b22d587f5d9fa6fa8471007d361fb99002a2216cafe914a5999e5c3f85000db948069e59ae78 + checksum: 568f4b25df0dae5f4703f2329f3f6647647d827940aa52f18ce624ac42a575c549d308eb1bbeedd71fa6a09d8fc97599cad5c5caea5d440c4f20391efda3fd00 languageName: node linkType: hard -"@jupyterlab/property-inspector@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/property-inspector@npm:4.4.0-rc.1" +"@jupyterlab/property-inspector@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/property-inspector@npm:4.4.0" dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 3f4d3796fc45f8c43e7fb5c4243efbee6f0b107e2fc15d2caf6c27d364e8e658bbce732d929595b05c6b0f7ae3f4738435e9e6d36488db1af2d67fb80225619d + checksum: 70c616c9cea5867f39b56d67616631487c6b7228fdb07e639e26a43a1f7b6e8aadcdca9e7292857f175606c4f2869aa9489460bed5faba0df7642b9f10a94cfc languageName: node linkType: hard -"@jupyterlab/rendermime-interfaces@npm:^3.11.4": - version: 3.11.4 - resolution: "@jupyterlab/rendermime-interfaces@npm:3.11.4" - dependencies: - "@lumino/coreutils": ^1.11.0 || ^2.2.0 - "@lumino/widgets": ^1.37.2 || ^2.5.0 - checksum: c7d534b97bebeb7122418148469f66322e821bac7baba6952fe4f26fdf2b6965b090dbfd61f2a5fe2174f83e4eaaa3854c7e49d417430a91273da1d93d2a2bdb - languageName: node - linkType: hard - -"@jupyterlab/rendermime-interfaces@npm:^3.12.0-rc.1, @jupyterlab/rendermime-interfaces@npm:~3.12.0-rc.1": - version: 3.12.0-rc.1 - resolution: "@jupyterlab/rendermime-interfaces@npm:3.12.0-rc.1" +"@jupyterlab/rendermime-interfaces@npm:^3.12.0, @jupyterlab/rendermime-interfaces@npm:~3.12.0": + version: 3.12.0 + resolution: "@jupyterlab/rendermime-interfaces@npm:3.12.0" dependencies: "@lumino/coreutils": ^1.11.0 || ^2.2.1 "@lumino/widgets": ^1.37.2 || ^2.7.0 - checksum: 4f1f8158cc35bf8ebabdd9f1aea0c98c6b9f47d5a5a1bffd0d4b7bc76350702c7f171622199986b1d3f31b2fd3556ceded7e587d5e0db965f222b48c8ac8910e - languageName: node - linkType: hard - -"@jupyterlab/rendermime@npm:^4.3.2, @jupyterlab/rendermime@npm:^4.3.4": - version: 4.3.4 - resolution: "@jupyterlab/rendermime@npm:4.3.4" - dependencies: - "@jupyterlab/apputils": ^4.4.4 - "@jupyterlab/coreutils": ^6.3.4 - "@jupyterlab/nbformat": ^4.3.4 - "@jupyterlab/observables": ^5.3.4 - "@jupyterlab/rendermime-interfaces": ^3.11.4 - "@jupyterlab/services": ^7.3.4 - "@jupyterlab/translation": ^4.3.4 - "@lumino/coreutils": ^2.2.0 - "@lumino/messaging": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.5.0 - lodash.escape: ^4.0.1 - checksum: 3097e6eb133403b6cf52a8021612949ebdedde21559a23570e2241109840a98531886ff5c6dca217a8afe62e9e3229fa049bb4711bba524e2aa9e7ea3e96eaeb + checksum: e9a5adfbcb9a50d5f9324f5930d0007dbc3a8fb205af71570e56f5037479f234825b79f266179708d53030f9302d066291c9e1af7945e70d25b865057954b4a9 languageName: node linkType: hard -"@jupyterlab/rendermime@npm:^4.4.0-rc.1, @jupyterlab/rendermime@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/rendermime@npm:4.4.0-rc.1" - dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/nbformat": ^4.4.0-rc.1 - "@jupyterlab/observables": ^5.4.0-rc.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 +"@jupyterlab/rendermime@npm:^4.3.2, @jupyterlab/rendermime@npm:^4.4.0, @jupyterlab/rendermime@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/rendermime@npm:4.4.0" + dependencies: + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/nbformat": ^4.4.0 + "@jupyterlab/observables": ^5.4.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/translation": ^4.4.0 "@lumino/coreutils": ^2.2.1 "@lumino/messaging": ^2.0.3 "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 lodash.escape: ^4.0.1 - checksum: e77026755af411358f3b47c8c7ef8221cb435c810aaa0eaf3d8b57b8e4e9bd79abc2b15688d26de69cad15a5d8b23e41c2a5ba871eb4e2a5f6d8254a51618745 + checksum: ae650501a65e082bfe54041292dfd2c762378ff06a50971a680af6d42310029ea1b3d72a4a2e4e261e055526d412e53b172ce23d5e6c7437cacfc9a41d016272 languageName: node linkType: hard -"@jupyterlab/running-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/running-extension@npm:4.4.0-rc.1" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/docmanager": ^4.4.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 - "@jupyterlab/running": ^4.4.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/statedb": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 +"@jupyterlab/running-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/running-extension@npm:4.4.0" + dependencies: + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/docmanager": ^4.4.0 + "@jupyterlab/docregistry": ^4.4.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0 + "@jupyterlab/running": ^4.4.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/statedb": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/commands": ^2.3.2 "@lumino/polling": ^2.1.4 "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 74d4c909bcd0ac1e2016120e2a3a07c30586350b93d9d530146baefb7ea7f0274df3234f029bdbd0fbc5b9491d2a983165fb9585bc746cc13d25a3fa179cbd69 + checksum: 433e28e5e425c88b7917ca4310d9e3e4e62f4401dd36869b249c3aba81928833f252d0240ac8a922d5f2a9b788526c305f1314c3b633451fd71f31431bb6a0a3 languageName: node linkType: hard -"@jupyterlab/running@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/running@npm:4.4.0-rc.1" +"@jupyterlab/running@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/running@npm:4.4.0" dependencies: "@jupyter/react-components": ^0.16.6 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/statedb": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/statedb": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 "@lumino/domutils": ^2.0.3 @@ -4476,91 +4056,72 @@ __metadata: "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 498954dba7f763aa7f44cef05c29e45ae8b8d1a4c115022e6c0dd53d96a83c63f9113da7e09d4fa16b7293bc9ceb01fd2b74b9ed5c77f185792265390a769673 + checksum: dc2d4d60e08099bdea7134de53a3ec84be4176ab587a4568b781da5da9240974f387bcf152093e55b0772eb03a14b6315af6c144b95fcc7f9da17900e0f553fc languageName: node linkType: hard -"@jupyterlab/services-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/services-extension@npm:4.4.0-rc.1" +"@jupyterlab/services-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/services-extension@npm:4.4.0" dependencies: - "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/services": ^7.4.0 "@lumino/coreutils": ^2.2.1 - checksum: 7eaad6289e0b9f97fc55be14dd01337d1d09462a30aea242e657f4296443cd342cd8bf9dbb30088600f3be29eabbf0d1c0b995d3d84e21bf34cb988b585e2bc1 - languageName: node - linkType: hard - -"@jupyterlab/services@npm:^7.3.4": - version: 7.3.4 - resolution: "@jupyterlab/services@npm:7.3.4" - dependencies: - "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/coreutils": ^6.3.4 - "@jupyterlab/nbformat": ^4.3.4 - "@jupyterlab/settingregistry": ^4.3.4 - "@jupyterlab/statedb": ^4.3.4 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/polling": ^2.1.3 - "@lumino/properties": ^2.0.2 - "@lumino/signaling": ^2.1.3 - ws: ^8.11.0 - checksum: e962b30171ce94c6d9e60d8d06169fd6e7aa9178804b8e14e539dabac6bc04ac29a257be7b8a82c3b479291659738a55da73e2080c6dea3d986bbcc6f4e00850 + checksum: 365460465b3de974ca19629209041144cc6ad01b2fe8d7cd0d46ae328746d340ac40ea45ad839f5cc3035611c17f4c348f08203659e1d75a1ce2fcbb6b164660 languageName: node linkType: hard -"@jupyterlab/services@npm:^7.4.0-rc.1, @jupyterlab/services@npm:~7.4.0-rc.1": - version: 7.4.0-rc.1 - resolution: "@jupyterlab/services@npm:7.4.0-rc.1" +"@jupyterlab/services@npm:^7.4.0, @jupyterlab/services@npm:~7.4.0": + version: 7.4.0 + resolution: "@jupyterlab/services@npm:7.4.0" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/nbformat": ^4.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/statedb": ^4.4.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/nbformat": ^4.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/statedb": ^4.4.0 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 "@lumino/polling": ^2.1.4 "@lumino/properties": ^2.0.3 "@lumino/signaling": ^2.1.4 ws: ^8.11.0 - checksum: e99d712aac8fbef4b30b5853fcc38e11bfda4c261f4dcdd7d0ed2f7a2fa350657ad19f95decb57293a15b78d4e56922bcba41a61ff46f647e7b151423ef95e1a + checksum: e04aa750ad89ad46e90652c0fba1cc2f50a54eec6dd0cb12b4d1a6678207a699576cb652fbd6d00010462421feadad8825cca2a7f18f99bf104f2cd80b3889e1 languageName: node linkType: hard -"@jupyterlab/settingeditor-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/settingeditor-extension@npm:4.4.0-rc.1" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/codeeditor": ^4.4.0-rc.1 - "@jupyterlab/pluginmanager": ^4.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/settingeditor": ^4.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/statedb": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 +"@jupyterlab/settingeditor-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/settingeditor-extension@npm:4.4.0" + dependencies: + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/codeeditor": ^4.4.0 + "@jupyterlab/pluginmanager": ^4.4.0 + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/settingeditor": ^4.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/statedb": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/disposable": ^2.1.4 react: ^18.2.0 - checksum: 48c392a7cc74eb216cd0cb665f531b43a762d6675015129cc35431a672cb9f09bf8a5b0b6b830786d56cedd8010087409c8899e7c103a2f8bd889c6a3b0ef5a2 + checksum: 602ae198cc14dfdce61cb405d15fdb2683cf9a363da78273f68bfd875e80c74191084b9b676631d0163051fcf636d2663bb7447488140db746b5036e76dd9f0e languageName: node linkType: hard -"@jupyterlab/settingeditor@npm:^4.4.0-rc.1, @jupyterlab/settingeditor@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/settingeditor@npm:4.4.0-rc.1" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/codeeditor": ^4.4.0-rc.1 - "@jupyterlab/inspector": ^4.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/statedb": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 +"@jupyterlab/settingeditor@npm:^4.4.0, @jupyterlab/settingeditor@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/settingeditor@npm:4.4.0" + dependencies: + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/codeeditor": ^4.4.0 + "@jupyterlab/inspector": ^4.4.0 + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/statedb": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/commands": ^2.3.2 "@lumino/coreutils": ^2.2.1 @@ -4574,35 +4135,16 @@ __metadata: "@rjsf/validator-ajv8": ^5.13.4 json-schema: ^0.4.0 react: ^18.2.0 - checksum: 54369cfeffb878c9c5d97a321f221f76865de298674ecc856918646ebb511c3c7d9121023a7eea837f22151a2884d3ae58e5c7c4365a36a08b1200a3f8e19d3e - languageName: node - linkType: hard - -"@jupyterlab/settingregistry@npm:^4.3.4": - version: 4.3.4 - resolution: "@jupyterlab/settingregistry@npm:4.3.4" - dependencies: - "@jupyterlab/nbformat": ^4.3.4 - "@jupyterlab/statedb": ^4.3.4 - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/signaling": ^2.1.3 - "@rjsf/utils": ^5.13.4 - ajv: ^8.12.0 - json5: ^2.2.3 - peerDependencies: - react: ">=16" - checksum: e6e89174535d10268d70f9c5731bbb1ee6614d8cf87a73d5c4c3b40e6d051ecebb03ec23c508132fe3714473a0667b337674db07759d487b2fb679ca99fd8f35 + checksum: 6b75e6d0f0a1936162b0f32074f324e688453af032e2ab49217ae97312b84e8e71a69d08c6856264f3d36ef4192423b3f3b886918cca59ba97120190a1e7c90a languageName: node linkType: hard -"@jupyterlab/settingregistry@npm:^4.4.0-rc.1, @jupyterlab/settingregistry@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/settingregistry@npm:4.4.0-rc.1" +"@jupyterlab/settingregistry@npm:^4.4.0, @jupyterlab/settingregistry@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/settingregistry@npm:4.4.0" dependencies: - "@jupyterlab/nbformat": ^4.4.0-rc.1 - "@jupyterlab/statedb": ^4.4.0-rc.1 + "@jupyterlab/nbformat": ^4.4.0 + "@jupyterlab/statedb": ^4.4.0 "@lumino/commands": ^2.3.2 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 @@ -4612,18 +4154,18 @@ __metadata: json5: ^2.2.3 peerDependencies: react: ">=16" - checksum: 3b83f98d8fb8814817675258ce05f33cd72a90b0e94249d0b0144fcebc9fc1f102b967ce7850c3f77a560f4d3416d0a54e1eb692ff309abf8d3395c6796f0932 + checksum: ed2fac2dc631e630083f00dd64c576847f5fecbc7ff338b1655e7a5062daee9c2f1fbf6408ae5b951acd5330521a7e7620514ead9fb94e269cd9bfec78859151 languageName: node linkType: hard -"@jupyterlab/shortcuts-extension@npm:~5.2.0-rc.1": - version: 5.2.0-rc.1 - resolution: "@jupyterlab/shortcuts-extension@npm:5.2.0-rc.1" +"@jupyterlab/shortcuts-extension@npm:~5.2.0": + version: 5.2.0 + resolution: "@jupyterlab/shortcuts-extension@npm:5.2.0" dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/commands": ^2.3.2 "@lumino/coreutils": ^2.2.1 @@ -4632,57 +4174,28 @@ __metadata: "@lumino/keyboard": ^2.0.3 "@lumino/signaling": ^2.1.4 react: ^18.2.0 - checksum: 3854802971da7ab1eda7926958ae479f8f3afe380b7ee0e4c05169513d8976b23f5574e5bc56495b72fa1d6317c60ed54161ffc9b398ea54ecc1fe7068d51c9c + checksum: 692f48ca609d386ff8441c2c8c356da73303e35d64082b9371d43092914fd304bff2d433f9d0f2bcf22cba8763cf572b60de5da15141aa291748b3aa56651195 languageName: node linkType: hard -"@jupyterlab/statedb@npm:^4.3.4": - version: 4.3.4 - resolution: "@jupyterlab/statedb@npm:4.3.4" - dependencies: - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/properties": ^2.0.2 - "@lumino/signaling": ^2.1.3 - checksum: dfb6e3904ca8898bf69d188448559b7356fdac8e579f8214779be7ba709db82372dc2836f245ff3f9c3ff8e382fa82abd354613e5cd89c60348b3d4f7597bf1c - languageName: node - linkType: hard - -"@jupyterlab/statedb@npm:^4.4.0-rc.1, @jupyterlab/statedb@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/statedb@npm:4.4.0-rc.1" +"@jupyterlab/statedb@npm:^4.4.0, @jupyterlab/statedb@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/statedb@npm:4.4.0" dependencies: "@lumino/commands": ^2.3.2 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 "@lumino/properties": ^2.0.3 "@lumino/signaling": ^2.1.4 - checksum: ffb29e8bdd27a9796943a9a0d2586944827df0e55f88f20ba3eea4cdebbdcb605bb35e8ce2a2b8217931d273744710c52f52326c91705d024779657810e5b06b - languageName: node - linkType: hard - -"@jupyterlab/statusbar@npm:^4.3.4": - version: 4.3.4 - resolution: "@jupyterlab/statusbar@npm:4.3.4" - dependencies: - "@jupyterlab/ui-components": ^4.3.4 - "@lumino/algorithm": ^2.0.2 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.5.0 - react: ^18.2.0 - checksum: d923c9d5ac724197151a6b127c609f9711dfacf3e1ea4a0c73df166238d9b561d5dfaa6762fc24b0e2ae02500d9062e729716edc17ebb02f4d5fc4f4ceab3d8f + checksum: 2267701b99576b97be03b7bfab9b353c7ac3f24334e6337bbc4ee71c957bfb110808892271d5739795d43dcb3a2f4099c8dd25e80209059aba49a9750871adcb languageName: node linkType: hard -"@jupyterlab/statusbar@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/statusbar@npm:4.4.0-rc.1" +"@jupyterlab/statusbar@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/statusbar@npm:4.4.0" dependencies: - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 @@ -4690,36 +4203,36 @@ __metadata: "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: 63c538fb1286fc74d4d92331ed21c5d99d8e29f8238bcef2f50d5d8a21280bec41065f4166e6de5788d9525879da06bd408e07d6cdbed902fa809c01a9e415a8 + checksum: c3225ae1ce9f6c5f73311d14e3f3cd4fcdf560ea85120c911f45ca2d09851a550c496c63ad4d37a2b639a0de632689115a1ba5862b0cb2ae1a50b7dcaa2012f9 languageName: node linkType: hard -"@jupyterlab/terminal-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/terminal-extension@npm:4.4.0-rc.1" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/launcher": ^4.4.0-rc.1 - "@jupyterlab/mainmenu": ^4.4.0-rc.1 - "@jupyterlab/running": ^4.4.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/terminal": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 +"@jupyterlab/terminal-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/terminal-extension@npm:4.4.0" + dependencies: + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/launcher": ^4.4.0 + "@jupyterlab/mainmenu": ^4.4.0 + "@jupyterlab/running": ^4.4.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/terminal": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/widgets": ^2.7.0 - checksum: 9685d0ead095bedd23fd2b5e8e0c1afb369b28d679ba92437a7872138365ebee6905e4bfec8905011cc3497153f2073973437e018e532baa0e70e0479e4eeba9 + checksum: 494422ac67fa0d53c460bbeb0df408a5c2c881d79fd21591d63763391cacc28a78bc7806e86aea2086cf4ed2163b69a6c4a1c3c8e7e3ce8461cb09500079b9f5 languageName: node linkType: hard -"@jupyterlab/terminal@npm:^4.4.0-rc.1, @jupyterlab/terminal@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/terminal@npm:4.4.0-rc.1" +"@jupyterlab/terminal@npm:^4.4.0, @jupyterlab/terminal@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/terminal@npm:4.4.0" dependencies: - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/translation": ^4.4.0 "@lumino/coreutils": ^2.2.1 "@lumino/domutils": ^2.0.3 "@lumino/messaging": ^2.0.3 @@ -4729,7 +4242,7 @@ __metadata: "@xterm/addon-web-links": ~0.11.0 "@xterm/addon-webgl": ~0.18.0 "@xterm/xterm": ~5.5.0 - checksum: a855d0c863bcba2d7feeb9993930f37b7d876a7b8dfb72098ffc64c7fdb1baf81382b372616546ac163335568ce74c44c416e6b67d6f6548d5c69aa51e5fd98f + checksum: 37263016fc1eeeeaa0c3b82c27ca42539383ec89a723e29b0cde6c85310afb6a34c6d6655b351b5db07133ebc5f8ea2fa29e45c6c1c994a1671b993da92e6057 languageName: node linkType: hard @@ -4769,224 +4282,157 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/theme-dark-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/theme-dark-extension@npm:4.4.0-rc.1" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - checksum: b16c32c4ec06cc2bb756694e991e18696ab2e75dbbbf380db269feadfb7ff1f450671c14dc763ff6ac9df6ccc54e5f1c2aca5da02a97c65c5b5888ef65c1a152 - languageName: node - linkType: hard - -"@jupyterlab/theme-dark-high-contrast-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/theme-dark-high-contrast-extension@npm:4.4.0-rc.1" +"@jupyterlab/theme-dark-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/theme-dark-extension@npm:4.4.0" dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - checksum: 7d5a0f98fd6a403e5000594f21f37137d2bb20a579cb08f0d90c25f5c4a7e228cf4c8bddf70bece8d9c779b1aaa11a56458e08619a591e187946b46496831b36 + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/translation": ^4.4.0 + checksum: e89df9f56e2aa65a4a36353dba7632d8b0a22713b22b64096da95a4decb1ff2df7246ee739a74ce06e7fd57ea6e6923689ee585e597af7ead3717427278ab4dd languageName: node linkType: hard -"@jupyterlab/theme-light-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/theme-light-extension@npm:4.4.0-rc.1" +"@jupyterlab/theme-dark-high-contrast-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/theme-dark-high-contrast-extension@npm:4.4.0" dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - checksum: fa07934def7fd389310aaa907a953ddeb3867f6c5a217ac11ffedfa6a03e5d3156dc36dd512495dd88222fc624bf204c98a1ea4a72de0382040f2e1cd79448d8 + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/translation": ^4.4.0 + checksum: 61d8a09da457a942e58a662f3e9a779483f580cf153f7c05c68185cebd3da042241043321d1c6d382e2dd46577804b8453a77e3f4f12b0c0fb15810c774c38cd languageName: node linkType: hard -"@jupyterlab/toc-extension@npm:~6.4.0-rc.1": - version: 6.4.0-rc.1 - resolution: "@jupyterlab/toc-extension@npm:6.4.0-rc.1" +"@jupyterlab/theme-light-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/theme-light-extension@npm:4.4.0" dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/toc": ^6.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 - checksum: f3015672fcea968aa641c6fdaab9482847fb77c27f7d48a048117f0a59d4b15f5d3a5783c70948d80c18988d365258d9beb174572e19b044dd1a3cef7f7dfc96 + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/translation": ^4.4.0 + checksum: 4825af3a289a10f8ae4830bb46bcd85b411a517244bcc00401bdd84bedb3b67e8fa4bd3d813cec22937b6e657f22e68df151bfdf4ff3d03abef5e7b5be8ea93e languageName: node linkType: hard -"@jupyterlab/toc@npm:^6.3.4": - version: 6.3.4 - resolution: "@jupyterlab/toc@npm:6.3.4" +"@jupyterlab/toc-extension@npm:~6.4.0": + version: 6.4.0 + resolution: "@jupyterlab/toc-extension@npm:6.4.0" dependencies: - "@jupyter/react-components": ^0.16.6 - "@jupyterlab/apputils": ^4.4.4 - "@jupyterlab/coreutils": ^6.3.4 - "@jupyterlab/docregistry": ^4.3.4 - "@jupyterlab/observables": ^5.3.4 - "@jupyterlab/rendermime": ^4.3.4 - "@jupyterlab/rendermime-interfaces": ^3.11.4 - "@jupyterlab/translation": ^4.3.4 - "@jupyterlab/ui-components": ^4.3.4 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/widgets": ^2.5.0 - react: ^18.2.0 - checksum: 61120a2bcfda7fbe7cef1b5f19291c16620fcee27b82dd7a7dba5c8217440a912ed3b6093c9d683bd87b06a37d57bacf158a300d0826dcbd000351abb9055a92 + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/toc": ^6.4.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 + checksum: d840eb81161e7aa7fe33ad7e29352387100de48abbab91d6fc59416efa53e207ee73ad4f34accb7292e145288a32d9c138a91f9ebea5a729ae9f5996ce9da276 languageName: node linkType: hard -"@jupyterlab/toc@npm:^6.4.0-rc.1": - version: 6.4.0-rc.1 - resolution: "@jupyterlab/toc@npm:6.4.0-rc.1" +"@jupyterlab/toc@npm:^6.4.0": + version: 6.4.0 + resolution: "@jupyterlab/toc@npm:6.4.0" dependencies: "@jupyter/react-components": ^0.16.6 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/docregistry": ^4.4.0-rc.1 - "@jupyterlab/observables": ^5.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/docregistry": ^4.4.0 + "@jupyterlab/observables": ^5.4.0 + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0 + "@jupyterlab/translation": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 "@lumino/messaging": ^2.0.3 "@lumino/signaling": ^2.1.4 "@lumino/widgets": ^2.7.0 react: ^18.2.0 - checksum: afba4a8d02fa98164623d6f21eafac93c039575197cfea907ebaba8894ba3f0e21dcd17e0a282c22caee5aa0fd8f1a683f1f303411f7ce9c8db0b536b3680064 + checksum: db6486acdbc003197338558d66a9b7e206dbc4762326a16e2e11dc1901acc6ac2ce00e9a12ccf4052b50076da9cc51ed3ac51f043eedf00c280bf4de28b42c10 languageName: node linkType: hard -"@jupyterlab/tooltip-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/tooltip-extension@npm:4.4.0-rc.1" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/codeeditor": ^4.4.0-rc.1 - "@jupyterlab/console": ^4.4.0-rc.1 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/fileeditor": ^4.4.0-rc.1 - "@jupyterlab/notebook": ^4.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/tooltip": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 +"@jupyterlab/tooltip-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/tooltip-extension@npm:4.4.0" + dependencies: + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/codeeditor": ^4.4.0 + "@jupyterlab/console": ^4.4.0 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/fileeditor": ^4.4.0 + "@jupyterlab/notebook": ^4.4.0 + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/tooltip": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/coreutils": ^2.2.1 "@lumino/widgets": ^2.7.0 - checksum: ca987540da9f4d3503f6b1917b2cdd34e974e64682f8c5c6686290fe0fd212bc39b33bda97e2ac120e68bb8c5d950dc8e8085d40bf35230a677301f27dddb223 + checksum: 9b26e0414e026388a7d469ae52bcf96ff7cae0a532aac53936e2c63a0ff6c15721f17a2a8faaa16a3cda0edca57d30ebc6bc16fdb3b08329f3fd7bb269824266 languageName: node linkType: hard -"@jupyterlab/tooltip@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/tooltip@npm:4.4.0-rc.1" +"@jupyterlab/tooltip@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/tooltip@npm:4.4.0" dependencies: - "@jupyterlab/codeeditor": ^4.4.0-rc.1 - "@jupyterlab/rendermime": ^4.4.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 + "@jupyterlab/codeeditor": ^4.4.0 + "@jupyterlab/rendermime": ^4.4.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/ui-components": ^4.4.0 "@lumino/coreutils": ^2.2.1 "@lumino/messaging": ^2.0.3 "@lumino/widgets": ^2.7.0 - checksum: 54d0b40a65184e4e77c75dc045e85faed3b3631e02b828c2b366f0755a12a44374604b2a9356c08642c2c83dd5556378ecf3ce748060be39c49c3555a315df4f + checksum: 155ffee88f321d4b4b98ac4095b75d0d6aa423322edb740089007cad69f79243a86c5975b4f92b5e33be0a240fb0a5ddf9a2e533e7ded6150a8e83608ff66632 languageName: node linkType: hard -"@jupyterlab/translation-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/translation-extension@npm:4.4.0-rc.1" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/apputils": ^4.5.0-rc.1 - "@jupyterlab/mainmenu": ^4.4.0-rc.1 - "@jupyterlab/settingregistry": ^4.4.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 - checksum: 66c9879eb68d40ccd7f91db00aed44506f3917313ae2a66c693b843d495d301e22919c1e73bf29ad069710e8a37b75209a22e9d39de3d533d6109770ff821f40 - languageName: node - linkType: hard - -"@jupyterlab/translation@npm:^4.3.4": - version: 4.3.4 - resolution: "@jupyterlab/translation@npm:4.3.4" +"@jupyterlab/translation-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/translation-extension@npm:4.4.0" dependencies: - "@jupyterlab/coreutils": ^6.3.4 - "@jupyterlab/rendermime-interfaces": ^3.11.4 - "@jupyterlab/services": ^7.3.4 - "@jupyterlab/statedb": ^4.3.4 - "@lumino/coreutils": ^2.2.0 - checksum: c2b386c55aa92ff5a463accf7a79ffd3781ba99ab8c9077c76276922ba6c9b55a8d85881d48f5a309970eec89f7ef1c04536b05caacc6b92aa061466a509759d + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/apputils": ^4.5.0 + "@jupyterlab/mainmenu": ^4.4.0 + "@jupyterlab/settingregistry": ^4.4.0 + "@jupyterlab/translation": ^4.4.0 + checksum: b666e8c074dc185af9841bdf8ea76a5b68971fc7b7a31ab7ebad1a2b3fce845726a923accb2c8558115b00818bada45f59335209e8349334544da1aad2fcd577 languageName: node linkType: hard -"@jupyterlab/translation@npm:^4.4.0-rc.1, @jupyterlab/translation@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/translation@npm:4.4.0-rc.1" +"@jupyterlab/translation@npm:^4.4.0, @jupyterlab/translation@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/translation@npm:4.4.0" dependencies: - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 - "@jupyterlab/services": ^7.4.0-rc.1 - "@jupyterlab/statedb": ^4.4.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0 + "@jupyterlab/services": ^7.4.0 + "@jupyterlab/statedb": ^4.4.0 "@lumino/coreutils": ^2.2.1 - checksum: 2ec9f05375a9d9e79f1f27ad418c4e69d2c45729e196d76258c762c0a6e9056937581c1775aa8a520a5e9c83c41d6a49501672c61d30f54794a1caea978a5327 + checksum: 6c97d78d3f87fb037736ef8d327fae4047e6961a7447656d03f4b6e5fa668ff280b4e05410ff7a018064f1788fb67504cab256b158b62d71ac50f36bcbe11000 languageName: node linkType: hard -"@jupyterlab/ui-components-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/ui-components-extension@npm:4.4.0-rc.1" - dependencies: - "@jupyterlab/application": ^4.4.0-rc.1 - "@jupyterlab/ui-components": ^4.4.0-rc.1 - checksum: daad3df8a5102780387309e87b4edd14cf68957e807ca94a13d8d5e972215ea2223486ada83bee4cf311ff59c73ac7d202b101221bf0062601cf608460d8c814 - languageName: node - linkType: hard - -"@jupyterlab/ui-components@npm:^4.3.4": - version: 4.3.4 - resolution: "@jupyterlab/ui-components@npm:4.3.4" +"@jupyterlab/ui-components-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/ui-components-extension@npm:4.4.0" dependencies: - "@jupyter/react-components": ^0.16.6 - "@jupyter/web-components": ^0.16.6 - "@jupyterlab/coreutils": ^6.3.4 - "@jupyterlab/observables": ^5.3.4 - "@jupyterlab/rendermime-interfaces": ^3.11.4 - "@jupyterlab/translation": ^4.3.4 - "@lumino/algorithm": ^2.0.2 - "@lumino/commands": ^2.3.1 - "@lumino/coreutils": ^2.2.0 - "@lumino/disposable": ^2.1.3 - "@lumino/messaging": ^2.0.2 - "@lumino/polling": ^2.1.3 - "@lumino/properties": ^2.0.2 - "@lumino/signaling": ^2.1.3 - "@lumino/virtualdom": ^2.0.2 - "@lumino/widgets": ^2.5.0 - "@rjsf/core": ^5.13.4 - "@rjsf/utils": ^5.13.4 - react: ^18.2.0 - react-dom: ^18.2.0 - typestyle: ^2.0.4 - peerDependencies: - react: ^18.2.0 - checksum: 32184159fcf043d9c640135e0057031d4f9c9b189cc552c0c8345a7fc8b1c34b4beef87603651bd2043cc3616c4834c2092f47657d2a7bc0bdd0168d3bf0029b + "@jupyterlab/application": ^4.4.0 + "@jupyterlab/ui-components": ^4.4.0 + checksum: ecaef575af701f1880b75592fff4d806720657d53a898a08c2ea64282965b0127cd95e85b1f4df9f187eeb5ec70b12c340e20da9a0cf7f50bdcbe0b7580e25e6 languageName: node linkType: hard -"@jupyterlab/ui-components@npm:^4.4.0-rc.1, @jupyterlab/ui-components@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/ui-components@npm:4.4.0-rc.1" +"@jupyterlab/ui-components@npm:^4.4.0, @jupyterlab/ui-components@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/ui-components@npm:4.4.0" dependencies: "@jupyter/react-components": ^0.16.6 "@jupyter/web-components": ^0.16.6 - "@jupyterlab/coreutils": ^6.4.0-rc.1 - "@jupyterlab/observables": ^5.4.0-rc.1 - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 - "@jupyterlab/translation": ^4.4.0-rc.1 + "@jupyterlab/coreutils": ^6.4.0 + "@jupyterlab/observables": ^5.4.0 + "@jupyterlab/rendermime-interfaces": ^3.12.0 + "@jupyterlab/translation": ^4.4.0 "@lumino/algorithm": ^2.0.3 "@lumino/commands": ^2.3.2 "@lumino/coreutils": ^2.2.1 @@ -5004,34 +4450,34 @@ __metadata: typestyle: ^2.0.4 peerDependencies: react: ^18.2.0 - checksum: a9bc2830b5a96861d17d536dc2f55d5f6c1e1a7696c157f95c0170bffb080d025831c10b57d965db953a0f79089373b9ff4f03f841690019a8139ba685837555 + checksum: 428fa8fc51137ff0c9bef62eb70ff0c311aed6ce0c2e4f656be4b2bc1c2930be4242d84fc8745597fc0e8460cdea29d715531ca425ddbcd320ebdd58cb0440dc languageName: node linkType: hard -"@jupyterlab/vega5-extension@npm:~4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/vega5-extension@npm:4.4.0-rc.1" +"@jupyterlab/vega5-extension@npm:~4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/vega5-extension@npm:4.4.0" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.12.0-rc.1 + "@jupyterlab/rendermime-interfaces": ^3.12.0 "@lumino/coreutils": ^2.2.1 "@lumino/widgets": ^2.7.0 vega: ^5.20.0 vega-embed: ^6.2.1 vega-lite: ^5.6.1-next.1 - checksum: 3b2d077826140c0a4b8528f645a2b7ed03478f0ccf191c76fcdff88155bf907db6e71c2083e53d618a95c2163d01ca0f629e03e1f74a1c072d6493d280e3dc02 + checksum: ac41388fbc38646bbeecaa6ba96f98d2a13aa503888d31f0b79774e98f3d01fa68b1f17ca7a3b1586f9132304adfc69905a702d22da7ac5850cc12daa7bdd185 languageName: node linkType: hard -"@jupyterlab/workspaces@npm:^4.4.0-rc.1": - version: 4.4.0-rc.1 - resolution: "@jupyterlab/workspaces@npm:4.4.0-rc.1" +"@jupyterlab/workspaces@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/workspaces@npm:4.4.0" dependencies: - "@jupyterlab/services": ^7.4.0-rc.1 + "@jupyterlab/services": ^7.4.0 "@lumino/coreutils": ^2.2.1 "@lumino/disposable": ^2.1.4 "@lumino/polling": ^2.1.4 "@lumino/signaling": ^2.1.4 - checksum: 468c780176d9fe5ea228470c76b9a559e71fce2c50b900fdb35f0e93d99009f1a20c8992bc69235526a6eb6d534069c2e141dc612ec885ea7c2f6e6be455e628 + checksum: f6fa6a31366407fd5c53689df77409523c6ee4cc9867de4dcdf41731b535d91aff8f2ca70ff19cacae520b68952aa984dc88886b85b762db0fb916fe8bae1ac1 languageName: node linkType: hard @@ -5282,7 +4728,7 @@ __metadata: languageName: node linkType: hard -"@lumino/application@npm:^2.4.1, @lumino/application@npm:^2.4.3": +"@lumino/application@npm:^2.4.3": version: 2.4.3 resolution: "@lumino/application@npm:2.4.3" dependencies: @@ -5317,7 +4763,7 @@ __metadata: languageName: node linkType: hard -"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^1.11.0 || ^2.2.0, @lumino/coreutils@npm:^1.11.0 || ^2.2.1, @lumino/coreutils@npm:^2.2.0, @lumino/coreutils@npm:^2.2.1, @lumino/coreutils@npm:~2.2.0": +"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^1.11.0 || ^2.2.1, @lumino/coreutils@npm:^2.2.0, @lumino/coreutils@npm:^2.2.1, @lumino/coreutils@npm:~2.2.0": version: 2.2.1 resolution: "@lumino/coreutils@npm:2.2.1" dependencies: @@ -5352,14 +4798,14 @@ __metadata: languageName: node linkType: hard -"@lumino/domutils@npm:^2.0.2, @lumino/domutils@npm:^2.0.3": +"@lumino/domutils@npm:^2.0.3": version: 2.0.3 resolution: "@lumino/domutils@npm:2.0.3" checksum: 46cbcbd38f6abb53eab1b6de0a2ea8a9fa5e28b0f5aa4b058c35f2380cb8ec881fe7616c7468ba200b785f95357ac8cbac6b64512f9945f5973d1d425864b163 languageName: node linkType: hard -"@lumino/dragdrop@npm:^2.1.5, @lumino/dragdrop@npm:^2.1.6": +"@lumino/dragdrop@npm:^2.1.6": version: 2.1.6 resolution: "@lumino/dragdrop@npm:2.1.6" dependencies: @@ -5397,7 +4843,7 @@ __metadata: languageName: node linkType: hard -"@lumino/properties@npm:^2.0.2, @lumino/properties@npm:^2.0.3": +"@lumino/properties@npm:^2.0.3": version: 2.0.3 resolution: "@lumino/properties@npm:2.0.3" checksum: a575d821f994090907abb567d3af21a828f528ae5f329ada92719eba9818bbb2b0955e675b91bd392043a5d835c345d7b500994a77157c5ea317f36442ce570e @@ -5414,7 +4860,7 @@ __metadata: languageName: node linkType: hard -"@lumino/virtualdom@npm:^2.0.2, @lumino/virtualdom@npm:^2.0.3": +"@lumino/virtualdom@npm:^2.0.3": version: 2.0.3 resolution: "@lumino/virtualdom@npm:2.0.3" dependencies: @@ -5423,7 +4869,7 @@ __metadata: languageName: node linkType: hard -"@lumino/widgets@npm:^1.37.2 || ^2.5.0, @lumino/widgets@npm:^1.37.2 || ^2.7.0, @lumino/widgets@npm:^2.5.0, @lumino/widgets@npm:^2.7.0": +"@lumino/widgets@npm:^1.37.2 || ^2.7.0, @lumino/widgets@npm:^2.5.0, @lumino/widgets@npm:^2.7.0": version: 2.7.0 resolution: "@lumino/widgets@npm:2.7.0" dependencies: From fbfe36574e04b16ed7ba9303c5e819330f402f87 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Apr 2025 10:03:32 +0200 Subject: [PATCH 016/143] Bump the actions group with 2 updates (#7626) Bumps the actions group with 2 updates: [actions/create-github-app-token](https://github.com/actions/create-github-app-token) and [prefix-dev/setup-pixi](https://github.com/prefix-dev/setup-pixi). Updates `actions/create-github-app-token` from 1 to 2 - [Release notes](https://github.com/actions/create-github-app-token/releases) - [Commits](https://github.com/actions/create-github-app-token/compare/v1...v2) Updates `prefix-dev/setup-pixi` from 0.8.3 to 0.8.4 - [Release notes](https://github.com/prefix-dev/setup-pixi/releases) - [Commits](https://github.com/prefix-dev/setup-pixi/compare/v0.8.3...v0.8.4) --- updated-dependencies: - dependency-name: actions/create-github-app-token dependency-version: '2' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: prefix-dev/setup-pixi dependency-version: 0.8.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/publish-changelog.yml | 2 +- .github/workflows/publish-release.yml | 2 +- .github/workflows/upgrade-jupyterlab-dependencies.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-changelog.yml b/.github/workflows/publish-changelog.yml index 60af4c5f16..c576a54877 100644 --- a/.github/workflows/publish-changelog.yml +++ b/.github/workflows/publish-changelog.yml @@ -16,7 +16,7 @@ jobs: steps: - uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 - - uses: actions/create-github-app-token@v1 + - uses: actions/create-github-app-token@v2 id: app-token with: app-id: ${{ vars.APP_ID }} diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index c1881060de..d5dc89c8be 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -21,7 +21,7 @@ jobs: steps: - uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 - - uses: actions/create-github-app-token@v1 + - uses: actions/create-github-app-token@v2 id: app-token with: app-id: ${{ vars.APP_ID }} diff --git a/.github/workflows/upgrade-jupyterlab-dependencies.yml b/.github/workflows/upgrade-jupyterlab-dependencies.yml index 3734b8e8ee..3d82790c76 100644 --- a/.github/workflows/upgrade-jupyterlab-dependencies.yml +++ b/.github/workflows/upgrade-jupyterlab-dependencies.yml @@ -79,7 +79,7 @@ jobs: jlpm jlpm deduplicate fi - - uses: prefix-dev/setup-pixi@v0.8.3 + - uses: prefix-dev/setup-pixi@v0.8.4 with: pixi-version: v0.41.4 manifest-path: pyproject.toml From f0bdc4756d91dbd63743ccf69724b2de2d6dabe2 Mon Sep 17 00:00:00 2001 From: jtpio Date: Wed, 9 Apr 2025 17:34:49 +0000 Subject: [PATCH 017/143] Publish 7.4.0 SHA256 hashes: jupyter-notebook-application-7.4.0.tgz: 009bd2d8b4c239a88fed470125877b447eeec608b70caf3884489f3bcf0c744f jupyter-notebook-application-extension-7.4.0.tgz: 10edb486db48af9c2ec990ddaa8476f1302dfa9ebab7ce1b954c472679f27e78 jupyter-notebook-console-extension-7.4.0.tgz: a8d2df98230a6dcdea03802fb4007e82585103e51299013809de0e49aea5069a jupyter-notebook-docmanager-extension-7.4.0.tgz: 387d3d31b531ec40f966a0c9f80b593157fea8383583d856034a9ebecaecdae5 jupyter-notebook-documentsearch-extension-7.4.0.tgz: 50de0db91198470e2a36bf8fcf1cea8961a4503b63cf2d4df4284698a854b439 jupyter-notebook-help-extension-7.4.0.tgz: 5dfc9f9581986f7fe3ab1a8423774b3cf7f034bc49102eaf44d41d81db0188b8 jupyter-notebook-lab-extension-7.4.0.tgz: 6b48c63f345871461936a03652e8424d994ff841e3862cef2b76638d33351a22 jupyter-notebook-notebook-extension-7.4.0.tgz: 9bbffc8608a1c6a0691dfa2178847b104a0f8491a6e809006928d35411faa255 jupyter-notebook-terminal-extension-7.4.0.tgz: 0cb8d030bd4ab651f8658820bb38ba66e6a4862eae035832b322626a0b307f1e jupyter-notebook-tree-7.4.0.tgz: 1809f8e1c67a78030751fc06a842b3fcbaf97d47ee5fef1bf3b691e545e4e0f1 jupyter-notebook-tree-extension-7.4.0.tgz: a42ba28a6bc61b4481ff4dc208222febbaacdc422a069a8c4b3181c4055015e2 jupyter-notebook-ui-components-7.4.0.tgz: e313fbdc4d80f7824aefa2c25c87e21bbfe774c8fa502ad816be3ea6a60770df notebook-7.4.0-py3-none-any.whl: 005fd21f4db6093a7b739b17df5fe60597811adb07e8255f458db4035d208e3a notebook-7.4.0.tar.gz: 581d88f83709d90ce738dfd1d759892b96e3cbbc9c4a989912ed6c6a08f0d3e8 --- CHANGELOG.md | 58 +++++++++++- app/package.json | 46 ++++----- buildutils/package.json | 2 +- notebook/_version.py | 2 +- packages/_metapackage/package.json | 26 ++--- packages/application-extension/package.json | 6 +- packages/application/package.json | 2 +- packages/console-extension/package.json | 4 +- packages/docmanager-extension/package.json | 4 +- .../documentsearch-extension/package.json | 4 +- packages/help-extension/package.json | 4 +- packages/lab-extension/package.json | 4 +- packages/notebook-extension/package.json | 4 +- packages/terminal-extension/package.json | 4 +- packages/tree-extension/package.json | 6 +- packages/tree/package.json | 4 +- packages/ui-components/package.json | 2 +- yarn.lock | 94 +++++++++---------- 18 files changed, 165 insertions(+), 111 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ecafe3157..c876f6ad8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -69,6 +69,62 @@ or via the JSON Settings Editor in the Application Context Menu. +## 7.4.0 + +([Full Changelog](https://github.com/jupyter/notebook/compare/@jupyter-notebook/application-extension@7.3.2...fbfe36574e04b16ed7ba9303c5e819330f402f87)) + +### Highlights ✨ + +To learn more about the highlights of the 7.4.0 release: https://jupyter-notebook.readthedocs.io/en/latest/changelog.html + +### Enhancements made + +- Update to JupyterLab v4.4.0rc1 [#7622](https://github.com/jupyter/notebook/pull/7622) ([@jtpio](https://github.com/jtpio)) +- Add support for a `down` area [#7619](https://github.com/jupyter/notebook/pull/7619) ([@jtpio](https://github.com/jtpio)) +- Update to JupyterLab v4.4.0rc0 [#7618](https://github.com/jupyter/notebook/pull/7618) ([@jtpio](https://github.com/jtpio)) +- Support `ServiceManagerPlugin` [#7616](https://github.com/jupyter/notebook/pull/7616) ([@jtpio](https://github.com/jtpio)) +- Update to JupyterLab `v4.4.0b1` [#7607](https://github.com/jupyter/notebook/pull/7607) ([@jtpio](https://github.com/jtpio)) +- Update to JupyterLab v4.4.0b0 [#7591](https://github.com/jupyter/notebook/pull/7591) ([@jtpio](https://github.com/jtpio)) +- Update to JupyterLab v4.4.0a3 [#7577](https://github.com/jupyter/notebook/pull/7577) ([@jtpio](https://github.com/jtpio)) +- Add active cell border padding, remove double cell padding [#7570](https://github.com/jupyter/notebook/pull/7570) ([@andrii-i](https://github.com/andrii-i)) + +### Bugs fixed + +- Fix undefined error when checkpoints is empty [#7567](https://github.com/jupyter/notebook/pull/7567) ([@jdavid](https://github.com/jdavid)) + +### Maintenance and upkeep improvements + +- Bump the actions group with 2 updates [#7626](https://github.com/jupyter/notebook/pull/7626) ([@dependabot](https://github.com/dependabot)) +- Update to JupyterLab v4.4.0b2 [#7614](https://github.com/jupyter/notebook/pull/7614) ([@jtpio](https://github.com/jtpio)) +- Add pixi step to the update workflow [#7608](https://github.com/jupyter/notebook/pull/7608) ([@jtpio](https://github.com/jtpio)) +- Update `@babel` dependencies [#7605](https://github.com/jupyter/notebook/pull/7605) ([@jtpio](https://github.com/jtpio)) +- Add devcontainer support, backed by pixi [#7602](https://github.com/jupyter/notebook/pull/7602) ([@jtpio](https://github.com/jtpio)) +- Manual dependabot bumps [#7599](https://github.com/jupyter/notebook/pull/7599) ([@jtpio](https://github.com/jtpio)) +- Bump vega-selections from 5.4.1 to 5.5.0 in /ui-tests [#7592](https://github.com/jupyter/notebook/pull/7592) ([@dependabot](https://github.com/dependabot)) +- Improve handling of optional notebook tracker [#7581](https://github.com/jupyter/notebook/pull/7581) ([@jtpio](https://github.com/jtpio)) +- Fix upgrade script [#7579](https://github.com/jupyter/notebook/pull/7579) ([@jtpio](https://github.com/jtpio)) +- Allow owners/members/collab to trigger galata update on other's PR [#7572](https://github.com/jupyter/notebook/pull/7572) ([@krassowski](https://github.com/krassowski)) +- Update `typescript` and `lerna` [#7562](https://github.com/jupyter/notebook/pull/7562) ([@jtpio](https://github.com/jtpio)) +- Update pre-commit hooks [#7561](https://github.com/jupyter/notebook/pull/7561) ([@jtpio](https://github.com/jtpio)) +- Update to JupyterLab v4.4.0a2 [#7559](https://github.com/jupyter/notebook/pull/7559) ([@jtpio](https://github.com/jtpio)) +- Bump the actions group across 1 directory with 2 updates [#7558](https://github.com/jupyter/notebook/pull/7558) ([@dependabot](https://github.com/dependabot)) +- Improve update script [#7556](https://github.com/jupyter/notebook/pull/7556) ([@jtpio](https://github.com/jtpio)) +- Disable cron scheduling for now [#7555](https://github.com/jupyter/notebook/pull/7555) ([@jtpio](https://github.com/jtpio)) +- Update to JupyterLab v4.4.0a1 [#7554](https://github.com/jupyter/notebook/pull/7554) ([@jtpio](https://github.com/jtpio)) +- Update workflow improvements [#7552](https://github.com/jupyter/notebook/pull/7552) ([@jtpio](https://github.com/jtpio)) + +### Documentation improvements + +- User facing changelog for 7.4 [#7612](https://github.com/jupyter/notebook/pull/7612) ([@jtpio](https://github.com/jtpio)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyter/notebook/graphs/contributors?from=2024-12-21&to=2025-04-09&type=c)) + +[@andrii-i](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aandrii-i+updated%3A2024-12-21..2025-04-09&type=Issues) | [@dependabot](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Adependabot+updated%3A2024-12-21..2025-04-09&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2024-12-21..2025-04-09&type=Issues) | [@jdavid](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajdavid+updated%3A2024-12-21..2025-04-09&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2024-12-21..2025-04-09&type=Issues) | [@krassowski](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Akrassowski+updated%3A2024-12-21..2025-04-09&type=Issues) | [@RRosio](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3ARRosio+updated%3A2024-12-21..2025-04-09&type=Issues) + + + ## 7.4.0rc0 ([Full Changelog](https://github.com/jupyter/notebook/compare/@jupyter-notebook/application-extension@7.4.0-beta.3...7fa19999c9e01d713a684e0f25d8017dbc999528)) @@ -84,8 +140,6 @@ or via the JSON Settings Editor in the Application Context Menu. [@github-actions](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2025-03-26..2025-04-03&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2025-03-26..2025-04-03&type=Issues) - - ## 7.4.0b3 ([Full Changelog](https://github.com/jupyter/notebook/compare/@jupyter-notebook/application-extension@7.4.0-beta.2...434221c0fe3de3df3b4b54ed1005712e07957352)) diff --git a/app/package.json b/app/package.json index d93899b3c9..d561216f4d 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/app", - "version": "7.4.0-rc.0", + "version": "7.4.0", "private": true, "scripts": { "build": "webpack", @@ -12,17 +12,17 @@ "resolutions": { "@codemirror/state": "~6.5.0", "@codemirror/view": "~6.36.1", - "@jupyter-notebook/application": "~7.4.0-rc.0", - "@jupyter-notebook/application-extension": "~7.4.0-rc.0", - "@jupyter-notebook/console-extension": "~7.4.0-rc.0", - "@jupyter-notebook/docmanager-extension": "~7.4.0-rc.0", - "@jupyter-notebook/documentsearch-extension": "~7.4.0-rc.0", - "@jupyter-notebook/help-extension": "~7.4.0-rc.0", - "@jupyter-notebook/notebook-extension": "~7.4.0-rc.0", - "@jupyter-notebook/terminal-extension": "~7.4.0-rc.0", - "@jupyter-notebook/tree": "~7.4.0-rc.0", - "@jupyter-notebook/tree-extension": "~7.4.0-rc.0", - "@jupyter-notebook/ui-components": "~7.4.0-rc.0", + "@jupyter-notebook/application": "~7.4.0", + "@jupyter-notebook/application-extension": "~7.4.0", + "@jupyter-notebook/console-extension": "~7.4.0", + "@jupyter-notebook/docmanager-extension": "~7.4.0", + "@jupyter-notebook/documentsearch-extension": "~7.4.0", + "@jupyter-notebook/help-extension": "~7.4.0", + "@jupyter-notebook/notebook-extension": "~7.4.0", + "@jupyter-notebook/terminal-extension": "~7.4.0", + "@jupyter-notebook/tree": "~7.4.0", + "@jupyter-notebook/tree-extension": "~7.4.0", + "@jupyter-notebook/ui-components": "~7.4.0", "@jupyter/react-components": "~0.16.7", "@jupyter/web-components": "~0.16.7", "@jupyter/ydoc": "~3.0.0", @@ -125,17 +125,17 @@ "yjs": "~13.6.8" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-rc.0", - "@jupyter-notebook/application-extension": "^7.4.0-rc.0", - "@jupyter-notebook/console-extension": "^7.4.0-rc.0", - "@jupyter-notebook/docmanager-extension": "^7.4.0-rc.0", - "@jupyter-notebook/documentsearch-extension": "^7.4.0-rc.0", - "@jupyter-notebook/help-extension": "^7.4.0-rc.0", - "@jupyter-notebook/notebook-extension": "^7.4.0-rc.0", - "@jupyter-notebook/terminal-extension": "^7.4.0-rc.0", - "@jupyter-notebook/tree": "^7.4.0-rc.0", - "@jupyter-notebook/tree-extension": "^7.4.0-rc.0", - "@jupyter-notebook/ui-components": "^7.4.0-rc.0", + "@jupyter-notebook/application": "^7.4.0", + "@jupyter-notebook/application-extension": "^7.4.0", + "@jupyter-notebook/console-extension": "^7.4.0", + "@jupyter-notebook/docmanager-extension": "^7.4.0", + "@jupyter-notebook/documentsearch-extension": "^7.4.0", + "@jupyter-notebook/help-extension": "^7.4.0", + "@jupyter-notebook/notebook-extension": "^7.4.0", + "@jupyter-notebook/terminal-extension": "^7.4.0", + "@jupyter-notebook/tree": "^7.4.0", + "@jupyter-notebook/tree-extension": "^7.4.0", + "@jupyter-notebook/ui-components": "^7.4.0", "@jupyterlab/application-extension": "~4.4.0", "@jupyterlab/apputils-extension": "~4.4.0", "@jupyterlab/attachments": "~4.4.0", diff --git a/buildutils/package.json b/buildutils/package.json index bb47277152..4bb794f179 100644 --- a/buildutils/package.json +++ b/buildutils/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/buildutils", - "version": "7.4.0-rc.0", + "version": "7.4.0", "private": true, "description": "Jupyter Notebook - Build Utilities", "homepage": "https://github.com/jupyter/notebook", diff --git a/notebook/_version.py b/notebook/_version.py index f5db537c5a..ab92db2f96 100644 --- a/notebook/_version.py +++ b/notebook/_version.py @@ -6,7 +6,7 @@ from collections import namedtuple # Use "hatch version xx.yy.zz" to handle version changes -__version__ = "7.4.0rc0" +__version__ = "7.4.0" # PEP440 version parser _version_regex = re.compile( diff --git a/packages/_metapackage/package.json b/packages/_metapackage/package.json index 4ba03cab76..d56a382edb 100644 --- a/packages/_metapackage/package.json +++ b/packages/_metapackage/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/metapackage", - "version": "7.4.0-rc.0", + "version": "7.4.0", "private": true, "description": "Jupyter Notebook - Metapackage", "homepage": "https://github.com/jupyter/notebook", @@ -20,18 +20,18 @@ "watch": "tsc -b -w --preserveWatchOutput" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-rc.0", - "@jupyter-notebook/application-extension": "^7.4.0-rc.0", - "@jupyter-notebook/console-extension": "^7.4.0-rc.0", - "@jupyter-notebook/docmanager-extension": "^7.4.0-rc.0", - "@jupyter-notebook/documentsearch-extension": "^7.4.0-rc.0", - "@jupyter-notebook/help-extension": "^7.4.0-rc.0", - "@jupyter-notebook/lab-extension": "^7.4.0-rc.0", - "@jupyter-notebook/notebook-extension": "^7.4.0-rc.0", - "@jupyter-notebook/terminal-extension": "^7.4.0-rc.0", - "@jupyter-notebook/tree": "^7.4.0-rc.0", - "@jupyter-notebook/tree-extension": "^7.4.0-rc.0", - "@jupyter-notebook/ui-components": "^7.4.0-rc.0" + "@jupyter-notebook/application": "^7.4.0", + "@jupyter-notebook/application-extension": "^7.4.0", + "@jupyter-notebook/console-extension": "^7.4.0", + "@jupyter-notebook/docmanager-extension": "^7.4.0", + "@jupyter-notebook/documentsearch-extension": "^7.4.0", + "@jupyter-notebook/help-extension": "^7.4.0", + "@jupyter-notebook/lab-extension": "^7.4.0", + "@jupyter-notebook/notebook-extension": "^7.4.0", + "@jupyter-notebook/terminal-extension": "^7.4.0", + "@jupyter-notebook/tree": "^7.4.0", + "@jupyter-notebook/tree-extension": "^7.4.0", + "@jupyter-notebook/ui-components": "^7.4.0" }, "devDependencies": { "typescript": "~5.5.4" diff --git a/packages/application-extension/package.json b/packages/application-extension/package.json index 85d2215325..8d5372f653 100644 --- a/packages/application-extension/package.json +++ b/packages/application-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/application-extension", - "version": "7.4.0-rc.0", + "version": "7.4.0", "description": "Jupyter Notebook - Application Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,8 +38,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-rc.0", - "@jupyter-notebook/ui-components": "^7.4.0-rc.0", + "@jupyter-notebook/application": "^7.4.0", + "@jupyter-notebook/ui-components": "^7.4.0", "@jupyterlab/application": "~4.4.0", "@jupyterlab/apputils": "~4.5.0", "@jupyterlab/codeeditor": "~4.4.0", diff --git a/packages/application/package.json b/packages/application/package.json index 463bf77052..febd206e79 100644 --- a/packages/application/package.json +++ b/packages/application/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/application", - "version": "7.4.0-rc.0", + "version": "7.4.0", "description": "Jupyter Notebook - Application", "homepage": "https://github.com/jupyter/notebook", "bugs": { diff --git a/packages/console-extension/package.json b/packages/console-extension/package.json index 15e06e9cb4..9f7db0bae6 100644 --- a/packages/console-extension/package.json +++ b/packages/console-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/console-extension", - "version": "7.4.0-rc.0", + "version": "7.4.0", "description": "Jupyter Notebook - Console Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-rc.0", + "@jupyter-notebook/application": "^7.4.0", "@jupyterlab/application": "~4.4.0", "@jupyterlab/console": "~4.4.0", "@jupyterlab/coreutils": "~6.4.0", diff --git a/packages/docmanager-extension/package.json b/packages/docmanager-extension/package.json index 71caaa93c7..1b3f17f8c3 100644 --- a/packages/docmanager-extension/package.json +++ b/packages/docmanager-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/docmanager-extension", - "version": "7.4.0-rc.0", + "version": "7.4.0", "description": "Jupyter Notebook - Document Manager Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-rc.0", + "@jupyter-notebook/application": "^7.4.0", "@jupyterlab/application": "~4.4.0", "@jupyterlab/coreutils": "~6.4.0", "@jupyterlab/docmanager": "~4.4.0", diff --git a/packages/documentsearch-extension/package.json b/packages/documentsearch-extension/package.json index 234b59abee..381d040af1 100644 --- a/packages/documentsearch-extension/package.json +++ b/packages/documentsearch-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/documentsearch-extension", - "version": "7.4.0-rc.0", + "version": "7.4.0", "description": "Jupyter Notebook - Document Search Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-rc.0", + "@jupyter-notebook/application": "^7.4.0", "@jupyterlab/application": "~4.4.0", "@jupyterlab/documentsearch": "~4.4.0", "@lumino/widgets": "^2.5.0" diff --git a/packages/help-extension/package.json b/packages/help-extension/package.json index 38150a94a7..98643c0836 100644 --- a/packages/help-extension/package.json +++ b/packages/help-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/help-extension", - "version": "7.4.0-rc.0", + "version": "7.4.0", "description": "Jupyter Notebook - Help Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/ui-components": "^7.4.0-rc.0", + "@jupyter-notebook/ui-components": "^7.4.0", "@jupyterlab/application": "~4.4.0", "@jupyterlab/apputils": "~4.5.0", "@jupyterlab/mainmenu": "~4.4.0", diff --git a/packages/lab-extension/package.json b/packages/lab-extension/package.json index ef00b1af13..85f2e3f46e 100644 --- a/packages/lab-extension/package.json +++ b/packages/lab-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/lab-extension", - "version": "7.4.0-rc.0", + "version": "7.4.0", "description": "Jupyter Notebook - Lab Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -43,7 +43,7 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-rc.0", + "@jupyter-notebook/application": "^7.4.0", "@jupyterlab/application": "~4.4.0", "@jupyterlab/apputils": "~4.5.0", "@jupyterlab/coreutils": "~6.4.0", diff --git a/packages/notebook-extension/package.json b/packages/notebook-extension/package.json index d89b85f84d..5ed359376e 100644 --- a/packages/notebook-extension/package.json +++ b/packages/notebook-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/notebook-extension", - "version": "7.4.0-rc.0", + "version": "7.4.0", "description": "Jupyter Notebook - Notebook Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-rc.0", + "@jupyter-notebook/application": "^7.4.0", "@jupyterlab/application": "~4.4.0", "@jupyterlab/apputils": "~4.5.0", "@jupyterlab/cells": "~4.4.0", diff --git a/packages/terminal-extension/package.json b/packages/terminal-extension/package.json index 211fb570a1..6a4330475d 100644 --- a/packages/terminal-extension/package.json +++ b/packages/terminal-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/terminal-extension", - "version": "7.4.0-rc.0", + "version": "7.4.0", "description": "Jupyter Notebook - Terminal Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-rc.0", + "@jupyter-notebook/application": "^7.4.0", "@jupyterlab/application": "~4.4.0", "@jupyterlab/coreutils": "~6.4.0", "@jupyterlab/terminal": "~4.4.0", diff --git a/packages/tree-extension/package.json b/packages/tree-extension/package.json index 137fc55986..66c0485a36 100644 --- a/packages/tree-extension/package.json +++ b/packages/tree-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/tree-extension", - "version": "7.4.0-rc.0", + "version": "7.4.0", "description": "Jupyter Notebook - Tree Extension", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,8 +38,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-rc.0", - "@jupyter-notebook/tree": "^7.4.0-rc.0", + "@jupyter-notebook/application": "^7.4.0", + "@jupyter-notebook/tree": "^7.4.0", "@jupyterlab/application": "~4.4.0", "@jupyterlab/apputils": "~4.5.0", "@jupyterlab/coreutils": "~6.4.0", diff --git a/packages/tree/package.json b/packages/tree/package.json index 1af68744b4..3d5754db27 100644 --- a/packages/tree/package.json +++ b/packages/tree/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/tree", - "version": "7.4.0-rc.0", + "version": "7.4.0", "description": "Jupyter Notebook - Tree", "homepage": "https://github.com/jupyter/notebook", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter-notebook/application": "^7.4.0-rc.0", + "@jupyter-notebook/application": "^7.4.0", "@jupyterlab/application": "~4.4.0", "@jupyterlab/apputils": "~4.5.0", "@jupyterlab/coreutils": "~6.4.0", diff --git a/packages/ui-components/package.json b/packages/ui-components/package.json index 5ad9b121eb..988d7c6210 100644 --- a/packages/ui-components/package.json +++ b/packages/ui-components/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter-notebook/ui-components", - "version": "7.4.0-rc.0", + "version": "7.4.0", "description": "Jupyter Notebook - UI components", "homepage": "https://github.com/jupyter/notebook", "bugs": { diff --git a/yarn.lock b/yarn.lock index 394aaf10cc..5a553a3016 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2131,17 +2131,17 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyter-notebook/app@workspace:app" dependencies: - "@jupyter-notebook/application": ^7.4.0-rc.0 - "@jupyter-notebook/application-extension": ^7.4.0-rc.0 - "@jupyter-notebook/console-extension": ^7.4.0-rc.0 - "@jupyter-notebook/docmanager-extension": ^7.4.0-rc.0 - "@jupyter-notebook/documentsearch-extension": ^7.4.0-rc.0 - "@jupyter-notebook/help-extension": ^7.4.0-rc.0 - "@jupyter-notebook/notebook-extension": ^7.4.0-rc.0 - "@jupyter-notebook/terminal-extension": ^7.4.0-rc.0 - "@jupyter-notebook/tree": ^7.4.0-rc.0 - "@jupyter-notebook/tree-extension": ^7.4.0-rc.0 - "@jupyter-notebook/ui-components": ^7.4.0-rc.0 + "@jupyter-notebook/application": ^7.4.0 + "@jupyter-notebook/application-extension": ^7.4.0 + "@jupyter-notebook/console-extension": ^7.4.0 + "@jupyter-notebook/docmanager-extension": ^7.4.0 + "@jupyter-notebook/documentsearch-extension": ^7.4.0 + "@jupyter-notebook/help-extension": ^7.4.0 + "@jupyter-notebook/notebook-extension": ^7.4.0 + "@jupyter-notebook/terminal-extension": ^7.4.0 + "@jupyter-notebook/tree": ^7.4.0 + "@jupyter-notebook/tree-extension": ^7.4.0 + "@jupyter-notebook/ui-components": ^7.4.0 "@jupyterlab/application-extension": ~4.4.0 "@jupyterlab/apputils-extension": ~4.4.0 "@jupyterlab/attachments": ~4.4.0 @@ -2216,12 +2216,12 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/application-extension@^7.4.0-rc.0, @jupyter-notebook/application-extension@workspace:packages/application-extension": +"@jupyter-notebook/application-extension@^7.4.0, @jupyter-notebook/application-extension@workspace:packages/application-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/application-extension@workspace:packages/application-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-rc.0 - "@jupyter-notebook/ui-components": ^7.4.0-rc.0 + "@jupyter-notebook/application": ^7.4.0 + "@jupyter-notebook/ui-components": ^7.4.0 "@jupyterlab/application": ~4.4.0 "@jupyterlab/apputils": ~4.5.0 "@jupyterlab/codeeditor": ~4.4.0 @@ -2241,7 +2241,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/application@^7.4.0-rc.0, @jupyter-notebook/application@workspace:packages/application": +"@jupyter-notebook/application@^7.4.0, @jupyter-notebook/application@workspace:packages/application": version: 0.0.0-use.local resolution: "@jupyter-notebook/application@workspace:packages/application" dependencies: @@ -2283,11 +2283,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/console-extension@^7.4.0-rc.0, @jupyter-notebook/console-extension@workspace:packages/console-extension": +"@jupyter-notebook/console-extension@^7.4.0, @jupyter-notebook/console-extension@workspace:packages/console-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/console-extension@workspace:packages/console-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-rc.0 + "@jupyter-notebook/application": ^7.4.0 "@jupyterlab/application": ~4.4.0 "@jupyterlab/console": ~4.4.0 "@jupyterlab/coreutils": ~6.4.0 @@ -2297,11 +2297,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/docmanager-extension@^7.4.0-rc.0, @jupyter-notebook/docmanager-extension@workspace:packages/docmanager-extension": +"@jupyter-notebook/docmanager-extension@^7.4.0, @jupyter-notebook/docmanager-extension@workspace:packages/docmanager-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/docmanager-extension@workspace:packages/docmanager-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-rc.0 + "@jupyter-notebook/application": ^7.4.0 "@jupyterlab/application": ~4.4.0 "@jupyterlab/coreutils": ~6.4.0 "@jupyterlab/docmanager": ~4.4.0 @@ -2314,11 +2314,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/documentsearch-extension@^7.4.0-rc.0, @jupyter-notebook/documentsearch-extension@workspace:packages/documentsearch-extension": +"@jupyter-notebook/documentsearch-extension@^7.4.0, @jupyter-notebook/documentsearch-extension@workspace:packages/documentsearch-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/documentsearch-extension@workspace:packages/documentsearch-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-rc.0 + "@jupyter-notebook/application": ^7.4.0 "@jupyterlab/application": ~4.4.0 "@jupyterlab/documentsearch": ~4.4.0 "@lumino/widgets": ^2.5.0 @@ -2327,11 +2327,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/help-extension@^7.4.0-rc.0, @jupyter-notebook/help-extension@workspace:packages/help-extension": +"@jupyter-notebook/help-extension@^7.4.0, @jupyter-notebook/help-extension@workspace:packages/help-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/help-extension@workspace:packages/help-extension" dependencies: - "@jupyter-notebook/ui-components": ^7.4.0-rc.0 + "@jupyter-notebook/ui-components": ^7.4.0 "@jupyterlab/application": ~4.4.0 "@jupyterlab/apputils": ~4.5.0 "@jupyterlab/mainmenu": ~4.4.0 @@ -2343,11 +2343,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/lab-extension@^7.4.0-rc.0, @jupyter-notebook/lab-extension@workspace:packages/lab-extension": +"@jupyter-notebook/lab-extension@^7.4.0, @jupyter-notebook/lab-extension@workspace:packages/lab-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/lab-extension@workspace:packages/lab-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-rc.0 + "@jupyter-notebook/application": ^7.4.0 "@jupyterlab/application": ~4.4.0 "@jupyterlab/apputils": ~4.5.0 "@jupyterlab/builder": ~4.4.0 @@ -2367,27 +2367,27 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyter-notebook/metapackage@workspace:packages/_metapackage" dependencies: - "@jupyter-notebook/application": ^7.4.0-rc.0 - "@jupyter-notebook/application-extension": ^7.4.0-rc.0 - "@jupyter-notebook/console-extension": ^7.4.0-rc.0 - "@jupyter-notebook/docmanager-extension": ^7.4.0-rc.0 - "@jupyter-notebook/documentsearch-extension": ^7.4.0-rc.0 - "@jupyter-notebook/help-extension": ^7.4.0-rc.0 - "@jupyter-notebook/lab-extension": ^7.4.0-rc.0 - "@jupyter-notebook/notebook-extension": ^7.4.0-rc.0 - "@jupyter-notebook/terminal-extension": ^7.4.0-rc.0 - "@jupyter-notebook/tree": ^7.4.0-rc.0 - "@jupyter-notebook/tree-extension": ^7.4.0-rc.0 - "@jupyter-notebook/ui-components": ^7.4.0-rc.0 + "@jupyter-notebook/application": ^7.4.0 + "@jupyter-notebook/application-extension": ^7.4.0 + "@jupyter-notebook/console-extension": ^7.4.0 + "@jupyter-notebook/docmanager-extension": ^7.4.0 + "@jupyter-notebook/documentsearch-extension": ^7.4.0 + "@jupyter-notebook/help-extension": ^7.4.0 + "@jupyter-notebook/lab-extension": ^7.4.0 + "@jupyter-notebook/notebook-extension": ^7.4.0 + "@jupyter-notebook/terminal-extension": ^7.4.0 + "@jupyter-notebook/tree": ^7.4.0 + "@jupyter-notebook/tree-extension": ^7.4.0 + "@jupyter-notebook/ui-components": ^7.4.0 typescript: ~5.5.4 languageName: unknown linkType: soft -"@jupyter-notebook/notebook-extension@^7.4.0-rc.0, @jupyter-notebook/notebook-extension@workspace:packages/notebook-extension": +"@jupyter-notebook/notebook-extension@^7.4.0, @jupyter-notebook/notebook-extension@workspace:packages/notebook-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/notebook-extension@workspace:packages/notebook-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-rc.0 + "@jupyter-notebook/application": ^7.4.0 "@jupyterlab/application": ~4.4.0 "@jupyterlab/apputils": ~4.5.0 "@jupyterlab/cells": ~4.4.0 @@ -2425,11 +2425,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/terminal-extension@^7.4.0-rc.0, @jupyter-notebook/terminal-extension@workspace:packages/terminal-extension": +"@jupyter-notebook/terminal-extension@^7.4.0, @jupyter-notebook/terminal-extension@workspace:packages/terminal-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/terminal-extension@workspace:packages/terminal-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-rc.0 + "@jupyter-notebook/application": ^7.4.0 "@jupyterlab/application": ~4.4.0 "@jupyterlab/coreutils": ~6.4.0 "@jupyterlab/terminal": ~4.4.0 @@ -2439,12 +2439,12 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/tree-extension@^7.4.0-rc.0, @jupyter-notebook/tree-extension@workspace:packages/tree-extension": +"@jupyter-notebook/tree-extension@^7.4.0, @jupyter-notebook/tree-extension@workspace:packages/tree-extension": version: 0.0.0-use.local resolution: "@jupyter-notebook/tree-extension@workspace:packages/tree-extension" dependencies: - "@jupyter-notebook/application": ^7.4.0-rc.0 - "@jupyter-notebook/tree": ^7.4.0-rc.0 + "@jupyter-notebook/application": ^7.4.0 + "@jupyter-notebook/tree": ^7.4.0 "@jupyterlab/application": ~4.4.0 "@jupyterlab/apputils": ~4.5.0 "@jupyterlab/coreutils": ~6.4.0 @@ -2465,11 +2465,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/tree@^7.4.0-rc.0, @jupyter-notebook/tree@workspace:packages/tree": +"@jupyter-notebook/tree@^7.4.0, @jupyter-notebook/tree@workspace:packages/tree": version: 0.0.0-use.local resolution: "@jupyter-notebook/tree@workspace:packages/tree" dependencies: - "@jupyter-notebook/application": ^7.4.0-rc.0 + "@jupyter-notebook/application": ^7.4.0 "@jupyterlab/application": ~4.4.0 "@jupyterlab/apputils": ~4.5.0 "@jupyterlab/coreutils": ~6.4.0 @@ -2490,7 +2490,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyter-notebook/ui-components@^7.4.0-rc.0, @jupyter-notebook/ui-components@workspace:packages/ui-components": +"@jupyter-notebook/ui-components@^7.4.0, @jupyter-notebook/ui-components@workspace:packages/ui-components": version: 0.0.0-use.local resolution: "@jupyter-notebook/ui-components@workspace:packages/ui-components" dependencies: From 2616caa8589e008d8f80dc9fe3aa5f3869978784 Mon Sep 17 00:00:00 2001 From: Honnix Date: Fri, 11 Apr 2025 14:46:44 +0200 Subject: [PATCH 018/143] fix: Update lower bound of required python to 3.9 (#7628) * fix: Update lower bound of required python to 3.9 * Ignore UP006 --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f733415bd7..804f77dc1a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "notebook" description = "Jupyter Notebook - A web-based notebook environment for interactive computing" readme = "README.md" license = { file = "LICENSE" } -requires-python = ">=3.8" +requires-python = ">=3.9" authors = [ { name = "Jupyter Development Team", email = "jupyter@googlegroups.com" }, ] @@ -267,6 +267,7 @@ ignore = [ "PLR", # Design related pylint codes "C408", "C416", # Unnecessary `dict` call (rewrite as a literal) "RUF012", # Mutable class attributes should be annotated with `typing.ClassVar` + "UP006", # non-pep585-annotation ] [tool.ruff.lint.per-file-ignores] From 40e1bbe4649f2d263ac59aef3308d4d3c26c841b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Apr 2025 10:06:10 +0200 Subject: [PATCH 019/143] Bump prefix-dev/setup-pixi from 0.8.4 to 0.8.5 in the actions group (#7632) Bumps the actions group with 1 update: [prefix-dev/setup-pixi](https://github.com/prefix-dev/setup-pixi). Updates `prefix-dev/setup-pixi` from 0.8.4 to 0.8.5 - [Release notes](https://github.com/prefix-dev/setup-pixi/releases) - [Commits](https://github.com/prefix-dev/setup-pixi/compare/v0.8.4...v0.8.5) --- updated-dependencies: - dependency-name: prefix-dev/setup-pixi dependency-version: 0.8.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/upgrade-jupyterlab-dependencies.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/upgrade-jupyterlab-dependencies.yml b/.github/workflows/upgrade-jupyterlab-dependencies.yml index 3d82790c76..5bd9d59051 100644 --- a/.github/workflows/upgrade-jupyterlab-dependencies.yml +++ b/.github/workflows/upgrade-jupyterlab-dependencies.yml @@ -79,7 +79,7 @@ jobs: jlpm jlpm deduplicate fi - - uses: prefix-dev/setup-pixi@v0.8.4 + - uses: prefix-dev/setup-pixi@v0.8.5 with: pixi-version: v0.41.4 manifest-path: pyproject.toml From ea978c685a29589bb7f0169722fed82b6ed3c71b Mon Sep 17 00:00:00 2001 From: Honnix Date: Mon, 14 Apr 2025 15:08:24 +0200 Subject: [PATCH 020/143] chore: Fix UP006 (#7633) --- notebook/app.py | 2 +- pyproject.toml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/notebook/app.py b/notebook/app.py index bfd0dce2b9..0dd84e9841 100644 --- a/notebook/app.py +++ b/notebook/app.py @@ -39,7 +39,7 @@ HERE = Path(__file__).parent.resolve() -Flags = t.Dict[t.Union[str, t.Tuple[str, ...]], t.Tuple[t.Union[t.Dict[str, t.Any], Config], str]] +Flags = dict[t.Union[str, tuple[str, ...]], tuple[t.Union[dict[str, t.Any], Config], str]] app_dir = Path(get_app_dir()) version = __version__ diff --git a/pyproject.toml b/pyproject.toml index 804f77dc1a..21b224bcf7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -267,7 +267,6 @@ ignore = [ "PLR", # Design related pylint codes "C408", "C416", # Unnecessary `dict` call (rewrite as a literal) "RUF012", # Mutable class attributes should be annotated with `typing.ClassVar` - "UP006", # non-pep585-annotation ] [tool.ruff.lint.per-file-ignores] From 633fec9a5d31bdc0d6143d447f86feaef4b1b9e9 Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Tue, 22 Apr 2025 22:02:48 +0200 Subject: [PATCH 021/143] Run UI tests on `ubuntu-latest` (#7639) * Run UI tests on `ubuntu-latest` * update snapshots --- .github/workflows/ui-tests.yml | 2 +- .../notebook-chromium-linux.png | Bin 29541 -> 26839 bytes .../debugger-chromium-linux.png | Bin 4576 -> 11926 bytes .../opened-menu-file-chromium-linux.png | Bin 8769 -> 25525 bytes .../opened-menu-file-new-chromium-linux.png | Bin 7153 -> 6670 bytes ...-and-export-notebook-as-chromium-linux.png | Bin 11311 -> 7759 bytes .../opened-menu-help-chromium-linux.png | Bin 10639 -> 31526 bytes .../opened-menu-kernel-chromium-linux.png | Bin 24839 -> 17171 bytes .../opened-menu-settings-chromium-linux.png | Bin 5239 -> 16553 bytes ...ned-menu-settings-theme-chromium-linux.png | Bin 5189 -> 14329 bytes .../notebook-chromium-linux.png | Bin 11762 -> 10714 bytes .../tree-chromium-linux.png | Bin 13319 -> 11786 bytes .../notebook-full-width-chromium-linux.png | Bin 29082 -> 26228 bytes ...tebooktools-right-panel-chromium-linux.png | Bin 6695 -> 5343 bytes .../toc-left-panel-chromium-linux.png | Bin 3621 -> 7637 bytes .../top-hidden-chromium-linux.png | Bin 17660 -> 16123 bytes .../top-visible-chromium-linux.png | Bin 19766 -> 18323 bytes 17 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ui-tests.yml b/.github/workflows/ui-tests.yml index 7367b57e35..c3656cc8b3 100644 --- a/.github/workflows/ui-tests.yml +++ b/.github/workflows/ui-tests.yml @@ -26,7 +26,7 @@ jobs: ui-tests: needs: [build] - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest timeout-minutes: 20 strategy: fail-fast: false diff --git a/ui-tests/test/general.spec.ts-snapshots/notebook-chromium-linux.png b/ui-tests/test/general.spec.ts-snapshots/notebook-chromium-linux.png index 4b5fe47524c3bb74ced3d43122ee3ae46e49c3cc..95b032560c487eaaa8fd1c3d99795a7530ed4b83 100644 GIT binary patch literal 26839 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 GfBqLZ-xYNL literal 29541 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 diff --git a/ui-tests/test/layout.spec.ts-snapshots/debugger-chromium-linux.png b/ui-tests/test/layout.spec.ts-snapshots/debugger-chromium-linux.png index a0291a2fde4963ead6672562dec41630d96e7a80..541711741e3350ea082a8e85aac0467412a114d1 100644 GIT binary patch literal 11926 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 *0!!_U9UY<7MkqHr!Rd*SV+g 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 diff --git a/ui-tests/test/menus.spec.ts-snapshots/opened-menu-file-chromium-linux.png b/ui-tests/test/menus.spec.ts-snapshots/opened-menu-file-chromium-linux.png index 0976e1f3be6b4e1884ecd5aa27d080fd14598bbf..00d1525963ef421cf122417a41661e15d0834d7f 100644 GIT binary patch literal 25525 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 bPJyFgt1>W}@mAu0LIAp#4K7t6(f9rjM;NTp diff --git a/ui-tests/test/menus.spec.ts-snapshots/opened-menu-file-new-chromium-linux.png b/ui-tests/test/menus.spec.ts-snapshots/opened-menu-file-new-chromium-linux.png index 528292d3585b99be60e46421ff529dde626ad6c6..fef30aa33d96c20836b3603413faf3a6a47d6a62 100644 GIT binary patch literal 6670 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 literal 7153 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 Jp`=;xe*my`8<7A2 diff --git a/ui-tests/test/menus.spec.ts-snapshots/opened-menu-file-save-and-export-notebook-as-chromium-linux.png b/ui-tests/test/menus.spec.ts-snapshots/opened-menu-file-save-and-export-notebook-as-chromium-linux.png index 2b444904ac1a521accf06042e2ede009f8a390ea..cea9b994cbf400c3989f95abcd2e2bce3b88c390 100644 GIT binary patch literal 7759 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 literal 11311 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 H!cG4L$dr68 literal 10639 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%0DhvH!qRn7 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 diff --git a/ui-tests/test/menus.spec.ts-snapshots/opened-menu-settings-theme-chromium-linux.png b/ui-tests/test/menus.spec.ts-snapshots/opened-menu-settings-theme-chromium-linux.png index 64b70754ffac5d621a5d124c147046a568da4886..bd5f16f477ba564d4cfcf50e5a94ab3d1a8e236b 100644 GIT binary patch literal 14329 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 diff --git a/ui-tests/test/mobile.spec.ts-snapshots/notebook-chromium-linux.png b/ui-tests/test/mobile.spec.ts-snapshots/notebook-chromium-linux.png index 25e7fc111d8a98ac4e70a6478379ed5a9e5cc764..fba7f697b1bf48fc97b0b55f27119028616cb08c 100644 GIT binary patch literal 10714 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 V(1sA;$C{usCp~|xcDwq^e*@AT_Tm5l literal 11762 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 bB8y~C&(`nj_rs64NqUEj4yNuubM-#}k@oER diff --git a/ui-tests/test/mobile.spec.ts-snapshots/tree-chromium-linux.png b/ui-tests/test/mobile.spec.ts-snapshots/tree-chromium-linux.png index 89cd703342287ba54af74e3c454dcc92f05aa2ac..02a70018aa6c0eb7ef2c167a5da86ae9be18ce39 100644 GIT binary patch literal 11786 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 H>>vLhoIqSd literal 13319 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 diff --git a/ui-tests/test/notebook.spec.ts-snapshots/notebook-full-width-chromium-linux.png b/ui-tests/test/notebook.spec.ts-snapshots/notebook-full-width-chromium-linux.png index fec94ae20277ae748ed954e908eed84a9584574c..c317e428405d299d95c7fe69aff8aabeb92abfe8 100644 GIT binary patch literal 26228 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°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