From 436bc8c0b1eea1be05f3ee0e99b052b017b941ab Mon Sep 17 00:00:00 2001 From: "Lumberbot (aka Jack)" <39504233+meeseeksmachine@users.noreply.github.com> Date: Tue, 5 Dec 2023 17:31:16 +0100 Subject: [PATCH 1/9] Backport PR #15462: Fix URLs in debugger-extension (#15489) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Frédéric Collonval --- packages/debugger-extension/package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/debugger-extension/package.json b/packages/debugger-extension/package.json index 79997ad45a79..8446bee7468a 100644 --- a/packages/debugger-extension/package.json +++ b/packages/debugger-extension/package.json @@ -7,13 +7,13 @@ "jupyterlab", "jupyterlab-extension" ], - "homepage": "https://github.com/jupyterlab/debugger", + "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { - "url": "https://github.com/jupyterlab/debugger/issues" + "url": "https://github.com/jupyterlab/jupyterlab/issues" }, "repository": { "type": "git", - "url": "https://github.com/jupyterlab/debugger.git" + "url": "https://github.com/jupyterlab/jupyterlab.git" }, "license": "BSD-3-Clause", "author": "Project Jupyter", From 1b68653f25c1f69d6e1ce97178bc0bb740637f46 Mon Sep 17 00:00:00 2001 From: "Lumberbot (aka Jack)" <39504233+meeseeksmachine@users.noreply.github.com> Date: Tue, 12 Dec 2023 09:59:49 +0100 Subject: [PATCH 2/9] Backport PR #15496: Pin `actions/labeler` to v4 to fix failing CI action (#15515) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Michał Krassowski <5832902+krassowski@users.noreply.github.com> --- .github/workflows/labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 0e28ad5c6e1b..a9b87114a699 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -11,6 +11,6 @@ jobs: name: Update PR Labels runs-on: ubuntu-latest steps: - - uses: actions/labeler@main + - uses: actions/labeler@v4 with: repo-token: "${{ secrets.GITHUB_TOKEN }}" From 54f76676fcc499417feecb593de1c701e2ad13fd Mon Sep 17 00:00:00 2001 From: "Lumberbot (aka Jack)" <39504233+meeseeksmachine@users.noreply.github.com> Date: Tue, 12 Dec 2023 20:50:53 +0100 Subject: [PATCH 3/9] Backport PR #15464: Fix `FormComponent` showing error indicators in all fields when using a `customValidate` function (#15522) Co-authored-by: Matthew Michilot --- packages/ui-components/src/components/form.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui-components/src/components/form.tsx b/packages/ui-components/src/components/form.tsx index 54152c78cc26..997c207eb2d9 100644 --- a/packages/ui-components/src/components/form.tsx +++ b/packages/ui-components/src/components/form.tsx @@ -507,7 +507,7 @@ const CustomTemplateFactory = (options: FormComponent.ILabCustomizerProps) => }`} > {!hasCustomField && - (rawErrors ? ( + (rawErrors?.length ? ( // Shows a red indicator for fields that have validation errors
) : ( From f0dee91d53bfd67ff64a9f1aaedf69244b091344 Mon Sep 17 00:00:00 2001 From: "Lumberbot (aka Jack)" <39504233+meeseeksmachine@users.noreply.github.com> Date: Tue, 19 Dec 2023 23:17:07 +0100 Subject: [PATCH 4/9] Backport PR #15542: Fix `jupyter labextension watch --help` (#15543) Co-authored-by: Aarni Koskela --- jupyterlab/labextensions.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jupyterlab/labextensions.py b/jupyterlab/labextensions.py index 5a1a82109ba9..ce19878cfb27 100644 --- a/jupyterlab/labextensions.py +++ b/jupyterlab/labextensions.py @@ -300,9 +300,9 @@ class WatchLabExtensionApp(BaseExtensionApp): ) aliases = { - "development": "BuildLabExtensionApp.development", - "source-map": "BuildLabExtensionApp.source_map", - "core-path": "BuildLabExtensionApp.core_path", + "core-path": "WatchLabExtensionApp.core_path", + "development": "WatchLabExtensionApp.development", + "source-map": "WatchLabExtensionApp.source_map", } def run_task(self): From e68754b9b33306370b5680a02501124bc57f2f32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Krassowski?= <5832902+krassowski@users.noreply.github.com> Date: Wed, 27 Dec 2023 13:38:53 +0000 Subject: [PATCH 5/9] Backport PR #15479: Workaround/input box focus (#15563) * Re-focus input after modifying model, keep input for 0.5s * Add a test case against the focus loss issue Tested that it fails on main reproducing the issue: ``` - Expected - 0 + Received + 8 from time import sleep input() print('before sleep') sleep(0.1) print('after sleep') + + + x + + + + + ``` * Give up on using animations and :has() solution due to FF bug https://bugzilla.mozilla.org/show_bug.cgi?id=1867893 `:has()` is not only not yet officially supported but is hard to implement well so no wonder there are difficult invalidation bugs * More robust stdin test (cherry picked from commit 68be1035baf991546e9436bf9a5c7493266568c2) --- .../test/jupyterlab/outputarea-stdin.test.ts | 55 +++++++++++++++++-- packages/outputarea/src/widget.ts | 38 ++++++++++++- packages/outputarea/style/base.css | 6 ++ 3 files changed, 92 insertions(+), 7 deletions(-) diff --git a/galata/test/jupyterlab/outputarea-stdin.test.ts b/galata/test/jupyterlab/outputarea-stdin.test.ts index 12ef944f1a31..9eb578c440b2 100644 --- a/galata/test/jupyterlab/outputarea-stdin.test.ts +++ b/galata/test/jupyterlab/outputarea-stdin.test.ts @@ -7,6 +7,16 @@ test.use({ locale: 'en-US' }); +const loopedInput = `\ +from time import sleep +input() +print('before sleep') +sleep(0.1) +print('after sleep')`; + +const ACTIVE_INPUT = + '.jp-OutputArea-stdin-item:not(.jp-OutputArea-stdin-hiding) .jp-Stdin-input'; + test.describe('Stdin for ipdb', () => { test.beforeEach(async ({ page }) => { await page.notebook.createNew(); @@ -24,20 +34,20 @@ test.describe('Stdin for ipdb', () => { await page.keyboard.press('Control+Enter'); // enter a bunch of nonsense commands into the stdin attached to ipdb - await page.waitForSelector('.jp-Stdin-input'); + await page.waitForSelector(ACTIVE_INPUT); await page.keyboard.insertText('foofoo'); await page.keyboard.press('Enter'); - await page.waitForSelector('.jp-Stdin-input'); + await page.waitForSelector(ACTIVE_INPUT); await page.keyboard.insertText('barbar'); await page.keyboard.press('Enter'); - await page.waitForSelector('.jp-Stdin-input'); + await page.waitForSelector(ACTIVE_INPUT); await page.keyboard.insertText('bazbaz'); await page.keyboard.press('Enter'); // search for the first nonsense command - await page.waitForSelector('.jp-Stdin-input'); + await page.waitForSelector(ACTIVE_INPUT); await page.keyboard.insertText('foo'); await page.keyboard.press('Control+ArrowUp'); @@ -54,7 +64,7 @@ test.describe('Stdin for ipdb', () => { // Check that the input remains focused and cursor is at the end. await page.keyboard.insertText('x'); - await expect(page.locator('.jp-Stdin-input')).toHaveValue('foofoox'); + await expect(page.locator(ACTIVE_INPUT)).toHaveValue('foofoox'); }); test('Typing in stdin box', async ({ page }) => { @@ -82,4 +92,39 @@ test.describe('Stdin for ipdb', () => { alphabet + alphabet.toUpperCase() + digits ); }); + + test('Subsequent execution in short succession', async ({ page }) => { + await page.notebook.setCell(0, 'code', loopedInput); + // Run the selected (only) cell without proceeding and without waiting + // for it to complete (as it should stay waiting for input). + await page.keyboard.press('Control+Enter'); + + // Wait for first input + await page.waitForSelector('.jp-Stdin-input'); + + // Note: this test does not wait for subsequent inputs on purpose + + await page.getByText('before sleep').waitFor(); + + // Press enter five times (should do nothing) + for (let j = 0; j < 5; j++) { + await page.keyboard.press('Enter'); + } + // Press a key which should go to the input + await page.keyboard.press('x'); + + await page.getByText('after sleep').waitFor(); + + // Press enter five times (should submit and then do nothing) + for (let j = 0; j < 5; j++) { + await page.keyboard.press('Enter'); + } + + const cellInput = await page.notebook.getCellInput(0); + const editor = await cellInput.$('.cm-content'); + const contentAfter = await editor.evaluate((e: any) => + e.cmView.view.state.doc.toString() + ); + expect(contentAfter).toBe(loopedInput); + }); }); diff --git a/packages/outputarea/src/widget.ts b/packages/outputarea/src/widget.ts index 22a1ee60b558..a2a06ec4e367 100644 --- a/packages/outputarea/src/widget.ts +++ b/packages/outputarea/src/widget.ts @@ -44,6 +44,8 @@ const OUTPUT_AREA_OUTPUT_CLASS = 'jp-OutputArea-output'; */ const OUTPUT_AREA_PROMPT_CLASS = 'jp-OutputArea-prompt'; +const OUTPUT_AREA_STDIN_HIDING_CLASS = 'jp-OutputArea-stdin-hiding'; + /** * The class name added to OutputPrompt. */ @@ -450,10 +452,12 @@ export class OutputArea extends Widget { if (this.model.length >= this.maxNumberOutputs) { this.maxNumberOutputs = this.model.length; } - this.layout.addWidget(panel); this._inputRequested.emit(); + // Get the input node to ensure focus after updating the model upon user reply. + const inputNode = input.node.getElementsByTagName('input')[0]; + /** * Wait for the stdin to complete, add it to the model (so it persists) * and remove the stdin widget. @@ -463,14 +467,37 @@ export class OutputArea extends Widget { if (this.model.length >= this.maxNumberOutputs) { this.maxNumberOutputs = this.model.length + 1; } + panel.addClass(OUTPUT_AREA_STDIN_HIDING_CLASS); // Use stdin as the stream so it does not get combined with stdout. + // Note: because it modifies DOM it may (will) shift focus away from the input node. this.model.add({ output_type: 'stream', name: 'stdin', text: value + '\n' }); - panel.dispose(); + // Refocus the input node after it lost focus due to update of the model. + inputNode.focus(); + + // Keep the input in view for a little while; this (along refocusing) + // ensures that we can avoid the cell editor stealing the focus, and + // leading to user inadvertently modifying editor content when executing + // consecutive commands in short succession. + window.setTimeout(() => { + // Tack currently focused element to ensure that it remains on it + // after disposal of the panel with the old input + // (which modifies DOM and can lead to focus jump). + const focusedElement = document.activeElement; + // Dispose the old panel with no longer needed input box. + panel.dispose(); + // Refocus the element that was focused before. + if (focusedElement && focusedElement instanceof HTMLElement) { + focusedElement.focus(); + } + }, 500); }); + + // Note: the `input.value` promise must be listened to before we attach the panel + this.layout.addWidget(panel); } /** @@ -1085,6 +1112,11 @@ export class Stdin extends Widget implements IStdin { * not be called directly by user code. */ handleEvent(event: KeyboardEvent): void { + if (this._resolved) { + // Do not handle any more key events if the promise was resolved. + event.preventDefault(); + return; + } const input = this._input; if (event.type === 'keydown') { @@ -1104,6 +1136,7 @@ export class Stdin extends Widget implements IStdin { this._value += input.value; Stdin._historyPush(this._historyKey, input.value); } + this._resolved = true; this._promise.resolve(void 0); } else if (event.key === 'Escape') { // currently this gets clobbered by the documentsearch:end command at the notebook level @@ -1219,6 +1252,7 @@ export class Stdin extends Widget implements IStdin { private _trans: TranslationBundle; private _value: string; private _valueCache: string; + private _resolved: boolean = false; } export namespace Stdin { diff --git a/packages/outputarea/style/base.css b/packages/outputarea/style/base.css index cfde32e48850..69d9bc1b680e 100644 --- a/packages/outputarea/style/base.css +++ b/packages/outputarea/style/base.css @@ -243,6 +243,12 @@ body.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated::before { opacity: 1; } +.jp-OutputArea-stdin-hiding { + /* soft-hide the output, preserving focus */ + opacity: 0; + height: 0; +} + /*----------------------------------------------------------------------------- | Output Area View |----------------------------------------------------------------------------*/ From dd68b9c4a11008274147e8586754596b0770ccee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Krassowski?= <5832902+krassowski@users.noreply.github.com> Date: Wed, 27 Dec 2023 13:40:06 +0000 Subject: [PATCH 6/9] Backport PR #15443: Fix search coming back in notebook and editor (#15562) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * a test case to illustrate issue #14871 * cleanup unused code * rename outline into highlight as it sounds more proper * fix typo in variable name _unrenderedByHighligh → _unrenderedByHighlight * Fix search coming back in notebook and editor * Add missing return * Rename snapshots and limit screenshot to notebook area Remove no-op await locator line * Update Playwright Snapshots * Improve async test implementation to avoid early closing * Update Playwright Snapshots * Remove visual snapshots, use locator counts instead and revert spurious snapshot updates --------- Co-authored-by: Thierry Parmentelat Co-authored-by: github-actions[bot] (cherry picked from commit 746ce2d75652a207fa1cdac07dd05854ac15eafb) --- .../notebook-search-highlight.test.ts | 58 +++++++++ .../notebooks/search_highlight_notebook.ipynb | 110 ++++++++++++++++++ packages/cells/src/searchprovider.ts | 10 +- .../documentsearch-extension/src/index.ts | 1 - packages/documentsearch/src/searchmodel.ts | 16 ++- packages/fileeditor/package.json | 1 + packages/fileeditor/src/searchprovider.ts | 27 +++++ packages/notebook/src/searchprovider.ts | 7 +- yarn.lock | 1 + 9 files changed, 222 insertions(+), 9 deletions(-) create mode 100644 galata/test/jupyterlab/notebook-search-highlight.test.ts create mode 100644 galata/test/jupyterlab/notebooks/search_highlight_notebook.ipynb diff --git a/galata/test/jupyterlab/notebook-search-highlight.test.ts b/galata/test/jupyterlab/notebook-search-highlight.test.ts new file mode 100644 index 000000000000..d282f76d50eb --- /dev/null +++ b/galata/test/jupyterlab/notebook-search-highlight.test.ts @@ -0,0 +1,58 @@ +// Copyright (c) Jupyter Development Team. +// Distributed under the terms of the Modified BSD License. +import { expect, galata, test } from '@jupyterlab/galata'; +import * as path from 'path'; + +const TEST_FILENAME = 'search_highlight_notebook.ipynb'; +const TEST_NEEDLE = 'come'; + +test.use({ tmpPath: 'test-search' }); + +test.beforeAll(async ({ request, tmpPath }) => { + const contents = galata.newContentsHelper(request); + await contents.uploadFile( + path.resolve(__dirname, `./notebooks/${TEST_FILENAME}`), + `${tmpPath}/${TEST_FILENAME}` + ); +}); + +test.beforeEach(async ({ page, tmpPath }) => { + await page.notebook.openByPath(`${tmpPath}/${TEST_FILENAME}`); + await page.notebook.activate(TEST_FILENAME); +}); + +const HIGHLIGHTS_LOCATOR = '.cm-searching'; + +test('Open and close Search dialog, then add new code cell', async ({ + page +}) => { + // search for our needle + await page.evaluate(async searchText => { + await window.jupyterapp.commands.execute('documentsearch:start', { + searchText + }); + }, TEST_NEEDLE); + + // wait for the search to complete + await page.waitForSelector('text=1/21'); + expect(await page.locator(HIGHLIGHTS_LOCATOR).count()).toBeGreaterThanOrEqual( + 4 + ); + + // cancel search + await page.keyboard.press('Escape'); + + // expect the highlights to have gone + expect(await page.locator(HIGHLIGHTS_LOCATOR).count()).toEqual(0); + + // insert a new code cell + await page.evaluate(async () => + window.jupyterapp.commands.execute('notebook:insert-cell-below') + ); + + // wait an arbitrary amount of extra time + // and expect the highlights to be still gone + // regression-testing against #14871 + await new Promise(resolve => setTimeout(resolve, 1000)); + expect(await page.locator(HIGHLIGHTS_LOCATOR).count()).toEqual(0); +}); diff --git a/galata/test/jupyterlab/notebooks/search_highlight_notebook.ipynb b/galata/test/jupyterlab/notebooks/search_highlight_notebook.ipynb new file mode 100644 index 000000000000..65dbcfc00a50 --- /dev/null +++ b/galata/test/jupyterlab/notebooks/search_highlight_notebook.ipynb @@ -0,0 +1,110 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "e86bd77e-7e48-4941-8cb9-72410d8256aa", + "metadata": {}, + "source": [ + "# regular notebook (not myst)" + ] + }, + { + "cell_type": "markdown", + "id": "d06cb0c2-483b-4781-b283-8212ea667823", + "metadata": {}, + "source": [ + "## a subtitle\n", + "\n", + "Where does it come from?\n", + "Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.\n" + ] + }, + { + "cell_type": "markdown", + "id": "8541f40d-4f71-48fc-92d4-708063b476ec", + "metadata": {}, + "source": [ + "## another one\n", + "\n", + "Where does it come from?\n", + "Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.\n" + ] + }, + { + "cell_type": "markdown", + "id": "d896a643-8998-48cf-8a4f-ec2965656e73", + "metadata": {}, + "source": [ + "## yet another\n", + "\n", + "Where does it come from?\n", + "Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.\n" + ] + }, + { + "cell_type": "markdown", + "id": "a089ea8f-02b8-4b09-af17-aca38782b3c7", + "metadata": {}, + "source": [ + "## let's change\n", + "\n", + "Where does it come from?\n", + "Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.\n" + ] + }, + { + "cell_type": "markdown", + "id": "6f9ad439-3dc0-410c-9d98-2a9356f839a3", + "metadata": {}, + "source": [ + "## to a less predictible\n", + "\n", + "Where does it come from?\n", + "Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.\n" + ] + }, + { + "cell_type": "markdown", + "id": "a783fb23-b79c-40c7-b8fe-be597130a3ae", + "metadata": {}, + "source": [ + "## pattern in picking names\n", + "\n", + "Where does it come from?\n", + "Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.\n" + ] + }, + { + "cell_type": "markdown", + "id": "4e2ae1be-078e-4bf6-974b-6ea6750a74a9", + "metadata": {}, + "source": [ + "## the last one\n", + "\n", + "Where does it come from?\n", + "Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.5" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/packages/cells/src/searchprovider.ts b/packages/cells/src/searchprovider.ts index b5fe8bc87464..ff38dcc23d7b 100644 --- a/packages/cells/src/searchprovider.ts +++ b/packages/cells/src/searchprovider.ts @@ -326,7 +326,7 @@ class MarkdownCellSearchProvider extends CellSearchProvider { const cell = this.cell as MarkdownCell; if (cell.rendered && this.matchesCount > 0) { // Unrender the cell - this._unrenderedByHighligh = true; + this._unrenderedByHighlight = true; const waitForRendered = signalToPromise(cell.renderedChanged); cell.rendered = false; await waitForRendered; @@ -347,7 +347,7 @@ class MarkdownCellSearchProvider extends CellSearchProvider { const cell = this.cell as MarkdownCell; if (cell.rendered && this.matchesCount > 0) { // Unrender the cell if there are matches within the cell - this._unrenderedByHighligh = true; + this._unrenderedByHighlight = true; const waitForRendered = signalToPromise(cell.renderedChanged); cell.rendered = false; await waitForRendered; @@ -397,10 +397,10 @@ class MarkdownCellSearchProvider extends CellSearchProvider { * @param rendered New rendered value */ protected onRenderedChanged(cell: MarkdownCell, rendered: boolean): void { - if (!this._unrenderedByHighligh) { + if (!this._unrenderedByHighlight) { this.currentIndex = null; } - this._unrenderedByHighligh = false; + this._unrenderedByHighlight = false; if (this.isActive) { if (rendered) { void this.renderedProvider.startQuery(this.query); @@ -413,7 +413,7 @@ class MarkdownCellSearchProvider extends CellSearchProvider { } protected renderedProvider: GenericSearchProvider; - private _unrenderedByHighligh = false; + private _unrenderedByHighlight = false; } /** diff --git a/packages/documentsearch-extension/src/index.ts b/packages/documentsearch-extension/src/index.ts index f1818dbc3631..719e0e958135 100644 --- a/packages/documentsearch-extension/src/index.ts +++ b/packages/documentsearch-extension/src/index.ts @@ -308,7 +308,6 @@ const extension: JupyterFrontEndPlugin = { if (!currentWidget) { return; } - searchViews.get(currentWidget.id)?.close(); } }); diff --git a/packages/documentsearch/src/searchmodel.ts b/packages/documentsearch/src/searchmodel.ts index 905cd9aecef7..7bad209e2403 100644 --- a/packages/documentsearch/src/searchmodel.ts +++ b/packages/documentsearch/src/searchmodel.ts @@ -38,7 +38,7 @@ export class SearchDocumentModel } } - searchProvider.stateChanged.connect(this.refresh, this); + searchProvider.stateChanged.connect(this._onProviderStateChanged, this); this._searchDebouncer = new Debouncer(() => { this._updateSearch().catch(reason => { @@ -235,7 +235,10 @@ export class SearchDocumentModel }); } - this.searchProvider.stateChanged.disconnect(this.refresh, this); + this.searchProvider.stateChanged.disconnect( + this._onProviderStateChanged, + this + ); this._searchDebouncer.dispose(); super.dispose(); @@ -245,6 +248,7 @@ export class SearchDocumentModel * End the query. */ async endQuery(): Promise { + this._searchActive = false; await this.searchProvider.endQuery(); this.stateChanged.emit(); } @@ -338,6 +342,7 @@ export class SearchDocumentModel ) : null; if (query) { + this._searchActive = true; await this.searchProvider.startQuery(query, this._filters); // Emit state change as the index needs to be updated this.stateChanged.emit(); @@ -352,6 +357,12 @@ export class SearchDocumentModel } } + private _onProviderStateChanged() { + if (this._searchActive) { + this.refresh(); + } + } + private _caseSensitive = false; private _disposed = new Signal(this); private _parsingError = ''; @@ -359,6 +370,7 @@ export class SearchDocumentModel private _initialQuery = ''; private _filters: IFilters = {}; private _replaceText: string = ''; + private _searchActive = false; private _searchDebouncer: Debouncer; private _searchExpression = ''; private _useRegex = false; diff --git a/packages/fileeditor/package.json b/packages/fileeditor/package.json index 20928a220e04..ae699a8de95d 100644 --- a/packages/fileeditor/package.json +++ b/packages/fileeditor/package.json @@ -40,6 +40,7 @@ "watch": "tsc -b --watch" }, "dependencies": { + "@jupyter/ydoc": "^1.1.1", "@jupyterlab/apputils": "^4.1.9", "@jupyterlab/codeeditor": "^4.0.9", "@jupyterlab/codemirror": "^4.0.9", diff --git a/packages/fileeditor/src/searchprovider.ts b/packages/fileeditor/src/searchprovider.ts index e709c4375e38..f68b699c35b9 100644 --- a/packages/fileeditor/src/searchprovider.ts +++ b/packages/fileeditor/src/searchprovider.ts @@ -12,6 +12,7 @@ import { import { ITranslator } from '@jupyterlab/translation'; import { Widget } from '@lumino/widgets'; import { FileEditor } from './widget'; +import { ISharedText, SourceChange } from '@jupyter/ydoc'; /** * Helper type @@ -64,6 +65,7 @@ export class FileEditorSearchProvider query: RegExp, filters: IFilters | undefined ): Promise { + this._searchActive = true; await super.startQuery(query, filters); await this.highlightNext(true, { from: 'selection-start', @@ -72,6 +74,29 @@ export class FileEditorSearchProvider }); } + /** + * Stop the search and clean any UI elements. + */ + async endQuery(): Promise { + this._searchActive = false; + await super.endQuery(); + } + + /** + * Callback on source change + * + * @param emitter Source of the change + * @param changes Source change + */ + protected async onSharedModelChanged( + emitter: ISharedText, + changes: SourceChange + ): Promise { + if (this._searchActive) { + return super.onSharedModelChanged(emitter, changes); + } + } + /** * Instantiate a search provider for the widget. * @@ -116,4 +141,6 @@ export class FileEditorSearchProvider ); return selection; } + + private _searchActive = false; } diff --git a/packages/notebook/src/searchprovider.ts b/packages/notebook/src/searchprovider.ts index 76f40843bd80..674a868d13db 100644 --- a/packages/notebook/src/searchprovider.ts +++ b/packages/notebook/src/searchprovider.ts @@ -347,6 +347,7 @@ export class NotebookSearchProvider extends SearchProvider { return; } await this.endQuery(); + this._searchActive = true; let cells = this.widget.content.widgets; this._query = query; @@ -415,6 +416,7 @@ export class NotebookSearchProvider extends SearchProvider { }) ); + this._searchActive = false; this._searchProviders.length = 0; this._currentProviderIndex = null; } @@ -541,7 +543,9 @@ export class NotebookSearchProvider extends SearchProvider { this.widget.content.isSelectedOrActive(cell) ) .then(() => { - void cellSearchProvider.startQuery(this._query, this._filters); + if (this._searchActive) { + void cellSearchProvider.startQuery(this._query, this._filters); + } }); } @@ -903,4 +907,5 @@ export class NotebookSearchProvider extends SearchProvider { > | null = null; private _selectionSearchMode: 'cells' | 'text' = 'cells'; private _selectionLock: boolean = false; + private _searchActive: boolean = false; } diff --git a/yarn.lock b/yarn.lock index 11fb314995a4..6025e6200cd7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3410,6 +3410,7 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/fileeditor@workspace:packages/fileeditor" dependencies: + "@jupyter/ydoc": ^1.1.1 "@jupyterlab/apputils": ^4.1.9 "@jupyterlab/codeeditor": ^4.0.9 "@jupyterlab/codemirror": ^4.0.9 From 3ce03317159234accec1987a890dffa10aef6ebd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Krassowski?= <5832902+krassowski@users.noreply.github.com> Date: Wed, 27 Dec 2023 13:41:03 +0000 Subject: [PATCH 7/9] Backport PR #15499: Adopt ruff format (#15564) (cherry picked from commit 5ec3aa40ffcea1a30cde7c391a63e8bbda897ea8) Co-authored-by: Jeremy Tuloup --- .pre-commit-config.yaml | 8 ++------ binder/environment.yml | 1 - clean.py | 4 +++- docs/source/conf.py | 2 +- docs/source/developer/contributing.rst | 6 +++--- examples/example_check.py | 4 ++-- jupyterlab/commands.py | 6 ++++-- jupyterlab/federated_labextensions.py | 3 ++- jupyterlab/handlers/announcements.py | 6 +++--- jupyterlab/tests/test_extensions.py | 2 -- jupyterlab/upgrade_extension.py | 13 +++++++------ pyproject.toml | 19 ++++--------------- scripts/ci_script.sh | 2 +- 13 files changed, 32 insertions(+), 44 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index d836d9a0db2b..c43aba2b0505 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -31,17 +31,13 @@ repos: hooks: - id: check-github-workflows - - repo: https://github.com/psf/black - rev: 23.10.1 - hooks: - - id: black - # Check ruff version is aligned with the one in pyproject.toml - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.1.4 + rev: v0.1.6 hooks: - id: ruff args: ["--fix"] + - id: ruff-format - repo: local hooks: diff --git a/binder/environment.yml b/binder/environment.yml index d3549cdb430d..9b6357290628 100644 --- a/binder/environment.yml +++ b/binder/environment.yml @@ -39,7 +39,6 @@ dependencies: - requests-cache - virtualenv # dev - - black-jupyter - bump2version - hatch - pre-commit diff --git a/clean.py b/clean.py index 2672d280bf3e..2b67712e7c03 100644 --- a/clean.py +++ b/clean.py @@ -12,7 +12,9 @@ for root, dnames, _ in os.walk(here): if "node_modules" in dnames: subprocess.check_call( - ["rmdir", "/s", "/q", "node_modules"], cwd=root, shell=True # noqa S602 S607 + ["rmdir", "/s", "/q", "node_modules"], # noqa S602 S607 + cwd=root, + shell=True, # noqa S602 S607 ) dnames.remove("node_modules") diff --git a/docs/source/conf.py b/docs/source/conf.py index 74b9ced12d62..5fe57ed57a48 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -394,7 +394,7 @@ def document_plugins_tokens_list(list_path: Path, output_path: Path) -> None: # Example configuration for intersphinx: refer to the Python standard library. -intersphinx_mapping = {'python': ('https://docs.python.org/3', None)} +intersphinx_mapping = {"python": ("https://docs.python.org/3", None)} def setup(app): diff --git a/docs/source/developer/contributing.rst b/docs/source/developer/contributing.rst index 0889684ba229..3380d6b2c22b 100644 --- a/docs/source/developer/contributing.rst +++ b/docs/source/developer/contributing.rst @@ -97,11 +97,11 @@ All source code is written in `TypeScript `__. See the `Style Guide `__. -All non-python source code is formatted using `prettier `__, and python source code is formatted using `black `__. +All non-python source code is formatted using `prettier `__, and python source code is formatted using `ruff `__. When code is modified and committed, all staged files will be automatically formatted using pre-commit git hooks (with help from `pre-commit `__). The benefit of -using a code formatters like ``prettier`` and ``black`` is that it removes the topic of +using a code formatters like ``prettier`` and ``ruff`` is that it removes the topic of code style from the conversation when reviewing pull requests, thereby speeding up the review process. @@ -121,7 +121,7 @@ You can invoke the pre-commit hook by hand at any time with:: which should run any autoformatting on your code and tell you about any errors it couldn't fix automatically. -You may also install `black integration `__ +You may also install `ruff integration `__ into your text editor to format code automatically. If you have already committed files before setting up the pre-commit diff --git a/examples/example_check.py b/examples/example_check.py index 2972964f5748..5bc49b972c23 100644 --- a/examples/example_check.py +++ b/examples/example_check.py @@ -21,7 +21,7 @@ here = Path(__file__).parent.resolve() TEST_FILE = here / "example.spec.ts" -REF_SNAPSHOT = Path(TEST_FILE.with_suffix('.ts-snapshots').name) / "example-linux.png" +REF_SNAPSHOT = Path(TEST_FILE.with_suffix(".ts-snapshots").name) / "example-linux.png" def main(): @@ -96,7 +96,7 @@ async def run_browser(url): current_env = os.environ.copy() current_env["BASE_URL"] = url - current_env["TEST_SNAPSHOT"] = '1' if has_snapshot else '0' + current_env["TEST_SNAPSHOT"] = "1" if has_snapshot else "0" try: await run_async_process(["npx", "playwright", "test"], env=current_env, cwd=str(target)) finally: diff --git a/jupyterlab/commands.py b/jupyterlab/commands.py index 664840712831..2aa92e541cc6 100644 --- a/jupyterlab/commands.py +++ b/jupyterlab/commands.py @@ -1994,7 +1994,9 @@ def _yarn_config(logger): try: output_binary = subprocess.check_output( - [node, YARN_PATH, "config", "--json"], stderr=subprocess.PIPE, cwd=HERE # noqa S603 + [node, YARN_PATH, "config", "--json"], # noqa S603 + stderr=subprocess.PIPE, + cwd=HERE, ) output = output_binary.decode("utf-8") lines = iter(output.splitlines()) @@ -2328,7 +2330,7 @@ def _log_multiple_compat_errors(logger, errors_map): [ "\n The following extensions are outdated:", *outdated, - '\n Consider checking if an update is available for these packages.\n', + "\n Consider checking if an update is available for these packages.\n", ] ) ) diff --git a/jupyterlab/federated_labextensions.py b/jupyterlab/federated_labextensions.py index f5caac220e7b..9645332a6c7e 100644 --- a/jupyterlab/federated_labextensions.py +++ b/jupyterlab/federated_labextensions.py @@ -442,7 +442,8 @@ def _get_labextension_metadata(module): # noqa try: package = ( subprocess.check_output( - [sys.executable, "setup.py", "--name"], cwd=mod_path # noqa S603 + [sys.executable, "setup.py", "--name"], # noqa S603 + cwd=mod_path, ) .decode("utf8") .strip() diff --git a/jupyterlab/handlers/announcements.py b/jupyterlab/handlers/announcements.py index e94d68cefc5e..e98becf75f34 100644 --- a/jupyterlab/handlers/announcements.py +++ b/jupyterlab/handlers/announcements.py @@ -238,7 +238,7 @@ def get_xml_text(attr: str, default: Optional[str] = None) -> str: return default else: error_m = ( - f'atom feed entry does not contain a required attribute: {attr}' + f"atom feed entry does not contain a required attribute: {attr}" ) raise KeyError(error_m) @@ -246,10 +246,10 @@ def get_xml_text(attr: str, default: Optional[str] = None) -> str: entry_id = get_xml_text("id") entry_updated = get_xml_text("updated") entry_published = get_xml_text("published", entry_updated) - entry_summary = get_xml_text("summary", default='') + entry_summary = get_xml_text("summary", default="") links = node.findall("atom:link", xml_namespaces) if len(links) > 1: - alternate = list(filter(lambda elem: elem.get('rel') == 'alternate', links)) + alternate = list(filter(lambda elem: elem.get("rel") == "alternate", links)) link_node = alternate[0] if alternate else links[0] else: link_node = links[0] if len(links) == 1 else None diff --git a/jupyterlab/tests/test_extensions.py b/jupyterlab/tests/test_extensions.py index e19d60c8e353..9df368b044a6 100644 --- a/jupyterlab/tests/test_extensions.py +++ b/jupyterlab/tests/test_extensions.py @@ -239,7 +239,6 @@ async def mock_pkg_metadata(n, l, b): # noqa "nbformat", "packaging", "pexpect", - "black ; extra == 'dev'", "coverage ; extra == 'dev'", "jupyter-packaging (~=0.7.9) ; extra == 'dev'", "jupyterlab (~=3.0) ; extra == 'dev'", @@ -248,7 +247,6 @@ async def mock_pkg_metadata(n, l, b): # noqa "pytest-asyncio ; extra == 'dev'", "pytest-cov ; extra == 'dev'", "pytest-tornasync ; extra == 'dev'", - "black ; extra == 'tests'", "coverage ; extra == 'tests'", "jupyter-packaging (~=0.7.9) ; extra == 'tests'", "jupyterlab (~=3.0) ; extra == 'tests'", diff --git a/jupyterlab/upgrade_extension.py b/jupyterlab/upgrade_extension.py index f8b86ba2ccaa..77c1bda18df4 100644 --- a/jupyterlab/upgrade_extension.py +++ b/jupyterlab/upgrade_extension.py @@ -98,7 +98,8 @@ def update_extension( # noqa if setup_file.exists(): python_name = ( subprocess.check_output( - [sys.executable, "setup.py", "--name"], cwd=target # noqa S603 + [sys.executable, "setup.py", "--name"], # noqa: S603 + cwd=target, ) .decode("utf8") .strip() @@ -149,7 +150,7 @@ def update_extension( # noqa } template = "https://github.com/jupyterlab/extension-template" - if tuple(copier.__version__.split('.')) < ('8', '0', '0'): + if tuple(copier.__version__.split(".")) < ("8", "0", "0"): copier.run_auto(template, output_dir, vcs_ref=vcs_ref, data=extra_context, defaults=True) else: copier.run_copy( @@ -281,7 +282,7 @@ def update_extension( # noqa pyproject = tomllib.loads(pyproject_file.read_text()) # Backport requirements - requirements_raw = config.get('options', 'install_requires', fallback=None) + requirements_raw = config.get("options", "install_requires", fallback=None) if requirements_raw is not None: requirements = list( filter( @@ -297,8 +298,8 @@ def update_extension( # noqa ) # Backport extras - if config.has_section('options.extras_require'): - for extra, deps_raw in config.items('options.extras_require'): + if config.has_section("options.extras_require"): + for extra, deps_raw in config.items("options.extras_require"): deps = list(filter(lambda r: r, deps_raw.splitlines())) if extra in pyproject["project"].get("optional-dependencies", {}): if pyproject["project"].get("optional-dependencies") is None: @@ -339,7 +340,7 @@ def update_extension( # noqa if answer_file.exists(): msg = "This script won't do anything for copier template, instead execute in your extension directory:\n\n copier update" - if tuple(copier.__version__.split('.')) >= ('8', '0', '0'): + if tuple(copier.__version__.split(".")) >= ("8", "0", "0"): msg += " --UNSAFE" print(msg) else: diff --git a/pyproject.toml b/pyproject.toml index 2e35c2119646..59c4b56303d6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -115,8 +115,7 @@ dev = [ "coverage", "hatch", "bump2version", - "ruff==0.1.4", - "black[jupyter]==23.10.1" + "ruff==0.1.6", ] [tool.check-wheel-contents] @@ -239,21 +238,11 @@ before-build-python = [ ] after-publish-assets = "npm run after:publish:assets" -[tool.black] -line-length = 100 -target-version = ["py37"] -skip-string-normalization = true -extend-exclude = ''' -( - .*\/css_js_injection.ipynb # Exclude integration test notebook -) -''' - [tool.ruff] -target-version = "py37" +target-version = "py38" line-length = 100 select = [ - "A", "B", "C", "DTZ", "E", "EM", "F", "FBT", "I", "ICN", "ISC", "N", + "A", "B", "C", "DTZ", "E", "EM", "F", "FBT", "I", "ICN", "N", "PLC", "PLE", "PLR", "PLW", "Q", "RUF", "S", "SIM", "T", "TID", "UP", "W", "YTT", ] @@ -270,7 +259,7 @@ ignore = [ "SIM105", ] -[tool.ruff.per-file-ignores] +[tool.ruff.lint.per-file-ignores] # F821 Undefined name `c` "binder/jupyter_config.py" = ["F821"] # RUF012 Mutable class attributes should be annotated with `typing.ClassVar` diff --git a/scripts/ci_script.sh b/scripts/ci_script.sh index 7272057148c4..9d7d60b9dad8 100755 --- a/scripts/ci_script.sh +++ b/scripts/ci_script.sh @@ -81,7 +81,7 @@ if [[ $GROUP == lint ]]; then jlpm run stylelint:check || (echo 'Please run `jlpm run stylelint` locally and push changes' && exit 1) # Python checks - black --check --diff --color . + ruff format . ruff . pipx run 'validate-pyproject[all]' pyproject.toml fi From b9bc3002b1ab89b9a1c4d2a3007c43275d11e0df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Krassowski?= <5832902+krassowski@users.noreply.github.com> Date: Fri, 29 Dec 2023 16:58:15 +0000 Subject: [PATCH 8/9] Backport PR #15386: Improve scrolling to heading (#15565) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Backport PR #15386: Improve scrolling to heading * Fix scrolling on active heading * Add option to scroll heading to the top for notebook For editor it is not currently possible easily * Switch to command mode if we are jumping to an heading in md cell * Add tests * Add doc string to new attribute * Rebase follow-up * Fix linter * Update Playwright Snapshots * Revert incorrect updates --------- Co-authored-by: Michał Krassowski <5832902+krassowski@users.noreply.github.com> Co-authored-by: github-actions[bot] (cherry picked from commit 98d1e06796906ce622559146ed127075a7a46f71) * Change the `scrollHeadingToTop` setting to avoid behaviour change in patch release and add a note about upcoming change in the next minor release * Update snapshot to reflect tiny rendering change --------- Co-authored-by: Frédéric Collonval --- galata/test/jupyterlab/toc-scrolling.test.ts | 32 ++++++++++-- ...led-to-bottom-heading-jupyterlab-linux.png | Bin 38923 -> 38920 bytes packages/codemirror/src/editor.ts | 6 ++- .../notebook-extension/schema/tracker.json | 6 +++ packages/notebook-extension/src/index.ts | 25 ++++++++-- packages/notebook/src/toc.ts | 46 ++++++++++++++---- packages/toc/src/model.ts | 8 +-- 7 files changed, 100 insertions(+), 23 deletions(-) diff --git a/galata/test/jupyterlab/toc-scrolling.test.ts b/galata/test/jupyterlab/toc-scrolling.test.ts index 8e32ef167818..f9ba1c2bbe79 100644 --- a/galata/test/jupyterlab/toc-scrolling.test.ts +++ b/galata/test/jupyterlab/toc-scrolling.test.ts @@ -36,18 +36,40 @@ test.describe('Table of Contents scrolling to heading', () => { test('Notebook scrolls to heading', async ({ page }) => { await page.notebook.selectCells(0); + await page.keyboard.press('Enter'); + await page.getByText('Mode: Edit').waitFor(); + await page.sidebar.getContentPanel( await page.sidebar.getTabPosition('table-of-contents') ); await page - .locator('.jp-TableOfContents-tree >> text="the last one"') - .click({ - button: 'left' - }); + .locator('.jp-TableOfContents-tree') + .getByText('the last one') + .click(); + // Should switch to command mode + await expect.soft(page.getByText('Mode: Command')).toBeVisible(); const nbPanel = await page.notebook.getNotebookInPanel(); - expect(await nbPanel.screenshot()).toMatchSnapshot( + expect + .soft(await nbPanel!.screenshot()) + .toMatchSnapshot('scrolled-to-bottom-heading.png'); + + // Scroll up + const bbox = await nbPanel!.boundingBox(); + await page.mouse.move( + bbox!.x + 0.5 * bbox!.width, + bbox!.y + 0.5 * bbox!.height + ); + await page.mouse.wheel(0, -1200); + await page.waitForTimeout(100); + + await page + .locator('.jp-TableOfContents-tree') + .getByText('the last one') + .click(); + + expect(await nbPanel!.screenshot()).toMatchSnapshot( 'scrolled-to-bottom-heading.png' ); }); diff --git a/galata/test/jupyterlab/toc-scrolling.test.ts-snapshots/scrolled-to-bottom-heading-jupyterlab-linux.png b/galata/test/jupyterlab/toc-scrolling.test.ts-snapshots/scrolled-to-bottom-heading-jupyterlab-linux.png index e0da0d5e014bf6f11bfb9739cc2439732e290992..ace6b1b01108c30cab08e9b9970d35891bb32db1 100644 GIT binary patch delta 35261 zcmZUacQl+`^zS2xAV`SblIUf$Xi-CmXc29c(R&$$L@$HrHH;DjAtBl@qm14=(c3Uu zln{*G>mBd={_ef&-nC}UpU?R`-~HX^S!eHkqTzQV;CJC$cX0@yn7fJ)JgY}f?}r3V zZ<5s-qxE#>q@nnq@iu*#64SD_OE=2q4|T*222UVtQ_;*;QuABQTdl`717(!dp7zIJ zCU0buf#klUO+}7hqs;*6@PcZ3=QPrEkO^!B`YhtZRc0$j%+bs);+r51$(eqn;@cr8qPCNGueh@y9#+tNN3?r-9f{<73QkZ#P) zC-Z0qyzyfH(0!727j^zBW8lZ;^$*71wW};M!j6+*9YkbZ*HPk4agpD*k@_>K zV>8PG(d1hEFYp8+x5^a4knE9Lpt$XTqgn#Ou8y!*BBE_2PK2k!sT+CchzMix)se*F-iZx2G)4 zj=@*v-hie_X5_P-QG$$jI>|@<(fa~TOu@*0U6n_5fj@J0!N*CZ<}OF$!^B1`|#}}j+AonCx^29M5M!VdLbx<%;i=~`u*o;{(|JN_S5@B zwJKSRdjfnZ--G<5nI(Fd9w=c-5lRzmCpe%(LAJkyheaW7;yxwgUGr8ea}+e_OwKLp z{jKT>JDct}b;@wR=g+&xa^DGVJ9b z?|U11Kaxjp<05ZpBilgX->B%5K5z{p&X=pMbF|FLZ0<&hKfDhz8Xw&7;90rJ*53{T zFvY)n<4ERX{`wtwk68n>*{KK`&|upUyWeTZs9;GF9ZQ5h60`ldkEDmBNiRr0k;uK6 zg^;&)cHVS^KUEkE+0?R>N0pSZR=9lap1QzfJ7QN~E=oO#IwZL;$gDNAt$Wd{nP6-> zW5P0B%oLtWdasR&S|g4uKHJNhUWGK+=_tyojNe^-;MXE*si;io(mY}A`T$m?xi_Qd z(-DdsKsmnyTcKn+zT>9vXg5Tg2=>s(fHP>2)icuL-v!O#Fukp8J)KXEqSob$aeW*tRl89ljodD77_6wh#tGNr{s(_MA$69fWW+9*Md z+AcgAMhI991T{%V3f@`ESi{X?tu&3;BPctb3*Kwat`cf?wX#|pm|RL!hFq@)gbSD? zoxA#RN?HDWd*X2&X69@CQEhy8p@eOkYrez4nr3I4;`gSnCc_%O6+ZvGt49bwch#L` z{<<)CL&eu#SMZ2ZSra;jG_~df8J4;uyJOgJsMUAg$s!blPhz+qebX1TQjpX6F|Y64 zb(J;CRZ`ui2z)ztd^NI36C$=JUY`BD)(%9r6Vztzl$+g$m{iRcDxIjXRML+xnklnd z8RkoA9ut*f3uiVtUlGI@4wiPQ9GJ>drMk^Z=q2{{r?ZAFAOExjA@r0f9-yl}H83`7 zC33J6ibO*jq?=l5k|$>H2#~{dww)hFh&$?#j|ss!o~n|e7fM|I5S8o~15-Y_XI7?{ zKGuof;v#GZ7WE~NvL{E#w0-I`AFqz$?%jzVR&&jbnUDfP%Hrkad|j>q15{C@?>Z{Z zn{?TBY9KSlwVtfxRkW#|_|%1D7w$bqnN(W$NBl$?`fl`DBigFjmBE%=^SnmTbhnk$ zKqg&rj*Wv4wT=0UkkJSYzRWo< z%LdMKzLcRiTV!Xkk9T_72;`$mw6##Am$OEWd-3xd2kX=rV?_(e=2x^=(q=J7mQl%o zc#*rQ!yGi(uT%F3hCY9YJNX<8u%|rEjt=PX!j*{Hd;L?{D%KOd$IZ!+L;AR+z98>N zv_48lTMm=AH_7*B=0H1McF}H%D?uL@w$xTe_-0?*61n;Bh z^orONlBGm&+zncT6+1qI;hbz$QXT0Br9P#j*nQ?^w;R*3alB${MRi>X@E*pnF!Y-= z89f);57pJ1gEL-}U(Ee^zS%uBPq&3&hf~_|cZrR-Uh*UTQ~tx{eQ^A&*cWYS7azYj zM|B5@&7a4cCzIkWDTj-b8H7wBHU>84ueq*G2XcU)P`KOHU8NT!)Z6}f?Z?p}`$T$`6ddR&u zGlI`GqGSXgc!;{zFmtTZRu02Z^|jM}AHRMF0xK88Z;Z6~teDHQww_eS2fSQ*w&}6{ zEC{Bb>RdZPfJ*!@iW-M{?!DafmH>FTNnh@k$BED(Z3)Fci6fyU%rB^r<=#TO_Rn`8 z1ot?EIjJvgQgavmt*!Y5y(D46>4DOdD&Vj}%}819FNFcN7Q!$`&}dR&n!=qAUzLxg zW6gbODHCAs;4@a7(N07oJ#>on9V97sU*F|#VPQ9l%^;c!-?q9jl$d(OxYz#Zg_-Zz zf%Tr#`AR&HR%yup1H%rHvB{yVk8*xougJ}Z+UC^;kFkFj3JQ4dxu@l~w5CL6d(LBS z+;WUbBAzOy(Wd1G>I~jbMs1V0w3cakQQKZLSMWvgy$4&`WTL6+^~IcI&RWu_uRM1J zhaUL}#F>L0RWmGjm4?Q_Aj@aJK3fVIFC~KIR{ARN9f9w`Cobfu(t+wFKIj}7J!f>< zZam=; zu14)V(dK%kQz%~M>fUt%^KLDsi3!7eA)(Uk;Z!H)`aO~F)U;f~H>CRQLOX(SLDfuk zS)g)o`y$F6*R0>S`ezycQY1_Tl5K>Tc#YR}yk^?~`>B7h)F# z=Jio_{Y?aC>>Sm~#Ni7hKGByGHZ7qYb4#TiCh+1WBc!+oqPPcj;CXPLS*=99 zZb;G!Dq|#%cLHuSfQA?;<9I*^ji|8yt416+2~ZMa36c}{X0biX7s{WnDwhVKI>w?n z_|Rx$8KPM{1e++&;N@N$bj(;0&rx$e6v|-ogl2GO{;gQmi2!D`g4&bu2S4WMm$bXv zUngh`g&xs}7>|v*6EtL<9Ezb}#}R`*eym8H*dqFCQ?3j|0sdIgYoW?@!I!*V?fC=x z{;?Zpp;lQ(3K%!dt*2g>i$}0MMWOJ<|3x)mc6M93p@Gm+RYvp75tY6KC8A`bv5x8{ z3gAL7#Fn@UexIlXEIf+jH^cy1p=4&Xf?ffNuh+THwS?QLR*WT)pVjd}Pdminp_hMg z<-`CvY0jCQS}b`ck$~xYLaV!O&QGBUl&Uzh&^byG#(PUBl|sF4DxuXDWZiI7T9drT zB&XB!SM8!JZw;U)W>4^40+GIXPzLj7cQdo0UQ_}Qo!vv4^U*A-4;tAf0rV@zkr=2# zr!?8Ll>_)CxaxBHUa(WTVENJ@4Our(rBMR;nd>LMa>Xll!ZLqiM;Alqh|{R>bXurpC<3_V7Dl^S{D-LVzOW|6pKvq?Q^QxY0HMm_ts*xV zhDq}{bvY^rKC@`mdAnuIwaDD~Jl4dG*REnHlV%Mm^VgrHzZ*E_s@CoYen?vOD3%#KI1(K`~08vv9vb#S z{?;j7brlm@`a(uqHkf4(e$V^=?XXSXLPaK(Qfoe z!Yf#I=!h#3lK54ZE%g?S;Lw@OhZ{IdmCioeWeTu|1WU`KHd4wT4++X-AKFy0doD0C z&z;W+QUpHEn}iqOToIiuLfkKfczGa9(DUwL!^kyaBdSK4WqR{XBc@^Ls;BJ-qnw2n zo4RSWX9IT29ujO^Kf_N7F%rnhc<|Db&&qdGdp~G8t8{3GM&%EdI5};07??N~(=JO| z1s9tdx=|$yz+ncF|BAclChNQPKD}f8y%7ih3WF?q_Uc&#LK= zq+-(4d8UP5lXzb%B{}5Vhp3<{-z9xs^Og^x<#)>+hfmUb3&Y*@`*frzjh5mrpPdurrQ6fxjEc5Wt$1fWbnbff*3G?H zQ}lmieo(z%`pAZS!&f*A3+k zf?02m9BNtHPsd8N2`maN>UFHM#xgX>Yck(*5Na5zii*Pyc+M!|_`3#~2{mgJ~2PQc{up#HA0E=L0Ry@|<_C)?l zfh8!Bfpn#s=cbl`^jTbyFBB;(O;SrwwSaa*|ng)I6tduj9YrSnhh=Pyz}o?q4`$TQb8AsCP~8g88En#KUXqn>GV2T6rm zqK9aLA)&=_YvF32#ab#G-mx)Zquu1bn9(>X@^@O7SMf7wvW;~qpIUP6BRw)#=eatI zRhk*`zLZ9Uz_Q|7RwVK@lQdXl@ACM$ecsIOtUsV`qJ9Z2+OsJ44{Ww#fKSCcnAfj1 z)in#CYI4Qp{8|sF@Bk+o;VN7!-#J+<1o?1~F?R>M4K(5)PY|NLj(}a#2tivERTb*3 zOW=RF251Y%mK3~3oGxSc2Fq{!Lf)+a4x}1_dZt=Go8eT9s+zu2j4E<=|7Q3}!rzZ$ zPN*oY0p8eW{fBRZ|92|Qe#53x$W8rIGaU{9WH(kyj8ax&Phjw~uXLesubmVsYu4v% zN-VcbYTd@!Z(?am={`EC{T@1;?yT{d|4^pa;=spUK>NR2yAm~;)ZhrzEH{zw588Zo zkDwH}RgT!`sM|ridzMyT>}cRSW%#2Xj!dy_k2!BQrX1mRrRaM0D%x&SqBF+G8=VMt zif?E4%V&>fo*GeQ1+loJKoWZS4*4e@SUZ@!!{0bi< zp7Lv26e$E#i5U-4G@bN~;2}`rn}sYzn_O%}!=$6y?Uxszb?UscA`9nVO_-h_%@#x- zprgVp9aWPY}u6#q0+@DS1`fr^!c)@^#e*Vt61;h(Ym`(f047$UJYJBK4md z+2dWZ)%S=qtLs?K9#8WdNf|tnm)$n<)&}NLp&(IVFKL0%Y}$inQ>?EkR2iCg8Rou3 z7Q^!l%hDQ3l2gOx_LfHUfu>0KK-}DY=^)Ezh))f@*>b5c1;1fIn;)l=6p{&l9}x-l z$2%-o@cJ1JbtNQJei0T{3}1c8?{dRKkoY}}s$adfYZIxrWgyw3sub)zb*%s(N@#83u_9v#-g5;U^27li>6xomnLLN7 z7p0_9)qh$VDL>z5xYYf1QqJ*SO#+#vObMwT3qSafh9dky@YssH&cFDp)AAJMV3h=c zI>KCeE_I3rlXj(4*PH`Z5ivPw^tq%Tv_6vgV)+}n+~*ghy&*ND zH?(LzXS#);5|sf&sQggdz0qj4v5tM?v4Xc>qxT@oed5Sk{k@2Bp8)}!G)a|iswk!Y zjs6cQ7XfYipMQV(2xfuxx;;Jn-l~G{@FqV0iQ_RW3gfqVXQ?ScT@VamEgII0kyY0c z&7&*3Fp>T-y8KPBZJ9Fa9XxkzgB22Vf0PL6;6YD|taSVB6AUQ04Z~B2Q?$?W1g3W* z!QdT)c6=g}iHvL0Fs=Udj7s&#t*w?1J>R@l;+AmfvbuC)y^(m5-2w#W{XyN@Y4TtG ziZ2UIM6#lkAHc8`)oFd$lo~>}Up0D8ZqLrZ|HZtjOd(TSuSn-zkEEKs?Mnp;*7uoSP z7{e9pBqsF2r4>ObiDS=UnE48;`Bmbt4WqDg(wAfw%uA4Ga4zF1|FXNF?LDG+as3hd zIKZvYh92}>$htmmgnz$}z;HTi2*f~-I<;ghu%Nj_@1Zp!zmw5^e&1p2{h`(x3|!5d z1VKD78RYME?!~f#I1hQ}H;ycN`63yG9WJ5zt&^h4@8A=Cs{P7$`I%rkrq`iK(P6K` zET6f45teHTwAVz5#E`YI2JI-M%mtX(zpikZ7Wuo(jT}y*0HKmfH=Fbzg33=^B|ma_ zb;w1%{Q#ExY?IuGtdS1Uwyvb&{G=hOj2J zn$WBk!4cV?qN=-)JQ+Onx?HG|&%O&sQ07aYZ*;VrL#%I^TtDZIHMEG_A1x{Ogth|p4A_v4V~vsYFpf2X^STmNu@;3ZYZCOvnMS8K zbUy#@pWDy_;+Y&6v-O&SD=c~`9=ZBY>Gg4sEZzHJ2YJKY?r@8mQXR)R0uKdXP;ITj z`l>F0*lo}7Xm#wGc9=q(o$iG+NIF^3B@hPQVSL($j?U~kypK=otPATPLjL+0YB4&T zgo~AQ?yLJ;F%97NZP4G0*lR8t{=>=AeJpp`tcv-A(a6!;tQ`vDX>YA=;6MN~1y(Zb zW>AyP^C{FMG}_tHqDHi({{7gG73dS7G}^l!so2MSG;P_Q{JU96R1_sD1I;2}giyrZ zN7w1*G{(EaZSA^bEsb!0B9XyO?pMd}QiD@lRjTLfVHbAh#ng6$&Zr}wi}Oq$%;jB) zcg^#t{xH#|@q2t9f4NNwfbFHT7g6M(sYY@~Xe;v4r2~j~_r1xod6Rdp&H^;@13|*T zhXT$jfz7L4$74#@Rd|A2EH0fPbxXw#x^_EF+b8S+CEySLRGwcV6l)(5BMWxr4bniR z`TOJuqX%rvksbUR@QD?`4;i8g)zCYR6?%e`Fi;S{uK8nl`O40@`6FXUgRr>J3yoGP zmFaz^S1upz)0$YKbrn}l6G)p1^<##l*DwtRlo?OWDBmOj7pb=_Tp=Ae#Eb{CdCkx3 z*(e>V}UTS=65FiB7>hp~@EX)Rt$i1ZjIYF-~ns?4viA3-U9Qebd*02>i`z_MmH{4+N91? z-Ys!1OB^l%LH>u|r7bnI4C(8k{kvdWgb3M?1Y1XR0HG;d$lMLsLy)&bN4|xt`hH8> zvV9Ti!Bb$6!e9J=P~!)EE{pQrm*CBe4{qA0qM)ZHEmS^tS3@T%0H!~@n|-A}Xk;4o z$R zea%~~*h)-k?aYOI_iQo_LrM*H;kp%e^c@To2OAIQB~4Cjo;0exi|IUNmnb#sSH;?b z2jws-)CtsSq_p7C2#26_cug{2PR8|)PJrkv{>K;MOD&;sFOVJ78B*k%p${BitWsBE5P>&!Odm?$Z z0xH)}qDrBY3hRLJ6ZUU0S&OIQ{Ow4!M`lhIL@!1lg_8g?o=Vg5SB)z!YzCpRMJ>Rj za%<_7#u0zkD1a$t2QYyY$;E4;XdXF;Mf7ne1V!CS*~%AoE2VxdD@$n%FoJr;Xg$&- zO~WKHK{5S=-l-eN)c#MImhLGsFK0RI_my!;A#9`A0z^48SJ3f7d01gI>z7{+1j%_K z-^m(ORQT>$N@UI_Wr|)oI6lr~B+O>6jaAML8)%O2$)d5YpgCAHclJ6 zcMqkV)j9dix8(1Sjbd(HJK1?i!1iSasfgDNJF=A-CKQ)-@uxS{i?9!0%t5#8jFL_TSeK;UntnAfL7{PdK&$depbxvsknZWK1>jo_=r!Kl8m zR+8Yd#|wq4Q?{aYdS#>SYGb_ge7 zcu0;IA1bP-S{}Um_hClxj^QELYi$5ft$cJ$E-TWnyXd6MvrFuO_{We2+aJN^G$CJ! zrAH8X$w8~n1}?5-*cz$_{BW`_fvXTgi|I9+d&YfuH(b0i*%CDW4#hR z#;)jsmomN1#)fMopU|Bo@RX`7sTc)2UR27dDl@97nK?K^3b}CQb!68p(-)lPe)*it znOdyH(Bp6=I|lRpG1*;oY-Sremdp92Z7}u$@8jubDL%m>Azsk;*bhl0gdJJ8VO-C% zMsDOy1Xd%^ESxh5wk9dIq2qkBH!|~M+fe?5dh_TC`Apdm4~5Iy)V(d!h6>&=R_c7- z6M-k3|H*2>iJlUqweX^#*u--+$&6lqqm&t0IdKsIbAGYl3EqUQiTQv-H|8FKYniqs zp1F63u5UC9=2L(=RUw`hphtM<^Dy;5mswQG6d5{-Jpw>oMcfJ@vS3dQV`{B=LjkGO8)VNXgpR|H)c;ZKz%s`maDkNDK^tGyv)7|o?zLMtp zU#r0?cIAZbr^;<{dUY4};SmW_igR`ecMxB!m0&wY!X4Dp&p`o7ftA14Q}K6Sjf!d_ zCXW2pk=jEpC8*#6b(wFlET_3&D?f!?H7ifZ_Vb8DwC;0shTB$N{GJjN?yPNdKvGkNQ3IB z0K{{KR!fX-Q5g%bxc7a$t>>t0Z9%48BiRzu(ekR`P$^Pna`oQr*JNB$`={?+k(7ji zovajw{%e(~LngEC@37n*DSifl;;c>-lpy1waA!%#(dFwX*yAb;sxGa!g5dX1_~C*= zlaAb@Hsw9@oz%&unF3Uiby#QsySPq=({EuAzg(|8xvwF93ze1Ij6n2Hy%+GyraTR+2*A$QaK7Y~BvbJ^^s^3}A91oSLRDGw)YZCg%$DjLpY043b{ zm#*O#6giyU*6NA(2CN)@`t)xGCu+l|Y3nxXl_(-jbQ~-r&4}*&L%8KdePSVuFC<%j zCDSV;3T7xL@XBKIVRh}lcsF#&{F?J`ol!i($ zFv%ys-UgslhOk~*E*~xu#@{np?`zV-Ni5ixe|B{OlfAq1(4o7{J(D8J zL2zAm2%+}bC)9WZF<&QFx7obpy19{NvoEks|g`n?I1P#)ftgnk*j&6d(% z2d~_mmx|W^TO$rw#eb zO3+J{x+l5A-BL=st>XBgG}e(MEwE2dAxpgNZr#Y|JNjxuITM~)ev4X=)-lT!PrUWM z260xD)rL_JEF+6-&RGJR%Ot3KSl_X14%p!|QjLbZzntu3wbFktTHzPG%={? zv@gbqQkCbAKZ(D5*-4d%r~V>J{rL-1);m;VY6VA`-5!VM-E*H89)06ESo&-R#bLoi zmijcUdyKUnGe0_VZB`d9ykYZAvb4$X4Z7{4L7&JlL#{x}^To2o*+Vy=Tp(BJwyU+7 zLXxFUzg@)w+xw};iszvUf80@S^?*|A!RKVX`4P8@1P1~77EBJzhrrY`ip;1 zmz~{&Y~DeYYt;O3Bv8>=T|}`zdpvqP;do-3lxk$Eq zc)qdu{q^13wj9bA;d+X{y1hn03xD3eLT^T3HW12#z(40mW@fsf8!9pXv9`vYE0*#9){x0FjPmv+qK^%3k6Yn$Za@8E~aF5-U$1wHOSG=AR3T*fx$ zLMjC)3Q=j945~@?qRNYZ_+lb_#w&preptt4pnAYcKDj6nS z?G>)-|IEA`M~%`U|LSpbuzdiB*7CeokaP&f^AxYf_`?M83u1g7*mvGySprl9-jtVI3MCbp84sji{{ssO*oneN zlPg@0r@W2|y?%H|HB}%Rf2wPcp_A!>s*;1xMP9=LNSV8+v-ZD5@M3U)8+N!z-s5on zwU%Wp7})tjx?MDW{Cz_goKh=}<`JfVLV8}{aGYdIEv{6zfA1skA36(Fy!;J#W}9^~ zDp5#o=eR0B4YI7wS^uYq+Kq~+px}FnnJ>@c>qBSUv0J_(elwo`@Wcg>?-?QNF0t{E z1d`9p9e9e~N^Z@}ASkPq`iLP}j8_%scX-?@olvFul-ev#lzG#$$Pjbia62{*T4dWS zB}*=2l}PoKwdq2ogRR>~m|^RrCL#TgxqL{3lbD+6U{Jj5zoCUeo+0xajr&Qa(&%@d}qTB zjljGi>j7#SV!ILaDi)j5TuKVk4ieP>xTrg;(p1sv3@Fuq?H#FdsI8&^(I9G^ z)XDy>+}H&E&!Q0Qs#xFRRm3?3#=dzUOKoM4bFP(;Y@AqVT>?wMzOCtiX>>qObMJ$R z(M!KW&1<&RdnoExB{>(Di>)`W-&ST-p7!{>;#>M@s_8ysKQ+qPm!0%E+cZeykVnff zjm0_e2pzmfpFy_Pp!|nrHxLiYY7RQ+IE^aT%;Gh8qA9`oUw}k1SWjIfpq67r=2Drc z;7at`K(Sal)JZf@`T*D87??VNO) zV?3+WzuZnEV*A4CmzD@xMw%OC))4w!{!ja&W2P!rYpliNeV;^3 zGe*h=Ub0j|KmX%cp!lnN!wXnCJQ#!jG3%O1;Prg|3skJbU zqB2Bs#;V;!Y)!!WXGqMMv65R%>V<{dG3FC6k#9TgCpaW|5IxMC@ zw^|w3th+)#!{>{6@wH-5Y}2z4I+kRy3C-%*L__iVLbLjO=B^t<1vsVdSNHaeaV8*K zx0o;+qEU3d>yONibv2YXism2&?`6SXL5{rCzd9Ycb*4WiF%;#GRcqIr^GPjfBEBVW z-Oa}d&6AGob|`OXMia>rgDaGc%dt&ra*#vh=-~N3V|?LcVJ0k_f-GhpI<-Qok15MS zr8WA2uezTk)uDOu%jra=(S5hjTo7bioUM!Z^)ul1$a1`opKE9^plT#r#go<@&B+y7 zfi2*&J+dteGo@?iAp8+k;p_!%2f|6-se5UX0iKq2LZ@C4qW)%@sB+_jtNsu05G-zE zvVTN9*Vk7{HO~PM<08b<@+Cv5v;ik&pT7Dk@w*>DjYbG|MaZX= z0aX_0dth}wDutTroJw`VkY>Tmt0J0OQ-9_aJA%6eLad9#XN`!MLTm?2wf9 z*_7$^rYEQUVFy9$0<~(jnM4XlT$VTlgK?D zRMU%JGRiIdZ`Dlhdm2HKRfPnV@Azi1<4WYKIp=I6J5qq{HpkUj34y3A9$wzddzjPA zY$wpH7MxA=+$})aqgWJ-;NBI(0q;3QlMsUnmbQc&T)TRrBrT=n;D7^+hiU{+DsAD; z1@Vw_jqdXrh{#DVHkas-->eTtd$wl(6gW4c(K{Ipv!UiZkpIkS|I*w(2xfAcrcT~N zzkM;+P_F~_mB;wpbRDEU?JiOBZ3neb{<{23h@E58+N0a@_Q+QL_`vpxmA$%rThy$- z$XxpZH1y^rc-rZC@erD7yZ?&QLJG)1c%4!6?B9k)jMoVcVnXLQKL|i5RE^yRGQ-50 zApZ;(T|YrBRhzi~1AgQAYCb+^@>mb;_sic6Yf?T%VgM-Vbw2e|Y);j@SGyRlIgFjq zs=9aU0P=VGhGxao0XC^t3c<3`m&ruP&_~sa_w=#TdMu6h37mp0lK0M^L8)g)xlM?D zv&@MZH>Hd(5xsTjKtOTWfc2IOfThaPchTNdVdy5M|HgSy)Tc9%F5jF z+Prv*GILyds`yA{)}`DGYN|#H!A|C3hoFQ}N~8|Hd2hAs7wrNGe>FEXX8DtnPf#qq zGx_Yn6xe7OFI>~p&XO-IE_dQDoX&|<;3lDIy+lh)`b<8v^l8yFXI650h?MmE>7t8o zzlMVE=&@_E4OZPdqL0mwaT>n=XF*hft62$*Yu6QhG5$RhQm1exZFyTG ziV9;}zdQ5(&$`0Sv{FE#fTbI_e|loEox86TU&&+Z^%vF%w?WpHz|PC%2#*_&-Q{MLXz4Z%+)lFEScs>2KYYmxV2l1ve6f2w({?z__slk7WeWopV&%U*&4m0sg zz@n$H*EqhsSVLZp$%32`=>4!Z_E|?mp1>em!x8{>97>x%?uf%eBl|q%@?_ zckPrRjtTt4qhNSsl~`VE_NIK`YSk9B@D-ZTR;?@soQe@Cq%!IAOJo*AwfIQlflThB z%@O&Z$9!*k-L$dn1v^JYCo}W9=j3&Wd`|O15>Nt7(ZMJ{jwuB-I>m{U;uq<~C650| zc%#2l^L_nrE)QbYXhf7=wqbpMc>L)uf8?=3p)=qNOU_Zk%e1W$SsZ*+XMFi5mGIx=PlvT^z$A{;3S;>&bXXBiEe1 z@$<Tf+p6GtlDV4l1T^xOiYcTnr6(`_4^IPFCdEP7<(&NfKm*awl*`wl z7^_i1ox8WR%Z(i4l7tOkpOXlfQG!L#hxI!9yKx;Udhs$rFD3LCjh>Dceb)+h6_hBf zZ)N~Na;4On{(n$nb4lJw$E@u4Hi_l8oZLYM(op}jKF>099`cI&>{n07RKdQHl7!Fr ziz#{%zwlP$O-H>g3T0b^^{G*|tIibtz512sJ$dm7bq)pN0^ z?#tG|JWq$O*G@o!@>x2@f+MvhkM+U&M}1=WZwU0-Jyvwwb%ak+BVl(z?=79u5!@4P zs)2x8d-kygh1npSWBOSPpMy8R9Mn$THRC6>qtyGWgv4k|sV^m8f59Q49dE#LOp`nx z9Z?%lyvAid#h=+(Y^g+G5q=P@s^hyA)hEIS%E2j@U7pHF{d0IxIq@tx*!zX;@d@7p zeR95QClh@pKDEl%1P;>C8zaQe^s)f@?LToB7adSdnb?U3%9yA>*Fp$gGh*iw_285}VHrgNO~36tbj3Q|`ML3vDJ#aGa}l^AyTAFZVX{$tyFEJWw8X)+ zchR0kaP=wEOmfg8%_EJjM#3ht$7n50h`ZJuu(APK+Y(HiH}$5gh_sLAad)za^aj+i3M-kY^xOb=6)zFS@)_@v4{-y`iOii5#_l=E}CXGXw(Y_RZ%$&%H zv$L}g?J(w4Tr*;8C&V-825Qopp~GYr4!A+XVTBDte~H6j6^QUKr!MsIBfp0((vSmI z^W;=@awCOd`2apDA+G0!wQ} zb$>~i%Gur~-4FA;XAD8s`F%^RzDdUI)qE9=Yr(U!XjBOcKM7pV>d&8i6Xf6D3FLgX zUM`WePZ=&h`c3Th)UtDlh_YE5z?f6b03A@v-mkiitwz47$}NBc@oC)(d%9r-H3|a` zg({Bp2@h2e63RV_)4d2%$r@MlP4?hX3t=l~RckHt$_-mk6a>aeyvg@RUYR})<~*a) zD|~zF=f6uoKg>4MbX+C<#i`sqDZ$z&t4AunHa7{|E(I=;{mvZ51YkvGH_e&OqGp8? zBhft7+FMwB(8b2PK5Ej?A95}+B^O_RftR%{-3`?h~|K)VONQs6K zA&)0=lK2^-lJ7MN(zV4-AlT&84E!O@-+DJtGxDcGSouuw4OXd z;Bz^Jqj96X@?4XM##axBBp=5Tfy5r^SoAZH+f-u9;UZ~wEJ|@f1CkY`bL0gaAJw3_68k*pK{WY3i9QdmLH=b9wG5X$t0r4T_^UT-&4Uz?v^$jHjCwB?8 zc+&TuJ>3t`a~`^e#ZmX6YHwH+9BG(Y-MI4IJ;|V1&SfmfVS+lLkNgjjvrTMr9Y9Tc zR4vw)p|5hFcvXTC=p0EdBunS7M_5&{qINkI_p=63Q$j1=a6-n98=Pl05(_E*Efg6N zd(F+&JEbhD`ZJ)ijCJ!Z>r;f?^$vp)SnH_ogPa$Llnr#~JW5IP{C>ZCLwDHq=DvBF znQAD=hgs!I`FVgGG>^>_TL~HsG0-g1`^WijzxCt+<*DHly7nZXcTvWOi5$Bal*6-v zIGBJT)KHm@BPM6t`Rx!;!}OH7d?~-lDuTM;rpEb_xB#%S}>Wf?W`rp-iW` zvW+7|6(vBN=ku>o@%D`z*gmo$)45@(Z>dxeJV=ShvFoy)^e&tZ9&j()9_i}wU49b( z-H~yXBRcSAm{Z?xB|3CIuxKh#CE(GNpCyr~mty1RUrtKL5BBF;pz$hpG@yzl=Uv)Y z%+Hbc(7tUcn@hqqlYqy|^-wa^mpHM|cdAMdp6J1jQ-#f18#5B*2?eOs{S$WTW~=T) zx6CS)a4Yb6CJy?a@>!F+;g!YxG~5*pm7bxp7CnEkBCVl6-mdgR5rj#sdI`q3kXv#Gnkztd~@ zqMHDm)W><;c0kvU*a7)K01IoU+?Khix?=3+4=>(CR)C`TyC=>nNNV)Cn zjz%*_SI184*@xg_>OnvEtzV%K-B=nlj@`sn=kXl}>%e+b6yH@;$7q}gRk{d1%# z3spcECMO0sze1VYy%1|hKk3jzDh9qWx{_C7#R{23>mM{o~!&lT> zM9PKK{i>X)2NOdqkN;O`?->u**ZqGd5k#USdhab5y$cc|S`fXA-ot3o>q&^{JtB!N zK@tX|9G&RVJHs%7Aj&8aJ-A2m{a)pFUH|{@b>Fuq_LG_O*=wzR_L;TzdY=h#(%cs6 z1WdRBoPij5ySnymY~tj!Zr|m27lvt}orEr*Qq=uUyX2co!KYW6?hxl<8!-U(mxtpn zL4g{CCiCt4DF@d#zxLSRXlu1j+mlz-URhkHqpZ^)b;?rmfbw{prEqT^NLSmmX1E+x zW&7-`ghFVQwKC0yO`lN2SR*4An-$L1?s}r?Glvr z>X&Bt;Y-Pc6o?Zx$C^D)JX)alm7!A3ucv9Yi^IwjgSd|OZ^F9Xg>1Aae{lKz2|Mg3 zFq)wWvPMxO#n~S}>|Ub0nV$~ou&zpI&DTqqy= zv2~)dD(>;)H<7kMn9ut+NPc+v+kbxQci&Cj;f1lYcgT7rF9L)J-@y-9ZwJj zY2R;ghNMrV((ilmE2#kov-GO97>J&G!#;RSOLH?1>O{1$95&vgCjq<91M z;$WlQCV(^$y^6vUxwU8Z)j;*Vi)`&(!o#hosB9*wUx;SmYoOS1%o52ZDEc`s7*L2d z$f~i1dSKhV#ORUe-t?8ZJF1S&Hy26FG4;5MfV{I^$l{kT1L^P%j+9@+r^Hqb+o!DH^a!G70j}1`gFMNB8}Dt&cz2!-#&0X-Q(FE~ znk>_N-x}rc586P6gRD%-t=Rz4A~rJ>@g8e<^yx|-PGiGqDZNTOt;s{fPlRTJJ~AU( zAM4F=*7?=UvcA)Krv!5d=1 z(=Q6YZMUgs-zhM|CVz|`pZ!k8Kv&d+{f$%F-Dl3cV7&W0k3+5glmXO!w6o{hdn8wP zQBha3hKDmC71pyT29*SEu21W*mxZGt81hY~{GYdjmqjhs^_NnDch*x?L#0`>umy%y zn02>{-vcd3@W}P}e7_2J4X2)@MVtV=`HT;PgG>8wL)F>jYQ20G zISzMU7M2&e2**xBP36ddDEeE)G-mdZ*C0s~O8U=x`!OA#eFlAr#G}o7kSDz~TuD zU)4m!VWi#s-yFEXkI`u3!n6BL} z*HpEV+4g+zwfX;&HK4wB?0Q#O=u9-Kc*nI~7dD>aDC2f%!fb3LAl+<~p{$?c)PI_G z@u%014=2{KfO2ErL(-lGY*!Q0N=3An&f6#Y_*MSvdPY+|@OVg6eU?HM!64y!SB{Xd z89l0*6)4LRp#ByQhs{=8{01rlO*gql!SK2uJZy|g|>(_%aS8D|1STEd0^KIfa1%7a#;*y%PDs4k8O*yT(jHdq^A1D;CIjM4Szg_VE;}x19Ym+0pDO^T!$U8 z)L4)1IG-+P)`N9d)^62LBz(*NZ3fu7@*u^bk^)-)XGOa~@dE^hw*?yGeEM44R9qRM z50D)Uxjp6Je|^r=sTF)W!t9|x>?vhF^0v7y@}=QZ2Xa*WOSKy)A1_n+&f%hVXJxAQ z_nACe#1$=1uN;?I=#s+&oSwR{p$%JR$}N!~JENuLdh)vIUL zaA4h1k6~-w^?o^fcY=vC39y8d31!5CwpTBWvPC0pWV(-&Y^-?Gxp1<@aR!+qi|vsU z>`fuLd2h2~dN+^?b&{a}heQGQE`v(VWY)<)vu<0O5+SXBc|k&u2B1JJDb())7lD;T zcRke`_6)YIyt#$5LEd_e%*)8E`@l4|Zuk1=B^S&_xY;|34lD!cz)4@lHFL`}TVUcd z77Os@<5QOr6P*K+vJPxjW;q{eMAh41ky!m0z4Oy{y{mQKX?H@ZaqK{9fc+$^v#jyq zr^@X6(jYeVv$_Bv(Q${|*T8b`Wb#_qOECW}qyF8@)+?1w-|@kF7be%yqv9bJ|(d7TV%HHjVj(1&lUn zwvYnyjM;rke$zx>j>7Skrx=aFw2tc46nPUndf9`151@h9%YXR%JI5Po&dFbcOJ}ck zr#1de692emwnKdfyRFG)td>6azKp8Y5xf`D$~Oj1I(% zo0d^@=OB45Y+HaL0q5_DBEHG_^}1tXo`7Y|1^6QSTejS~y2 znQbVCjkNVEAk`=h!No#(6DL zuUB0s$|0Yz6@`FGU}K$|0adk%ZjV!|`wDc+VQ!(NgGsu4f&`vH;()dx>H00+38JTv zt=X)mrbsT3C-_N+0o^TXRCe|bm}T7`!`s!4ptJlNT;a4pI}U7~vE_;SKobq6P{QPb zTk7v^(QTdaXj$Y?`i)nTVVJPEHC_=?UM5zM<7}iL%4Pck{s8-T_(KbsLzx&be6Bq?BKtQiEcWlZ0;fu314Pxu5R07ZnbBDU4;w^l#?F1)oD(TyRAr)wa6#t z@JivMcqnOWx~evpkFEiw%AXifH(?CRH3jbY@yz>`kdi!b>and}wrsL=g}-QRIXk zwpk%K;f_~*3)h;o<@z;`0`KM0J6{UGvAcy~6@m5ZH=|vigoK2!Sk}+?b&Jib3!&FF zP)}GLoB~GMUa2Ad{*3>-EU!BKX4qYlLP3JmMtkGQ z?fr@}*8$IWK@=48NMa=AweAB{q5C%^EX^IK;-2D6sa7dw>)oY_Dug3O( z?-r6=MZF9jnaJ+Y#o@1`C?17jTa~F+=obwg_+9PfEd=3t=hUWX*K4PIt{!CVuT+qd zyInWrIkh@QCeOrS{k0tk>`X8>b5^GmkjwgyY5Wx1-=x;aqhg8K017;|D%<)p~LSa*JPi!4UfaM2F`V}L#D&yz}|`W2L5DSo4?M%i#bXAC5Nqh8NCZZ4_G$C;HmIQjkB z5b@==1!l-)Y9LD3DHF91hQOjyh-zmoE3s)POB#r1tN*=zRPHQl_EFAdZ(K)-N`)Zthct!Ob_ z13ykqZ(IOZsLcKkz!d=1qOqSGOYi)<-lT_^otKFRqCs?`D1%8CIGAqe_S7XLe@Q2U zt}ZPdT{A}+1t%X|N^^6^H}xBR3aP}u@L(5eFf$vO+sT0HFgt69wqAyoM2xBn=ax6q z)o;!qw7fkTW1sk|PL!fb=JpZl!hs}QOf`R?F2LVZmkduV)uo+T9!qt3;QJp`m%8u2 zsV)ub|DUKX`VkX4QX*&F!u4UaFVE*Eq8PpV6RWVq^wjlZZa z{n#Zg^?#$fVCV4{)#aVce^6a&E~fDp)#VS=1@hmiE*yN~|3P&*ZxBp*q{AZ4z``E? z`4vnyxCoza=nd=6EgxBOEpa5Ed=)vJkB~;TdGlKo-#1%#K8JG@rZa=jAjWxR6DcRw z3_#F^>0j`cDumAegtw%L{(-mL{Xv9H~K%| zEmysN!&`o{TO9u@yJfX<4a;s(=yhCtEAX%EmLFEG!m3{lT={!6qWnHR+6jJh_Q@qv zve(%~%q9p+m}k`bcyOo#Sm(>Y`~SXMULsiWXOCV8FiIt02| zHOzVH8z>j-CFBmvLxUm`ScPAGTr^`$tRbtPwMM2xG7W%69uY&w$JhGPyp|KbbSuqq zP9q>^5_O-~{GRYiP~~s%P$w53Ht7N5)tY@ltFoqO=`_pU{JAOZC9oE5o=W@6n1vwF z$53n4=smmXH!O38GVUKZhTe2Rc;55yJ~CEvn* z4{*6alfQIwHPvr+ME?~G<(=Lm^3u}(K#oufYh5#pW#LjIa&Amg#(|E1OT^n+JUvEt z)?L#5-|#V+23UMd!4Mz}t6f(AZ~T}hfq&!2s5JlK$80kJ)zkn;$dxn;-Md`GOzw7d{3n z=HKu!<6j&910MtY@BA1^IF=t{nrl~hw*>3P|HhBur7F8Lm-bJ7O!&{3f8b-Psec*& zCq9Pth*E~b0*j9U{^rMEof-Kk_MiNiu!Fz(F_?3=t-iT;A4X)))RQzv2v`Wz6I~J` z-%&reqM=k4eu_sk*2AL0lvU18n&d|^t~N$Wwx7uLALg_66wN$qxZ*N!`WxcUV(T`;9X5ddm6)8CP-WYo;yY%kVTzB9Z9w(Sdp&D@}VSjDcZyx$al zjxSoLr2`4Bus(~4K`dFP+;=BUDNVoybZ?;0OOU{jBJ052vvGPMNe`Gy`#=d9UGT=2 zHYN0?TQ>K?(_j?suteVUsvv{}x2YAm_B!_ZmI@Sc`q-e^Z;${5mFw_UkFfP+sNK*} zN0>2w?@_O%`ev~=DNA-Mc3m1V{J6o87Fy}HS7-@H!NQV?q>+yPM^(=-43mJ{q1WVs zgvp%_Z?bYK%$>vIuNX*&xKW|7{vuR*{@MfQCP;0A=>ynslM4e_1@96UU7a(Jev@P9j8=fT?QGDUjlC<*`qjek8R)X~(*1Ux*?$9Pkss;#HJ70ZFmITn#&gykcd@8=b z97jP<4i)B6S{xFJkfWg#sJ;iX9~%68T_C0{>LvtMOE#69jhdc+&e`Qp&Yl8#+Qo^x zhBRXj#E{mC9|%*%jK#{_9gR`%@pgibrNiLlh8|iHhX&zy>ZBUoB_GaL34y!qb^K76 z)^-Lrh@h!*h~awU4A9VDjlid{H6Cm7E&+qhi?X(SiPJ|$g{=dZz6v$Z)^1Ib$kg-1 zNgRJbgi0i&7U<`7Ip0~ZU2S}d#gQC4(b3M5w;7~+m8m@9;Z5?l5&rRHO%zd)LNa!_ zls*iG(^8EJ=YpJymGX`M&W<6#e~Or>!me@bTB3P}Y}xjgw~V zD)**aCK!MV`AVPRsmQz@HCy!SUoOx)_lws!va`(M?|~mmT;n@zW+9ZlTPD?+qLY(SSpGDNYX#%%!2Ug_2gm?sdVyr)Odj6ID5ejWv%81d+#KZgw_U zCs?g7|7@KX44>>o?nm`%IW62?l+uRfzZ*{ka^JD;Fgxx~8(H5fb2Ec2p(O;WH6FtT zukSotS!_ncR5-`JV5nD)>-O$!Wx=Xf&fsgLD#OK!e--N*%}@HFCpt@W19BeGe2m;T zOiZ;&gqYl3iKmycrVipUk64DZ@2@S&icbyupJ)2+l;GdDOtM@ICc@H=c-ln04FIBI zsmhYlQ80wvn=%fg~TT_&zxIjG^>2so-?CA5Wu-<3#h-N_J(W9xb;KHP%#c}-srmZR|V+;uWt4BLCZ(~ z3XE+XEnNpTJfB}<_y8L{3@7F)J~VmMnTmijd@>4gYP!66VbShs-trZVPT)Qr{)2S;7RCgBGR~tERQ{z5n zNSeV`S9yxCkaCX(i#O-;U7bs_WeRBQmIn=WX$ze{+G*t)bEn&-v<}2f**I?Wdu!)t?Nm;X^T_);t2@6s?rL;}Q;R3D+xdFC4Bq z63B9!`YKjs#sbnj9`JoU-Eb;+YI`GLD!@+iD9eS^c~?!SIQb=AvU~kZO|pEbo*xN@yGzX!=5jlu@JyLDF$H&tEGnW^LM`bFT;|e8>r=Q zu4)?$%}etqE`6R0xh^~rb+r}&bV;Lc`8;Ztl8?sYApI0-{4a<@79w^b(uaoVl2?12 zuYG{@03_$Y%7o3NG)$jR{|PMLmXU!OYvV>QT!i?Gs3{okH~VboT}OTUVAQV3uapl%-E%JKs#WC8Y*tkwkTu-S4Iw^4eRH)f%Xq8 z4E=APbDi5gTB>Ghbn(42_0AUPuTxWgBF-wIGLR#pC|%Jstx%3=vNnRLzO0ONyJZsH zbO|kHoG%y_UTr4cXMI;wO?=kKiCazw5;0{rPye83B#G_M@3)r*w&}?c+Y8XTKcVDKF%2j!(c?>yGge zN7;-a#&kr|2h$mCwZ+X0=Xo1`*ZE0bG;AB%9JCPq?-Z>gL-2(eR@66@^Nbx|m1B?5mqKimvpPh^Ti zT5CD-fGxkJB0ug!-UQHQvf%ZHCj^+ylNlEpNyNQoP9V4 zlPhl3#(j&G7I_bd@WO{uEw5>rm|pwwR8yy_*`Q=k?&bp5*3&S! zs-?KBPZ>u^V=HCr+mZd{1p%h4jGc!C`(?kF6F{&Z+~lq z@ql6QDQqzC7vUgVr9?Hm&)RxYK1N~!GXeQtxW#s&>9k4z+ZSBtMrU`^>NAyOEY*KG ze7yJU8|;;?KrPa`9Km?ZLi)14FhVZ81kw224|O?P&HTHmF+BpyT3}4%)Sv7w{BDd3 zV|iwLfZTuKxlqcDSZac!1klK@BQ$w%$zE)mU)K}-WjN;E)) zjo3o^Km{BQ3{ie41Js3u6!$OkJ!Q#4gAphwznT`RvU-|GN$|tt6@T>N-HmLM# zuzua)E}s`|a}*Mb>LNm&c2lz2Jib80gfaW;3pwzvcg#f8lrwL8JA2D>zclIA`JwSLiqUY;fIZm2`PVRmN_8oB8 z9fsbpWE#_qzlIeDFLU5%it%YF!+PZjtz*zW)XFiSkJy- zv~goC6Vp;+LJ>wxQAqSkDByRsPa50&`lTk@en?Kw{Z>6r=T3&lLXfL07SEJ{=iYUj znoSaKDcNUzWO=|fm) zP4al?!y(F!h!6}z`FTavNv-|XYtv}AaF|xW6Am7IgsiUnW_jlBtEjv-o0HAWloMqV zZ}B@*eHOdlbb@$oPabKN*uhE*>gbWL%(DGwD|O-DA3nL=M9~ve6xfPmv`zQVE${dg5L3K3to~+o}$~ z$C~=}T1{=-Y-2P+$pL&*Vwy~&`XP&x=JZ3bDa@|PQ)jjMXfvx_9KnDRhUph!A|c~S zCo+zE{|~^E{t{V>-3hvF;9`S zi&eBr$?VZ9wLgOuex6m`)R{-v!+*jA&U~rJAC5DRzP4gJ>A?@hD^5~eQskU8;;Xw| zwAHtps}y?6u%&05$Z&3o&Eb&vJD7t0Wu5I+7Ct+76(HN=BOx;Rv}4e(BKp&uMP`Gc zy%A@pr^KfSYIY}Y<9Ox~_fKr9#Ki2oQH`WZ4voxgaK7)vOD1LsTD(i*>%$(qna-Tc zb|lkIcFsi?&{9Mc$Cegy3DMQv)!TlFQRiJSyR~TYpZR)r;1%qaizw9Yiu{{8s{LFLC2*} zFTCSSXF5;V*NLLXL>O*zjY-BFX3Fqq5SsfoaKucS1!1s<-&9)v-w8@>NYl%N9vL<;SjJ~arxzUeqwOU6PzW+#&ZmWy7V3l>uS$c zroA)UmAkc-`SzH?tRRl84eNEzYp;x8iWlK|8o@ky=-9cYO9TW48L%RhcnzDK8-Vut z8`d+hQI~WypT+7hC5TiQtB|gAm2&X5WH+bhW@K95&{#~3@>y@-xPj%ICLv3BDoGZZ zFH9Ic__~D>|B^(}ML>2SmN-^<;V_L^8&9=oX7{gL*soYHe}naMtYN!&)WYo-@`+GD z=89OhHK{RU_Lsc^qehI+;G~AbJ>y8qV*%eP;Q?cBRDp!L z-Vh}ib2T#Hh2jZhk@fO}1;4^Z+*0YlQ9rx9*)@ZAin;1b6UM}#qzdvShQAo^~HHIy)YqUAE1@pGyGCEjS97YYihREn=n$%|GJ zqIu$-AD5NAbwTSMl*#mcSu-Q|byAUf8;uH&sC51eY zJ&AY#8TTuaBwb)a>-lco)x3y0Y)8C8Zra}M*FQ31AjG8N6xY)yUWpK1ay4L^UzVAh zlQ-Y~oL~SJYzk$NZazWTeik3`eBtU#4=aswin`xBo_m(M;Z(w<{)RUtH-RkWkvrZ+ zY76@x7r>^vU@3;E(QGsLw`jc-euv%l_L|~>+_=WxbnH78rgAB3Qzywmk{O>`tq&cm zgPN-(C-T!{T}cLU7;8u}1Ba{z4>BD`1piq=!vW~J(;B{~@N1_|O19yZ$D<25b-se?iVp&7=iV0p zc!mCp=*tMRI}5dEX749qXFp^z5I({4ochLnmDz%kX6;= zWWhW-t`Mf!Omyjhn9Hgy_Q=q+H0PZaUAlH4=ts(fz4^^_r$Rls&UQW*z{u1nD=Qu+ zioEVkd{=yZG#iLVt5UXWhbF2$61wU=0cB)9OVc%)+?%Nk#+T#M4k01ZF{g+tTp-2f>2E z&_Kbx0ZaaRsUGoDsTR%h*x>kh3E+!EBs>lw&Kk(vA$bKQlJ!eJP>N2R((4DK#Qu4a zv2vzE@7QW0dDc}_Kic;!J7rUpPCm}xcQq>;z6SJ$WS7B)4F#eAf877dS?!;I{(-x?Z zrr@#HFSfr9x#75%5pe)k@0`)M5RKYRvYIHu>*D(P*^NX4rjd!68X~mArsB8yh(Ri{ z&G%}kmG6FO&&xQ3CVI5lZg=(@vmZvJG^P1<>BM{-Wx3tJ5p%V<*%vqDGd+eGJRK*% zCC%? zuTKhxzOhcX?4B$Iwx_c>< zMT7eK{sMXozOGLj<%YBC3=cMr0{0cq&fhnFZDyW)-7D~3Ga}zzUrb-**g$_gI_#Zu zhQV?RQQ7c0`NF*K{-)pk66I}tW9qN;pTV68d}jebGcFZ%fA#%e4l)rSy&iJ?cQm`p zwITDI<$flm$otgLSx!4Yz)k;v4gZ`>2IisHz0|ZC2#vB7(`Robo%&M5U)1fFjuQz= zbWUf}BwPRDD<;b~YGi1>x7tr9jNi?>uE5j<5O%NX{48(I$jV_9_bn3gmgWmD0%%!8XU z@2NKJ*5#u~Q#S?PGTDXk{w%AIvlU1j^p38Zl1;sVyc1X9n-?~D<(k`t2YUk>G9EUH zbO?Rp_gNwly}e>}&JkkIF!de&nLtdIRiEIXC%So4qgkIjXeLjv;J^WDy}rw1Ri1_?YQ&ji?(M{2B{(n9C14}V!p<9_WL zyi*r-T!F1S8{>LUd@3(zHZo}k479#5Y{%!c3_8x8tAmFt;)QL=eXjQ zcHD4U2A^UK-l&5jJ|oseUNYlTe`+Anva55wE2{|x^0P87horeCsux%l* zqqVOUu=tX7g@Nq3ao&q!>mr1Wk>)1I7U)mt+?{3a0?mJ{9f0GWsKSFP-YztN3o*uAHT3UmY63JprkNS$_VdR4HUh z!e#J@9b!nnG0l}!-u5-_B9keMWrtSGmI4~b(Dvj>_1?{^WmRko1+KiXIQwF!0X+%R z1Gm*QcbB3nbOSrGl~1Z=iUA+R(1_Orupz2$53uO($F_oj{tG#u^G{blsosCiwa9vp zzCRvbjZChwW{o#$)>me8hJ~$8l&O3N+og+g2J(1{u7~C8r-!}54b9$3&zI9Y@p<>_ z$F+7J{Xu3>-geV$dX7)BoAokjskWj)*fR!C%Ieqk@OrY(ui~#6We2!8KQNrt1XOn| z>>FP1MEV9QXI8<-0#YEPUnMo&eY#pe1Td*i3Qb?2*RfNYVVY!WWJhkQ$0v)`dX zz)$NDM9 z;MDlL;G$v0Yf4s!W63*k3_C!4H>N=DU~ikb~CdbE9!& zo#NDg6b`$I4SzYFro@8dDVa`v>^kydDX=#Jz?)LvSf84Y2swgvvr3{s4bUibmKB3x z?kf@CmNA%KB|9%95gy%U=nK^x-6Im@x^Q%GHi0x}kNoovc>nAJm^Upr;OBSFYy~Ks3L#ntZy0pui0WdO1 zyb9ep4A#a`Xie#tm(bhPJUEb_T2%VC+n0t4_pFJY)_Q7|h3SN4roNtoc4}&P%g9p* zQOJZ__j`?B;f9Y^ETNg+v~Eu+x=vC*rc<8s;aQK?G;HLB7pg9ZIewvqZXlmdZTH%H zR^NhVUYJ>!RRgf8ceXX3$Z57HKcBIzL{F!=_V+MVftmz;1PBgIcl^_?*@-cUqq)c; z@a&F!1IE;~sOi??L)g~1qyoeKJ5f5`5)-HOYY`MPHZ^6&f3!Fd|W7- zihM<)`25bDBZL9Tqx!)I_#Fmn`2@Ug094cm^4P>jjJOA)i{{!Vt@y8syZqRoxt8byMzTHXAg*X;Uc>^E&krSLPAn1+r zGxcCO>6E0Sxn_-uz>~2bbL@q4Tozxx-i8pXCZr-rjN!dOWMm~5PyN%4YWC&0@3Q~= z^X0eH=uVFCopg(cHxc66?- zv@sevMD&iz5YmTv?!aej*-sg1fLD=HlH`nL_`!t6Q5$hhu)o)|x09`YLs#Rd7-(-9 zJ5Y4}n-$lZksK!#fh4~LnvrQc{^-!o{i(ugBUOVT#$YVSOn`2A=a|(#8y@pQ za?or!xK?P(ZoSRK&Ns_w(k{jfrNCdpCu)hINIkC3uWz0<14Ku=+rp^PxZ%)qHyl%+ zp%&bviN@E2fm=iEc~4KAOF;i!;?ltx%UPpOG-MwsnRrg)q&zC0J(eMbrf}1j8%1>Y zo*=QWy`J~sY0#D*lSl1_j;8%A?|j=NfL|8=Ok28inrz7`1|IOx%DFQi;b^+|Oz11q zXne#-pg_Y09H@e7?|L`FMA8IrAKt9Qf74~Vt$Q5>J(V}#a0xal+8BVoI>_C9)%R^- znzl9>oA!qqZ~1zbi3v5xJDhi&d(QjqU0wegsLLg2O?}=6v!(d;zQf~AM5j~kHav6KFvvR!O>3?8Ak~;)jAng8%HFQEx zyuZUxL{*P#_Tjw)&Cu=+{cybEFbG0pj)4WZ#g~0KV1`e1-^ABo;F?E|%)?oW zFt{F&#h7XRw`~<*!*~T46_`ez`xom|x&2&jh?fshwQerEV6y`#Aksfi0167mcnl}} zDC_VMoKb!1VLWc=x~jt{cK6v&bk%q|UdT5u3NeexUU5%?sW1O9C^5>66uO8Fg98#- zha@^nX(~es+A?CW1ONg>ZT3FCkd?EEgh$O+IaRtdn0ncMmm#L%Ri3d}flS$?!0FV* zY*@z^6eA(ipDP)nT!@3{6o;%C&daz>zHZRE7Ph8jB)nPtsT5){NX%5iLW-&v10@Cb zV`3jM7HD_TLPhv_DL|c}LLp}CL-ES*58^YNtFM6Vy*|q$+2kiTulL(0-NlpNLnlKJa>Yd( ztku}Ck0}D?TArp-%+DFv>qW1HoNZV-^0#mE_nGf>5Y(Ry}{#rbQlV2y+qlCc2S>^L3xchI-F7;Bo5~-Vq zEnmzt(2ZNB6)K;fd0@diOID=b56dY2F1sY*kZW$io6kIEq613S?b2(XtF}ax$)*7Q zv0(t}+gR)Vr(y%Os+Q^LQ_~6*!Q83ac=HlRQE8*%N11Q2F3_TJ9hb5!K9>-gG#Zqz zZ}yCQzz0iMsX46lrJnk9ZQtJ&l)tL+*rXZ_6kCkH$gb7aU<>pAIs`LOsySCe{5*?o z>w&aw<{!IU{eo5L*{i>L^_@jw5@cdWf)7JBsP0seEtX4H2ML;pGaHhlJa5w7VY>_p z#~qD6eimoYmFhW8s7oi3=|Zlt>jaSu|0uzcemLwMK0Ht;>DMz*Lk5IIM zh>}bJo9;3qiTxNW=#TsEc&PLIm1qG{gU&rxmR5@r@kwjA??bYCGuo3ZQpL1UgM>I6Dj(JcuS5pvXm z`oyA<$e-AaI$U(oF`GW+H6f^X6R39e+Wgi7uO&P8v(()Wz(*ltrz<*AuC^=5Amfqd zQht4IzMCg|ZJX)~BNgHD%-~SOb+^9BJ$c0gRv&$6oTzIM3?KD%ROlJ4mJ%_J%R@Pm zm#(#7l_B(I!>Y&dW`QAU?;u(gia8IxL2Qf^ZJ_H+mfR)FB4567xp;mH*nEHep?Re) zvL32tbQ12DFX$D32i;H%?>leZRNDAt->tIP+2vD4B*#GZVMp(mRZiT;EBWcxyz1A{ zKWiL)bzwNTZ>empMz;Z1YW0OaXBZV(o4oK2^zAk|O6_AAZm!C0*t=hLF>rQ@`y1C_ z8gD(WWZ#K|P_)D8AoBR9eca~>#wql$e5I*G1kFMo!=K|=0!VQm)#s4?Tm|W7WMib+ zI3La9nL{Ko*ivY7MJy{?p0H9#KgUZKc5l0&OQ{|UwfPE!DpHCQZM{IS4>WZ8kO}=# zjGD7-)rAeJ?{HmHQoC>-6jpWoUJ0urZZ`EZ7m1bnRgbj?^1Ru?_3bVD56&a%D*JCz zH5yx=d~Ds%+sxpUx(pVOtabm30O~}B5NXawiyygRvz>j%=C^0bq2#~4qX|SqYQ83h zYj{dwHl!{jK!>)utg;-j64-K8lweWK^z8=Rx1i8(+DOjrZpE0ZtdY7B(y=a`2MQZW znw5_{h6C-iB*e*}8({&$J_5JE2efG%!LVyzh~-+Q>PvoOp2@_LxlshiYxmo5c2 ztFhg{e_>6I{Mv8#7rp1Z>|fyaeEo2T&-m$e)YfhR zLx2deKTAH{extnHmh#T@*d7zS?`^+lKN7S{dWwegEq3J+B?F{ckoQ+fIN_>Xol6a_T*myx@e zM^cWLPL+y#>M&;+Q8P#VYh9l9md#!NJQ~z~`@|vQyOSJ{ax$Hk-C*sd69v(Ja0}(B zuaCZ=e`dG07xjebk=Q#oeSNs(8wrg2n}*ArvSV+hp!?^6rUr46uO;+Ns?K&FoTqSQ zAY4dbE!de>>}=r(2Mmfx-$q}8vRpyB8miB)p4o|OEjTt=C~Yv&Y;l~|-V6A^Rk+`? z5q!YHqBd`EW9NBw?8R58%lzMxpZ|WO!3>2wQ`0@+?R-^)V|CITjj}j(OGnKwICVK) zf%2CSKS~)$<47q{;4Wy-Y-$G4E=uq DL@214 delta 35435 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 P00000NkvXXu0mjfz9!CY diff --git a/packages/codemirror/src/editor.ts b/packages/codemirror/src/editor.ts index b9fa4022566e..f2ca39a29141 100644 --- a/packages/codemirror/src/editor.ts +++ b/packages/codemirror/src/editor.ts @@ -395,15 +395,17 @@ export class CodeMirrorEditor implements CodeEditor.IEditor { * * #### Notes * This will remove any secondary cursors. + * + * @deprecated options bias and origin are not used */ setCursorPosition( position: CodeEditor.IPosition, - options?: { bias?: number; origin?: string; scroll?: boolean } + options: { bias?: number; origin?: string; scroll?: boolean } = {} ): void { const offset = this.getOffsetAt(position); this.editor.dispatch({ selection: { anchor: offset }, - scrollIntoView: options?.scroll === false ? false : true + scrollIntoView: options.scroll === false ? false : true }); // If the editor does not have focus, this cursor change // will get screened out in _onCursorsChanged(). Make an diff --git a/packages/notebook-extension/schema/tracker.json b/packages/notebook-extension/schema/tracker.json index 17de9fbcc5ab..730b3ee1946c 100644 --- a/packages/notebook-extension/schema/tracker.json +++ b/packages/notebook-extension/schema/tracker.json @@ -739,6 +739,12 @@ "type": "number", "default": 50 }, + "scrollHeadingToTop": { + "title": "Scroll heading to top", + "description": "Whether to scroll heading to the document top when selecting it in the table of contents. Starting with JupyterLab 4.1 this setting will be enabled by default.", + "type": "boolean", + "default": false + }, "showEditorForReadOnlyMarkdown": { "title": "Show editor for read-only Markdown cells", "description": "Should an editor be shown for read-only markdown", diff --git a/packages/notebook-extension/src/index.ts b/packages/notebook-extension/src/index.ts index aa055c003fff..40031a14b8cb 100644 --- a/packages/notebook-extension/src/index.ts +++ b/packages/notebook-extension/src/index.ts @@ -871,16 +871,35 @@ const tocPlugin: JupyterFrontEndPlugin = { id: '@jupyterlab/notebook-extension:toc', description: 'Adds table of content capability to the notebooks', requires: [INotebookTracker, ITableOfContentsRegistry, ISanitizer], - optional: [IMarkdownParser], + optional: [IMarkdownParser, ISettingRegistry], autoStart: true, activate: ( app: JupyterFrontEnd, tracker: INotebookTracker, tocRegistry: ITableOfContentsRegistry, sanitizer: IRenderMime.ISanitizer, - mdParser: IMarkdownParser | null + mdParser: IMarkdownParser | null, + settingRegistry: ISettingRegistry | null ): void => { - tocRegistry.add(new NotebookToCFactory(tracker, mdParser, sanitizer)); + const nbTocFactory = new NotebookToCFactory(tracker, mdParser, sanitizer); + tocRegistry.add(nbTocFactory); + if (settingRegistry) { + Promise.all([app.restored, settingRegistry.load(trackerPlugin.id)]) + .then(([_, setting]) => { + const onSettingsUpdate = () => { + nbTocFactory.scrollToTop = + (setting.composite['scrollHeadingToTop'] as boolean) ?? true; + }; + onSettingsUpdate(); + setting.changed.connect(onSettingsUpdate); + }) + .catch(error => { + console.error( + 'Failed to load notebook table of content settings.', + error + ); + }); + } } }; diff --git a/packages/notebook/src/toc.ts b/packages/notebook/src/toc.ts index 2cffe1642273..5be26426cb0c 100644 --- a/packages/notebook/src/toc.ts +++ b/packages/notebook/src/toc.ts @@ -485,6 +485,17 @@ export class NotebookToCFactory extends TableOfContentsFactory { super(tracker); } + /** + * Whether to scroll the active heading to the top + * of the document or not. + */ + get scrollToTop(): boolean { + return this._scrollToTop; + } + set scrollToTop(v: boolean) { + this._scrollToTop = v; + } + /** * Create a new table of contents model for the widget * @@ -521,24 +532,37 @@ export class NotebookToCFactory extends TableOfContentsFactory { const el = headingToElement.get(heading); if (el) { - const widgetBox = widget.content.node.getBoundingClientRect(); - const elementBox = el.getBoundingClientRect(); - - if ( - elementBox.top > widgetBox.bottom || - elementBox.bottom < widgetBox.top - ) { - el.scrollIntoView({ block: 'center' }); + if (this.scrollToTop) { + el.scrollIntoView({ block: 'start' }); + } else { + const widgetBox = widget.content.node.getBoundingClientRect(); + const elementBox = el.getBoundingClientRect(); + + if ( + elementBox.top > widgetBox.bottom || + elementBox.bottom < widgetBox.top + ) { + el.scrollIntoView({ block: 'center' }); + } } } else { console.debug('scrolling to heading: using fallback strategy'); - await widget.content.scrollToItem(widget.content.activeCellIndex); + await widget.content.scrollToItem( + widget.content.activeCellIndex, + this.scrollToTop ? 'start' : undefined + ); } }; const cell = heading.cellRef; const cells = widget.content.widgets; const idx = cells.indexOf(cell); + // Switch to command mode to avoid entering Markdown cell in edit mode + // if the document was in edit mode + if (cell.model.type == 'markdown' && widget.content.mode != 'command') { + widget.content.mode = 'command'; + } + widget.content.activeCellIndex = idx; if (cell.inViewport) { @@ -549,7 +573,7 @@ export class NotebookToCFactory extends TableOfContentsFactory { }); } else { widget.content - .scrollToItem(idx) + .scrollToItem(idx, this.scrollToTop ? 'start' : undefined) .then(() => { return onCellInViewport(cell); }) @@ -674,6 +698,8 @@ export class NotebookToCFactory extends TableOfContentsFactory { return model; } + + private _scrollToTop: boolean = true; } /** diff --git a/packages/toc/src/model.ts b/packages/toc/src/model.ts index 7f196401e860..23f5f029f556 100644 --- a/packages/toc/src/model.ts +++ b/packages/toc/src/model.ts @@ -200,9 +200,11 @@ export abstract class TableOfContentsModel< if (this._activeHeading !== heading) { this._activeHeading = heading; this.stateChanged.emit(); - if (emitSignal) { - this._activeHeadingChanged.emit(heading); - } + } + + if (emitSignal) { + // Always emit the signal to trigger a scroll even if the value did not change + this._activeHeadingChanged.emit(this._activeHeading); } } From 40e8e47123453e65f19c0d5eb2b6bc7bc8d5d49a Mon Sep 17 00:00:00 2001 From: krassowski Date: Fri, 29 Dec 2023 17:30:01 +0000 Subject: [PATCH 9/9] [ci skip] Publish 4.0.10 SHA256 hashes: jupyterlab-4.0.10-py3-none-any.whl: fe010ad9e37017488b468632ef2ead255fc7c671c5b64d9ca13e1f7b7e665c37 jupyterlab-4.0.10.tar.gz: 46177eb8ede70dc73be922ac99f8ef943bdc2dfbc6a31b353c4bde848a35dee1 jupyterlab-application-4.0.10.tgz: bfd01729ddf642459d00556b251ae51afba62d51fc9f225f8c91e7da3aaeb926 jupyterlab-application-extension-4.0.10.tgz: 8d986742e83f67cfd50c1117ba27b711bcc77bb174e9fa6f61411b03d422e0ac jupyterlab-apputils-4.1.10.tgz: f48e1302c881c86cc06d33460864680b6e81504ff8bc716cecf2c56f68eff959 jupyterlab-apputils-extension-4.0.10.tgz: 0498df8c6dd5ad0250dfd69c715d919bd45ac8dd5480e752688aef3debb6a904 jupyterlab-attachments-4.0.10.tgz: 4e9732280ea037b6c72bbf17813ededab59b812a6b476c7f02f767aeaf08a06f jupyterlab-builder-4.0.10.tgz: 6700115016d895fc1fda95c03c88dc75c1eae6879764cbe159c57148d7d2292a jupyterlab-buildutils-4.0.10.tgz: 020c0896c9c6b9204d379bb50d463d5f5fd94d9650d50960340761baff98ab7a jupyterlab-cell-toolbar-4.0.10.tgz: 3291b887107be8dc2b438768ee04a176ad458cdba323f002048225d3d183852e jupyterlab-cell-toolbar-extension-4.0.10.tgz: b1ed2b9f01737bd623d86fe40f51b86553fc144b9c0010fe8b932ce6f6693189 jupyterlab-cells-4.0.10.tgz: 4ad49e0839e9cdddce2888a589a299d78e45c768868988ee1dae6382a67eea2b jupyterlab-celltags-extension-4.0.10.tgz: aff8124eea55e3ba211357ea46a5645a476d7abf278190cedafb76fdf55be6bb jupyterlab-codeeditor-4.0.10.tgz: 586e8528f76511d90f870eedc2baf63870c5dbf2f00215c3630d1453742c9794 jupyterlab-codemirror-4.0.10.tgz: b4e6b4ec9b4050ff0b9d4f1a867b70771de42a581c1a3c861b9c80298a2a7652 jupyterlab-codemirror-extension-4.0.10.tgz: b1317afe40c91ebac35c7b783dff6e4801132cc438dfaddf1dab93dfc8faa011 jupyterlab-completer-4.0.10.tgz: 544cb0696aed4752a7b67cbf5e90ead3c1060d3201d09729c33464f6d26a0460 jupyterlab-completer-extension-4.0.10.tgz: 5fb48f4ea09949c169ce6701eb0d8f06029990527054ba847b8c25d0d1b28740 jupyterlab-console-4.0.10.tgz: 285385b31dcff515ea35c3dc051bbeefa2118d6e3a7ffc540e5a5e1c2417c999 jupyterlab-console-extension-4.0.10.tgz: 7cef9d1884435e187fce19edc666c77dc5330dfb7afef33b20558484b4fba20f jupyterlab-coreutils-6.0.10.tgz: b88252c01c57fe04faf2be967007e087a9f7a1313d7d454d2447dd8029d23dd9 jupyterlab-csvviewer-4.0.10.tgz: d00237387e05b8d5db0a7c2a7a4ca67549f64e6b5e18deef2681e3f37a449c92 jupyterlab-csvviewer-extension-4.0.10.tgz: 9f1ce26c1edc40cf3f4a571252c3c5bf23ffe0944a3bbf4adf03f506451bf798 jupyterlab-debugger-4.0.10.tgz: 6a204d44ad9434f58b0c6f8a5a38ded26a9a09b205c264c6eaba171b86413150 jupyterlab-debugger-extension-4.0.10.tgz: 90d104d874fa057b7a6c62244d0bc9828ba8a489d4dcebb8bbf96d300641a271 jupyterlab-docmanager-4.0.10.tgz: 9098d4dbd48f69872eda75e0950eb5ee3bb2696469b9d2a85c669e1e2b4ed034 jupyterlab-docmanager-extension-4.0.10.tgz: 7da13ff776a61b4de70977202f9318f4df2d77ba07b2f4a25655c4b302f945b9 jupyterlab-docregistry-4.0.10.tgz: de755eaa8a2de0e2f1ee27d60949f14e0d1106775f31540b6acd4e5877261c5c jupyterlab-documentsearch-4.0.10.tgz: bce0930f1bb884d3b4cbc28a85865aac6aba55c15f4974bd96e1290766850cb1 jupyterlab-documentsearch-extension-4.0.10.tgz: d61848b42fff27c8543a93a6449efcbfeb67531d17da2a1afb4c762eb1cc68ed jupyterlab-extensionmanager-4.0.10.tgz: c3dd0392f251ef75c03c137d69dce599e661568691b71ff50a5d93997750eaf0 jupyterlab-extensionmanager-extension-4.0.10.tgz: c32d965fbb57f540257a91959367eb7d61218e62d027d65d91b28dbe67cde953 jupyterlab-filebrowser-4.0.10.tgz: 2021823b19d6306e90cc11dd747287fa4ad473b43595302d5ee6184299be20c2 jupyterlab-filebrowser-extension-4.0.10.tgz: 5a6217fcf934427ac47f134ee8d34257bcf14df803b5f276b1659316ac43d597 jupyterlab-fileeditor-4.0.10.tgz: 1e2e774de1f3fa6e02ee1673ba5260820830c060046ddf6cf5e6835aa7a0bbab jupyterlab-fileeditor-extension-4.0.10.tgz: e1290ddbf0f5457d6b12873afd450f98f117a30a614d96828c3f1cb241a52304 jupyterlab-galata-5.0.10.tgz: 6d69dc6645069d864c0eb6b580f59bb223a2a4c856471d727fa4009b256ed5c0 jupyterlab-help-extension-4.0.10.tgz: 771dbbbd0f91ffb3d432c1dff717023836ec0fc07e6e1577355ddc3e8213e271 jupyterlab-htmlviewer-4.0.10.tgz: f02b7d55cf5122849ee0d9e34dc964671b03f01b7474928d08993a8ce2526682 jupyterlab-htmlviewer-extension-4.0.10.tgz: 4ba2d54b2b6793edd39201448a9aa75a0ec932661cd3323cc105ca4d49eed59e jupyterlab-hub-extension-4.0.10.tgz: 8a16ffc549a5e49310d5de11b76269bd0872c8983dc0f806282518a03da51e48 jupyterlab-imageviewer-4.0.10.tgz: 48a13d58a7925be2f5314af503483b3fa1d05a25a730b3bebc5266daff2b703f jupyterlab-imageviewer-extension-4.0.10.tgz: 010b042bc3237b930e68a11dc0f84244e5a6c023706bbfa303a35749f4c76df6 jupyterlab-inspector-4.0.10.tgz: 5d174f2b4595b54054ec3ef6028db3b55d40f8ba52e2c4a937eac8bc6e9b1e35 jupyterlab-inspector-extension-4.0.10.tgz: 8f6d0b5270a7d829431b86ffa5c0679145c9a6d305de7cbab2cdf5e857d0905f jupyterlab-javascript-extension-4.0.10.tgz: 72f92b1f2d271e3e56c27ade3194bdaa115cb2743f59669bdefd6fbe55953901 jupyterlab-json-extension-4.0.10.tgz: ce5fc02f353504764ff5abe34baa410a44e43805eee7b2846dce8c7f7f9a1c7f jupyterlab-launcher-4.0.10.tgz: c4712ba7c34a8aaae0f33f1de67b87ed5e8bb9bbfefd10d1041e933c5b662091 jupyterlab-launcher-extension-4.0.10.tgz: f5af788dc0eebc2717ee29410acce6da0c2c2fe7e3d9b1bd3de9bc060fe5f339 jupyterlab-logconsole-4.0.10.tgz: 224393462fb1f2ea0e97d4849326e47deafeddd0de5611496762d026de136a52 jupyterlab-logconsole-extension-4.0.10.tgz: 914d2b108476ee6302fd7cac17c483dcf66156f237e5a86f71b8f6a4bad7a2a8 jupyterlab-lsp-4.0.10.tgz: 10c8218e05eb92fc5f75e7c5e2e2e084aab2efe698773125b27c9cb7efa687f2 jupyterlab-lsp-extension-4.0.10.tgz: 7a944210962a563199f01f6682e011f0a8a431e1c1ac2b4e82e780e0e4480297 jupyterlab-mainmenu-4.0.10.tgz: 4073d5b71fee685078019e1fa085e6418c362454d7000747e33b5907e01d1816 jupyterlab-mainmenu-extension-4.0.10.tgz: b7db444e011168187908c1c0fd2b868498dd8571b60a7822ad196ea271c883a9 jupyterlab-markdownviewer-4.0.10.tgz: 9ff65c5b952b90dc46c671e1f45b454e35152f8139180fd8985714ad94d93140 jupyterlab-markdownviewer-extension-4.0.10.tgz: 5add7956201bfa5d07419ec3d23cab6e4680cf38e9f14057092d0387f9c9efd1 jupyterlab-markedparser-extension-4.0.10.tgz: 11cf39a86ae763206860f3d1e96c6548a37e5a39831c5a0dea50657b3df54b1f jupyterlab-mathjax-extension-4.0.10.tgz: b68c633bc7aa2a3b4cd6733e8ba6c896e93c56a179323afb18c221fe4f69e2e8 jupyterlab-metadataform-4.0.10.tgz: 5f739ca314cbdd419464fe96c77726bd9b7fd5cbf1845406382c22c00d2cc1ef jupyterlab-metadataform-extension-4.0.10.tgz: 94aad087f6da097d34d8e9d9425ecfcd968ffed51508f78031335ee182d3c2d4 jupyterlab-metapackage-4.0.10.tgz: 49b0fea673b496cb6fc9882040985f54a6e17300f356154785735cde1128c467 jupyterlab-nbconvert-css-4.0.10.tgz: 2af10d60a88bedb55fb96ad683b212a940d5512ebae5980dd1b4a19933828b2a jupyterlab-nbformat-4.0.10.tgz: 918c2038c8285c7437c0b1484d30454bab2c99719429861a21df7a49a42b6d0e jupyterlab-notebook-4.0.10.tgz: 94ed339ae91c730d386bd01654ec008467ef91eaeebcf1c0dd3d0c98abf39b39 jupyterlab-notebook-extension-4.0.10.tgz: ac3818dee546fda49efa7c740fc4e691e09abf27fc11d5cb6d977e3c2e91c337 jupyterlab-observables-5.0.10.tgz: df9680b16c94e07b428d614824f81acdc61747b13a9b12695fa0f7e6be791047 jupyterlab-outputarea-4.0.10.tgz: d3772a4d2ce1410bc69a96be181776edb926f6493da4aba753c849ef4c03f2f0 jupyterlab-pdf-extension-4.0.10.tgz: 078ecf4b6c53e883a46be1f7a4032137c3422734b8d3877bc031083e946b8090 jupyterlab-property-inspector-4.0.10.tgz: c46a60cc893c79433cbc0660456912341853879cd8b04732deeea5c9bffbc40d jupyterlab-rendermime-4.0.10.tgz: 8b8c49b9b7336e559cf79a98dc6e663a69dac63e8c3cecee11c8576d1701cd66 jupyterlab-rendermime-extension-4.0.10.tgz: 71e8b08aa0cdc252caf726e1e1691534f08af222de2bc7bd8e5287280fcf2aa5 jupyterlab-rendermime-interfaces-3.8.10.tgz: a6e106dd6f40a9c2405ad03a6380598b34a1a442e515a846ebd6193ea4b7f62e jupyterlab-running-4.0.10.tgz: 81cd0a1de600aec918de50710ef27a3173568aa0c7bdd9775526ed29cc31b4ae jupyterlab-running-extension-4.0.10.tgz: 6834c20810c624266c614e66d0e1c2f4f47f3ae798471fe6acba09cd2887bba5 jupyterlab-services-7.0.10.tgz: c29f1fa0cd14db7fb7f148a720b8daf069c87a1181333bc40ee7e53d9d5cc8e2 jupyterlab-settingeditor-4.0.10.tgz: b2eeceea52df49bcbf3b9255503f5a2eae61f6951f43d7f42db5035709d4869b jupyterlab-settingeditor-extension-4.0.10.tgz: f0ac93bcbc011ab82f496ee96f79a3a226bc6cf6c15500895f8783335f0c270e jupyterlab-settingregistry-4.0.10.tgz: 5d669f2d5815c7a93f5ec0acfdacfaa0e02dc8173f347e8994541934d86607c8 jupyterlab-shortcuts-extension-4.0.10.tgz: e44e2c34b2ac463cc6ebc6fce87dcb54c3b18dd1f60143c0ba05ddcf0ac39c1e jupyterlab-statedb-4.0.10.tgz: 6f811319686ff8f93cd33878502a97988b8ac04199a22b94c5599f09e2aec984 jupyterlab-statusbar-4.0.10.tgz: 2e3ef7259886fa6f71c0c5b8f78cf3d49636a3fb16cb4dce8e7939664b5b65d3 jupyterlab-statusbar-extension-4.0.10.tgz: dda927d32fa67d4cabbc159d985ce8a932eca56b514e4770c4e9c7cdc0008911 jupyterlab-template-4.0.10.tgz: a6e1f540e70fbb14a82af098bbe2aecfdf3ebd9e4bd73af2709cb07c5a320c48 jupyterlab-terminal-4.0.10.tgz: 09ecb0d800edd35bd67651676c15fc51636e4ccd598e21434b55bc6994e8424b jupyterlab-terminal-extension-4.0.10.tgz: f70d03a66cccf77b374ba57a8b25c754c73343c83cce6e235d0476d71c6b2739 jupyterlab-testing-4.0.10.tgz: 4547dda9bb7a903904e53c7a8c012d66144e3c08fba8b0b517c714ee81d87dfd jupyterlab-testutils-4.0.10.tgz: 1d3ed3f1750a14ba04e4fff158611b3bacc75006ad1e18dae041dde6bade02c3 jupyterlab-theme-dark-extension-4.0.10.tgz: fdc0ec38517350d9a24aa30da34ea4f10d99d9eca9452fbbe3bd5e6e180b6ebd jupyterlab-theme-light-extension-4.0.10.tgz: d800a70ac818cc7f1f31d5513090da09476f232e2f14251d09979bf4e99c1f20 jupyterlab-toc-6.0.10.tgz: 8958085ca626f687e1512cdc9a62c9c6a3507237597b0e9c84bbe30a24cae80b jupyterlab-toc-extension-6.0.10.tgz: 37c23958891dc57f5747aac2d605086cd760396086d21d4d43804f54f0a5d121 jupyterlab-tooltip-4.0.10.tgz: 35eb4fd1c9ddb3be5ded8feec4ada7f4f7aa5e656d2d4cf6ae6430850085d0b2 jupyterlab-tooltip-extension-4.0.10.tgz: c5c839f90c7df4dadd030fb6391de11e1fceba257b10d56fff528d78af0bbdb8 jupyterlab-translation-4.0.10.tgz: dc6f5f3b1cc1d02c63bf2dc38f2a0dfc9f4f95d4d6fa9589756533657072abe9 jupyterlab-translation-extension-4.0.10.tgz: f1a91f67039e2b577193b6a95e01b3c4d202c441ac5d063cdce2afbccb328f32 jupyterlab-ui-components-4.0.10.tgz: 459da7ea906383ce33f34c78c89b5ae6a18af295ecefd49fb98cd8f3bcf8ed6d jupyterlab-ui-components-extension-4.0.10.tgz: 4a7ca765c017ed7eebfe7101a1e0ff9478da9867e402b6270f6d7b544b7b410b jupyterlab-vega5-extension-4.0.10.tgz: c6602bf0a438c464658fd1a14c81d07a13b1dc2bd555505771e3f8618d3e514d --- .bumpversion.cfg | 2 +- CHANGELOG.md | 34 +- builder/package.json | 2 +- buildutils/package.json | 2 +- buildutils/template/package.json | 4 +- dev_mode/package.json | 282 +-- examples/app/package.json | 68 +- examples/cell/package.json | 22 +- examples/console/package.json | 18 +- examples/federated/core_package/package.json | 168 +- examples/federated/md_package/package.json | 10 +- .../federated/middle_package/package.json | 4 +- examples/federated/package.json | 2 +- examples/filebrowser/package.json | 26 +- examples/notebook/package.json | 34 +- examples/terminal/package.json | 12 +- galata/extension/package.json | 20 +- galata/package.json | 20 +- jupyterlab/_version.py | 2 +- jupyterlab/staging/package.json | 282 +-- jupyterlab/staging/yarn.lock | 2001 ++++++++-------- .../mock_packages/extension/package.json | 6 +- .../interop/consumer/package.json | 6 +- .../interop/provider/package.json | 6 +- .../mock_packages/interop/token/package.json | 2 +- packages/application-extension/package.json | 20 +- packages/application/package.json | 22 +- packages/apputils-extension/package.json | 28 +- packages/apputils/package.json | 22 +- packages/attachments/package.json | 10 +- packages/cell-toolbar-extension/package.json | 12 +- packages/cell-toolbar/package.json | 16 +- packages/cells/package.json | 34 +- packages/celltags-extension/package.json | 10 +- packages/codeeditor/package.json | 16 +- packages/codemirror-extension/package.json | 16 +- packages/codemirror/package.json | 14 +- packages/completer-extension/package.json | 10 +- packages/completer/package.json | 18 +- packages/console-extension/package.json | 26 +- packages/console/package.json | 26 +- packages/coreutils/package.json | 2 +- packages/csvviewer-extension/package.json | 20 +- packages/csvviewer/package.json | 12 +- packages/debugger-extension/package.json | 34 +- packages/debugger/package.json | 34 +- packages/docmanager-extension/package.json | 22 +- packages/docmanager/package.json | 18 +- packages/docregistry/package.json | 22 +- .../documentsearch-extension/package.json | 12 +- packages/documentsearch/package.json | 10 +- .../extensionmanager-extension/package.json | 14 +- packages/extensionmanager/package.json | 12 +- packages/filebrowser-extension/package.json | 26 +- packages/filebrowser/package.json | 22 +- packages/fileeditor-extension/package.json | 46 +- packages/fileeditor/package.json | 26 +- packages/help-extension/package.json | 16 +- packages/htmlviewer-extension/package.json | 18 +- packages/htmlviewer/package.json | 12 +- packages/hub-extension/package.json | 12 +- packages/imageviewer-extension/package.json | 12 +- packages/imageviewer/package.json | 10 +- packages/inspector-extension/package.json | 18 +- packages/inspector/package.json | 18 +- packages/javascript-extension/package.json | 6 +- packages/json-extension/package.json | 12 +- packages/launcher-extension/package.json | 14 +- packages/launcher/package.json | 8 +- packages/logconsole-extension/package.json | 20 +- packages/logconsole/package.json | 16 +- packages/lsp-extension/package.json | 14 +- packages/lsp/package.json | 16 +- packages/mainmenu-extension/package.json | 18 +- packages/mainmenu/package.json | 10 +- .../markdownviewer-extension/package.json | 18 +- packages/markdownviewer/package.json | 14 +- packages/markedparser-extension/package.json | 8 +- packages/mathjax-extension/package.json | 6 +- packages/metadataform-extension/package.json | 14 +- packages/metadataform/package.json | 16 +- packages/metapackage/package.json | 184 +- packages/nbconvert-css/package.json | 16 +- packages/nbformat/package.json | 4 +- packages/notebook-extension/package.json | 60 +- packages/notebook/package.json | 38 +- packages/observables/package.json | 4 +- packages/outputarea/package.json | 18 +- packages/pdf-extension/package.json | 4 +- packages/property-inspector/package.json | 8 +- packages/rendermime-extension/package.json | 12 +- packages/rendermime-interfaces/package.json | 2 +- packages/rendermime/package.json | 18 +- packages/running-extension/package.json | 18 +- packages/running/package.json | 8 +- .../services/examples/browser/package.json | 6 +- packages/services/examples/node/package.json | 4 +- .../package.json | 10 +- packages/services/package.json | 12 +- packages/settingeditor-extension/package.json | 20 +- packages/settingeditor/package.json | 22 +- packages/settingregistry/package.json | 8 +- packages/shortcuts-extension/package.json | 12 +- packages/statedb/package.json | 4 +- packages/statusbar-extension/package.json | 12 +- packages/statusbar/package.json | 6 +- packages/terminal-extension/package.json | 22 +- packages/terminal/package.json | 10 +- packages/testing/package.json | 4 +- packages/theme-dark-extension/package.json | 8 +- packages/theme-light-extension/package.json | 8 +- packages/toc-extension/package.json | 12 +- packages/toc/package.json | 18 +- packages/tooltip-extension/package.json | 22 +- packages/tooltip/package.json | 10 +- packages/translation-extension/package.json | 12 +- packages/translation/package.json | 12 +- packages/ui-components-extension/package.json | 6 +- .../simple-windowed-list/package.json | 12 +- packages/ui-components/package.json | 12 +- packages/vega5-extension/package.json | 6 +- testutils/package.json | 12 +- yarn.lock | 2060 ++++++++--------- 123 files changed, 3390 insertions(+), 3359 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d4820b99e3b9..9af6e522f2f2 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4, 0, 9, "final", 0 +current_version = 4, 0, 10, "final", 0 commit = False tag = False parse = (?P\d+)\,\ (?P\d+)\,\ (?P\d+)\,\ \"(?P\S+)\"\,\ (?P\d+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d270d87b3586..f8d49ce17367 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -101,6 +101,38 @@ To ease code migration to JupyterLab 4, developers should review the [migration +## 4.0.10 + +([Full Changelog](https://github.com/jupyterlab/jupyterlab/compare/v4.0.9...b9bc3002b1ab89b9a1c4d2a3007c43275d11e0df)) + +### Bugs fixed + +- Backport PR #15386: Improve scrolling to heading [#15565](https://github.com/jupyterlab/jupyterlab/pull/15565) ([@krassowski](https://github.com/krassowski)) +- Workaround focus leaving input box on consecutive submissions [#15479](https://github.com/jupyterlab/jupyterlab/pull/15479) ([@krassowski](https://github.com/krassowski)) +- Fix search coming back in notebook and editor [#15443](https://github.com/jupyterlab/jupyterlab/pull/15443) ([@krassowski](https://github.com/krassowski)) +- Fix `jupyter labextension watch --help` [#15542](https://github.com/jupyterlab/jupyterlab/pull/15542) ([@akx](https://github.com/akx)) +- Fix `FormComponent` showing error indicators in all fields when using a `customValidate` function [#15464](https://github.com/jupyterlab/jupyterlab/pull/15464) ([@mmichilot](https://github.com/mmichilot)) +- Fix Shift + L not working in stdin [#15440](https://github.com/jupyterlab/jupyterlab/pull/15440) ([@krassowski](https://github.com/krassowski)) + +### Maintenance and upkeep improvements + +- Backport PR #15499: Adopt ruff format [#15564](https://github.com/jupyterlab/jupyterlab/pull/15564) ([@krassowski](https://github.com/krassowski)) +- Pin `actions/labeler` to v4 to fix failing CI action [#15496](https://github.com/jupyterlab/jupyterlab/pull/15496) ([@krassowski](https://github.com/krassowski)) +- Fix URLs in debugger-extension [#15462](https://github.com/jupyterlab/jupyterlab/pull/15462) ([@fcollonval](https://github.com/fcollonval)) +- More robust galata/UI tests [#15355](https://github.com/jupyterlab/jupyterlab/pull/15355) ([@krassowski](https://github.com/krassowski)) + +### Documentation improvements + +- Backport PR #15499: Adopt ruff format [#15564](https://github.com/jupyterlab/jupyterlab/pull/15564) ([@krassowski](https://github.com/krassowski)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyterlab/jupyterlab/graphs/contributors?from=2023-11-18&to=2023-12-29&type=c)) + +[@afshin](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Aafshin+updated%3A2023-11-18..2023-12-29&type=Issues) | [@brichet](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Abrichet+updated%3A2023-11-18..2023-12-29&type=Issues) | [@davidbrochart](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Adavidbrochart+updated%3A2023-11-18..2023-12-29&type=Issues) | [@echarles](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Aecharles+updated%3A2023-11-18..2023-12-29&type=Issues) | [@fcollonval](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Afcollonval+updated%3A2023-11-18..2023-12-29&type=Issues) | [@g547315](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ag547315+updated%3A2023-11-18..2023-12-29&type=Issues) | [@gabalafou](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Agabalafou+updated%3A2023-11-18..2023-12-29&type=Issues) | [@GabrielaVives](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3AGabrielaVives+updated%3A2023-11-18..2023-12-29&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Agithub-actions+updated%3A2023-11-18..2023-12-29&type=Issues) | [@j264415](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Aj264415+updated%3A2023-11-18..2023-12-29&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ajtpio+updated%3A2023-11-18..2023-12-29&type=Issues) | [@jupyterlab-probot](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ajupyterlab-probot+updated%3A2023-11-18..2023-12-29&type=Issues) | [@krassowski](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Akrassowski+updated%3A2023-11-18..2023-12-29&type=Issues) | [@lumberbot-app](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Alumberbot-app+updated%3A2023-11-18..2023-12-29&type=Issues) | [@meeseeksmachine](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ameeseeksmachine+updated%3A2023-11-18..2023-12-29&type=Issues) | [@parmentelat](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Aparmentelat+updated%3A2023-11-18..2023-12-29&type=Issues) | [@tonyfast](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Atonyfast+updated%3A2023-11-18..2023-12-29&type=Issues) | [@welcome](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Awelcome+updated%3A2023-11-18..2023-12-29&type=Issues) | [@Wh1isper](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3AWh1isper+updated%3A2023-11-18..2023-12-29&type=Issues) + + + ## 4.0.9 ([Full Changelog](https://github.com/jupyterlab/jupyterlab/compare/v4.0.8...685fad189917242f1736d2c88a890f346874472d)) @@ -132,8 +164,6 @@ To ease code migration to JupyterLab 4, developers should review the [migration [@blink1073](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ablink1073+updated%3A2023-11-02..2023-11-18&type=Issues) | [@brichet](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Abrichet+updated%3A2023-11-02..2023-11-18&type=Issues) | [@dharmaquark](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Adharmaquark+updated%3A2023-11-02..2023-11-18&type=Issues) | [@fcollonval](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Afcollonval+updated%3A2023-11-02..2023-11-18&type=Issues) | [@gabalafou](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Agabalafou+updated%3A2023-11-02..2023-11-18&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Agithub-actions+updated%3A2023-11-02..2023-11-18&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ajtpio+updated%3A2023-11-02..2023-11-18&type=Issues) | [@jupyterlab-probot](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ajupyterlab-probot+updated%3A2023-11-02..2023-11-18&type=Issues) | [@krassowski](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Akrassowski+updated%3A2023-11-02..2023-11-18&type=Issues) | [@lumberbot-app](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Alumberbot-app+updated%3A2023-11-02..2023-11-18&type=Issues) | [@meeseeksmachine](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ameeseeksmachine+updated%3A2023-11-02..2023-11-18&type=Issues) | [@skyetim](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Askyetim+updated%3A2023-11-02..2023-11-18&type=Issues) | [@tonyfast](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Atonyfast+updated%3A2023-11-02..2023-11-18&type=Issues) | [@welcome](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Awelcome+updated%3A2023-11-02..2023-11-18&type=Issues) - - ## 4.0.8 ([Full Changelog](https://github.com/jupyterlab/jupyterlab/compare/v4.0.7...86078b863e794fe26154576118dae972f071ea2f)) diff --git a/builder/package.json b/builder/package.json index 3bb6036604f9..29acc1516161 100644 --- a/builder/package.json +++ b/builder/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/builder", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Extension Builder", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { diff --git a/buildutils/package.json b/buildutils/package.json index c06d8135014d..07050b5dd27e 100644 --- a/buildutils/package.json +++ b/buildutils/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/buildutils", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Build Utilities", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { diff --git a/buildutils/template/package.json b/buildutils/template/package.json index 9cbd58a75e61..72ff71ed3dd0 100644 --- a/buildutils/template/package.json +++ b/buildutils/template/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/template", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Package Template", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,7 +37,7 @@ "watch": "tsc -b --watch" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "rimraf": "~3.0.0", "typescript": "~5.0.4" diff --git a/dev_mode/package.json b/dev_mode/package.json index e1af469aa12a..44666359dada 100644 --- a/dev_mode/package.json +++ b/dev_mode/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/application-top", - "version": "4.0.9", + "version": "4.0.10", "private": true, "license": "BSD-3-Clause", "scripts": { @@ -21,97 +21,97 @@ "@codemirror/state": "^6.2.0", "@codemirror/view": "^6.9.6", "@jupyter/ydoc": "~1.1.1", - "@jupyterlab/application": "~4.0.9", - "@jupyterlab/application-extension": "~4.0.9", - "@jupyterlab/apputils": "~4.1.9", - "@jupyterlab/apputils-extension": "~4.0.9", - "@jupyterlab/attachments": "~4.0.9", - "@jupyterlab/cell-toolbar": "~4.0.9", - "@jupyterlab/cell-toolbar-extension": "~4.0.9", - "@jupyterlab/cells": "~4.0.9", - "@jupyterlab/celltags-extension": "~4.0.9", - "@jupyterlab/codeeditor": "~4.0.9", - "@jupyterlab/codemirror": "~4.0.9", - "@jupyterlab/codemirror-extension": "~4.0.9", - "@jupyterlab/completer": "~4.0.9", - "@jupyterlab/completer-extension": "~4.0.9", - "@jupyterlab/console": "~4.0.9", - "@jupyterlab/console-extension": "~4.0.9", - "@jupyterlab/coreutils": "~6.0.9", - "@jupyterlab/csvviewer": "~4.0.9", - "@jupyterlab/csvviewer-extension": "~4.0.9", - "@jupyterlab/debugger": "~4.0.9", - "@jupyterlab/debugger-extension": "~4.0.9", - "@jupyterlab/docmanager": "~4.0.9", - "@jupyterlab/docmanager-extension": "~4.0.9", - "@jupyterlab/docregistry": "~4.0.9", - "@jupyterlab/documentsearch": "~4.0.9", - "@jupyterlab/documentsearch-extension": "~4.0.9", - "@jupyterlab/extensionmanager": "~4.0.9", - "@jupyterlab/extensionmanager-extension": "~4.0.9", - "@jupyterlab/filebrowser": "~4.0.9", - "@jupyterlab/filebrowser-extension": "~4.0.9", - "@jupyterlab/fileeditor": "~4.0.9", - "@jupyterlab/fileeditor-extension": "~4.0.9", - "@jupyterlab/help-extension": "~4.0.9", - "@jupyterlab/htmlviewer": "~4.0.9", - "@jupyterlab/htmlviewer-extension": "~4.0.9", - "@jupyterlab/hub-extension": "~4.0.9", - "@jupyterlab/imageviewer": "~4.0.9", - "@jupyterlab/imageviewer-extension": "~4.0.9", - "@jupyterlab/inspector": "~4.0.9", - "@jupyterlab/inspector-extension": "~4.0.9", - "@jupyterlab/javascript-extension": "~4.0.9", - "@jupyterlab/json-extension": "~4.0.9", - "@jupyterlab/launcher": "~4.0.9", - "@jupyterlab/launcher-extension": "~4.0.9", - "@jupyterlab/logconsole": "~4.0.9", - "@jupyterlab/logconsole-extension": "~4.0.9", - "@jupyterlab/lsp": "~4.0.9", - "@jupyterlab/lsp-extension": "~4.0.9", - "@jupyterlab/mainmenu": "~4.0.9", - "@jupyterlab/mainmenu-extension": "~4.0.9", - "@jupyterlab/markdownviewer": "~4.0.9", - "@jupyterlab/markdownviewer-extension": "~4.0.9", - "@jupyterlab/markedparser-extension": "~4.0.9", - "@jupyterlab/mathjax-extension": "~4.0.9", - "@jupyterlab/metadataform": "~4.0.9", - "@jupyterlab/metadataform-extension": "~4.0.9", - "@jupyterlab/metapackage": "~4.0.9", - "@jupyterlab/nbconvert-css": "~4.0.9", - "@jupyterlab/nbformat": "~4.0.9", - "@jupyterlab/notebook": "~4.0.9", - "@jupyterlab/notebook-extension": "~4.0.9", - "@jupyterlab/observables": "~5.0.9", - "@jupyterlab/outputarea": "~4.0.9", - "@jupyterlab/pdf-extension": "~4.0.9", - "@jupyterlab/property-inspector": "~4.0.9", - "@jupyterlab/rendermime": "~4.0.9", - "@jupyterlab/rendermime-extension": "~4.0.9", - "@jupyterlab/rendermime-interfaces": "~3.8.9", - "@jupyterlab/running": "~4.0.9", - "@jupyterlab/running-extension": "~4.0.9", - "@jupyterlab/services": "~7.0.9", - "@jupyterlab/settingeditor": "~4.0.9", - "@jupyterlab/settingeditor-extension": "~4.0.9", - "@jupyterlab/settingregistry": "~4.0.9", - "@jupyterlab/shortcuts-extension": "~4.0.9", - "@jupyterlab/statedb": "~4.0.9", - "@jupyterlab/statusbar": "~4.0.9", - "@jupyterlab/statusbar-extension": "~4.0.9", - "@jupyterlab/terminal": "~4.0.9", - "@jupyterlab/terminal-extension": "~4.0.9", - "@jupyterlab/theme-dark-extension": "~4.0.9", - "@jupyterlab/theme-light-extension": "~4.0.9", - "@jupyterlab/toc": "~6.0.9", - "@jupyterlab/toc-extension": "~6.0.9", - "@jupyterlab/tooltip": "~4.0.9", - "@jupyterlab/tooltip-extension": "~4.0.9", - "@jupyterlab/translation": "~4.0.9", - "@jupyterlab/translation-extension": "~4.0.9", - "@jupyterlab/ui-components": "~4.0.9", - "@jupyterlab/ui-components-extension": "~4.0.9", - "@jupyterlab/vega5-extension": "~4.0.9", + "@jupyterlab/application": "~4.0.10", + "@jupyterlab/application-extension": "~4.0.10", + "@jupyterlab/apputils": "~4.1.10", + "@jupyterlab/apputils-extension": "~4.0.10", + "@jupyterlab/attachments": "~4.0.10", + "@jupyterlab/cell-toolbar": "~4.0.10", + "@jupyterlab/cell-toolbar-extension": "~4.0.10", + "@jupyterlab/cells": "~4.0.10", + "@jupyterlab/celltags-extension": "~4.0.10", + "@jupyterlab/codeeditor": "~4.0.10", + "@jupyterlab/codemirror": "~4.0.10", + "@jupyterlab/codemirror-extension": "~4.0.10", + "@jupyterlab/completer": "~4.0.10", + "@jupyterlab/completer-extension": "~4.0.10", + "@jupyterlab/console": "~4.0.10", + "@jupyterlab/console-extension": "~4.0.10", + "@jupyterlab/coreutils": "~6.0.10", + "@jupyterlab/csvviewer": "~4.0.10", + "@jupyterlab/csvviewer-extension": "~4.0.10", + "@jupyterlab/debugger": "~4.0.10", + "@jupyterlab/debugger-extension": "~4.0.10", + "@jupyterlab/docmanager": "~4.0.10", + "@jupyterlab/docmanager-extension": "~4.0.10", + "@jupyterlab/docregistry": "~4.0.10", + "@jupyterlab/documentsearch": "~4.0.10", + "@jupyterlab/documentsearch-extension": "~4.0.10", + "@jupyterlab/extensionmanager": "~4.0.10", + "@jupyterlab/extensionmanager-extension": "~4.0.10", + "@jupyterlab/filebrowser": "~4.0.10", + "@jupyterlab/filebrowser-extension": "~4.0.10", + "@jupyterlab/fileeditor": "~4.0.10", + "@jupyterlab/fileeditor-extension": "~4.0.10", + "@jupyterlab/help-extension": "~4.0.10", + "@jupyterlab/htmlviewer": "~4.0.10", + "@jupyterlab/htmlviewer-extension": "~4.0.10", + "@jupyterlab/hub-extension": "~4.0.10", + "@jupyterlab/imageviewer": "~4.0.10", + "@jupyterlab/imageviewer-extension": "~4.0.10", + "@jupyterlab/inspector": "~4.0.10", + "@jupyterlab/inspector-extension": "~4.0.10", + "@jupyterlab/javascript-extension": "~4.0.10", + "@jupyterlab/json-extension": "~4.0.10", + "@jupyterlab/launcher": "~4.0.10", + "@jupyterlab/launcher-extension": "~4.0.10", + "@jupyterlab/logconsole": "~4.0.10", + "@jupyterlab/logconsole-extension": "~4.0.10", + "@jupyterlab/lsp": "~4.0.10", + "@jupyterlab/lsp-extension": "~4.0.10", + "@jupyterlab/mainmenu": "~4.0.10", + "@jupyterlab/mainmenu-extension": "~4.0.10", + "@jupyterlab/markdownviewer": "~4.0.10", + "@jupyterlab/markdownviewer-extension": "~4.0.10", + "@jupyterlab/markedparser-extension": "~4.0.10", + "@jupyterlab/mathjax-extension": "~4.0.10", + "@jupyterlab/metadataform": "~4.0.10", + "@jupyterlab/metadataform-extension": "~4.0.10", + "@jupyterlab/metapackage": "~4.0.10", + "@jupyterlab/nbconvert-css": "~4.0.10", + "@jupyterlab/nbformat": "~4.0.10", + "@jupyterlab/notebook": "~4.0.10", + "@jupyterlab/notebook-extension": "~4.0.10", + "@jupyterlab/observables": "~5.0.10", + "@jupyterlab/outputarea": "~4.0.10", + "@jupyterlab/pdf-extension": "~4.0.10", + "@jupyterlab/property-inspector": "~4.0.10", + "@jupyterlab/rendermime": "~4.0.10", + "@jupyterlab/rendermime-extension": "~4.0.10", + "@jupyterlab/rendermime-interfaces": "~3.8.10", + "@jupyterlab/running": "~4.0.10", + "@jupyterlab/running-extension": "~4.0.10", + "@jupyterlab/services": "~7.0.10", + "@jupyterlab/settingeditor": "~4.0.10", + "@jupyterlab/settingeditor-extension": "~4.0.10", + "@jupyterlab/settingregistry": "~4.0.10", + "@jupyterlab/shortcuts-extension": "~4.0.10", + "@jupyterlab/statedb": "~4.0.10", + "@jupyterlab/statusbar": "~4.0.10", + "@jupyterlab/statusbar-extension": "~4.0.10", + "@jupyterlab/terminal": "~4.0.10", + "@jupyterlab/terminal-extension": "~4.0.10", + "@jupyterlab/theme-dark-extension": "~4.0.10", + "@jupyterlab/theme-light-extension": "~4.0.10", + "@jupyterlab/toc": "~6.0.10", + "@jupyterlab/toc-extension": "~6.0.10", + "@jupyterlab/tooltip": "~4.0.10", + "@jupyterlab/tooltip-extension": "~4.0.10", + "@jupyterlab/translation": "~4.0.10", + "@jupyterlab/translation-extension": "~4.0.10", + "@jupyterlab/ui-components": "~4.0.10", + "@jupyterlab/ui-components-extension": "~4.0.10", + "@jupyterlab/vega5-extension": "~4.0.10", "@lezer/common": "^1.0.0", "@lezer/highlight": "^1.0.0", "@lumino/algorithm": "^2.0.0", @@ -134,56 +134,56 @@ "yjs": "^13.5.40" }, "dependencies": { - "@jupyterlab/application": "~4.0.9", - "@jupyterlab/application-extension": "~4.0.9", - "@jupyterlab/apputils-extension": "~4.0.9", - "@jupyterlab/cell-toolbar-extension": "~4.0.9", - "@jupyterlab/celltags-extension": "~4.0.9", - "@jupyterlab/codemirror-extension": "~4.0.9", - "@jupyterlab/completer-extension": "~4.0.9", - "@jupyterlab/console-extension": "~4.0.9", - "@jupyterlab/coreutils": "~6.0.9", - "@jupyterlab/csvviewer-extension": "~4.0.9", - "@jupyterlab/debugger-extension": "~4.0.9", - "@jupyterlab/docmanager-extension": "~4.0.9", - "@jupyterlab/documentsearch-extension": "~4.0.9", - "@jupyterlab/extensionmanager-extension": "~4.0.9", - "@jupyterlab/filebrowser-extension": "~4.0.9", - "@jupyterlab/fileeditor-extension": "~4.0.9", - "@jupyterlab/help-extension": "~4.0.9", - "@jupyterlab/htmlviewer-extension": "~4.0.9", - "@jupyterlab/hub-extension": "~4.0.9", - "@jupyterlab/imageviewer-extension": "~4.0.9", - "@jupyterlab/inspector-extension": "~4.0.9", - "@jupyterlab/javascript-extension": "~4.0.9", - "@jupyterlab/json-extension": "~4.0.9", - "@jupyterlab/launcher-extension": "~4.0.9", - "@jupyterlab/logconsole-extension": "~4.0.9", - "@jupyterlab/lsp-extension": "~4.0.9", - "@jupyterlab/mainmenu-extension": "~4.0.9", - "@jupyterlab/markdownviewer-extension": "~4.0.9", - "@jupyterlab/markedparser-extension": "~4.0.9", - "@jupyterlab/mathjax-extension": "~4.0.9", - "@jupyterlab/metadataform-extension": "~4.0.9", - "@jupyterlab/notebook-extension": "~4.0.9", - "@jupyterlab/pdf-extension": "~4.0.9", - "@jupyterlab/rendermime-extension": "~4.0.9", - "@jupyterlab/running-extension": "~4.0.9", - "@jupyterlab/settingeditor-extension": "~4.0.9", - "@jupyterlab/shortcuts-extension": "~4.0.9", - "@jupyterlab/statusbar-extension": "~4.0.9", - "@jupyterlab/terminal-extension": "~4.0.9", - "@jupyterlab/theme-dark-extension": "~4.0.9", - "@jupyterlab/theme-light-extension": "~4.0.9", - "@jupyterlab/toc-extension": "~6.0.9", - "@jupyterlab/tooltip-extension": "~4.0.9", - "@jupyterlab/translation-extension": "~4.0.9", - "@jupyterlab/ui-components-extension": "~4.0.9", - "@jupyterlab/vega5-extension": "~4.0.9" + "@jupyterlab/application": "~4.0.10", + "@jupyterlab/application-extension": "~4.0.10", + "@jupyterlab/apputils-extension": "~4.0.10", + "@jupyterlab/cell-toolbar-extension": "~4.0.10", + "@jupyterlab/celltags-extension": "~4.0.10", + "@jupyterlab/codemirror-extension": "~4.0.10", + "@jupyterlab/completer-extension": "~4.0.10", + "@jupyterlab/console-extension": "~4.0.10", + "@jupyterlab/coreutils": "~6.0.10", + "@jupyterlab/csvviewer-extension": "~4.0.10", + "@jupyterlab/debugger-extension": "~4.0.10", + "@jupyterlab/docmanager-extension": "~4.0.10", + "@jupyterlab/documentsearch-extension": "~4.0.10", + "@jupyterlab/extensionmanager-extension": "~4.0.10", + "@jupyterlab/filebrowser-extension": "~4.0.10", + "@jupyterlab/fileeditor-extension": "~4.0.10", + "@jupyterlab/help-extension": "~4.0.10", + "@jupyterlab/htmlviewer-extension": "~4.0.10", + "@jupyterlab/hub-extension": "~4.0.10", + "@jupyterlab/imageviewer-extension": "~4.0.10", + "@jupyterlab/inspector-extension": "~4.0.10", + "@jupyterlab/javascript-extension": "~4.0.10", + "@jupyterlab/json-extension": "~4.0.10", + "@jupyterlab/launcher-extension": "~4.0.10", + "@jupyterlab/logconsole-extension": "~4.0.10", + "@jupyterlab/lsp-extension": "~4.0.10", + "@jupyterlab/mainmenu-extension": "~4.0.10", + "@jupyterlab/markdownviewer-extension": "~4.0.10", + "@jupyterlab/markedparser-extension": "~4.0.10", + "@jupyterlab/mathjax-extension": "~4.0.10", + "@jupyterlab/metadataform-extension": "~4.0.10", + "@jupyterlab/notebook-extension": "~4.0.10", + "@jupyterlab/pdf-extension": "~4.0.10", + "@jupyterlab/rendermime-extension": "~4.0.10", + "@jupyterlab/running-extension": "~4.0.10", + "@jupyterlab/settingeditor-extension": "~4.0.10", + "@jupyterlab/shortcuts-extension": "~4.0.10", + "@jupyterlab/statusbar-extension": "~4.0.10", + "@jupyterlab/terminal-extension": "~4.0.10", + "@jupyterlab/theme-dark-extension": "~4.0.10", + "@jupyterlab/theme-light-extension": "~4.0.10", + "@jupyterlab/toc-extension": "~6.0.10", + "@jupyterlab/tooltip-extension": "~4.0.10", + "@jupyterlab/translation-extension": "~4.0.10", + "@jupyterlab/ui-components-extension": "~4.0.10", + "@jupyterlab/vega5-extension": "~4.0.10" }, "devDependencies": { - "@jupyterlab/builder": "^4.0.9", - "@jupyterlab/buildutils": "^4.0.9", + "@jupyterlab/builder": "^4.0.10", + "@jupyterlab/buildutils": "^4.0.10", "chokidar": "^3.4.0", "css-loader": "^6.7.1", "duplicate-package-checker-webpack-plugin": "^3.0.0", @@ -212,7 +212,7 @@ }, "jupyterlab": { "name": "JupyterLab", - "version": "4.0.9", + "version": "4.0.10", "extensions": { "@jupyterlab/application-extension": "", "@jupyterlab/apputils-extension": "", diff --git a/examples/app/package.json b/examples/app/package.json index ad5909408301..7f7daef9de66 100644 --- a/examples/app/package.json +++ b/examples/app/package.json @@ -1,45 +1,45 @@ { "name": "@jupyterlab/example-app", - "version": "4.0.9", + "version": "4.0.10", "private": true, "scripts": { "build": "webpack", "clean": "rimraf build" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/application-extension": "^4.0.9", - "@jupyterlab/apputils-extension": "^4.0.9", - "@jupyterlab/builder": "^4.0.9", - "@jupyterlab/celltags-extension": "^4.0.9", - "@jupyterlab/codemirror-extension": "^4.0.9", - "@jupyterlab/completer-extension": "^4.0.9", - "@jupyterlab/console-extension": "^4.0.9", - "@jupyterlab/csvviewer-extension": "^4.0.9", - "@jupyterlab/docmanager-extension": "^4.0.9", - "@jupyterlab/filebrowser-extension": "^4.0.9", - "@jupyterlab/fileeditor-extension": "^4.0.9", - "@jupyterlab/help-extension": "^4.0.9", - "@jupyterlab/imageviewer-extension": "^4.0.9", - "@jupyterlab/inspector-extension": "^4.0.9", - "@jupyterlab/launcher-extension": "^4.0.9", - "@jupyterlab/mainmenu-extension": "^4.0.9", - "@jupyterlab/markdownviewer-extension": "^4.0.9", - "@jupyterlab/mathjax-extension": "^4.0.9", - "@jupyterlab/metadataform-extension": "^4.0.9", - "@jupyterlab/notebook-extension": "^4.0.9", - "@jupyterlab/rendermime-extension": "^4.0.9", - "@jupyterlab/running-extension": "^4.0.9", - "@jupyterlab/settingeditor-extension": "^4.0.9", - "@jupyterlab/shortcuts-extension": "^4.0.9", - "@jupyterlab/statusbar-extension": "^4.0.9", - "@jupyterlab/theme-dark-extension": "^4.0.9", - "@jupyterlab/theme-light-extension": "^4.0.9", - "@jupyterlab/toc-extension": "^6.0.9", - "@jupyterlab/tooltip-extension": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/translation-extension": "^4.0.9", - "@jupyterlab/ui-components-extension": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/application-extension": "^4.0.10", + "@jupyterlab/apputils-extension": "^4.0.10", + "@jupyterlab/builder": "^4.0.10", + "@jupyterlab/celltags-extension": "^4.0.10", + "@jupyterlab/codemirror-extension": "^4.0.10", + "@jupyterlab/completer-extension": "^4.0.10", + "@jupyterlab/console-extension": "^4.0.10", + "@jupyterlab/csvviewer-extension": "^4.0.10", + "@jupyterlab/docmanager-extension": "^4.0.10", + "@jupyterlab/filebrowser-extension": "^4.0.10", + "@jupyterlab/fileeditor-extension": "^4.0.10", + "@jupyterlab/help-extension": "^4.0.10", + "@jupyterlab/imageviewer-extension": "^4.0.10", + "@jupyterlab/inspector-extension": "^4.0.10", + "@jupyterlab/launcher-extension": "^4.0.10", + "@jupyterlab/mainmenu-extension": "^4.0.10", + "@jupyterlab/markdownviewer-extension": "^4.0.10", + "@jupyterlab/mathjax-extension": "^4.0.10", + "@jupyterlab/metadataform-extension": "^4.0.10", + "@jupyterlab/notebook-extension": "^4.0.10", + "@jupyterlab/rendermime-extension": "^4.0.10", + "@jupyterlab/running-extension": "^4.0.10", + "@jupyterlab/settingeditor-extension": "^4.0.10", + "@jupyterlab/shortcuts-extension": "^4.0.10", + "@jupyterlab/statusbar-extension": "^4.0.10", + "@jupyterlab/theme-dark-extension": "^4.0.10", + "@jupyterlab/theme-light-extension": "^4.0.10", + "@jupyterlab/toc-extension": "^6.0.10", + "@jupyterlab/tooltip-extension": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/translation-extension": "^4.0.10", + "@jupyterlab/ui-components-extension": "^4.0.10", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/examples/cell/package.json b/examples/cell/package.json index 35435e70408a..9d4beab00164 100644 --- a/examples/cell/package.json +++ b/examples/cell/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-cell", - "version": "4.0.9", + "version": "4.0.10", "private": true, "scripts": { "build": "tsc -p src && webpack", @@ -8,16 +8,16 @@ }, "dependencies": { "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/cells": "^4.0.9", - "@jupyterlab/codemirror": "^4.0.9", - "@jupyterlab/completer": "^4.0.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/rendermime": "^4.0.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/theme-light-extension": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/cells": "^4.0.10", + "@jupyterlab/codemirror": "^4.0.10", + "@jupyterlab/completer": "^4.0.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/rendermime": "^4.0.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/theme-light-extension": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/commands": "^2.1.3", "@lumino/widgets": "^2.3.0" }, diff --git a/examples/console/package.json b/examples/console/package.json index 795cb76935ed..d487b7f6f9cb 100644 --- a/examples/console/package.json +++ b/examples/console/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-console", - "version": "4.0.9", + "version": "4.0.10", "private": true, "scripts": { "build": "tsc -p src && webpack", @@ -8,14 +8,14 @@ }, "dependencies": { "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/codemirror": "^4.0.9", - "@jupyterlab/console": "^4.0.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/rendermime": "^4.0.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/theme-light-extension": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/codemirror": "^4.0.10", + "@jupyterlab/console": "^4.0.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/rendermime": "^4.0.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/theme-light-extension": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", "@lumino/commands": "^2.1.3", "@lumino/widgets": "^2.3.0" }, diff --git a/examples/federated/core_package/package.json b/examples/federated/core_package/package.json index ac2e98f5c2ae..9d96f0da4e97 100644 --- a/examples/federated/core_package/package.json +++ b/examples/federated/core_package/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-federated-core", - "version": "3.0.9", + "version": "3.0.10", "private": true, "scripts": { "build": "npm run clean && webpack", @@ -8,77 +8,77 @@ "watch": "npm run clean && webpack --watch" }, "resolutions": { - "@jupyterlab/application": "~4.0.9", - "@jupyterlab/application-extension": "~4.0.9", + "@jupyterlab/application": "~4.0.10", + "@jupyterlab/application-extension": "~4.0.10", "@jupyterlab/apputils": "^4.0.0-alpha.15", - "@jupyterlab/apputils-extension": "~4.0.9", + "@jupyterlab/apputils-extension": "~4.0.10", "@jupyterlab/attachments": "^4.0.0-alpha.15", "@jupyterlab/cells": "~4.0.0-alpha.3", - "@jupyterlab/celltags-extension": "~4.0.9", + "@jupyterlab/celltags-extension": "~4.0.10", "@jupyterlab/codeeditor": "^4.0.0-alpha.15", - "@jupyterlab/codemirror-extension": "~4.0.9", + "@jupyterlab/codemirror-extension": "~4.0.10", "@jupyterlab/completer": "^4.0.0-alpha.15", - "@jupyterlab/completer-extension": "~4.0.9", + "@jupyterlab/completer-extension": "~4.0.10", "@jupyterlab/console": "^4.0.0-alpha.15", - "@jupyterlab/console-extension": "~4.0.9", - "@jupyterlab/coreutils": "~6.0.9", - "@jupyterlab/csvviewer-extension": "~4.0.9", + "@jupyterlab/console-extension": "~4.0.10", + "@jupyterlab/coreutils": "~6.0.10", + "@jupyterlab/csvviewer-extension": "~4.0.10", "@jupyterlab/debugger": "^4.0.0-alpha.15", - "@jupyterlab/debugger-extension": "~4.0.9", + "@jupyterlab/debugger-extension": "~4.0.10", "@jupyterlab/docmanager": "^4.0.0-alpha.15", - "@jupyterlab/docmanager-extension": "~4.0.9", + "@jupyterlab/docmanager-extension": "~4.0.10", "@jupyterlab/documentsearch": "^4.0.0-alpha.15", - "@jupyterlab/documentsearch-extension": "~4.0.9", + "@jupyterlab/documentsearch-extension": "~4.0.10", "@jupyterlab/extensionmanager": "^4.0.0-alpha.15", - "@jupyterlab/extensionmanager-extension": "~4.0.9", + "@jupyterlab/extensionmanager-extension": "~4.0.10", "@jupyterlab/filebrowser": "^4.0.0-alpha.15", - "@jupyterlab/filebrowser-extension": "~4.0.9", + "@jupyterlab/filebrowser-extension": "~4.0.10", "@jupyterlab/fileeditor": "^4.0.0-alpha.15", - "@jupyterlab/fileeditor-extension": "~4.0.9", - "@jupyterlab/help-extension": "~4.0.9", - "@jupyterlab/htmlviewer-extension": "~4.0.9", - "@jupyterlab/hub-extension": "~4.0.9", + "@jupyterlab/fileeditor-extension": "~4.0.10", + "@jupyterlab/help-extension": "~4.0.10", + "@jupyterlab/htmlviewer-extension": "~4.0.10", + "@jupyterlab/hub-extension": "~4.0.10", "@jupyterlab/imageviewer": "^4.0.0-alpha.15", - "@jupyterlab/imageviewer-extension": "~4.0.9", + "@jupyterlab/imageviewer-extension": "~4.0.10", "@jupyterlab/inspector": "^4.0.0-alpha.15", - "@jupyterlab/inspector-extension": "~4.0.9", - "@jupyterlab/javascript-extension": "~4.0.9", - "@jupyterlab/json-extension": "~4.0.9", + "@jupyterlab/inspector-extension": "~4.0.10", + "@jupyterlab/javascript-extension": "~4.0.10", + "@jupyterlab/json-extension": "~4.0.10", "@jupyterlab/launcher": "^4.0.0-alpha.15", - "@jupyterlab/launcher-extension": "~4.0.9", + "@jupyterlab/launcher-extension": "~4.0.10", "@jupyterlab/logconsole": "^4.0.0-alpha.15", - "@jupyterlab/logconsole-extension": "~4.0.9", + "@jupyterlab/logconsole-extension": "~4.0.10", "@jupyterlab/lsp": "^4.0.0-alpha.15", - "@jupyterlab/lsp-extension": "~4.0.9", + "@jupyterlab/lsp-extension": "~4.0.10", "@jupyterlab/mainmenu": "^4.0.0-alpha.15", - "@jupyterlab/mainmenu-extension": "~4.0.9", + "@jupyterlab/mainmenu-extension": "~4.0.10", "@jupyterlab/markedparser-extension": "~4.0.0-alpha.15", - "@jupyterlab/mathjax-extension": "~4.0.9", + "@jupyterlab/mathjax-extension": "~4.0.10", "@jupyterlab/metadataform": "^4.0.0-alpha.15", - "@jupyterlab/metadataform-extension": "~4.0.9", + "@jupyterlab/metadataform-extension": "~4.0.10", "@jupyterlab/notebook": "^4.0.0-alpha.15", - "@jupyterlab/notebook-extension": "~4.0.9", - "@jupyterlab/pdf-extension": "~4.0.9", + "@jupyterlab/notebook-extension": "~4.0.10", + "@jupyterlab/pdf-extension": "~4.0.10", "@jupyterlab/rendermime": "^4.0.0-alpha.15", - "@jupyterlab/rendermime-extension": "~4.0.9", + "@jupyterlab/rendermime-extension": "~4.0.10", "@jupyterlab/rendermime-interfaces": "^3.8.0-alpha.9", "@jupyterlab/services": "^7.0.0-alpha.15", "@jupyterlab/settingeditor": "^4.0.0-alpha.15", - "@jupyterlab/settingeditor-extension": "~4.0.9", + "@jupyterlab/settingeditor-extension": "~4.0.10", "@jupyterlab/settingregistry": "^4.0.0-alpha.15", - "@jupyterlab/shortcuts-extension": "~4.0.9", + "@jupyterlab/shortcuts-extension": "~4.0.10", "@jupyterlab/statedb": "^4.0.0-alpha.15", "@jupyterlab/statusbar": "^4.0.0-alpha.15", - "@jupyterlab/statusbar-extension": "~4.0.9", - "@jupyterlab/theme-light-extension": "~4.0.9", - "@jupyterlab/toc-extension": "~6.0.9", + "@jupyterlab/statusbar-extension": "~4.0.10", + "@jupyterlab/theme-light-extension": "~4.0.10", + "@jupyterlab/toc-extension": "~6.0.10", "@jupyterlab/tooltip": "^4.0.0-alpha.15", - "@jupyterlab/tooltip-extension": "~4.0.9", - "@jupyterlab/translation": "~4.0.9", - "@jupyterlab/translation-extension": "~4.0.9", + "@jupyterlab/tooltip-extension": "~4.0.10", + "@jupyterlab/translation": "~4.0.10", + "@jupyterlab/translation-extension": "~4.0.10", "@jupyterlab/ui-components": "^4.0.0-alpha.17", - "@jupyterlab/ui-components-extension": "~4.0.9", - "@jupyterlab/vega5-extension": "~4.0.9", + "@jupyterlab/ui-components-extension": "~4.0.10", + "@jupyterlab/vega5-extension": "~4.0.10", "@lumino/algorithm": "^2.0.0", "@lumino/application": "^2.0.1", "@lumino/commands": "^2.0.1", @@ -96,50 +96,50 @@ "yjs": "^13.5.40" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/application-extension": "^4.0.9", - "@jupyterlab/apputils-extension": "^4.0.9", - "@jupyterlab/celltags-extension": "^4.0.9", - "@jupyterlab/codemirror-extension": "^4.0.9", - "@jupyterlab/completer-extension": "^4.0.9", - "@jupyterlab/console-extension": "^4.0.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/csvviewer-extension": "^4.0.9", - "@jupyterlab/debugger-extension": "^4.0.9", - "@jupyterlab/docmanager-extension": "^4.0.9", - "@jupyterlab/documentsearch-extension": "^4.0.9", - "@jupyterlab/extensionmanager-extension": "^4.0.9", - "@jupyterlab/filebrowser-extension": "^4.0.9", - "@jupyterlab/fileeditor-extension": "^4.0.9", - "@jupyterlab/help-extension": "^4.0.9", - "@jupyterlab/htmlviewer-extension": "^4.0.9", - "@jupyterlab/hub-extension": "^4.0.9", - "@jupyterlab/imageviewer-extension": "^4.0.9", - "@jupyterlab/inspector-extension": "^4.0.9", - "@jupyterlab/javascript-extension": "^4.0.9", - "@jupyterlab/json-extension": "^4.0.9", - "@jupyterlab/launcher-extension": "^4.0.9", - "@jupyterlab/logconsole-extension": "^4.0.9", - "@jupyterlab/lsp-extension": "^4.0.9", - "@jupyterlab/mainmenu-extension": "^4.0.9", - "@jupyterlab/mathjax-extension": "^4.0.9", - "@jupyterlab/metadataform-extension": "^4.0.9", - "@jupyterlab/notebook-extension": "^4.0.9", - "@jupyterlab/pdf-extension": "^4.0.9", - "@jupyterlab/rendermime-extension": "^4.0.9", - "@jupyterlab/settingeditor-extension": "^4.0.9", - "@jupyterlab/shortcuts-extension": "^4.0.9", - "@jupyterlab/statusbar-extension": "^4.0.9", - "@jupyterlab/theme-light-extension": "^4.0.9", - "@jupyterlab/toc-extension": "^6.0.9", - "@jupyterlab/tooltip-extension": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/translation-extension": "^4.0.9", - "@jupyterlab/ui-components-extension": "^4.0.9", - "@jupyterlab/vega5-extension": "^4.0.9" + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/application-extension": "^4.0.10", + "@jupyterlab/apputils-extension": "^4.0.10", + "@jupyterlab/celltags-extension": "^4.0.10", + "@jupyterlab/codemirror-extension": "^4.0.10", + "@jupyterlab/completer-extension": "^4.0.10", + "@jupyterlab/console-extension": "^4.0.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/csvviewer-extension": "^4.0.10", + "@jupyterlab/debugger-extension": "^4.0.10", + "@jupyterlab/docmanager-extension": "^4.0.10", + "@jupyterlab/documentsearch-extension": "^4.0.10", + "@jupyterlab/extensionmanager-extension": "^4.0.10", + "@jupyterlab/filebrowser-extension": "^4.0.10", + "@jupyterlab/fileeditor-extension": "^4.0.10", + "@jupyterlab/help-extension": "^4.0.10", + "@jupyterlab/htmlviewer-extension": "^4.0.10", + "@jupyterlab/hub-extension": "^4.0.10", + "@jupyterlab/imageviewer-extension": "^4.0.10", + "@jupyterlab/inspector-extension": "^4.0.10", + "@jupyterlab/javascript-extension": "^4.0.10", + "@jupyterlab/json-extension": "^4.0.10", + "@jupyterlab/launcher-extension": "^4.0.10", + "@jupyterlab/logconsole-extension": "^4.0.10", + "@jupyterlab/lsp-extension": "^4.0.10", + "@jupyterlab/mainmenu-extension": "^4.0.10", + "@jupyterlab/mathjax-extension": "^4.0.10", + "@jupyterlab/metadataform-extension": "^4.0.10", + "@jupyterlab/notebook-extension": "^4.0.10", + "@jupyterlab/pdf-extension": "^4.0.10", + "@jupyterlab/rendermime-extension": "^4.0.10", + "@jupyterlab/settingeditor-extension": "^4.0.10", + "@jupyterlab/shortcuts-extension": "^4.0.10", + "@jupyterlab/statusbar-extension": "^4.0.10", + "@jupyterlab/theme-light-extension": "^4.0.10", + "@jupyterlab/toc-extension": "^6.0.10", + "@jupyterlab/tooltip-extension": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/translation-extension": "^4.0.10", + "@jupyterlab/ui-components-extension": "^4.0.10", + "@jupyterlab/vega5-extension": "^4.0.10" }, "devDependencies": { - "@jupyterlab/builder": "^4.0.9", + "@jupyterlab/builder": "^4.0.10", "copy-webpack-plugin": "^11.0.0", "css-loader": "^6.7.1", "fs-extra": "^10.1.0", diff --git a/examples/federated/md_package/package.json b/examples/federated/md_package/package.json index 83a20a75761d..3f3d567a58f5 100644 --- a/examples/federated/md_package/package.json +++ b/examples/federated/md_package/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-federated-md", - "version": "3.0.9", + "version": "3.0.10", "private": true, "main": "./index.js", "scripts": { @@ -8,13 +8,13 @@ "clean": "rimraf ../labextensions/@jupyterlab/example-federated-md" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/example-federated-middle": "^3.0.9", - "@jupyterlab/markdownviewer-extension": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/example-federated-middle": "^3.0.10", + "@jupyterlab/markdownviewer-extension": "^4.0.10", "@lumino/widgets": "^2.3.0" }, "devDependencies": { - "@jupyterlab/builder": "^4.0.9", + "@jupyterlab/builder": "^4.0.10", "rimraf": "~3.0.0" }, "jupyterlab": { diff --git a/examples/federated/middle_package/package.json b/examples/federated/middle_package/package.json index f481fbbbffef..2d4904d30654 100644 --- a/examples/federated/middle_package/package.json +++ b/examples/federated/middle_package/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-federated-middle", - "version": "3.0.9", + "version": "3.0.10", "private": true, "scripts": { "build": "npm run clean && build-labextension --core-path ../core_package .", @@ -10,7 +10,7 @@ "@lumino/coreutils": "^2.1.2" }, "devDependencies": { - "@jupyterlab/builder": "^4.0.9", + "@jupyterlab/builder": "^4.0.10", "rimraf": "~3.0.0" }, "publishConfig": { diff --git a/examples/federated/package.json b/examples/federated/package.json index be4a3a9d7a83..cc01b2a40065 100644 --- a/examples/federated/package.json +++ b/examples/federated/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-federated", - "version": "3.0.9", + "version": "3.0.10", "private": true, "scripts": { "build": "npm run build:core && npm run build:middle && npm run build:md", diff --git a/examples/filebrowser/package.json b/examples/filebrowser/package.json index 337c431ad1c7..f88351a531f7 100644 --- a/examples/filebrowser/package.json +++ b/examples/filebrowser/package.json @@ -1,24 +1,24 @@ { "name": "@jupyterlab/example-filebrowser", - "version": "4.0.9", + "version": "4.0.10", "private": true, "scripts": { "build": "tsc -p src && webpack", "clean": "rimraf build" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/codemirror": "^4.0.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/docmanager": "^4.0.9", - "@jupyterlab/docregistry": "^4.0.9", - "@jupyterlab/filebrowser": "^4.0.9", - "@jupyterlab/fileeditor": "^4.0.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/theme-light-extension": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/codemirror": "^4.0.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/docmanager": "^4.0.10", + "@jupyterlab/docregistry": "^4.0.10", + "@jupyterlab/filebrowser": "^4.0.10", + "@jupyterlab/fileeditor": "^4.0.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/theme-light-extension": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/commands": "^2.1.3", "@lumino/widgets": "^2.3.0" }, diff --git a/examples/notebook/package.json b/examples/notebook/package.json index 47651f74a2ed..b6b6c4d4a435 100644 --- a/examples/notebook/package.json +++ b/examples/notebook/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-notebook", - "version": "4.0.9", + "version": "4.0.10", "private": true, "scripts": { "build": "tsc -p src && webpack", @@ -8,22 +8,22 @@ }, "dependencies": { "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/codemirror": "^4.0.9", - "@jupyterlab/completer": "^4.0.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/docmanager": "^4.0.9", - "@jupyterlab/docregistry": "^4.0.9", - "@jupyterlab/documentsearch": "^4.0.9", - "@jupyterlab/markedparser-extension": "^4.0.9", - "@jupyterlab/mathjax-extension": "^4.0.9", - "@jupyterlab/notebook": "^4.0.9", - "@jupyterlab/rendermime": "^4.0.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/theme-light-extension": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/codemirror": "^4.0.10", + "@jupyterlab/completer": "^4.0.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/docmanager": "^4.0.10", + "@jupyterlab/docregistry": "^4.0.10", + "@jupyterlab/documentsearch": "^4.0.10", + "@jupyterlab/markedparser-extension": "^4.0.10", + "@jupyterlab/mathjax-extension": "^4.0.10", + "@jupyterlab/notebook": "^4.0.10", + "@jupyterlab/rendermime": "^4.0.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/theme-light-extension": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/commands": "^2.1.3", "@lumino/widgets": "^2.3.0" }, diff --git a/examples/terminal/package.json b/examples/terminal/package.json index e6853eeb039e..9533aacfabf9 100644 --- a/examples/terminal/package.json +++ b/examples/terminal/package.json @@ -1,17 +1,17 @@ { "name": "@jupyterlab/example-terminal", - "version": "4.0.9", + "version": "4.0.10", "private": true, "scripts": { "build": "tsc -p src && webpack", "clean": "rimraf build" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/terminal": "^4.0.9", - "@jupyterlab/theme-light-extension": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/terminal": "^4.0.10", + "@jupyterlab/theme-light-extension": "^4.0.10", "@lumino/widgets": "^2.3.0" }, "devDependencies": { diff --git a/galata/extension/package.json b/galata/extension/package.json index 15f1452caec2..033744c60180 100644 --- a/galata/extension/package.json +++ b/galata/extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/galata-extension", - "version": "5.0.9", + "version": "5.0.10", "private": true, "description": "JupyterLab UI Testing Framework Extension.", "keywords": [ @@ -32,20 +32,20 @@ "clean:lib": "rimraf ../lib/extension tsconfig.tsbuildinfo" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/cells": "^4.0.9", - "@jupyterlab/debugger": "^4.0.9", - "@jupyterlab/docmanager": "^4.0.9", - "@jupyterlab/nbformat": "^4.0.9", - "@jupyterlab/notebook": "^4.0.9", - "@jupyterlab/settingregistry": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/cells": "^4.0.10", + "@jupyterlab/debugger": "^4.0.10", + "@jupyterlab/docmanager": "^4.0.10", + "@jupyterlab/nbformat": "^4.0.10", + "@jupyterlab/notebook": "^4.0.10", + "@jupyterlab/settingregistry": "^4.0.10", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/signaling": "^2.1.2" }, "devDependencies": { - "@jupyterlab/builder": "^4.0.9", + "@jupyterlab/builder": "^4.0.10", "rimraf": "~3.0.0", "typescript": "~5.0.4" }, diff --git a/galata/package.json b/galata/package.json index c228e315044a..5479ab50acc9 100644 --- a/galata/package.json +++ b/galata/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/galata", - "version": "5.0.9", + "version": "5.0.10", "description": "JupyterLab UI Testing Framework", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -44,15 +44,15 @@ "test:update": "jlpm test:base:update && jlpm test:benchmark:update" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/debugger": "^4.0.9", - "@jupyterlab/docmanager": "^4.0.9", - "@jupyterlab/nbformat": "^4.0.9", - "@jupyterlab/notebook": "^4.0.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/settingregistry": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/debugger": "^4.0.10", + "@jupyterlab/docmanager": "^4.0.10", + "@jupyterlab/nbformat": "^4.0.10", + "@jupyterlab/notebook": "^4.0.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/settingregistry": "^4.0.10", "@lumino/coreutils": "^2.1.2", "@playwright/test": "^1.32.2", "@stdlib/stats": "~0.0.13", diff --git a/jupyterlab/_version.py b/jupyterlab/_version.py index 492c88be5677..0f608be70838 100644 --- a/jupyterlab/_version.py +++ b/jupyterlab/_version.py @@ -6,7 +6,7 @@ VersionInfo = namedtuple("VersionInfo", ["major", "minor", "micro", "releaselevel", "serial"]) # DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion -version_info = VersionInfo(4, 0, 9, "final", 0) +version_info = VersionInfo(4, 0, 10, "final", 0) _specifier_ = {"alpha": "a", "beta": "b", "candidate": "rc", "final": ""} diff --git a/jupyterlab/staging/package.json b/jupyterlab/staging/package.json index 619a5cad4c33..2048dfb086b6 100644 --- a/jupyterlab/staging/package.json +++ b/jupyterlab/staging/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/application-top", - "version": "4.0.9", + "version": "4.0.10", "private": true, "license": "BSD-3-Clause", "scripts": { @@ -21,97 +21,97 @@ "@codemirror/state": "^6.2.0", "@codemirror/view": "^6.9.6", "@jupyter/ydoc": "~1.1.1", - "@jupyterlab/application": "~4.0.9", - "@jupyterlab/application-extension": "~4.0.9", - "@jupyterlab/apputils": "~4.1.9", - "@jupyterlab/apputils-extension": "~4.0.9", - "@jupyterlab/attachments": "~4.0.9", - "@jupyterlab/cell-toolbar": "~4.0.9", - "@jupyterlab/cell-toolbar-extension": "~4.0.9", - "@jupyterlab/cells": "~4.0.9", - "@jupyterlab/celltags-extension": "~4.0.9", - "@jupyterlab/codeeditor": "~4.0.9", - "@jupyterlab/codemirror": "~4.0.9", - "@jupyterlab/codemirror-extension": "~4.0.9", - "@jupyterlab/completer": "~4.0.9", - "@jupyterlab/completer-extension": "~4.0.9", - "@jupyterlab/console": "~4.0.9", - "@jupyterlab/console-extension": "~4.0.9", - "@jupyterlab/coreutils": "~6.0.9", - "@jupyterlab/csvviewer": "~4.0.9", - "@jupyterlab/csvviewer-extension": "~4.0.9", - "@jupyterlab/debugger": "~4.0.9", - "@jupyterlab/debugger-extension": "~4.0.9", - "@jupyterlab/docmanager": "~4.0.9", - "@jupyterlab/docmanager-extension": "~4.0.9", - "@jupyterlab/docregistry": "~4.0.9", - "@jupyterlab/documentsearch": "~4.0.9", - "@jupyterlab/documentsearch-extension": "~4.0.9", - "@jupyterlab/extensionmanager": "~4.0.9", - "@jupyterlab/extensionmanager-extension": "~4.0.9", - "@jupyterlab/filebrowser": "~4.0.9", - "@jupyterlab/filebrowser-extension": "~4.0.9", - "@jupyterlab/fileeditor": "~4.0.9", - "@jupyterlab/fileeditor-extension": "~4.0.9", - "@jupyterlab/help-extension": "~4.0.9", - "@jupyterlab/htmlviewer": "~4.0.9", - "@jupyterlab/htmlviewer-extension": "~4.0.9", - "@jupyterlab/hub-extension": "~4.0.9", - "@jupyterlab/imageviewer": "~4.0.9", - "@jupyterlab/imageviewer-extension": "~4.0.9", - "@jupyterlab/inspector": "~4.0.9", - "@jupyterlab/inspector-extension": "~4.0.9", - "@jupyterlab/javascript-extension": "~4.0.9", - "@jupyterlab/json-extension": "~4.0.9", - "@jupyterlab/launcher": "~4.0.9", - "@jupyterlab/launcher-extension": "~4.0.9", - "@jupyterlab/logconsole": "~4.0.9", - "@jupyterlab/logconsole-extension": "~4.0.9", - "@jupyterlab/lsp": "~4.0.9", - "@jupyterlab/lsp-extension": "~4.0.9", - "@jupyterlab/mainmenu": "~4.0.9", - "@jupyterlab/mainmenu-extension": "~4.0.9", - "@jupyterlab/markdownviewer": "~4.0.9", - "@jupyterlab/markdownviewer-extension": "~4.0.9", - "@jupyterlab/markedparser-extension": "~4.0.9", - "@jupyterlab/mathjax-extension": "~4.0.9", - "@jupyterlab/metadataform": "~4.0.9", - "@jupyterlab/metadataform-extension": "~4.0.9", - "@jupyterlab/metapackage": "~4.0.9", - "@jupyterlab/nbconvert-css": "~4.0.9", - "@jupyterlab/nbformat": "~4.0.9", - "@jupyterlab/notebook": "~4.0.9", - "@jupyterlab/notebook-extension": "~4.0.9", - "@jupyterlab/observables": "~5.0.9", - "@jupyterlab/outputarea": "~4.0.9", - "@jupyterlab/pdf-extension": "~4.0.9", - "@jupyterlab/property-inspector": "~4.0.9", - "@jupyterlab/rendermime": "~4.0.9", - "@jupyterlab/rendermime-extension": "~4.0.9", - "@jupyterlab/rendermime-interfaces": "~3.8.9", - "@jupyterlab/running": "~4.0.9", - "@jupyterlab/running-extension": "~4.0.9", - "@jupyterlab/services": "~7.0.9", - "@jupyterlab/settingeditor": "~4.0.9", - "@jupyterlab/settingeditor-extension": "~4.0.9", - "@jupyterlab/settingregistry": "~4.0.9", - "@jupyterlab/shortcuts-extension": "~4.0.9", - "@jupyterlab/statedb": "~4.0.9", - "@jupyterlab/statusbar": "~4.0.9", - "@jupyterlab/statusbar-extension": "~4.0.9", - "@jupyterlab/terminal": "~4.0.9", - "@jupyterlab/terminal-extension": "~4.0.9", - "@jupyterlab/theme-dark-extension": "~4.0.9", - "@jupyterlab/theme-light-extension": "~4.0.9", - "@jupyterlab/toc": "~6.0.9", - "@jupyterlab/toc-extension": "~6.0.9", - "@jupyterlab/tooltip": "~4.0.9", - "@jupyterlab/tooltip-extension": "~4.0.9", - "@jupyterlab/translation": "~4.0.9", - "@jupyterlab/translation-extension": "~4.0.9", - "@jupyterlab/ui-components": "~4.0.9", - "@jupyterlab/ui-components-extension": "~4.0.9", - "@jupyterlab/vega5-extension": "~4.0.9", + "@jupyterlab/application": "~4.0.10", + "@jupyterlab/application-extension": "~4.0.10", + "@jupyterlab/apputils": "~4.1.10", + "@jupyterlab/apputils-extension": "~4.0.10", + "@jupyterlab/attachments": "~4.0.10", + "@jupyterlab/cell-toolbar": "~4.0.10", + "@jupyterlab/cell-toolbar-extension": "~4.0.10", + "@jupyterlab/cells": "~4.0.10", + "@jupyterlab/celltags-extension": "~4.0.10", + "@jupyterlab/codeeditor": "~4.0.10", + "@jupyterlab/codemirror": "~4.0.10", + "@jupyterlab/codemirror-extension": "~4.0.10", + "@jupyterlab/completer": "~4.0.10", + "@jupyterlab/completer-extension": "~4.0.10", + "@jupyterlab/console": "~4.0.10", + "@jupyterlab/console-extension": "~4.0.10", + "@jupyterlab/coreutils": "~6.0.10", + "@jupyterlab/csvviewer": "~4.0.10", + "@jupyterlab/csvviewer-extension": "~4.0.10", + "@jupyterlab/debugger": "~4.0.10", + "@jupyterlab/debugger-extension": "~4.0.10", + "@jupyterlab/docmanager": "~4.0.10", + "@jupyterlab/docmanager-extension": "~4.0.10", + "@jupyterlab/docregistry": "~4.0.10", + "@jupyterlab/documentsearch": "~4.0.10", + "@jupyterlab/documentsearch-extension": "~4.0.10", + "@jupyterlab/extensionmanager": "~4.0.10", + "@jupyterlab/extensionmanager-extension": "~4.0.10", + "@jupyterlab/filebrowser": "~4.0.10", + "@jupyterlab/filebrowser-extension": "~4.0.10", + "@jupyterlab/fileeditor": "~4.0.10", + "@jupyterlab/fileeditor-extension": "~4.0.10", + "@jupyterlab/help-extension": "~4.0.10", + "@jupyterlab/htmlviewer": "~4.0.10", + "@jupyterlab/htmlviewer-extension": "~4.0.10", + "@jupyterlab/hub-extension": "~4.0.10", + "@jupyterlab/imageviewer": "~4.0.10", + "@jupyterlab/imageviewer-extension": "~4.0.10", + "@jupyterlab/inspector": "~4.0.10", + "@jupyterlab/inspector-extension": "~4.0.10", + "@jupyterlab/javascript-extension": "~4.0.10", + "@jupyterlab/json-extension": "~4.0.10", + "@jupyterlab/launcher": "~4.0.10", + "@jupyterlab/launcher-extension": "~4.0.10", + "@jupyterlab/logconsole": "~4.0.10", + "@jupyterlab/logconsole-extension": "~4.0.10", + "@jupyterlab/lsp": "~4.0.10", + "@jupyterlab/lsp-extension": "~4.0.10", + "@jupyterlab/mainmenu": "~4.0.10", + "@jupyterlab/mainmenu-extension": "~4.0.10", + "@jupyterlab/markdownviewer": "~4.0.10", + "@jupyterlab/markdownviewer-extension": "~4.0.10", + "@jupyterlab/markedparser-extension": "~4.0.10", + "@jupyterlab/mathjax-extension": "~4.0.10", + "@jupyterlab/metadataform": "~4.0.10", + "@jupyterlab/metadataform-extension": "~4.0.10", + "@jupyterlab/metapackage": "~4.0.10", + "@jupyterlab/nbconvert-css": "~4.0.10", + "@jupyterlab/nbformat": "~4.0.10", + "@jupyterlab/notebook": "~4.0.10", + "@jupyterlab/notebook-extension": "~4.0.10", + "@jupyterlab/observables": "~5.0.10", + "@jupyterlab/outputarea": "~4.0.10", + "@jupyterlab/pdf-extension": "~4.0.10", + "@jupyterlab/property-inspector": "~4.0.10", + "@jupyterlab/rendermime": "~4.0.10", + "@jupyterlab/rendermime-extension": "~4.0.10", + "@jupyterlab/rendermime-interfaces": "~3.8.10", + "@jupyterlab/running": "~4.0.10", + "@jupyterlab/running-extension": "~4.0.10", + "@jupyterlab/services": "~7.0.10", + "@jupyterlab/settingeditor": "~4.0.10", + "@jupyterlab/settingeditor-extension": "~4.0.10", + "@jupyterlab/settingregistry": "~4.0.10", + "@jupyterlab/shortcuts-extension": "~4.0.10", + "@jupyterlab/statedb": "~4.0.10", + "@jupyterlab/statusbar": "~4.0.10", + "@jupyterlab/statusbar-extension": "~4.0.10", + "@jupyterlab/terminal": "~4.0.10", + "@jupyterlab/terminal-extension": "~4.0.10", + "@jupyterlab/theme-dark-extension": "~4.0.10", + "@jupyterlab/theme-light-extension": "~4.0.10", + "@jupyterlab/toc": "~6.0.10", + "@jupyterlab/toc-extension": "~6.0.10", + "@jupyterlab/tooltip": "~4.0.10", + "@jupyterlab/tooltip-extension": "~4.0.10", + "@jupyterlab/translation": "~4.0.10", + "@jupyterlab/translation-extension": "~4.0.10", + "@jupyterlab/ui-components": "~4.0.10", + "@jupyterlab/ui-components-extension": "~4.0.10", + "@jupyterlab/vega5-extension": "~4.0.10", "@lezer/common": "^1.0.0", "@lezer/highlight": "^1.0.0", "@lumino/algorithm": "^2.0.0", @@ -134,56 +134,56 @@ "yjs": "^13.5.40" }, "dependencies": { - "@jupyterlab/application": "~4.0.9", - "@jupyterlab/application-extension": "~4.0.9", - "@jupyterlab/apputils-extension": "~4.0.9", - "@jupyterlab/cell-toolbar-extension": "~4.0.9", - "@jupyterlab/celltags-extension": "~4.0.9", - "@jupyterlab/codemirror-extension": "~4.0.9", - "@jupyterlab/completer-extension": "~4.0.9", - "@jupyterlab/console-extension": "~4.0.9", - "@jupyterlab/coreutils": "~6.0.9", - "@jupyterlab/csvviewer-extension": "~4.0.9", - "@jupyterlab/debugger-extension": "~4.0.9", - "@jupyterlab/docmanager-extension": "~4.0.9", - "@jupyterlab/documentsearch-extension": "~4.0.9", - "@jupyterlab/extensionmanager-extension": "~4.0.9", - "@jupyterlab/filebrowser-extension": "~4.0.9", - "@jupyterlab/fileeditor-extension": "~4.0.9", - "@jupyterlab/help-extension": "~4.0.9", - "@jupyterlab/htmlviewer-extension": "~4.0.9", - "@jupyterlab/hub-extension": "~4.0.9", - "@jupyterlab/imageviewer-extension": "~4.0.9", - "@jupyterlab/inspector-extension": "~4.0.9", - "@jupyterlab/javascript-extension": "~4.0.9", - "@jupyterlab/json-extension": "~4.0.9", - "@jupyterlab/launcher-extension": "~4.0.9", - "@jupyterlab/logconsole-extension": "~4.0.9", - "@jupyterlab/lsp-extension": "~4.0.9", - "@jupyterlab/mainmenu-extension": "~4.0.9", - "@jupyterlab/markdownviewer-extension": "~4.0.9", - "@jupyterlab/markedparser-extension": "~4.0.9", - "@jupyterlab/mathjax-extension": "~4.0.9", - "@jupyterlab/metadataform-extension": "~4.0.9", - "@jupyterlab/notebook-extension": "~4.0.9", - "@jupyterlab/pdf-extension": "~4.0.9", - "@jupyterlab/rendermime-extension": "~4.0.9", - "@jupyterlab/running-extension": "~4.0.9", - "@jupyterlab/settingeditor-extension": "~4.0.9", - "@jupyterlab/shortcuts-extension": "~4.0.9", - "@jupyterlab/statusbar-extension": "~4.0.9", - "@jupyterlab/terminal-extension": "~4.0.9", - "@jupyterlab/theme-dark-extension": "~4.0.9", - "@jupyterlab/theme-light-extension": "~4.0.9", - "@jupyterlab/toc-extension": "~6.0.9", - "@jupyterlab/tooltip-extension": "~4.0.9", - "@jupyterlab/translation-extension": "~4.0.9", - "@jupyterlab/ui-components-extension": "~4.0.9", - "@jupyterlab/vega5-extension": "~4.0.9" + "@jupyterlab/application": "~4.0.10", + "@jupyterlab/application-extension": "~4.0.10", + "@jupyterlab/apputils-extension": "~4.0.10", + "@jupyterlab/cell-toolbar-extension": "~4.0.10", + "@jupyterlab/celltags-extension": "~4.0.10", + "@jupyterlab/codemirror-extension": "~4.0.10", + "@jupyterlab/completer-extension": "~4.0.10", + "@jupyterlab/console-extension": "~4.0.10", + "@jupyterlab/coreutils": "~6.0.10", + "@jupyterlab/csvviewer-extension": "~4.0.10", + "@jupyterlab/debugger-extension": "~4.0.10", + "@jupyterlab/docmanager-extension": "~4.0.10", + "@jupyterlab/documentsearch-extension": "~4.0.10", + "@jupyterlab/extensionmanager-extension": "~4.0.10", + "@jupyterlab/filebrowser-extension": "~4.0.10", + "@jupyterlab/fileeditor-extension": "~4.0.10", + "@jupyterlab/help-extension": "~4.0.10", + "@jupyterlab/htmlviewer-extension": "~4.0.10", + "@jupyterlab/hub-extension": "~4.0.10", + "@jupyterlab/imageviewer-extension": "~4.0.10", + "@jupyterlab/inspector-extension": "~4.0.10", + "@jupyterlab/javascript-extension": "~4.0.10", + "@jupyterlab/json-extension": "~4.0.10", + "@jupyterlab/launcher-extension": "~4.0.10", + "@jupyterlab/logconsole-extension": "~4.0.10", + "@jupyterlab/lsp-extension": "~4.0.10", + "@jupyterlab/mainmenu-extension": "~4.0.10", + "@jupyterlab/markdownviewer-extension": "~4.0.10", + "@jupyterlab/markedparser-extension": "~4.0.10", + "@jupyterlab/mathjax-extension": "~4.0.10", + "@jupyterlab/metadataform-extension": "~4.0.10", + "@jupyterlab/notebook-extension": "~4.0.10", + "@jupyterlab/pdf-extension": "~4.0.10", + "@jupyterlab/rendermime-extension": "~4.0.10", + "@jupyterlab/running-extension": "~4.0.10", + "@jupyterlab/settingeditor-extension": "~4.0.10", + "@jupyterlab/shortcuts-extension": "~4.0.10", + "@jupyterlab/statusbar-extension": "~4.0.10", + "@jupyterlab/terminal-extension": "~4.0.10", + "@jupyterlab/theme-dark-extension": "~4.0.10", + "@jupyterlab/theme-light-extension": "~4.0.10", + "@jupyterlab/toc-extension": "~6.0.10", + "@jupyterlab/tooltip-extension": "~4.0.10", + "@jupyterlab/translation-extension": "~4.0.10", + "@jupyterlab/ui-components-extension": "~4.0.10", + "@jupyterlab/vega5-extension": "~4.0.10" }, "devDependencies": { - "@jupyterlab/builder": "^4.0.9", - "@jupyterlab/buildutils": "^4.0.9", + "@jupyterlab/builder": "^4.0.10", + "@jupyterlab/buildutils": "^4.0.10", "chokidar": "^3.4.0", "css-loader": "^6.7.1", "duplicate-package-checker-webpack-plugin": "^3.0.0", @@ -212,7 +212,7 @@ }, "jupyterlab": { "name": "JupyterLab", - "version": "4.0.9", + "version": "4.0.10", "extensions": { "@jupyterlab/application-extension": "", "@jupyterlab/apputils-extension": "", diff --git a/jupyterlab/staging/yarn.lock b/jupyterlab/staging/yarn.lock index cb345f52a4c6..9cfb5a291fa8 100644 --- a/jupyterlab/staging/yarn.lock +++ b/jupyterlab/staging/yarn.lock @@ -375,26 +375,26 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/application-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/application-extension@npm:4.0.9" - dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/property-inspector": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/statedb": ^4.0.9 - "@jupyterlab/statusbar": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 +"@jupyterlab/application-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/application-extension@npm:4.0.10" + dependencies: + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/property-inspector": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/statedb": ^4.0.10 + "@jupyterlab/statusbar": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.1.3 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/widgets": ^2.3.0 react: ^18.2.0 - checksum: b88f6464dc7431d3ff17b16f105eba263af2fa9716d699f8b9f09c9280758284be52c424a0157a77d19f6544ad12c552736d41af30191007a8d6dcbdb1c9025c + checksum: 239714a2465d1158e633794336d52e3d1fe317b11d048c468c3e2f6905fa2712ee880687b2de007dd2c747e46342d010e66e6d029173e0ef9fc1ce2767d3f1db languageName: node linkType: hard @@ -402,54 +402,54 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/application-top@workspace:." dependencies: - "@jupyterlab/application": ~4.0.9 - "@jupyterlab/application-extension": ~4.0.9 - "@jupyterlab/apputils-extension": ~4.0.9 - "@jupyterlab/builder": ^4.0.9 - "@jupyterlab/buildutils": ^4.0.9 - "@jupyterlab/cell-toolbar-extension": ~4.0.9 - "@jupyterlab/celltags-extension": ~4.0.9 - "@jupyterlab/codemirror-extension": ~4.0.9 - "@jupyterlab/completer-extension": ~4.0.9 - "@jupyterlab/console-extension": ~4.0.9 - "@jupyterlab/coreutils": ~6.0.9 - "@jupyterlab/csvviewer-extension": ~4.0.9 - "@jupyterlab/debugger-extension": ~4.0.9 - "@jupyterlab/docmanager-extension": ~4.0.9 - "@jupyterlab/documentsearch-extension": ~4.0.9 - "@jupyterlab/extensionmanager-extension": ~4.0.9 - "@jupyterlab/filebrowser-extension": ~4.0.9 - "@jupyterlab/fileeditor-extension": ~4.0.9 - "@jupyterlab/help-extension": ~4.0.9 - "@jupyterlab/htmlviewer-extension": ~4.0.9 - "@jupyterlab/hub-extension": ~4.0.9 - "@jupyterlab/imageviewer-extension": ~4.0.9 - "@jupyterlab/inspector-extension": ~4.0.9 - "@jupyterlab/javascript-extension": ~4.0.9 - "@jupyterlab/json-extension": ~4.0.9 - "@jupyterlab/launcher-extension": ~4.0.9 - "@jupyterlab/logconsole-extension": ~4.0.9 - "@jupyterlab/lsp-extension": ~4.0.9 - "@jupyterlab/mainmenu-extension": ~4.0.9 - "@jupyterlab/markdownviewer-extension": ~4.0.9 - "@jupyterlab/markedparser-extension": ~4.0.9 - "@jupyterlab/mathjax-extension": ~4.0.9 - "@jupyterlab/metadataform-extension": ~4.0.9 - "@jupyterlab/notebook-extension": ~4.0.9 - "@jupyterlab/pdf-extension": ~4.0.9 - "@jupyterlab/rendermime-extension": ~4.0.9 - "@jupyterlab/running-extension": ~4.0.9 - "@jupyterlab/settingeditor-extension": ~4.0.9 - "@jupyterlab/shortcuts-extension": ~4.0.9 - "@jupyterlab/statusbar-extension": ~4.0.9 - "@jupyterlab/terminal-extension": ~4.0.9 - "@jupyterlab/theme-dark-extension": ~4.0.9 - "@jupyterlab/theme-light-extension": ~4.0.9 - "@jupyterlab/toc-extension": ~6.0.9 - "@jupyterlab/tooltip-extension": ~4.0.9 - "@jupyterlab/translation-extension": ~4.0.9 - "@jupyterlab/ui-components-extension": ~4.0.9 - "@jupyterlab/vega5-extension": ~4.0.9 + "@jupyterlab/application": ~4.0.10 + "@jupyterlab/application-extension": ~4.0.10 + "@jupyterlab/apputils-extension": ~4.0.10 + "@jupyterlab/builder": ^4.0.10 + "@jupyterlab/buildutils": ^4.0.10 + "@jupyterlab/cell-toolbar-extension": ~4.0.10 + "@jupyterlab/celltags-extension": ~4.0.10 + "@jupyterlab/codemirror-extension": ~4.0.10 + "@jupyterlab/completer-extension": ~4.0.10 + "@jupyterlab/console-extension": ~4.0.10 + "@jupyterlab/coreutils": ~6.0.10 + "@jupyterlab/csvviewer-extension": ~4.0.10 + "@jupyterlab/debugger-extension": ~4.0.10 + "@jupyterlab/docmanager-extension": ~4.0.10 + "@jupyterlab/documentsearch-extension": ~4.0.10 + "@jupyterlab/extensionmanager-extension": ~4.0.10 + "@jupyterlab/filebrowser-extension": ~4.0.10 + "@jupyterlab/fileeditor-extension": ~4.0.10 + "@jupyterlab/help-extension": ~4.0.10 + "@jupyterlab/htmlviewer-extension": ~4.0.10 + "@jupyterlab/hub-extension": ~4.0.10 + "@jupyterlab/imageviewer-extension": ~4.0.10 + "@jupyterlab/inspector-extension": ~4.0.10 + "@jupyterlab/javascript-extension": ~4.0.10 + "@jupyterlab/json-extension": ~4.0.10 + "@jupyterlab/launcher-extension": ~4.0.10 + "@jupyterlab/logconsole-extension": ~4.0.10 + "@jupyterlab/lsp-extension": ~4.0.10 + "@jupyterlab/mainmenu-extension": ~4.0.10 + "@jupyterlab/markdownviewer-extension": ~4.0.10 + "@jupyterlab/markedparser-extension": ~4.0.10 + "@jupyterlab/mathjax-extension": ~4.0.10 + "@jupyterlab/metadataform-extension": ~4.0.10 + "@jupyterlab/notebook-extension": ~4.0.10 + "@jupyterlab/pdf-extension": ~4.0.10 + "@jupyterlab/rendermime-extension": ~4.0.10 + "@jupyterlab/running-extension": ~4.0.10 + "@jupyterlab/settingeditor-extension": ~4.0.10 + "@jupyterlab/shortcuts-extension": ~4.0.10 + "@jupyterlab/statusbar-extension": ~4.0.10 + "@jupyterlab/terminal-extension": ~4.0.10 + "@jupyterlab/theme-dark-extension": ~4.0.10 + "@jupyterlab/theme-light-extension": ~4.0.10 + "@jupyterlab/toc-extension": ~6.0.10 + "@jupyterlab/tooltip-extension": ~4.0.10 + "@jupyterlab/translation-extension": ~4.0.10 + "@jupyterlab/ui-components-extension": ~4.0.10 + "@jupyterlab/vega5-extension": ~4.0.10 chokidar: ^3.4.0 css-loader: ^6.7.1 duplicate-package-checker-webpack-plugin: ^3.0.0 @@ -475,20 +475,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/application@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/application@npm:4.0.9" +"@jupyterlab/application@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/application@npm:4.0.10" dependencies: "@fortawesome/fontawesome-free": ^5.12.0 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/rendermime-interfaces": ^3.8.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/statedb": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/rendermime-interfaces": ^3.8.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/statedb": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/application": ^2.2.1 "@lumino/commands": ^2.1.3 @@ -499,27 +499,27 @@ __metadata: "@lumino/properties": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.0 - checksum: 0a3e57e107690b38760ebff12ac63700d75862726f534fa45a25e3297b8ff3202e54c28482dd69e83590178f1cbb621881a8d783dc230e271a0c78228d386292 - languageName: node - linkType: hard - -"@jupyterlab/apputils-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/apputils-extension@npm:4.0.9" - dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/filebrowser": ^4.0.9 - "@jupyterlab/mainmenu": ^4.0.9 - "@jupyterlab/rendermime-interfaces": ^3.8.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/statedb": ^4.0.9 - "@jupyterlab/statusbar": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + checksum: 30d826316c56580f3143470a1c296ee905d68c43f8e3ac550245bad64a7ec43674c70b5d8e30ded57d178b9a30cc6d234534b304374510ecfe0550f10d4bda6d + languageName: node + linkType: hard + +"@jupyterlab/apputils-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/apputils-extension@npm:4.0.10" + dependencies: + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/filebrowser": ^4.0.10 + "@jupyterlab/mainmenu": ^4.0.10 + "@jupyterlab/rendermime-interfaces": ^3.8.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/statedb": ^4.0.10 + "@jupyterlab/statusbar": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.1.3 "@lumino/coreutils": ^2.1.2 @@ -530,23 +530,23 @@ __metadata: react: ^18.2.0 react-dom: ^18.2.0 react-toastify: ^9.0.8 - checksum: f0e6e3adf2ae79a7e60179d9ba97eae176cb0ffda5eb9a3b21bac05c251935eee10da27ffb6e6bc618178f8608b77f3c25935da8fad1556b380bfc5295feb769 + checksum: 80a3d5678c110fd7f8026fd51fda6776d98fa79b78dbf34056ab220daf87dedad527255edaa21ec828ac352ec0d2011a3f3ba193f70989b9b0e7a2691bfcaf0d languageName: node linkType: hard -"@jupyterlab/apputils@npm:~4.1.9": - version: 4.1.9 - resolution: "@jupyterlab/apputils@npm:4.1.9" +"@jupyterlab/apputils@npm:~4.1.10": + version: 4.1.10 + resolution: "@jupyterlab/apputils@npm:4.1.10" dependencies: - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/rendermime-interfaces": ^3.8.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/statedb": ^4.0.9 - "@jupyterlab/statusbar": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/rendermime-interfaces": ^3.8.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/statedb": ^4.0.10 + "@jupyterlab/statusbar": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.1.3 "@lumino/coreutils": ^2.1.2 @@ -559,27 +559,27 @@ __metadata: "@types/react": ^18.0.26 react: ^18.2.0 sanitize-html: ~2.7.3 - checksum: f13a84928005c3ef0a534c8341c5dc8980ada3ddb3bbaf6856108952070268a832fb6086d3cf6e2c7c6f021302693c52362ee51bbd04243040d69064567d7ddb + checksum: e1bc8884a2bcd5426dfe1dbc4336b8acda6be56964dd76ecda363e31ab6c5feca081199612ab79a590a9b5954630349df96a6803feee7ea08a29f688034853fe languageName: node linkType: hard -"@jupyterlab/attachments@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/attachments@npm:4.0.9" +"@jupyterlab/attachments@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/attachments@npm:4.0.10" dependencies: - "@jupyterlab/nbformat": ^4.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/rendermime-interfaces": ^3.8.9 + "@jupyterlab/nbformat": ^4.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/rendermime-interfaces": ^3.8.10 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 - checksum: beb04940074de3fec80b811b09df2a5eb00b151e029b31567bf2a6a3a76d1a81f88c2fb3a9c946ecb29c87614f72a390ad547738a120c10d00d8a98970055161 + checksum: 1d23a0e7176fd98aefc175e9f57cf7b729930504492ef79124ede84b39d7e810cedb90b4a974bbde7abf3e249b173079ba94e868c76ffaa4ed141e0cd480b4fd languageName: node linkType: hard -"@jupyterlab/builder@npm:^4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/builder@npm:4.0.9" +"@jupyterlab/builder@npm:^4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/builder@npm:4.0.10" dependencies: "@lumino/algorithm": ^2.0.1 "@lumino/application": ^2.2.1 @@ -614,13 +614,13 @@ __metadata: worker-loader: ^3.0.2 bin: build-labextension: lib/build-labextension.js - checksum: 09db5fbf2d8e6e90f50d5f89dc936466d6d3a7a905d66e2bd32f2eb55ba32e16c48a322b525ac8919dcbec23d5960d3a94cf020430da5511098c9d013ae9650f + checksum: 6c69fc85716183656e06606ec7a12cd48066fb54928b75d2b62ab4e1952bfe4b97a64e500dbd7148e1514fc6fe595c7e76bb9ff230513ed8e5bd1ac88ee1cd61 languageName: node linkType: hard -"@jupyterlab/buildutils@npm:^4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/buildutils@npm:4.0.9" +"@jupyterlab/buildutils@npm:^4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/buildutils@npm:4.0.10" dependencies: "@yarnpkg/core": ^3.0.0 "@yarnpkg/parsers": ^2.0.0 @@ -648,65 +648,65 @@ __metadata: update-dependency: lib/update-dependency.js update-dist-tag: lib/update-dist-tag.js update-staging-lock: lib/update-staging-lock.js - checksum: b947f586061225bd489a5ece61c60099c4a2e802f3623cb8c37928123bc54012d54046a5b1251eceedc4c9d58b6b01f8db46f61fd8d69384b2a14a8f11e99d6d + checksum: 83b3a9264783a85f4893ca6a8b1547595c92b3f5218bdfde49b4f130651dbdd5766b3b194e0e4e6edebb9bcc7e80f6e58865e078212df33a6e58bf4957237f2e languageName: node linkType: hard -"@jupyterlab/cell-toolbar-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/cell-toolbar-extension@npm:4.0.9" +"@jupyterlab/cell-toolbar-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/cell-toolbar-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/cell-toolbar": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - checksum: 36ced60ae41c4b689ba7ffdc738471b7e3a55b043d6c0cbad139a2dd4b5f15912aa2fa124810aab807413dd153868f8e41a1742b5ccd1baccfcbeea63b836c44 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/cell-toolbar": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + checksum: 8d431af067b81ef1956579b7e1415dc084a01b3aec56be804adc8d8f9bf41ab461bc8b73434553a4177c940acac38f98532ca8e03fd9ef1d56baa54fd7761ffa languageName: node linkType: hard -"@jupyterlab/cell-toolbar@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/cell-toolbar@npm:4.0.9" +"@jupyterlab/cell-toolbar@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/cell-toolbar@npm:4.0.10" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/cells": ^4.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/notebook": ^4.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/cells": ^4.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/notebook": ^4.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.1.3 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.0 - checksum: 0355d856686403e0bfed05440607eaad1377eedfabb307daa09d704077339d0e1c6a02ecfa887aae58b613b1824ee778732546e07f267894dd22c6756cb7e633 + checksum: fe929381b6f334a5c1b2dcda63c9020fd0cbf1668a783000806a71b5777b16e74d40d9c9fa0a7453d783294bce7c67e2cca281d33c458f1a6ebe999ade7d0ef5 languageName: node linkType: hard -"@jupyterlab/cells@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/cells@npm:4.0.9" +"@jupyterlab/cells@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/cells@npm:4.0.10" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/attachments": ^4.0.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/codemirror": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/documentsearch": ^4.0.9 - "@jupyterlab/filebrowser": ^4.0.9 - "@jupyterlab/nbformat": ^4.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/outputarea": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/toc": ^6.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/attachments": ^4.0.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/codemirror": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/documentsearch": ^4.0.10 + "@jupyterlab/filebrowser": ^4.0.10 + "@jupyterlab/nbformat": ^4.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/outputarea": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/toc": ^6.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/domutils": ^2.0.1 @@ -717,37 +717,37 @@ __metadata: "@lumino/virtualdom": ^2.0.1 "@lumino/widgets": ^2.3.0 react: ^18.2.0 - checksum: 65284d9a3d5c57b6a0299133b80cbd0bcf9b0af7b667f548885aefddfe0cdd68dc300f3aaf8ece357e0eeae8f38e6fe335d9d2eb4a3f78f5f2f7b39b515dcbb7 + checksum: 3cd6ee63e7a9fa2afa0d3e6213550f296ba27960826648c744e40ed29774c6d45aba31d44b39e2c5c7a1b17f4a7e96914955b0c49b95b302a096c428685ece6b languageName: node linkType: hard -"@jupyterlab/celltags-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/celltags-extension@npm:4.0.9" +"@jupyterlab/celltags-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/celltags-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/notebook": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/notebook": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@rjsf/utils": ^5.1.0 react: ^18.2.0 - checksum: 8b1398f118f6b13446c9a4e198489732e7b383a4a7b3b97528ba0d0e788b591b8b78dfaf0811b00a09b906f5b02f3c8b6753b919fdc40f4b8274e123094c9c3c + checksum: efd1463884e32cc8e7ddd95b0defc09c63bbb1275b0c47247bed555bbc9136270c246e66c56c54268c29e31dcf43b8c5c4f7864462cc941848b9274f4442aa14 languageName: node linkType: hard -"@jupyterlab/codeeditor@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/codeeditor@npm:4.0.9" +"@jupyterlab/codeeditor@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/codeeditor@npm:4.0.10" dependencies: "@codemirror/state": ^6.2.0 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/nbformat": ^4.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/statusbar": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/nbformat": ^4.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/statusbar": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/dragdrop": ^2.1.4 @@ -755,37 +755,37 @@ __metadata: "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.0 react: ^18.2.0 - checksum: 9b36901149eac6a840b224440f4831219f4710270e7fcf73d10db087821a4138fd2e113fcde867800b682e196a293c481c585c93b75892ad4cd779c7754f09c5 + checksum: 14d547c30d3b850511d459a56e01fd40c9bbc9403f234f1b0061d48a493f16c7ac7314e6111628a9023584ee9b112f7459b11ce54d58b7f670a9391efa20550d languageName: node linkType: hard -"@jupyterlab/codemirror-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/codemirror-extension@npm:4.0.9" +"@jupyterlab/codemirror-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/codemirror-extension@npm:4.0.10" dependencies: "@codemirror/lang-markdown": ^6.1.1 "@codemirror/language": ^6.6.0 "@codemirror/legacy-modes": ^6.3.2 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/codemirror": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/statusbar": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/codemirror": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/statusbar": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.0 "@rjsf/utils": ^5.1.0 "@rjsf/validator-ajv8": ^5.1.0 react: ^18.2.0 - checksum: f1008413ddfc5e42dea2164c4ef7d42695343f7c09729c689f6b0e1197ac8cafc0cb429033037876a2b7548f507794c5fda981e42815403af30902e2de256caf + checksum: ae72e3e2260d65a8d9c4853fd47c220a52e13fe62859dcf18f4fc053da66f99b4502b30854155b27dd60b19c21997351ac4ec9ef1e4f4c8b056da3da151db252 languageName: node linkType: hard -"@jupyterlab/codemirror@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/codemirror@npm:4.0.9" +"@jupyterlab/codemirror@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/codemirror@npm:4.0.10" dependencies: "@codemirror/autocomplete": ^6.5.1 "@codemirror/commands": ^6.2.3 @@ -808,11 +808,11 @@ __metadata: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/documentsearch": ^4.0.9 - "@jupyterlab/nbformat": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/documentsearch": ^4.0.10 + "@jupyterlab/nbformat": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 "@lezer/common": ^1.0.2 "@lezer/generator": ^1.2.2 "@lezer/highlight": ^1.1.4 @@ -821,37 +821,37 @@ __metadata: "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 yjs: ^13.5.40 - checksum: 383e48f25fefe1baef03e4c1ed70f8f8edc7c995ebe93e9303ef6cd91214f1d27a8acf22827e1bb6194e9ec424052f3133404857bf57859cffb4aa4880e40be8 + checksum: 127bdca8e8b6bebb19df5e61bbc1715295633905961bee3516ac65c158c1ed776e549a5f1e0a3615a45aff2614022d0dd1fc170f595498af4e3fc693a6acfc30 languageName: node linkType: hard -"@jupyterlab/completer-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/completer-extension@npm:4.0.9" +"@jupyterlab/completer-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/completer-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/completer": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/completer": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@rjsf/utils": ^5.1.0 react: ^18.2.0 - checksum: 0b3e25bd3ea6965ae6e34eb3a00404ed6fa068301823a43774c53800e7e68d92b69f825de05350b88fe57293169bc48301f01599585503adc47ac0dec6e9b35a + checksum: 02caac9b9ebc6e250e58c87758498e7601526f44999d60a252488315ee7d9b3a4485bb908753885be114bd37bed4ef19eb8f6c9ab4837cb6fea452371fa30c31 languageName: node linkType: hard -"@jupyterlab/completer@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/completer@npm:4.0.9" +"@jupyterlab/completer@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/completer@npm:4.0.10" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/statedb": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/statedb": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -859,65 +859,65 @@ __metadata: "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.0 - checksum: d54ea786153a21d18ec5a67997e850e0c82b49cba7358792c48e58880b137d422fe2a924a592c73341ddc0c681e9eda2c4151e9da6c21a0364251be39a88ccf7 - languageName: node - linkType: hard - -"@jupyterlab/console-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/console-extension@npm:4.0.9" - dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/completer": ^4.0.9 - "@jupyterlab/console": ^4.0.9 - "@jupyterlab/filebrowser": ^4.0.9 - "@jupyterlab/launcher": ^4.0.9 - "@jupyterlab/mainmenu": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + checksum: ca1fece1e23d883f12625ddc0e25e326f643718ecdbe1f6b912bd1249c02deca921db05c1b87386bdc488538a525a84587eb2f68c722cde3f724f230fdc88c32 + languageName: node + linkType: hard + +"@jupyterlab/console-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/console-extension@npm:4.0.10" + dependencies: + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/completer": ^4.0.10 + "@jupyterlab/console": ^4.0.10 + "@jupyterlab/filebrowser": ^4.0.10 + "@jupyterlab/launcher": ^4.0.10 + "@jupyterlab/mainmenu": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/properties": ^2.0.1 "@lumino/widgets": ^2.3.0 - checksum: 5355ea0595526dd40003c1f6bf45641794f3aad5bec08a4a39a21885037b6150bff55c7f1792aa170cb9a200a136d25cb710375b2d9423826535ee910a53a777 + checksum: 67db156984c351b5434e045f08e3c072ebea88a5fbc9cfbf5c87fa3273f3fd14ae6c55beb549da74783e6d25ad383209bea2f0c55536693402d7aafcf098a168 languageName: node linkType: hard -"@jupyterlab/console@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/console@npm:4.0.9" +"@jupyterlab/console@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/console@npm:4.0.10" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/cells": ^4.0.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/nbformat": ^4.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/cells": ^4.0.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/nbformat": ^4.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/dragdrop": ^2.1.4 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.0 - checksum: 1fd3e9163ceadf8fc79255f8e079bc3a80f98c907f6dcdbea8838777e7e90a78d75211043bf64660049c9a2404227e9a9e3d64fb765d8bb3a3066fb9bcf026ef + checksum: 9823001fbdb461e78a37b7b91053b8041e3f1069a93a86ad94874430b5216cec570939fcf01907ab4818363aa729e47490992dd9ba8056b2b6ec655a4682787b languageName: node linkType: hard -"@jupyterlab/coreutils@npm:~6.0.9": - version: 6.0.9 - resolution: "@jupyterlab/coreutils@npm:6.0.9" +"@jupyterlab/coreutils@npm:~6.0.10": + version: 6.0.10 + resolution: "@jupyterlab/coreutils@npm:6.0.10" dependencies: "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -925,92 +925,92 @@ __metadata: minimist: ~1.2.0 path-browserify: ^1.0.0 url-parse: ~1.5.4 - checksum: d2e9bb5d55f7bf3d439151ca4dbbd404adf742be31ea98a5713869f65cc86ebc8e89459ad7d0792cab51ebd7136d77ec86bf06ff990dd88f6d66780296d8983d + checksum: d01645468268465841447a977927097d68b7f6fac771a3d48e358508a1c792dc433aaebcca7755331dce043e1cc002da7fa1ad070dfd7e689dda66c9f25626ee languageName: node linkType: hard -"@jupyterlab/csvviewer-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/csvviewer-extension@npm:4.0.9" +"@jupyterlab/csvviewer-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/csvviewer-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/csvviewer": ^4.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/documentsearch": ^4.0.9 - "@jupyterlab/mainmenu": ^4.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/csvviewer": ^4.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/documentsearch": ^4.0.10 + "@jupyterlab/mainmenu": ^4.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 "@lumino/datagrid": ^2.2.0 "@lumino/widgets": ^2.3.0 - checksum: 1d37eaa6299f56a77842d834efb7924756b63e060d3a1be26c28e818165d99c3fcbe45df14e398a5541c79480c750003314421d1893a360957fb0a8253f9864c + checksum: 0614426c8b5d9bb53e710fa91f9ac480a5f40332f0b3d62fcee717421ca4c416770d5acac7ed8928d73291e14fea5d97896122c7ffb59ef443a391453bd24f81 languageName: node linkType: hard -"@jupyterlab/csvviewer@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/csvviewer@npm:4.0.9" +"@jupyterlab/csvviewer@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/csvviewer@npm:4.0.10" dependencies: - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/datagrid": ^2.2.0 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.0 - checksum: 445eddd61a0990ef31a37466d1c1791adc8c28bbaeb6987ce825d8615a4c1b31be88f76654692cc73067790528e911e4d6e4ca542038071b06a327e7c30044ec + checksum: 641df5055fbd5696c88df23dd5a874579cd7b44f8ffae2d2bbcdb02e11b363e7b7eaa60923a8194e1c0e940f901293e5bfb73bd2c7c054568317bf2310e4a699 languageName: node linkType: hard -"@jupyterlab/debugger-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/debugger-extension@npm:4.0.9" +"@jupyterlab/debugger-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/debugger-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/cells": ^4.0.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/console": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/debugger": ^4.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/fileeditor": ^4.0.9 - "@jupyterlab/logconsole": ^4.0.9 - "@jupyterlab/notebook": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - checksum: 69bb49d982c07e4bec12c70051fae7d8fb1fa25a56112397c77b2835cf4ebfc4c2178357232c880480ca4309084e8b0232d269b71babf075db2826a874c96e8c + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/cells": ^4.0.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/console": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/debugger": ^4.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/fileeditor": ^4.0.10 + "@jupyterlab/logconsole": ^4.0.10 + "@jupyterlab/notebook": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + checksum: 9ceaf51f4a03480a3606f32baaa30f86715e36e99eec088ba410a99bf34fea25dbaf77881b4d1d1c6ff37f16fa2a979b85d75dffbf0383fa9cebf565e595ccb1 languageName: node linkType: hard -"@jupyterlab/debugger@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/debugger@npm:4.0.9" +"@jupyterlab/debugger@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/debugger@npm:4.0.10" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/cells": ^4.0.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/codemirror": ^4.0.9 - "@jupyterlab/console": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/fileeditor": ^4.0.9 - "@jupyterlab/notebook": ^4.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/cells": ^4.0.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/codemirror": ^4.0.10 + "@jupyterlab/console": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/fileeditor": ^4.0.10 + "@jupyterlab/notebook": ^4.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.1.3 "@lumino/coreutils": ^2.1.2 @@ -1022,24 +1022,24 @@ __metadata: "@lumino/widgets": ^2.3.0 "@vscode/debugprotocol": ^1.51.0 react: ^18.2.0 - checksum: caec1d35d9871e8ab84181259b3dec91a57680333c89573bdd783fd4d6474938c7b6a175cdf66080aa8c6269578e4ff9f48fb3832d65021aaa21e7232321efe1 + checksum: 215d467f9429f1167bf286e5fa7e8d3110f5b28e466fbb90666a64e4453fd1cfa323562127a23f49d16694c22c27142718f2bfb288750369326b25e378541170 languageName: node linkType: hard -"@jupyterlab/docmanager-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/docmanager-extension@npm:4.0.9" +"@jupyterlab/docmanager-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/docmanager-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docmanager": ^4.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/statusbar": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docmanager": ^4.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/statusbar": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.1.3 "@lumino/coreutils": ^2.1.2 @@ -1047,21 +1047,21 @@ __metadata: "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.0 react: ^18.2.0 - checksum: bc5ce08d8585dcc2bc81af13d775152ccde0f3eaa5f5829af10a55649bd76cdd5a7b64de3418a08f193f757708cfb521ad5ef9f03800cc09d596627b73759508 + checksum: 1f2c501439fc66e817994edea94e30c0e62200784def271f941f7eff0c5b0b39fe696d490e380dce1db25fdf5882882f1d44747d00a9f980b28391c936015924 languageName: node linkType: hard -"@jupyterlab/docmanager@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/docmanager@npm:4.0.9" +"@jupyterlab/docmanager@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/docmanager@npm:4.0.10" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/statusbar": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/statusbar": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -1070,24 +1070,24 @@ __metadata: "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.0 react: ^18.2.0 - checksum: 805697e6954561b879796395d0b1f5bf0b79f7f98f55be41444375f52b02cfc70c2532b9a83310cd8da9f02c7ea5f4f5754975a6a08ce6c3213e0b5f00613803 + checksum: 8be669130f29f9245c75e6b03f2bf788da17e1026b1117e0bbd8fe84afca5a9fddfa27fa879231979db1a2bf62c3e9b50eb38586cc155a3e64e1c1dd2e528c9b languageName: node linkType: hard -"@jupyterlab/docregistry@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/docregistry@npm:4.0.9" +"@jupyterlab/docregistry@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/docregistry@npm:4.0.10" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/rendermime-interfaces": ^3.8.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/rendermime-interfaces": ^3.8.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -1095,31 +1095,31 @@ __metadata: "@lumino/properties": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.0 - checksum: ace09a85ca9d79296001f09753c4632f6385a525519a10c905e138bd9d90b2eca1a24eab840758d560c32ca6af1e1c67bf929a09330b03d29810fb54d907d6e6 + checksum: 0863d8b3c97b8790280805cb781f7448e6a26f6f7e5e75d597d1add480be988bbaa72a6792d2417bc648800d4af30d96af8437ef5c6d9906819e36010d523a3c languageName: node linkType: hard -"@jupyterlab/documentsearch-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/documentsearch-extension@npm:4.0.9" +"@jupyterlab/documentsearch-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/documentsearch-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/documentsearch": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/documentsearch": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 "@lumino/widgets": ^2.3.0 - checksum: 543c3e4a5bddaee439c80614d21d971174601af6c346462c8845cc72b4d04fdf25b71167e9d7dc7ffc13e51ffd66ec2e06e791dfd6dec132c88d5ee42f4ec528 + checksum: 903e11d221a3ccb03b1dc11171aafd0520048e48a7dffeb106afd0fe18c3ff88ac08077107bd8d316cbe41a3544cdc2de358002d8371bca13c12d0b56bbd8221 languageName: node linkType: hard -"@jupyterlab/documentsearch@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/documentsearch@npm:4.0.9" +"@jupyterlab/documentsearch@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/documentsearch@npm:4.0.10" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 @@ -1127,79 +1127,79 @@ __metadata: "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.0 react: ^18.2.0 - checksum: 557a76e35be874c17fbf4e54d6e04a96da8f663a014405086376afdd164a38b5946b6dc3d36c851d76778f9956a15acbc85f699efa30c9c11b811fc69554c3a8 + checksum: 8ff2c96c9460abf0f6245842637c698ae04b32e5ab64d9f868975158be929d1762b59a0bf85782631cddf3ea0e87b1d446b991ab534dab263000826b0c66f070 languageName: node linkType: hard -"@jupyterlab/extensionmanager-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/extensionmanager-extension@npm:4.0.9" +"@jupyterlab/extensionmanager-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/extensionmanager-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/extensionmanager": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 - checksum: 0b8bc9a3128dae05480c3d47a98cefe01471941ba50166a686331ba7167e065fc6eaaf8875df17c5865d2987be07cda9026fc6f6b2e56a81046de7c41b66f21c + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/extensionmanager": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 + checksum: cb0a16c87707160fa3f3f92daca1790977cc43fd4285c9df364837f7b22e423da0b5974ae280c9196d588a7d25d8ef06e16e87bfbdada21533183f32038aa6ad languageName: node linkType: hard -"@jupyterlab/extensionmanager@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/extensionmanager@npm:4.0.9" +"@jupyterlab/extensionmanager@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/extensionmanager@npm:4.0.10" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/messaging": ^2.0.1 "@lumino/polling": ^2.1.2 "@lumino/widgets": ^2.3.0 react: ^18.2.0 react-paginate: ^6.3.2 semver: ^7.3.2 - checksum: 318400b0054ed43e31a27d65d8a3a82a0bc949240f29c92a182306da5dd4e45f2498bcfc1a106dc0a3fdb6ed8ac7a6c2f7fe4c39bc9ae683476f02886866e4c0 - languageName: node - linkType: hard - -"@jupyterlab/filebrowser-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/filebrowser-extension@npm:4.0.9" - dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docmanager": ^4.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/filebrowser": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/statedb": ^4.0.9 - "@jupyterlab/statusbar": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + checksum: a6743d2a9e6a0e8335e667b141950f709e4b4c8acc155fb13ea3ab4631cc1a42561c2035c650a05a3564b786133d029c8fcea910d6e8d08bf63246bb9d08ac2f + languageName: node + linkType: hard + +"@jupyterlab/filebrowser-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/filebrowser-extension@npm:4.0.10" + dependencies: + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docmanager": ^4.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/filebrowser": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/statedb": ^4.0.10 + "@jupyterlab/statusbar": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.1.3 "@lumino/widgets": ^2.3.0 - checksum: 7b752b744aa4b570daa7ac7c487d1775a950a8a5dae3033b2c761c7051fa6ce90f259c49228fb5f0cf3d80321ad59cfa3f33c9e7f6038444b609c986e98b987b + checksum: 6781b8d8bf196b24f795cecaa3bdf225993ef533108f32fabb80f90fa5a419b5734916ceb38a36d86fa607ed7df34b843f9a994f7be83e07a9456acc57106ab0 languageName: node linkType: hard -"@jupyterlab/filebrowser@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/filebrowser@npm:4.0.9" +"@jupyterlab/filebrowser@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/filebrowser@npm:4.0.10" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docmanager": ^4.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/statedb": ^4.0.9 - "@jupyterlab/statusbar": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docmanager": ^4.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/statedb": ^4.0.10 + "@jupyterlab/statusbar": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -1211,220 +1211,221 @@ __metadata: "@lumino/virtualdom": ^2.0.1 "@lumino/widgets": ^2.3.0 react: ^18.2.0 - checksum: 8035095688dc01cd3c80e72228cb3c83f20039eaed0c4b849543b043dbb5b5d1420dcfa0e7ce34210c5424dda1ad28114c2e43050a089acace2f7497af60b177 + checksum: f19884d40b0b1761e023c939cae1f11112b3b021f75df4806d97d0434e8b25c651bb054a66f563faa99e46c4b2b820b54e6a0e48bffa49d0a0e7bce145c34852 languageName: node linkType: hard -"@jupyterlab/fileeditor-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/fileeditor-extension@npm:4.0.9" +"@jupyterlab/fileeditor-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/fileeditor-extension@npm:4.0.10" dependencies: "@codemirror/commands": ^6.2.3 "@codemirror/search": ^6.3.0 - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/codemirror": ^4.0.9 - "@jupyterlab/completer": ^4.0.9 - "@jupyterlab/console": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/documentsearch": ^4.0.9 - "@jupyterlab/filebrowser": ^4.0.9 - "@jupyterlab/fileeditor": ^4.0.9 - "@jupyterlab/launcher": ^4.0.9 - "@jupyterlab/lsp": ^4.0.9 - "@jupyterlab/mainmenu": ^4.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/rendermime-interfaces": ^3.8.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/statusbar": ^4.0.9 - "@jupyterlab/toc": ^6.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/codemirror": ^4.0.10 + "@jupyterlab/completer": ^4.0.10 + "@jupyterlab/console": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/documentsearch": ^4.0.10 + "@jupyterlab/filebrowser": ^4.0.10 + "@jupyterlab/fileeditor": ^4.0.10 + "@jupyterlab/launcher": ^4.0.10 + "@jupyterlab/lsp": ^4.0.10 + "@jupyterlab/mainmenu": ^4.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/rendermime-interfaces": ^3.8.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/statusbar": ^4.0.10 + "@jupyterlab/toc": ^6.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.1.3 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.0 - checksum: 3d9d75154d083a2e1faede2460bbd353e138b068c55dfffa566f3a9b6289a5562d35c833a6b34e9b739d8e4436a1badd61fd8c6114de4b78d8e75f4b79de038e + checksum: 99eb0077bc20e32796bb58fd47fc32961e17d556d6829ce3572b3448a0da33962ecc9bfb0e6593a9c9a28dd47dc8dfcbdbf0da66bf5870b4dff0ad6361f09758 languageName: node linkType: hard -"@jupyterlab/fileeditor@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/fileeditor@npm:4.0.9" +"@jupyterlab/fileeditor@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/fileeditor@npm:4.0.10" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/codemirror": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/documentsearch": ^4.0.9 - "@jupyterlab/lsp": ^4.0.9 - "@jupyterlab/statusbar": ^4.0.9 - "@jupyterlab/toc": ^6.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyter/ydoc": ^1.1.1 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/codemirror": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/documentsearch": ^4.0.10 + "@jupyterlab/lsp": ^4.0.10 + "@jupyterlab/statusbar": ^4.0.10 + "@jupyterlab/toc": ^6.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/commands": ^2.1.3 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.0 react: ^18.2.0 regexp-match-indices: ^1.0.2 - checksum: a7ad9e2873834f20f4fc3a06f85d780a6650f978862b1ee1000c529dc0f4b6b1f3ff8be081fde92f290938c4fc177c359a5b16dbb21fb9953d358b82914a5b3d + checksum: c2e7e773b3e177c5c909440869ed26697e4787a586e02cf2ab73271994b0557b2acebac8e1ed81ea789070820e5fda4b64539cebd3016867dbd7958f69acf626 languageName: node linkType: hard -"@jupyterlab/help-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/help-extension@npm:4.0.9" +"@jupyterlab/help-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/help-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/mainmenu": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/mainmenu": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/virtualdom": ^2.0.1 "@lumino/widgets": ^2.3.0 react: ^18.2.0 - checksum: 21a5ef19fdc376e9061a9ea8a4e6bd99f74e7a478a7ae641837402362c9485def215f76204fc4207ae677ff104153098419577a492e93fc4a1bc82121b5500ee + checksum: 94c35db0cb74d0b65ea93ddfcf444bb2bceb43a98fb30c80b1c576ee484be395516789962d75dd32c50f6ff5c34784647f42108c641a3e29fc327fec362bfe56 languageName: node linkType: hard -"@jupyterlab/htmlviewer-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/htmlviewer-extension@npm:4.0.9" +"@jupyterlab/htmlviewer-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/htmlviewer-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/htmlviewer": ^4.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 - checksum: bbe8f6e91833c747783b57f11d7754b2b0dab791ef76331c1a3a031e86a69f24f3de8d8fb42a4209bdbfb20680c816bef763df9c084d8d6590574c51acbb7782 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/htmlviewer": ^4.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 + checksum: da1d477d9a43dde214ab6c243190fc1a19fc71c5480c6930b7a9245bcb6b9b5444fc6f72ef442634f047e35c5df639983acd79fcc4603123fc46531b1830f944 languageName: node linkType: hard -"@jupyterlab/htmlviewer@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/htmlviewer@npm:4.0.9" +"@jupyterlab/htmlviewer@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/htmlviewer@npm:4.0.10" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.0 react: ^18.2.0 - checksum: 1fee9d87e2bea005c9d0f81b2508863c96f0fc071d6addd4a03024c0461c1a61825fe47113daf7fc6813f5980879c5f88a6e4140c351b470485099d5363bbea0 + checksum: d7b63ddf4bf46389cf85e0975215c423cff1f938c85066efd66aa6306477cff9d24b0886f22d9c4af036a41ea9cef3542ff8d62cf02b0f2e593469a159c6b09e languageName: node linkType: hard -"@jupyterlab/hub-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/hub-extension@npm:4.0.9" +"@jupyterlab/hub-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/hub-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/translation": ^4.0.9 - checksum: 02464eebfd4f3288627abf5f459adac67097d160649e29024bfcbded6f2d705dac9ca1954868af047a629b25f205b72a592c4693e7859a98f54aab45ddf14ed0 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/translation": ^4.0.10 + checksum: 0f4727787fb5527b5f29dc2104ec97849545fa4d5481cdf63ed53fe206f68753dfc390dc4f20054269465d7cfbc77dfd7db01262a1b9a2878c5c5e72a2b83627 languageName: node linkType: hard -"@jupyterlab/imageviewer-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/imageviewer-extension@npm:4.0.9" +"@jupyterlab/imageviewer-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/imageviewer-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/imageviewer": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - checksum: 3c11819f8458fc88eebe379983847504becd71709a45b54963b8d0437f6621ffe2d55bddd8591154a87105aaebbc0d1576c5af7ac6888e6129c469f37949dc9b + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/imageviewer": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + checksum: 672490a92eceac37432bb74934cb3041ec752b3e31e0c766cfb8f243ba908ae554d64bea1edda7f361528fdd7af18a92d55bd145a8dadd9a614e94595bbeb90b languageName: node linkType: hard -"@jupyterlab/imageviewer@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/imageviewer@npm:4.0.9" +"@jupyterlab/imageviewer@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/imageviewer@npm:4.0.10" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docregistry": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docregistry": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.0 - checksum: a6a4873b8275a9ab9547cfd116ac68fcef36aa5710eaf6f5ca3910cb9480c401c1dd2ece53a60b5b665816b803d4735464a57622a82eab7efe720a3175721aa7 + checksum: 4f32204685c78ae5a396269a97b1971f95cc78ff62291448de053b8b10cad4586335a44f3cf82e47940bf99f5b5aa3c71acc0c99e9b5ffcc59987fa84625da85 languageName: node linkType: hard -"@jupyterlab/inspector-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/inspector-extension@npm:4.0.9" +"@jupyterlab/inspector-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/inspector-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/console": ^4.0.9 - "@jupyterlab/inspector": ^4.0.9 - "@jupyterlab/launcher": ^4.0.9 - "@jupyterlab/notebook": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/console": ^4.0.10 + "@jupyterlab/inspector": ^4.0.10 + "@jupyterlab/launcher": ^4.0.10 + "@jupyterlab/notebook": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/widgets": ^2.3.0 - checksum: 4e53a6ae88122aee5a0ecc572bf62f30b83fbea3d2a9eb47ea0f1d10bd72d9a0232a78f6343cdccf76214a6d27bd930d39b486a4996727fda5d53a2af35added + checksum: ab9ce01cb9ef69dc455ad3ee2ab924d6970aa95efa8f8f71c114b5a32a6f45b38d412ed12fd6f8bb789b2892859d726e46b03cd9497c53c9ccf15ce5f7543cc4 languageName: node linkType: hard -"@jupyterlab/inspector@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/inspector@npm:4.0.9" +"@jupyterlab/inspector@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/inspector@npm:4.0.10" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/statedb": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/statedb": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/polling": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.0 - checksum: 29e0d0aadb934dff1f495d8dd3b90fa9511427c0eddb13d4d35351a362157b18132dbcb9a35f70f2fe7bc71d3ef2bca45f6e8861daaf4d48d7b54868dbdb3edc + checksum: a06b623109828d596a514a7bd509f469263d52716b9ee24298e1af2194ff3bc3f2e49da5672443e45b25c910b82f7d38d9162f92896b05ad2716d286c60638da languageName: node linkType: hard -"@jupyterlab/javascript-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/javascript-extension@npm:4.0.9" +"@jupyterlab/javascript-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/javascript-extension@npm:4.0.10" dependencies: - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/rendermime-interfaces": ^3.8.9 - checksum: 6f3b2e38d9267827ac8aff5c8eb8a8e810c680c54cbcd29f043f62a8c965883f4db243abab91297f003a935140cfea566e45c272e901a46616d8d9c196fc7401 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/rendermime-interfaces": ^3.8.10 + checksum: 1394bd2abd079b88e4f145d3e8812d7fedbf4ff30130e9a18226fa22e1284d3bc0ee660eb58bada89260f2b44022760576c651e35454e394ca83fe4eb6033290 languageName: node linkType: hard -"@jupyterlab/json-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/json-extension@npm:4.0.9" +"@jupyterlab/json-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/json-extension@npm:4.0.10" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/codemirror": ^4.0.9 - "@jupyterlab/rendermime-interfaces": ^3.8.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/codemirror": ^4.0.10 + "@jupyterlab/rendermime-interfaces": ^3.8.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lezer/highlight": ^1.1.4 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 @@ -1434,34 +1435,34 @@ __metadata: react-highlight-words: ^0.20.0 react-json-tree: ^0.18.0 style-mod: ^4.0.0 - checksum: e016fef1ad0f144875ba7f5cdbf9aa1b973e1b010579be24de5c3e39f23a9c081ae71afc77c9fd1b432d9c3deebb820d65434de01d7bb511c970c7c893089b41 + checksum: 4e51eb9ae284b6834064e99826480fc62321d34d0e1359459f8a14756ea154430658f949d27bee61a405bbaa07d48dc6ba6ce32dd299f127c594fdcae8d54dc0 languageName: node linkType: hard -"@jupyterlab/launcher-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/launcher-extension@npm:4.0.9" +"@jupyterlab/launcher-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/launcher-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/filebrowser": ^4.0.9 - "@jupyterlab/launcher": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/filebrowser": ^4.0.10 + "@jupyterlab/launcher": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.0 - checksum: 877ba3872699eca670a2fee2cfa8256986c4cab61d260ab60d7edfef80cc121c891f82be850b4c37433660a46ff4f283a6790e822e5b18d33fd80b61e5e07647 + checksum: 6d65ffe7af780a9ac99bbe0458dc11d9988eb3b4b74e94a210f233e1ae382e7627d6b93f14f8e8e92f8e686b365f2e35ce50c0648495c38707c60b780ca33a6a languageName: node linkType: hard -"@jupyterlab/launcher@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/launcher@npm:4.0.9" +"@jupyterlab/launcher@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/launcher@npm:4.0.10" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.1.3 "@lumino/coreutils": ^2.1.2 @@ -1469,79 +1470,79 @@ __metadata: "@lumino/properties": ^2.0.1 "@lumino/widgets": ^2.3.0 react: ^18.2.0 - checksum: 7195dd40be84d8d9d0f9d8571faedfbfad975feaaca0330ccfdb0292164fd399158992164f39bad481e11b2ccb43ab40cd47d5420509502f82472d7b35e31cc7 + checksum: 68939d4b40d239df2ff4a631ac49d4826f2a7abf77f7f97016f26c3dc1f395cfe33d24e7ce1b5be1b2a35574d8d390ac57e065b7cdfd56157d8d1d68d51f6121 languageName: node linkType: hard -"@jupyterlab/logconsole-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/logconsole-extension@npm:4.0.9" +"@jupyterlab/logconsole-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/logconsole-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/logconsole": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/statusbar": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/logconsole": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/statusbar": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.0 react: ^18.2.0 - checksum: bf727918fe594b6cc2fd12f1963124e90f4c03df9566a94f38401f37cff705e0fd861a8b423eef0bdac563d7ec1ffebbd709d7c5c51152a6e6eb9bc6cdc28dcd + checksum: 5790e1e9bc5a24aafa12af42b66e4d864048856f9a4ad8f1a0866dd70e0f75d09694649ec6cfdd345e33635c46086e25968d9bab88b9b51fa4659ad271f1a0ed languageName: node linkType: hard -"@jupyterlab/logconsole@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/logconsole@npm:4.0.9" +"@jupyterlab/logconsole@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/logconsole@npm:4.0.10" dependencies: - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/nbformat": ^4.0.9 - "@jupyterlab/outputarea": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/nbformat": ^4.0.10 + "@jupyterlab/outputarea": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/translation": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.0 - checksum: eaa2e03eef6f07b761726112ec23de3babd17f13f83f3baa58586685fef069bf08aa2f46abf55758205521bce37c63410c0f8eaab796c6389e7ee4cf484ee8ee + checksum: ed423bdbd17b67912cd0f2ebb5bde19a9de4494e842dd99bc42ecfdba02e736544408eb774a891fa601f334747409902ce1c2db809760e6c0cac83acb54ea96c languageName: node linkType: hard -"@jupyterlab/lsp-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/lsp-extension@npm:4.0.9" +"@jupyterlab/lsp-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/lsp-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/lsp": ^4.0.9 - "@jupyterlab/running": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/lsp": ^4.0.10 + "@jupyterlab/running": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/polling": ^2.1.2 "@lumino/signaling": ^2.1.2 "@rjsf/utils": ^5.1.0 react: ^18.2.0 - checksum: 07b990c2d2e7bc85371eb2110a5d44cf00525071d086b6570faa1e8902b90f2bfa51a3f496be2b06d8a046b34bdf3493ffdcc671b5da4c6e1d1ff48871d96731 + checksum: b70635efc27e63f8b3181ec973b401b3b2dab1fce827ead7084ba3d74bc80246eb39536c647b14dee9b205eaf91aa5ec05092a32c65d64d38d7279c1540f9694 languageName: node linkType: hard -"@jupyterlab/lsp@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/lsp@npm:4.0.9" +"@jupyterlab/lsp@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/lsp@npm:4.0.10" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/translation": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 @@ -1549,128 +1550,128 @@ __metadata: vscode-jsonrpc: ^6.0.0 vscode-languageserver-protocol: ^3.17.0 vscode-ws-jsonrpc: ~1.0.2 - checksum: e98abfaff2960eb51b3558db9d701fadaba7503842e2612aaf5cd9a6d827a3832d5351e9d23561939e1482f2f5c2051df0e456ae68e16d3a4ce3aa1f8379a538 + checksum: e7085bb885a04b9ccf63f6c90acd8ea5dd9e6acee7a1da3860942972dd643773780f28d895a7c11a6b0f024aa00c16c4896b19c567be5a011888467d1f45ef8a languageName: node linkType: hard -"@jupyterlab/mainmenu-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/mainmenu-extension@npm:4.0.9" +"@jupyterlab/mainmenu-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/mainmenu-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/mainmenu": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/mainmenu": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/widgets": ^2.3.0 - checksum: 43a0e8178df6960a87de85fc46febe722edf25618af171f6e404499e983a728c67a538dd11e06c6642945462f9e26c869d3ed7ce00e583d8f2ce6c050fca8b50 + checksum: 1582e030f6be6f080a0551276a722bfbfa77392c8efda590ce2a21f6e38eb1dd97a5954a1938509f220a152b3e0d536a8387c8562ef35ad2696a273e5d6daea8 languageName: node linkType: hard -"@jupyterlab/mainmenu@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/mainmenu@npm:4.0.9" +"@jupyterlab/mainmenu@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/mainmenu@npm:4.0.10" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.1.3 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.0 - checksum: 623f110f64297a0d579a0122ffa950a13dd08ff4092a63df8bd5b97c51c64538cad5ae9f51cc5375d7acbd14a906ec1c4e051dca99ae235b0cb033ac33d5689b + checksum: f3b6a3cffddccc22b43921e214ed3c50fe7a9f611b88ea63e9e53dbaf06a2a5ca8afe96b4c99a5add3d0abd98298d67fa81b2769873b90cc5600a8cbaa971e84 languageName: node linkType: hard -"@jupyterlab/markdownviewer-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/markdownviewer-extension@npm:4.0.9" +"@jupyterlab/markdownviewer-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/markdownviewer-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/markdownviewer": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/toc": ^6.0.9 - "@jupyterlab/translation": ^4.0.9 - checksum: 55398a924fdaf58009468fa4c29b5bbbae4ce58b998e75ef40d597237bef8cf91d0aa4efbc8a7dbc71bb349394a96dadd776b173c3fc62ca61bb1df8bfdae069 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/markdownviewer": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/toc": ^6.0.10 + "@jupyterlab/translation": ^4.0.10 + checksum: e3a4df99548ed537cc0aa01e73d34d738b95c9716f9ed6e895f9ee59da0fda436b1326050cb3e4c81acbd4e2f8ef48b2caf9f1e208241f370395bf4d69e2e269 languageName: node linkType: hard -"@jupyterlab/markdownviewer@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/markdownviewer@npm:4.0.9" +"@jupyterlab/markdownviewer@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/markdownviewer@npm:4.0.10" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/toc": ^6.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/toc": ^6.0.10 + "@jupyterlab/translation": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.0 - checksum: af7febdd9dd112307b0b8d016a62b1b72435edb3aaed44d5ad31bd6561f6cedebc26e5a8627574648f2ec7c9b7392ee8f39ab4c24e3935d457b51f4ea6b98904 + checksum: ae6bcc813e79a9ce2f55d07d4aad5212615cbe23d62cef660afbed214287818f6fc2adfa933a1db1ccab38630b68e10c5bf72a66b97944afe02296f71afa2b58 languageName: node linkType: hard -"@jupyterlab/markedparser-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/markedparser-extension@npm:4.0.9" +"@jupyterlab/markedparser-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/markedparser-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/codemirror": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/codemirror": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 marked: ^4.0.17 - checksum: a4482f78ee9d32e10cb0aa16e70f1ab98afbdf84f17e2a073ce12360c28b80d971f6265ab1c763ac35a710b5b88e871a5b3ad603e9600da296fce19d31991c6f + checksum: cb01617e655c1a140f153049885e527682d39af45f0bbe5836fc2e34b03882800d651eea454fd80f976666ae9cf24ff65cc0d7fceaa07cce23c7eafd976285ce languageName: node linkType: hard -"@jupyterlab/mathjax-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/mathjax-extension@npm:4.0.9" +"@jupyterlab/mathjax-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/mathjax-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 "@lumino/coreutils": ^2.1.2 mathjax-full: ^3.2.2 - checksum: 530aad9333591e7266308b5710ec24aa880140ff05e274c1e9a1a31c7bd7c045ef8044672bd44b84d022dcb7d36b9356178404d0d7211d14597bd25ded00d09c + checksum: e3a47b0615712ac69b801ea8ccedf23799253c2ef5ebd80aa6d033007a84e5c0f7e75ca4383b91ffbd02162ef332bb9d3e4177ba05d28c70d0a5d58d8e76e746 languageName: node linkType: hard -"@jupyterlab/metadataform-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/metadataform-extension@npm:4.0.9" +"@jupyterlab/metadataform-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/metadataform-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/metadataform": ^4.0.9 - "@jupyterlab/notebook": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/metadataform": ^4.0.10 + "@jupyterlab/notebook": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 - checksum: 6bab24bc7385c0c0cf802750a233803c6896ae6ebad5deacffcee9a7aa133fa4ec7cc99e8d6c65925fafedfb44edbbfdf9a12d8a4f4e9afe95472772457cab80 + checksum: 65b77fe000e87620b7ec80e50adb0c5a4cc8684b629709db5aec97a142fd4b93f6463dbe9daffe8147931d7bb3e59ad9ee84700baf7cf631e1456d2405cee892 languageName: node linkType: hard -"@jupyterlab/metadataform@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/metadataform@npm:4.0.9" +"@jupyterlab/metadataform@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/metadataform@npm:4.0.10" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/nbformat": ^4.0.9 - "@jupyterlab/notebook": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/nbformat": ^4.0.10 + "@jupyterlab/notebook": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.0 @@ -1678,53 +1679,53 @@ __metadata: "@rjsf/validator-ajv8": ^5.1.0 json-schema: ^0.4.0 react: ^18.2.0 - checksum: 5a730b4b15e20bd8ef98e98f9b9d5e8a7e94f92c628d935c65ca3313bd8362ac98dd95b64cd10ebdc66955fd690e16036dda969216c87794f53ec790d33bd9e1 + checksum: 60143bd36eefbcc5d0cf29639f4e384d2140cf7fdcb5beb5d388883587016e02ae615e22a93f1f7f7056b5a3da908616efc69542f3902d458828ede1f6557da8 languageName: node linkType: hard -"@jupyterlab/nbformat@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/nbformat@npm:4.0.9" +"@jupyterlab/nbformat@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/nbformat@npm:4.0.10" dependencies: "@lumino/coreutils": ^2.1.2 - checksum: 9fb2f2e03c749c46dc2ff4a815ba7a7525dae5d0c44b3d9887a6405b869329d9b3db72f69eada145543a8b37172f5466abf3a621f458793b0565d244218d32e2 + checksum: fb2eca9389df4a48b1fa7e552200e218a2e9901f21e2735769522c0cc5824b98934b90a7b75e415dc5a9cb5c9a9ff205b6e8316c6f6eccf5716cfa7086b511cf languageName: node linkType: hard -"@jupyterlab/notebook-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/notebook-extension@npm:4.0.9" +"@jupyterlab/notebook-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/notebook-extension@npm:4.0.10" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/cells": ^4.0.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/codemirror": ^4.0.9 - "@jupyterlab/completer": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docmanager": ^4.0.9 - "@jupyterlab/docmanager-extension": ^4.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/documentsearch": ^4.0.9 - "@jupyterlab/filebrowser": ^4.0.9 - "@jupyterlab/launcher": ^4.0.9 - "@jupyterlab/logconsole": ^4.0.9 - "@jupyterlab/lsp": ^4.0.9 - "@jupyterlab/mainmenu": ^4.0.9 - "@jupyterlab/metadataform": ^4.0.9 - "@jupyterlab/nbformat": ^4.0.9 - "@jupyterlab/notebook": ^4.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/property-inspector": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/statedb": ^4.0.9 - "@jupyterlab/statusbar": ^4.0.9 - "@jupyterlab/toc": ^6.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/cells": ^4.0.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/codemirror": ^4.0.10 + "@jupyterlab/completer": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docmanager": ^4.0.10 + "@jupyterlab/docmanager-extension": ^4.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/documentsearch": ^4.0.10 + "@jupyterlab/filebrowser": ^4.0.10 + "@jupyterlab/launcher": ^4.0.10 + "@jupyterlab/logconsole": ^4.0.10 + "@jupyterlab/lsp": ^4.0.10 + "@jupyterlab/mainmenu": ^4.0.10 + "@jupyterlab/metadataform": ^4.0.10 + "@jupyterlab/nbformat": ^4.0.10 + "@jupyterlab/notebook": ^4.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/property-inspector": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/statedb": ^4.0.10 + "@jupyterlab/statusbar": ^4.0.10 + "@jupyterlab/toc": ^6.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.1.3 "@lumino/coreutils": ^2.1.2 @@ -1734,32 +1735,32 @@ __metadata: "@lumino/widgets": ^2.3.0 "@rjsf/utils": ^5.1.0 react: ^18.2.0 - checksum: 101ca8fa7e88c2285dbf3d9746a1f184c0259f7acc9d1277a5b71c7a68a8578e006bbc1974d9e02bd0a6fc438addfdd70f90d76a971208e3e18074beff88c314 + checksum: 00ada20a8e74ea8650acb0d02413efa8cf01279949059862845668aaca1f0fb908424a63f28944a3f5278a9bc9953d5a88fe86130dbdb158a97f988b6627ea39 languageName: node linkType: hard -"@jupyterlab/notebook@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/notebook@npm:4.0.9" +"@jupyterlab/notebook@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/notebook@npm:4.0.10" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/cells": ^4.0.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/codemirror": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/documentsearch": ^4.0.9 - "@jupyterlab/lsp": ^4.0.9 - "@jupyterlab/nbformat": ^4.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/statusbar": ^4.0.9 - "@jupyterlab/toc": ^6.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/cells": ^4.0.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/codemirror": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/documentsearch": ^4.0.10 + "@jupyterlab/lsp": ^4.0.10 + "@jupyterlab/nbformat": ^4.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/statusbar": ^4.0.10 + "@jupyterlab/toc": ^6.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/domutils": ^2.0.1 @@ -1770,34 +1771,34 @@ __metadata: "@lumino/virtualdom": ^2.0.1 "@lumino/widgets": ^2.3.0 react: ^18.2.0 - checksum: 9b06dab20570c05cc3382044b0579ecc2577277dda031d252908688d619c7282b9e675b11f0c9de286d0ce60d8b1ee8e69aed3838cc5829e20e21e74304091af + checksum: 19e18594167455cd145662fb4631834ad9d9bc997242d9140a9c9d5332e7a58f1af94d19ac90e5d640e2b798546c8fe6381d6cf56868523a07ea83044b26f3d3 languageName: node linkType: hard -"@jupyterlab/observables@npm:~5.0.9": - version: 5.0.9 - resolution: "@jupyterlab/observables@npm:5.0.9" +"@jupyterlab/observables@npm:~5.0.10": + version: 5.0.10 + resolution: "@jupyterlab/observables@npm:5.0.10" dependencies: "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 - checksum: f2e202c2c1169781a3a5420350edf9268633f651a0f6514ad3e9f37336b615cadf27c90cc6d2b7214cf3f16435c51e2ec5f2d5a14470c4d927ec14438617a964 + checksum: b554bc5d72ecb8780fa92f40369fd94e2a8261a85a5eeb4a5251dc5ec4aa9b6ae5aa9d66eae1c4bc4cfad0e5f144abfa007eec9b49a5ccd6a6c8722615c3d90d languageName: node linkType: hard -"@jupyterlab/outputarea@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/outputarea@npm:4.0.9" +"@jupyterlab/outputarea@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/outputarea@npm:4.0.10" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/nbformat": ^4.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/rendermime-interfaces": ^3.8.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/nbformat": ^4.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/rendermime-interfaces": ^3.8.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/translation": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -1805,168 +1806,168 @@ __metadata: "@lumino/properties": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.0 - checksum: d5b23e427fa7910772e18d5cc0b880a3fe296ae53baba6d42e26544ba02db4c09e6de472bcb5eaf3cd6643ca954a8fe7c4896b213cc1c855f75422025322b287 + checksum: ee110f600d03d394b403ed58ff51b866cc541dffca8253e39bbcdb8938331fb94082136e5d9c8e183744c7bb716b4e80d4ab36c4790879b568b1bc6fa7fe7e9b languageName: node linkType: hard -"@jupyterlab/pdf-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/pdf-extension@npm:4.0.9" +"@jupyterlab/pdf-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/pdf-extension@npm:4.0.10" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.8.9 + "@jupyterlab/rendermime-interfaces": ^3.8.10 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/widgets": ^2.3.0 - checksum: 5afe5300d16d2a68792e0167e03d5ca68cafda495bfbde5c7cd7af34cdb3c48380d012d8221051df52b7c04787bb9b9fb1a661c2071ff899bd98286d80417ddd + checksum: 4c81814038a64020b1cd4073806365922c801df2a5acdb47f8d1b08b997836c85332ebe72e5d1b849945b4b0fece244b8ba6213084a2206f08e8e2f06c54c483 languageName: node linkType: hard -"@jupyterlab/property-inspector@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/property-inspector@npm:4.0.9" +"@jupyterlab/property-inspector@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/property-inspector@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.0 react: ^18.2.0 - checksum: fce5c62460e9d8e666780bd32abcd04453705f3167974a4b072349f7a8e1899fd25d7a5605621bf735b67174738a0bcfc29dbfaa62fab4440956924282dd2892 + checksum: e33a7d63a58b05d52dceeaa8600a764e9b314e1bae60520ddb593457390d24b5d4d0fedf3fcc99e61f2a7a323244440edb8a2defcc28b2dd0a0f261e58e54d93 languageName: node linkType: hard -"@jupyterlab/rendermime-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/rendermime-extension@npm:4.0.9" +"@jupyterlab/rendermime-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/rendermime-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/docmanager": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - checksum: a0be876b006f76bb3e8fcb79c2ac211e4b6c4721786f27d1ceb95a05106b819fbde32505f997483a7eea8a8432045e321579237ccfb38825724ed2fda69eec8c + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/docmanager": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + checksum: e2a3e84a629f8a05f8139c03a8b95d8765cbb1992cb666884554d59fc02d634f647b6dcb530c9a6cc3841e444340a1f996baaea9e3fa0d76920cbfc38f3e6f58 languageName: node linkType: hard -"@jupyterlab/rendermime-interfaces@npm:~3.8.9": - version: 3.8.9 - resolution: "@jupyterlab/rendermime-interfaces@npm:3.8.9" +"@jupyterlab/rendermime-interfaces@npm:~3.8.10": + version: 3.8.10 + resolution: "@jupyterlab/rendermime-interfaces@npm:3.8.10" dependencies: "@lumino/coreutils": ^1.11.0 || ^2.1.2 "@lumino/widgets": ^1.37.2 || ^2.3.0 - checksum: e961b9c50de70c04a8ac4d8a1e15de0ee20fdc998f0155381d77eb56bcba4e6b425314abc76f17753c4f483d57d9841aa3fe20d5779cb7ae45f3e8f10f030d93 + checksum: 46775a03440ac26c661f9b050153a445c8fc3490a39ad776e74dffbbb75e6227ad257f3d4452f4bd435f9cb6db2572ebd8f9794cc12669b17479195c0e709f96 languageName: node linkType: hard -"@jupyterlab/rendermime@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/rendermime@npm:4.0.9" +"@jupyterlab/rendermime@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/rendermime@npm:4.0.10" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/nbformat": ^4.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/rendermime-interfaces": ^3.8.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/nbformat": ^4.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/rendermime-interfaces": ^3.8.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/translation": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.0 lodash.escape: ^4.0.1 - checksum: 7452639c3d128d9cb9eb6982052d8c87561be44edb6ca1d56f080f76a4c324539bdd14cb6ece024cc332ac3585b2dd456991c22703697406e7125c9c61b10dbf + checksum: 2e298e7f64a1eca8a8e0742112a251de21c73bc167ddffbd2d15e38c4e70ccd4b98d6e636c7cce8191aeb51c4a00338f18729b23a7917a4b58e721db13ad8110 languageName: node linkType: hard -"@jupyterlab/running-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/running-extension@npm:4.0.9" +"@jupyterlab/running-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/running-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/rendermime-interfaces": ^3.8.9 - "@jupyterlab/running": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/rendermime-interfaces": ^3.8.10 + "@jupyterlab/running": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/commands": ^2.1.3 "@lumino/polling": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.0 - checksum: c53d1542dbf3c0b15bfc28a63605364b15a4a808e3f5dba536cd9a34407539128743ee728a7e90a496dfd58ca43a04dfdd7e468d5715b856583af1b4e72defb3 + checksum: 4181c6d114c90275dfee57130020c6c412ba4e0d386ee90dea78b041feb59dd1e5f057d272c8a42725cc0e675c06839fa818a3d986a543fe1903159b713e2e13 languageName: node linkType: hard -"@jupyterlab/running@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/running@npm:4.0.9" +"@jupyterlab/running@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/running@npm:4.0.10" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.0 react: ^18.2.0 - checksum: 1fe0b47f05789d14c02cbc7f0dee9efbf9bb46a78d83b6d182dd0514e579bae429b164971da63ff54744662cb3dc84508abeaf50378b2b6b7ba09996e0784cb9 + checksum: b7a6ef30a690a1c94b3a54473a1c2910ba2e4fa574b37cc84271eda3af822ca41668c63ce37776e8515837c0d4375f29f7cd1bf4d163ea027d204ea208f2c51d languageName: node linkType: hard -"@jupyterlab/services@npm:~7.0.9": - version: 7.0.9 - resolution: "@jupyterlab/services@npm:7.0.9" +"@jupyterlab/services@npm:~7.0.10": + version: 7.0.10 + resolution: "@jupyterlab/services@npm:7.0.10" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/nbformat": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/statedb": ^4.0.9 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/nbformat": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/statedb": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/polling": ^2.1.2 "@lumino/properties": ^2.0.1 "@lumino/signaling": ^2.1.2 ws: ^8.11.0 - checksum: 115b878d44b4ce966fe659ca300cca25b13f00e03770d6185e81f0665b88ae3cb1f11b8738a6d66708f3e59c9126c707618c28f90bd7d6c4715f7df31642c15e + checksum: 702f2c9e010ab737bb39bb04c1fc0eab32ef5bc86056aebdb9a64002e04dba123bd8fd0400913ddaef470d23e44ea9f741aa0467a068e2be2a279123e3d1e2a5 languageName: node linkType: hard -"@jupyterlab/settingeditor-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/settingeditor-extension@npm:4.0.9" +"@jupyterlab/settingeditor-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/settingeditor-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/settingeditor": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/statedb": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/settingeditor": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/statedb": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/disposable": ^2.1.2 - checksum: 5bb29506049cb31dfd34d2d358ef527b10c8ecb426af9fa0da24c2fd9072e44c8d7a3dd3cc541bd23120797cd117feb87e94148d46475e78bc86e62efea9edfb + checksum: 28a51e03880ce269d5f49752054d4f3468de8d551f229158ad518cea186ddfe4b158e5aa71d0b75a84ffb5c50cf38748cec097834481feac36cf8330a1f7579c languageName: node linkType: hard -"@jupyterlab/settingeditor@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/settingeditor@npm:4.0.9" +"@jupyterlab/settingeditor@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/settingeditor@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/inspector": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/statedb": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/inspector": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/statedb": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.1.3 "@lumino/coreutils": ^2.1.2 @@ -1980,16 +1981,16 @@ __metadata: "@rjsf/validator-ajv8": ^5.1.0 json-schema: ^0.4.0 react: ^18.2.0 - checksum: 376b763a94413e1fa4dedf345a0d7555c16c275e99ebca69c8214030ae21b6312f95ab5acd1d8127c55735209cd6568e81ab942c32b35a60b56cda51630c3ea5 + checksum: f9d9ba5d30970d3c4ca3485c7d5c1edd6d51119214a36a1ae7ad6fa40fc3bf195e1dfd183638945b9b0278e8ede8621f17e1b6368796ab1f66aa867ebe481873 languageName: node linkType: hard -"@jupyterlab/settingregistry@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/settingregistry@npm:4.0.9" +"@jupyterlab/settingregistry@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/settingregistry@npm:4.0.10" dependencies: - "@jupyterlab/nbformat": ^4.0.9 - "@jupyterlab/statedb": ^4.0.9 + "@jupyterlab/nbformat": ^4.0.10 + "@jupyterlab/statedb": ^4.0.10 "@lumino/commands": ^2.1.3 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -1999,18 +2000,18 @@ __metadata: json5: ^2.2.3 peerDependencies: react: ">=16" - checksum: 7d4c6f3e69ac1e66b7e7c5e53ccfb98a7e073a5a69837b814f368de247ba22f830ac567a6bb231577f6e256b2b2d9c180d50542f43891640e9a5294cb3e7a189 + checksum: 6521f1d01f258eb0d9c735bc00c9680e5caf3276c4e7a0fcf12006ef7aa155409e75ceda333695b7301699e00cd29a4a4d72ffced062147315144e0c59fd5971 languageName: node linkType: hard -"@jupyterlab/shortcuts-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/shortcuts-extension@npm:4.0.9" +"@jupyterlab/shortcuts-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/shortcuts-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.1.3 "@lumino/coreutils": ^2.1.2 @@ -2019,41 +2020,41 @@ __metadata: "@lumino/keyboard": ^2.0.1 "@lumino/widgets": ^2.3.0 react: ^18.2.0 - checksum: 62d6a74c9b00df6e7fdd06087db2e061cd41105e1c552826e777d4b175646dd2d08f77cca02df99af853cc5a78edbb682e89e7688416140e3f18579f6772dab4 + checksum: e5add4d31caf172d27d20ddaeeae393a002f07034c544d7d5287c87f13dea079740713556fdcea88be813cb3fb912653f2dc9cffbc89e7bc58c492e9fe3203e1 languageName: node linkType: hard -"@jupyterlab/statedb@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/statedb@npm:4.0.9" +"@jupyterlab/statedb@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/statedb@npm:4.0.10" dependencies: "@lumino/commands": ^2.1.3 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/properties": ^2.0.1 "@lumino/signaling": ^2.1.2 - checksum: 0a813068476a1e2dad5aebbbe2a339e8931ba4e29c873d59a2baeed05ab71307e5a629802fddeaec666cec14e4bee45e0d733abe0b1ea0dbf930c8a427188e7b + checksum: 4032966b981c775f53b28137cde3b7c215444e898e9570b2f814c2fb1ee1d8f023702287a61d7d4267fffb71e9d8bdc2e79d165f0238a59ec0fea717540f0324 languageName: node linkType: hard -"@jupyterlab/statusbar-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/statusbar-extension@npm:4.0.9" +"@jupyterlab/statusbar-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/statusbar-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/statusbar": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - checksum: 6490bb8afcc112c71afcf4888cfbc8ee7c8eaab30d2679149fc2bb5dcd5ef6fe74c3f573373062415b6e8817f84989edb844c7657a1f4ffe052c7aab5a17e8e1 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/statusbar": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + checksum: 0281863880bd09f41c04e70edb12780c41127a7021708bc8e8d921f7826f7c39c607088e0ee120330a582a648e882c54a7db39344648a3bb0a7d9c95c6a4054d languageName: node linkType: hard -"@jupyterlab/statusbar@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/statusbar@npm:4.0.9" +"@jupyterlab/statusbar@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/statusbar@npm:4.0.10" dependencies: - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -2061,36 +2062,36 @@ __metadata: "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.0 react: ^18.2.0 - checksum: 09f96eea8c5601c2ddeb0f3a7eafc03f06eb949d54d0588c80f3834a14e8f99e04f19013b181ce147de1a801349f6e4c26c106916f916fd79e0ff1aab2ab3e55 + checksum: 7c1a352bbe1142967014f24149a7ee161c18a7023852a74d5a959aa99e1bee8dc1540f9cfd5f225f7d4bafce91fd6f7577facc4ad891a2b25d2f8aa9285fa692 languageName: node linkType: hard -"@jupyterlab/terminal-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/terminal-extension@npm:4.0.9" +"@jupyterlab/terminal-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/terminal-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/launcher": ^4.0.9 - "@jupyterlab/mainmenu": ^4.0.9 - "@jupyterlab/running": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/terminal": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/launcher": ^4.0.10 + "@jupyterlab/mainmenu": ^4.0.10 + "@jupyterlab/running": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/terminal": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/widgets": ^2.3.0 - checksum: b909b0b6c4bfdb281c6846771108f810f75197a62e9b828679852db2aaaadc2d8c145fbb02188bab5cba1bec232bc3e698db463744a00086e610f54950b6bbca + checksum: 8b9cecc7180daad2fe9114ed83d4bae3f98d5e82df5a69851d0c62a72d2ec4e2774c6121e474a775380e2d71b74522814c5dafa9fa80a827b1e7e1c0732ff4e1 languageName: node linkType: hard -"@jupyterlab/terminal@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/terminal@npm:4.0.9" +"@jupyterlab/terminal@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/terminal@npm:4.0.10" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/translation": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/domutils": ^2.0.1 "@lumino/messaging": ^2.0.1 @@ -2100,146 +2101,146 @@ __metadata: xterm-addon-fit: ~0.7.0 xterm-addon-web-links: ~0.8.0 xterm-addon-webgl: ~0.14.0 - checksum: 19c155393666e09bb0a7773160c83008eb9f15b7b031c3c68acd41097ad3edefac03b0f65107a6298b075180535cb9510858416e67a647fca0363f65a3c718e5 + checksum: a91ad591f43a8c8a285a86b504bc578dbfad9a322dd62994149b2fc6d1e223af61b194d435216c32009a4f0e77ae5a01c227ba10b0d465faeb06bbd7a52172f3 languageName: node linkType: hard -"@jupyterlab/theme-dark-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/theme-dark-extension@npm:4.0.9" +"@jupyterlab/theme-dark-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/theme-dark-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/translation": ^4.0.9 - checksum: 37d7f2ea8506cdf305443ab223536fe1049becbfdaf9a4180aef9fb9661e15d11530707b315bcca280b6d25318d2bcc05a171b9453591e9e7ff7d91680eeffaa + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/translation": ^4.0.10 + checksum: 1f130593bcac9b3553ad844e9a6ff45400ee50e7d3e463aaaa6438da4c700b643b9c2d4c5a01e2f6dd7b12914c3fa4ab9f9aee1917b34e8f99f669b827ec7fdb languageName: node linkType: hard -"@jupyterlab/theme-light-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/theme-light-extension@npm:4.0.9" +"@jupyterlab/theme-light-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/theme-light-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/translation": ^4.0.9 - checksum: 4cd45e1f1f3c44dcfc092750eaa55d2acfbe12c6705e8e738f5f487667aee3fcd0ab9d1cf083103e59036124d82f658e6af3e0732678e05554e5fd6c4e741de2 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/translation": ^4.0.10 + checksum: ba017634f67e01aba6d4910de5bda36d1f2ae61eacbb82901b4ef8118e84da9bf70075d4a5515d4ccdea05953f72a0a857ec6b8063cc362e7db773204ae9e52d languageName: node linkType: hard -"@jupyterlab/toc-extension@npm:~6.0.9": - version: 6.0.9 - resolution: "@jupyterlab/toc-extension@npm:6.0.9" +"@jupyterlab/toc-extension@npm:~6.0.10": + version: 6.0.10 + resolution: "@jupyterlab/toc-extension@npm:6.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/toc": ^6.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 - checksum: 9f2ae9a695f559c786d075fb53d6becc4df32ca1aeb8311d5b8a86d67aa58479b79db5c04439a0e201ca51005c6d052dfb40758671281b8eefe99a28fdec0e8f + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/toc": ^6.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 + checksum: 4da26e546ec8cc9ddf9a66d2670a9cec7ab6e54469324b27eaaee86711032f2c9b61856de31561ddf54a67e45de05acf727bb36f8ec39c1c84be50cf8cf9d6dc languageName: node linkType: hard -"@jupyterlab/toc@npm:~6.0.9": - version: 6.0.9 - resolution: "@jupyterlab/toc@npm:6.0.9" +"@jupyterlab/toc@npm:~6.0.10": + version: 6.0.10 + resolution: "@jupyterlab/toc@npm:6.0.10" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.0 react: ^18.2.0 - checksum: 4528f9be797b8bd76ee92888f6089aa5533884886fa7d129696ae22853f52e918a7e0f19b7966410c8e64162598027416781b1d120eebaa5dc8aef4e5f4a9c13 + checksum: 7079610e69a916f6e579a5936f56835ebc824f276f33df17a709c3fde4edbdfc3e7e4abd9ba0b74e169764500053ccbeb2a5cfd8b008e470baa8d25e751aaaa1 languageName: node linkType: hard -"@jupyterlab/tooltip-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/tooltip-extension@npm:4.0.9" +"@jupyterlab/tooltip-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/tooltip-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/console": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/fileeditor": ^4.0.9 - "@jupyterlab/notebook": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/tooltip": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/console": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/fileeditor": ^4.0.10 + "@jupyterlab/notebook": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/tooltip": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.0 - checksum: 44ca629c0547a4bfd6a135f1c517cf00c425ba6fc4afa86f8c9ff48103e913badd8b23b42eb4d90cb644f3541337ef3a4220b311679363d40df0ff87b81a21a3 + checksum: 5b5c8517fcb075752aff324722654666c1756060e708d5cfb4c2ad20f36b270042417511a754f603bee9273873dd5745daa30251c54780bf5e6f2b3946449389 languageName: node linkType: hard -"@jupyterlab/tooltip@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/tooltip@npm:4.0.9" +"@jupyterlab/tooltip@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/tooltip@npm:4.0.10" dependencies: - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.0 - checksum: b757ced888972e86a478eb39f7d57df994fa98bccc53485a613a0e1e5cf47cb265e048218882b31ad1868db07fd924181eb4a05a5d64ac27eae747b79d399c65 + checksum: eb7346027fe463c1a9b1f540331fdc4e7ee592e206e05f6ca192d69ac5791e0565fa5f7c03d86147c921421fefa6d39cdd5d1f419675119be07be370ceba0c43 languageName: node linkType: hard -"@jupyterlab/translation-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/translation-extension@npm:4.0.9" +"@jupyterlab/translation-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/translation-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/mainmenu": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - checksum: 3b9863c90b38f6b2606a42c8f18a7d307a75b499cf01f30846237646dd53570b3fabcda7888342169704d650cc27a3b8bc116095e118a713c30083c4cb6a1cc6 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/mainmenu": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + checksum: 29cebcdc61683b69f563d846d9e04e7b35688331fa9698a33647f0e00fb47a37a3653a49240d3d74e1a5ef5d4adbfc02c2b9dc36e6659bba60d226d79ad34d6b languageName: node linkType: hard -"@jupyterlab/translation@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/translation@npm:4.0.9" +"@jupyterlab/translation@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/translation@npm:4.0.10" dependencies: - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/rendermime-interfaces": ^3.8.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/statedb": ^4.0.9 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/rendermime-interfaces": ^3.8.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/statedb": ^4.0.10 "@lumino/coreutils": ^2.1.2 - checksum: 8acc2ab87261918b16ab24a3ef07d8a273049bb795f16d54180d33c54685ed2c822d49a451e76164da5451efbdd24d72953dca5fe8de375264620e1b2610c687 + checksum: bc959546627d58523fad02944697a5464481794f533fd5a8b1968d2fcdac64f3dbe82ea380017245ea3b65dc4c24136c39823b2a8627bcea1397c2e6a1343368 languageName: node linkType: hard -"@jupyterlab/ui-components-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/ui-components-extension@npm:4.0.9" +"@jupyterlab/ui-components-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/ui-components-extension@npm:4.0.10" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 - checksum: 7d2b575bfb012a6a98a503614173c5f2e0c525e007cb1d373b11ca0fdba9d5733518059226c60f3892af7356d7bcea58b77bf6b451c45eaa63b7019f07364eb2 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 + checksum: 9939cadbecc4ef741ee6a331d5604a90654d7ef92f72c5174a7a96abd4a71036f7a3e98ec92bb45be1b3d9fc7900cf1c7b38fdb0e1fdd8613586f733a0e61f9a languageName: node linkType: hard -"@jupyterlab/ui-components@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/ui-components@npm:4.0.9" +"@jupyterlab/ui-components@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/ui-components@npm:4.0.10" dependencies: - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/rendermime-interfaces": ^3.8.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/rendermime-interfaces": ^3.8.10 + "@jupyterlab/translation": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.1.3 "@lumino/coreutils": ^2.1.2 @@ -2257,21 +2258,21 @@ __metadata: typestyle: ^2.0.4 peerDependencies: react: ^18.2.0 - checksum: 416d67e65b409f8f1e1960606aff283d909dd4c65c44ac0122b7ea15caeff16ab6537fa337a42b7f8782fde60db6566f08682a3c6bea84c002bd8d145e23d17a + checksum: 4cff8e7f5fc6ad0c7e2041ced85dcd38d32f1570c4b4c613e25a0804f430e905a207b9d0c91f9e5674bb9bd9fb9ea7271855e82be5f523dabef01e0d63c1a499 languageName: node linkType: hard -"@jupyterlab/vega5-extension@npm:~4.0.9": - version: 4.0.9 - resolution: "@jupyterlab/vega5-extension@npm:4.0.9" +"@jupyterlab/vega5-extension@npm:~4.0.10": + version: 4.0.10 + resolution: "@jupyterlab/vega5-extension@npm:4.0.10" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.8.9 + "@jupyterlab/rendermime-interfaces": ^3.8.10 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.0 vega: ^5.20.0 vega-embed: ^6.2.1 vega-lite: ^5.6.1-next.1 - checksum: 078695fd23941e1c72294159821f0bdc8ac155663ec99d40424d101916e2baec9d3054591f4b4e316f1846dd92e4e7888c0e1775f90150b2db6d61f414b1323e + checksum: fe04a4d85a61f25f3037e1705580ae85ef91b4e03284413a891d6405b0d583bf6a7b6f16a9ee1f2481a8a23fda07db59142c10d9dc2833e4b51bf87f364dba34 languageName: node linkType: hard diff --git a/jupyterlab/tests/mock_packages/extension/package.json b/jupyterlab/tests/mock_packages/extension/package.json index 90ce680b06a5..94c9d0471f19 100644 --- a/jupyterlab/tests/mock_packages/extension/package.json +++ b/jupyterlab/tests/mock_packages/extension/package.json @@ -1,12 +1,12 @@ { "name": "@jupyterlab/mock-extension", - "version": "4.0.9", + "version": "4.0.10", "private": true, "dependencies": { - "@jupyterlab/launcher": "^4.0.9" + "@jupyterlab/launcher": "^4.0.10" }, "devDependencies": { - "@jupyterlab/builder": "^4.0.9" + "@jupyterlab/builder": "^4.0.10" }, "jupyterlab": { "extension": true, diff --git a/jupyterlab/tests/mock_packages/interop/consumer/package.json b/jupyterlab/tests/mock_packages/interop/consumer/package.json index c0a664677843..677bf2f98224 100644 --- a/jupyterlab/tests/mock_packages/interop/consumer/package.json +++ b/jupyterlab/tests/mock_packages/interop/consumer/package.json @@ -1,12 +1,12 @@ { "name": "@jupyterlab/mock-consumer", - "version": "4.0.9", + "version": "4.0.10", "private": true, "dependencies": { - "@jupyterlab/mock-token": "^4.0.9" + "@jupyterlab/mock-token": "^4.0.10" }, "devDependencies": { - "@jupyterlab/builder": "^4.0.9" + "@jupyterlab/builder": "^4.0.10" }, "jupyterlab": { "extension": true, diff --git a/jupyterlab/tests/mock_packages/interop/provider/package.json b/jupyterlab/tests/mock_packages/interop/provider/package.json index 464450d333c7..182a04f33129 100644 --- a/jupyterlab/tests/mock_packages/interop/provider/package.json +++ b/jupyterlab/tests/mock_packages/interop/provider/package.json @@ -1,12 +1,12 @@ { "name": "@jupyterlab/mock-provider", - "version": "4.0.9", + "version": "4.0.10", "private": true, "dependencies": { - "@jupyterlab/mock-token": "^4.0.9" + "@jupyterlab/mock-token": "^4.0.10" }, "devDependencies": { - "@jupyterlab/builder": "^4.0.9" + "@jupyterlab/builder": "^4.0.10" }, "jupyterlab": { "extension": true diff --git a/jupyterlab/tests/mock_packages/interop/token/package.json b/jupyterlab/tests/mock_packages/interop/token/package.json index 7eb0136911ad..ddef7d2b3f8d 100644 --- a/jupyterlab/tests/mock_packages/interop/token/package.json +++ b/jupyterlab/tests/mock_packages/interop/token/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mock-token", - "version": "4.0.9", + "version": "4.0.10", "private": true, "dependencies": { "@lumino/coreutils": "^2.1.2" diff --git a/packages/application-extension/package.json b/packages/application-extension/package.json index 58fdc2d9df8f..73175dc06362 100644 --- a/packages/application-extension/package.json +++ b/packages/application-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/application-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Application Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,15 +38,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/property-inspector": "^4.0.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/statedb": "^4.0.9", - "@jupyterlab/statusbar": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/property-inspector": "^4.0.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/statedb": "^4.0.10", + "@jupyterlab/statusbar": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.1.3", "@lumino/coreutils": "^2.1.2", diff --git a/packages/application/package.json b/packages/application/package.json index bdb4709213ee..f66268e1f643 100644 --- a/packages/application/package.json +++ b/packages/application/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/application", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Application", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -43,15 +43,15 @@ }, "dependencies": { "@fortawesome/fontawesome-free": "^5.12.0", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/docregistry": "^4.0.9", - "@jupyterlab/rendermime": "^4.0.9", - "@jupyterlab/rendermime-interfaces": "^3.8.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/statedb": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/docregistry": "^4.0.10", + "@jupyterlab/rendermime": "^4.0.10", + "@jupyterlab/rendermime-interfaces": "^3.8.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/statedb": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/algorithm": "^2.0.1", "@lumino/application": "^2.2.1", "@lumino/commands": "^2.1.3", @@ -64,7 +64,7 @@ "@lumino/widgets": "^2.3.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~3.0.0", diff --git a/packages/apputils-extension/package.json b/packages/apputils-extension/package.json index 76140851e000..7d1022211b4d 100644 --- a/packages/apputils-extension/package.json +++ b/packages/apputils-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/apputils-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Application Utilities Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,19 +38,19 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/docregistry": "^4.0.9", - "@jupyterlab/filebrowser": "^4.0.9", - "@jupyterlab/mainmenu": "^4.0.9", - "@jupyterlab/rendermime-interfaces": "^3.8.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/statedb": "^4.0.9", - "@jupyterlab/statusbar": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/docregistry": "^4.0.10", + "@jupyterlab/filebrowser": "^4.0.10", + "@jupyterlab/mainmenu": "^4.0.10", + "@jupyterlab/rendermime-interfaces": "^3.8.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/statedb": "^4.0.10", + "@jupyterlab/statusbar": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.1.3", "@lumino/coreutils": "^2.1.2", diff --git a/packages/apputils/package.json b/packages/apputils/package.json index df66f330f9a8..679ed07fbabe 100644 --- a/packages/apputils/package.json +++ b/packages/apputils/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/apputils", - "version": "4.1.9", + "version": "4.1.10", "description": "JupyterLab - Application Utilities", "keywords": [ "jupyter", @@ -45,15 +45,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/observables": "^5.0.9", - "@jupyterlab/rendermime-interfaces": "^3.8.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/statedb": "^4.0.9", - "@jupyterlab/statusbar": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/observables": "^5.0.10", + "@jupyterlab/rendermime-interfaces": "^3.8.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/statedb": "^4.0.10", + "@jupyterlab/statusbar": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.1.3", "@lumino/coreutils": "^2.1.2", @@ -68,7 +68,7 @@ "sanitize-html": "~2.7.3" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "@types/sanitize-html": "^2.3.1", "jest": "^29.2.0", diff --git a/packages/attachments/package.json b/packages/attachments/package.json index 623dba42cbfa..2f10c0fa41b1 100644 --- a/packages/attachments/package.json +++ b/packages/attachments/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/attachments", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Notebook Cell Attachments", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,10 +37,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/nbformat": "^4.0.9", - "@jupyterlab/observables": "^5.0.9", - "@jupyterlab/rendermime": "^4.0.9", - "@jupyterlab/rendermime-interfaces": "^3.8.9", + "@jupyterlab/nbformat": "^4.0.10", + "@jupyterlab/observables": "^5.0.10", + "@jupyterlab/rendermime": "^4.0.10", + "@jupyterlab/rendermime-interfaces": "^3.8.10", "@lumino/disposable": "^2.1.2", "@lumino/signaling": "^2.1.2" }, diff --git a/packages/cell-toolbar-extension/package.json b/packages/cell-toolbar-extension/package.json index 1c76eaddd830..a219b8f77350 100644 --- a/packages/cell-toolbar-extension/package.json +++ b/packages/cell-toolbar-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/cell-toolbar-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "Extension for cell toolbar adapted from jlab-enhanced-cell-toolbar", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -34,11 +34,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/cell-toolbar": "^4.0.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/translation": "^4.0.9" + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/cell-toolbar": "^4.0.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/translation": "^4.0.10" }, "devDependencies": { "rimraf": "~3.0.0", diff --git a/packages/cell-toolbar/package.json b/packages/cell-toolbar/package.json index 125078af316e..d94632e81ede 100644 --- a/packages/cell-toolbar/package.json +++ b/packages/cell-toolbar/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/cell-toolbar", - "version": "4.0.9", + "version": "4.0.10", "description": "Contextual cell toolbar adapted from jlab-enhanced-cell-toolbar", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,12 +41,12 @@ }, "dependencies": { "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/cells": "^4.0.9", - "@jupyterlab/docregistry": "^4.0.9", - "@jupyterlab/notebook": "^4.0.9", - "@jupyterlab/observables": "^5.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/cells": "^4.0.10", + "@jupyterlab/docregistry": "^4.0.10", + "@jupyterlab/notebook": "^4.0.10", + "@jupyterlab/observables": "^5.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.1.3", "@lumino/disposable": "^2.1.2", @@ -54,7 +54,7 @@ "@lumino/widgets": "^2.3.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~3.0.0", diff --git a/packages/cells/package.json b/packages/cells/package.json index cce97df8258a..473d4299ed52 100644 --- a/packages/cells/package.json +++ b/packages/cells/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/cells", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Notebook Cells", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -46,21 +46,21 @@ "@codemirror/state": "^6.2.0", "@codemirror/view": "^6.9.6", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/attachments": "^4.0.9", - "@jupyterlab/codeeditor": "^4.0.9", - "@jupyterlab/codemirror": "^4.0.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/documentsearch": "^4.0.9", - "@jupyterlab/filebrowser": "^4.0.9", - "@jupyterlab/nbformat": "^4.0.9", - "@jupyterlab/observables": "^5.0.9", - "@jupyterlab/outputarea": "^4.0.9", - "@jupyterlab/rendermime": "^4.0.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/toc": "^6.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/attachments": "^4.0.10", + "@jupyterlab/codeeditor": "^4.0.10", + "@jupyterlab/codemirror": "^4.0.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/documentsearch": "^4.0.10", + "@jupyterlab/filebrowser": "^4.0.10", + "@jupyterlab/nbformat": "^4.0.10", + "@jupyterlab/observables": "^5.0.10", + "@jupyterlab/outputarea": "^4.0.10", + "@jupyterlab/rendermime": "^4.0.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/toc": "^6.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/domutils": "^2.0.1", @@ -73,7 +73,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "@types/react": "^18.0.26", "jest": "^29.2.0", diff --git a/packages/celltags-extension/package.json b/packages/celltags-extension/package.json index 7173521d87ae..ccdbd990eadd 100644 --- a/packages/celltags-extension/package.json +++ b/packages/celltags-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/celltags-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "An extension for manipulating tags in cell metadata", "keywords": [ "jupyter", @@ -40,10 +40,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/notebook": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/notebook": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/algorithm": "^2.0.1", "@rjsf/utils": "^5.1.0", "react": "^18.2.0" diff --git a/packages/codeeditor/package.json b/packages/codeeditor/package.json index cea83fdfa3aa..20c131512f48 100644 --- a/packages/codeeditor/package.json +++ b/packages/codeeditor/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/codeeditor", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Abstract Code Editor", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -44,12 +44,12 @@ "dependencies": { "@codemirror/state": "^6.2.0", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/nbformat": "^4.0.9", - "@jupyterlab/observables": "^5.0.9", - "@jupyterlab/statusbar": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/nbformat": "^4.0.10", + "@jupyterlab/observables": "^5.0.10", + "@jupyterlab/statusbar": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/dragdrop": "^2.1.4", @@ -59,7 +59,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~3.0.0", diff --git a/packages/codemirror-extension/package.json b/packages/codemirror-extension/package.json index 62e7297554de..8386468fc90e 100644 --- a/packages/codemirror-extension/package.json +++ b/packages/codemirror-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/codemirror-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - CodeMirror Provider Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,13 +42,13 @@ "@codemirror/language": "^6.6.0", "@codemirror/legacy-modes": "^6.3.2", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/codeeditor": "^4.0.9", - "@jupyterlab/codemirror": "^4.0.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/statusbar": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/codeeditor": "^4.0.10", + "@jupyterlab/codemirror": "^4.0.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/statusbar": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/coreutils": "^2.1.2", "@lumino/widgets": "^2.3.0", "@rjsf/utils": "^5.1.0", diff --git a/packages/codemirror/package.json b/packages/codemirror/package.json index 64dbe7caaf2e..900c3be645f5 100644 --- a/packages/codemirror/package.json +++ b/packages/codemirror/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/codemirror", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - CodeMirror Editor Provider", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -59,11 +59,11 @@ "@codemirror/state": "^6.2.0", "@codemirror/view": "^6.9.6", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/codeeditor": "^4.0.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/documentsearch": "^4.0.9", - "@jupyterlab/nbformat": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", + "@jupyterlab/codeeditor": "^4.0.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/documentsearch": "^4.0.10", + "@jupyterlab/nbformat": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", "@lezer/common": "^1.0.2", "@lezer/generator": "^1.2.2", "@lezer/highlight": "^1.1.4", @@ -74,7 +74,7 @@ "yjs": "^13.5.40" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@lezer/generator": "^1.2.2", "@lezer/lr": "^1.3.3", "@types/jest": "^29.2.0", diff --git a/packages/completer-extension/package.json b/packages/completer-extension/package.json index efb06c6b96ea..21b73c2f56bf 100644 --- a/packages/completer-extension/package.json +++ b/packages/completer-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/completer-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Completer Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,10 +38,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/completer": "^4.0.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/completer": "^4.0.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/coreutils": "^2.1.2", "@rjsf/utils": "^5.1.0", "react": "^18.2.0" diff --git a/packages/completer/package.json b/packages/completer/package.json index d4cfa1b47b53..19c7831ee927 100644 --- a/packages/completer/package.json +++ b/packages/completer/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/completer", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Completer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -46,13 +46,13 @@ }, "dependencies": { "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/codeeditor": "^4.0.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/rendermime": "^4.0.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/statedb": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/codeeditor": "^4.0.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/rendermime": "^4.0.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/statedb": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -62,7 +62,7 @@ "@lumino/widgets": "^2.3.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~3.0.0", diff --git a/packages/console-extension/package.json b/packages/console-extension/package.json index 3d7fed7cea60..2b68b3522a1e 100644 --- a/packages/console-extension/package.json +++ b/packages/console-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/console-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Code Console Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,18 +38,18 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/codeeditor": "^4.0.9", - "@jupyterlab/completer": "^4.0.9", - "@jupyterlab/console": "^4.0.9", - "@jupyterlab/filebrowser": "^4.0.9", - "@jupyterlab/launcher": "^4.0.9", - "@jupyterlab/mainmenu": "^4.0.9", - "@jupyterlab/rendermime": "^4.0.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/codeeditor": "^4.0.10", + "@jupyterlab/completer": "^4.0.10", + "@jupyterlab/console": "^4.0.10", + "@jupyterlab/filebrowser": "^4.0.10", + "@jupyterlab/launcher": "^4.0.10", + "@jupyterlab/mainmenu": "^4.0.10", + "@jupyterlab/rendermime": "^4.0.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", diff --git a/packages/console/package.json b/packages/console/package.json index 825211295824..9e6e6e735f62 100644 --- a/packages/console/package.json +++ b/packages/console/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/console", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Code Console", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -46,16 +46,16 @@ "@codemirror/state": "^6.2.0", "@codemirror/view": "^6.9.6", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/cells": "^4.0.9", - "@jupyterlab/codeeditor": "^4.0.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/nbformat": "^4.0.9", - "@jupyterlab/observables": "^5.0.9", - "@jupyterlab/rendermime": "^4.0.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/cells": "^4.0.10", + "@jupyterlab/codeeditor": "^4.0.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/nbformat": "^4.0.10", + "@jupyterlab/observables": "^5.0.10", + "@jupyterlab/rendermime": "^4.0.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/dragdrop": "^2.1.4", @@ -64,8 +64,8 @@ "@lumino/widgets": "^2.3.0" }, "devDependencies": { - "@jupyterlab/codemirror": "^4.0.9", - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/codemirror": "^4.0.10", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~3.0.0", diff --git a/packages/coreutils/package.json b/packages/coreutils/package.json index aa211794fdd1..2719f1af895c 100644 --- a/packages/coreutils/package.json +++ b/packages/coreutils/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/coreutils", - "version": "6.0.9", + "version": "6.0.10", "description": "JupyterLab - Core Utilities", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { diff --git a/packages/csvviewer-extension/package.json b/packages/csvviewer-extension/package.json index 38598c9c6503..cfc6f22d505f 100644 --- a/packages/csvviewer-extension/package.json +++ b/packages/csvviewer-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/csvviewer-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - CSV Widget Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,15 +38,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/csvviewer": "^4.0.9", - "@jupyterlab/docregistry": "^4.0.9", - "@jupyterlab/documentsearch": "^4.0.9", - "@jupyterlab/mainmenu": "^4.0.9", - "@jupyterlab/observables": "^5.0.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/csvviewer": "^4.0.10", + "@jupyterlab/docregistry": "^4.0.10", + "@jupyterlab/documentsearch": "^4.0.10", + "@jupyterlab/mainmenu": "^4.0.10", + "@jupyterlab/observables": "^5.0.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", "@lumino/datagrid": "^2.2.0", "@lumino/widgets": "^2.3.0" }, diff --git a/packages/csvviewer/package.json b/packages/csvviewer/package.json index 760cd2240126..ff675c33b2fa 100644 --- a/packages/csvviewer/package.json +++ b/packages/csvviewer/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/csvviewer", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - CSV Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,10 +42,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/docregistry": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/docregistry": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/coreutils": "^2.1.2", "@lumino/datagrid": "^2.2.0", "@lumino/disposable": "^2.1.2", @@ -54,7 +54,7 @@ "@lumino/widgets": "^2.3.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "canvas": "^2.11.2", "csv-spectrum": "^1.0.0", diff --git a/packages/debugger-extension/package.json b/packages/debugger-extension/package.json index 8446bee7468a..f14d64f0bd1e 100644 --- a/packages/debugger-extension/package.json +++ b/packages/debugger-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/debugger-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Debugger Extension", "keywords": [ "jupyter", @@ -44,24 +44,24 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/cells": "^4.0.9", - "@jupyterlab/codeeditor": "^4.0.9", - "@jupyterlab/console": "^4.0.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/debugger": "^4.0.9", - "@jupyterlab/docregistry": "^4.0.9", - "@jupyterlab/fileeditor": "^4.0.9", - "@jupyterlab/logconsole": "^4.0.9", - "@jupyterlab/notebook": "^4.0.9", - "@jupyterlab/rendermime": "^4.0.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/translation": "^4.0.9" + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/cells": "^4.0.10", + "@jupyterlab/codeeditor": "^4.0.10", + "@jupyterlab/console": "^4.0.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/debugger": "^4.0.10", + "@jupyterlab/docregistry": "^4.0.10", + "@jupyterlab/fileeditor": "^4.0.10", + "@jupyterlab/logconsole": "^4.0.10", + "@jupyterlab/notebook": "^4.0.10", + "@jupyterlab/rendermime": "^4.0.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/translation": "^4.0.10" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "@types/react-dom": "^18.0.9", "rimraf": "~3.0.0", diff --git a/packages/debugger/package.json b/packages/debugger/package.json index e6e2445bed5b..f749b72f47d8 100644 --- a/packages/debugger/package.json +++ b/packages/debugger/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/debugger", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Debugger Extension", "keywords": [ "jupyter", @@ -52,21 +52,21 @@ "@codemirror/state": "^6.2.0", "@codemirror/view": "^6.9.6", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/cells": "^4.0.9", - "@jupyterlab/codeeditor": "^4.0.9", - "@jupyterlab/codemirror": "^4.0.9", - "@jupyterlab/console": "^4.0.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/docregistry": "^4.0.9", - "@jupyterlab/fileeditor": "^4.0.9", - "@jupyterlab/notebook": "^4.0.9", - "@jupyterlab/observables": "^5.0.9", - "@jupyterlab/rendermime": "^4.0.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/cells": "^4.0.10", + "@jupyterlab/codeeditor": "^4.0.10", + "@jupyterlab/codemirror": "^4.0.10", + "@jupyterlab/console": "^4.0.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/docregistry": "^4.0.10", + "@jupyterlab/fileeditor": "^4.0.10", + "@jupyterlab/notebook": "^4.0.10", + "@jupyterlab/observables": "^5.0.10", + "@jupyterlab/rendermime": "^4.0.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.1.3", "@lumino/coreutils": "^2.1.2", @@ -80,7 +80,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "canvas": "^2.11.2", "jest": "^29.2.0", diff --git a/packages/docmanager-extension/package.json b/packages/docmanager-extension/package.json index cdd68086e2f4..df9813e9a0be 100644 --- a/packages/docmanager-extension/package.json +++ b/packages/docmanager-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/docmanager-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Document Manager Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,16 +38,16 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/docmanager": "^4.0.9", - "@jupyterlab/docregistry": "^4.0.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/statusbar": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/docmanager": "^4.0.10", + "@jupyterlab/docregistry": "^4.0.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/statusbar": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.1.3", "@lumino/coreutils": "^2.1.2", diff --git a/packages/docmanager/package.json b/packages/docmanager/package.json index 709da972e5eb..bd6002b3345d 100644 --- a/packages/docmanager/package.json +++ b/packages/docmanager/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/docmanager", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Document Manager", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,13 +42,13 @@ "watch": "npm run test -- --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/docregistry": "^4.0.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/statusbar": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/docregistry": "^4.0.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/statusbar": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -59,7 +59,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~3.0.0", diff --git a/packages/docregistry/package.json b/packages/docregistry/package.json index 7dd59a98da8f..d5206c9b2291 100644 --- a/packages/docregistry/package.json +++ b/packages/docregistry/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/docregistry", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Document Registry", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -43,15 +43,15 @@ }, "dependencies": { "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/codeeditor": "^4.0.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/observables": "^5.0.9", - "@jupyterlab/rendermime": "^4.0.9", - "@jupyterlab/rendermime-interfaces": "^3.8.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/codeeditor": "^4.0.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/observables": "^5.0.10", + "@jupyterlab/rendermime": "^4.0.10", + "@jupyterlab/rendermime-interfaces": "^3.8.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -61,7 +61,7 @@ "@lumino/widgets": "^2.3.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~3.0.0", diff --git a/packages/documentsearch-extension/package.json b/packages/documentsearch-extension/package.json index aab412ee698e..47a351847390 100644 --- a/packages/documentsearch-extension/package.json +++ b/packages/documentsearch-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/documentsearch-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Document Search Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -34,11 +34,11 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/documentsearch": "^4.0.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/documentsearch": "^4.0.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", "@lumino/widgets": "^2.3.0" }, "devDependencies": { diff --git a/packages/documentsearch/package.json b/packages/documentsearch/package.json index 0ab8b13d9873..791cafe09ba0 100644 --- a/packages/documentsearch/package.json +++ b/packages/documentsearch/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/documentsearch", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Document Search", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,9 +38,9 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/messaging": "^2.0.1", @@ -50,7 +50,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~3.0.0", diff --git a/packages/extensionmanager-extension/package.json b/packages/extensionmanager-extension/package.json index 71e07df58f0b..092610752758 100644 --- a/packages/extensionmanager-extension/package.json +++ b/packages/extensionmanager-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/extensionmanager-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Extension Manager Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -39,12 +39,12 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/extensionmanager": "^4.0.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9" + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/extensionmanager": "^4.0.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10" }, "devDependencies": { "rimraf": "~3.0.0", diff --git a/packages/extensionmanager/package.json b/packages/extensionmanager/package.json index e191034899e5..aeaeed93c3fa 100644 --- a/packages/extensionmanager/package.json +++ b/packages/extensionmanager/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/extensionmanager", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Extension Manager", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,11 +37,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/messaging": "^2.0.1", "@lumino/polling": "^2.1.2", "@lumino/widgets": "^2.3.0", diff --git a/packages/filebrowser-extension/package.json b/packages/filebrowser-extension/package.json index 6514e36bf18c..05dd10be6519 100644 --- a/packages/filebrowser-extension/package.json +++ b/packages/filebrowser-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/filebrowser-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Filebrowser Widget Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,18 +38,18 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/docmanager": "^4.0.9", - "@jupyterlab/docregistry": "^4.0.9", - "@jupyterlab/filebrowser": "^4.0.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/statedb": "^4.0.9", - "@jupyterlab/statusbar": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/docmanager": "^4.0.10", + "@jupyterlab/docregistry": "^4.0.10", + "@jupyterlab/filebrowser": "^4.0.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/statedb": "^4.0.10", + "@jupyterlab/statusbar": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.1.3", "@lumino/widgets": "^2.3.0" diff --git a/packages/filebrowser/package.json b/packages/filebrowser/package.json index f85a698db347..cef232f3a1df 100644 --- a/packages/filebrowser/package.json +++ b/packages/filebrowser/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/filebrowser", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - FileBrowser Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,15 +42,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/docmanager": "^4.0.9", - "@jupyterlab/docregistry": "^4.0.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/statedb": "^4.0.9", - "@jupyterlab/statusbar": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/docmanager": "^4.0.10", + "@jupyterlab/docregistry": "^4.0.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/statedb": "^4.0.10", + "@jupyterlab/statusbar": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -64,7 +64,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~3.0.0", diff --git a/packages/fileeditor-extension/package.json b/packages/fileeditor-extension/package.json index 38f909a5c251..b8168ac89249 100644 --- a/packages/fileeditor-extension/package.json +++ b/packages/fileeditor-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/fileeditor-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Editor Widget Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -40,28 +40,28 @@ "dependencies": { "@codemirror/commands": "^6.2.3", "@codemirror/search": "^6.3.0", - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/codeeditor": "^4.0.9", - "@jupyterlab/codemirror": "^4.0.9", - "@jupyterlab/completer": "^4.0.9", - "@jupyterlab/console": "^4.0.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/docregistry": "^4.0.9", - "@jupyterlab/documentsearch": "^4.0.9", - "@jupyterlab/filebrowser": "^4.0.9", - "@jupyterlab/fileeditor": "^4.0.9", - "@jupyterlab/launcher": "^4.0.9", - "@jupyterlab/lsp": "^4.0.9", - "@jupyterlab/mainmenu": "^4.0.9", - "@jupyterlab/observables": "^5.0.9", - "@jupyterlab/rendermime-interfaces": "^3.8.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/statusbar": "^4.0.9", - "@jupyterlab/toc": "^6.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/codeeditor": "^4.0.10", + "@jupyterlab/codemirror": "^4.0.10", + "@jupyterlab/completer": "^4.0.10", + "@jupyterlab/console": "^4.0.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/docregistry": "^4.0.10", + "@jupyterlab/documentsearch": "^4.0.10", + "@jupyterlab/filebrowser": "^4.0.10", + "@jupyterlab/fileeditor": "^4.0.10", + "@jupyterlab/launcher": "^4.0.10", + "@jupyterlab/lsp": "^4.0.10", + "@jupyterlab/mainmenu": "^4.0.10", + "@jupyterlab/observables": "^5.0.10", + "@jupyterlab/rendermime-interfaces": "^3.8.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/statusbar": "^4.0.10", + "@jupyterlab/toc": "^6.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.1.3", "@lumino/coreutils": "^2.1.2", diff --git a/packages/fileeditor/package.json b/packages/fileeditor/package.json index ae699a8de95d..ce93f51a0681 100644 --- a/packages/fileeditor/package.json +++ b/packages/fileeditor/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/fileeditor", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Editor Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,17 +41,17 @@ }, "dependencies": { "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/codeeditor": "^4.0.9", - "@jupyterlab/codemirror": "^4.0.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/docregistry": "^4.0.9", - "@jupyterlab/documentsearch": "^4.0.9", - "@jupyterlab/lsp": "^4.0.9", - "@jupyterlab/statusbar": "^4.0.9", - "@jupyterlab/toc": "^6.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/codeeditor": "^4.0.10", + "@jupyterlab/codemirror": "^4.0.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/docregistry": "^4.0.10", + "@jupyterlab/documentsearch": "^4.0.10", + "@jupyterlab/lsp": "^4.0.10", + "@jupyterlab/statusbar": "^4.0.10", + "@jupyterlab/toc": "^6.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/commands": "^2.1.3", "@lumino/coreutils": "^2.1.2", "@lumino/messaging": "^2.0.1", @@ -60,7 +60,7 @@ "regexp-match-indices": "^1.0.2" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~3.0.0", diff --git a/packages/help-extension/package.json b/packages/help-extension/package.json index bf3716ee1538..89c364c49375 100644 --- a/packages/help-extension/package.json +++ b/packages/help-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/help-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Help Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,13 +38,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/mainmenu": "^4.0.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/mainmenu": "^4.0.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/coreutils": "^2.1.2", "@lumino/signaling": "^2.1.2", "@lumino/virtualdom": "^2.0.1", diff --git a/packages/htmlviewer-extension/package.json b/packages/htmlviewer-extension/package.json index 3b7eefaa5fad..f95e826032cb 100644 --- a/packages/htmlviewer-extension/package.json +++ b/packages/htmlviewer-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/htmlviewer-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab extension to render HTML files", "keywords": [ "jupyter", @@ -35,14 +35,14 @@ "watch": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/docregistry": "^4.0.9", - "@jupyterlab/htmlviewer": "^4.0.9", - "@jupyterlab/observables": "^5.0.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9" + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/docregistry": "^4.0.10", + "@jupyterlab/htmlviewer": "^4.0.10", + "@jupyterlab/observables": "^5.0.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10" }, "devDependencies": { "rimraf": "~3.0.0", diff --git a/packages/htmlviewer/package.json b/packages/htmlviewer/package.json index 8c7561bc4055..9ccc4eb551ae 100644 --- a/packages/htmlviewer/package.json +++ b/packages/htmlviewer/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/htmlviewer", - "version": "4.0.9", + "version": "4.0.10", "description": "A viewer for HTML documents.", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -33,11 +33,11 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/docregistry": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/docregistry": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/coreutils": "^2.1.2", "@lumino/signaling": "^2.1.2", "@lumino/widgets": "^2.3.0", diff --git a/packages/hub-extension/package.json b/packages/hub-extension/package.json index 54b8aba6f6ad..769d7e3da657 100644 --- a/packages/hub-extension/package.json +++ b/packages/hub-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/hub-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab integration for JupyterHub", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -34,11 +34,11 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/translation": "^4.0.9" + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/translation": "^4.0.10" }, "devDependencies": { "rimraf": "~3.0.0", diff --git a/packages/imageviewer-extension/package.json b/packages/imageviewer-extension/package.json index 4c4871928cc9..4441eefb1cd0 100644 --- a/packages/imageviewer-extension/package.json +++ b/packages/imageviewer-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/imageviewer-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Image Widget Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,11 +38,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/docregistry": "^4.0.9", - "@jupyterlab/imageviewer": "^4.0.9", - "@jupyterlab/translation": "^4.0.9" + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/docregistry": "^4.0.10", + "@jupyterlab/imageviewer": "^4.0.10", + "@jupyterlab/translation": "^4.0.10" }, "devDependencies": { "rimraf": "~3.0.0", diff --git a/packages/imageviewer/package.json b/packages/imageviewer/package.json index c1b9ea8c5cd5..9e294103f24d 100644 --- a/packages/imageviewer/package.json +++ b/packages/imageviewer/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/imageviewer", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Image Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,15 +42,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/docregistry": "^4.0.9", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/docregistry": "^4.0.10", "@lumino/coreutils": "^2.1.2", "@lumino/messaging": "^2.0.1", "@lumino/widgets": "^2.3.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~3.0.0", diff --git a/packages/inspector-extension/package.json b/packages/inspector-extension/package.json index 57bd060bc7e3..9c0606ba95db 100644 --- a/packages/inspector-extension/package.json +++ b/packages/inspector-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/inspector-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Code Inspector Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,14 +38,14 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/console": "^4.0.9", - "@jupyterlab/inspector": "^4.0.9", - "@jupyterlab/launcher": "^4.0.9", - "@jupyterlab/notebook": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/console": "^4.0.10", + "@jupyterlab/inspector": "^4.0.10", + "@jupyterlab/launcher": "^4.0.10", + "@jupyterlab/notebook": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/widgets": "^2.3.0" }, "devDependencies": { diff --git a/packages/inspector/package.json b/packages/inspector/package.json index bed1cb1fce7a..832a97baa0d4 100644 --- a/packages/inspector/package.json +++ b/packages/inspector/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/inspector", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Code Inspector", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,13 +42,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/codeeditor": "^4.0.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/rendermime": "^4.0.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/statedb": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/codeeditor": "^4.0.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/rendermime": "^4.0.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/statedb": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/polling": "^2.1.2", @@ -56,7 +56,7 @@ "@lumino/widgets": "^2.3.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~3.0.0", diff --git a/packages/javascript-extension/package.json b/packages/javascript-extension/package.json index a38334f31da4..86af04304062 100644 --- a/packages/javascript-extension/package.json +++ b/packages/javascript-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/javascript-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Javascript Renderer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -33,8 +33,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/rendermime": "^4.0.9", - "@jupyterlab/rendermime-interfaces": "^3.8.9" + "@jupyterlab/rendermime": "^4.0.10", + "@jupyterlab/rendermime-interfaces": "^3.8.10" }, "devDependencies": { "rimraf": "~3.0.0", diff --git a/packages/json-extension/package.json b/packages/json-extension/package.json index 0cd1b5014ca8..fbb0cae0e8de 100644 --- a/packages/json-extension/package.json +++ b/packages/json-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/json-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - JSON Renderer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -33,11 +33,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/codemirror": "^4.0.9", - "@jupyterlab/rendermime-interfaces": "^3.8.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/codemirror": "^4.0.10", + "@jupyterlab/rendermime-interfaces": "^3.8.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lezer/highlight": "^1.1.4", "@lumino/coreutils": "^2.1.2", "@lumino/messaging": "^2.0.1", diff --git a/packages/launcher-extension/package.json b/packages/launcher-extension/package.json index c6aaeab1d4e1..b48dfcfe773c 100644 --- a/packages/launcher-extension/package.json +++ b/packages/launcher-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/launcher-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Launcher Page Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,12 +38,12 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/filebrowser": "^4.0.9", - "@jupyterlab/launcher": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/filebrowser": "^4.0.10", + "@jupyterlab/launcher": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/widgets": "^2.3.0" diff --git a/packages/launcher/package.json b/packages/launcher/package.json index 70017b2bb798..003cea73e9a6 100644 --- a/packages/launcher/package.json +++ b/packages/launcher/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/launcher", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Launcher Panel", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,9 +37,9 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.1.3", "@lumino/coreutils": "^2.1.2", diff --git a/packages/logconsole-extension/package.json b/packages/logconsole-extension/package.json index 5e543b7d5074..5414c502cf9a 100644 --- a/packages/logconsole-extension/package.json +++ b/packages/logconsole-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/logconsole-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Log Console Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -34,15 +34,15 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/logconsole": "^4.0.9", - "@jupyterlab/rendermime": "^4.0.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/statusbar": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/logconsole": "^4.0.10", + "@jupyterlab/rendermime": "^4.0.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/statusbar": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/coreutils": "^2.1.2", "@lumino/signaling": "^2.1.2", "@lumino/widgets": "^2.3.0", diff --git a/packages/logconsole/package.json b/packages/logconsole/package.json index 921fb109ba0a..c7719851f9d9 100644 --- a/packages/logconsole/package.json +++ b/packages/logconsole/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/logconsole", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Log Console", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,12 +38,12 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/nbformat": "^4.0.9", - "@jupyterlab/outputarea": "^4.0.9", - "@jupyterlab/rendermime": "^4.0.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/translation": "^4.0.9", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/nbformat": "^4.0.10", + "@jupyterlab/outputarea": "^4.0.10", + "@jupyterlab/rendermime": "^4.0.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/translation": "^4.0.10", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/messaging": "^2.0.1", @@ -51,7 +51,7 @@ "@lumino/widgets": "^2.3.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~3.0.0", diff --git a/packages/lsp-extension/package.json b/packages/lsp-extension/package.json index a590f4af7705..d004c839cd18 100644 --- a/packages/lsp-extension/package.json +++ b/packages/lsp-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/lsp-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -36,12 +36,12 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/lsp": "^4.0.9", - "@jupyterlab/running": "^4.0.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/lsp": "^4.0.10", + "@jupyterlab/running": "^4.0.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/coreutils": "^2.1.2", "@lumino/polling": "^2.1.2", "@lumino/signaling": "^2.1.2", diff --git a/packages/lsp/package.json b/packages/lsp/package.json index c496c9b195d9..becf77b87d6e 100644 --- a/packages/lsp/package.json +++ b/packages/lsp/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/lsp", - "version": "4.0.9", + "version": "4.0.10", "description": "", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -44,12 +44,12 @@ "vscode-languageserver-protocol": "^3.17.0" }, "dependencies": { - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/codeeditor": "^4.0.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/docregistry": "^4.0.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/translation": "^4.0.9", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/codeeditor": "^4.0.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/docregistry": "^4.0.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/translation": "^4.0.10", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/signaling": "^2.1.2", @@ -59,7 +59,7 @@ "vscode-ws-jsonrpc": "~1.0.2" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "@types/lodash.mergewith": "^4.6.1", "jest": "^29.2.0", diff --git a/packages/mainmenu-extension/package.json b/packages/mainmenu-extension/package.json index b445e5dd556e..951d471ec3de 100644 --- a/packages/mainmenu-extension/package.json +++ b/packages/mainmenu-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mainmenu-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Main Menu Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,14 +38,14 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/mainmenu": "^4.0.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/mainmenu": "^4.0.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", diff --git a/packages/mainmenu/package.json b/packages/mainmenu/package.json index c11e73b9c63a..0af84f95751d 100644 --- a/packages/mainmenu/package.json +++ b/packages/mainmenu/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mainmenu", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Main Menu", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,16 +42,16 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.1.3", "@lumino/coreutils": "^2.1.2", "@lumino/widgets": "^2.3.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~3.0.0", diff --git a/packages/markdownviewer-extension/package.json b/packages/markdownviewer-extension/package.json index 32d1e070b7e7..dd0bc3a50fe5 100644 --- a/packages/markdownviewer-extension/package.json +++ b/packages/markdownviewer-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/markdownviewer-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Markdown Renderer Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,14 +38,14 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/markdownviewer": "^4.0.9", - "@jupyterlab/rendermime": "^4.0.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/toc": "^6.0.9", - "@jupyterlab/translation": "^4.0.9" + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/markdownviewer": "^4.0.10", + "@jupyterlab/rendermime": "^4.0.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/toc": "^6.0.10", + "@jupyterlab/translation": "^4.0.10" }, "devDependencies": { "rimraf": "~3.0.0", diff --git a/packages/markdownviewer/package.json b/packages/markdownviewer/package.json index 964689e59b08..52418c433979 100644 --- a/packages/markdownviewer/package.json +++ b/packages/markdownviewer/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/markdownviewer", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Markdown viewer Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,12 +37,12 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/docregistry": "^4.0.9", - "@jupyterlab/rendermime": "^4.0.9", - "@jupyterlab/toc": "^6.0.9", - "@jupyterlab/translation": "^4.0.9", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/docregistry": "^4.0.10", + "@jupyterlab/rendermime": "^4.0.10", + "@jupyterlab/toc": "^6.0.10", + "@jupyterlab/translation": "^4.0.10", "@lumino/coreutils": "^2.1.2", "@lumino/messaging": "^2.0.1", "@lumino/signaling": "^2.1.2", diff --git a/packages/markedparser-extension/package.json b/packages/markedparser-extension/package.json index 8e2992d33041..6cd39f3c6d5b 100644 --- a/packages/markedparser-extension/package.json +++ b/packages/markedparser-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/markedparser-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Markdown parser provider", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -35,9 +35,9 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/codemirror": "^4.0.9", - "@jupyterlab/rendermime": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/codemirror": "^4.0.10", + "@jupyterlab/rendermime": "^4.0.10", "marked": "^4.0.17" }, "devDependencies": { diff --git a/packages/mathjax-extension/package.json b/packages/mathjax-extension/package.json index fce9b39014e9..fc203688a961 100644 --- a/packages/mathjax-extension/package.json +++ b/packages/mathjax-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mathjax-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "A JupyterLab extension providing MathJax Typesetting", "keywords": [ "jupyter", @@ -43,8 +43,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/rendermime": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/rendermime": "^4.0.10", "@lumino/coreutils": "^2.1.2", "mathjax-full": "^3.2.2" }, diff --git a/packages/metadataform-extension/package.json b/packages/metadataform-extension/package.json index 1e8cea0ee103..8b0354eda761 100644 --- a/packages/metadataform-extension/package.json +++ b/packages/metadataform-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/metadataform-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "A helper to build form for metadata", "keywords": [ "jupyter", @@ -39,12 +39,12 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/metadataform": "^4.0.9", - "@jupyterlab/notebook": "^4.0.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/metadataform": "^4.0.10", + "@jupyterlab/notebook": "^4.0.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/coreutils": "^2.1.2" }, "devDependencies": { diff --git a/packages/metadataform/package.json b/packages/metadataform/package.json index 4977438cc7bd..f08241cc5968 100644 --- a/packages/metadataform/package.json +++ b/packages/metadataform/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/metadataform", - "version": "4.0.9", + "version": "4.0.10", "description": "A helper to build form for metadata", "keywords": [ "jupyter", @@ -45,12 +45,12 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/nbformat": "^4.0.9", - "@jupyterlab/notebook": "^4.0.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/nbformat": "^4.0.10", + "@jupyterlab/notebook": "^4.0.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/coreutils": "^2.1.2", "@lumino/messaging": "^2.0.1", "@lumino/widgets": "^2.3.0", @@ -60,7 +60,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "@types/react": "^18.0.26", "jest": "^29.2.0", diff --git a/packages/metapackage/package.json b/packages/metapackage/package.json index 0265696bb1b8..ff0c96215910 100644 --- a/packages/metapackage/package.json +++ b/packages/metapackage/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/metapackage", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Meta Package. All of the packages used by the core JupyterLab application", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,99 +37,99 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/application-extension": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/apputils-extension": "^4.0.9", - "@jupyterlab/attachments": "^4.0.9", - "@jupyterlab/cell-toolbar": "^4.0.9", - "@jupyterlab/cell-toolbar-extension": "^4.0.9", - "@jupyterlab/cells": "^4.0.9", - "@jupyterlab/celltags-extension": "^4.0.9", - "@jupyterlab/codeeditor": "^4.0.9", - "@jupyterlab/codemirror": "^4.0.9", - "@jupyterlab/codemirror-extension": "^4.0.9", - "@jupyterlab/completer": "^4.0.9", - "@jupyterlab/completer-extension": "^4.0.9", - "@jupyterlab/console": "^4.0.9", - "@jupyterlab/console-extension": "^4.0.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/csvviewer": "^4.0.9", - "@jupyterlab/csvviewer-extension": "^4.0.9", - "@jupyterlab/debugger": "^4.0.9", - "@jupyterlab/debugger-extension": "^4.0.9", - "@jupyterlab/docmanager": "^4.0.9", - "@jupyterlab/docmanager-extension": "^4.0.9", - "@jupyterlab/docregistry": "^4.0.9", - "@jupyterlab/documentsearch": "^4.0.9", - "@jupyterlab/documentsearch-extension": "^4.0.9", - "@jupyterlab/extensionmanager": "^4.0.9", - "@jupyterlab/extensionmanager-extension": "^4.0.9", - "@jupyterlab/filebrowser": "^4.0.9", - "@jupyterlab/filebrowser-extension": "^4.0.9", - "@jupyterlab/fileeditor": "^4.0.9", - "@jupyterlab/fileeditor-extension": "^4.0.9", - "@jupyterlab/help-extension": "^4.0.9", - "@jupyterlab/htmlviewer": "^4.0.9", - "@jupyterlab/htmlviewer-extension": "^4.0.9", - "@jupyterlab/hub-extension": "^4.0.9", - "@jupyterlab/imageviewer": "^4.0.9", - "@jupyterlab/imageviewer-extension": "^4.0.9", - "@jupyterlab/inspector": "^4.0.9", - "@jupyterlab/inspector-extension": "^4.0.9", - "@jupyterlab/javascript-extension": "^4.0.9", - "@jupyterlab/json-extension": "^4.0.9", - "@jupyterlab/launcher": "^4.0.9", - "@jupyterlab/launcher-extension": "^4.0.9", - "@jupyterlab/logconsole": "^4.0.9", - "@jupyterlab/logconsole-extension": "^4.0.9", - "@jupyterlab/lsp": "^4.0.9", - "@jupyterlab/lsp-extension": "^4.0.9", - "@jupyterlab/mainmenu": "^4.0.9", - "@jupyterlab/mainmenu-extension": "^4.0.9", - "@jupyterlab/markdownviewer": "^4.0.9", - "@jupyterlab/markdownviewer-extension": "^4.0.9", - "@jupyterlab/markedparser-extension": "^4.0.9", - "@jupyterlab/mathjax-extension": "^4.0.9", - "@jupyterlab/metadataform": "^4.0.9", - "@jupyterlab/metadataform-extension": "^4.0.9", - "@jupyterlab/nbconvert-css": "^4.0.9", - "@jupyterlab/nbformat": "^4.0.9", - "@jupyterlab/notebook": "^4.0.9", - "@jupyterlab/notebook-extension": "^4.0.9", - "@jupyterlab/observables": "^5.0.9", - "@jupyterlab/outputarea": "^4.0.9", - "@jupyterlab/pdf-extension": "^4.0.9", - "@jupyterlab/property-inspector": "^4.0.9", - "@jupyterlab/rendermime": "^4.0.9", - "@jupyterlab/rendermime-extension": "^4.0.9", - "@jupyterlab/rendermime-interfaces": "^3.8.9", - "@jupyterlab/running": "^4.0.9", - "@jupyterlab/running-extension": "^4.0.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/settingeditor": "^4.0.9", - "@jupyterlab/settingeditor-extension": "^4.0.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/shortcuts-extension": "^4.0.9", - "@jupyterlab/statedb": "^4.0.9", - "@jupyterlab/statusbar": "^4.0.9", - "@jupyterlab/statusbar-extension": "^4.0.9", - "@jupyterlab/terminal": "^4.0.9", - "@jupyterlab/terminal-extension": "^4.0.9", - "@jupyterlab/theme-dark-extension": "^4.0.9", - "@jupyterlab/theme-light-extension": "^4.0.9", - "@jupyterlab/toc": "^6.0.9", - "@jupyterlab/toc-extension": "^6.0.9", - "@jupyterlab/tooltip": "^4.0.9", - "@jupyterlab/tooltip-extension": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/translation-extension": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", - "@jupyterlab/ui-components-extension": "^4.0.9", - "@jupyterlab/vega5-extension": "^4.0.9" + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/application-extension": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/apputils-extension": "^4.0.10", + "@jupyterlab/attachments": "^4.0.10", + "@jupyterlab/cell-toolbar": "^4.0.10", + "@jupyterlab/cell-toolbar-extension": "^4.0.10", + "@jupyterlab/cells": "^4.0.10", + "@jupyterlab/celltags-extension": "^4.0.10", + "@jupyterlab/codeeditor": "^4.0.10", + "@jupyterlab/codemirror": "^4.0.10", + "@jupyterlab/codemirror-extension": "^4.0.10", + "@jupyterlab/completer": "^4.0.10", + "@jupyterlab/completer-extension": "^4.0.10", + "@jupyterlab/console": "^4.0.10", + "@jupyterlab/console-extension": "^4.0.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/csvviewer": "^4.0.10", + "@jupyterlab/csvviewer-extension": "^4.0.10", + "@jupyterlab/debugger": "^4.0.10", + "@jupyterlab/debugger-extension": "^4.0.10", + "@jupyterlab/docmanager": "^4.0.10", + "@jupyterlab/docmanager-extension": "^4.0.10", + "@jupyterlab/docregistry": "^4.0.10", + "@jupyterlab/documentsearch": "^4.0.10", + "@jupyterlab/documentsearch-extension": "^4.0.10", + "@jupyterlab/extensionmanager": "^4.0.10", + "@jupyterlab/extensionmanager-extension": "^4.0.10", + "@jupyterlab/filebrowser": "^4.0.10", + "@jupyterlab/filebrowser-extension": "^4.0.10", + "@jupyterlab/fileeditor": "^4.0.10", + "@jupyterlab/fileeditor-extension": "^4.0.10", + "@jupyterlab/help-extension": "^4.0.10", + "@jupyterlab/htmlviewer": "^4.0.10", + "@jupyterlab/htmlviewer-extension": "^4.0.10", + "@jupyterlab/hub-extension": "^4.0.10", + "@jupyterlab/imageviewer": "^4.0.10", + "@jupyterlab/imageviewer-extension": "^4.0.10", + "@jupyterlab/inspector": "^4.0.10", + "@jupyterlab/inspector-extension": "^4.0.10", + "@jupyterlab/javascript-extension": "^4.0.10", + "@jupyterlab/json-extension": "^4.0.10", + "@jupyterlab/launcher": "^4.0.10", + "@jupyterlab/launcher-extension": "^4.0.10", + "@jupyterlab/logconsole": "^4.0.10", + "@jupyterlab/logconsole-extension": "^4.0.10", + "@jupyterlab/lsp": "^4.0.10", + "@jupyterlab/lsp-extension": "^4.0.10", + "@jupyterlab/mainmenu": "^4.0.10", + "@jupyterlab/mainmenu-extension": "^4.0.10", + "@jupyterlab/markdownviewer": "^4.0.10", + "@jupyterlab/markdownviewer-extension": "^4.0.10", + "@jupyterlab/markedparser-extension": "^4.0.10", + "@jupyterlab/mathjax-extension": "^4.0.10", + "@jupyterlab/metadataform": "^4.0.10", + "@jupyterlab/metadataform-extension": "^4.0.10", + "@jupyterlab/nbconvert-css": "^4.0.10", + "@jupyterlab/nbformat": "^4.0.10", + "@jupyterlab/notebook": "^4.0.10", + "@jupyterlab/notebook-extension": "^4.0.10", + "@jupyterlab/observables": "^5.0.10", + "@jupyterlab/outputarea": "^4.0.10", + "@jupyterlab/pdf-extension": "^4.0.10", + "@jupyterlab/property-inspector": "^4.0.10", + "@jupyterlab/rendermime": "^4.0.10", + "@jupyterlab/rendermime-extension": "^4.0.10", + "@jupyterlab/rendermime-interfaces": "^3.8.10", + "@jupyterlab/running": "^4.0.10", + "@jupyterlab/running-extension": "^4.0.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/settingeditor": "^4.0.10", + "@jupyterlab/settingeditor-extension": "^4.0.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/shortcuts-extension": "^4.0.10", + "@jupyterlab/statedb": "^4.0.10", + "@jupyterlab/statusbar": "^4.0.10", + "@jupyterlab/statusbar-extension": "^4.0.10", + "@jupyterlab/terminal": "^4.0.10", + "@jupyterlab/terminal-extension": "^4.0.10", + "@jupyterlab/theme-dark-extension": "^4.0.10", + "@jupyterlab/theme-light-extension": "^4.0.10", + "@jupyterlab/toc": "^6.0.10", + "@jupyterlab/toc-extension": "^6.0.10", + "@jupyterlab/tooltip": "^4.0.10", + "@jupyterlab/tooltip-extension": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/translation-extension": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", + "@jupyterlab/ui-components-extension": "^4.0.10", + "@jupyterlab/vega5-extension": "^4.0.10" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "fs-extra": "^10.1.0", "jest": "^29.2.0", diff --git a/packages/nbconvert-css/package.json b/packages/nbconvert-css/package.json index e5ae598552f9..4338c5682163 100644 --- a/packages/nbconvert-css/package.json +++ b/packages/nbconvert-css/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/nbconvert-css", - "version": "4.0.9", + "version": "4.0.10", "description": "CSS bundle for the JupyterLab nbconvert template", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -31,13 +31,13 @@ "watch": "webpack --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/cells": "^4.0.9", - "@jupyterlab/codemirror": "^4.0.9", - "@jupyterlab/notebook": "^4.0.9", - "@jupyterlab/outputarea": "^4.0.9", - "@jupyterlab/rendermime": "^4.0.9" + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/cells": "^4.0.10", + "@jupyterlab/codemirror": "^4.0.10", + "@jupyterlab/notebook": "^4.0.10", + "@jupyterlab/outputarea": "^4.0.10", + "@jupyterlab/rendermime": "^4.0.10" }, "devDependencies": { "css-loader": "^6.7.1", diff --git a/packages/nbformat/package.json b/packages/nbformat/package.json index 06b38ca122a6..bb8e6d66bf51 100644 --- a/packages/nbformat/package.json +++ b/packages/nbformat/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/nbformat", - "version": "4.0.9", + "version": "4.0.10", "description": "Notebook format interfaces", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,7 +41,7 @@ "@lumino/coreutils": "^2.1.2" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~3.0.0", diff --git a/packages/notebook-extension/package.json b/packages/notebook-extension/package.json index 6979800d1773..e6a9a7427170 100644 --- a/packages/notebook-extension/package.json +++ b/packages/notebook-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/notebook-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Notebook Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,35 +38,35 @@ }, "dependencies": { "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/cells": "^4.0.9", - "@jupyterlab/codeeditor": "^4.0.9", - "@jupyterlab/codemirror": "^4.0.9", - "@jupyterlab/completer": "^4.0.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/docmanager": "^4.0.9", - "@jupyterlab/docmanager-extension": "^4.0.9", - "@jupyterlab/docregistry": "^4.0.9", - "@jupyterlab/documentsearch": "^4.0.9", - "@jupyterlab/filebrowser": "^4.0.9", - "@jupyterlab/launcher": "^4.0.9", - "@jupyterlab/logconsole": "^4.0.9", - "@jupyterlab/lsp": "^4.0.9", - "@jupyterlab/mainmenu": "^4.0.9", - "@jupyterlab/metadataform": "^4.0.9", - "@jupyterlab/nbformat": "^4.0.9", - "@jupyterlab/notebook": "^4.0.9", - "@jupyterlab/observables": "^5.0.9", - "@jupyterlab/property-inspector": "^4.0.9", - "@jupyterlab/rendermime": "^4.0.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/statedb": "^4.0.9", - "@jupyterlab/statusbar": "^4.0.9", - "@jupyterlab/toc": "^6.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/cells": "^4.0.10", + "@jupyterlab/codeeditor": "^4.0.10", + "@jupyterlab/codemirror": "^4.0.10", + "@jupyterlab/completer": "^4.0.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/docmanager": "^4.0.10", + "@jupyterlab/docmanager-extension": "^4.0.10", + "@jupyterlab/docregistry": "^4.0.10", + "@jupyterlab/documentsearch": "^4.0.10", + "@jupyterlab/filebrowser": "^4.0.10", + "@jupyterlab/launcher": "^4.0.10", + "@jupyterlab/logconsole": "^4.0.10", + "@jupyterlab/lsp": "^4.0.10", + "@jupyterlab/mainmenu": "^4.0.10", + "@jupyterlab/metadataform": "^4.0.10", + "@jupyterlab/nbformat": "^4.0.10", + "@jupyterlab/notebook": "^4.0.10", + "@jupyterlab/observables": "^5.0.10", + "@jupyterlab/property-inspector": "^4.0.10", + "@jupyterlab/rendermime": "^4.0.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/statedb": "^4.0.10", + "@jupyterlab/statusbar": "^4.0.10", + "@jupyterlab/toc": "^6.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.1.3", "@lumino/coreutils": "^2.1.2", diff --git a/packages/notebook/package.json b/packages/notebook/package.json index 6717ad294045..922e107f85a0 100644 --- a/packages/notebook/package.json +++ b/packages/notebook/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/notebook", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Notebook", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,23 +42,23 @@ }, "dependencies": { "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/cells": "^4.0.9", - "@jupyterlab/codeeditor": "^4.0.9", - "@jupyterlab/codemirror": "^4.0.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/docregistry": "^4.0.9", - "@jupyterlab/documentsearch": "^4.0.9", - "@jupyterlab/lsp": "^4.0.9", - "@jupyterlab/nbformat": "^4.0.9", - "@jupyterlab/observables": "^5.0.9", - "@jupyterlab/rendermime": "^4.0.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/statusbar": "^4.0.9", - "@jupyterlab/toc": "^6.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/cells": "^4.0.10", + "@jupyterlab/codeeditor": "^4.0.10", + "@jupyterlab/codemirror": "^4.0.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/docregistry": "^4.0.10", + "@jupyterlab/documentsearch": "^4.0.10", + "@jupyterlab/lsp": "^4.0.10", + "@jupyterlab/nbformat": "^4.0.10", + "@jupyterlab/observables": "^5.0.10", + "@jupyterlab/rendermime": "^4.0.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/statusbar": "^4.0.10", + "@jupyterlab/toc": "^6.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/domutils": "^2.0.1", @@ -71,7 +71,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~3.0.0", diff --git a/packages/observables/package.json b/packages/observables/package.json index 7fa54363fafa..aa4d9abfebfe 100644 --- a/packages/observables/package.json +++ b/packages/observables/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/observables", - "version": "5.0.9", + "version": "5.0.10", "description": "Data structures which may be observed for changes.", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -44,7 +44,7 @@ "@lumino/signaling": "^2.1.2" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~3.0.0", diff --git a/packages/outputarea/package.json b/packages/outputarea/package.json index 75942ba7ba6a..c0659b5ddcc3 100644 --- a/packages/outputarea/package.json +++ b/packages/outputarea/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/outputarea", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Notebook Output Area", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,13 +42,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/nbformat": "^4.0.9", - "@jupyterlab/observables": "^5.0.9", - "@jupyterlab/rendermime": "^4.0.9", - "@jupyterlab/rendermime-interfaces": "^3.8.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/translation": "^4.0.9", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/nbformat": "^4.0.10", + "@jupyterlab/observables": "^5.0.10", + "@jupyterlab/rendermime": "^4.0.10", + "@jupyterlab/rendermime-interfaces": "^3.8.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/translation": "^4.0.10", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -58,7 +58,7 @@ "@lumino/widgets": "^2.3.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~3.0.0", diff --git a/packages/pdf-extension/package.json b/packages/pdf-extension/package.json index 3509afc8e1a1..4ac2e93808c9 100644 --- a/packages/pdf-extension/package.json +++ b/packages/pdf-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/pdf-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - PDF Viewer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,7 +37,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/rendermime-interfaces": "^3.8.9", + "@jupyterlab/rendermime-interfaces": "^3.8.10", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/widgets": "^2.3.0" diff --git a/packages/property-inspector/package.json b/packages/property-inspector/package.json index 3b74d3e2e64b..bad51559f1e2 100644 --- a/packages/property-inspector/package.json +++ b/packages/property-inspector/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/property-inspector", - "version": "4.0.9", + "version": "4.0.10", "description": "A property inspector display for widgets", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -34,9 +34,9 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/signaling": "^2.1.2", diff --git a/packages/rendermime-extension/package.json b/packages/rendermime-extension/package.json index 554234e7cddb..242469456c14 100644 --- a/packages/rendermime-extension/package.json +++ b/packages/rendermime-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/rendermime-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "A rendermime extension for JupyterLab", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -34,11 +34,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/docmanager": "^4.0.9", - "@jupyterlab/rendermime": "^4.0.9", - "@jupyterlab/translation": "^4.0.9" + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/docmanager": "^4.0.10", + "@jupyterlab/rendermime": "^4.0.10", + "@jupyterlab/translation": "^4.0.10" }, "devDependencies": { "rimraf": "~3.0.0", diff --git a/packages/rendermime-interfaces/package.json b/packages/rendermime-interfaces/package.json index f2131dab1241..52f329b7d7dd 100644 --- a/packages/rendermime-interfaces/package.json +++ b/packages/rendermime-interfaces/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/rendermime-interfaces", - "version": "3.8.9", + "version": "3.8.10", "description": "JupyterLab - Interfaces for Mime Renderers", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { diff --git a/packages/rendermime/package.json b/packages/rendermime/package.json index 34643e905663..1af699c6eb1e 100644 --- a/packages/rendermime/package.json +++ b/packages/rendermime/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/rendermime", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - RenderMime", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,13 +42,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/nbformat": "^4.0.9", - "@jupyterlab/observables": "^5.0.9", - "@jupyterlab/rendermime-interfaces": "^3.8.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/translation": "^4.0.9", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/nbformat": "^4.0.10", + "@jupyterlab/observables": "^5.0.10", + "@jupyterlab/rendermime-interfaces": "^3.8.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/translation": "^4.0.10", "@lumino/coreutils": "^2.1.2", "@lumino/messaging": "^2.0.1", "@lumino/signaling": "^2.1.2", @@ -56,7 +56,7 @@ "lodash.escape": "^4.0.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "@types/lodash.escape": "^4.0.6", "fs-extra": "^10.1.0", diff --git a/packages/running-extension/package.json b/packages/running-extension/package.json index fc78d07db1ea..7b98d52a9c74 100644 --- a/packages/running-extension/package.json +++ b/packages/running-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/running-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Running Sessions Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,14 +38,14 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/docregistry": "^4.0.9", - "@jupyterlab/rendermime-interfaces": "^3.8.9", - "@jupyterlab/running": "^4.0.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/docregistry": "^4.0.10", + "@jupyterlab/rendermime-interfaces": "^3.8.10", + "@jupyterlab/running": "^4.0.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/commands": "^2.1.3", "@lumino/polling": "^2.1.2", "@lumino/signaling": "^2.1.2", diff --git a/packages/running/package.json b/packages/running/package.json index 2f2aca8c60ca..aea6be5471ae 100644 --- a/packages/running/package.json +++ b/packages/running/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/running", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Running Sessions Panel", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,9 +37,9 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/messaging": "^2.0.1", diff --git a/packages/services/examples/browser/package.json b/packages/services/examples/browser/package.json index 8487b821d008..8e991d87bed3 100644 --- a/packages/services/examples/browser/package.json +++ b/packages/services/examples/browser/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-services-browser", - "version": "4.0.9", + "version": "4.0.10", "private": true, "files": [ "lib/*.{d.ts,js,js.map}" @@ -10,8 +10,8 @@ "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo" }, "dependencies": { - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/services": "^7.0.9", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/services": "^7.0.10", "@lumino/coreutils": "^2.1.2" }, "devDependencies": { diff --git a/packages/services/examples/node/package.json b/packages/services/examples/node/package.json index 4115d3b6b0b2..7b9440e8d32f 100644 --- a/packages/services/examples/node/package.json +++ b/packages/services/examples/node/package.json @@ -1,13 +1,13 @@ { "name": "node-example", - "version": "4.0.9", + "version": "4.0.10", "private": true, "scripts": { "clean": "rimraf node_modules", "update": "rimraf node_modules/@jupyterlab/services && npm install" }, "dependencies": { - "@jupyterlab/services": "^7.0.9", + "@jupyterlab/services": "^7.0.10", "ws": "^8.11.0" }, "devDependencies": { diff --git a/packages/services/examples/typescript-browser-with-output/package.json b/packages/services/examples/typescript-browser-with-output/package.json index 31d78a199581..7ff7c8a18152 100644 --- a/packages/services/examples/typescript-browser-with-output/package.json +++ b/packages/services/examples/typescript-browser-with-output/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-services-outputarea", - "version": "4.0.9", + "version": "4.0.10", "private": true, "sideEffects": [ "style/*" @@ -16,10 +16,10 @@ "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo" }, "dependencies": { - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/outputarea": "^4.0.9", - "@jupyterlab/rendermime": "^4.0.9", - "@jupyterlab/services": "^7.0.9" + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/outputarea": "^4.0.10", + "@jupyterlab/rendermime": "^4.0.10", + "@jupyterlab/services": "^7.0.10" }, "devDependencies": { "css-loader": "^6.7.1", diff --git a/packages/services/package.json b/packages/services/package.json index ee6a13ac6177..c70ac72f42ab 100644 --- a/packages/services/package.json +++ b/packages/services/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/services", - "version": "7.0.9", + "version": "7.0.10", "description": "Client APIs for the Jupyter services REST APIs", "keywords": [ "jupyter", @@ -47,10 +47,10 @@ }, "dependencies": { "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/nbformat": "^4.0.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/statedb": "^4.0.9", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/nbformat": "^4.0.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/statedb": "^4.0.10", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/polling": "^2.1.2", @@ -59,7 +59,7 @@ "ws": "^8.11.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "@types/ws": "^8.5.3", "jest": "^29.2.0", diff --git a/packages/settingeditor-extension/package.json b/packages/settingeditor-extension/package.json index 8aea68547ff4..1148e7536ebe 100644 --- a/packages/settingeditor-extension/package.json +++ b/packages/settingeditor-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/settingeditor-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Setting Editor Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,15 +38,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/codeeditor": "^4.0.9", - "@jupyterlab/rendermime": "^4.0.9", - "@jupyterlab/settingeditor": "^4.0.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/statedb": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/codeeditor": "^4.0.10", + "@jupyterlab/rendermime": "^4.0.10", + "@jupyterlab/settingeditor": "^4.0.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/statedb": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/disposable": "^2.1.2" }, "devDependencies": { diff --git a/packages/settingeditor/package.json b/packages/settingeditor/package.json index 661e73ed8dc9..a46873faa460 100644 --- a/packages/settingeditor/package.json +++ b/packages/settingeditor/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/settingeditor", - "version": "4.0.9", + "version": "4.0.10", "description": "The JupyterLab default setting editor interface", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,15 +42,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/codeeditor": "^4.0.9", - "@jupyterlab/inspector": "^4.0.9", - "@jupyterlab/rendermime": "^4.0.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/statedb": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/codeeditor": "^4.0.10", + "@jupyterlab/inspector": "^4.0.10", + "@jupyterlab/rendermime": "^4.0.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/statedb": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.1.3", "@lumino/coreutils": "^2.1.2", @@ -66,7 +66,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "@types/react": "^18.0.26", "@types/react-test-renderer": "^18.0.0", diff --git a/packages/settingregistry/package.json b/packages/settingregistry/package.json index 7d3f7613b9d5..83ce8a185e70 100644 --- a/packages/settingregistry/package.json +++ b/packages/settingregistry/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/settingregistry", - "version": "4.0.9", + "version": "4.0.10", "description": "Settings registry for Jupyterlab", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,8 +37,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/nbformat": "^4.0.9", - "@jupyterlab/statedb": "^4.0.9", + "@jupyterlab/nbformat": "^4.0.10", + "@jupyterlab/statedb": "^4.0.10", "@lumino/commands": "^2.1.3", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -48,7 +48,7 @@ "json5": "^2.2.3" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~3.0.0", diff --git a/packages/shortcuts-extension/package.json b/packages/shortcuts-extension/package.json index 3938a58e7330..f3f8a9966e03 100644 --- a/packages/shortcuts-extension/package.json +++ b/packages/shortcuts-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/shortcuts-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Shortcuts Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,10 +41,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.1.3", "@lumino/coreutils": "^2.1.2", @@ -55,7 +55,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "rimraf": "~3.0.0", "typedoc": "~0.24.7", diff --git a/packages/statedb/package.json b/packages/statedb/package.json index ee02048b18e6..a088a94c2c8b 100644 --- a/packages/statedb/package.json +++ b/packages/statedb/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/statedb", - "version": "4.0.9", + "version": "4.0.10", "description": "Package for managing state in Jupyterlab", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -43,7 +43,7 @@ "@lumino/signaling": "^2.1.2" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~3.0.0", diff --git a/packages/statusbar-extension/package.json b/packages/statusbar-extension/package.json index de60072894a2..b38bdbc0ae05 100644 --- a/packages/statusbar-extension/package.json +++ b/packages/statusbar-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/statusbar-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Statusbar Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,11 +37,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/statusbar": "^4.0.9", - "@jupyterlab/translation": "^4.0.9" + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/statusbar": "^4.0.10", + "@jupyterlab/translation": "^4.0.10" }, "devDependencies": { "@types/react": "^18.0.26", diff --git a/packages/statusbar/package.json b/packages/statusbar/package.json index 95457c6d81fb..b2883c78114c 100644 --- a/packages/statusbar/package.json +++ b/packages/statusbar/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/statusbar", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab statusbar package.", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,7 +37,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -47,7 +47,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~3.0.0", diff --git a/packages/terminal-extension/package.json b/packages/terminal-extension/package.json index 5416284861dd..0aed52632aa7 100644 --- a/packages/terminal-extension/package.json +++ b/packages/terminal-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/terminal-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Terminal Emulator Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,16 +38,16 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/launcher": "^4.0.9", - "@jupyterlab/mainmenu": "^4.0.9", - "@jupyterlab/running": "^4.0.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/terminal": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/launcher": "^4.0.10", + "@jupyterlab/mainmenu": "^4.0.10", + "@jupyterlab/running": "^4.0.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/terminal": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/widgets": "^2.3.0" }, "devDependencies": { diff --git a/packages/terminal/package.json b/packages/terminal/package.json index 6e206de51090..8516d341bd74 100644 --- a/packages/terminal/package.json +++ b/packages/terminal/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/terminal", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Terminal Emulator Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,9 +42,9 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/translation": "^4.0.9", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/translation": "^4.0.10", "@lumino/coreutils": "^2.1.2", "@lumino/domutils": "^2.0.1", "@lumino/messaging": "^2.0.1", @@ -56,7 +56,7 @@ "xterm-addon-webgl": "~0.14.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "canvas": "^2.11.2", "jest": "^29.2.0", diff --git a/packages/testing/package.json b/packages/testing/package.json index 743e153d76a2..0acafbc65e25 100644 --- a/packages/testing/package.json +++ b/packages/testing/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/testing", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab basic testing utilities.", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -35,7 +35,7 @@ "dependencies": { "@babel/core": "^7.10.2", "@babel/preset-env": "^7.10.2", - "@jupyterlab/coreutils": "^6.0.9", + "@jupyterlab/coreutils": "^6.0.10", "@lumino/coreutils": "^2.1.2", "@lumino/signaling": "^2.1.2", "child_process": "~1.0.2", diff --git a/packages/theme-dark-extension/package.json b/packages/theme-dark-extension/package.json index be0acbfb7c7a..c1cfd80a610c 100644 --- a/packages/theme-dark-extension/package.json +++ b/packages/theme-dark-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/theme-dark-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Default Dark Theme", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -32,9 +32,9 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/translation": "^4.0.9" + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/translation": "^4.0.10" }, "devDependencies": { "rimraf": "~3.0.0", diff --git a/packages/theme-light-extension/package.json b/packages/theme-light-extension/package.json index 5ef2f7bab170..0a922e4b667b 100644 --- a/packages/theme-light-extension/package.json +++ b/packages/theme-light-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/theme-light-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Default Light Theme", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -32,9 +32,9 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/translation": "^4.0.9" + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/translation": "^4.0.10" }, "devDependencies": { "rimraf": "~3.0.0", diff --git a/packages/toc-extension/package.json b/packages/toc-extension/package.json index a77c4b2c63cd..642d37a8c66e 100644 --- a/packages/toc-extension/package.json +++ b/packages/toc-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/toc-extension", - "version": "6.0.9", + "version": "6.0.10", "description": "JupyterLab - Table of Contents widget extension", "keywords": [ "jupyter", @@ -41,11 +41,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/toc": "^6.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9" + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/toc": "^6.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10" }, "devDependencies": { "rimraf": "~3.0.0", diff --git a/packages/toc/package.json b/packages/toc/package.json index e49196f612dd..27234a111a36 100644 --- a/packages/toc/package.json +++ b/packages/toc/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/toc", - "version": "6.0.9", + "version": "6.0.10", "description": "JupyterLab - Table of Contents widget", "keywords": [ "jupyterlab" @@ -41,13 +41,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/docregistry": "^4.0.9", - "@jupyterlab/observables": "^5.0.9", - "@jupyterlab/rendermime": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/docregistry": "^4.0.10", + "@jupyterlab/observables": "^5.0.10", + "@jupyterlab/rendermime": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/messaging": "^2.0.1", @@ -56,7 +56,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "@types/react": "^18.0.26", "jest": "^29.2.0", diff --git a/packages/tooltip-extension/package.json b/packages/tooltip-extension/package.json index 933a623bca8e..7dc8c9ae0cc9 100644 --- a/packages/tooltip-extension/package.json +++ b/packages/tooltip-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/tooltip-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Tooltip Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,16 +38,16 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/codeeditor": "^4.0.9", - "@jupyterlab/console": "^4.0.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/fileeditor": "^4.0.9", - "@jupyterlab/notebook": "^4.0.9", - "@jupyterlab/rendermime": "^4.0.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/tooltip": "^4.0.9", - "@jupyterlab/translation": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/codeeditor": "^4.0.10", + "@jupyterlab/console": "^4.0.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/fileeditor": "^4.0.10", + "@jupyterlab/notebook": "^4.0.10", + "@jupyterlab/rendermime": "^4.0.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/tooltip": "^4.0.10", + "@jupyterlab/translation": "^4.0.10", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/widgets": "^2.3.0" diff --git a/packages/tooltip/package.json b/packages/tooltip/package.json index 15322a57c54f..88a2be1f1f1d 100644 --- a/packages/tooltip/package.json +++ b/packages/tooltip/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/tooltip", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Tooltip Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,10 +37,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/codeeditor": "^4.0.9", - "@jupyterlab/rendermime": "^4.0.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/codeeditor": "^4.0.10", + "@jupyterlab/rendermime": "^4.0.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/coreutils": "^2.1.2", "@lumino/messaging": "^2.0.1", "@lumino/widgets": "^2.3.0" diff --git a/packages/translation-extension/package.json b/packages/translation-extension/package.json index 58f5cc0ae038..7cb2b75ab074 100644 --- a/packages/translation-extension/package.json +++ b/packages/translation-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/translation-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Translation services", "keywords": [ "jupyter", @@ -39,11 +39,11 @@ "watch": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/mainmenu": "^4.0.9", - "@jupyterlab/settingregistry": "^4.0.9", - "@jupyterlab/translation": "^4.0.9" + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/mainmenu": "^4.0.10", + "@jupyterlab/settingregistry": "^4.0.10", + "@jupyterlab/translation": "^4.0.10" }, "devDependencies": { "rimraf": "~3.0.0", diff --git a/packages/translation/package.json b/packages/translation/package.json index b6a0e8caf2fc..cead77b362c3 100644 --- a/packages/translation/package.json +++ b/packages/translation/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/translation", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Translation services", "keywords": [ "jupyter", @@ -40,14 +40,14 @@ "watch": "tsc -w" }, "dependencies": { - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/rendermime-interfaces": "^3.8.9", - "@jupyterlab/services": "^7.0.9", - "@jupyterlab/statedb": "^4.0.9", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/rendermime-interfaces": "^3.8.10", + "@jupyterlab/services": "^7.0.10", + "@jupyterlab/statedb": "^4.0.10", "@lumino/coreutils": "^2.1.2" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~3.0.0", diff --git a/packages/ui-components-extension/package.json b/packages/ui-components-extension/package.json index 63757da716f0..2a4e37035ce8 100644 --- a/packages/ui-components-extension/package.json +++ b/packages/ui-components-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/ui-components-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - UI component plugins", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -33,8 +33,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9" + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10" }, "devDependencies": { "rimraf": "~3.0.0", diff --git a/packages/ui-components/examples/simple-windowed-list/package.json b/packages/ui-components/examples/simple-windowed-list/package.json index 69f9cfeea1d5..f14a27e555fc 100644 --- a/packages/ui-components/examples/simple-windowed-list/package.json +++ b/packages/ui-components/examples/simple-windowed-list/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-simple-list", - "version": "4.0.9", + "version": "4.0.10", "private": true, "style": "style/index.css", "scripts": { @@ -9,11 +9,11 @@ "watch": "webpack --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/observables": "^5.0.9", - "@jupyterlab/theme-light-extension": "^4.0.9", - "@jupyterlab/ui-components": "^4.0.9", + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/observables": "^5.0.10", + "@jupyterlab/theme-light-extension": "^4.0.10", + "@jupyterlab/ui-components": "^4.0.10", "@lumino/messaging": "^2.0.1", "@lumino/widgets": "^2.3.0" }, diff --git a/packages/ui-components/package.json b/packages/ui-components/package.json index 022e69ffacec..a3cac629ac1c 100644 --- a/packages/ui-components/package.json +++ b/packages/ui-components/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/ui-components", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - UI components written in React", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,10 +41,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/coreutils": "^6.0.9", - "@jupyterlab/observables": "^5.0.9", - "@jupyterlab/rendermime-interfaces": "^3.8.9", - "@jupyterlab/translation": "^4.0.9", + "@jupyterlab/coreutils": "^6.0.10", + "@jupyterlab/observables": "^5.0.10", + "@jupyterlab/rendermime-interfaces": "^3.8.10", + "@jupyterlab/translation": "^4.0.10", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.1.3", "@lumino/coreutils": "^2.1.2", @@ -62,7 +62,7 @@ "typestyle": "^2.0.4" }, "devDependencies": { - "@jupyterlab/testing": "^4.0.9", + "@jupyterlab/testing": "^4.0.10", "@types/jest": "^29.2.0", "@types/react": "^18.0.26", "jest": "^29.2.0", diff --git a/packages/vega5-extension/package.json b/packages/vega5-extension/package.json index 63bc19c129f2..88bb4af6f31b 100644 --- a/packages/vega5-extension/package.json +++ b/packages/vega5-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/vega5-extension", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Vega 5 and Vega-Lite 5 Mime Renderer Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/rendermime-interfaces": "^3.8.9", + "@jupyterlab/rendermime-interfaces": "^3.8.10", "@lumino/coreutils": "^2.1.2", "@lumino/widgets": "^2.3.0", "vega": "^5.20.0", @@ -46,7 +46,7 @@ "vega-lite": "^5.6.1-next.1" }, "devDependencies": { - "@jupyterlab/testutils": "^4.0.9", + "@jupyterlab/testutils": "^4.0.10", "@types/jest": "^29.2.0", "@types/webpack-env": "^1.18.0", "jest": "^29.2.0", diff --git a/testutils/package.json b/testutils/package.json index 1aac123373c6..c810e3d8c32d 100644 --- a/testutils/package.json +++ b/testutils/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/testutils", - "version": "4.0.9", + "version": "4.0.10", "description": "JupyterLab - Test Utilities", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -31,11 +31,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.0.9", - "@jupyterlab/apputils": "^4.1.9", - "@jupyterlab/notebook": "^4.0.9", - "@jupyterlab/rendermime": "^4.0.9", - "@jupyterlab/testing": "^4.0.9" + "@jupyterlab/application": "^4.0.10", + "@jupyterlab/apputils": "^4.1.10", + "@jupyterlab/notebook": "^4.0.10", + "@jupyterlab/rendermime": "^4.0.10", + "@jupyterlab/testing": "^4.0.10" }, "devDependencies": { "rimraf": "~3.0.0", diff --git a/yarn.lock b/yarn.lock index 6025e6200cd7..a428397b3520 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2058,19 +2058,19 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/application-extension@^4.0.9, @jupyterlab/application-extension@workspace:packages/application-extension, @jupyterlab/application-extension@~4.0.9": +"@jupyterlab/application-extension@^4.0.10, @jupyterlab/application-extension@workspace:packages/application-extension, @jupyterlab/application-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/application-extension@workspace:packages/application-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/property-inspector": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/statedb": ^4.0.9 - "@jupyterlab/statusbar": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/property-inspector": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/statedb": ^4.0.10 + "@jupyterlab/statusbar": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.1.3 "@lumino/coreutils": ^2.1.2 @@ -2087,54 +2087,54 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/application-top@workspace:dev_mode" dependencies: - "@jupyterlab/application": ~4.0.9 - "@jupyterlab/application-extension": ~4.0.9 - "@jupyterlab/apputils-extension": ~4.0.9 - "@jupyterlab/builder": ^4.0.9 - "@jupyterlab/buildutils": ^4.0.9 - "@jupyterlab/cell-toolbar-extension": ~4.0.9 - "@jupyterlab/celltags-extension": ~4.0.9 - "@jupyterlab/codemirror-extension": ~4.0.9 - "@jupyterlab/completer-extension": ~4.0.9 - "@jupyterlab/console-extension": ~4.0.9 - "@jupyterlab/coreutils": ~6.0.9 - "@jupyterlab/csvviewer-extension": ~4.0.9 - "@jupyterlab/debugger-extension": ~4.0.9 - "@jupyterlab/docmanager-extension": ~4.0.9 - "@jupyterlab/documentsearch-extension": ~4.0.9 - "@jupyterlab/extensionmanager-extension": ~4.0.9 - "@jupyterlab/filebrowser-extension": ~4.0.9 - "@jupyterlab/fileeditor-extension": ~4.0.9 - "@jupyterlab/help-extension": ~4.0.9 - "@jupyterlab/htmlviewer-extension": ~4.0.9 - "@jupyterlab/hub-extension": ~4.0.9 - "@jupyterlab/imageviewer-extension": ~4.0.9 - "@jupyterlab/inspector-extension": ~4.0.9 - "@jupyterlab/javascript-extension": ~4.0.9 - "@jupyterlab/json-extension": ~4.0.9 - "@jupyterlab/launcher-extension": ~4.0.9 - "@jupyterlab/logconsole-extension": ~4.0.9 - "@jupyterlab/lsp-extension": ~4.0.9 - "@jupyterlab/mainmenu-extension": ~4.0.9 - "@jupyterlab/markdownviewer-extension": ~4.0.9 - "@jupyterlab/markedparser-extension": ~4.0.9 - "@jupyterlab/mathjax-extension": ~4.0.9 - "@jupyterlab/metadataform-extension": ~4.0.9 - "@jupyterlab/notebook-extension": ~4.0.9 - "@jupyterlab/pdf-extension": ~4.0.9 - "@jupyterlab/rendermime-extension": ~4.0.9 - "@jupyterlab/running-extension": ~4.0.9 - "@jupyterlab/settingeditor-extension": ~4.0.9 - "@jupyterlab/shortcuts-extension": ~4.0.9 - "@jupyterlab/statusbar-extension": ~4.0.9 - "@jupyterlab/terminal-extension": ~4.0.9 - "@jupyterlab/theme-dark-extension": ~4.0.9 - "@jupyterlab/theme-light-extension": ~4.0.9 - "@jupyterlab/toc-extension": ~6.0.9 - "@jupyterlab/tooltip-extension": ~4.0.9 - "@jupyterlab/translation-extension": ~4.0.9 - "@jupyterlab/ui-components-extension": ~4.0.9 - "@jupyterlab/vega5-extension": ~4.0.9 + "@jupyterlab/application": ~4.0.10 + "@jupyterlab/application-extension": ~4.0.10 + "@jupyterlab/apputils-extension": ~4.0.10 + "@jupyterlab/builder": ^4.0.10 + "@jupyterlab/buildutils": ^4.0.10 + "@jupyterlab/cell-toolbar-extension": ~4.0.10 + "@jupyterlab/celltags-extension": ~4.0.10 + "@jupyterlab/codemirror-extension": ~4.0.10 + "@jupyterlab/completer-extension": ~4.0.10 + "@jupyterlab/console-extension": ~4.0.10 + "@jupyterlab/coreutils": ~6.0.10 + "@jupyterlab/csvviewer-extension": ~4.0.10 + "@jupyterlab/debugger-extension": ~4.0.10 + "@jupyterlab/docmanager-extension": ~4.0.10 + "@jupyterlab/documentsearch-extension": ~4.0.10 + "@jupyterlab/extensionmanager-extension": ~4.0.10 + "@jupyterlab/filebrowser-extension": ~4.0.10 + "@jupyterlab/fileeditor-extension": ~4.0.10 + "@jupyterlab/help-extension": ~4.0.10 + "@jupyterlab/htmlviewer-extension": ~4.0.10 + "@jupyterlab/hub-extension": ~4.0.10 + "@jupyterlab/imageviewer-extension": ~4.0.10 + "@jupyterlab/inspector-extension": ~4.0.10 + "@jupyterlab/javascript-extension": ~4.0.10 + "@jupyterlab/json-extension": ~4.0.10 + "@jupyterlab/launcher-extension": ~4.0.10 + "@jupyterlab/logconsole-extension": ~4.0.10 + "@jupyterlab/lsp-extension": ~4.0.10 + "@jupyterlab/mainmenu-extension": ~4.0.10 + "@jupyterlab/markdownviewer-extension": ~4.0.10 + "@jupyterlab/markedparser-extension": ~4.0.10 + "@jupyterlab/mathjax-extension": ~4.0.10 + "@jupyterlab/metadataform-extension": ~4.0.10 + "@jupyterlab/notebook-extension": ~4.0.10 + "@jupyterlab/pdf-extension": ~4.0.10 + "@jupyterlab/rendermime-extension": ~4.0.10 + "@jupyterlab/running-extension": ~4.0.10 + "@jupyterlab/settingeditor-extension": ~4.0.10 + "@jupyterlab/shortcuts-extension": ~4.0.10 + "@jupyterlab/statusbar-extension": ~4.0.10 + "@jupyterlab/terminal-extension": ~4.0.10 + "@jupyterlab/theme-dark-extension": ~4.0.10 + "@jupyterlab/theme-light-extension": ~4.0.10 + "@jupyterlab/toc-extension": ~6.0.10 + "@jupyterlab/tooltip-extension": ~4.0.10 + "@jupyterlab/translation-extension": ~4.0.10 + "@jupyterlab/ui-components-extension": ~4.0.10 + "@jupyterlab/vega5-extension": ~4.0.10 chokidar: ^3.4.0 css-loader: ^6.7.1 duplicate-package-checker-webpack-plugin: ^3.0.0 @@ -2160,21 +2160,21 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/application@^4.0.9, @jupyterlab/application@workspace:packages/application, @jupyterlab/application@~4.0.9": +"@jupyterlab/application@^4.0.10, @jupyterlab/application@workspace:packages/application, @jupyterlab/application@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/application@workspace:packages/application" dependencies: "@fortawesome/fontawesome-free": ^5.12.0 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/rendermime-interfaces": ^3.8.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/statedb": ^4.0.9 - "@jupyterlab/testing": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/rendermime-interfaces": ^3.8.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/statedb": ^4.0.10 + "@jupyterlab/testing": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/application": ^2.2.1 "@lumino/commands": ^2.1.3 @@ -2193,23 +2193,23 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/apputils-extension@^4.0.9, @jupyterlab/apputils-extension@workspace:packages/apputils-extension, @jupyterlab/apputils-extension@~4.0.9": +"@jupyterlab/apputils-extension@^4.0.10, @jupyterlab/apputils-extension@workspace:packages/apputils-extension, @jupyterlab/apputils-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/apputils-extension@workspace:packages/apputils-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/filebrowser": ^4.0.9 - "@jupyterlab/mainmenu": ^4.0.9 - "@jupyterlab/rendermime-interfaces": ^3.8.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/statedb": ^4.0.9 - "@jupyterlab/statusbar": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/filebrowser": ^4.0.10 + "@jupyterlab/mainmenu": ^4.0.10 + "@jupyterlab/rendermime-interfaces": ^3.8.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/statedb": ^4.0.10 + "@jupyterlab/statusbar": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.1.3 "@lumino/coreutils": ^2.1.2 @@ -2226,20 +2226,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/apputils@^4.1.9, @jupyterlab/apputils@workspace:packages/apputils": +"@jupyterlab/apputils@^4.1.10, @jupyterlab/apputils@workspace:packages/apputils": version: 0.0.0-use.local resolution: "@jupyterlab/apputils@workspace:packages/apputils" dependencies: - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/rendermime-interfaces": ^3.8.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/statedb": ^4.0.9 - "@jupyterlab/statusbar": ^4.0.9 - "@jupyterlab/testing": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/rendermime-interfaces": ^3.8.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/statedb": ^4.0.10 + "@jupyterlab/statusbar": ^4.0.10 + "@jupyterlab/testing": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.1.3 "@lumino/coreutils": ^2.1.2 @@ -2261,14 +2261,14 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/attachments@^4.0.9, @jupyterlab/attachments@workspace:packages/attachments": +"@jupyterlab/attachments@^4.0.10, @jupyterlab/attachments@workspace:packages/attachments": version: 0.0.0-use.local resolution: "@jupyterlab/attachments@workspace:packages/attachments" dependencies: - "@jupyterlab/nbformat": ^4.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/rendermime-interfaces": ^3.8.9 + "@jupyterlab/nbformat": ^4.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/rendermime-interfaces": ^3.8.10 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 rimraf: ~3.0.0 @@ -2277,7 +2277,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/builder@^4.0.9, @jupyterlab/builder@workspace:builder": +"@jupyterlab/builder@^4.0.10, @jupyterlab/builder@workspace:builder": version: 0.0.0-use.local resolution: "@jupyterlab/builder@workspace:builder" dependencies: @@ -2323,7 +2323,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/buildutils@^4.0.9, @jupyterlab/buildutils@workspace:buildutils": +"@jupyterlab/buildutils@^4.0.10, @jupyterlab/buildutils@workspace:buildutils": version: 0.0.0-use.local resolution: "@jupyterlab/buildutils@workspace:buildutils" dependencies: @@ -2363,32 +2363,32 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/cell-toolbar-extension@^4.0.9, @jupyterlab/cell-toolbar-extension@workspace:packages/cell-toolbar-extension, @jupyterlab/cell-toolbar-extension@~4.0.9": +"@jupyterlab/cell-toolbar-extension@^4.0.10, @jupyterlab/cell-toolbar-extension@workspace:packages/cell-toolbar-extension, @jupyterlab/cell-toolbar-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/cell-toolbar-extension@workspace:packages/cell-toolbar-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/cell-toolbar": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/cell-toolbar": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 rimraf: ~3.0.0 typescript: ~5.0.4 languageName: unknown linkType: soft -"@jupyterlab/cell-toolbar@^4.0.9, @jupyterlab/cell-toolbar@workspace:packages/cell-toolbar": +"@jupyterlab/cell-toolbar@^4.0.10, @jupyterlab/cell-toolbar@workspace:packages/cell-toolbar": version: 0.0.0-use.local resolution: "@jupyterlab/cell-toolbar@workspace:packages/cell-toolbar" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/cells": ^4.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/notebook": ^4.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/testing": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/cells": ^4.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/notebook": ^4.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/testing": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.1.3 "@lumino/disposable": ^2.1.2 @@ -2401,29 +2401,29 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/cells@^4.0.9, @jupyterlab/cells@workspace:packages/cells": +"@jupyterlab/cells@^4.0.10, @jupyterlab/cells@workspace:packages/cells": version: 0.0.0-use.local resolution: "@jupyterlab/cells@workspace:packages/cells" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/attachments": ^4.0.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/codemirror": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/documentsearch": ^4.0.9 - "@jupyterlab/filebrowser": ^4.0.9 - "@jupyterlab/nbformat": ^4.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/outputarea": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/testing": ^4.0.9 - "@jupyterlab/toc": ^6.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/attachments": ^4.0.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/codemirror": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/documentsearch": ^4.0.10 + "@jupyterlab/filebrowser": ^4.0.10 + "@jupyterlab/nbformat": ^4.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/outputarea": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/testing": ^4.0.10 + "@jupyterlab/toc": ^6.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/domutils": ^2.0.1 @@ -2443,14 +2443,14 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/celltags-extension@^4.0.9, @jupyterlab/celltags-extension@workspace:packages/celltags-extension, @jupyterlab/celltags-extension@~4.0.9": +"@jupyterlab/celltags-extension@^4.0.10, @jupyterlab/celltags-extension@workspace:packages/celltags-extension, @jupyterlab/celltags-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/celltags-extension@workspace:packages/celltags-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/notebook": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/notebook": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@rjsf/utils": ^5.1.0 react: ^18.2.0 @@ -2459,19 +2459,19 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/codeeditor@^4.0.9, @jupyterlab/codeeditor@workspace:packages/codeeditor": +"@jupyterlab/codeeditor@^4.0.10, @jupyterlab/codeeditor@workspace:packages/codeeditor": version: 0.0.0-use.local resolution: "@jupyterlab/codeeditor@workspace:packages/codeeditor" dependencies: "@codemirror/state": ^6.2.0 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/nbformat": ^4.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/statusbar": ^4.0.9 - "@jupyterlab/testing": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/nbformat": ^4.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/statusbar": ^4.0.10 + "@jupyterlab/testing": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/dragdrop": ^2.1.4 @@ -2487,7 +2487,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/codemirror-extension@^4.0.9, @jupyterlab/codemirror-extension@workspace:packages/codemirror-extension, @jupyterlab/codemirror-extension@~4.0.9": +"@jupyterlab/codemirror-extension@^4.0.10, @jupyterlab/codemirror-extension@workspace:packages/codemirror-extension, @jupyterlab/codemirror-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/codemirror-extension@workspace:packages/codemirror-extension" dependencies: @@ -2495,13 +2495,13 @@ __metadata: "@codemirror/language": ^6.6.0 "@codemirror/legacy-modes": ^6.3.2 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/codemirror": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/statusbar": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/codemirror": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/statusbar": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.0 "@rjsf/utils": ^5.1.0 @@ -2514,7 +2514,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/codemirror@^4.0.9, @jupyterlab/codemirror@workspace:packages/codemirror": +"@jupyterlab/codemirror@^4.0.10, @jupyterlab/codemirror@workspace:packages/codemirror": version: 0.0.0-use.local resolution: "@jupyterlab/codemirror@workspace:packages/codemirror" dependencies: @@ -2539,12 +2539,12 @@ __metadata: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/documentsearch": ^4.0.9 - "@jupyterlab/nbformat": ^4.0.9 - "@jupyterlab/testing": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/documentsearch": ^4.0.10 + "@jupyterlab/nbformat": ^4.0.10 + "@jupyterlab/testing": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 "@lezer/common": ^1.0.2 "@lezer/generator": ^1.2.2 "@lezer/highlight": ^1.1.4 @@ -2562,14 +2562,14 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/completer-extension@^4.0.9, @jupyterlab/completer-extension@workspace:packages/completer-extension, @jupyterlab/completer-extension@~4.0.9": +"@jupyterlab/completer-extension@^4.0.10, @jupyterlab/completer-extension@workspace:packages/completer-extension, @jupyterlab/completer-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/completer-extension@workspace:packages/completer-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/completer": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/completer": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@rjsf/utils": ^5.1.0 react: ^18.2.0 @@ -2579,19 +2579,19 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/completer@^4.0.9, @jupyterlab/completer@workspace:packages/completer": +"@jupyterlab/completer@^4.0.10, @jupyterlab/completer@workspace:packages/completer": version: 0.0.0-use.local resolution: "@jupyterlab/completer@workspace:packages/completer" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/statedb": ^4.0.9 - "@jupyterlab/testing": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/statedb": ^4.0.10 + "@jupyterlab/testing": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -2607,22 +2607,22 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/console-extension@^4.0.9, @jupyterlab/console-extension@workspace:packages/console-extension, @jupyterlab/console-extension@~4.0.9": +"@jupyterlab/console-extension@^4.0.10, @jupyterlab/console-extension@workspace:packages/console-extension, @jupyterlab/console-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/console-extension@workspace:packages/console-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/completer": ^4.0.9 - "@jupyterlab/console": ^4.0.9 - "@jupyterlab/filebrowser": ^4.0.9 - "@jupyterlab/launcher": ^4.0.9 - "@jupyterlab/mainmenu": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/completer": ^4.0.10 + "@jupyterlab/console": ^4.0.10 + "@jupyterlab/filebrowser": ^4.0.10 + "@jupyterlab/launcher": ^4.0.10 + "@jupyterlab/mainmenu": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -2634,25 +2634,25 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/console@^4.0.9, @jupyterlab/console@workspace:packages/console": +"@jupyterlab/console@^4.0.10, @jupyterlab/console@workspace:packages/console": version: 0.0.0-use.local resolution: "@jupyterlab/console@workspace:packages/console" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/cells": ^4.0.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/codemirror": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/nbformat": ^4.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/testing": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/cells": ^4.0.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/codemirror": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/nbformat": ^4.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/testing": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/dragdrop": ^2.1.4 @@ -2667,7 +2667,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/coreutils@^6.0.9, @jupyterlab/coreutils@workspace:packages/coreutils, @jupyterlab/coreutils@~6.0.9": +"@jupyterlab/coreutils@^6.0.10, @jupyterlab/coreutils@workspace:packages/coreutils, @jupyterlab/coreutils@~6.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/coreutils@workspace:packages/coreutils" dependencies: @@ -2692,19 +2692,19 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/csvviewer-extension@^4.0.9, @jupyterlab/csvviewer-extension@workspace:packages/csvviewer-extension, @jupyterlab/csvviewer-extension@~4.0.9": +"@jupyterlab/csvviewer-extension@^4.0.10, @jupyterlab/csvviewer-extension@workspace:packages/csvviewer-extension, @jupyterlab/csvviewer-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/csvviewer-extension@workspace:packages/csvviewer-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/csvviewer": ^4.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/documentsearch": ^4.0.9 - "@jupyterlab/mainmenu": ^4.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/csvviewer": ^4.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/documentsearch": ^4.0.10 + "@jupyterlab/mainmenu": ^4.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 "@lumino/datagrid": ^2.2.0 "@lumino/widgets": ^2.3.0 rimraf: ~3.0.0 @@ -2713,15 +2713,15 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/csvviewer@^4.0.9, @jupyterlab/csvviewer@workspace:packages/csvviewer": +"@jupyterlab/csvviewer@^4.0.10, @jupyterlab/csvviewer@workspace:packages/csvviewer": version: 0.0.0-use.local resolution: "@jupyterlab/csvviewer@workspace:packages/csvviewer" dependencies: - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/testing": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/testing": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/datagrid": ^2.2.0 "@lumino/disposable": ^2.1.2 @@ -2738,26 +2738,26 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/debugger-extension@^4.0.9, @jupyterlab/debugger-extension@workspace:packages/debugger-extension, @jupyterlab/debugger-extension@~4.0.9": +"@jupyterlab/debugger-extension@^4.0.10, @jupyterlab/debugger-extension@workspace:packages/debugger-extension, @jupyterlab/debugger-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/debugger-extension@workspace:packages/debugger-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/cells": ^4.0.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/console": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/debugger": ^4.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/fileeditor": ^4.0.9 - "@jupyterlab/logconsole": ^4.0.9 - "@jupyterlab/notebook": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/testing": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/cells": ^4.0.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/console": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/debugger": ^4.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/fileeditor": ^4.0.10 + "@jupyterlab/logconsole": ^4.0.10 + "@jupyterlab/notebook": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/testing": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 "@types/jest": ^29.2.0 "@types/react-dom": ^18.0.9 rimraf: ~3.0.0 @@ -2766,29 +2766,29 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/debugger@^4.0.9, @jupyterlab/debugger@workspace:packages/debugger": +"@jupyterlab/debugger@^4.0.10, @jupyterlab/debugger@workspace:packages/debugger": version: 0.0.0-use.local resolution: "@jupyterlab/debugger@workspace:packages/debugger" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/cells": ^4.0.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/codemirror": ^4.0.9 - "@jupyterlab/console": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/fileeditor": ^4.0.9 - "@jupyterlab/notebook": ^4.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/testing": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/cells": ^4.0.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/codemirror": ^4.0.10 + "@jupyterlab/console": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/fileeditor": ^4.0.10 + "@jupyterlab/notebook": ^4.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/testing": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.1.3 "@lumino/coreutils": ^2.1.2 @@ -2809,20 +2809,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/docmanager-extension@^4.0.9, @jupyterlab/docmanager-extension@workspace:packages/docmanager-extension, @jupyterlab/docmanager-extension@~4.0.9": +"@jupyterlab/docmanager-extension@^4.0.10, @jupyterlab/docmanager-extension@workspace:packages/docmanager-extension, @jupyterlab/docmanager-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/docmanager-extension@workspace:packages/docmanager-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docmanager": ^4.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/statusbar": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docmanager": ^4.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/statusbar": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.1.3 "@lumino/coreutils": ^2.1.2 @@ -2836,18 +2836,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/docmanager@^4.0.9, @jupyterlab/docmanager@workspace:packages/docmanager": +"@jupyterlab/docmanager@^4.0.10, @jupyterlab/docmanager@workspace:packages/docmanager": version: 0.0.0-use.local resolution: "@jupyterlab/docmanager@workspace:packages/docmanager" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/statusbar": ^4.0.9 - "@jupyterlab/testing": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/statusbar": ^4.0.10 + "@jupyterlab/testing": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -2864,21 +2864,21 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/docregistry@^4.0.9, @jupyterlab/docregistry@workspace:packages/docregistry": +"@jupyterlab/docregistry@^4.0.10, @jupyterlab/docregistry@workspace:packages/docregistry": version: 0.0.0-use.local resolution: "@jupyterlab/docregistry@workspace:packages/docregistry" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/rendermime-interfaces": ^3.8.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/testing": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/rendermime-interfaces": ^3.8.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/testing": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -2894,29 +2894,29 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/documentsearch-extension@^4.0.9, @jupyterlab/documentsearch-extension@workspace:packages/documentsearch-extension, @jupyterlab/documentsearch-extension@~4.0.9": +"@jupyterlab/documentsearch-extension@^4.0.10, @jupyterlab/documentsearch-extension@workspace:packages/documentsearch-extension, @jupyterlab/documentsearch-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/documentsearch-extension@workspace:packages/documentsearch-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/documentsearch": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/documentsearch": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 "@lumino/widgets": ^2.3.0 rimraf: ~3.0.0 typescript: ~5.0.4 languageName: unknown linkType: soft -"@jupyterlab/documentsearch@^4.0.9, @jupyterlab/documentsearch@workspace:packages/documentsearch": +"@jupyterlab/documentsearch@^4.0.10, @jupyterlab/documentsearch@workspace:packages/documentsearch": version: 0.0.0-use.local resolution: "@jupyterlab/documentsearch@workspace:packages/documentsearch" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/testing": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/testing": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 @@ -2935,39 +2935,39 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/example-app@workspace:examples/app" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/application-extension": ^4.0.9 - "@jupyterlab/apputils-extension": ^4.0.9 - "@jupyterlab/builder": ^4.0.9 - "@jupyterlab/celltags-extension": ^4.0.9 - "@jupyterlab/codemirror-extension": ^4.0.9 - "@jupyterlab/completer-extension": ^4.0.9 - "@jupyterlab/console-extension": ^4.0.9 - "@jupyterlab/csvviewer-extension": ^4.0.9 - "@jupyterlab/docmanager-extension": ^4.0.9 - "@jupyterlab/filebrowser-extension": ^4.0.9 - "@jupyterlab/fileeditor-extension": ^4.0.9 - "@jupyterlab/help-extension": ^4.0.9 - "@jupyterlab/imageviewer-extension": ^4.0.9 - "@jupyterlab/inspector-extension": ^4.0.9 - "@jupyterlab/launcher-extension": ^4.0.9 - "@jupyterlab/mainmenu-extension": ^4.0.9 - "@jupyterlab/markdownviewer-extension": ^4.0.9 - "@jupyterlab/mathjax-extension": ^4.0.9 - "@jupyterlab/metadataform-extension": ^4.0.9 - "@jupyterlab/notebook-extension": ^4.0.9 - "@jupyterlab/rendermime-extension": ^4.0.9 - "@jupyterlab/running-extension": ^4.0.9 - "@jupyterlab/settingeditor-extension": ^4.0.9 - "@jupyterlab/shortcuts-extension": ^4.0.9 - "@jupyterlab/statusbar-extension": ^4.0.9 - "@jupyterlab/theme-dark-extension": ^4.0.9 - "@jupyterlab/theme-light-extension": ^4.0.9 - "@jupyterlab/toc-extension": ^6.0.9 - "@jupyterlab/tooltip-extension": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/translation-extension": ^4.0.9 - "@jupyterlab/ui-components-extension": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/application-extension": ^4.0.10 + "@jupyterlab/apputils-extension": ^4.0.10 + "@jupyterlab/builder": ^4.0.10 + "@jupyterlab/celltags-extension": ^4.0.10 + "@jupyterlab/codemirror-extension": ^4.0.10 + "@jupyterlab/completer-extension": ^4.0.10 + "@jupyterlab/console-extension": ^4.0.10 + "@jupyterlab/csvviewer-extension": ^4.0.10 + "@jupyterlab/docmanager-extension": ^4.0.10 + "@jupyterlab/filebrowser-extension": ^4.0.10 + "@jupyterlab/fileeditor-extension": ^4.0.10 + "@jupyterlab/help-extension": ^4.0.10 + "@jupyterlab/imageviewer-extension": ^4.0.10 + "@jupyterlab/inspector-extension": ^4.0.10 + "@jupyterlab/launcher-extension": ^4.0.10 + "@jupyterlab/mainmenu-extension": ^4.0.10 + "@jupyterlab/markdownviewer-extension": ^4.0.10 + "@jupyterlab/mathjax-extension": ^4.0.10 + "@jupyterlab/metadataform-extension": ^4.0.10 + "@jupyterlab/notebook-extension": ^4.0.10 + "@jupyterlab/rendermime-extension": ^4.0.10 + "@jupyterlab/running-extension": ^4.0.10 + "@jupyterlab/settingeditor-extension": ^4.0.10 + "@jupyterlab/shortcuts-extension": ^4.0.10 + "@jupyterlab/statusbar-extension": ^4.0.10 + "@jupyterlab/theme-dark-extension": ^4.0.10 + "@jupyterlab/theme-light-extension": ^4.0.10 + "@jupyterlab/toc-extension": ^6.0.10 + "@jupyterlab/tooltip-extension": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/translation-extension": ^4.0.10 + "@jupyterlab/ui-components-extension": ^4.0.10 css-loader: ^6.7.1 fs-extra: ^10.1.0 glob: ~7.1.6 @@ -2988,16 +2988,16 @@ __metadata: resolution: "@jupyterlab/example-cell@workspace:examples/cell" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/cells": ^4.0.9 - "@jupyterlab/codemirror": ^4.0.9 - "@jupyterlab/completer": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/theme-light-extension": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/cells": ^4.0.10 + "@jupyterlab/codemirror": ^4.0.10 + "@jupyterlab/completer": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/theme-light-extension": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/commands": ^2.1.3 "@lumino/widgets": ^2.3.0 css-loader: ^6.7.1 @@ -3017,14 +3017,14 @@ __metadata: resolution: "@jupyterlab/example-console@workspace:examples/console" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/codemirror": ^4.0.9 - "@jupyterlab/console": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/theme-light-extension": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/codemirror": ^4.0.10 + "@jupyterlab/console": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/theme-light-extension": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 "@lumino/commands": ^2.1.3 "@lumino/widgets": ^2.3.0 css-loader: ^6.7.1 @@ -3042,48 +3042,48 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/example-federated-core@workspace:examples/federated/core_package" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/application-extension": ^4.0.9 - "@jupyterlab/apputils-extension": ^4.0.9 - "@jupyterlab/builder": ^4.0.9 - "@jupyterlab/celltags-extension": ^4.0.9 - "@jupyterlab/codemirror-extension": ^4.0.9 - "@jupyterlab/completer-extension": ^4.0.9 - "@jupyterlab/console-extension": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/csvviewer-extension": ^4.0.9 - "@jupyterlab/debugger-extension": ^4.0.9 - "@jupyterlab/docmanager-extension": ^4.0.9 - "@jupyterlab/documentsearch-extension": ^4.0.9 - "@jupyterlab/extensionmanager-extension": ^4.0.9 - "@jupyterlab/filebrowser-extension": ^4.0.9 - "@jupyterlab/fileeditor-extension": ^4.0.9 - "@jupyterlab/help-extension": ^4.0.9 - "@jupyterlab/htmlviewer-extension": ^4.0.9 - "@jupyterlab/hub-extension": ^4.0.9 - "@jupyterlab/imageviewer-extension": ^4.0.9 - "@jupyterlab/inspector-extension": ^4.0.9 - "@jupyterlab/javascript-extension": ^4.0.9 - "@jupyterlab/json-extension": ^4.0.9 - "@jupyterlab/launcher-extension": ^4.0.9 - "@jupyterlab/logconsole-extension": ^4.0.9 - "@jupyterlab/lsp-extension": ^4.0.9 - "@jupyterlab/mainmenu-extension": ^4.0.9 - "@jupyterlab/mathjax-extension": ^4.0.9 - "@jupyterlab/metadataform-extension": ^4.0.9 - "@jupyterlab/notebook-extension": ^4.0.9 - "@jupyterlab/pdf-extension": ^4.0.9 - "@jupyterlab/rendermime-extension": ^4.0.9 - "@jupyterlab/settingeditor-extension": ^4.0.9 - "@jupyterlab/shortcuts-extension": ^4.0.9 - "@jupyterlab/statusbar-extension": ^4.0.9 - "@jupyterlab/theme-light-extension": ^4.0.9 - "@jupyterlab/toc-extension": ^6.0.9 - "@jupyterlab/tooltip-extension": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/translation-extension": ^4.0.9 - "@jupyterlab/ui-components-extension": ^4.0.9 - "@jupyterlab/vega5-extension": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/application-extension": ^4.0.10 + "@jupyterlab/apputils-extension": ^4.0.10 + "@jupyterlab/builder": ^4.0.10 + "@jupyterlab/celltags-extension": ^4.0.10 + "@jupyterlab/codemirror-extension": ^4.0.10 + "@jupyterlab/completer-extension": ^4.0.10 + "@jupyterlab/console-extension": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/csvviewer-extension": ^4.0.10 + "@jupyterlab/debugger-extension": ^4.0.10 + "@jupyterlab/docmanager-extension": ^4.0.10 + "@jupyterlab/documentsearch-extension": ^4.0.10 + "@jupyterlab/extensionmanager-extension": ^4.0.10 + "@jupyterlab/filebrowser-extension": ^4.0.10 + "@jupyterlab/fileeditor-extension": ^4.0.10 + "@jupyterlab/help-extension": ^4.0.10 + "@jupyterlab/htmlviewer-extension": ^4.0.10 + "@jupyterlab/hub-extension": ^4.0.10 + "@jupyterlab/imageviewer-extension": ^4.0.10 + "@jupyterlab/inspector-extension": ^4.0.10 + "@jupyterlab/javascript-extension": ^4.0.10 + "@jupyterlab/json-extension": ^4.0.10 + "@jupyterlab/launcher-extension": ^4.0.10 + "@jupyterlab/logconsole-extension": ^4.0.10 + "@jupyterlab/lsp-extension": ^4.0.10 + "@jupyterlab/mainmenu-extension": ^4.0.10 + "@jupyterlab/mathjax-extension": ^4.0.10 + "@jupyterlab/metadataform-extension": ^4.0.10 + "@jupyterlab/notebook-extension": ^4.0.10 + "@jupyterlab/pdf-extension": ^4.0.10 + "@jupyterlab/rendermime-extension": ^4.0.10 + "@jupyterlab/settingeditor-extension": ^4.0.10 + "@jupyterlab/shortcuts-extension": ^4.0.10 + "@jupyterlab/statusbar-extension": ^4.0.10 + "@jupyterlab/theme-light-extension": ^4.0.10 + "@jupyterlab/toc-extension": ^6.0.10 + "@jupyterlab/tooltip-extension": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/translation-extension": ^4.0.10 + "@jupyterlab/ui-components-extension": ^4.0.10 + "@jupyterlab/vega5-extension": ^4.0.10 copy-webpack-plugin: ^11.0.0 css-loader: ^6.7.1 fs-extra: ^10.1.0 @@ -3104,20 +3104,20 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/example-federated-md@workspace:examples/federated/md_package" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/builder": ^4.0.9 - "@jupyterlab/example-federated-middle": ^3.0.9 - "@jupyterlab/markdownviewer-extension": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/builder": ^4.0.10 + "@jupyterlab/example-federated-middle": ^3.0.10 + "@jupyterlab/markdownviewer-extension": ^4.0.10 "@lumino/widgets": ^2.3.0 rimraf: ~3.0.0 languageName: unknown linkType: soft -"@jupyterlab/example-federated-middle@^3.0.9, @jupyterlab/example-federated-middle@workspace:examples/federated/middle_package": +"@jupyterlab/example-federated-middle@^3.0.10, @jupyterlab/example-federated-middle@workspace:examples/federated/middle_package": version: 0.0.0-use.local resolution: "@jupyterlab/example-federated-middle@workspace:examples/federated/middle_package" dependencies: - "@jupyterlab/builder": ^4.0.9 + "@jupyterlab/builder": ^4.0.10 "@lumino/coreutils": ^2.1.2 rimraf: ~3.0.0 languageName: unknown @@ -3133,18 +3133,18 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/example-filebrowser@workspace:examples/filebrowser" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/codemirror": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docmanager": ^4.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/filebrowser": ^4.0.9 - "@jupyterlab/fileeditor": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/theme-light-extension": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/codemirror": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docmanager": ^4.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/filebrowser": ^4.0.10 + "@jupyterlab/fileeditor": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/theme-light-extension": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/commands": ^2.1.3 "@lumino/widgets": ^2.3.0 css-loader: ^6.7.1 @@ -3164,22 +3164,22 @@ __metadata: resolution: "@jupyterlab/example-notebook@workspace:examples/notebook" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/codemirror": ^4.0.9 - "@jupyterlab/completer": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docmanager": ^4.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/documentsearch": ^4.0.9 - "@jupyterlab/markedparser-extension": ^4.0.9 - "@jupyterlab/mathjax-extension": ^4.0.9 - "@jupyterlab/notebook": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/theme-light-extension": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/codemirror": ^4.0.10 + "@jupyterlab/completer": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docmanager": ^4.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/documentsearch": ^4.0.10 + "@jupyterlab/markedparser-extension": ^4.0.10 + "@jupyterlab/mathjax-extension": ^4.0.10 + "@jupyterlab/notebook": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/theme-light-extension": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/commands": ^2.1.3 "@lumino/widgets": ^2.3.0 css-loader: ^6.7.1 @@ -3198,8 +3198,8 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/example-services-browser@workspace:packages/services/examples/browser" dependencies: - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/services": ^7.0.9 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/services": ^7.0.10 "@lumino/coreutils": ^2.1.2 rimraf: ~3.0.0 typescript: ~5.0.4 @@ -3212,10 +3212,10 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/example-services-outputarea@workspace:packages/services/examples/typescript-browser-with-output" dependencies: - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/outputarea": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/services": ^7.0.9 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/outputarea": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/services": ^7.0.10 css-loader: ^6.7.1 rimraf: ~3.0.0 style-loader: ~3.3.1 @@ -3229,11 +3229,11 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/example-simple-list@workspace:packages/ui-components/examples/simple-windowed-list" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/theme-light-extension": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/theme-light-extension": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.0 css-loader: ^6.7.1 @@ -3251,11 +3251,11 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/example-terminal@workspace:examples/terminal" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/terminal": ^4.0.9 - "@jupyterlab/theme-light-extension": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/terminal": ^4.0.10 + "@jupyterlab/theme-light-extension": ^4.0.10 "@lumino/widgets": ^2.3.0 css-loader: ^6.7.1 mini-css-extract-plugin: ^2.7.0 @@ -3269,31 +3269,31 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/extensionmanager-extension@^4.0.9, @jupyterlab/extensionmanager-extension@workspace:packages/extensionmanager-extension, @jupyterlab/extensionmanager-extension@~4.0.9": +"@jupyterlab/extensionmanager-extension@^4.0.10, @jupyterlab/extensionmanager-extension@workspace:packages/extensionmanager-extension, @jupyterlab/extensionmanager-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/extensionmanager-extension@workspace:packages/extensionmanager-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/extensionmanager": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/extensionmanager": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 rimraf: ~3.0.0 typedoc: ~0.24.7 typescript: ~5.0.4 languageName: unknown linkType: soft -"@jupyterlab/extensionmanager@^4.0.9, @jupyterlab/extensionmanager@workspace:packages/extensionmanager": +"@jupyterlab/extensionmanager@^4.0.10, @jupyterlab/extensionmanager@workspace:packages/extensionmanager": version: 0.0.0-use.local resolution: "@jupyterlab/extensionmanager@workspace:packages/extensionmanager" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/messaging": ^2.0.1 "@lumino/polling": ^2.1.2 "@lumino/widgets": ^2.3.0 @@ -3310,22 +3310,22 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/filebrowser-extension@^4.0.9, @jupyterlab/filebrowser-extension@workspace:packages/filebrowser-extension, @jupyterlab/filebrowser-extension@~4.0.9": +"@jupyterlab/filebrowser-extension@^4.0.10, @jupyterlab/filebrowser-extension@workspace:packages/filebrowser-extension, @jupyterlab/filebrowser-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/filebrowser-extension@workspace:packages/filebrowser-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docmanager": ^4.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/filebrowser": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/statedb": ^4.0.9 - "@jupyterlab/statusbar": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docmanager": ^4.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/filebrowser": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/statedb": ^4.0.10 + "@jupyterlab/statusbar": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.1.3 "@lumino/widgets": ^2.3.0 @@ -3335,20 +3335,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/filebrowser@^4.0.9, @jupyterlab/filebrowser@workspace:packages/filebrowser": +"@jupyterlab/filebrowser@^4.0.10, @jupyterlab/filebrowser@workspace:packages/filebrowser": version: 0.0.0-use.local resolution: "@jupyterlab/filebrowser@workspace:packages/filebrowser" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docmanager": ^4.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/statedb": ^4.0.9 - "@jupyterlab/statusbar": ^4.0.9 - "@jupyterlab/testing": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docmanager": ^4.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/statedb": ^4.0.10 + "@jupyterlab/statusbar": ^4.0.10 + "@jupyterlab/testing": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -3368,34 +3368,34 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/fileeditor-extension@^4.0.9, @jupyterlab/fileeditor-extension@workspace:packages/fileeditor-extension, @jupyterlab/fileeditor-extension@~4.0.9": +"@jupyterlab/fileeditor-extension@^4.0.10, @jupyterlab/fileeditor-extension@workspace:packages/fileeditor-extension, @jupyterlab/fileeditor-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/fileeditor-extension@workspace:packages/fileeditor-extension" dependencies: "@codemirror/commands": ^6.2.3 "@codemirror/search": ^6.3.0 - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/codemirror": ^4.0.9 - "@jupyterlab/completer": ^4.0.9 - "@jupyterlab/console": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/documentsearch": ^4.0.9 - "@jupyterlab/filebrowser": ^4.0.9 - "@jupyterlab/fileeditor": ^4.0.9 - "@jupyterlab/launcher": ^4.0.9 - "@jupyterlab/lsp": ^4.0.9 - "@jupyterlab/mainmenu": ^4.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/rendermime-interfaces": ^3.8.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/statusbar": ^4.0.9 - "@jupyterlab/toc": ^6.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/codemirror": ^4.0.10 + "@jupyterlab/completer": ^4.0.10 + "@jupyterlab/console": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/documentsearch": ^4.0.10 + "@jupyterlab/filebrowser": ^4.0.10 + "@jupyterlab/fileeditor": ^4.0.10 + "@jupyterlab/launcher": ^4.0.10 + "@jupyterlab/lsp": ^4.0.10 + "@jupyterlab/mainmenu": ^4.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/rendermime-interfaces": ^3.8.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/statusbar": ^4.0.10 + "@jupyterlab/toc": ^6.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.1.3 "@lumino/coreutils": ^2.1.2 @@ -3406,23 +3406,23 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/fileeditor@^4.0.9, @jupyterlab/fileeditor@workspace:packages/fileeditor": +"@jupyterlab/fileeditor@^4.0.10, @jupyterlab/fileeditor@workspace:packages/fileeditor": version: 0.0.0-use.local resolution: "@jupyterlab/fileeditor@workspace:packages/fileeditor" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/codemirror": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/documentsearch": ^4.0.9 - "@jupyterlab/lsp": ^4.0.9 - "@jupyterlab/statusbar": ^4.0.9 - "@jupyterlab/testing": ^4.0.9 - "@jupyterlab/toc": ^6.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/codemirror": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/documentsearch": ^4.0.10 + "@jupyterlab/lsp": ^4.0.10 + "@jupyterlab/statusbar": ^4.0.10 + "@jupyterlab/testing": ^4.0.10 + "@jupyterlab/toc": ^6.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/commands": ^2.1.3 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 @@ -3441,15 +3441,15 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/galata-extension@workspace:galata/extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/builder": ^4.0.9 - "@jupyterlab/cells": ^4.0.9 - "@jupyterlab/debugger": ^4.0.9 - "@jupyterlab/docmanager": ^4.0.9 - "@jupyterlab/nbformat": ^4.0.9 - "@jupyterlab/notebook": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/builder": ^4.0.10 + "@jupyterlab/cells": ^4.0.10 + "@jupyterlab/debugger": ^4.0.10 + "@jupyterlab/docmanager": ^4.0.10 + "@jupyterlab/nbformat": ^4.0.10 + "@jupyterlab/notebook": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 @@ -3462,15 +3462,15 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/galata@workspace:galata" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/debugger": ^4.0.9 - "@jupyterlab/docmanager": ^4.0.9 - "@jupyterlab/nbformat": ^4.0.9 - "@jupyterlab/notebook": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/settingregistry": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/debugger": ^4.0.10 + "@jupyterlab/docmanager": ^4.0.10 + "@jupyterlab/nbformat": ^4.0.10 + "@jupyterlab/notebook": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/settingregistry": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@playwright/test": ^1.32.2 "@stdlib/stats": ~0.0.13 @@ -3486,17 +3486,17 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/help-extension@^4.0.9, @jupyterlab/help-extension@workspace:packages/help-extension, @jupyterlab/help-extension@~4.0.9": +"@jupyterlab/help-extension@^4.0.10, @jupyterlab/help-extension@workspace:packages/help-extension, @jupyterlab/help-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/help-extension@workspace:packages/help-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/mainmenu": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/mainmenu": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/virtualdom": ^2.0.1 @@ -3508,32 +3508,32 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/htmlviewer-extension@^4.0.9, @jupyterlab/htmlviewer-extension@workspace:packages/htmlviewer-extension, @jupyterlab/htmlviewer-extension@~4.0.9": +"@jupyterlab/htmlviewer-extension@^4.0.10, @jupyterlab/htmlviewer-extension@workspace:packages/htmlviewer-extension, @jupyterlab/htmlviewer-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/htmlviewer-extension@workspace:packages/htmlviewer-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/htmlviewer": ^4.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/htmlviewer": ^4.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 rimraf: ~3.0.0 typescript: ~5.0.4 languageName: unknown linkType: soft -"@jupyterlab/htmlviewer@^4.0.9, @jupyterlab/htmlviewer@workspace:packages/htmlviewer": +"@jupyterlab/htmlviewer@^4.0.10, @jupyterlab/htmlviewer@workspace:packages/htmlviewer": version: 0.0.0-use.local resolution: "@jupyterlab/htmlviewer@workspace:packages/htmlviewer" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.0 @@ -3543,43 +3543,43 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/hub-extension@^4.0.9, @jupyterlab/hub-extension@workspace:packages/hub-extension, @jupyterlab/hub-extension@~4.0.9": +"@jupyterlab/hub-extension@^4.0.10, @jupyterlab/hub-extension@workspace:packages/hub-extension, @jupyterlab/hub-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/hub-extension@workspace:packages/hub-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/translation": ^4.0.10 rimraf: ~3.0.0 typescript: ~5.0.4 languageName: unknown linkType: soft -"@jupyterlab/imageviewer-extension@^4.0.9, @jupyterlab/imageviewer-extension@workspace:packages/imageviewer-extension, @jupyterlab/imageviewer-extension@~4.0.9": +"@jupyterlab/imageviewer-extension@^4.0.10, @jupyterlab/imageviewer-extension@workspace:packages/imageviewer-extension, @jupyterlab/imageviewer-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/imageviewer-extension@workspace:packages/imageviewer-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/imageviewer": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/imageviewer": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 rimraf: ~3.0.0 typedoc: ~0.24.7 typescript: ~5.0.4 languageName: unknown linkType: soft -"@jupyterlab/imageviewer@^4.0.9, @jupyterlab/imageviewer@workspace:packages/imageviewer": +"@jupyterlab/imageviewer@^4.0.10, @jupyterlab/imageviewer@workspace:packages/imageviewer": version: 0.0.0-use.local resolution: "@jupyterlab/imageviewer@workspace:packages/imageviewer" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/testing": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/testing": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.0 @@ -3591,18 +3591,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/inspector-extension@^4.0.9, @jupyterlab/inspector-extension@workspace:packages/inspector-extension, @jupyterlab/inspector-extension@~4.0.9": +"@jupyterlab/inspector-extension@^4.0.10, @jupyterlab/inspector-extension@workspace:packages/inspector-extension, @jupyterlab/inspector-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/inspector-extension@workspace:packages/inspector-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/console": ^4.0.9 - "@jupyterlab/inspector": ^4.0.9 - "@jupyterlab/launcher": ^4.0.9 - "@jupyterlab/notebook": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/console": ^4.0.10 + "@jupyterlab/inspector": ^4.0.10 + "@jupyterlab/launcher": ^4.0.10 + "@jupyterlab/notebook": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/widgets": ^2.3.0 rimraf: ~3.0.0 typedoc: ~0.24.7 @@ -3610,18 +3610,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/inspector@^4.0.9, @jupyterlab/inspector@workspace:packages/inspector": +"@jupyterlab/inspector@^4.0.10, @jupyterlab/inspector@workspace:packages/inspector": version: 0.0.0-use.local resolution: "@jupyterlab/inspector@workspace:packages/inspector" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/statedb": ^4.0.9 - "@jupyterlab/testing": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/statedb": ^4.0.10 + "@jupyterlab/testing": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/polling": ^2.1.2 @@ -3635,27 +3635,27 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/javascript-extension@^4.0.9, @jupyterlab/javascript-extension@workspace:packages/javascript-extension, @jupyterlab/javascript-extension@~4.0.9": +"@jupyterlab/javascript-extension@^4.0.10, @jupyterlab/javascript-extension@workspace:packages/javascript-extension, @jupyterlab/javascript-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/javascript-extension@workspace:packages/javascript-extension" dependencies: - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/rendermime-interfaces": ^3.8.9 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/rendermime-interfaces": ^3.8.10 rimraf: ~3.0.0 typedoc: ~0.24.7 typescript: ~5.0.4 languageName: unknown linkType: soft -"@jupyterlab/json-extension@^4.0.9, @jupyterlab/json-extension@workspace:packages/json-extension, @jupyterlab/json-extension@~4.0.9": +"@jupyterlab/json-extension@^4.0.10, @jupyterlab/json-extension@workspace:packages/json-extension, @jupyterlab/json-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/json-extension@workspace:packages/json-extension" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/codemirror": ^4.0.9 - "@jupyterlab/rendermime-interfaces": ^3.8.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/codemirror": ^4.0.10 + "@jupyterlab/rendermime-interfaces": ^3.8.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lezer/highlight": ^1.1.4 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 @@ -3674,16 +3674,16 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/launcher-extension@^4.0.9, @jupyterlab/launcher-extension@workspace:packages/launcher-extension, @jupyterlab/launcher-extension@~4.0.9": +"@jupyterlab/launcher-extension@^4.0.10, @jupyterlab/launcher-extension@workspace:packages/launcher-extension, @jupyterlab/launcher-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/launcher-extension@workspace:packages/launcher-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/filebrowser": ^4.0.9 - "@jupyterlab/launcher": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/filebrowser": ^4.0.10 + "@jupyterlab/launcher": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.0 @@ -3693,13 +3693,13 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/launcher@^4.0.9, @jupyterlab/launcher@workspace:packages/launcher": +"@jupyterlab/launcher@^4.0.10, @jupyterlab/launcher@workspace:packages/launcher": version: 0.0.0-use.local resolution: "@jupyterlab/launcher@workspace:packages/launcher" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.1.3 "@lumino/coreutils": ^2.1.2 @@ -3714,19 +3714,19 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/logconsole-extension@^4.0.9, @jupyterlab/logconsole-extension@workspace:packages/logconsole-extension, @jupyterlab/logconsole-extension@~4.0.9": +"@jupyterlab/logconsole-extension@^4.0.10, @jupyterlab/logconsole-extension@workspace:packages/logconsole-extension, @jupyterlab/logconsole-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/logconsole-extension@workspace:packages/logconsole-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/logconsole": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/statusbar": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/logconsole": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/statusbar": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.0 @@ -3736,17 +3736,17 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/logconsole@^4.0.9, @jupyterlab/logconsole@workspace:packages/logconsole": +"@jupyterlab/logconsole@^4.0.10, @jupyterlab/logconsole@workspace:packages/logconsole": version: 0.0.0-use.local resolution: "@jupyterlab/logconsole@workspace:packages/logconsole" dependencies: - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/nbformat": ^4.0.9 - "@jupyterlab/outputarea": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/testing": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/nbformat": ^4.0.10 + "@jupyterlab/outputarea": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/testing": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 @@ -3759,16 +3759,16 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/lsp-extension@^4.0.9, @jupyterlab/lsp-extension@workspace:packages/lsp-extension, @jupyterlab/lsp-extension@~4.0.9": +"@jupyterlab/lsp-extension@^4.0.10, @jupyterlab/lsp-extension@workspace:packages/lsp-extension, @jupyterlab/lsp-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/lsp-extension@workspace:packages/lsp-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/lsp": ^4.0.9 - "@jupyterlab/running": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/lsp": ^4.0.10 + "@jupyterlab/running": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/polling": ^2.1.2 "@lumino/signaling": ^2.1.2 @@ -3779,17 +3779,17 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/lsp@^4.0.9, @jupyterlab/lsp@workspace:packages/lsp": +"@jupyterlab/lsp@^4.0.10, @jupyterlab/lsp@workspace:packages/lsp": version: 0.0.0-use.local resolution: "@jupyterlab/lsp@workspace:packages/lsp" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/testing": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/testing": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 @@ -3806,18 +3806,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/mainmenu-extension@^4.0.9, @jupyterlab/mainmenu-extension@workspace:packages/mainmenu-extension, @jupyterlab/mainmenu-extension@~4.0.9": +"@jupyterlab/mainmenu-extension@^4.0.10, @jupyterlab/mainmenu-extension@workspace:packages/mainmenu-extension, @jupyterlab/mainmenu-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/mainmenu-extension@workspace:packages/mainmenu-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/mainmenu": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/mainmenu": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -3828,14 +3828,14 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/mainmenu@^4.0.9, @jupyterlab/mainmenu@workspace:packages/mainmenu": +"@jupyterlab/mainmenu@^4.0.10, @jupyterlab/mainmenu@workspace:packages/mainmenu": version: 0.0.0-use.local resolution: "@jupyterlab/mainmenu@workspace:packages/mainmenu" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/testing": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/testing": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.1.3 "@lumino/coreutils": ^2.1.2 @@ -3848,34 +3848,34 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/markdownviewer-extension@^4.0.9, @jupyterlab/markdownviewer-extension@workspace:packages/markdownviewer-extension, @jupyterlab/markdownviewer-extension@~4.0.9": +"@jupyterlab/markdownviewer-extension@^4.0.10, @jupyterlab/markdownviewer-extension@workspace:packages/markdownviewer-extension, @jupyterlab/markdownviewer-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/markdownviewer-extension@workspace:packages/markdownviewer-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/markdownviewer": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/toc": ^6.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/markdownviewer": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/toc": ^6.0.10 + "@jupyterlab/translation": ^4.0.10 rimraf: ~3.0.0 typedoc: ~0.24.7 typescript: ~5.0.4 languageName: unknown linkType: soft -"@jupyterlab/markdownviewer@^4.0.9, @jupyterlab/markdownviewer@workspace:packages/markdownviewer": +"@jupyterlab/markdownviewer@^4.0.10, @jupyterlab/markdownviewer@workspace:packages/markdownviewer": version: 0.0.0-use.local resolution: "@jupyterlab/markdownviewer@workspace:packages/markdownviewer" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/toc": ^6.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/toc": ^6.0.10 + "@jupyterlab/translation": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 @@ -3886,13 +3886,13 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/markedparser-extension@^4.0.9, @jupyterlab/markedparser-extension@workspace:packages/markedparser-extension, @jupyterlab/markedparser-extension@~4.0.9": +"@jupyterlab/markedparser-extension@^4.0.10, @jupyterlab/markedparser-extension@workspace:packages/markedparser-extension, @jupyterlab/markedparser-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/markedparser-extension@workspace:packages/markedparser-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/codemirror": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/codemirror": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 "@types/marked": ^4.0.3 marked: ^4.0.17 rimraf: ~3.0.0 @@ -3901,12 +3901,12 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/mathjax-extension@^4.0.9, @jupyterlab/mathjax-extension@workspace:packages/mathjax-extension, @jupyterlab/mathjax-extension@~4.0.9": +"@jupyterlab/mathjax-extension@^4.0.10, @jupyterlab/mathjax-extension@workspace:packages/mathjax-extension, @jupyterlab/mathjax-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/mathjax-extension@workspace:packages/mathjax-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 "@lumino/coreutils": ^2.1.2 mathjax-full: ^3.2.2 rimraf: ~3.0.0 @@ -3915,33 +3915,33 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/metadataform-extension@^4.0.9, @jupyterlab/metadataform-extension@workspace:packages/metadataform-extension, @jupyterlab/metadataform-extension@~4.0.9": +"@jupyterlab/metadataform-extension@^4.0.10, @jupyterlab/metadataform-extension@workspace:packages/metadataform-extension, @jupyterlab/metadataform-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/metadataform-extension@workspace:packages/metadataform-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/metadataform": ^4.0.9 - "@jupyterlab/notebook": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/metadataform": ^4.0.10 + "@jupyterlab/notebook": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 rimraf: ~3.0.0 typescript: ~5.0.4 languageName: unknown linkType: soft -"@jupyterlab/metadataform@^4.0.9, @jupyterlab/metadataform@workspace:packages/metadataform": +"@jupyterlab/metadataform@^4.0.10, @jupyterlab/metadataform@workspace:packages/metadataform": version: 0.0.0-use.local resolution: "@jupyterlab/metadataform@workspace:packages/metadataform" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/nbformat": ^4.0.9 - "@jupyterlab/notebook": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/testing": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/nbformat": ^4.0.10 + "@jupyterlab/notebook": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/testing": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.0 @@ -3962,97 +3962,97 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/metapackage@workspace:packages/metapackage" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/application-extension": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/apputils-extension": ^4.0.9 - "@jupyterlab/attachments": ^4.0.9 - "@jupyterlab/cell-toolbar": ^4.0.9 - "@jupyterlab/cell-toolbar-extension": ^4.0.9 - "@jupyterlab/cells": ^4.0.9 - "@jupyterlab/celltags-extension": ^4.0.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/codemirror": ^4.0.9 - "@jupyterlab/codemirror-extension": ^4.0.9 - "@jupyterlab/completer": ^4.0.9 - "@jupyterlab/completer-extension": ^4.0.9 - "@jupyterlab/console": ^4.0.9 - "@jupyterlab/console-extension": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/csvviewer": ^4.0.9 - "@jupyterlab/csvviewer-extension": ^4.0.9 - "@jupyterlab/debugger": ^4.0.9 - "@jupyterlab/debugger-extension": ^4.0.9 - "@jupyterlab/docmanager": ^4.0.9 - "@jupyterlab/docmanager-extension": ^4.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/documentsearch": ^4.0.9 - "@jupyterlab/documentsearch-extension": ^4.0.9 - "@jupyterlab/extensionmanager": ^4.0.9 - "@jupyterlab/extensionmanager-extension": ^4.0.9 - "@jupyterlab/filebrowser": ^4.0.9 - "@jupyterlab/filebrowser-extension": ^4.0.9 - "@jupyterlab/fileeditor": ^4.0.9 - "@jupyterlab/fileeditor-extension": ^4.0.9 - "@jupyterlab/help-extension": ^4.0.9 - "@jupyterlab/htmlviewer": ^4.0.9 - "@jupyterlab/htmlviewer-extension": ^4.0.9 - "@jupyterlab/hub-extension": ^4.0.9 - "@jupyterlab/imageviewer": ^4.0.9 - "@jupyterlab/imageviewer-extension": ^4.0.9 - "@jupyterlab/inspector": ^4.0.9 - "@jupyterlab/inspector-extension": ^4.0.9 - "@jupyterlab/javascript-extension": ^4.0.9 - "@jupyterlab/json-extension": ^4.0.9 - "@jupyterlab/launcher": ^4.0.9 - "@jupyterlab/launcher-extension": ^4.0.9 - "@jupyterlab/logconsole": ^4.0.9 - "@jupyterlab/logconsole-extension": ^4.0.9 - "@jupyterlab/lsp": ^4.0.9 - "@jupyterlab/lsp-extension": ^4.0.9 - "@jupyterlab/mainmenu": ^4.0.9 - "@jupyterlab/mainmenu-extension": ^4.0.9 - "@jupyterlab/markdownviewer": ^4.0.9 - "@jupyterlab/markdownviewer-extension": ^4.0.9 - "@jupyterlab/markedparser-extension": ^4.0.9 - "@jupyterlab/mathjax-extension": ^4.0.9 - "@jupyterlab/metadataform": ^4.0.9 - "@jupyterlab/metadataform-extension": ^4.0.9 - "@jupyterlab/nbconvert-css": ^4.0.9 - "@jupyterlab/nbformat": ^4.0.9 - "@jupyterlab/notebook": ^4.0.9 - "@jupyterlab/notebook-extension": ^4.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/outputarea": ^4.0.9 - "@jupyterlab/pdf-extension": ^4.0.9 - "@jupyterlab/property-inspector": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/rendermime-extension": ^4.0.9 - "@jupyterlab/rendermime-interfaces": ^3.8.9 - "@jupyterlab/running": ^4.0.9 - "@jupyterlab/running-extension": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/settingeditor": ^4.0.9 - "@jupyterlab/settingeditor-extension": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/shortcuts-extension": ^4.0.9 - "@jupyterlab/statedb": ^4.0.9 - "@jupyterlab/statusbar": ^4.0.9 - "@jupyterlab/statusbar-extension": ^4.0.9 - "@jupyterlab/terminal": ^4.0.9 - "@jupyterlab/terminal-extension": ^4.0.9 - "@jupyterlab/testing": ^4.0.9 - "@jupyterlab/theme-dark-extension": ^4.0.9 - "@jupyterlab/theme-light-extension": ^4.0.9 - "@jupyterlab/toc": ^6.0.9 - "@jupyterlab/toc-extension": ^6.0.9 - "@jupyterlab/tooltip": ^4.0.9 - "@jupyterlab/tooltip-extension": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/translation-extension": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 - "@jupyterlab/ui-components-extension": ^4.0.9 - "@jupyterlab/vega5-extension": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/application-extension": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/apputils-extension": ^4.0.10 + "@jupyterlab/attachments": ^4.0.10 + "@jupyterlab/cell-toolbar": ^4.0.10 + "@jupyterlab/cell-toolbar-extension": ^4.0.10 + "@jupyterlab/cells": ^4.0.10 + "@jupyterlab/celltags-extension": ^4.0.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/codemirror": ^4.0.10 + "@jupyterlab/codemirror-extension": ^4.0.10 + "@jupyterlab/completer": ^4.0.10 + "@jupyterlab/completer-extension": ^4.0.10 + "@jupyterlab/console": ^4.0.10 + "@jupyterlab/console-extension": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/csvviewer": ^4.0.10 + "@jupyterlab/csvviewer-extension": ^4.0.10 + "@jupyterlab/debugger": ^4.0.10 + "@jupyterlab/debugger-extension": ^4.0.10 + "@jupyterlab/docmanager": ^4.0.10 + "@jupyterlab/docmanager-extension": ^4.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/documentsearch": ^4.0.10 + "@jupyterlab/documentsearch-extension": ^4.0.10 + "@jupyterlab/extensionmanager": ^4.0.10 + "@jupyterlab/extensionmanager-extension": ^4.0.10 + "@jupyterlab/filebrowser": ^4.0.10 + "@jupyterlab/filebrowser-extension": ^4.0.10 + "@jupyterlab/fileeditor": ^4.0.10 + "@jupyterlab/fileeditor-extension": ^4.0.10 + "@jupyterlab/help-extension": ^4.0.10 + "@jupyterlab/htmlviewer": ^4.0.10 + "@jupyterlab/htmlviewer-extension": ^4.0.10 + "@jupyterlab/hub-extension": ^4.0.10 + "@jupyterlab/imageviewer": ^4.0.10 + "@jupyterlab/imageviewer-extension": ^4.0.10 + "@jupyterlab/inspector": ^4.0.10 + "@jupyterlab/inspector-extension": ^4.0.10 + "@jupyterlab/javascript-extension": ^4.0.10 + "@jupyterlab/json-extension": ^4.0.10 + "@jupyterlab/launcher": ^4.0.10 + "@jupyterlab/launcher-extension": ^4.0.10 + "@jupyterlab/logconsole": ^4.0.10 + "@jupyterlab/logconsole-extension": ^4.0.10 + "@jupyterlab/lsp": ^4.0.10 + "@jupyterlab/lsp-extension": ^4.0.10 + "@jupyterlab/mainmenu": ^4.0.10 + "@jupyterlab/mainmenu-extension": ^4.0.10 + "@jupyterlab/markdownviewer": ^4.0.10 + "@jupyterlab/markdownviewer-extension": ^4.0.10 + "@jupyterlab/markedparser-extension": ^4.0.10 + "@jupyterlab/mathjax-extension": ^4.0.10 + "@jupyterlab/metadataform": ^4.0.10 + "@jupyterlab/metadataform-extension": ^4.0.10 + "@jupyterlab/nbconvert-css": ^4.0.10 + "@jupyterlab/nbformat": ^4.0.10 + "@jupyterlab/notebook": ^4.0.10 + "@jupyterlab/notebook-extension": ^4.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/outputarea": ^4.0.10 + "@jupyterlab/pdf-extension": ^4.0.10 + "@jupyterlab/property-inspector": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/rendermime-extension": ^4.0.10 + "@jupyterlab/rendermime-interfaces": ^3.8.10 + "@jupyterlab/running": ^4.0.10 + "@jupyterlab/running-extension": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/settingeditor": ^4.0.10 + "@jupyterlab/settingeditor-extension": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/shortcuts-extension": ^4.0.10 + "@jupyterlab/statedb": ^4.0.10 + "@jupyterlab/statusbar": ^4.0.10 + "@jupyterlab/statusbar-extension": ^4.0.10 + "@jupyterlab/terminal": ^4.0.10 + "@jupyterlab/terminal-extension": ^4.0.10 + "@jupyterlab/testing": ^4.0.10 + "@jupyterlab/theme-dark-extension": ^4.0.10 + "@jupyterlab/theme-light-extension": ^4.0.10 + "@jupyterlab/toc": ^6.0.10 + "@jupyterlab/toc-extension": ^6.0.10 + "@jupyterlab/tooltip": ^4.0.10 + "@jupyterlab/tooltip-extension": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/translation-extension": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 + "@jupyterlab/ui-components-extension": ^4.0.10 + "@jupyterlab/vega5-extension": ^4.0.10 "@types/jest": ^29.2.0 fs-extra: ^10.1.0 jest: ^29.2.0 @@ -4067,8 +4067,8 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/mock-consumer@workspace:jupyterlab/tests/mock_packages/interop/consumer" dependencies: - "@jupyterlab/builder": ^4.0.9 - "@jupyterlab/mock-token": ^4.0.9 + "@jupyterlab/builder": ^4.0.10 + "@jupyterlab/mock-token": ^4.0.10 languageName: unknown linkType: soft @@ -4076,8 +4076,8 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/mock-extension@workspace:jupyterlab/tests/mock_packages/extension" dependencies: - "@jupyterlab/builder": ^4.0.9 - "@jupyterlab/launcher": ^4.0.9 + "@jupyterlab/builder": ^4.0.10 + "@jupyterlab/launcher": ^4.0.10 languageName: unknown linkType: soft @@ -4085,12 +4085,12 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/mock-provider@workspace:jupyterlab/tests/mock_packages/interop/provider" dependencies: - "@jupyterlab/builder": ^4.0.9 - "@jupyterlab/mock-token": ^4.0.9 + "@jupyterlab/builder": ^4.0.10 + "@jupyterlab/mock-token": ^4.0.10 languageName: unknown linkType: soft -"@jupyterlab/mock-token@^4.0.9, @jupyterlab/mock-token@workspace:jupyterlab/tests/mock_packages/interop/token": +"@jupyterlab/mock-token@^4.0.10, @jupyterlab/mock-token@workspace:jupyterlab/tests/mock_packages/interop/token": version: 0.0.0-use.local resolution: "@jupyterlab/mock-token@workspace:jupyterlab/tests/mock_packages/interop/token" dependencies: @@ -4098,17 +4098,17 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/nbconvert-css@^4.0.9, @jupyterlab/nbconvert-css@workspace:packages/nbconvert-css": +"@jupyterlab/nbconvert-css@^4.0.10, @jupyterlab/nbconvert-css@workspace:packages/nbconvert-css": version: 0.0.0-use.local resolution: "@jupyterlab/nbconvert-css@workspace:packages/nbconvert-css" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/cells": ^4.0.9 - "@jupyterlab/codemirror": ^4.0.9 - "@jupyterlab/notebook": ^4.0.9 - "@jupyterlab/outputarea": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/cells": ^4.0.10 + "@jupyterlab/codemirror": ^4.0.10 + "@jupyterlab/notebook": ^4.0.10 + "@jupyterlab/outputarea": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 css-loader: ^6.7.1 mini-css-extract-plugin: ^2.7.0 null-loader: ^4.0.0 @@ -4118,11 +4118,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/nbformat@^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@^4.0.9, @jupyterlab/nbformat@workspace:packages/nbformat": +"@jupyterlab/nbformat@^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@^4.0.10, @jupyterlab/nbformat@workspace:packages/nbformat": version: 0.0.0-use.local resolution: "@jupyterlab/nbformat@workspace:packages/nbformat" dependencies: - "@jupyterlab/testing": ^4.0.9 + "@jupyterlab/testing": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@types/jest": ^29.2.0 jest: ^29.2.0 @@ -4131,40 +4131,40 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/notebook-extension@^4.0.9, @jupyterlab/notebook-extension@workspace:packages/notebook-extension, @jupyterlab/notebook-extension@~4.0.9": +"@jupyterlab/notebook-extension@^4.0.10, @jupyterlab/notebook-extension@workspace:packages/notebook-extension, @jupyterlab/notebook-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/notebook-extension@workspace:packages/notebook-extension" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/cells": ^4.0.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/codemirror": ^4.0.9 - "@jupyterlab/completer": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docmanager": ^4.0.9 - "@jupyterlab/docmanager-extension": ^4.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/documentsearch": ^4.0.9 - "@jupyterlab/filebrowser": ^4.0.9 - "@jupyterlab/launcher": ^4.0.9 - "@jupyterlab/logconsole": ^4.0.9 - "@jupyterlab/lsp": ^4.0.9 - "@jupyterlab/mainmenu": ^4.0.9 - "@jupyterlab/metadataform": ^4.0.9 - "@jupyterlab/nbformat": ^4.0.9 - "@jupyterlab/notebook": ^4.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/property-inspector": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/statedb": ^4.0.9 - "@jupyterlab/statusbar": ^4.0.9 - "@jupyterlab/toc": ^6.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/cells": ^4.0.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/codemirror": ^4.0.10 + "@jupyterlab/completer": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docmanager": ^4.0.10 + "@jupyterlab/docmanager-extension": ^4.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/documentsearch": ^4.0.10 + "@jupyterlab/filebrowser": ^4.0.10 + "@jupyterlab/launcher": ^4.0.10 + "@jupyterlab/logconsole": ^4.0.10 + "@jupyterlab/lsp": ^4.0.10 + "@jupyterlab/mainmenu": ^4.0.10 + "@jupyterlab/metadataform": ^4.0.10 + "@jupyterlab/nbformat": ^4.0.10 + "@jupyterlab/notebook": ^4.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/property-inspector": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/statedb": ^4.0.10 + "@jupyterlab/statusbar": ^4.0.10 + "@jupyterlab/toc": ^6.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.1.3 "@lumino/coreutils": ^2.1.2 @@ -4180,29 +4180,29 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/notebook@^4.0.9, @jupyterlab/notebook@workspace:packages/notebook": +"@jupyterlab/notebook@^4.0.10, @jupyterlab/notebook@workspace:packages/notebook": version: 0.0.0-use.local resolution: "@jupyterlab/notebook@workspace:packages/notebook" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/cells": ^4.0.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/codemirror": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/documentsearch": ^4.0.9 - "@jupyterlab/lsp": ^4.0.9 - "@jupyterlab/nbformat": ^4.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/statusbar": ^4.0.9 - "@jupyterlab/testing": ^4.0.9 - "@jupyterlab/toc": ^6.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/cells": ^4.0.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/codemirror": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/documentsearch": ^4.0.10 + "@jupyterlab/lsp": ^4.0.10 + "@jupyterlab/nbformat": ^4.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/statusbar": ^4.0.10 + "@jupyterlab/testing": ^4.0.10 + "@jupyterlab/toc": ^6.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/domutils": ^2.0.1 @@ -4221,11 +4221,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/observables@^5.0.9, @jupyterlab/observables@workspace:packages/observables": +"@jupyterlab/observables@^5.0.10, @jupyterlab/observables@workspace:packages/observables": version: 0.0.0-use.local resolution: "@jupyterlab/observables@workspace:packages/observables" dependencies: - "@jupyterlab/testing": ^4.0.9 + "@jupyterlab/testing": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -4239,18 +4239,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/outputarea@^4.0.9, @jupyterlab/outputarea@workspace:packages/outputarea": +"@jupyterlab/outputarea@^4.0.10, @jupyterlab/outputarea@workspace:packages/outputarea": version: 0.0.0-use.local resolution: "@jupyterlab/outputarea@workspace:packages/outputarea" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/nbformat": ^4.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/rendermime-interfaces": ^3.8.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/testing": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/nbformat": ^4.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/rendermime-interfaces": ^3.8.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/testing": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -4266,11 +4266,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/pdf-extension@^4.0.9, @jupyterlab/pdf-extension@workspace:packages/pdf-extension, @jupyterlab/pdf-extension@~4.0.9": +"@jupyterlab/pdf-extension@^4.0.10, @jupyterlab/pdf-extension@workspace:packages/pdf-extension, @jupyterlab/pdf-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/pdf-extension@workspace:packages/pdf-extension" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.8.9 + "@jupyterlab/rendermime-interfaces": ^3.8.10 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/widgets": ^2.3.0 @@ -4280,13 +4280,13 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/property-inspector@^4.0.9, @jupyterlab/property-inspector@workspace:packages/property-inspector": +"@jupyterlab/property-inspector@^4.0.10, @jupyterlab/property-inspector@workspace:packages/property-inspector": version: 0.0.0-use.local resolution: "@jupyterlab/property-inspector@workspace:packages/property-inspector" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 @@ -4298,22 +4298,22 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/rendermime-extension@^4.0.9, @jupyterlab/rendermime-extension@workspace:packages/rendermime-extension, @jupyterlab/rendermime-extension@~4.0.9": +"@jupyterlab/rendermime-extension@^4.0.10, @jupyterlab/rendermime-extension@workspace:packages/rendermime-extension, @jupyterlab/rendermime-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/rendermime-extension@workspace:packages/rendermime-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/docmanager": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/docmanager": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 rimraf: ~3.0.0 typedoc: ~0.24.7 typescript: ~5.0.4 languageName: unknown linkType: soft -"@jupyterlab/rendermime-interfaces@^3.8.9, @jupyterlab/rendermime-interfaces@workspace:packages/rendermime-interfaces": +"@jupyterlab/rendermime-interfaces@^3.8.10, @jupyterlab/rendermime-interfaces@workspace:packages/rendermime-interfaces": version: 0.0.0-use.local resolution: "@jupyterlab/rendermime-interfaces@workspace:packages/rendermime-interfaces" dependencies: @@ -4325,18 +4325,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/rendermime@^4.0.9, @jupyterlab/rendermime@workspace:packages/rendermime": +"@jupyterlab/rendermime@^4.0.10, @jupyterlab/rendermime@workspace:packages/rendermime": version: 0.0.0-use.local resolution: "@jupyterlab/rendermime@workspace:packages/rendermime" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/nbformat": ^4.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/rendermime-interfaces": ^3.8.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/testing": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/nbformat": ^4.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/rendermime-interfaces": ^3.8.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/testing": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 @@ -4376,18 +4376,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/running-extension@^4.0.9, @jupyterlab/running-extension@workspace:packages/running-extension, @jupyterlab/running-extension@~4.0.9": +"@jupyterlab/running-extension@^4.0.10, @jupyterlab/running-extension@workspace:packages/running-extension, @jupyterlab/running-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/running-extension@workspace:packages/running-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/rendermime-interfaces": ^3.8.9 - "@jupyterlab/running": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/rendermime-interfaces": ^3.8.10 + "@jupyterlab/running": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/commands": ^2.1.3 "@lumino/polling": ^2.1.2 "@lumino/signaling": ^2.1.2 @@ -4398,13 +4398,13 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/running@^4.0.9, @jupyterlab/running@workspace:packages/running": +"@jupyterlab/running@^4.0.10, @jupyterlab/running@workspace:packages/running": version: 0.0.0-use.local resolution: "@jupyterlab/running@workspace:packages/running" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 @@ -4417,16 +4417,16 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/services@^7.0.9, @jupyterlab/services@workspace:packages/services": +"@jupyterlab/services@^7.0.10, @jupyterlab/services@workspace:packages/services": version: 0.0.0-use.local resolution: "@jupyterlab/services@workspace:packages/services" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/nbformat": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/statedb": ^4.0.9 - "@jupyterlab/testing": ^4.0.9 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/nbformat": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/statedb": ^4.0.10 + "@jupyterlab/testing": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/polling": ^2.1.2 @@ -4444,19 +4444,19 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/settingeditor-extension@^4.0.9, @jupyterlab/settingeditor-extension@workspace:packages/settingeditor-extension, @jupyterlab/settingeditor-extension@~4.0.9": +"@jupyterlab/settingeditor-extension@^4.0.10, @jupyterlab/settingeditor-extension@workspace:packages/settingeditor-extension, @jupyterlab/settingeditor-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/settingeditor-extension@workspace:packages/settingeditor-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/settingeditor": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/statedb": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/settingeditor": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/statedb": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/disposable": ^2.1.2 rimraf: ~3.0.0 typedoc: ~0.24.7 @@ -4464,20 +4464,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/settingeditor@^4.0.9, @jupyterlab/settingeditor@workspace:packages/settingeditor": +"@jupyterlab/settingeditor@^4.0.10, @jupyterlab/settingeditor@workspace:packages/settingeditor": version: 0.0.0-use.local resolution: "@jupyterlab/settingeditor@workspace:packages/settingeditor" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/inspector": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/statedb": ^4.0.9 - "@jupyterlab/testing": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/inspector": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/statedb": ^4.0.10 + "@jupyterlab/testing": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.1.3 "@lumino/coreutils": ^2.1.2 @@ -4503,13 +4503,13 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/settingregistry@^4.0.9, @jupyterlab/settingregistry@workspace:packages/settingregistry": +"@jupyterlab/settingregistry@^4.0.10, @jupyterlab/settingregistry@workspace:packages/settingregistry": version: 0.0.0-use.local resolution: "@jupyterlab/settingregistry@workspace:packages/settingregistry" dependencies: - "@jupyterlab/nbformat": ^4.0.9 - "@jupyterlab/statedb": ^4.0.9 - "@jupyterlab/testing": ^4.0.9 + "@jupyterlab/nbformat": ^4.0.10 + "@jupyterlab/statedb": ^4.0.10 + "@jupyterlab/testing": ^4.0.10 "@lumino/commands": ^2.1.3 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -4526,15 +4526,15 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/shortcuts-extension@^4.0.9, @jupyterlab/shortcuts-extension@workspace:packages/shortcuts-extension, @jupyterlab/shortcuts-extension@~4.0.9": +"@jupyterlab/shortcuts-extension@^4.0.10, @jupyterlab/shortcuts-extension@workspace:packages/shortcuts-extension, @jupyterlab/shortcuts-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/shortcuts-extension@workspace:packages/shortcuts-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/testing": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/testing": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.1.3 "@lumino/coreutils": ^2.1.2 @@ -4550,11 +4550,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/statedb@^4.0.9, @jupyterlab/statedb@workspace:packages/statedb": +"@jupyterlab/statedb@^4.0.10, @jupyterlab/statedb@workspace:packages/statedb": version: 0.0.0-use.local resolution: "@jupyterlab/statedb@workspace:packages/statedb" dependencies: - "@jupyterlab/testing": ^4.0.9 + "@jupyterlab/testing": ^4.0.10 "@lumino/commands": ^2.1.3 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -4568,15 +4568,15 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/statusbar-extension@^4.0.9, @jupyterlab/statusbar-extension@workspace:packages/statusbar-extension, @jupyterlab/statusbar-extension@~4.0.9": +"@jupyterlab/statusbar-extension@^4.0.10, @jupyterlab/statusbar-extension@workspace:packages/statusbar-extension, @jupyterlab/statusbar-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/statusbar-extension@workspace:packages/statusbar-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/statusbar": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/statusbar": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 "@types/react": ^18.0.26 "@types/react-dom": ^18.0.9 rimraf: ~3.0.0 @@ -4585,12 +4585,12 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/statusbar@^4.0.9, @jupyterlab/statusbar@workspace:packages/statusbar": +"@jupyterlab/statusbar@^4.0.10, @jupyterlab/statusbar@workspace:packages/statusbar": version: 0.0.0-use.local resolution: "@jupyterlab/statusbar@workspace:packages/statusbar" dependencies: - "@jupyterlab/testing": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/testing": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -4609,27 +4609,27 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/template@workspace:buildutils/template" dependencies: - "@jupyterlab/testing": ^4.0.9 + "@jupyterlab/testing": ^4.0.10 "@types/jest": ^29.2.0 rimraf: ~3.0.0 typescript: ~5.0.4 languageName: unknown linkType: soft -"@jupyterlab/terminal-extension@^4.0.9, @jupyterlab/terminal-extension@workspace:packages/terminal-extension, @jupyterlab/terminal-extension@~4.0.9": +"@jupyterlab/terminal-extension@^4.0.10, @jupyterlab/terminal-extension@workspace:packages/terminal-extension, @jupyterlab/terminal-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/terminal-extension@workspace:packages/terminal-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/launcher": ^4.0.9 - "@jupyterlab/mainmenu": ^4.0.9 - "@jupyterlab/running": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/terminal": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/launcher": ^4.0.10 + "@jupyterlab/mainmenu": ^4.0.10 + "@jupyterlab/running": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/terminal": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/widgets": ^2.3.0 "@types/webpack-env": ^1.18.0 rimraf: ~3.0.0 @@ -4638,14 +4638,14 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/terminal@^4.0.9, @jupyterlab/terminal@workspace:packages/terminal": +"@jupyterlab/terminal@^4.0.10, @jupyterlab/terminal@workspace:packages/terminal": version: 0.0.0-use.local resolution: "@jupyterlab/terminal@workspace:packages/terminal" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/testing": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/testing": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/domutils": ^2.0.1 "@lumino/messaging": ^2.0.1 @@ -4664,13 +4664,13 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/testing@^4.0.9, @jupyterlab/testing@workspace:packages/testing": +"@jupyterlab/testing@^4.0.10, @jupyterlab/testing@workspace:packages/testing": version: 0.0.0-use.local resolution: "@jupyterlab/testing@workspace:packages/testing" dependencies: "@babel/core": ^7.10.2 "@babel/preset-env": ^7.10.2 - "@jupyterlab/coreutils": ^6.0.9 + "@jupyterlab/coreutils": ^6.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@types/jest": ^29.2.0 @@ -4693,73 +4693,73 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/testutils@^4.0.9, @jupyterlab/testutils@workspace:testutils": +"@jupyterlab/testutils@^4.0.10, @jupyterlab/testutils@workspace:testutils": version: 0.0.0-use.local resolution: "@jupyterlab/testutils@workspace:testutils" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/notebook": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/testing": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/notebook": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/testing": ^4.0.10 rimraf: ~3.0.0 typescript: ~5.0.4 languageName: unknown linkType: soft -"@jupyterlab/theme-dark-extension@^4.0.9, @jupyterlab/theme-dark-extension@workspace:packages/theme-dark-extension, @jupyterlab/theme-dark-extension@~4.0.9": +"@jupyterlab/theme-dark-extension@^4.0.10, @jupyterlab/theme-dark-extension@workspace:packages/theme-dark-extension, @jupyterlab/theme-dark-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/theme-dark-extension@workspace:packages/theme-dark-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/translation": ^4.0.10 rimraf: ~3.0.0 typedoc: ~0.24.7 typescript: ~5.0.4 languageName: unknown linkType: soft -"@jupyterlab/theme-light-extension@^4.0.9, @jupyterlab/theme-light-extension@workspace:packages/theme-light-extension, @jupyterlab/theme-light-extension@~4.0.9": +"@jupyterlab/theme-light-extension@^4.0.10, @jupyterlab/theme-light-extension@workspace:packages/theme-light-extension, @jupyterlab/theme-light-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/theme-light-extension@workspace:packages/theme-light-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/translation": ^4.0.10 rimraf: ~3.0.0 typedoc: ~0.24.7 typescript: ~5.0.4 languageName: unknown linkType: soft -"@jupyterlab/toc-extension@^6.0.9, @jupyterlab/toc-extension@workspace:packages/toc-extension, @jupyterlab/toc-extension@~6.0.9": +"@jupyterlab/toc-extension@^6.0.10, @jupyterlab/toc-extension@workspace:packages/toc-extension, @jupyterlab/toc-extension@~6.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/toc-extension@workspace:packages/toc-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/toc": ^6.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/toc": ^6.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 rimraf: ~3.0.0 typedoc: ~0.24.7 typescript: ~5.0.4 languageName: unknown linkType: soft -"@jupyterlab/toc@^6.0.9, @jupyterlab/toc@workspace:packages/toc": +"@jupyterlab/toc@^6.0.10, @jupyterlab/toc@workspace:packages/toc": version: 0.0.0-use.local resolution: "@jupyterlab/toc@workspace:packages/toc" dependencies: - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/docregistry": ^4.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/testing": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/docregistry": ^4.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/testing": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 @@ -4775,20 +4775,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/tooltip-extension@^4.0.9, @jupyterlab/tooltip-extension@workspace:packages/tooltip-extension, @jupyterlab/tooltip-extension@~4.0.9": +"@jupyterlab/tooltip-extension@^4.0.10, @jupyterlab/tooltip-extension@workspace:packages/tooltip-extension, @jupyterlab/tooltip-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/tooltip-extension@workspace:packages/tooltip-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/console": ^4.0.9 - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/fileeditor": ^4.0.9 - "@jupyterlab/notebook": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/tooltip": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/console": ^4.0.10 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/fileeditor": ^4.0.10 + "@jupyterlab/notebook": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/tooltip": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.0 @@ -4798,14 +4798,14 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/tooltip@^4.0.9, @jupyterlab/tooltip@workspace:packages/tooltip": +"@jupyterlab/tooltip@^4.0.10, @jupyterlab/tooltip@workspace:packages/tooltip": version: 0.0.0-use.local resolution: "@jupyterlab/tooltip@workspace:packages/tooltip" dependencies: - "@jupyterlab/codeeditor": ^4.0.9 - "@jupyterlab/rendermime": ^4.0.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/codeeditor": ^4.0.10 + "@jupyterlab/rendermime": ^4.0.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/ui-components": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.0 @@ -4815,29 +4815,29 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/translation-extension@^4.0.9, @jupyterlab/translation-extension@workspace:packages/translation-extension, @jupyterlab/translation-extension@~4.0.9": +"@jupyterlab/translation-extension@^4.0.10, @jupyterlab/translation-extension@workspace:packages/translation-extension, @jupyterlab/translation-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/translation-extension@workspace:packages/translation-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/apputils": ^4.1.9 - "@jupyterlab/mainmenu": ^4.0.9 - "@jupyterlab/settingregistry": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/apputils": ^4.1.10 + "@jupyterlab/mainmenu": ^4.0.10 + "@jupyterlab/settingregistry": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 rimraf: ~3.0.0 typescript: ~5.0.4 languageName: unknown linkType: soft -"@jupyterlab/translation@^4.0.9, @jupyterlab/translation@workspace:packages/translation": +"@jupyterlab/translation@^4.0.10, @jupyterlab/translation@workspace:packages/translation": version: 0.0.0-use.local resolution: "@jupyterlab/translation@workspace:packages/translation" dependencies: - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/rendermime-interfaces": ^3.8.9 - "@jupyterlab/services": ^7.0.9 - "@jupyterlab/statedb": ^4.0.9 - "@jupyterlab/testing": ^4.0.9 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/rendermime-interfaces": ^3.8.10 + "@jupyterlab/services": ^7.0.10 + "@jupyterlab/statedb": ^4.0.10 + "@jupyterlab/testing": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@types/jest": ^29.2.0 jest: ^29.2.0 @@ -4846,27 +4846,27 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/ui-components-extension@^4.0.9, @jupyterlab/ui-components-extension@workspace:packages/ui-components-extension, @jupyterlab/ui-components-extension@~4.0.9": +"@jupyterlab/ui-components-extension@^4.0.10, @jupyterlab/ui-components-extension@workspace:packages/ui-components-extension, @jupyterlab/ui-components-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/ui-components-extension@workspace:packages/ui-components-extension" dependencies: - "@jupyterlab/application": ^4.0.9 - "@jupyterlab/ui-components": ^4.0.9 + "@jupyterlab/application": ^4.0.10 + "@jupyterlab/ui-components": ^4.0.10 rimraf: ~3.0.0 typedoc: ~0.24.7 typescript: ~5.0.4 languageName: unknown linkType: soft -"@jupyterlab/ui-components@^4.0.9, @jupyterlab/ui-components@workspace:packages/ui-components": +"@jupyterlab/ui-components@^4.0.10, @jupyterlab/ui-components@workspace:packages/ui-components": version: 0.0.0-use.local resolution: "@jupyterlab/ui-components@workspace:packages/ui-components" dependencies: - "@jupyterlab/coreutils": ^6.0.9 - "@jupyterlab/observables": ^5.0.9 - "@jupyterlab/rendermime-interfaces": ^3.8.9 - "@jupyterlab/testing": ^4.0.9 - "@jupyterlab/translation": ^4.0.9 + "@jupyterlab/coreutils": ^6.0.10 + "@jupyterlab/observables": ^5.0.10 + "@jupyterlab/rendermime-interfaces": ^3.8.10 + "@jupyterlab/testing": ^4.0.10 + "@jupyterlab/translation": ^4.0.10 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.1.3 "@lumino/coreutils": ^2.1.2 @@ -4894,12 +4894,12 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/vega5-extension@^4.0.9, @jupyterlab/vega5-extension@workspace:packages/vega5-extension, @jupyterlab/vega5-extension@~4.0.9": +"@jupyterlab/vega5-extension@^4.0.10, @jupyterlab/vega5-extension@workspace:packages/vega5-extension, @jupyterlab/vega5-extension@~4.0.10": version: 0.0.0-use.local resolution: "@jupyterlab/vega5-extension@workspace:packages/vega5-extension" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.8.9 - "@jupyterlab/testutils": ^4.0.9 + "@jupyterlab/rendermime-interfaces": ^3.8.10 + "@jupyterlab/testutils": ^4.0.10 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.0 "@types/jest": ^29.2.0 @@ -14880,7 +14880,7 @@ __metadata: version: 0.0.0-use.local resolution: "node-example@workspace:packages/services/examples/node" dependencies: - "@jupyterlab/services": ^7.0.9 + "@jupyterlab/services": ^7.0.10 rimraf: ~3.0.0 ws: ^8.11.0 languageName: unknown