diff --git a/.copier-answers.yml b/.copier-answers.yml
index 1e4d8aa..a37e48f 100644
--- a/.copier-answers.yml
+++ b/.copier-answers.yml
@@ -1,19 +1,14 @@
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
-_commit: v4.0.10
+_commit: v4.3.6
_src_path: https://github.com/jupyterlab/extension-template
author_email: fcollonval@gmail.com
author_name: Frederic Collonval
-data_format: string
-file_extension: ''
has_binder: true
has_settings: true
kind: server
labextension_name: jupyterlab-rise
-mimetype: ''
-mimetype_name: ''
project_short_description: 'RISE: "Live" Reveal.js JupyterLab Slideshow extension.'
python_name: jupyterlab_rise
repository: https://github.com/jupyterlab-contrib/rise
test: true
-viewer_name: ''
diff --git a/.github/workflows/binder-on-pr.yml b/.github/workflows/binder-on-pr.yml
index 87e9cd2..c9c2ac6 100644
--- a/.github/workflows/binder-on-pr.yml
+++ b/.github/workflows/binder-on-pr.yml
@@ -11,4 +11,4 @@ jobs:
steps:
- uses: jupyterlab/maintainer-tools/.github/actions/binder-link@v1
with:
- github_token: ${{ secrets.github_token }}
+ github_token: ${{ secrets.GITHUB_TOKEN }}
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 13fcf80..0d5dcb5 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -6,13 +6,17 @@ on:
pull_request:
branches: '*'
+concurrency:
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
+ cancel-in-progress: true
+
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Base Setup
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
@@ -47,7 +51,7 @@ jobs:
pip uninstall -y "jupyterlab_rise" jupyterlab
- name: Upload extension packages
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: extension-artifacts
path: dist/jupyterlab_rise*
@@ -59,11 +63,11 @@ jobs:
steps:
- name: Install Python
- uses: actions/setup-python@v4
+ uses: actions/setup-python@v5
with:
python-version: '3.9'
architecture: 'x64'
- - uses: actions/download-artifact@v3
+ - uses: actions/download-artifact@v4
with:
name: extension-artifacts
- name: Install and Test
@@ -93,13 +97,13 @@ jobs:
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Base Setup
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
- name: Download extension package
- uses: actions/download-artifact@v3
+ uses: actions/download-artifact@v4
with:
name: extension-artifacts
@@ -111,11 +115,12 @@ jobs:
- name: Install dependencies
working-directory: ui-tests
env:
+ YARN_ENABLE_IMMUTABLE_INSTALLS: 0
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
run: jlpm install
- name: Set up browser cache
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
path: |
${{ github.workspace }}/pw-browsers
@@ -132,7 +137,7 @@ jobs:
- name: Upload Playwright Test report
if: always()
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: jupyterlab_rise-playwright-tests
path: |
@@ -144,7 +149,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
- uses: jupyterlab/maintainer-tools/.github/actions/check-links@v1
with:
diff --git a/.github/workflows/check-release.yml b/.github/workflows/check-release.yml
index 709fa01..2da1337 100644
--- a/.github/workflows/check-release.yml
+++ b/.github/workflows/check-release.yml
@@ -5,12 +5,16 @@ on:
pull_request:
branches: ["*"]
+concurrency:
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
+ cancel-in-progress: true
+
jobs:
check_release:
runs-on: ubuntu-latest
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Base Setup
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
- name: Install Dependencies
@@ -24,7 +28,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Upload Distributions
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: jupyterlab_rise-releaser-dist-${{ github.run_number }}
path: .jupyter_releaser_checkout/dist
diff --git a/.github/workflows/prep-release.yml b/.github/workflows/prep-release.yml
index 6f09281..67ecd98 100644
--- a/.github/workflows/prep-release.yml
+++ b/.github/workflows/prep-release.yml
@@ -12,6 +12,10 @@ on:
post_version_spec:
description: "Post Version Specifier"
required: false
+ # silent:
+ # description: "Set a placeholder in the changelog and don't publish the release."
+ # required: false
+ # type: boolean
since:
description: "Use PRs with activity since this date or git reference"
required: false
@@ -22,6 +26,8 @@ on:
jobs:
prep_release:
runs-on: ubuntu-latest
+ permissions:
+ contents: write
steps:
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
@@ -29,8 +35,9 @@ jobs:
id: prep-release
uses: jupyter-server/jupyter_releaser/.github/actions/prep-release@v2
with:
- token: ${{ secrets.ADMIN_GITHUB_TOKEN }}
+ token: ${{ secrets.GITHUB_TOKEN }}
version_spec: ${{ github.event.inputs.version_spec }}
+ # silent: ${{ github.event.inputs.silent }}
post_version_spec: ${{ github.event.inputs.post_version_spec }}
branch: ${{ github.event.inputs.branch }}
since: ${{ github.event.inputs.since }}
diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml
index 1ddf2e2..c188106 100644
--- a/.github/workflows/publish-release.yml
+++ b/.github/workflows/publish-release.yml
@@ -15,18 +15,23 @@ on:
jobs:
publish_release:
runs-on: ubuntu-latest
+ environment: release
permissions:
- # This is useful if you want to use PyPI trusted publisher
- # and NPM provenance
id-token: write
steps:
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
+ - uses: actions/create-github-app-token@v1
+ id: app-token
+ with:
+ app-id: ${{ vars.APP_ID }}
+ private-key: ${{ secrets.APP_PRIVATE_KEY }}
+
- name: Populate Release
id: populate-release
uses: jupyter-server/jupyter_releaser/.github/actions/populate-release@v2
with:
- token: ${{ secrets.ADMIN_GITHUB_TOKEN }}
+ token: ${{ steps.app-token.outputs.token }}
branch: ${{ github.event.inputs.branch }}
release_url: ${{ github.event.inputs.release_url }}
steps_to_skip: ${{ github.event.inputs.steps_to_skip }}
@@ -34,14 +39,10 @@ jobs:
- name: Finalize Release
id: finalize-release
env:
- # The following are needed if you use legacy PyPI set up
- # PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
- # PYPI_TOKEN_MAP: ${{ secrets.PYPI_TOKEN_MAP }}
- # TWINE_USERNAME: __token__
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- uses: jupyter-server/jupyter-releaser/.github/actions/finalize-release@v2
+ uses: jupyter-server/jupyter_releaser/.github/actions/finalize-release@v2
with:
- token: ${{ secrets.ADMIN_GITHUB_TOKEN }}
+ token: ${{ steps.app-token.outputs.token }}
release_url: ${{ steps.populate-release.outputs.release_url }}
- name: "** Next Step **"
diff --git a/RELEASE.md b/RELEASE.md
index 2ef0244..198ba02 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -45,52 +45,21 @@ npm publish --access public
## Automated releases with the Jupyter Releaser
-The extension repository should already be compatible with the Jupyter Releaser.
-
-Check out the [workflow documentation](https://jupyter-releaser.readthedocs.io/en/latest/get_started/making_release_from_repo.html) for more information.
+The extension repository should already be compatible with the Jupyter Releaser. But
+the GitHub repository and the package managers need to be properly set up. Please
+follow the instructions of the Jupyter Releaser [checklist](https://jupyter-releaser.readthedocs.io/en/latest/how_to_guides/convert_repo_from_repo.html).
Here is a summary of the steps to cut a new release:
-- Add tokens to the [Github Secrets](https://docs.github.com/en/actions/security-guides/encrypted-secrets) in the repository:
- - `ADMIN_GITHUB_TOKEN` (with "public_repo" and "repo:status" permissions); see the [documentation](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token)
- - `NPM_TOKEN` (with "automation" permission); see the [documentation](https://docs.npmjs.com/creating-and-viewing-access-tokens)
-- Set up PyPI
-
-Using PyPI trusted publisher (modern way)
-
-- Set up your PyPI project by [adding a trusted publisher](https://docs.pypi.org/trusted-publishers/adding-a-publisher/)
- - The _workflow name_ is `publish-release.yml` and the _environment_ should be left blank.
-- Ensure the publish release job as `permissions`: `id-token : write` (see the [documentation](https://docs.pypi.org/trusted-publishers/using-a-publisher/))
-
-
-
-Using PyPI token (legacy way)
-
-- If the repo generates PyPI release(s), create a scoped PyPI [token](https://packaging.python.org/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/#saving-credentials-on-github). We recommend using a scoped token for security reasons.
-
-- You can store the token as `PYPI_TOKEN` in your fork's `Secrets`.
-
- - Advanced usage: if you are releasing multiple repos, you can create a secret named `PYPI_TOKEN_MAP` instead of `PYPI_TOKEN` that is formatted as follows:
-
- ```text
- owner1/repo1,token1
- owner2/repo2,token2
- ```
-
- If you have multiple Python packages in the same repository, you can point to them as follows:
-
- ```text
- owner1/repo1/path/to/package1,token1
- owner1/repo1/path/to/package2,token2
- ```
-
-
-
- Go to the Actions panel
- Run the "Step 1: Prep Release" workflow
- Check the draft changelog
- Run the "Step 2: Publish Release" workflow
+> [!NOTE]
+> Check out the [workflow documentation](https://jupyter-releaser.readthedocs.io/en/latest/get_started/making_release_from_repo.html)
+> for more information.
+
## Publishing to `conda-forge`
If the package is not on conda forge yet, check the documentation to learn how to add it: https://conda-forge.org/docs/maintainer/adding_pkgs.html
diff --git a/package.json b/package.json
index c78af56..5bab408 100644
--- a/package.json
+++ b/package.json
@@ -68,6 +68,7 @@
"stylelint": "^15.10.1",
"stylelint-config-recommended": "^13.0.0",
"stylelint-config-standard": "^34.0.0",
+ "stylelint-csstree-validator": "^3.0.0",
"stylelint-prettier": "^4.0.0",
"typescript": "~5.0.4"
},
@@ -155,7 +156,11 @@
"stylelint-config-standard",
"stylelint-prettier/recommended"
],
+ "plugins": [
+ "stylelint-csstree-validator"
+ ],
"rules": {
+ "csstree/validator": true,
"property-no-vendor-prefix": null,
"selector-class-pattern": null,
"selector-no-vendor-prefix": null,
diff --git a/pyproject.toml b/pyproject.toml
index 8b0313f..0d429b1 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,5 +1,5 @@
[build-system]
-requires = ["hatchling>=1.5.0", "jupyterlab>=4.0.0,<5", "hatch-nodejs-version"]
+requires = ["hatchling>=1.5.0", "jupyterlab>=4.0.0,<5", "hatch-nodejs-version>=0.3.2"]
build-backend = "hatchling.build"
[project]
@@ -20,6 +20,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
+ "Programming Language :: Python :: 3.12",
]
dependencies = [
"jupyter_server>=2.0.1,<3",
@@ -40,7 +41,7 @@ test = [
source = "nodejs"
[tool.hatch.metadata.hooks.nodejs]
-fields = ["description", "authors", "urls"]
+fields = ["description", "authors", "urls", "keywords"]
[tool.hatch.build.targets.sdist]
artifacts = ["jupyterlab_rise/labextension", "jupyterlab_rise/schemas", "jupyterlab_rise/static"]
diff --git a/ui-tests/README.md b/ui-tests/README.md
index dbe6e8a..9182514 100644
--- a/ui-tests/README.md
+++ b/ui-tests/README.md
@@ -3,7 +3,7 @@
This folder contains the integration tests of the extension.
They are defined using [Playwright](https://playwright.dev/docs/intro) test runner
-and [Galata](https://github.com/jupyterlab/jupyterlab/tree/master/galata) helper.
+and [Galata](https://github.com/jupyterlab/jupyterlab/tree/main/galata) helper.
The Playwright configuration is defined in [playwright.config.js](./playwright.config.js).
@@ -12,7 +12,7 @@ in [jupyter_server_test_config.py](./jupyter_server_test_config.py).
The default configuration will produce video for failing tests and an HTML report.
-> There is a new experimental UI mode that you may fall in love with; see [that video](https://www.youtube.com/watch?v=jF0yA-JLQW0).
+> There is a UI mode that you may like; see [that video](https://www.youtube.com/watch?v=jF0yA-JLQW0).
## Run the tests
diff --git a/ui-tests/package.json b/ui-tests/package.json
index 2458229..735aa43 100644
--- a/ui-tests/package.json
+++ b/ui-tests/package.json
@@ -9,7 +9,7 @@
"test:update": "jlpm playwright test --update-snapshots"
},
"devDependencies": {
- "@jupyterlab/galata": "^5.0.0",
- "@playwright/test": "^1.32.0"
+ "@jupyterlab/galata": "^5.0.5",
+ "@playwright/test": "^1.37.0"
}
}
diff --git a/yarn.lock b/yarn.lock
index 2b83948..9d2aba6 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -48,32 +48,27 @@ __metadata:
languageName: node
linkType: hard
-"@codemirror/autocomplete@npm:^6.0.0, @codemirror/autocomplete@npm:^6.3.2, @codemirror/autocomplete@npm:^6.5.1, @codemirror/autocomplete@npm:^6.7.1":
- version: 6.9.0
- resolution: "@codemirror/autocomplete@npm:6.9.0"
+"@codemirror/autocomplete@npm:^6.0.0, @codemirror/autocomplete@npm:^6.16.0, @codemirror/autocomplete@npm:^6.3.2, @codemirror/autocomplete@npm:^6.7.1":
+ version: 6.18.4
+ resolution: "@codemirror/autocomplete@npm:6.18.4"
dependencies:
- "@codemirror/language": "npm:^6.0.0"
- "@codemirror/state": "npm:^6.0.0"
- "@codemirror/view": "npm:^6.6.0"
- "@lezer/common": "npm:^1.0.0"
- peerDependencies:
"@codemirror/language": ^6.0.0
"@codemirror/state": ^6.0.0
- "@codemirror/view": ^6.0.0
+ "@codemirror/view": ^6.17.0
"@lezer/common": ^1.0.0
- checksum: a5f661944c75f40b02c90a193c9a459c0fd7e335c0ac5973420c19157dfb46010f573c2b70731591fe477e7a2ad10121ff3ae394a72d450946d7b886c28b0368
+ checksum: 4216f45a17f6cfd8d33df53f940396f7d3707662570bf3a79d8d333f926e273a265fac13c362e29e3fa57ccdf444f1a047862f5f56c672cfc669c87ee975858f
languageName: node
linkType: hard
-"@codemirror/commands@npm:^6.2.3":
- version: 6.2.4
- resolution: "@codemirror/commands@npm:6.2.4"
+"@codemirror/commands@npm:^6.5.0":
+ version: 6.7.1
+ resolution: "@codemirror/commands@npm:6.7.1"
dependencies:
- "@codemirror/language": "npm:^6.0.0"
- "@codemirror/state": "npm:^6.2.0"
- "@codemirror/view": "npm:^6.0.0"
- "@lezer/common": "npm:^1.0.0"
- checksum: 468895fa19ff0554181b698c81f850820de5c0289cab92c44392fb127286f09ca72b921d6ea4353b70b616a4fd0c3667d86b6f917202a3ad2e196eb7b581f7b6
+ "@codemirror/language": ^6.0.0
+ "@codemirror/state": ^6.4.0
+ "@codemirror/view": ^6.27.0
+ "@lezer/common": ^1.1.0
+ checksum: 507ae0cc7f3a7bd869bca0de7e942ecb2bc0bd95a42484e5b06835ebf8caf7626c39d2bea26cefab99d07ab83ba5934afd2d07ce00dac4190aca014523f3c97e
languageName: node
linkType: hard
@@ -87,33 +82,33 @@ __metadata:
languageName: node
linkType: hard
-"@codemirror/lang-css@npm:^6.0.0, @codemirror/lang-css@npm:^6.1.1":
- version: 6.2.0
- resolution: "@codemirror/lang-css@npm:6.2.0"
+"@codemirror/lang-css@npm:^6.0.0, @codemirror/lang-css@npm:^6.2.1":
+ version: 6.3.1
+ resolution: "@codemirror/lang-css@npm:6.3.1"
dependencies:
- "@codemirror/autocomplete": "npm:^6.0.0"
- "@codemirror/language": "npm:^6.0.0"
- "@codemirror/state": "npm:^6.0.0"
- "@lezer/common": "npm:^1.0.2"
- "@lezer/css": "npm:^1.0.0"
- checksum: d824f169083613b63f04992c24d3fecd45c718cd3deb9da3f332dd3a889a762d05ea812e31ddf7ee4b661722f8c8b49676515cb98609067c53e25ac8b469a5e4
+ "@codemirror/autocomplete": ^6.0.0
+ "@codemirror/language": ^6.0.0
+ "@codemirror/state": ^6.0.0
+ "@lezer/common": ^1.0.2
+ "@lezer/css": ^1.1.7
+ checksum: ed175d75d75bc0a059d1e60b3dcd8464d570da14fc97388439943c9c43e1e9146e37b83fe2ccaad9cd387420b7b411ea1d24ede78ecd1f2045a38acbb4dd36bc
languageName: node
linkType: hard
-"@codemirror/lang-html@npm:^6.0.0, @codemirror/lang-html@npm:^6.4.3":
- version: 6.4.5
- resolution: "@codemirror/lang-html@npm:6.4.5"
+"@codemirror/lang-html@npm:^6.0.0, @codemirror/lang-html@npm:^6.4.9":
+ version: 6.4.9
+ resolution: "@codemirror/lang-html@npm:6.4.9"
dependencies:
- "@codemirror/autocomplete": "npm:^6.0.0"
- "@codemirror/lang-css": "npm:^6.0.0"
- "@codemirror/lang-javascript": "npm:^6.0.0"
- "@codemirror/language": "npm:^6.4.0"
- "@codemirror/state": "npm:^6.0.0"
- "@codemirror/view": "npm:^6.2.2"
- "@lezer/common": "npm:^1.0.0"
- "@lezer/css": "npm:^1.1.0"
- "@lezer/html": "npm:^1.3.0"
- checksum: 08c6a55557f5491059f1b20d7788e64dcc37c488d4c97c00fa1c21af599ab48cdd7f839f3ffc6814480b9756c7a96845a36b578427b3c8d5efbfe123bf4553b9
+ "@codemirror/autocomplete": ^6.0.0
+ "@codemirror/lang-css": ^6.0.0
+ "@codemirror/lang-javascript": ^6.0.0
+ "@codemirror/language": ^6.4.0
+ "@codemirror/state": ^6.0.0
+ "@codemirror/view": ^6.17.0
+ "@lezer/common": ^1.0.0
+ "@lezer/css": ^1.1.0
+ "@lezer/html": ^1.3.0
+ checksum: ac8c3ceb0396f2e032752c5079bd950124dca708bc64e96fc147dc5fe7133e5cee0814fe951abdb953ec1d11fa540e4b30a712b5149d9a36016a197a28de45d7
languageName: node
linkType: hard
@@ -127,18 +122,18 @@ __metadata:
languageName: node
linkType: hard
-"@codemirror/lang-javascript@npm:^6.0.0, @codemirror/lang-javascript@npm:^6.1.7":
- version: 6.1.9
- resolution: "@codemirror/lang-javascript@npm:6.1.9"
+"@codemirror/lang-javascript@npm:^6.0.0, @codemirror/lang-javascript@npm:^6.2.2":
+ version: 6.2.2
+ resolution: "@codemirror/lang-javascript@npm:6.2.2"
dependencies:
- "@codemirror/autocomplete": "npm:^6.0.0"
- "@codemirror/language": "npm:^6.6.0"
- "@codemirror/lint": "npm:^6.0.0"
- "@codemirror/state": "npm:^6.0.0"
- "@codemirror/view": "npm:^6.0.0"
- "@lezer/common": "npm:^1.0.0"
- "@lezer/javascript": "npm:^1.0.0"
- checksum: 6c79b51c61d37b3f4dde6312df02183045c31f055e5cf8550b497f39798b823b4e380a641a2cfc97f3f26fd4e89194258d8ef741c42acd72b3f2e18257b427a5
+ "@codemirror/autocomplete": ^6.0.0
+ "@codemirror/language": ^6.6.0
+ "@codemirror/lint": ^6.0.0
+ "@codemirror/state": ^6.0.0
+ "@codemirror/view": ^6.17.0
+ "@lezer/common": ^1.0.0
+ "@lezer/javascript": ^1.0.0
+ checksum: 66379942a8347dff2bd76d10ed7cf313bca83872f8336fdd3e14accfef23e7b690cd913c9d11a3854fba2b32299da07fc3275995327642c9ee43c2a8e538c19d
languageName: node
linkType: hard
@@ -152,18 +147,18 @@ __metadata:
languageName: node
linkType: hard
-"@codemirror/lang-markdown@npm:^6.1.1":
- version: 6.2.0
- resolution: "@codemirror/lang-markdown@npm:6.2.0"
+"@codemirror/lang-markdown@npm:^6.1.1, @codemirror/lang-markdown@npm:^6.2.5":
+ version: 6.3.1
+ resolution: "@codemirror/lang-markdown@npm:6.3.1"
dependencies:
- "@codemirror/autocomplete": "npm:^6.7.1"
- "@codemirror/lang-html": "npm:^6.0.0"
- "@codemirror/language": "npm:^6.3.0"
- "@codemirror/state": "npm:^6.0.0"
- "@codemirror/view": "npm:^6.0.0"
- "@lezer/common": "npm:^1.0.0"
- "@lezer/markdown": "npm:^1.0.0"
- checksum: 0b2b5334abc8bb46fdaf0723fcddb9565b89c58d245ee0cced2c62c9c5de8430ad8bd73ab92d8a6bd67130173b59006bec2922e614e0277aa2b2d62f308113cf
+ "@codemirror/autocomplete": ^6.7.1
+ "@codemirror/lang-html": ^6.0.0
+ "@codemirror/language": ^6.3.0
+ "@codemirror/state": ^6.0.0
+ "@codemirror/view": ^6.0.0
+ "@lezer/common": ^1.2.1
+ "@lezer/markdown": ^1.0.0
+ checksum: cd0281c6b7130b2f12903c82a2f36b53b428002577a9fdab09de810a95ef0db5049ef951e2a065b0f38b42af854bee176492238e5ab116099e4799950638cadc
languageName: node
linkType: hard
@@ -180,14 +175,16 @@ __metadata:
languageName: node
linkType: hard
-"@codemirror/lang-python@npm:^6.1.3":
- version: 6.1.3
- resolution: "@codemirror/lang-python@npm:6.1.3"
+"@codemirror/lang-python@npm:^6.1.6":
+ version: 6.1.6
+ resolution: "@codemirror/lang-python@npm:6.1.6"
dependencies:
- "@codemirror/autocomplete": "npm:^6.3.2"
- "@codemirror/language": "npm:^6.8.0"
- "@lezer/python": "npm:^1.1.4"
- checksum: 65a0276a4503e4e3b70dd28d1c93ef472632b6d2c4bf3ae92d305d14ee8cf60b0bbbf62d5ceb51294de9598d9e2d42eafcde26f317ee7b90d0a11dfa863c1d1a
+ "@codemirror/autocomplete": ^6.3.2
+ "@codemirror/language": ^6.8.0
+ "@codemirror/state": ^6.0.0
+ "@lezer/common": ^1.2.1
+ "@lezer/python": ^1.1.4
+ checksum: eb1faabd332bb95d0f3e227eb19ac5a31140cf238905bbe73e061040999f5680a012f9145fb3688bc2fcbb1908c957511edc8eeb8a9aa88d27d4fa55ad451e95
languageName: node
linkType: hard
@@ -201,63 +198,66 @@ __metadata:
languageName: node
linkType: hard
-"@codemirror/lang-sql@npm:^6.4.1":
- version: 6.5.2
- resolution: "@codemirror/lang-sql@npm:6.5.2"
+"@codemirror/lang-sql@npm:^6.6.4":
+ version: 6.8.0
+ resolution: "@codemirror/lang-sql@npm:6.8.0"
dependencies:
- "@codemirror/autocomplete": "npm:^6.0.0"
- "@codemirror/language": "npm:^6.0.0"
- "@codemirror/state": "npm:^6.0.0"
- "@lezer/highlight": "npm:^1.0.0"
- "@lezer/lr": "npm:^1.0.0"
- checksum: 29c7f3245271e50707939946e0aa3bae36d2fc392281c5a44bed38c886a5709611a8c68494d1f21c854dd70771ddb2cff2f0f26221b031653278ba2d5678a2b8
+ "@codemirror/autocomplete": ^6.0.0
+ "@codemirror/language": ^6.0.0
+ "@codemirror/state": ^6.0.0
+ "@lezer/common": ^1.2.0
+ "@lezer/highlight": ^1.0.0
+ "@lezer/lr": ^1.0.0
+ checksum: 1b5a3c8129b09f24039d8c0906fc4cb8d0f706a424a1d56721057bd1e647797c2b1240bb53eed9bf2bac5806a4e0363e555a3963f04c478efa05829890c537f7
languageName: node
linkType: hard
-"@codemirror/lang-wast@npm:^6.0.1":
- version: 6.0.1
- resolution: "@codemirror/lang-wast@npm:6.0.1"
+"@codemirror/lang-wast@npm:^6.0.2":
+ version: 6.0.2
+ resolution: "@codemirror/lang-wast@npm:6.0.2"
dependencies:
- "@codemirror/language": "npm:^6.0.0"
- "@lezer/highlight": "npm:^1.0.0"
- "@lezer/lr": "npm:^1.0.0"
- checksum: 600d98d3ea6a4e99292244ed707e39a2abd9f3abf62cfeff5c819a0cc0c7e86b8c5b91e91c1b7ea21233d9ea09c41abe61d8a40b2547bb5db74239c6df857934
+ "@codemirror/language": ^6.0.0
+ "@lezer/common": ^1.2.0
+ "@lezer/highlight": ^1.0.0
+ "@lezer/lr": ^1.0.0
+ checksum: 72119d4a7d726c54167aa227c982ae9fa785c8ad97a158d8350ae95eecfbd8028a803eef939f7e6c5c6e626fcecda1dc37e9dffc6d5d6ec105f686aeda6b2c24
languageName: node
linkType: hard
-"@codemirror/lang-xml@npm:^6.0.2":
- version: 6.0.2
- resolution: "@codemirror/lang-xml@npm:6.0.2"
+"@codemirror/lang-xml@npm:^6.1.0":
+ version: 6.1.0
+ resolution: "@codemirror/lang-xml@npm:6.1.0"
dependencies:
- "@codemirror/autocomplete": "npm:^6.0.0"
- "@codemirror/language": "npm:^6.4.0"
- "@codemirror/state": "npm:^6.0.0"
- "@lezer/common": "npm:^1.0.0"
- "@lezer/xml": "npm:^1.0.0"
- checksum: e156ecafaa87e9b6ef4ab6812ccd00d8f3c6cb81f232837636b36336d80513b61936dfee6f4f6800574f236208b61e95a2abcb997cdcd7366585a6b796e0e13b
+ "@codemirror/autocomplete": ^6.0.0
+ "@codemirror/language": ^6.4.0
+ "@codemirror/state": ^6.0.0
+ "@codemirror/view": ^6.0.0
+ "@lezer/common": ^1.0.0
+ "@lezer/xml": ^1.0.0
+ checksum: 3a1b7af07b29ad7e53b77bf584245580b613bc92256059f175f2b1d7c28c4e39b75654fe169b9a8a330a60164b53ff5254bdb5b8ee8c6e6766427ee115c4e229
languageName: node
linkType: hard
-"@codemirror/language@npm:^6.0.0, @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.8.0
- resolution: "@codemirror/language@npm:6.8.0"
+"@codemirror/language@npm:^6.0.0, @codemirror/language@npm:^6.10.1, @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.8
+ resolution: "@codemirror/language@npm:6.10.8"
dependencies:
- "@codemirror/state": "npm:^6.0.0"
- "@codemirror/view": "npm:^6.0.0"
- "@lezer/common": "npm:^1.0.0"
- "@lezer/highlight": "npm:^1.0.0"
- "@lezer/lr": "npm:^1.0.0"
- style-mod: "npm:^4.0.0"
- checksum: 64408d996641931fa4c6b892e17ee1fdaee0f63d3d84c019a6ea7b1e6d1c774f92357b95c2ebaed60545062b795b72d0a058c03578b2bf4023c87726e97b5d2f
+ "@codemirror/state": ^6.0.0
+ "@codemirror/view": ^6.23.0
+ "@lezer/common": ^1.1.0
+ "@lezer/highlight": ^1.0.0
+ "@lezer/lr": ^1.0.0
+ style-mod: ^4.0.0
+ checksum: 679b69d69faa94f028f996a7005d0c6c2a2e4cd7a7a2614f615c23d7b642c31fc1837915248e864cb1ad59a2f032d1a7a8ef486b5f9904e5f6fbe6f7d2882c38
languageName: node
linkType: hard
-"@codemirror/legacy-modes@npm:^6.3.2":
- version: 6.3.3
- resolution: "@codemirror/legacy-modes@npm:6.3.3"
+"@codemirror/legacy-modes@npm:^6.3.2, @codemirror/legacy-modes@npm:^6.4.0":
+ version: 6.4.2
+ resolution: "@codemirror/legacy-modes@npm:6.4.2"
dependencies:
- "@codemirror/language": "npm:^6.0.0"
- checksum: 3cd32b0f011b0a193e0948e5901b625f38aa6d9a8b24344531d6e142eb6fbb3e6cb5969429102044f3d04fbe53c4deaebd9f659c05067a0b18d17766290c9e05
+ "@codemirror/language": ^6.0.0
+ checksum: fe55df97efe980a573ff5572f480eae323d7652a4a61435c654a90142def7102218023590112de7cd826c495ecaadae68a89fb5e5d4323d207af267bcce1d0c1
languageName: node
linkType: hard
@@ -272,32 +272,34 @@ __metadata:
languageName: node
linkType: hard
-"@codemirror/search@npm:^6.3.0":
- version: 6.5.0
- resolution: "@codemirror/search@npm:6.5.0"
+"@codemirror/search@npm:^6.5.6":
+ version: 6.5.8
+ resolution: "@codemirror/search@npm:6.5.8"
dependencies:
- "@codemirror/state": "npm:^6.0.0"
- "@codemirror/view": "npm:^6.0.0"
- crelt: "npm:^1.0.5"
- checksum: 2e9f2344b7dbd4bad79058c105d8cbd02b2bf94c27495310f0e3b6e999010aa080dceea47ef46e35439cc9e131b47c46f7d2eda700ef491b5f2f34bbc8e145ab
+ "@codemirror/state": ^6.0.0
+ "@codemirror/view": ^6.0.0
+ crelt: ^1.0.5
+ checksum: 0f9633037492a7b647b606c30255ea42c4327319e643be7ea3aa2913ed8e4aa662589f457e376636521c7d4d1215fae0e8939f127db9c0790b19ae3b654c3bc4
languageName: node
linkType: hard
-"@codemirror/state@npm:^6.0.0, @codemirror/state@npm:^6.1.4, @codemirror/state@npm:^6.2.0":
- version: 6.2.1
- resolution: "@codemirror/state@npm:6.2.1"
- checksum: d12a321d0471b264b9d3259042bff913a8b939e8d28d408ff452004538a71ca9d5329df3f8a1d8a9183f5b42a7ef5b200737bcab1065714f5ae8e0a5ba9d59d3
+"@codemirror/state@npm:^6.0.0, @codemirror/state@npm:^6.4.0, @codemirror/state@npm:^6.4.1, @codemirror/state@npm:^6.5.0":
+ version: 6.5.0
+ resolution: "@codemirror/state@npm:6.5.0"
+ dependencies:
+ "@marijn/find-cluster-break": ^1.0.0
+ checksum: f7fbed072cc67bf250f7d231668a00b988748cacaaa2ce3ea74ff13c7c392db76000e7d517933521cc6ad9dc3651c7b6d33accab3e3d4b9816cd3c5714661a84
languageName: node
linkType: hard
-"@codemirror/view@npm:^6.0.0, @codemirror/view@npm:^6.2.2, @codemirror/view@npm:^6.6.0, @codemirror/view@npm:^6.9.6":
- version: 6.15.3
- resolution: "@codemirror/view@npm:6.15.3"
+"@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":
+ version: 6.36.1
+ resolution: "@codemirror/view@npm:6.36.1"
dependencies:
- "@codemirror/state": "npm:^6.1.4"
- style-mod: "npm:^4.0.0"
- w3c-keyname: "npm:^2.2.4"
- checksum: 048949b1b493a962904a7f77661a939f7c1893a7381022756a135f5dd8daf667f498be1b81da9c37c0e8de85b078ad987c2f75318385c520ed83c95da6313e95
+ "@codemirror/state": ^6.5.0
+ style-mod: ^4.1.0
+ w3c-keyname: ^2.2.4
+ checksum: 77728cbc6f07f16abc4b98c487b6fad522781c928e4b31597b28d54364da6aa5542ed7c9b5c77b90bec5095527c3c062450f156f54fc8ddbcacdf86b4b32c608
languageName: node
linkType: hard
@@ -509,6 +511,28 @@ __metadata:
languageName: node
linkType: hard
+"@jupyter/react-components@npm:^0.16.6":
+ version: 0.16.7
+ resolution: "@jupyter/react-components@npm:0.16.7"
+ dependencies:
+ "@jupyter/web-components": ^0.16.7
+ react: ">=17.0.0 <19.0.0"
+ checksum: 37894347e63ebb528725e8b8b4038d138019823f5c9e28e3f6abb93b46d771b2ee3cc004d5ff7d9a06a93f2d90e41000bd2abae14364be34ba99c5e05864810e
+ languageName: node
+ linkType: hard
+
+"@jupyter/web-components@npm:^0.16.6, @jupyter/web-components@npm:^0.16.7":
+ version: 0.16.7
+ resolution: "@jupyter/web-components@npm:0.16.7"
+ dependencies:
+ "@microsoft/fast-colors": ^5.3.1
+ "@microsoft/fast-element": ^1.12.0
+ "@microsoft/fast-foundation": ^2.49.4
+ "@microsoft/fast-web-utilities": ^5.4.1
+ checksum: ec3336247bbabb2e2587c2cf8b9d0e80786b454916dd600b3d6791bf08c3d1e45a7ec1becf366a5491ab56b0be020baa8c50a5b6067961faf5ec904de31243aa
+ languageName: node
+ linkType: hard
+
"@jupyter/ydoc@npm:^1.0.2":
version: 1.0.2
resolution: "@jupyter/ydoc@npm:1.0.2"
@@ -523,6 +547,20 @@ __metadata:
languageName: node
linkType: hard
+"@jupyter/ydoc@npm:^3.0.0":
+ version: 3.0.2
+ resolution: "@jupyter/ydoc@npm:3.0.2"
+ dependencies:
+ "@jupyterlab/nbformat": ^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0
+ "@lumino/coreutils": ^1.11.0 || ^2.0.0
+ "@lumino/disposable": ^1.10.0 || ^2.0.0
+ "@lumino/signaling": ^1.10.0 || ^2.0.0
+ y-protocols: ^1.0.5
+ yjs: ^13.5.40
+ checksum: 770f73459635c74bd0e5cacdca1ea1f77ee8efd6e7cd58f0ccbb167ae8374e73118620f4f3628646281160a7bc7389f374bd2106f1e799bdc8f78cad0ce05b28
+ languageName: node
+ linkType: hard
+
"@jupyterlab/application-extension@npm:^4.0.2":
version: 4.0.3
resolution: "@jupyterlab/application-extension@npm:4.0.3"
@@ -546,31 +584,31 @@ __metadata:
languageName: node
linkType: hard
-"@jupyterlab/application@npm:^4.0.2, @jupyterlab/application@npm:^4.0.3":
- version: 4.0.3
- resolution: "@jupyterlab/application@npm:4.0.3"
- dependencies:
- "@fortawesome/fontawesome-free": "npm:^5.12.0"
- "@jupyterlab/apputils": "npm:^4.1.3"
- "@jupyterlab/coreutils": "npm:^6.0.3"
- "@jupyterlab/docregistry": "npm:^4.0.3"
- "@jupyterlab/rendermime": "npm:^4.0.3"
- "@jupyterlab/rendermime-interfaces": "npm:^3.8.3"
- "@jupyterlab/services": "npm:^7.0.3"
- "@jupyterlab/statedb": "npm:^4.0.3"
- "@jupyterlab/translation": "npm:^4.0.3"
- "@jupyterlab/ui-components": "npm:^4.0.3"
- "@lumino/algorithm": "npm:^2.0.0"
- "@lumino/application": "npm:^2.1.1"
- "@lumino/commands": "npm:^2.1.1"
- "@lumino/coreutils": "npm:^2.1.1"
- "@lumino/disposable": "npm:^2.1.1"
- "@lumino/messaging": "npm:^2.0.0"
- "@lumino/polling": "npm:^2.1.1"
- "@lumino/properties": "npm:^2.0.0"
- "@lumino/signaling": "npm:^2.1.1"
- "@lumino/widgets": "npm:^2.1.1"
- checksum: 25443512d8df22bc87899ed944c9d7ea6c233501173ddd6316d9f0fda0faa523b38b9973f98aeb519a138649839d1d61e19d54f28b229e20485f90d11495eaae
+"@jupyterlab/application@npm:^4.0.2, @jupyterlab/application@npm:^4.0.3, @jupyterlab/application@npm:^4.3.4":
+ 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
languageName: node
linkType: hard
@@ -605,46 +643,46 @@ __metadata:
languageName: node
linkType: hard
-"@jupyterlab/apputils@npm:^4.0.2, @jupyterlab/apputils@npm:^4.1.3":
- version: 4.1.3
- resolution: "@jupyterlab/apputils@npm:4.1.3"
- dependencies:
- "@jupyterlab/coreutils": "npm:^6.0.3"
- "@jupyterlab/observables": "npm:^5.0.3"
- "@jupyterlab/rendermime-interfaces": "npm:^3.8.3"
- "@jupyterlab/services": "npm:^7.0.3"
- "@jupyterlab/settingregistry": "npm:^4.0.3"
- "@jupyterlab/statedb": "npm:^4.0.3"
- "@jupyterlab/statusbar": "npm:^4.0.3"
- "@jupyterlab/translation": "npm:^4.0.3"
- "@jupyterlab/ui-components": "npm:^4.0.3"
- "@lumino/algorithm": "npm:^2.0.0"
- "@lumino/commands": "npm:^2.1.1"
- "@lumino/coreutils": "npm:^2.1.1"
- "@lumino/disposable": "npm:^2.1.1"
- "@lumino/domutils": "npm:^2.0.0"
- "@lumino/messaging": "npm:^2.0.0"
- "@lumino/signaling": "npm:^2.1.1"
- "@lumino/virtualdom": "npm:^2.0.0"
- "@lumino/widgets": "npm:^2.1.1"
- "@types/react": "npm:^18.0.26"
- react: "npm:^18.2.0"
- sanitize-html: "npm:~2.7.3"
- checksum: c67b42e665edc71faf2e8c3eee2a90b6b80d6c1f06100802abec0ccb8ca8ba141b5705e5f186e73f03467ad1aeede71e9c9c77dbff8f316c7d1cd5f8ba39672e
+"@jupyterlab/apputils@npm:^4.0.2, @jupyterlab/apputils@npm:^4.1.3, @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
languageName: node
linkType: hard
-"@jupyterlab/attachments@npm:^4.0.3":
- version: 4.0.3
- resolution: "@jupyterlab/attachments@npm:4.0.3"
+"@jupyterlab/attachments@npm:^4.3.4":
+ version: 4.3.4
+ resolution: "@jupyterlab/attachments@npm:4.3.4"
dependencies:
- "@jupyterlab/nbformat": "npm:^4.0.3"
- "@jupyterlab/observables": "npm:^5.0.3"
- "@jupyterlab/rendermime": "npm:^4.0.3"
- "@jupyterlab/rendermime-interfaces": "npm:^3.8.3"
- "@lumino/disposable": "npm:^2.1.1"
- "@lumino/signaling": "npm:^2.1.1"
- checksum: 389b73436a258829ec559d8112f7ce50afa74041c67d30613a9ccabb6fb2af1bf0cf12f840780c31dff1627aae788bd23be06c77e6c63c0d641537989615169d
+ "@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
languageName: node
linkType: hard
@@ -720,62 +758,63 @@ __metadata:
languageName: node
linkType: hard
-"@jupyterlab/cells@npm:^4.0.2, @jupyterlab/cells@npm:^4.0.3":
- version: 4.0.3
- resolution: "@jupyterlab/cells@npm:4.0.3"
- dependencies:
- "@codemirror/state": "npm:^6.2.0"
- "@codemirror/view": "npm:^6.9.6"
- "@jupyter/ydoc": "npm:^1.0.2"
- "@jupyterlab/apputils": "npm:^4.1.3"
- "@jupyterlab/attachments": "npm:^4.0.3"
- "@jupyterlab/codeeditor": "npm:^4.0.3"
- "@jupyterlab/codemirror": "npm:^4.0.3"
- "@jupyterlab/coreutils": "npm:^6.0.3"
- "@jupyterlab/documentsearch": "npm:^4.0.3"
- "@jupyterlab/filebrowser": "npm:^4.0.3"
- "@jupyterlab/nbformat": "npm:^4.0.3"
- "@jupyterlab/observables": "npm:^5.0.3"
- "@jupyterlab/outputarea": "npm:^4.0.3"
- "@jupyterlab/rendermime": "npm:^4.0.3"
- "@jupyterlab/services": "npm:^7.0.3"
- "@jupyterlab/toc": "npm:^6.0.3"
- "@jupyterlab/translation": "npm:^4.0.3"
- "@jupyterlab/ui-components": "npm:^4.0.3"
- "@lumino/algorithm": "npm:^2.0.0"
- "@lumino/coreutils": "npm:^2.1.1"
- "@lumino/domutils": "npm:^2.0.0"
- "@lumino/dragdrop": "npm:^2.1.1"
- "@lumino/messaging": "npm:^2.0.0"
- "@lumino/polling": "npm:^2.1.1"
- "@lumino/signaling": "npm:^2.1.1"
- "@lumino/virtualdom": "npm:^2.0.0"
- "@lumino/widgets": "npm:^2.1.1"
- react: "npm:^18.2.0"
- checksum: 48b835ba839f3cf565de0b7181e2404ddf928fc20ec966039fa7680fe6b9d72a66a612da31a62f7821312f11ac571790293b10488e4946e69448ac1be32c3433
+"@jupyterlab/cells@npm:^4.0.2, @jupyterlab/cells@npm:^4.0.3, @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
languageName: node
linkType: hard
-"@jupyterlab/codeeditor@npm:^4.0.3":
- version: 4.0.3
- resolution: "@jupyterlab/codeeditor@npm:4.0.3"
- dependencies:
- "@codemirror/state": "npm:^6.2.0"
- "@jupyter/ydoc": "npm:^1.0.2"
- "@jupyterlab/coreutils": "npm:^6.0.3"
- "@jupyterlab/nbformat": "npm:^4.0.3"
- "@jupyterlab/observables": "npm:^5.0.3"
- "@jupyterlab/statusbar": "npm:^4.0.3"
- "@jupyterlab/translation": "npm:^4.0.3"
- "@jupyterlab/ui-components": "npm:^4.0.3"
- "@lumino/coreutils": "npm:^2.1.1"
- "@lumino/disposable": "npm:^2.1.1"
- "@lumino/dragdrop": "npm:^2.1.1"
- "@lumino/messaging": "npm:^2.0.0"
- "@lumino/signaling": "npm:^2.1.1"
- "@lumino/widgets": "npm:^2.1.1"
- react: "npm:^18.2.0"
- checksum: 9e2da69f4bc579ff3d66a863f805b0a2edf1de8590139874767d349aff3e29e50a490fba92242a9c593f33144b6349c1d5a03eee4894ba7ed448593b12bb90eb
+"@jupyterlab/codeeditor@npm:^4.0.3, @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
languageName: node
linkType: hard
@@ -803,45 +842,45 @@ __metadata:
languageName: node
linkType: hard
-"@jupyterlab/codemirror@npm:^4.0.3":
- version: 4.0.3
- resolution: "@jupyterlab/codemirror@npm:4.0.3"
- dependencies:
- "@codemirror/autocomplete": "npm:^6.5.1"
- "@codemirror/commands": "npm:^6.2.3"
- "@codemirror/lang-cpp": "npm:^6.0.2"
- "@codemirror/lang-css": "npm:^6.1.1"
- "@codemirror/lang-html": "npm:^6.4.3"
- "@codemirror/lang-java": "npm:^6.0.1"
- "@codemirror/lang-javascript": "npm:^6.1.7"
- "@codemirror/lang-json": "npm:^6.0.1"
- "@codemirror/lang-markdown": "npm:^6.1.1"
- "@codemirror/lang-php": "npm:^6.0.1"
- "@codemirror/lang-python": "npm:^6.1.3"
- "@codemirror/lang-rust": "npm:^6.0.1"
- "@codemirror/lang-sql": "npm:^6.4.1"
- "@codemirror/lang-wast": "npm:^6.0.1"
- "@codemirror/lang-xml": "npm:^6.0.2"
- "@codemirror/language": "npm:^6.6.0"
- "@codemirror/legacy-modes": "npm:^6.3.2"
- "@codemirror/search": "npm:^6.3.0"
- "@codemirror/state": "npm:^6.2.0"
- "@codemirror/view": "npm:^6.9.6"
- "@jupyter/ydoc": "npm:^1.0.2"
- "@jupyterlab/codeeditor": "npm:^4.0.3"
- "@jupyterlab/coreutils": "npm:^6.0.3"
- "@jupyterlab/documentsearch": "npm:^4.0.3"
- "@jupyterlab/nbformat": "npm:^4.0.3"
- "@jupyterlab/translation": "npm:^4.0.3"
- "@lezer/common": "npm:^1.0.2"
- "@lezer/generator": "npm:^1.2.2"
- "@lezer/highlight": "npm:^1.1.4"
- "@lezer/markdown": "npm:^1.0.2"
- "@lumino/coreutils": "npm:^2.1.1"
- "@lumino/disposable": "npm:^2.1.1"
- "@lumino/signaling": "npm:^2.1.1"
- yjs: "npm:^13.5.40"
- checksum: 6c68d49f515a32df8a13a258d30dca01dfd7a77086d0df729d825bac618c4805bb210f2b9b672cde027c20543dc7384c514c12c4a5aedc66dd8b56f638b51569
+"@jupyterlab/codemirror@npm:^4.0.3, @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
@@ -868,30 +907,28 @@ __metadata:
languageName: node
linkType: hard
-"@jupyterlab/console@npm:^4.0.3":
- version: 4.0.3
- resolution: "@jupyterlab/console@npm:4.0.3"
- dependencies:
- "@codemirror/state": "npm:^6.2.0"
- "@codemirror/view": "npm:^6.9.6"
- "@jupyter/ydoc": "npm:^1.0.2"
- "@jupyterlab/apputils": "npm:^4.1.3"
- "@jupyterlab/cells": "npm:^4.0.3"
- "@jupyterlab/codeeditor": "npm:^4.0.3"
- "@jupyterlab/coreutils": "npm:^6.0.3"
- "@jupyterlab/nbformat": "npm:^4.0.3"
- "@jupyterlab/observables": "npm:^5.0.3"
- "@jupyterlab/rendermime": "npm:^4.0.3"
- "@jupyterlab/services": "npm:^7.0.3"
- "@jupyterlab/translation": "npm:^4.0.3"
- "@jupyterlab/ui-components": "npm:^4.0.3"
- "@lumino/coreutils": "npm:^2.1.1"
- "@lumino/disposable": "npm:^2.1.1"
- "@lumino/dragdrop": "npm:^2.1.1"
- "@lumino/messaging": "npm:^2.0.0"
- "@lumino/signaling": "npm:^2.1.1"
- "@lumino/widgets": "npm:^2.1.1"
- checksum: 81184765f6dbcdd123cd35f4a196f3de3fd06b08a421e151dc860f823445f1866b7fd31b1461f3a03e59bb69ff92ace289b1ba3a1637494469d4dae960ac1bfb
+"@jupyterlab/console@npm:^4.3.4":
+ version: 4.3.4
+ resolution: "@jupyterlab/console@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/coreutils": ^6.3.4
+ "@jupyterlab/nbformat": ^4.3.4
+ "@jupyterlab/observables": ^5.3.4
+ "@jupyterlab/rendermime": ^4.3.4
+ "@jupyterlab/services": ^7.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
+ checksum: ec6d9600eae47f7a89f6df917261cac1408e4e87bfcdcb39b7c96a7a825adcbb53b6a9e4efad12a01c6806437b2ae0516a947af710e858493608c0fa63b7950b
languageName: node
linkType: hard
@@ -910,54 +947,55 @@ __metadata:
languageName: node
linkType: hard
-"@jupyterlab/coreutils@npm:^6.0.2, @jupyterlab/coreutils@npm:^6.0.3":
- version: 6.0.3
- resolution: "@jupyterlab/coreutils@npm:6.0.3"
+"@jupyterlab/coreutils@npm:^6.0.2, @jupyterlab/coreutils@npm:^6.0.3, @jupyterlab/coreutils@npm:^6.3.4":
+ version: 6.3.4
+ resolution: "@jupyterlab/coreutils@npm:6.3.4"
dependencies:
- "@lumino/coreutils": "npm:^2.1.1"
- "@lumino/disposable": "npm:^2.1.1"
- "@lumino/signaling": "npm:^2.1.1"
- minimist: "npm:~1.2.0"
- path-browserify: "npm:^1.0.0"
- url-parse: "npm:~1.5.4"
- checksum: c151b724f283477a92676520fd8009765d772c0bd2716d8648d0c79a56c402b6832609c870dd8ba683218d25a8c05ef769801e4699cedb989caadd99dff1ffe8
+ "@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
languageName: node
linkType: hard
-"@jupyterlab/debugger@npm:^4.0.3":
- version: 4.0.3
- resolution: "@jupyterlab/debugger@npm:4.0.3"
- dependencies:
- "@codemirror/state": "npm:^6.2.0"
- "@codemirror/view": "npm:^6.9.6"
- "@jupyter/ydoc": "npm:^1.0.2"
- "@jupyterlab/application": "npm:^4.0.3"
- "@jupyterlab/apputils": "npm:^4.1.3"
- "@jupyterlab/cells": "npm:^4.0.3"
- "@jupyterlab/codeeditor": "npm:^4.0.3"
- "@jupyterlab/codemirror": "npm:^4.0.3"
- "@jupyterlab/console": "npm:^4.0.3"
- "@jupyterlab/coreutils": "npm:^6.0.3"
- "@jupyterlab/docregistry": "npm:^4.0.3"
- "@jupyterlab/fileeditor": "npm:^4.0.3"
- "@jupyterlab/notebook": "npm:^4.0.3"
- "@jupyterlab/observables": "npm:^5.0.3"
- "@jupyterlab/rendermime": "npm:^4.0.3"
- "@jupyterlab/services": "npm:^7.0.3"
- "@jupyterlab/translation": "npm:^4.0.3"
- "@jupyterlab/ui-components": "npm:^4.0.3"
- "@lumino/algorithm": "npm:^2.0.0"
- "@lumino/commands": "npm:^2.1.1"
- "@lumino/coreutils": "npm:^2.1.1"
- "@lumino/datagrid": "npm:^2.1.1"
- "@lumino/disposable": "npm:^2.1.1"
- "@lumino/messaging": "npm:^2.0.0"
- "@lumino/polling": "npm:^2.1.1"
- "@lumino/signaling": "npm:^2.1.1"
- "@lumino/widgets": "npm:^2.1.1"
- "@vscode/debugprotocol": "npm:^1.51.0"
- react: "npm:^18.2.0"
- checksum: 8ee6631db929a56330520bf72413c4adecf6ae269b474e73965b99ec77e76ea25fb78862786a9dacba550558bcc777f130bcb4253f7f99abb7c66d8f169cfea7
+"@jupyterlab/debugger@npm:^4.3.4":
+ version: 4.3.4
+ resolution: "@jupyterlab/debugger@npm:4.3.4"
+ dependencies:
+ "@codemirror/state": ^6.4.1
+ "@codemirror/view": ^6.26.3
+ "@jupyter/react-components": ^0.16.6
+ "@jupyter/ydoc": ^3.0.0
+ "@jupyterlab/application": ^4.3.4
+ "@jupyterlab/apputils": ^4.4.4
+ "@jupyterlab/cells": ^4.3.4
+ "@jupyterlab/codeeditor": ^4.3.4
+ "@jupyterlab/codemirror": ^4.3.4
+ "@jupyterlab/console": ^4.3.4
+ "@jupyterlab/coreutils": ^6.3.4
+ "@jupyterlab/docregistry": ^4.3.4
+ "@jupyterlab/fileeditor": ^4.3.4
+ "@jupyterlab/notebook": ^4.3.4
+ "@jupyterlab/observables": ^5.3.4
+ "@jupyterlab/rendermime": ^4.3.4
+ "@jupyterlab/services": ^7.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/datagrid": ^2.4.1
+ "@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
+ "@vscode/debugprotocol": ^1.51.0
+ react: ^18.2.0
+ checksum: c50f98236149d7f209f21d9e07bbc6d2dc7d3e689e3a530febaf626ff6f251c5633ab9349c7ba64448cfd281f41c32b96e5dd1a6c02a96855459065a1d51028a
languageName: node
linkType: hard
@@ -986,149 +1024,154 @@ __metadata:
languageName: node
linkType: hard
-"@jupyterlab/docmanager@npm:^4.0.2, @jupyterlab/docmanager@npm:^4.0.3":
- version: 4.0.3
- resolution: "@jupyterlab/docmanager@npm:4.0.3"
- dependencies:
- "@jupyterlab/apputils": "npm:^4.1.3"
- "@jupyterlab/coreutils": "npm:^6.0.3"
- "@jupyterlab/docregistry": "npm:^4.0.3"
- "@jupyterlab/services": "npm:^7.0.3"
- "@jupyterlab/statusbar": "npm:^4.0.3"
- "@jupyterlab/translation": "npm:^4.0.3"
- "@jupyterlab/ui-components": "npm:^4.0.3"
- "@lumino/algorithm": "npm:^2.0.0"
- "@lumino/coreutils": "npm:^2.1.1"
- "@lumino/disposable": "npm:^2.1.1"
- "@lumino/messaging": "npm:^2.0.0"
- "@lumino/properties": "npm:^2.0.0"
- "@lumino/signaling": "npm:^2.1.1"
- "@lumino/widgets": "npm:^2.1.1"
- react: "npm:^18.2.0"
- checksum: 2ce21005c918275e5bbd63a54d6cb89a4b2bbf6d9aa8ec0a3b172c48cce98a31d83bbd10c8a2211394ec41c60b782ab73b7dc3481de23bfc89be631cfa43cb5e
- languageName: node
- linkType: hard
-
-"@jupyterlab/docregistry@npm:^4.0.2, @jupyterlab/docregistry@npm:^4.0.3":
- version: 4.0.3
- resolution: "@jupyterlab/docregistry@npm:4.0.3"
- dependencies:
- "@jupyter/ydoc": "npm:^1.0.2"
- "@jupyterlab/apputils": "npm:^4.1.3"
- "@jupyterlab/codeeditor": "npm:^4.0.3"
- "@jupyterlab/coreutils": "npm:^6.0.3"
- "@jupyterlab/observables": "npm:^5.0.3"
- "@jupyterlab/rendermime": "npm:^4.0.3"
- "@jupyterlab/rendermime-interfaces": "npm:^3.8.3"
- "@jupyterlab/services": "npm:^7.0.3"
- "@jupyterlab/translation": "npm:^4.0.3"
- "@jupyterlab/ui-components": "npm:^4.0.3"
- "@lumino/algorithm": "npm:^2.0.0"
- "@lumino/coreutils": "npm:^2.1.1"
- "@lumino/disposable": "npm:^2.1.1"
- "@lumino/messaging": "npm:^2.0.0"
- "@lumino/properties": "npm:^2.0.0"
- "@lumino/signaling": "npm:^2.1.1"
- "@lumino/widgets": "npm:^2.1.1"
- checksum: 3b3256c4b4755c58b3f290403ef49e3ebc6bebb8c17f882a2cc58dfd40a596bc427ba41e60a610ce6c90fc5b4cbd552502ce56a6654b85fb35283bdaed58b861
+"@jupyterlab/docmanager@npm:^4.0.2, @jupyterlab/docmanager@npm:^4.0.3, @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/documentsearch@npm:^4.0.3":
- version: 4.0.3
- resolution: "@jupyterlab/documentsearch@npm:4.0.3"
- dependencies:
- "@jupyterlab/apputils": "npm:^4.1.3"
- "@jupyterlab/translation": "npm:^4.0.3"
- "@jupyterlab/ui-components": "npm:^4.0.3"
- "@lumino/coreutils": "npm:^2.1.1"
- "@lumino/disposable": "npm:^2.1.1"
- "@lumino/messaging": "npm:^2.0.0"
- "@lumino/polling": "npm:^2.1.1"
- "@lumino/signaling": "npm:^2.1.1"
- "@lumino/widgets": "npm:^2.1.1"
- react: "npm:^18.2.0"
- checksum: fcf8c50a60e2b265901b27749f63b52f17467950da863f8b766d30038a63aa896de4352ea5eb1221f82ec0abf11be424c13f17d0b912e758e456e596e2927b1f
+"@jupyterlab/docregistry@npm:^4.0.2, @jupyterlab/docregistry@npm:^4.0.3, @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
languageName: node
linkType: hard
-"@jupyterlab/filebrowser@npm:^4.0.3":
- version: 4.0.3
- resolution: "@jupyterlab/filebrowser@npm:4.0.3"
- dependencies:
- "@jupyterlab/apputils": "npm:^4.1.3"
- "@jupyterlab/coreutils": "npm:^6.0.3"
- "@jupyterlab/docmanager": "npm:^4.0.3"
- "@jupyterlab/docregistry": "npm:^4.0.3"
- "@jupyterlab/services": "npm:^7.0.3"
- "@jupyterlab/statedb": "npm:^4.0.3"
- "@jupyterlab/statusbar": "npm:^4.0.3"
- "@jupyterlab/translation": "npm:^4.0.3"
- "@jupyterlab/ui-components": "npm:^4.0.3"
- "@lumino/algorithm": "npm:^2.0.0"
- "@lumino/coreutils": "npm:^2.1.1"
- "@lumino/disposable": "npm:^2.1.1"
- "@lumino/domutils": "npm:^2.0.0"
- "@lumino/dragdrop": "npm:^2.1.1"
- "@lumino/messaging": "npm:^2.0.0"
- "@lumino/polling": "npm:^2.1.1"
- "@lumino/signaling": "npm:^2.1.1"
- "@lumino/virtualdom": "npm:^2.0.0"
- "@lumino/widgets": "npm:^2.1.1"
- react: "npm:^18.2.0"
- checksum: 30c2447cfe76fb2d1c3d1c88136b842f8d0f46451d4082ecc1a26496e35f5309a956468af18b2b0ac42a72c9bd14a1ddd050d434c6d9740b468956a6bb989086
+"@jupyterlab/documentsearch@npm:^4.0.3, @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
languageName: node
linkType: hard
-"@jupyterlab/fileeditor@npm:^4.0.3":
- version: 4.0.3
- resolution: "@jupyterlab/fileeditor@npm:4.0.3"
- dependencies:
- "@jupyterlab/apputils": "npm:^4.1.3"
- "@jupyterlab/codeeditor": "npm:^4.0.3"
- "@jupyterlab/codemirror": "npm:^4.0.3"
- "@jupyterlab/coreutils": "npm:^6.0.3"
- "@jupyterlab/docregistry": "npm:^4.0.3"
- "@jupyterlab/documentsearch": "npm:^4.0.3"
- "@jupyterlab/lsp": "npm:^4.0.3"
- "@jupyterlab/statusbar": "npm:^4.0.3"
- "@jupyterlab/toc": "npm:^6.0.3"
- "@jupyterlab/translation": "npm:^4.0.3"
- "@jupyterlab/ui-components": "npm:^4.0.3"
- "@lumino/commands": "npm:^2.1.1"
- "@lumino/coreutils": "npm:^2.1.1"
- "@lumino/messaging": "npm:^2.0.0"
- "@lumino/widgets": "npm:^2.1.1"
- react: "npm:^18.2.0"
- regexp-match-indices: "npm:^1.0.2"
- checksum: 9ff129ffa6b91752d3c4f0d36357532a29bec56a4a91d2d3a182e7cba2d3a5ba9b67317bb66356bbd201ca75af30bf5b0985f4629ef4acc4c2842cc7bca72ff6
+"@jupyterlab/filebrowser@npm:^4.0.3, @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
languageName: node
linkType: hard
-"@jupyterlab/galata@npm:^5.0.0":
- version: 5.0.3
- resolution: "@jupyterlab/galata@npm:5.0.3"
- dependencies:
- "@jupyterlab/application": "npm:^4.0.3"
- "@jupyterlab/apputils": "npm:^4.1.3"
- "@jupyterlab/coreutils": "npm:^6.0.3"
- "@jupyterlab/debugger": "npm:^4.0.3"
- "@jupyterlab/docmanager": "npm:^4.0.3"
- "@jupyterlab/nbformat": "npm:^4.0.3"
- "@jupyterlab/notebook": "npm:^4.0.3"
- "@jupyterlab/services": "npm:^7.0.3"
- "@jupyterlab/settingregistry": "npm:^4.0.3"
- "@lumino/coreutils": "npm:^2.1.1"
- "@playwright/test": "npm:^1.32.2"
- "@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: 40427906093f6e162c508fb1a2cbf9d4754779a18e673252b88ffcb9c74cc447e50d1121c3fbf0cb0f4b9856794f59d034808b8d8e3686f4a8de95c37d46831e
+"@jupyterlab/fileeditor@npm:^4.3.4":
+ version: 4.3.4
+ resolution: "@jupyterlab/fileeditor@npm:4.3.4"
+ dependencies:
+ "@jupyter/ydoc": ^3.0.0
+ "@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/documentsearch": ^4.3.4
+ "@jupyterlab/lsp": ^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/commands": ^2.3.1
+ "@lumino/coreutils": ^2.2.0
+ "@lumino/messaging": ^2.0.2
+ "@lumino/widgets": ^2.5.0
+ react: ^18.2.0
+ regexp-match-indices: ^1.0.2
+ checksum: 467f8cfe5bfba5eabd73402c87e67ead36b2a8d009e866efbc2b85d4f6b0cc6e8e6655d9da94e05d7bdba8959bc01d1c5967f6ba951762cc8ead468146f673a3
+ languageName: node
+ linkType: hard
+
+"@jupyterlab/galata@npm:^5.0.5":
+ version: 5.3.4
+ resolution: "@jupyterlab/galata@npm:5.3.4"
+ dependencies:
+ "@jupyterlab/application": ^4.3.4
+ "@jupyterlab/apputils": ^4.4.4
+ "@jupyterlab/coreutils": ^6.3.4
+ "@jupyterlab/debugger": ^4.3.4
+ "@jupyterlab/docmanager": ^4.3.4
+ "@jupyterlab/nbformat": ^4.3.4
+ "@jupyterlab/notebook": ^4.3.4
+ "@jupyterlab/services": ^7.3.4
+ "@jupyterlab/settingregistry": ^4.3.4
+ "@lumino/coreutils": ^2.2.0
+ "@playwright/test": ^1.48.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: 0b2cdbc27ea653e87513c64065f1441d751a44a63ff8fd1a8652c05c00eac840e27a5f195c24dccbd09db16f5535c4a253067eabfa457c119cfbefe55025452a
languageName: node
linkType: hard
@@ -1201,24 +1244,26 @@ __metadata:
languageName: node
linkType: hard
-"@jupyterlab/lsp@npm:^4.0.3":
- version: 4.0.3
- resolution: "@jupyterlab/lsp@npm:4.0.3"
- dependencies:
- "@jupyterlab/apputils": "npm:^4.1.3"
- "@jupyterlab/codeeditor": "npm:^4.0.3"
- "@jupyterlab/coreutils": "npm:^6.0.3"
- "@jupyterlab/docregistry": "npm:^4.0.3"
- "@jupyterlab/services": "npm:^7.0.3"
- "@jupyterlab/translation": "npm:^4.0.3"
- "@lumino/coreutils": "npm:^2.1.1"
- "@lumino/disposable": "npm:^2.1.1"
- "@lumino/signaling": "npm:^2.1.1"
- 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: f80084ef6a5337d768281d6d9029e303c0867ced6449301708be76d32a411de7e4d41ca290b92596ef206456533e8132d1221cd1d2feee7ad341b2b998ddc766
+"@jupyterlab/lsp@npm:^4.0.3, @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
languageName: node
linkType: hard
@@ -1291,12 +1336,12 @@ __metadata:
languageName: node
linkType: hard
-"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.0.3":
- version: 4.0.3
- resolution: "@jupyterlab/nbformat@npm:4.0.3"
+"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.0.3, @jupyterlab/nbformat@npm:^4.3.4":
+ version: 4.3.4
+ resolution: "@jupyterlab/nbformat@npm:4.3.4"
dependencies:
- "@lumino/coreutils": "npm:^2.1.1"
- checksum: e7c3fc81fdd934d66b4b92aa44b82e40dff73248b54772d0a4501a7dd5e1ea76754931548f8e591e7f03bfad2f4409a34838424bd34f9abb0be11d213f2e129a
+ "@lumino/coreutils": ^2.2.0
+ checksum: 7c2b2bf9ce1632b8d4b0aa415e19c5b25e0fb155457cdd9fed9d7a162e477e728fefdef07d18ac25aa8ac1223534615abbc0e1f7d58c0607dc66326d694a8823
languageName: node
linkType: hard
@@ -1356,39 +1401,41 @@ __metadata:
languageName: node
linkType: hard
-"@jupyterlab/notebook@npm:^4.0.2, @jupyterlab/notebook@npm:^4.0.3":
- version: 4.0.3
- resolution: "@jupyterlab/notebook@npm:4.0.3"
- dependencies:
- "@jupyter/ydoc": "npm:^1.0.2"
- "@jupyterlab/apputils": "npm:^4.1.3"
- "@jupyterlab/cells": "npm:^4.0.3"
- "@jupyterlab/codeeditor": "npm:^4.0.3"
- "@jupyterlab/codemirror": "npm:^4.0.3"
- "@jupyterlab/coreutils": "npm:^6.0.3"
- "@jupyterlab/docregistry": "npm:^4.0.3"
- "@jupyterlab/documentsearch": "npm:^4.0.3"
- "@jupyterlab/lsp": "npm:^4.0.3"
- "@jupyterlab/nbformat": "npm:^4.0.3"
- "@jupyterlab/observables": "npm:^5.0.3"
- "@jupyterlab/rendermime": "npm:^4.0.3"
- "@jupyterlab/services": "npm:^7.0.3"
- "@jupyterlab/settingregistry": "npm:^4.0.3"
- "@jupyterlab/statusbar": "npm:^4.0.3"
- "@jupyterlab/toc": "npm:^6.0.3"
- "@jupyterlab/translation": "npm:^4.0.3"
- "@jupyterlab/ui-components": "npm:^4.0.3"
- "@lumino/algorithm": "npm:^2.0.0"
- "@lumino/coreutils": "npm:^2.1.1"
- "@lumino/domutils": "npm:^2.0.0"
- "@lumino/dragdrop": "npm:^2.1.1"
- "@lumino/messaging": "npm:^2.0.0"
- "@lumino/properties": "npm:^2.0.0"
- "@lumino/signaling": "npm:^2.1.1"
- "@lumino/virtualdom": "npm:^2.0.0"
- "@lumino/widgets": "npm:^2.1.1"
- react: "npm:^18.2.0"
- checksum: 1388bea973c093b82ac110bf115f342fb5e2cae9c855f0704f08882df8a3714566fccefbb3d85903fdb30170bae4fdfd29b3785473850bb3e91e8cdfc3658265
+"@jupyterlab/notebook@npm:^4.0.2, @jupyterlab/notebook@npm:^4.0.3, @jupyterlab/notebook@npm:^4.3.4":
+ 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
languageName: node
linkType: hard
@@ -1405,38 +1452,38 @@ __metadata:
languageName: node
linkType: hard
-"@jupyterlab/observables@npm:^5.0.3":
- version: 5.0.3
- resolution: "@jupyterlab/observables@npm:5.0.3"
+"@jupyterlab/observables@npm:^5.0.3, @jupyterlab/observables@npm:^5.3.4":
+ version: 5.3.4
+ resolution: "@jupyterlab/observables@npm:5.3.4"
dependencies:
- "@lumino/algorithm": "npm:^2.0.0"
- "@lumino/coreutils": "npm:^2.1.1"
- "@lumino/disposable": "npm:^2.1.1"
- "@lumino/messaging": "npm:^2.0.0"
- "@lumino/signaling": "npm:^2.1.1"
- checksum: fe1283852967092dfdf95407135e723c107ba1e4ce502f6b0c10bed575f8e11d08190a6f078f5e2b937e5f4f1996351df8ee9b2bd523fb106b728dd6b3dc15ac
+ "@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
languageName: node
linkType: hard
-"@jupyterlab/outputarea@npm:^4.0.3":
- version: 4.0.3
- resolution: "@jupyterlab/outputarea@npm:4.0.3"
- dependencies:
- "@jupyterlab/apputils": "npm:^4.1.3"
- "@jupyterlab/nbformat": "npm:^4.0.3"
- "@jupyterlab/observables": "npm:^5.0.3"
- "@jupyterlab/rendermime": "npm:^4.0.3"
- "@jupyterlab/rendermime-interfaces": "npm:^3.8.3"
- "@jupyterlab/services": "npm:^7.0.3"
- "@jupyterlab/translation": "npm:^4.0.3"
- "@lumino/algorithm": "npm:^2.0.0"
- "@lumino/coreutils": "npm:^2.1.1"
- "@lumino/disposable": "npm:^2.1.1"
- "@lumino/messaging": "npm:^2.0.0"
- "@lumino/properties": "npm:^2.0.0"
- "@lumino/signaling": "npm:^2.1.1"
- "@lumino/widgets": "npm:^2.1.1"
- checksum: bd4a60ea43cd3117c8cc6b6aee094f0a4e37c3635051fbf13857669547847ce52f6e186cb2c329893e333e6113998899a9d5fa90727926a73223d5082c936471
+"@jupyterlab/outputarea@npm:^4.0.3, @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
@@ -1477,37 +1524,37 @@ __metadata:
"@jupyterlab/docmanager": "npm:^4.0.3"
"@jupyterlab/rendermime": "npm:^4.0.3"
"@jupyterlab/translation": "npm:^4.0.3"
- checksum: 74626d051ea412101aa2c0165bbd693711d053370f4fd0f81a23cc265768bf354f064b7be882de5646d0f3d8d068da4032f6d39b8ee64f8176393c918f8face1
- languageName: node
- linkType: hard
-
-"@jupyterlab/rendermime-interfaces@npm:^3.8.0-alpha.21, @jupyterlab/rendermime-interfaces@npm:^3.8.3":
- version: 3.8.3
- resolution: "@jupyterlab/rendermime-interfaces@npm:3.8.3"
- dependencies:
- "@lumino/coreutils": "npm:^1.11.0 || ^2.1.1"
- "@lumino/widgets": "npm:^1.37.2 || ^2.1.1"
- checksum: aeb055196099e29eff78e98e904e3dac10255ac4693ed0d99022d08fe3de4dd792e66c06f6e11f110be2276e9ba36ae15b8a08e6fb1b4c25e774d5525199b5d3
- languageName: node
- linkType: hard
-
-"@jupyterlab/rendermime@npm:^4.0.3":
- version: 4.0.3
- resolution: "@jupyterlab/rendermime@npm:4.0.3"
- dependencies:
- "@jupyterlab/apputils": "npm:^4.1.3"
- "@jupyterlab/coreutils": "npm:^6.0.3"
- "@jupyterlab/nbformat": "npm:^4.0.3"
- "@jupyterlab/observables": "npm:^5.0.3"
- "@jupyterlab/rendermime-interfaces": "npm:^3.8.3"
- "@jupyterlab/services": "npm:^7.0.3"
- "@jupyterlab/translation": "npm:^4.0.3"
- "@lumino/coreutils": "npm:^2.1.1"
- "@lumino/messaging": "npm:^2.0.0"
- "@lumino/signaling": "npm:^2.1.1"
- "@lumino/widgets": "npm:^2.1.1"
- lodash.escape: "npm:^4.0.1"
- checksum: 8e5d390ee84eb0f2017b80c2ccf4dc318ef53c3ebb52e84056d76b2bccbcb755190b7712e99936ad0610f03fe4b0a9a0f2f5ed854e21856c0cc39371ce1fad01
+ checksum: 74626d051ea412101aa2c0165bbd693711d053370f4fd0f81a23cc265768bf354f064b7be882de5646d0f3d8d068da4032f6d39b8ee64f8176393c918f8face1
+ languageName: node
+ linkType: hard
+
+"@jupyterlab/rendermime-interfaces@npm:^3.11.4, @jupyterlab/rendermime-interfaces@npm:^3.8.0-alpha.21, @jupyterlab/rendermime-interfaces@npm:^3.8.3":
+ 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@npm:^4.0.3, @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
languageName: node
linkType: hard
@@ -1531,22 +1578,22 @@ __metadata:
languageName: node
linkType: hard
-"@jupyterlab/services@npm:^7.0.3":
- version: 7.0.3
- resolution: "@jupyterlab/services@npm:7.0.3"
+"@jupyterlab/services@npm:^7.0.3, @jupyterlab/services@npm:^7.3.4":
+ version: 7.3.4
+ resolution: "@jupyterlab/services@npm:7.3.4"
dependencies:
- "@jupyter/ydoc": "npm:^1.0.2"
- "@jupyterlab/coreutils": "npm:^6.0.3"
- "@jupyterlab/nbformat": "npm:^4.0.3"
- "@jupyterlab/settingregistry": "npm:^4.0.3"
- "@jupyterlab/statedb": "npm:^4.0.3"
- "@lumino/coreutils": "npm:^2.1.1"
- "@lumino/disposable": "npm:^2.1.1"
- "@lumino/polling": "npm:^2.1.1"
- "@lumino/properties": "npm:^2.0.0"
- "@lumino/signaling": "npm:^2.1.1"
- ws: "npm:^8.11.0"
- checksum: 94277bdf4c6645145c09dcf41fbcf49528cb4c0e283fc7b596184615d7a0127b9129097f877455af85bf26e2110aee61f664e3cce9497f573c00a5dd90e5d0fd
+ "@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
languageName: node
linkType: hard
@@ -1565,22 +1612,22 @@ __metadata:
languageName: node
linkType: hard
-"@jupyterlab/settingregistry@npm:^4.0.2, @jupyterlab/settingregistry@npm:^4.0.3":
- version: 4.0.3
- resolution: "@jupyterlab/settingregistry@npm:4.0.3"
- dependencies:
- "@jupyterlab/nbformat": "npm:^4.0.3"
- "@jupyterlab/statedb": "npm:^4.0.3"
- "@lumino/commands": "npm:^2.1.1"
- "@lumino/coreutils": "npm:^2.1.1"
- "@lumino/disposable": "npm:^2.1.1"
- "@lumino/signaling": "npm:^2.1.1"
- "@rjsf/utils": "npm:^5.1.0"
- ajv: "npm:^8.12.0"
- json5: "npm:^2.2.3"
+"@jupyterlab/settingregistry@npm:^4.0.2, @jupyterlab/settingregistry@npm:^4.0.3, @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: 3874fa5a318c1301dc152c569a43de846ec3157fb1083b22a92571e5632749317361e5caaba513359db6fb8e8e3804b7d7ccff5058eb25dcc55af59d76c03d20
+ checksum: e6e89174535d10268d70f9c5731bbb1ee6614d8cf87a73d5c4c3b40e6d051ecebb03ec23c508132fe3714473a0667b337674db07759d487b2fb679ca99fd8f35
languageName: node
linkType: hard
@@ -1617,32 +1664,32 @@ __metadata:
languageName: node
linkType: hard
-"@jupyterlab/statedb@npm:^4.0.3":
- version: 4.0.3
- resolution: "@jupyterlab/statedb@npm:4.0.3"
+"@jupyterlab/statedb@npm:^4.0.3, @jupyterlab/statedb@npm:^4.3.4":
+ version: 4.3.4
+ resolution: "@jupyterlab/statedb@npm:4.3.4"
dependencies:
- "@lumino/commands": "npm:^2.1.1"
- "@lumino/coreutils": "npm:^2.1.1"
- "@lumino/disposable": "npm:^2.1.1"
- "@lumino/properties": "npm:^2.0.0"
- "@lumino/signaling": "npm:^2.1.1"
- checksum: 07f625988489565704e5b90069111dee255ed62bec2784f1a1ea57192b850beab733b8f19d0f0ebfc83fbad2a3479e6180f00554f1560bd6bb641b019356961f
+ "@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/statusbar@npm:^4.0.3":
- version: 4.0.3
- resolution: "@jupyterlab/statusbar@npm:4.0.3"
- dependencies:
- "@jupyterlab/ui-components": "npm:^4.0.3"
- "@lumino/algorithm": "npm:^2.0.0"
- "@lumino/coreutils": "npm:^2.1.1"
- "@lumino/disposable": "npm:^2.1.1"
- "@lumino/messaging": "npm:^2.0.0"
- "@lumino/signaling": "npm:^2.1.1"
- "@lumino/widgets": "npm:^2.1.1"
- react: "npm:^18.2.0"
- checksum: 41319c4b7f22ecef701fc006b83de0963f65c7fab98a3d0020861df2c76cc6832dc044500f01bbc8a20f85d025573d3850d6edcf412be2fcb9091bbe7debd04e
+"@jupyterlab/statusbar@npm:^4.0.3, @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
languageName: node
linkType: hard
@@ -1668,24 +1715,26 @@ __metadata:
languageName: node
linkType: hard
-"@jupyterlab/toc@npm:^6.0.3":
- version: 6.0.3
- resolution: "@jupyterlab/toc@npm:6.0.3"
- dependencies:
- "@jupyterlab/apputils": "npm:^4.1.3"
- "@jupyterlab/coreutils": "npm:^6.0.3"
- "@jupyterlab/docregistry": "npm:^4.0.3"
- "@jupyterlab/observables": "npm:^5.0.3"
- "@jupyterlab/rendermime": "npm:^4.0.3"
- "@jupyterlab/translation": "npm:^4.0.3"
- "@jupyterlab/ui-components": "npm:^4.0.3"
- "@lumino/coreutils": "npm:^2.1.1"
- "@lumino/disposable": "npm:^2.1.1"
- "@lumino/messaging": "npm:^2.0.0"
- "@lumino/signaling": "npm:^2.1.1"
- "@lumino/widgets": "npm:^2.1.1"
- react: "npm:^18.2.0"
- checksum: 8098824692a3e5ac786d476b7c14abc4adbef0db3f0f38143969594dd4fd3069f92335ac417fc45d42d1577d3555791c6aecdf2361acb22d3902b93b899b31f0
+"@jupyterlab/toc@npm:^6.0.3, @jupyterlab/toc@npm:^6.3.4":
+ version: 6.3.4
+ resolution: "@jupyterlab/toc@npm:6.3.4"
+ 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
languageName: node
linkType: hard
@@ -1702,45 +1751,47 @@ __metadata:
languageName: node
linkType: hard
-"@jupyterlab/translation@npm:^4.0.2, @jupyterlab/translation@npm:^4.0.3":
- version: 4.0.3
- resolution: "@jupyterlab/translation@npm:4.0.3"
+"@jupyterlab/translation@npm:^4.0.2, @jupyterlab/translation@npm:^4.0.3, @jupyterlab/translation@npm:^4.3.4":
+ version: 4.3.4
+ resolution: "@jupyterlab/translation@npm:4.3.4"
dependencies:
- "@jupyterlab/coreutils": "npm:^6.0.3"
- "@jupyterlab/rendermime-interfaces": "npm:^3.8.3"
- "@jupyterlab/services": "npm:^7.0.3"
- "@jupyterlab/statedb": "npm:^4.0.3"
- "@lumino/coreutils": "npm:^2.1.1"
- checksum: 255868017c500e32e97bdfcff02ded6352f03bc64928b77c0d34ae9c735093c6c0d6e448501cb14466996ff5ebdaaa6071d262a6f49ba6b06ea58cfac122c95d
+ "@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
languageName: node
linkType: hard
-"@jupyterlab/ui-components@npm:^4.0.2, @jupyterlab/ui-components@npm:^4.0.3":
- version: 4.0.3
- resolution: "@jupyterlab/ui-components@npm:4.0.3"
- dependencies:
- "@jupyterlab/coreutils": "npm:^6.0.3"
- "@jupyterlab/observables": "npm:^5.0.3"
- "@jupyterlab/rendermime-interfaces": "npm:^3.8.3"
- "@jupyterlab/translation": "npm:^4.0.3"
- "@lumino/algorithm": "npm:^2.0.0"
- "@lumino/commands": "npm:^2.1.1"
- "@lumino/coreutils": "npm:^2.1.1"
- "@lumino/disposable": "npm:^2.1.1"
- "@lumino/messaging": "npm:^2.0.0"
- "@lumino/polling": "npm:^2.1.1"
- "@lumino/properties": "npm:^2.0.0"
- "@lumino/signaling": "npm:^2.1.1"
- "@lumino/virtualdom": "npm:^2.0.0"
- "@lumino/widgets": "npm:^2.1.1"
- "@rjsf/core": "npm:^5.1.0"
- "@rjsf/utils": "npm:^5.1.0"
- react: "npm:^18.2.0"
- react-dom: "npm:^18.2.0"
- typestyle: "npm:^2.0.4"
+"@jupyterlab/ui-components@npm:^4.0.2, @jupyterlab/ui-components@npm:^4.0.3, @jupyterlab/ui-components@npm:^4.3.4":
+ version: 4.3.4
+ resolution: "@jupyterlab/ui-components@npm:4.3.4"
+ 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: c64afe7a0c932e42d4a00f874d499c52b4bac9794965f6146307922c086ea88e245bdcd346211f808f60ba3985f30c01138cfa6f5b1acc290d07ef04404f91a7
+ checksum: 32184159fcf043d9c640135e0057031d4f9c9b189cc552c0c8345a7fc8b1c34b4beef87603651bd2043cc3616c4834c2092f47657d2a7bc0bdd0168d3bf0029b
languageName: node
linkType: hard
@@ -1790,10 +1841,10 @@ __metadata:
languageName: node
linkType: hard
-"@lezer/common@npm:^1.0.0, @lezer/common@npm:^1.0.2":
- version: 1.0.3
- resolution: "@lezer/common@npm:1.0.3"
- checksum: cc90dc2f0aeaebeb3fe886cbd27f8b1e8bee817d8c2efff178604807debd68c5db820fd23afb830962780063d21891afbdf564420221faca2822e77bc6327184
+"@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.3
+ resolution: "@lezer/common@npm:1.2.3"
+ checksum: 9b5f52d949adae69d077f56c0b1c2295923108c3dfb241dd9f17654ff708f3eab81ff9fa7f0d0e4a668eabdcb9d961c73e75caca87c966ca1436e30e49130fcb
languageName: node
linkType: hard
@@ -1807,34 +1858,35 @@ __metadata:
languageName: node
linkType: hard
-"@lezer/css@npm:^1.0.0, @lezer/css@npm:^1.1.0":
- version: 1.1.3
- resolution: "@lezer/css@npm:1.1.3"
+"@lezer/css@npm:^1.1.0, @lezer/css@npm:^1.1.7":
+ version: 1.1.9
+ resolution: "@lezer/css@npm:1.1.9"
dependencies:
- "@lezer/highlight": "npm:^1.0.0"
- "@lezer/lr": "npm:^1.0.0"
- checksum: c8069ef0a6751441d2dc9180f7ebfd7aeb35df0ca2f1a748a2f26203a9ef6cc30f17f3074e2b49520453eb39329dadfdbbb901c6d9d067dc955ceb58c1f8cc6a
+ "@lezer/common": ^1.2.0
+ "@lezer/highlight": ^1.0.0
+ "@lezer/lr": ^1.0.0
+ checksum: 25c63475061a3c9f87961a7f85c5f547f14fb7e81b0864675d2206999a874a0559d676145c74c6ccde39519dbc8aa33e216265f5366d08060507b6c9e875fe0f
languageName: node
linkType: hard
-"@lezer/generator@npm:^1.2.2":
- version: 1.3.0
- resolution: "@lezer/generator@npm:1.3.0"
+"@lezer/generator@npm:^1.7.0":
+ version: 1.7.2
+ resolution: "@lezer/generator@npm:1.7.2"
dependencies:
- "@lezer/common": "npm:^1.0.2"
- "@lezer/lr": "npm:^1.3.0"
+ "@lezer/common": ^1.1.0
+ "@lezer/lr": ^1.3.0
bin:
- lezer-generator: dist/lezer-generator.cjs
- checksum: 114df33679b44e86d0801473088bd1d52c208e3b3beb16cc923efac88280fc897bc2b79fd1a7bf2c04579a315898f4029127e5f15dc9557ff3c0ba0e710987eb
+ lezer-generator: src/lezer-generator.cjs
+ checksum: b5d282c7c749d816f373478ebebbcad839125918ac2038d870d880fc0fb1c932b278b3652beb5854d9a0b5aa8e1a9ba24f8359c5ce4c2b9a5393f85c395a2a91
languageName: node
linkType: hard
-"@lezer/highlight@npm:^1.0.0, @lezer/highlight@npm:^1.1.3, @lezer/highlight@npm:^1.1.4":
- version: 1.1.6
- resolution: "@lezer/highlight@npm:1.1.6"
+"@lezer/highlight@npm:^1.0.0, @lezer/highlight@npm:^1.1.3, @lezer/highlight@npm:^1.1.4, @lezer/highlight@npm:^1.2.0":
+ version: 1.2.1
+ resolution: "@lezer/highlight@npm:1.2.1"
dependencies:
- "@lezer/common": "npm:^1.0.0"
- checksum: 411a702394c4c996b7d7f145a38f3a85a8cc698b3918acc7121c629255bb76d4ab383753f69009e011dc415210c6acbbb5b27bde613259ab67e600b29397b03b
+ "@lezer/common": ^1.0.0
+ checksum: a8822d7e37f79ff64669eb2df4a9f9d16580e88f2b276a646092e19a9bdccac304e92510e200e35869a8b1f6c27eba5972c508d347a277e9b722d582ab7a23d5
languageName: node
linkType: hard
@@ -1888,13 +1940,13 @@ __metadata:
languageName: node
linkType: hard
-"@lezer/markdown@npm:^1.0.0, @lezer/markdown@npm:^1.0.2":
- version: 1.0.5
- resolution: "@lezer/markdown@npm:1.0.5"
+"@lezer/markdown@npm:^1.0.0, @lezer/markdown@npm:^1.3.0":
+ version: 1.3.2
+ resolution: "@lezer/markdown@npm:1.3.2"
dependencies:
- "@lezer/common": "npm:^1.0.0"
- "@lezer/highlight": "npm:^1.0.0"
- checksum: e862d7362faab54a4536c9913171580d0062ae5ffa9d46d6dcb4850b2b8f2fb6f2f28f98a30232640bfcd980682673ccb051230b06422814db89abea5f07d99e
+ "@lezer/common": ^1.0.0
+ "@lezer/highlight": ^1.0.0
+ checksum: 080c5e6e13ff227d5a1883dd895ef08d6fc8eb9620eb00f93fe1292dd9a740ec50ccf340f2aab2f522843d26ad2ad991ef029fd93cf09f88e00ef470f1142d15
languageName: node
linkType: hard
@@ -1945,21 +1997,21 @@ __metadata:
languageName: node
linkType: hard
-"@lumino/algorithm@npm:^2.0.0":
- version: 2.0.0
- resolution: "@lumino/algorithm@npm:2.0.0"
- checksum: 663edf536e94397b449c6a2643a735e602fbb396dec86b56ad1193a768dce27c6e7da5ad0384aa90086ea44cbb64dde3f9d565e9fd81858f1eb0c6b4253f3b94
+"@lumino/algorithm@npm:^2.0.0, @lumino/algorithm@npm:^2.0.2":
+ version: 2.0.2
+ resolution: "@lumino/algorithm@npm:2.0.2"
+ checksum: 34b25684b845f1bdbf78ca45ebd99a97b67b2992440c9643aafe5fc5a99fae1ddafa9e5890b246b233dc3a12d9f66aa84afe4a2aac44cf31071348ed217740db
languageName: node
linkType: hard
-"@lumino/application@npm:^2.1.1":
- version: 2.2.0
- resolution: "@lumino/application@npm:2.2.0"
+"@lumino/application@npm:^2.1.1, @lumino/application@npm:^2.4.1":
+ version: 2.4.1
+ resolution: "@lumino/application@npm:2.4.1"
dependencies:
- "@lumino/commands": "npm:^2.1.2"
- "@lumino/coreutils": "npm:^2.1.1"
- "@lumino/widgets": "npm:^2.2.0"
- checksum: b62da44b21d110c5d3478a49549326974b59325b8c60a58905d8e5ef08210273cd013cb60387d1f082fb79377a230278e2cf63e345491b0a54c75fdcc6164a68
+ "@lumino/commands": ^2.3.1
+ "@lumino/coreutils": ^2.2.0
+ "@lumino/widgets": ^2.5.0
+ checksum: b7166d1bf4f0e3cc945d984b4057a4cd106d38df6cb4c6f1259c75484e2b976018aca55f169fa4af7dd174ce7117be1920966bef0fb7cba756f503f0df1d211e
languageName: node
linkType: hard
@@ -1972,12 +2024,12 @@ __metadata:
languageName: node
linkType: hard
-"@lumino/collections@npm:^2.0.0":
- version: 2.0.0
- resolution: "@lumino/collections@npm:2.0.0"
+"@lumino/collections@npm:^2.0.2":
+ version: 2.0.2
+ resolution: "@lumino/collections@npm:2.0.2"
dependencies:
- "@lumino/algorithm": "npm:^2.0.0"
- checksum: 4a7fc3571e92a1368a1ef01300ad7b6e0d4ff13cb78b89533d5962eea66d4a7550e15d8b80fa3ab1816b1a89382f35015f9dddf72ab04654c17e5b516b845d8f
+ "@lumino/algorithm": ^2.0.2
+ checksum: e8bb2068a3741940e0dd396fa729c3c9d12458b41b7c2a9d171c5c034e69fb5834116a824094a8aa4182397e13abace06025ed5032a755ea85b976eae74ee9a9
languageName: node
linkType: hard
@@ -1996,25 +2048,27 @@ __metadata:
languageName: node
linkType: hard
-"@lumino/commands@npm:^2.0.1, @lumino/commands@npm:^2.1.1, @lumino/commands@npm:^2.1.2":
- version: 2.1.2
- resolution: "@lumino/commands@npm:2.1.2"
+"@lumino/commands@npm:^2.0.1, @lumino/commands@npm:^2.1.1, @lumino/commands@npm:^2.3.1":
+ version: 2.3.1
+ resolution: "@lumino/commands@npm:2.3.1"
dependencies:
- "@lumino/algorithm": "npm:^2.0.0"
- "@lumino/coreutils": "npm:^2.1.1"
- "@lumino/disposable": "npm:^2.1.1"
- "@lumino/domutils": "npm:^2.0.0"
- "@lumino/keyboard": "npm:^2.0.0"
- "@lumino/signaling": "npm:^2.1.1"
- "@lumino/virtualdom": "npm:^2.0.0"
- checksum: c0b5ce8c5e1a86a98a90f54bb07b74742748110cf3362b86ff8328c1b5475c4dc05f1c4c9f50bf79e51c4e2ddc5cd69d6194f3d39dd5b58f357b0f30758bf35b
+ "@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
languageName: node
linkType: hard
-"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^1.11.0 || ^2.1.1, @lumino/coreutils@npm:^2.0.0, @lumino/coreutils@npm:^2.0.0-rc.1, @lumino/coreutils@npm:^2.1.1":
- version: 2.1.1
- resolution: "@lumino/coreutils@npm:2.1.1"
- checksum: dfdeb2b0282caae17b6c3edfebadf4ce7c75fc879fa60cacfef9b154412f4b35e4ffd95b1833b99d8dacb99aaaa04513570129ae2024c3f33e2677a01f0576ce
+"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^1.11.0 || ^2.2.0, @lumino/coreutils@npm:^2.0.0, @lumino/coreutils@npm:^2.0.0-rc.1, @lumino/coreutils@npm:^2.1.1, @lumino/coreutils@npm:^2.2.0":
+ version: 2.2.0
+ resolution: "@lumino/coreutils@npm:2.2.0"
+ dependencies:
+ "@lumino/algorithm": ^2.0.2
+ checksum: 345fcd5d7493d745831dd944edfbd8eda06cc59a117e71023fc97ce53badd697be2bd51671f071f5ff0064f75f104575d9695f116a07517bafbedd38e5c7a785
languageName: node
linkType: hard
@@ -2027,29 +2081,29 @@ __metadata:
languageName: node
linkType: hard
-"@lumino/datagrid@npm:^2.1.1":
- version: 2.1.2
- resolution: "@lumino/datagrid@npm:2.1.2"
+"@lumino/datagrid@npm:^2.4.1":
+ version: 2.4.1
+ resolution: "@lumino/datagrid@npm:2.4.1"
dependencies:
- "@lumino/algorithm": "npm:^2.0.0"
- "@lumino/coreutils": "npm:^2.1.1"
- "@lumino/disposable": "npm:^2.1.1"
- "@lumino/domutils": "npm:^2.0.0"
- "@lumino/dragdrop": "npm:^2.1.2"
- "@lumino/keyboard": "npm:^2.0.0"
- "@lumino/messaging": "npm:^2.0.0"
- "@lumino/signaling": "npm:^2.1.1"
- "@lumino/widgets": "npm:^2.2.0"
- checksum: b121cfff8295aa600c2ad9de0ef4c7a3b9c8bbbc202d89b853f6c64d70e13058c62f898cc52d092a3f11b6158fde55cb24b764326ef2b4333db182a4e6cd3cc5
+ "@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.5.0
+ checksum: e24e29b3b08a5c7f01b86b98dbb0343a34ffcedee83b2d52ea2beca021aea95392dee5005f8511a354f331244f37e49e01276ce250cc85b261a301aef82d4f55
languageName: node
linkType: hard
-"@lumino/disposable@npm:^1.10.0 || ^2.0.0, @lumino/disposable@npm:^2.0.0, @lumino/disposable@npm:^2.1.1":
- version: 2.1.1
- resolution: "@lumino/disposable@npm:2.1.1"
+"@lumino/disposable@npm:^1.10.0 || ^2.0.0, @lumino/disposable@npm:^2.0.0, @lumino/disposable@npm:^2.1.1, @lumino/disposable@npm:^2.1.3":
+ version: 2.1.3
+ resolution: "@lumino/disposable@npm:2.1.3"
dependencies:
- "@lumino/signaling": "npm:^2.1.1"
- checksum: ed6cdfe13f3346178a087690d4e7baeccaed7e73ca23cb239765202409f5c01b4729a4058b4717f963462ee9ef2e5cb14ad1974e3163741267290edc3715c85c
+ "@lumino/signaling": ^2.1.3
+ checksum: b9a346fa2752b3cd1b053cb637ee173501d33082a73423429070e8acc508b034ea0babdae0549b923cbdd287ee1fc7f6159f0539c9fff7574393a214eef07c57
languageName: node
linkType: hard
@@ -2070,20 +2124,20 @@ __metadata:
languageName: node
linkType: hard
-"@lumino/domutils@npm:^2.0.0":
- version: 2.0.0
- resolution: "@lumino/domutils@npm:2.0.0"
- checksum: 4a146bfc1006d5fd00ccecc61d9803965d269c15c48c892fd87216336ce967f0db91f31203c5616c83d260224cddf25af4abb6704a6770757d19e44068f690bf
+"@lumino/domutils@npm:^2.0.0, @lumino/domutils@npm:^2.0.2":
+ version: 2.0.2
+ resolution: "@lumino/domutils@npm:2.0.2"
+ checksum: 037b8d0b62af43887fd7edd506fa551e2af104a4b46d62e6fef256e16754dba40d351513beb5083834d468b2c7806aae0fe205fd6aac8ef24759451ee998bbd9
languageName: node
linkType: hard
-"@lumino/dragdrop@npm:^2.1.1, @lumino/dragdrop@npm:^2.1.2":
- version: 2.1.2
- resolution: "@lumino/dragdrop@npm:2.1.2"
+"@lumino/dragdrop@npm:^2.1.1, @lumino/dragdrop@npm:^2.1.5":
+ version: 2.1.5
+ resolution: "@lumino/dragdrop@npm:2.1.5"
dependencies:
- "@lumino/coreutils": "npm:^2.1.1"
- "@lumino/disposable": "npm:^2.1.1"
- checksum: 7ac64ec11423ec89fea937aa6c9ca818933ee98e775e500018a0a948f32171932033a1e302a48395cbe9bfeaa635acde2393fd935db14d7b1d569ca6a1daaa77
+ "@lumino/coreutils": ^2.2.0
+ "@lumino/disposable": ^2.1.3
+ checksum: 48e34bea73186dcde4565fa68cd25067b7f5fe910813d28da9ab3c5392bfaa0b26aab1290635dc953d85bbb139da7ac1ffc040a5d5777d58fd087975dd4b5ef7
languageName: node
linkType: hard
@@ -2094,10 +2148,10 @@ __metadata:
languageName: node
linkType: hard
-"@lumino/keyboard@npm:^2.0.0":
- version: 2.0.0
- resolution: "@lumino/keyboard@npm:2.0.0"
- checksum: 3852ba51f437b1c1d7e552a0f844592a05e04dd5012070dc6e4384c58965d1ebf536c6875c1b7bae03cde3c715ddc36cd290992fcefc1a8c39094194f4689fdd
+"@lumino/keyboard@npm:^2.0.0, @lumino/keyboard@npm:^2.0.2":
+ version: 2.0.2
+ resolution: "@lumino/keyboard@npm:2.0.2"
+ checksum: 198e8c17825c9a831fa0770f58a71574b936acb0f0bbbe7f8feb73d89686dda7ff41fcb02d12b401f5d462b45fe0bba24f7f38befb7cefe0826576559f0bee6d
languageName: node
linkType: hard
@@ -2111,13 +2165,13 @@ __metadata:
languageName: node
linkType: hard
-"@lumino/messaging@npm:^2.0.0":
- version: 2.0.0
- resolution: "@lumino/messaging@npm:2.0.0"
+"@lumino/messaging@npm:^2.0.0, @lumino/messaging@npm:^2.0.2":
+ version: 2.0.2
+ resolution: "@lumino/messaging@npm:2.0.2"
dependencies:
- "@lumino/algorithm": "npm:^2.0.0"
- "@lumino/collections": "npm:^2.0.0"
- checksum: 1e82dcf9b110834d4342dc63dfeac0ee780880fb99051bd82d00a1f83afd91b276c1cea5af85a414d92c527adc365d54f20ec780123b562f89c5a2cd3e96bf81
+ "@lumino/algorithm": ^2.0.2
+ "@lumino/collections": ^2.0.2
+ checksum: 66abd8c473026123589dc22f2ce8f85da10e0b1a05c05ed9b2011035721da5f751cc7ef63b628877f446a78a4287e26ad1450efbeaf0c2e03b1d08be9abaca4d
languageName: node
linkType: hard
@@ -2132,14 +2186,14 @@ __metadata:
languageName: node
linkType: hard
-"@lumino/polling@npm:^2.1.1":
- version: 2.1.1
- resolution: "@lumino/polling@npm:2.1.1"
+"@lumino/polling@npm:^2.1.1, @lumino/polling@npm:^2.1.3":
+ version: 2.1.3
+ resolution: "@lumino/polling@npm:2.1.3"
dependencies:
- "@lumino/coreutils": "npm:^2.1.1"
- "@lumino/disposable": "npm:^2.1.1"
- "@lumino/signaling": "npm:^2.1.1"
- checksum: 69177b26d5fc541e72533cbe7d7f7999eea541d392f1082d20dbd9e1797e7d46fba47bae9c65c06f9ccb2780cbae636e9354d9bf4423b5e1020754d4b07d4f6b
+ "@lumino/coreutils": ^2.2.0
+ "@lumino/disposable": ^2.1.3
+ "@lumino/signaling": ^2.1.3
+ checksum: 2c94dbc2339dd06b3b89a3a690d23576ce095f92bf1f614557dcaeb1c1a8a707b2a18d78c03e5fd7376a43e3f393cc4fec42a65580ae4b67c6630ea86cecbac6
languageName: node
linkType: hard
@@ -2150,20 +2204,20 @@ __metadata:
languageName: node
linkType: hard
-"@lumino/properties@npm:^2.0.0":
- version: 2.0.0
- resolution: "@lumino/properties@npm:2.0.0"
- checksum: 81187a11a779eed4e20ff0035e77dee99bd271b0cf649096c4e8809dd6bdd06955b1a974bc1a115e536f8d2840b30183bb78a362b2c6991824477df6d17e6c59
+"@lumino/properties@npm:^2.0.0, @lumino/properties@npm:^2.0.2":
+ version: 2.0.2
+ resolution: "@lumino/properties@npm:2.0.2"
+ checksum: cbe802bd49ced7e13e50b1d89b82e0f03fb44a590c704e6b9343226498b21d8abfe119b024209e79876b4fc0938dbf85e964c6c4cd5bbdd4d7ba41ce0fb69f3f
languageName: node
linkType: hard
-"@lumino/signaling@npm:^1.10.0 || ^2.0.0, @lumino/signaling@npm:^2.0.0, @lumino/signaling@npm:^2.1.1":
- version: 2.1.1
- resolution: "@lumino/signaling@npm:2.1.1"
+"@lumino/signaling@npm:^1.10.0 || ^2.0.0, @lumino/signaling@npm:^2.0.0, @lumino/signaling@npm:^2.1.1, @lumino/signaling@npm:^2.1.3":
+ version: 2.1.3
+ resolution: "@lumino/signaling@npm:2.1.3"
dependencies:
- "@lumino/algorithm": "npm:^2.0.0"
- "@lumino/coreutils": "npm:^2.1.1"
- checksum: 283ad4239b8577f68aca3d0b2606f73cc1c775f84cab25cf49aa6cd195f0d87949ef43fdff03b38b5a49ebbf2468581c6786d5f8b6159a04b2051260be5eab86
+ "@lumino/algorithm": ^2.0.2
+ "@lumino/coreutils": ^2.2.0
+ checksum: ce59383bd75fe30df5800e0442dbc4193cc6778e2530b9be0f484d159f1d8668be5c6ee92cee9df36d5a0c3dbd9126d0479a82581dee1df889d5c9f922d3328d
languageName: node
linkType: hard
@@ -2186,31 +2240,73 @@ __metadata:
languageName: node
linkType: hard
-"@lumino/virtualdom@npm:^2.0.0":
- version: 2.0.0
- resolution: "@lumino/virtualdom@npm:2.0.0"
+"@lumino/virtualdom@npm:^2.0.0, @lumino/virtualdom@npm:^2.0.2":
+ version: 2.0.2
+ resolution: "@lumino/virtualdom@npm:2.0.2"
dependencies:
- "@lumino/algorithm": "npm:^2.0.0"
- checksum: 6fc1d88e7d4a656be7664ccfc5745eb1d4e3d2034db0b11ad6abefcc642f22d265003eef0e1d02bca2e42b6da127123118c631369006f78e88a08885a6f36c25
+ "@lumino/algorithm": ^2.0.2
+ checksum: 0e1220d5b3b2441e7668f3542a6341e015bdbea0c8bd6d4be962009386c034336540732596d5dedcd54ca57fbde61c2942549129a3e1b0fccb1aa143685fcd15
languageName: node
linkType: hard
-"@lumino/widgets@npm:^1.37.2 || ^2.1.1, @lumino/widgets@npm:^2.0.1, @lumino/widgets@npm:^2.1.1, @lumino/widgets@npm:^2.2.0":
- version: 2.2.0
- resolution: "@lumino/widgets@npm:2.2.0"
+"@lumino/widgets@npm:^1.37.2 || ^2.5.0, @lumino/widgets@npm:^2.0.1, @lumino/widgets@npm:^2.1.1, @lumino/widgets@npm:^2.5.0":
+ version: 2.5.0
+ resolution: "@lumino/widgets@npm:2.5.0"
dependencies:
- "@lumino/algorithm": "npm:^2.0.0"
- "@lumino/commands": "npm:^2.1.2"
- "@lumino/coreutils": "npm:^2.1.1"
- "@lumino/disposable": "npm:^2.1.1"
- "@lumino/domutils": "npm:^2.0.0"
- "@lumino/dragdrop": "npm:^2.1.2"
- "@lumino/keyboard": "npm:^2.0.0"
- "@lumino/messaging": "npm:^2.0.0"
- "@lumino/properties": "npm:^2.0.0"
- "@lumino/signaling": "npm:^2.1.1"
- "@lumino/virtualdom": "npm:^2.0.0"
- checksum: 963c0e54102b786a9cbf3467041c9f6f5c275af751afc311ebeba30d56516767c463c425e321bb389eaa66726dfc4420119a9a58573dcbf3110aba9515c80606
+ "@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: c5055e42b0b7d5d9a0c29d14c7053478cbdef057525e262ccd59c987971364d5462ed1a59d5008b889cf5ecc6810e90c681364239500b9c8ee0ae4624d60df84
+ 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: 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: ff87f402faadb4b5aeee3d27762566c11807f927cd4012b8bbc7f073ca68de0e2197f95330ff5dfd7038f4b4f0e2f51b11feb64c5d570f5c598d37850a5daf60
+ languageName: node
+ linkType: hard
+
+"@microsoft/fast-element@npm:^1.12.0, @microsoft/fast-element@npm:^1.14.0":
+ version: 1.14.0
+ resolution: "@microsoft/fast-element@npm:1.14.0"
+ checksum: 58765739492997a5c51f7841cf6f334e2d2c4ad2365db4a228c07df1c89d139b026abf6afc6691ac48066070d3c94d09afdea2929bdca25842f778293e19892d
+ languageName: node
+ linkType: hard
+
+"@microsoft/fast-foundation@npm:^2.49.4":
+ version: 2.50.0
+ resolution: "@microsoft/fast-foundation@npm:2.50.0"
+ dependencies:
+ "@microsoft/fast-element": ^1.14.0
+ "@microsoft/fast-web-utilities": ^5.4.1
+ tabbable: ^5.2.0
+ tslib: ^1.13.0
+ checksum: 651501eb8cd5a3e583638f70a4e7c0ad30952fe12adedd5c4c24861515d0aaeec0e83d1f1cd25dece899d2fa1614b415001c461f76bb84b20e1a8e18a3fcf219
+ languageName: node
+ linkType: hard
+
+"@microsoft/fast-web-utilities@npm:^5.4.1":
+ version: 5.4.1
+ resolution: "@microsoft/fast-web-utilities@npm:5.4.1"
+ dependencies:
+ exenv-es6: ^1.1.1
+ checksum: 303e87847f962944f474e3716c3eb305668243916ca9e0719e26bb9a32346144bc958d915c103776b3e552cea0f0f6233f839fad66adfdf96a8436b947288ca7
languageName: node
linkType: hard
@@ -2599,19 +2695,14 @@ __metadata:
languageName: node
linkType: hard
-"@playwright/test@npm:^1.32.0, @playwright/test@npm:^1.32.2":
- version: 1.36.2
- resolution: "@playwright/test@npm:1.36.2"
+"@playwright/test@npm:^1.37.0, @playwright/test@npm:^1.48.0":
+ version: 1.49.1
+ resolution: "@playwright/test@npm:1.49.1"
dependencies:
- "@types/node": "npm:*"
- fsevents: "npm:2.3.2"
- playwright-core: "npm:1.36.2"
- dependenciesMeta:
- fsevents:
- optional: true
+ playwright: 1.49.1
bin:
playwright: cli.js
- checksum: 659304e0bbbafb2fa36395fbd8bd2c5db2b7791bbb55fa62409946ec7ec726cf8fff89f2b8a1a74fe831bf50a8780a37a5322a1251a6f7db2a9220a57ac408f0
+ checksum: cdbd16df3d773dc8e522d79b4b961e25c2e1b1d4f3ec45eb711078ab5d11bca47caafe833e2be2f923328fbd012405a9ee31d9b449d184077598546a36847e69
languageName: node
linkType: hard
@@ -2622,34 +2713,34 @@ __metadata:
languageName: node
linkType: hard
-"@rjsf/core@npm:^5.1.0":
- version: 5.10.0
- resolution: "@rjsf/core@npm:5.10.0"
+"@rjsf/core@npm:^5.1.0, @rjsf/core@npm:^5.13.4":
+ version: 5.23.2
+ resolution: "@rjsf/core@npm:5.23.2"
dependencies:
- lodash: "npm:^4.17.21"
- lodash-es: "npm:^4.17.21"
- markdown-to-jsx: "npm:^7.2.1"
- nanoid: "npm:^3.3.6"
- prop-types: "npm:^15.8.1"
+ lodash: ^4.17.21
+ lodash-es: ^4.17.21
+ markdown-to-jsx: ^7.4.1
+ nanoid: ^3.3.7
+ prop-types: ^15.8.1
peerDependencies:
- "@rjsf/utils": ^5.8.x
+ "@rjsf/utils": ^5.23.x
react: ^16.14.0 || >=17
- checksum: 11ff7f07e31ba13c1c6cb5e9aee94c4a5916a3f0013cb19fdeaea9254a77b50acee05d531a70adf92ee8a2024525916b20bb1af79d7afaadbd212a6124a57e5a
+ checksum: 36b2505afd5402368a31a06a4b9d2264f63cab9766f2060cd3c3ecf8b4c08fc7fc8b1b82dd00788f357a2ca649d76c5b6e324152572dbf333bd2b93a0bcc99fd
languageName: node
linkType: hard
-"@rjsf/utils@npm:^5.1.0":
- version: 5.10.0
- resolution: "@rjsf/utils@npm:5.10.0"
+"@rjsf/utils@npm:^5.1.0, @rjsf/utils@npm:^5.13.4":
+ version: 5.23.2
+ resolution: "@rjsf/utils@npm:5.23.2"
dependencies:
- json-schema-merge-allof: "npm:^0.8.1"
- jsonpointer: "npm:^5.0.1"
- lodash: "npm:^4.17.21"
- lodash-es: "npm:^4.17.21"
- react-is: "npm:^18.2.0"
+ json-schema-merge-allof: ^0.8.1
+ jsonpointer: ^5.0.1
+ lodash: ^4.17.21
+ lodash-es: ^4.17.21
+ react-is: ^18.2.0
peerDependencies:
react: ^16.14.0 || >=17
- checksum: 5f44334598cfee3c2bf9a9561680e9c91abce9240ddf54cdb800fbbbb69b182fa7cc1839127558b3661aadbb185fba676eb3189352c8a8b5eea83d0b46987fa7
+ checksum: 16980013258bab7accaff961c533e4bb8e3326c37a84670a7667b2a10c1ca395451eb51a6cf819ccbafb1aa8838df325ff1f314b410bb186fef98856135e1a06
languageName: node
linkType: hard
@@ -6255,41 +6346,41 @@ __metadata:
languageName: node
linkType: hard
-"dom-serializer@npm:^1.0.1":
- version: 1.4.1
- resolution: "dom-serializer@npm:1.4.1"
+"dom-serializer@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "dom-serializer@npm:2.0.0"
dependencies:
- domelementtype: "npm:^2.0.1"
- domhandler: "npm:^4.2.0"
- entities: "npm:^2.0.0"
- checksum: fbb0b01f87a8a2d18e6e5a388ad0f7ec4a5c05c06d219377da1abc7bb0f674d804f4a8a94e3f71ff15f6cb7dcfc75704a54b261db672b9b3ab03da6b758b0b22
+ domelementtype: ^2.3.0
+ domhandler: ^5.0.2
+ entities: ^4.2.0
+ checksum: cd1810544fd8cdfbd51fa2c0c1128ec3a13ba92f14e61b7650b5de421b88205fd2e3f0cc6ace82f13334114addb90ed1c2f23074a51770a8e9c1273acbc7f3e6
languageName: node
linkType: hard
-"domelementtype@npm:^2.0.1, domelementtype@npm:^2.2.0":
+"domelementtype@npm:^2.3.0":
version: 2.3.0
resolution: "domelementtype@npm:2.3.0"
checksum: ee837a318ff702622f383409d1f5b25dd1024b692ef64d3096ff702e26339f8e345820f29a68bcdcea8cfee3531776b3382651232fbeae95612d6f0a75efb4f6
languageName: node
linkType: hard
-"domhandler@npm:^4.0.0, domhandler@npm:^4.2.0":
- version: 4.3.1
- resolution: "domhandler@npm:4.3.1"
+"domhandler@npm:^5.0.2, domhandler@npm:^5.0.3":
+ version: 5.0.3
+ resolution: "domhandler@npm:5.0.3"
dependencies:
- domelementtype: "npm:^2.2.0"
- checksum: 4c665ceed016e1911bf7d1dadc09dc888090b64dee7851cccd2fcf5442747ec39c647bb1cb8c8919f8bbdd0f0c625a6bafeeed4b2d656bbecdbae893f43ffaaa
+ domelementtype: ^2.3.0
+ checksum: 0f58f4a6af63e6f3a4320aa446d28b5790a009018707bce2859dcb1d21144c7876482b5188395a188dfa974238c019e0a1e610d2fc269a12b2c192ea2b0b131c
languageName: node
linkType: hard
-"domutils@npm:^2.5.2":
- version: 2.8.0
- resolution: "domutils@npm:2.8.0"
+"domutils@npm:^3.0.1":
+ version: 3.2.1
+ resolution: "domutils@npm:3.2.1"
dependencies:
- dom-serializer: "npm:^1.0.1"
- domelementtype: "npm:^2.2.0"
- domhandler: "npm:^4.2.0"
- checksum: abf7434315283e9aadc2a24bac0e00eab07ae4313b40cc239f89d84d7315ebdfd2fb1b5bf750a96bc1b4403d7237c7b2ebf60459be394d625ead4ca89b934391
+ dom-serializer: ^2.0.0
+ domelementtype: ^2.3.0
+ domhandler: ^5.0.3
+ checksum: 367589e209d587407289512d894b66e0dbb98773676d733b91f04de0953ceb0f79e678dd7becba77276fb593a92e53a8958d137252450d052c95012d453a1a3e
languageName: node
linkType: hard
@@ -6505,10 +6596,10 @@ __metadata:
languageName: node
linkType: hard
-"entities@npm:^2.0.0":
- version: 2.2.0
- resolution: "entities@npm:2.2.0"
- checksum: 19010dacaf0912c895ea262b4f6128574f9ccf8d4b3b65c7e8334ad0079b3706376360e28d8843ff50a78aabcb8f08f0a32dbfacdc77e47ed77ca08b713669b3
+"entities@npm:^4.2.0, entities@npm:^4.4.0":
+ version: 4.5.0
+ resolution: "entities@npm:4.5.0"
+ checksum: 853f8ebd5b425d350bffa97dd6958143179a5938352ccae092c62d1267c4e392a039be1bae7d51b6e4ffad25f51f9617531fedf5237f15df302ccfb452cbf2d7
languageName: node
linkType: hard
@@ -6956,6 +7047,13 @@ __metadata:
languageName: node
linkType: hard
+"exenv-es6@npm:^1.1.1":
+ version: 1.1.1
+ resolution: "exenv-es6@npm:1.1.1"
+ checksum: 7f2aa12025e6f06c48dc286f380cf3183bb19c6017b36d91695034a3e5124a7235c4f8ff24ca2eb88ae801322f0f99605cedfcfd996a5fcbba7669320e2a448e
+ languageName: node
+ linkType: hard
+
"exponential-backoff@npm:^3.1.1":
version: 3.1.1
resolution: "exponential-backoff@npm:3.1.1"
@@ -7518,7 +7616,7 @@ __metadata:
languageName: node
linkType: hard
-"fsevents@patch:fsevents@npm%3A2.3.2#~builtin":
+"fsevents@patch:fsevents@2.3.2#~builtin":
version: 2.3.2
resolution: "fsevents@patch:fsevents@npm%3A2.3.2#~builtin::version=2.3.2&hash=df0bf1"
dependencies:
@@ -8211,15 +8309,15 @@ __metadata:
languageName: node
linkType: hard
-"htmlparser2@npm:^6.0.0":
- version: 6.1.0
- resolution: "htmlparser2@npm:6.1.0"
+"htmlparser2@npm:^8.0.0":
+ version: 8.0.2
+ resolution: "htmlparser2@npm:8.0.2"
dependencies:
- domelementtype: "npm:^2.0.1"
- domhandler: "npm:^4.0.0"
- domutils: "npm:^2.5.2"
- entities: "npm:^2.0.0"
- checksum: 81a7b3d9c3bb9acb568a02fc9b1b81ffbfa55eae7f1c41ae0bf840006d1dbf54cb3aa245b2553e2c94db674840a9f0fdad7027c9a9d01a062065314039058c4e
+ domelementtype: ^2.3.0
+ domhandler: ^5.0.3
+ domutils: ^3.0.1
+ entities: ^4.4.0
+ checksum: 29167a0f9282f181da8a6d0311b76820c8a59bc9e3c87009e21968264c2987d2723d6fde5a964d4b7b6cba663fca96ffb373c06d8223a85f52a6089ced942700
languageName: node
linkType: hard
@@ -9469,6 +9567,7 @@ __metadata:
stylelint: ^15.10.1
stylelint-config-recommended: ^13.0.0
stylelint-config-standard: ^34.0.0
+ stylelint-csstree-validator: ^3.0.0
stylelint-prettier: ^4.0.0
typescript: ~5.0.4
languageName: unknown
@@ -9478,8 +9577,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "jupyterlab-rise-ui-tests@workspace:ui-tests"
dependencies:
- "@jupyterlab/galata": ^5.0.0
- "@playwright/test": ^1.32.0
+ "@jupyterlab/galata": ^5.0.5
+ "@playwright/test": ^1.37.0
languageName: unknown
linkType: soft
@@ -10334,12 +10433,12 @@ __metadata:
languageName: node
linkType: hard
-"markdown-to-jsx@npm:^7.2.1":
- version: 7.5.0
- resolution: "markdown-to-jsx@npm:7.5.0"
+"markdown-to-jsx@npm:^7.4.1":
+ version: 7.7.2
+ resolution: "markdown-to-jsx@npm:7.7.2"
peerDependencies:
react: ">= 0.14.0"
- checksum: c9c6f1bfad5f2d9b1d3476eb0313ae3dffd0a9f14011c74efdd7c664fd32ee1842ef48abb16a496046f90361af49aa80a827e9d9c0bc04824a1986fdeb4d1852
+ checksum: 8ee7bed1d57fa105fe8357e0b0f703b83dc129170a1bdad6ece426d5789c614a18a8ab9e51af25cff9d6c38505ea1c011cecc1f17c85c4332f7d4951bd4ccbbf
languageName: node
linkType: hard
@@ -10942,7 +11041,7 @@ __metadata:
languageName: node
linkType: hard
-"nanoid@npm:^3.3.6":
+"nanoid@npm:^3.3.6, nanoid@npm:^3.3.7":
version: 3.3.8
resolution: "nanoid@npm:3.3.8"
bin:
@@ -12437,32 +12536,27 @@ __metadata:
languageName: node
linkType: hard
-"playwright-core@npm:1.30.0":
- version: 1.30.0
- resolution: "playwright-core@npm:1.30.0"
- bin:
- playwright: cli.js
- checksum: 4c5693f27245a1168f94708ecd8e1eb0d200de435b25cc07cfa25b97a094633818954dc00baf24e0ff551825f672050b83d1309362c1f97213fe8ebd2a147ed9
- languageName: node
- linkType: hard
-
-"playwright-core@npm:1.36.2":
- version: 1.36.2
- resolution: "playwright-core@npm:1.36.2"
+"playwright-core@npm:1.49.1":
+ version: 1.49.1
+ resolution: "playwright-core@npm:1.49.1"
bin:
playwright-core: cli.js
- checksum: 2193ce802ef93c28b9b5e11a0b1d7b60778c686015659978d1cbf0eb9cda2cdc85ec5575b887c1346e9d161cc2805bf27638d76a2f7f857dffeae968e6ceffcd
+ checksum: a940f4b10ff1de033b4b8594b5104b02849a892d9adda0d42330a872cd3d8d287ffd2b01fc33f33ccd34f8904bb8ae8220b878b62e899f3d9bcd1b0945ab45c7
languageName: node
linkType: hard
-"playwright@npm:^1.12.3":
- version: 1.30.0
- resolution: "playwright@npm:1.30.0"
+"playwright@npm:1.49.1, playwright@npm:^1.12.3":
+ version: 1.49.1
+ resolution: "playwright@npm:1.49.1"
dependencies:
- playwright-core: "npm:1.30.0"
+ fsevents: 2.3.2
+ playwright-core: 1.49.1
+ dependenciesMeta:
+ fsevents:
+ optional: true
bin:
playwright: cli.js
- checksum: 1987446ed07e25c0c6dedce8314209b49536eb4c7fa82e57e7fea9bd8128bacd08e49f9e89af30a647839bf2603b8c8321f50e23e334a11c1c29eedb838a81a3
+ checksum: c136d42d625e32614f90e5228a165dc8be48c5bfb52aca9210c6ff04161a409dbe42fe5ae4f05a2653f6a1b836876a04d3b0f24bcbbc053d1509c1d605b7c8d5
languageName: node
linkType: hard
@@ -13019,12 +13113,12 @@ __metadata:
languageName: node
linkType: hard
-"react@npm:^18.2.0":
- version: 18.2.0
- resolution: "react@npm:18.2.0"
+"react@npm:>=17.0.0 <19.0.0, react@npm:^18.2.0":
+ version: 18.3.1
+ resolution: "react@npm:18.3.1"
dependencies:
- loose-envify: "npm:^1.1.0"
- checksum: 88e38092da8839b830cda6feef2e8505dec8ace60579e46aa5490fc3dc9bba0bd50336507dc166f43e3afc1c42939c09fe33b25fae889d6f402721dcd78fca1b
+ loose-envify: ^1.1.0
+ checksum: a27bcfa8ff7c15a1e50244ad0d0c1cb2ad4375eeffefd266a64889beea6f6b64c4966c9b37d14ee32d6c9fcd5aa6ba183b6988167ab4d127d13e7cb5b386a376
languageName: node
linkType: hard
@@ -13745,17 +13839,17 @@ __metadata:
languageName: node
linkType: hard
-"sanitize-html@npm:~2.7.3":
- version: 2.7.3
- resolution: "sanitize-html@npm:2.7.3"
+"sanitize-html@npm:~2.12.1":
+ version: 2.12.1
+ resolution: "sanitize-html@npm:2.12.1"
dependencies:
- deepmerge: "npm:^4.2.2"
- escape-string-regexp: "npm:^4.0.0"
- htmlparser2: "npm:^6.0.0"
- is-plain-object: "npm:^5.0.0"
- parse-srcset: "npm:^1.0.2"
- postcss: "npm:^8.3.11"
- checksum: 2399d1fdbbc3a263fb413c1fe1971b3dc2b51abc6cc5cb49490624539d1c57a8fe31e2b21408c118e2a957f4e673e3169b1f9a5807654408f17b130a9d78aed7
+ deepmerge: ^4.2.2
+ escape-string-regexp: ^4.0.0
+ htmlparser2: ^8.0.0
+ is-plain-object: ^5.0.0
+ parse-srcset: ^1.0.2
+ postcss: ^8.3.11
+ checksum: fb96ea7170d51b5af2607f5cfd84464c78fc6f47e339407f55783e781c6a0288a8d40bbf97ea6a8758924ba9b2d33dcc4846bb94caacacd90d7f2de10ed8541a
languageName: node
linkType: hard
@@ -14689,10 +14783,10 @@ __metadata:
languageName: node
linkType: hard
-"style-mod@npm:^4.0.0":
- version: 4.0.3
- resolution: "style-mod@npm:4.0.3"
- checksum: 934556e720bd29026ff8fef43a1a35b58957813025b91f996d886e9405acf934ddb1934def4400b174bd7784c9263eb9c71f07ae83925af9271b7d921d546854
+"style-mod@npm:^4.0.0, style-mod@npm:^4.1.0":
+ version: 4.1.2
+ resolution: "style-mod@npm:4.1.2"
+ checksum: 7c5c3e82747f9bcf5f288d8d07f50848e4630fe5ff7bfe4d94cc87d6b6a2588227cbf21b4c792ac6406e5852293300a75e710714479a5c59a06af677f0825ef8
languageName: node
linkType: hard
@@ -14723,6 +14817,17 @@ __metadata:
languageName: node
linkType: hard
+"stylelint-csstree-validator@npm:^3.0.0":
+ version: 3.0.0
+ resolution: "stylelint-csstree-validator@npm:3.0.0"
+ dependencies:
+ css-tree: ^2.3.1
+ peerDependencies:
+ stylelint: ">=7.0.0 <16.0.0"
+ checksum: e518c8c17714022946b7637c23a6816fd2ccdd6052a19c5a138b3f7ce9b913ead9c612ac4401e102f14800a19967dbfd4b588b44cbf3f3c6a5984bef7bda4017
+ languageName: node
+ linkType: hard
+
"stylelint-prettier@npm:^4.0.0":
version: 4.0.1
resolution: "stylelint-prettier@npm:4.0.1"
@@ -14868,6 +14973,13 @@ __metadata:
languageName: node
linkType: hard
+"tabbable@npm:^5.2.0":
+ version: 5.3.3
+ resolution: "tabbable@npm:5.3.3"
+ checksum: 1aa56e1bb617cc10616c407f4e756f0607f3e2d30f9803664d70b85db037ca27e75918ed1c71443f3dc902e21dc9f991ce4b52d63a538c9b69b3218d3babcd70
+ languageName: node
+ linkType: hard
+
"table@npm:^6.8.1":
version: 6.8.1
resolution: "table@npm:6.8.1"
@@ -15164,6 +15276,13 @@ __metadata:
languageName: node
linkType: hard
+"tslib@npm:^1.13.0":
+ version: 1.14.1
+ resolution: "tslib@npm:1.14.1"
+ checksum: dbe628ef87f66691d5d2959b3e41b9ca0045c3ee3c7c7b906cc1e328b39f199bb1ad9e671c39025bd56122ac57dfbf7385a94843b1cc07c60a4db74795829acd
+ languageName: node
+ linkType: hard
+
"tslib@npm:^2.1.0, tslib@npm:^2.3.0, tslib@npm:^2.4.0, tslib@npm:^2.5.0, tslib@npm:^2.6.0":
version: 2.6.0
resolution: "tslib@npm:2.6.0"