diff --git a/ui-tests/package.json b/ui-tests/package.json index 8c2b039b..2f004d6b 100644 --- a/ui-tests/package.json +++ b/ui-tests/package.json @@ -9,8 +9,8 @@ "test:update": "npx playwright test --update-snapshots" }, "devDependencies": { - "@jupyterlab/galata": "^5.0.5", - "@jupyterlab/services": "^7.0.5", + "@jupyterlab/galata": "^5.1.5", + "@jupyterlab/services": "^7.1.5", "@playwright/test": "^1.35.0" }, "resolutions": { diff --git a/ui-tests/tests/collaborationpanel.spec.ts-snapshots/collaborationPanelCollapsed-linux.png b/ui-tests/tests/collaborationpanel.spec.ts-snapshots/collaborationPanelCollapsed-linux.png index 6606ec80..511d77ee 100644 Binary files a/ui-tests/tests/collaborationpanel.spec.ts-snapshots/collaborationPanelCollapsed-linux.png and b/ui-tests/tests/collaborationpanel.spec.ts-snapshots/collaborationPanelCollapsed-linux.png differ diff --git a/ui-tests/tests/collaborationpanel.spec.ts-snapshots/three-client-with-document-linux.png b/ui-tests/tests/collaborationpanel.spec.ts-snapshots/three-client-with-document-linux.png index ccb9d51f..f04fce49 100644 Binary files a/ui-tests/tests/collaborationpanel.spec.ts-snapshots/three-client-with-document-linux.png and b/ui-tests/tests/collaborationpanel.spec.ts-snapshots/three-client-with-document-linux.png differ diff --git a/ui-tests/tests/collaborationpanel.spec.ts-snapshots/three-client-without-document-linux.png b/ui-tests/tests/collaborationpanel.spec.ts-snapshots/three-client-without-document-linux.png index f1ec0651..515b47a8 100644 Binary files a/ui-tests/tests/collaborationpanel.spec.ts-snapshots/three-client-without-document-linux.png and b/ui-tests/tests/collaborationpanel.spec.ts-snapshots/three-client-without-document-linux.png differ diff --git a/ui-tests/tests/notebook.spec.ts b/ui-tests/tests/notebook.spec.ts index b73fd3d9..ca65d4b2 100644 --- a/ui-tests/tests/notebook.spec.ts +++ b/ui-tests/tests/notebook.spec.ts @@ -109,7 +109,7 @@ test.describe('Initialization', () => { await guestPage.notebook.open(pathUntitled); const nbPanel = await page.notebook.getNotebookInPanel(); - expect(await nbPanel?.screenshot()).toMatchSnapshot( + expect.soft(await nbPanel?.screenshot()).toMatchSnapshot( 'initialization-create-notebook-host.png' ); @@ -131,9 +131,10 @@ test.describe('Initialization', () => { await guestPage.filebrowser.refresh(); await guestPage.notebook.open(exampleNotebook); + await guestPage.notebook.activate(exampleNotebook); const nbPanel = await page.notebook.getNotebookInPanel(); - expect(await nbPanel?.screenshot()).toMatchSnapshot( + expect.soft(await nbPanel?.screenshot()).toMatchSnapshot( 'initialization-open-notebook-host.png' ); diff --git a/ui-tests/tests/notebook.spec.ts-snapshots/initialization-create-notebook-guest-linux.png b/ui-tests/tests/notebook.spec.ts-snapshots/initialization-create-notebook-guest-linux.png index da46e86d..45b6c454 100644 Binary files a/ui-tests/tests/notebook.spec.ts-snapshots/initialization-create-notebook-guest-linux.png and b/ui-tests/tests/notebook.spec.ts-snapshots/initialization-create-notebook-guest-linux.png differ diff --git a/ui-tests/tests/notebook.spec.ts-snapshots/initialization-create-notebook-host-linux.png b/ui-tests/tests/notebook.spec.ts-snapshots/initialization-create-notebook-host-linux.png index da46e86d..45b6c454 100644 Binary files a/ui-tests/tests/notebook.spec.ts-snapshots/initialization-create-notebook-host-linux.png and b/ui-tests/tests/notebook.spec.ts-snapshots/initialization-create-notebook-host-linux.png differ diff --git a/ui-tests/tests/notebook.spec.ts-snapshots/initialization-open-notebook-guest-linux.png b/ui-tests/tests/notebook.spec.ts-snapshots/initialization-open-notebook-guest-linux.png index 07738f52..b5e25f01 100644 Binary files a/ui-tests/tests/notebook.spec.ts-snapshots/initialization-open-notebook-guest-linux.png and b/ui-tests/tests/notebook.spec.ts-snapshots/initialization-open-notebook-guest-linux.png differ diff --git a/ui-tests/tests/notebook.spec.ts-snapshots/initialization-open-notebook-host-linux.png b/ui-tests/tests/notebook.spec.ts-snapshots/initialization-open-notebook-host-linux.png index 07738f52..b5e25f01 100644 Binary files a/ui-tests/tests/notebook.spec.ts-snapshots/initialization-open-notebook-host-linux.png and b/ui-tests/tests/notebook.spec.ts-snapshots/initialization-open-notebook-host-linux.png differ diff --git a/ui-tests/tests/user-menu.spec.ts b/ui-tests/tests/user-menu.spec.ts index 19f9702b..bf9404c6 100644 --- a/ui-tests/tests/user-menu.spec.ts +++ b/ui-tests/tests/user-menu.spec.ts @@ -11,19 +11,21 @@ test.use( { }); const openDialog = async (page: IJupyterLabPageFixture): Promise => { - const sharedLinkButton = page.locator('button[data-command="collaboration:shared-link"]'); + const sharedLinkButton = page.locator('jp-button[data-command="collaboration:shared-link"]'); await sharedLinkButton.click(); await expect(page.locator('.jp-Dialog')).toBeVisible(); return page.locator('.jp-Dialog').first(); }; -test('the top bar should contain the user menu with 2 items', async ({ page }) => { - const topBarItems = page.locator('#jp-top-bar > :not(.jp-Toolbar-spacer)'); - await expect(topBarItems).toHaveCount(2); +test('the top bar should contain one user menu and one share button', async ({ page }) => { + const shareButton = page.locator('#jp-top-bar jp-button[data-command="collaboration:shared-link"]'); + await expect(shareButton).toHaveCount(1); + const userMenu = page.locator('#jp-top-bar .jp-MenuBar-anonymousIcon'); + await expect(userMenu).toHaveCount(1); }); test('should open dialog when clicking on the shared link button', async ({ page }) => { - const sharedLinkButton = page.locator('button[data-command="collaboration:shared-link"]'); + const sharedLinkButton = page.locator('jp-button[data-command="collaboration:shared-link"]'); expect(await sharedLinkButton.screenshot()).toMatchSnapshot( 'shared-link-icon.png' diff --git a/ui-tests/tests/user-menu.spec.ts-snapshots/shared-link-icon-linux.png b/ui-tests/tests/user-menu.spec.ts-snapshots/shared-link-icon-linux.png index 3a23ccf9..75e41bf5 100644 Binary files a/ui-tests/tests/user-menu.spec.ts-snapshots/shared-link-icon-linux.png and b/ui-tests/tests/user-menu.spec.ts-snapshots/shared-link-icon-linux.png differ diff --git a/ui-tests/yarn.lock b/ui-tests/yarn.lock index 5320144e..ae0d4941 100644 --- a/ui-tests/yarn.lock +++ b/ui-tests/yarn.lock @@ -193,21 +193,7 @@ __metadata: languageName: node linkType: hard -"@codemirror/language@npm:^6.0.0, @codemirror/language@npm:^6.3.0, @codemirror/language@npm:^6.4.0, @codemirror/language@npm:^6.6.0": - version: 6.6.0 - resolution: "@codemirror/language@npm:6.6.0" - dependencies: - "@codemirror/state": ^6.0.0 - "@codemirror/view": ^6.0.0 - "@lezer/common": ^1.0.0 - "@lezer/highlight": ^1.0.0 - "@lezer/lr": ^1.0.0 - style-mod: ^4.0.0 - checksum: bb9411620e2f231653a3f0c4429e0d19a3843bff5dbc117df4649d7bf783ec4ad809c0add8bc0887a4ec3f48b4f8f941621168e47d76101d5383f0d670af1722 - languageName: node - linkType: hard - -"@codemirror/language@npm:^6.8.0": +"@codemirror/language@npm:^6.0.0, @codemirror/language@npm:^6.3.0, @codemirror/language@npm:^6.4.0, @codemirror/language@npm:^6.6.0, @codemirror/language@npm:^6.8.0": version: 6.9.0 resolution: "@codemirror/language@npm:6.9.0" dependencies: @@ -284,9 +270,32 @@ __metadata: languageName: node linkType: hard -"@jupyter/ydoc@npm:^1.0.2": - version: 1.0.2 - resolution: "@jupyter/ydoc@npm:1.0.2" +"@jupyter/react-components@npm:^0.15.2": + version: 0.15.3 + resolution: "@jupyter/react-components@npm:0.15.3" + dependencies: + "@jupyter/web-components": ^0.15.3 + "@microsoft/fast-react-wrapper": ^0.3.22 + react: ">=17.0.0 <19.0.0" + checksum: 1a6b256314259c6465c4b6d958575710536b82234a7bf0fba3e889a07e1f19ff8ab321450be354359876f92c45dbcc9d21a840237ff4a619806d9de696f55496 + languageName: node + linkType: hard + +"@jupyter/web-components@npm:^0.15.2, @jupyter/web-components@npm:^0.15.3": + version: 0.15.3 + resolution: "@jupyter/web-components@npm:0.15.3" + dependencies: + "@microsoft/fast-colors": ^5.3.1 + "@microsoft/fast-element": ^1.12.0 + "@microsoft/fast-foundation": ^2.49.4 + "@microsoft/fast-web-utilities": ^5.4.1 + checksum: a0980af934157bfdbdb6cc169c0816c1b2e57602d524c56bdcef746a4c25dfeb8f505150d83207c8695ed89b5486cf53d35a3382584d25ef64db666e4e16e45b + languageName: node + linkType: hard + +"@jupyter/ydoc@npm:^1.1.1": + version: 1.1.1 + resolution: "@jupyter/ydoc@npm:1.1.1" dependencies: "@jupyterlab/nbformat": ^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0 "@lumino/coreutils": ^1.11.0 || ^2.0.0 @@ -294,143 +303,144 @@ __metadata: "@lumino/signaling": ^1.10.0 || ^2.0.0 y-protocols: ^1.0.5 yjs: ^13.5.40 - checksum: 739f9630940466b3cfcd7b742dd06479f81772ca13f863d057af0bbb5e318829506969066ab72977e7c721644982b5c8f88cf44e1ae81955ed1c27e87632d1f2 + checksum: a239b1dd57cfc9ba36c06ac5032a1b6388849ae01a1d0db0d45094f71fdadf4d473b4bf8becbef0cfcdc85cae505361fbec0822b02da5aa48e06b66f742dd7a0 languageName: node linkType: hard -"@jupyterlab/application@npm:^4.0.5": - version: 4.0.5 - resolution: "@jupyterlab/application@npm:4.0.5" +"@jupyterlab/application@npm:^4.1.5": + version: 4.1.5 + resolution: "@jupyterlab/application@npm:4.1.5" dependencies: "@fortawesome/fontawesome-free": ^5.12.0 - "@jupyterlab/apputils": ^4.1.5 - "@jupyterlab/coreutils": ^6.0.5 - "@jupyterlab/docregistry": ^4.0.5 - "@jupyterlab/rendermime": ^4.0.5 - "@jupyterlab/rendermime-interfaces": ^3.8.5 - "@jupyterlab/services": ^7.0.5 - "@jupyterlab/statedb": ^4.0.5 - "@jupyterlab/translation": ^4.0.5 - "@jupyterlab/ui-components": ^4.0.5 + "@jupyterlab/apputils": ^4.2.5 + "@jupyterlab/coreutils": ^6.1.5 + "@jupyterlab/docregistry": ^4.1.5 + "@jupyterlab/rendermime": ^4.1.5 + "@jupyterlab/rendermime-interfaces": ^3.9.5 + "@jupyterlab/services": ^7.1.5 + "@jupyterlab/statedb": ^4.1.5 + "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/ui-components": ^4.1.5 "@lumino/algorithm": ^2.0.1 - "@lumino/application": ^2.2.1 - "@lumino/commands": ^2.1.3 + "@lumino/application": ^2.3.0 + "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/polling": ^2.1.2 "@lumino/properties": ^2.0.1 "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.0 - checksum: 532f0090016d72fd7c2366a7d6de44033ccdc9b70f0a27a13141ce673d0ebad7804c73c0c55f18ccf3e0dec5c6f7d0190ef489753c220d649c2f42d6b0c8e61f + "@lumino/widgets": ^2.3.1 + checksum: 53feb2574cecc408aa4fec223dc9e2864f16593b3bdc6fb25904d350908883aef60e8a07ceb4da6224af6b9c810a8f311c6edc1b21ed7e2a9f83567e49f8a029 languageName: node linkType: hard -"@jupyterlab/apputils@npm:^4.1.5": - version: 4.1.5 - resolution: "@jupyterlab/apputils@npm:4.1.5" - dependencies: - "@jupyterlab/coreutils": ^6.0.5 - "@jupyterlab/observables": ^5.0.5 - "@jupyterlab/rendermime-interfaces": ^3.8.5 - "@jupyterlab/services": ^7.0.5 - "@jupyterlab/settingregistry": ^4.0.5 - "@jupyterlab/statedb": ^4.0.5 - "@jupyterlab/statusbar": ^4.0.5 - "@jupyterlab/translation": ^4.0.5 - "@jupyterlab/ui-components": ^4.0.5 +"@jupyterlab/apputils@npm:^4.2.5": + version: 4.2.5 + resolution: "@jupyterlab/apputils@npm:4.2.5" + dependencies: + "@jupyterlab/coreutils": ^6.1.5 + "@jupyterlab/observables": ^5.1.5 + "@jupyterlab/rendermime-interfaces": ^3.9.5 + "@jupyterlab/services": ^7.1.5 + "@jupyterlab/settingregistry": ^4.1.5 + "@jupyterlab/statedb": ^4.1.5 + "@jupyterlab/statusbar": ^4.1.5 + "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/ui-components": ^4.1.5 "@lumino/algorithm": ^2.0.1 - "@lumino/commands": ^2.1.3 + "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/domutils": ^2.0.1 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/virtualdom": ^2.0.1 - "@lumino/widgets": ^2.3.0 + "@lumino/widgets": ^2.3.1 "@types/react": ^18.0.26 react: ^18.2.0 sanitize-html: ~2.7.3 - checksum: b569303e8b38173de8612a3c04bac349f25c151bbb83b4f594311d679896aed37ba1467e9ff123e605c0d5400c89cf0d66fce697440ea07fff9dd4a408148e2f + checksum: e5652a14d1d7972bcff84cec13fc2849a6520f6e7cb82275eff37869afdb7aa856af88dad5621dfb967ea99733539488164d3b5f54885248a87adf4c86c2ce65 languageName: node linkType: hard -"@jupyterlab/attachments@npm:^4.0.5": - version: 4.0.5 - resolution: "@jupyterlab/attachments@npm:4.0.5" +"@jupyterlab/attachments@npm:^4.1.5": + version: 4.1.5 + resolution: "@jupyterlab/attachments@npm:4.1.5" dependencies: - "@jupyterlab/nbformat": ^4.0.5 - "@jupyterlab/observables": ^5.0.5 - "@jupyterlab/rendermime": ^4.0.5 - "@jupyterlab/rendermime-interfaces": ^3.8.5 + "@jupyterlab/nbformat": ^4.1.5 + "@jupyterlab/observables": ^5.1.5 + "@jupyterlab/rendermime": ^4.1.5 + "@jupyterlab/rendermime-interfaces": ^3.9.5 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 - checksum: bb0a5dc7e830fc42824743cc817cf59a43c43b6f3979b3d6214619baf69f77bb70606241b39a92da21788348eb1144a0914e3683f0b2b8d01a530e8aeaf6f01e + checksum: 82a7c475a0eb4b7622d2d1290e4eb3aef9f9f4d104625def1ae4404628bcdcd543355cbe70a2f7675bca6a08e2a02d7ceedec376dcd3d7115ccfcd3497562690 languageName: node linkType: hard -"@jupyterlab/cells@npm:^4.0.5": - version: 4.0.5 - resolution: "@jupyterlab/cells@npm:4.0.5" +"@jupyterlab/cells@npm:^4.1.5": + version: 4.1.5 + resolution: "@jupyterlab/cells@npm:4.1.5" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 - "@jupyter/ydoc": ^1.0.2 - "@jupyterlab/apputils": ^4.1.5 - "@jupyterlab/attachments": ^4.0.5 - "@jupyterlab/codeeditor": ^4.0.5 - "@jupyterlab/codemirror": ^4.0.5 - "@jupyterlab/coreutils": ^6.0.5 - "@jupyterlab/documentsearch": ^4.0.5 - "@jupyterlab/filebrowser": ^4.0.5 - "@jupyterlab/nbformat": ^4.0.5 - "@jupyterlab/observables": ^5.0.5 - "@jupyterlab/outputarea": ^4.0.5 - "@jupyterlab/rendermime": ^4.0.5 - "@jupyterlab/services": ^7.0.5 - "@jupyterlab/toc": ^6.0.5 - "@jupyterlab/translation": ^4.0.5 - "@jupyterlab/ui-components": ^4.0.5 + "@jupyter/ydoc": ^1.1.1 + "@jupyterlab/apputils": ^4.2.5 + "@jupyterlab/attachments": ^4.1.5 + "@jupyterlab/codeeditor": ^4.1.5 + "@jupyterlab/codemirror": ^4.1.5 + "@jupyterlab/coreutils": ^6.1.5 + "@jupyterlab/documentsearch": ^4.1.5 + "@jupyterlab/filebrowser": ^4.1.5 + "@jupyterlab/nbformat": ^4.1.5 + "@jupyterlab/observables": ^5.1.5 + "@jupyterlab/outputarea": ^4.1.5 + "@jupyterlab/rendermime": ^4.1.5 + "@jupyterlab/services": ^7.1.5 + "@jupyterlab/toc": ^6.1.5 + "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/ui-components": ^4.1.5 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/domutils": ^2.0.1 - "@lumino/dragdrop": ^2.1.3 + "@lumino/dragdrop": ^2.1.4 "@lumino/messaging": ^2.0.1 "@lumino/polling": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/virtualdom": ^2.0.1 - "@lumino/widgets": ^2.3.0 + "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: d674a15ddf870bea876d8b40ec598bbe9ba6d59b653223b381beec7e4e1e18c1b2c623585a9edc24e186dc666d73c63c55cee76ec83f975183f17bb5a56a8573 + checksum: 49a9eec0323f4fcc96016303185dae72571a9b846c3ec0fc188e99b66ce7be6cd82efdd8056d041f9a4e55a1156b22004143a4c175b339fe83621e592e11c923 languageName: node linkType: hard -"@jupyterlab/codeeditor@npm:^4.0.5": - version: 4.0.5 - resolution: "@jupyterlab/codeeditor@npm:4.0.5" +"@jupyterlab/codeeditor@npm:^4.1.5": + version: 4.1.5 + resolution: "@jupyterlab/codeeditor@npm:4.1.5" dependencies: "@codemirror/state": ^6.2.0 - "@jupyter/ydoc": ^1.0.2 - "@jupyterlab/coreutils": ^6.0.5 - "@jupyterlab/nbformat": ^4.0.5 - "@jupyterlab/observables": ^5.0.5 - "@jupyterlab/statusbar": ^4.0.5 - "@jupyterlab/translation": ^4.0.5 - "@jupyterlab/ui-components": ^4.0.5 + "@jupyter/ydoc": ^1.1.1 + "@jupyterlab/apputils": ^4.2.5 + "@jupyterlab/coreutils": ^6.1.5 + "@jupyterlab/nbformat": ^4.1.5 + "@jupyterlab/observables": ^5.1.5 + "@jupyterlab/statusbar": ^4.1.5 + "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/ui-components": ^4.1.5 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 - "@lumino/dragdrop": ^2.1.3 + "@lumino/dragdrop": ^2.1.4 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.0 + "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 4bd539cd22ccf84b982b427ad921b33f0e4dd0c02980827b59bf748b30c6e85180e03357f92c2a2b54c3e086965d2458b6a5f2043160ede85f530a14300b3f00 + checksum: f9f52122fa90058f716023489a66e2c7c2830580484a4f5474570da302452c4fa8680e55c18988cfe7e19f204839628bfada358d46027d9971ba91f56b79be78 languageName: node linkType: hard -"@jupyterlab/codemirror@npm:^4.0.5": - version: 4.0.5 - resolution: "@jupyterlab/codemirror@npm:4.0.5" +"@jupyterlab/codemirror@npm:^4.1.5": + version: 4.1.5 + resolution: "@jupyterlab/codemirror@npm:4.1.5" dependencies: "@codemirror/autocomplete": ^6.5.1 "@codemirror/commands": ^6.2.3 @@ -452,12 +462,12 @@ __metadata: "@codemirror/search": ^6.3.0 "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 - "@jupyter/ydoc": ^1.0.2 - "@jupyterlab/codeeditor": ^4.0.5 - "@jupyterlab/coreutils": ^6.0.5 - "@jupyterlab/documentsearch": ^4.0.5 - "@jupyterlab/nbformat": ^4.0.5 - "@jupyterlab/translation": ^4.0.5 + "@jupyter/ydoc": ^1.1.1 + "@jupyterlab/codeeditor": ^4.1.5 + "@jupyterlab/coreutils": ^6.1.5 + "@jupyterlab/documentsearch": ^4.1.5 + "@jupyterlab/nbformat": ^4.1.5 + "@jupyterlab/translation": ^4.1.5 "@lezer/common": ^1.0.2 "@lezer/generator": ^1.2.2 "@lezer/highlight": ^1.1.4 @@ -466,40 +476,40 @@ __metadata: "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 yjs: ^13.5.40 - checksum: 840d9abd7c34ce7fb09446eff235e056e2d04da290f83380c020a9c3e2a1a27c0d3fc7ffcbd54a1f6de6325a57cc18d350d30c61a0f27d9810d8d2ec32aa5cf2 + checksum: 8f6f30fbaebb2a88d50c5af5732058e2e605077871c079524d6466949973660a862cf75a205100019bd02d9888a9d7d85460269bfe646257dd50e4c61c4d0af3 languageName: node linkType: hard -"@jupyterlab/console@npm:^4.0.5": - version: 4.0.5 - resolution: "@jupyterlab/console@npm:4.0.5" +"@jupyterlab/console@npm:^4.1.5": + version: 4.1.5 + resolution: "@jupyterlab/console@npm:4.1.5" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 - "@jupyter/ydoc": ^1.0.2 - "@jupyterlab/apputils": ^4.1.5 - "@jupyterlab/cells": ^4.0.5 - "@jupyterlab/codeeditor": ^4.0.5 - "@jupyterlab/coreutils": ^6.0.5 - "@jupyterlab/nbformat": ^4.0.5 - "@jupyterlab/observables": ^5.0.5 - "@jupyterlab/rendermime": ^4.0.5 - "@jupyterlab/services": ^7.0.5 - "@jupyterlab/translation": ^4.0.5 - "@jupyterlab/ui-components": ^4.0.5 + "@jupyter/ydoc": ^1.1.1 + "@jupyterlab/apputils": ^4.2.5 + "@jupyterlab/cells": ^4.1.5 + "@jupyterlab/codeeditor": ^4.1.5 + "@jupyterlab/coreutils": ^6.1.5 + "@jupyterlab/nbformat": ^4.1.5 + "@jupyterlab/observables": ^5.1.5 + "@jupyterlab/rendermime": ^4.1.5 + "@jupyterlab/services": ^7.1.5 + "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/ui-components": ^4.1.5 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 - "@lumino/dragdrop": ^2.1.3 + "@lumino/dragdrop": ^2.1.4 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.0 - checksum: 22837f4dc7445370c3b2e971a58403f6b71843e103d65766e9aaa63757d34c0ba04399fa826fcd13a5530dbcbe31227cd6c6766900ef88a56cbea4a84ade0da7 + "@lumino/widgets": ^2.3.1 + checksum: 01e90b8527583c5ed0ad4b17db3d8062b96cac8517319d6a8a4fecec31e612264c06f5434adf3313b6a16eec190c456116c2095fcb9e4234f30d8d042ee7d734 languageName: node linkType: hard -"@jupyterlab/coreutils@npm:^6.0.5": - version: 6.0.5 - resolution: "@jupyterlab/coreutils@npm:6.0.5" +"@jupyterlab/coreutils@npm:^6.1.5": + version: 6.1.5 + resolution: "@jupyterlab/coreutils@npm:6.1.5" dependencies: "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -507,179 +517,182 @@ __metadata: minimist: ~1.2.0 path-browserify: ^1.0.0 url-parse: ~1.5.4 - checksum: c09be7c8f389bb7f019fb868acfc528a0bc553a7b091412b7e0bfb1d0f2c71223ada8d6972d42df25fb6f70be21ecac00703e12d1df62a44dc2a512baac54dac + checksum: b91c5a374f3c97d62e2442bb5f12cb79c6e440b5f6aa4d4ed6e492e8ca38836f7068106bb7029834a4e5de1947a9c44c342d23bedf9a4611aafca33629aed049 languageName: node linkType: hard -"@jupyterlab/debugger@npm:^4.0.5": - version: 4.0.5 - resolution: "@jupyterlab/debugger@npm:4.0.5" +"@jupyterlab/debugger@npm:^4.1.5": + version: 4.1.5 + resolution: "@jupyterlab/debugger@npm:4.1.5" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 - "@jupyter/ydoc": ^1.0.2 - "@jupyterlab/application": ^4.0.5 - "@jupyterlab/apputils": ^4.1.5 - "@jupyterlab/cells": ^4.0.5 - "@jupyterlab/codeeditor": ^4.0.5 - "@jupyterlab/codemirror": ^4.0.5 - "@jupyterlab/console": ^4.0.5 - "@jupyterlab/coreutils": ^6.0.5 - "@jupyterlab/docregistry": ^4.0.5 - "@jupyterlab/fileeditor": ^4.0.5 - "@jupyterlab/notebook": ^4.0.5 - "@jupyterlab/observables": ^5.0.5 - "@jupyterlab/rendermime": ^4.0.5 - "@jupyterlab/services": ^7.0.5 - "@jupyterlab/translation": ^4.0.5 - "@jupyterlab/ui-components": ^4.0.5 + "@jupyter/ydoc": ^1.1.1 + "@jupyterlab/application": ^4.1.5 + "@jupyterlab/apputils": ^4.2.5 + "@jupyterlab/cells": ^4.1.5 + "@jupyterlab/codeeditor": ^4.1.5 + "@jupyterlab/codemirror": ^4.1.5 + "@jupyterlab/console": ^4.1.5 + "@jupyterlab/coreutils": ^6.1.5 + "@jupyterlab/docregistry": ^4.1.5 + "@jupyterlab/fileeditor": ^4.1.5 + "@jupyterlab/notebook": ^4.1.5 + "@jupyterlab/observables": ^5.1.5 + "@jupyterlab/rendermime": ^4.1.5 + "@jupyterlab/services": ^7.1.5 + "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/ui-components": ^4.1.5 "@lumino/algorithm": ^2.0.1 - "@lumino/commands": ^2.1.3 + "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 - "@lumino/datagrid": ^2.2.0 + "@lumino/datagrid": ^2.3.0 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/polling": ^2.1.2 "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.0 + "@lumino/widgets": ^2.3.1 "@vscode/debugprotocol": ^1.51.0 react: ^18.2.0 - checksum: edeab0e4efa20ffcd0572efa863c988c6d4f413b22fabb139dc560fb8b31c833fc774974898af94f81d62a25c41df23b25434247ac0b180276211f322228bce4 + checksum: 729fafacac228d2034a42fd216b50502ef34db828f5324731206e3558d8eed91a33ba4422da45a86d239e970a878686a188c8ae443e22cf47ed136a827f4d083 languageName: node linkType: hard -"@jupyterlab/docmanager@npm:^4.0.5": - version: 4.0.5 - resolution: "@jupyterlab/docmanager@npm:4.0.5" - dependencies: - "@jupyterlab/apputils": ^4.1.5 - "@jupyterlab/coreutils": ^6.0.5 - "@jupyterlab/docregistry": ^4.0.5 - "@jupyterlab/services": ^7.0.5 - "@jupyterlab/statusbar": ^4.0.5 - "@jupyterlab/translation": ^4.0.5 - "@jupyterlab/ui-components": ^4.0.5 +"@jupyterlab/docmanager@npm:^4.1.5": + version: 4.1.5 + resolution: "@jupyterlab/docmanager@npm:4.1.5" + dependencies: + "@jupyterlab/apputils": ^4.2.5 + "@jupyterlab/coreutils": ^6.1.5 + "@jupyterlab/docregistry": ^4.1.5 + "@jupyterlab/services": ^7.1.5 + "@jupyterlab/statusbar": ^4.1.5 + "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/ui-components": ^4.1.5 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/properties": ^2.0.1 "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.0 + "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 16627833d9d540e9569bd27e3464c6c9a5cf9f628265b5018a4f63e05f351c4891494b8c731f83bb279da3bb42d0da23cb1d1b536c0b1b4422e4f6f250377ca5 + checksum: d56e8ab83f523c5c90593147cd5bf12a704348bcdec243f8ecaa375f91f6f4c7646a76e9c10920f4f7d1cd19f09f79adc5eb0fbc5d1ac817b6031d3ad6ce600b languageName: node linkType: hard -"@jupyterlab/docregistry@npm:^4.0.5": - version: 4.0.5 - resolution: "@jupyterlab/docregistry@npm:4.0.5" - dependencies: - "@jupyter/ydoc": ^1.0.2 - "@jupyterlab/apputils": ^4.1.5 - "@jupyterlab/codeeditor": ^4.0.5 - "@jupyterlab/coreutils": ^6.0.5 - "@jupyterlab/observables": ^5.0.5 - "@jupyterlab/rendermime": ^4.0.5 - "@jupyterlab/rendermime-interfaces": ^3.8.5 - "@jupyterlab/services": ^7.0.5 - "@jupyterlab/translation": ^4.0.5 - "@jupyterlab/ui-components": ^4.0.5 +"@jupyterlab/docregistry@npm:^4.1.5": + version: 4.1.5 + resolution: "@jupyterlab/docregistry@npm:4.1.5" + dependencies: + "@jupyter/ydoc": ^1.1.1 + "@jupyterlab/apputils": ^4.2.5 + "@jupyterlab/codeeditor": ^4.1.5 + "@jupyterlab/coreutils": ^6.1.5 + "@jupyterlab/observables": ^5.1.5 + "@jupyterlab/rendermime": ^4.1.5 + "@jupyterlab/rendermime-interfaces": ^3.9.5 + "@jupyterlab/services": ^7.1.5 + "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/ui-components": ^4.1.5 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/properties": ^2.0.1 "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.0 - checksum: 455286f8fbeb00f7afcc52c43830d6ab6941020338df23564591a0a59e1b2551f918a55382540983a1bf0b1bf4bdfc008b88f5acbff4a2e3c5dca6ac1dd84a6d + "@lumino/widgets": ^2.3.1 + react: ^18.2.0 + checksum: 9b017d775c31dfb4ac60908afd9d24210e9434bf6d090fb3d55fcdc0ec9c16b23b6a009fe54a376f89363882f7c25f5e5eadf3b096fa72ce1a148b14773675e4 languageName: node linkType: hard -"@jupyterlab/documentsearch@npm:^4.0.5": - version: 4.0.5 - resolution: "@jupyterlab/documentsearch@npm:4.0.5" +"@jupyterlab/documentsearch@npm:^4.1.5": + version: 4.1.5 + resolution: "@jupyterlab/documentsearch@npm:4.1.5" dependencies: - "@jupyterlab/apputils": ^4.1.5 - "@jupyterlab/translation": ^4.0.5 - "@jupyterlab/ui-components": ^4.0.5 + "@jupyterlab/apputils": ^4.2.5 + "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/ui-components": ^4.1.5 + "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/polling": ^2.1.2 "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.0 + "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: d7fe83a57562e9f90555c8b938f77edff21f7204b52a7cdd4a0cd21f5382fd5a7906e5d7c2ec661802b5d9bada42f80fcaa5d129931aeac949e8655d290d9adf + checksum: 496748a03177574a79305a42e29e996bf3633523cf9a6624ac117c97df2f5d4697cd45bf421033068539f94f568811307d0deccf2d1e24885d8f7d205b13a481 languageName: node linkType: hard -"@jupyterlab/filebrowser@npm:^4.0.5": - version: 4.0.5 - resolution: "@jupyterlab/filebrowser@npm:4.0.5" - dependencies: - "@jupyterlab/apputils": ^4.1.5 - "@jupyterlab/coreutils": ^6.0.5 - "@jupyterlab/docmanager": ^4.0.5 - "@jupyterlab/docregistry": ^4.0.5 - "@jupyterlab/services": ^7.0.5 - "@jupyterlab/statedb": ^4.0.5 - "@jupyterlab/statusbar": ^4.0.5 - "@jupyterlab/translation": ^4.0.5 - "@jupyterlab/ui-components": ^4.0.5 +"@jupyterlab/filebrowser@npm:^4.1.5": + version: 4.1.5 + resolution: "@jupyterlab/filebrowser@npm:4.1.5" + dependencies: + "@jupyterlab/apputils": ^4.2.5 + "@jupyterlab/coreutils": ^6.1.5 + "@jupyterlab/docmanager": ^4.1.5 + "@jupyterlab/docregistry": ^4.1.5 + "@jupyterlab/services": ^7.1.5 + "@jupyterlab/statedb": ^4.1.5 + "@jupyterlab/statusbar": ^4.1.5 + "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/ui-components": ^4.1.5 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/domutils": ^2.0.1 - "@lumino/dragdrop": ^2.1.3 + "@lumino/dragdrop": ^2.1.4 "@lumino/messaging": ^2.0.1 "@lumino/polling": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/virtualdom": ^2.0.1 - "@lumino/widgets": ^2.3.0 + "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: f47d55cc8ff246efe65fdbf1f0fc09e227eca9bafcf0f1e45e1973612ad13e0853f1393882decddc2f1df015f11097b6d751bdbcdc255ed438adc96598b376a8 - languageName: node - linkType: hard - -"@jupyterlab/fileeditor@npm:^4.0.5": - version: 4.0.5 - resolution: "@jupyterlab/fileeditor@npm:4.0.5" - dependencies: - "@jupyterlab/apputils": ^4.1.5 - "@jupyterlab/codeeditor": ^4.0.5 - "@jupyterlab/codemirror": ^4.0.5 - "@jupyterlab/coreutils": ^6.0.5 - "@jupyterlab/docregistry": ^4.0.5 - "@jupyterlab/documentsearch": ^4.0.5 - "@jupyterlab/lsp": ^4.0.5 - "@jupyterlab/statusbar": ^4.0.5 - "@jupyterlab/toc": ^6.0.5 - "@jupyterlab/translation": ^4.0.5 - "@jupyterlab/ui-components": ^4.0.5 - "@lumino/commands": ^2.1.3 + checksum: 6ec08114012ab6ec8c3263fcff932c6949445c4d01f1f8aeefb9e6c496628025ca84683ae212aa03c5342b43e5df9082c812c6bf2b05fc0e2dc7aefeedf47cd2 + languageName: node + linkType: hard + +"@jupyterlab/fileeditor@npm:^4.1.5": + version: 4.1.5 + resolution: "@jupyterlab/fileeditor@npm:4.1.5" + dependencies: + "@jupyter/ydoc": ^1.1.1 + "@jupyterlab/apputils": ^4.2.5 + "@jupyterlab/codeeditor": ^4.1.5 + "@jupyterlab/codemirror": ^4.1.5 + "@jupyterlab/coreutils": ^6.1.5 + "@jupyterlab/docregistry": ^4.1.5 + "@jupyterlab/documentsearch": ^4.1.5 + "@jupyterlab/lsp": ^4.1.5 + "@jupyterlab/statusbar": ^4.1.5 + "@jupyterlab/toc": ^6.1.5 + "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/ui-components": ^4.1.5 + "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 - "@lumino/widgets": ^2.3.0 + "@lumino/widgets": ^2.3.1 react: ^18.2.0 regexp-match-indices: ^1.0.2 - checksum: 7598dec866704fb664223b805a3fa7db4eb6506f10b4c59a831404d1462e2d993955b259095ea7d35258bb1be9147860d261f11e48c493331bb77746807565ac + checksum: 88fe63f91ed7266afa0447f4d919b57cd8bae944d8661bc570562b570a8196cc23c5f92777058515cfeb0c12c5fb98b6906b5d8c91190dd8c961b921f268d1af languageName: node linkType: hard -"@jupyterlab/galata@npm:^5.0.5": - version: 5.0.5 - resolution: "@jupyterlab/galata@npm:5.0.5" +"@jupyterlab/galata@npm:^5.1.5": + version: 5.1.5 + resolution: "@jupyterlab/galata@npm:5.1.5" dependencies: - "@jupyterlab/application": ^4.0.5 - "@jupyterlab/apputils": ^4.1.5 - "@jupyterlab/coreutils": ^6.0.5 - "@jupyterlab/debugger": ^4.0.5 - "@jupyterlab/docmanager": ^4.0.5 - "@jupyterlab/nbformat": ^4.0.5 - "@jupyterlab/notebook": ^4.0.5 - "@jupyterlab/services": ^7.0.5 - "@jupyterlab/settingregistry": ^4.0.5 + "@jupyterlab/application": ^4.1.5 + "@jupyterlab/apputils": ^4.2.5 + "@jupyterlab/coreutils": ^6.1.5 + "@jupyterlab/debugger": ^4.1.5 + "@jupyterlab/docmanager": ^4.1.5 + "@jupyterlab/nbformat": ^4.1.5 + "@jupyterlab/notebook": ^4.1.5 + "@jupyterlab/services": ^7.1.5 + "@jupyterlab/settingregistry": ^4.1.5 "@lumino/coreutils": ^2.1.2 "@playwright/test": ^1.32.2 "@stdlib/stats": ~0.0.13 @@ -690,261 +703,258 @@ __metadata: vega: ^5.20.0 vega-lite: ^5.6.1 vega-statistics: ^1.7.9 - checksum: 1e3562d2e81be6e4dac9451be0f97c519ffec7869bebaa6b2ed164686c13cac28bfaca3ba3191964eb7a0f25029be86d5310e038247cc2a39ab186505e728901 + checksum: d79637e7c53b1f9492e173ca1f033d4983c455a68ab693d43902161cee63d87f1cc9ad3bffd296999aa79f7b72f5d405f9ad91443a06785835c8a6a682772ae6 languageName: node linkType: hard -"@jupyterlab/lsp@npm:^4.0.5": - version: 4.0.5 - resolution: "@jupyterlab/lsp@npm:4.0.5" - dependencies: - "@jupyterlab/apputils": ^4.1.5 - "@jupyterlab/codeeditor": ^4.0.5 - "@jupyterlab/coreutils": ^6.0.5 - "@jupyterlab/docregistry": ^4.0.5 - "@jupyterlab/services": ^7.0.5 - "@jupyterlab/translation": ^4.0.5 +"@jupyterlab/lsp@npm:^4.1.5": + version: 4.1.5 + resolution: "@jupyterlab/lsp@npm:4.1.5" + dependencies: + "@jupyterlab/apputils": ^4.2.5 + "@jupyterlab/codeeditor": ^4.1.5 + "@jupyterlab/codemirror": ^4.1.5 + "@jupyterlab/coreutils": ^6.1.5 + "@jupyterlab/docregistry": ^4.1.5 + "@jupyterlab/services": ^7.1.5 + "@jupyterlab/translation": ^4.1.5 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 + "@lumino/widgets": ^2.3.1 lodash.mergewith: ^4.6.1 vscode-jsonrpc: ^6.0.0 vscode-languageserver-protocol: ^3.17.0 vscode-ws-jsonrpc: ~1.0.2 - checksum: b59d21c9df84963c354422134e525acabab7f7fe2930e4bb5b5b81edd3e8397772ce5c395bc1faa7c79cddb6bfefc9e1c41edfd939241681da483ae3238be00d + checksum: 2f8a63214684c5dde76eed7c7b22dbf3a4b33babdf081d3f321b00caae83045b97d4df216a903ecc0ed22950e8c213b11885f7efc94d1ce0ac30a5ca5b9362f6 languageName: node linkType: hard -"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0": - version: 4.0.0-beta.2 - resolution: "@jupyterlab/nbformat@npm:4.0.0-beta.2" +"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.1.5": + version: 4.1.5 + resolution: "@jupyterlab/nbformat@npm:4.1.5" dependencies: - "@lumino/coreutils": ^2.1.0 - checksum: 1b492514bb6270603d5e8f2d7f7a49c56e1fa4ff7b75d5380896d992647a2e4d26a2453f69bbc52d24e3ec92a7603eddc3bf0346eb8612bbc27ae2c004057c5c + "@lumino/coreutils": ^2.1.2 + checksum: d417d7eade40d389fea8593358b6455158cf3e67fa40c0c4c05c865852520acc466102109723c9cb16eecf95952617d79f7fe6be9da6ca3f601749bdecdfda97 languageName: node linkType: hard -"@jupyterlab/nbformat@npm:^4.0.5": - version: 4.0.5 - resolution: "@jupyterlab/nbformat@npm:4.0.5" - dependencies: - "@lumino/coreutils": ^2.1.2 - checksum: 51611e95e6b16dc3e952b731e0ef036d1e0f7eec497555e3bf8394f181da4184dc37c6b25a1b11b5ea031f22fd4b9602fb6a2e675d65fddc2ccb099236cf3e01 - languageName: node - linkType: hard - -"@jupyterlab/notebook@npm:^4.0.5": - version: 4.0.5 - resolution: "@jupyterlab/notebook@npm:4.0.5" - dependencies: - "@jupyter/ydoc": ^1.0.2 - "@jupyterlab/apputils": ^4.1.5 - "@jupyterlab/cells": ^4.0.5 - "@jupyterlab/codeeditor": ^4.0.5 - "@jupyterlab/codemirror": ^4.0.5 - "@jupyterlab/coreutils": ^6.0.5 - "@jupyterlab/docregistry": ^4.0.5 - "@jupyterlab/documentsearch": ^4.0.5 - "@jupyterlab/lsp": ^4.0.5 - "@jupyterlab/nbformat": ^4.0.5 - "@jupyterlab/observables": ^5.0.5 - "@jupyterlab/rendermime": ^4.0.5 - "@jupyterlab/services": ^7.0.5 - "@jupyterlab/settingregistry": ^4.0.5 - "@jupyterlab/statusbar": ^4.0.5 - "@jupyterlab/toc": ^6.0.5 - "@jupyterlab/translation": ^4.0.5 - "@jupyterlab/ui-components": ^4.0.5 +"@jupyterlab/notebook@npm:^4.1.5": + version: 4.1.5 + resolution: "@jupyterlab/notebook@npm:4.1.5" + dependencies: + "@jupyter/ydoc": ^1.1.1 + "@jupyterlab/apputils": ^4.2.5 + "@jupyterlab/cells": ^4.1.5 + "@jupyterlab/codeeditor": ^4.1.5 + "@jupyterlab/codemirror": ^4.1.5 + "@jupyterlab/coreutils": ^6.1.5 + "@jupyterlab/docregistry": ^4.1.5 + "@jupyterlab/documentsearch": ^4.1.5 + "@jupyterlab/lsp": ^4.1.5 + "@jupyterlab/nbformat": ^4.1.5 + "@jupyterlab/observables": ^5.1.5 + "@jupyterlab/rendermime": ^4.1.5 + "@jupyterlab/services": ^7.1.5 + "@jupyterlab/settingregistry": ^4.1.5 + "@jupyterlab/statusbar": ^4.1.5 + "@jupyterlab/toc": ^6.1.5 + "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/ui-components": ^4.1.5 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 + "@lumino/disposable": ^2.1.2 "@lumino/domutils": ^2.0.1 - "@lumino/dragdrop": ^2.1.3 + "@lumino/dragdrop": ^2.1.4 "@lumino/messaging": ^2.0.1 "@lumino/properties": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/virtualdom": ^2.0.1 - "@lumino/widgets": ^2.3.0 + "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: c6979a1b3cc1a6e4eb82176d97bc2109f8f3bcf6b281853a6fb8d350e66fa443dcd34981d46b0aebb03356e6533956dd4ad233e6dee9198acbd62b9c6f027bcd + checksum: 63ae9f1ec558b48cd81f4155d52a5c0ae9cf4bc76fe21273762e45077a7e5768b071b20aeee616cfdfee767f26667b2b896304c90ced3db96605e6e655a00903 languageName: node linkType: hard -"@jupyterlab/observables@npm:^5.0.5": - version: 5.0.5 - resolution: "@jupyterlab/observables@npm:5.0.5" +"@jupyterlab/observables@npm:^5.1.5": + version: 5.1.5 + resolution: "@jupyterlab/observables@npm:5.1.5" 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: e94d5a187a356f19db176d16a93e2b380c245a8bcf54eb283b405fc9a39cc937b790a0684defadd0eb103359838751d0184c23c5816c5fc36b86c90e2cbb96b9 + checksum: 6d45de8a137c79566818ff56460366419b2603a06ab5d9cef4f0b311df3fd69c755b357ab3bd9c26ed56dec5a2247ef0cfc15cfa6e2e180aa46af7f96c6ab10c languageName: node linkType: hard -"@jupyterlab/outputarea@npm:^4.0.5": - version: 4.0.5 - resolution: "@jupyterlab/outputarea@npm:4.0.5" - dependencies: - "@jupyterlab/apputils": ^4.1.5 - "@jupyterlab/nbformat": ^4.0.5 - "@jupyterlab/observables": ^5.0.5 - "@jupyterlab/rendermime": ^4.0.5 - "@jupyterlab/rendermime-interfaces": ^3.8.5 - "@jupyterlab/services": ^7.0.5 - "@jupyterlab/translation": ^4.0.5 +"@jupyterlab/outputarea@npm:^4.1.5": + version: 4.1.5 + resolution: "@jupyterlab/outputarea@npm:4.1.5" + dependencies: + "@jupyterlab/apputils": ^4.2.5 + "@jupyterlab/nbformat": ^4.1.5 + "@jupyterlab/observables": ^5.1.5 + "@jupyterlab/rendermime": ^4.1.5 + "@jupyterlab/rendermime-interfaces": ^3.9.5 + "@jupyterlab/services": ^7.1.5 + "@jupyterlab/translation": ^4.1.5 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/properties": ^2.0.1 "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.0 - checksum: fc7f49b09ad8104fd0ac022366877eee228beb63f237afa76e785e170cb17e9ae18a686e7ac09f5f74bf25735ebc089812ea9374cc7920f4a0a641b9d565a046 + "@lumino/widgets": ^2.3.1 + checksum: 3cd51dd9ba4d613c42ec2917065c8b6f39b418e3a892b7662741f31aceaca816e55af80af97513e783a6b1e4d152497e03062b18ee80dc1bace0b4d2a7f4b439 languageName: node linkType: hard -"@jupyterlab/rendermime-interfaces@npm:^3.8.5": - version: 3.8.5 - resolution: "@jupyterlab/rendermime-interfaces@npm:3.8.5" +"@jupyterlab/rendermime-interfaces@npm:^3.9.5": + version: 3.9.5 + resolution: "@jupyterlab/rendermime-interfaces@npm:3.9.5" dependencies: "@lumino/coreutils": ^1.11.0 || ^2.1.2 - "@lumino/widgets": ^1.37.2 || ^2.3.0 - checksum: 3824c1aa0fa4b946211fd342ff73b0ebc7722dfeaf9794a8c64740dcc53151c0e6b81468f92d83fbe9a6da75d54fe4b176bd3ec98e1a526b50bbc0f91057c1aa + "@lumino/widgets": ^1.37.2 || ^2.3.1 + checksum: 790c8d4d58213c02470599b2c69e8ccff8d3496750fc88403aafe4e7bc26bb262d40c9ed3fdd27fdfd77268b94e7ea4e178f73897dd42d9ab18cbe5a359d925c languageName: node linkType: hard -"@jupyterlab/rendermime@npm:^4.0.5": - version: 4.0.5 - resolution: "@jupyterlab/rendermime@npm:4.0.5" - dependencies: - "@jupyterlab/apputils": ^4.1.5 - "@jupyterlab/coreutils": ^6.0.5 - "@jupyterlab/nbformat": ^4.0.5 - "@jupyterlab/observables": ^5.0.5 - "@jupyterlab/rendermime-interfaces": ^3.8.5 - "@jupyterlab/services": ^7.0.5 - "@jupyterlab/translation": ^4.0.5 +"@jupyterlab/rendermime@npm:^4.1.5": + version: 4.1.5 + resolution: "@jupyterlab/rendermime@npm:4.1.5" + dependencies: + "@jupyterlab/apputils": ^4.2.5 + "@jupyterlab/coreutils": ^6.1.5 + "@jupyterlab/nbformat": ^4.1.5 + "@jupyterlab/observables": ^5.1.5 + "@jupyterlab/rendermime-interfaces": ^3.9.5 + "@jupyterlab/services": ^7.1.5 + "@jupyterlab/translation": ^4.1.5 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.0 + "@lumino/widgets": ^2.3.1 lodash.escape: ^4.0.1 - checksum: 472e25ebdee77599a90fef33402ef7c8f05d3c5266c9617805602b4e26022962e8973d55ab0b11bc24982c3aea1dc7d0b151064c822c2d1093111c17e87d1e80 + checksum: b96a56aa5e32cfcb99ac757ccb41cad29f2be9ded204c6f7bdc5b1bf55cdb4e2129aef596c0ee21ac96384e809c3aea59cd2885c7e2c8d39d45bdf373041259b languageName: node linkType: hard -"@jupyterlab/services@npm:^7.0.5": - version: 7.0.5 - resolution: "@jupyterlab/services@npm:7.0.5" +"@jupyterlab/services@npm:^7.1.5": + version: 7.1.5 + resolution: "@jupyterlab/services@npm:7.1.5" dependencies: - "@jupyter/ydoc": ^1.0.2 - "@jupyterlab/coreutils": ^6.0.5 - "@jupyterlab/nbformat": ^4.0.5 - "@jupyterlab/settingregistry": ^4.0.5 - "@jupyterlab/statedb": ^4.0.5 + "@jupyter/ydoc": ^1.1.1 + "@jupyterlab/coreutils": ^6.1.5 + "@jupyterlab/nbformat": ^4.1.5 + "@jupyterlab/settingregistry": ^4.1.5 + "@jupyterlab/statedb": ^4.1.5 "@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: cf4176dbb73c08e777b5e6ca26cba6ad7a142fc76ae6b46ef17ac7d8c8021f62d66e95e2ee0dbce5c33a0b2380750d440783d0398d787b8e8028920e04dd1d0b + checksum: f4b20ee62e5c3c7e0fa5942d3deb95329beb5a9ea6295403eefc0d5a723665379a09c58b21bc6a9fed7a69990570e5cfb66bc314e037a452b678fc4ec237dc55 languageName: node linkType: hard -"@jupyterlab/settingregistry@npm:^4.0.5": - version: 4.0.5 - resolution: "@jupyterlab/settingregistry@npm:4.0.5" +"@jupyterlab/settingregistry@npm:^4.1.5": + version: 4.1.5 + resolution: "@jupyterlab/settingregistry@npm:4.1.5" dependencies: - "@jupyterlab/nbformat": ^4.0.5 - "@jupyterlab/statedb": ^4.0.5 - "@lumino/commands": ^2.1.3 + "@jupyterlab/nbformat": ^4.1.5 + "@jupyterlab/statedb": ^4.1.5 + "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 - "@rjsf/utils": ^5.1.0 + "@rjsf/utils": ^5.13.4 ajv: ^8.12.0 json5: ^2.2.3 peerDependencies: react: ">=16" - checksum: b7d686e0f9629f25f423fbd114e598f5af2ae1cc7b683f3e236ff8c94f6d05b20e13ee4555e0eba6277b58fbcdf3c75dbcd66d4e79884b49bed649372d871540 + checksum: 576d49cbbb4a18ba5f55230938b67c6dbc6819dfafb75ece2d9d030913e69768ddcb2616de4f7dbd3bcd8aa35e292aee90fe98b91e7dccdaae2610c64ec07f94 languageName: node linkType: hard -"@jupyterlab/statedb@npm:^4.0.5": - version: 4.0.5 - resolution: "@jupyterlab/statedb@npm:4.0.5" +"@jupyterlab/statedb@npm:^4.1.5": + version: 4.1.5 + resolution: "@jupyterlab/statedb@npm:4.1.5" dependencies: - "@lumino/commands": ^2.1.3 + "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/properties": ^2.0.1 "@lumino/signaling": ^2.1.2 - checksum: 8e01de74a2168d19124773fa2b72329cfb43601c702127845a4172e87ee67b1304d34f53f65a6db214d832bd8c244c333936a22e08bbf1ea02e458e245140f62 + checksum: e7f3ea9a5ebb04a602d93d1ddc9175a5b24a0f3814e99410ec3dba2dd3a86572ea61917d8a65e1b4b8c4ed25c8eaa814646a817a3b5d39b8a74a7b6cbb0071c1 languageName: node linkType: hard -"@jupyterlab/statusbar@npm:^4.0.5": - version: 4.0.5 - resolution: "@jupyterlab/statusbar@npm:4.0.5" +"@jupyterlab/statusbar@npm:^4.1.5": + version: 4.1.5 + resolution: "@jupyterlab/statusbar@npm:4.1.5" dependencies: - "@jupyterlab/ui-components": ^4.0.5 + "@jupyterlab/ui-components": ^4.1.5 "@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 - "@lumino/widgets": ^2.3.0 + "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: eac3bc5cc191885fe0fb35466a015ecd8df103a38bc8fac0e2a2c0c7bc783d47e43a31679f83777c0a059091988d9dd2e191624c774fd32cb80c05f2d1166163 + checksum: 402f3b80495c155f6c08447ca6ef348dbaae030cc6c20d11a7f4f365445f389dd71fefe9649296d59e8c698aa31347fb563b9a962e51b8712ed3bbe2cfd0ca37 languageName: node linkType: hard -"@jupyterlab/toc@npm:^6.0.5": - version: 6.0.5 - resolution: "@jupyterlab/toc@npm:6.0.5" +"@jupyterlab/toc@npm:^6.1.5": + version: 6.1.5 + resolution: "@jupyterlab/toc@npm:6.1.5" dependencies: - "@jupyterlab/apputils": ^4.1.5 - "@jupyterlab/coreutils": ^6.0.5 - "@jupyterlab/docregistry": ^4.0.5 - "@jupyterlab/observables": ^5.0.5 - "@jupyterlab/rendermime": ^4.0.5 - "@jupyterlab/translation": ^4.0.5 - "@jupyterlab/ui-components": ^4.0.5 + "@jupyterlab/apputils": ^4.2.5 + "@jupyterlab/coreutils": ^6.1.5 + "@jupyterlab/docregistry": ^4.1.5 + "@jupyterlab/observables": ^5.1.5 + "@jupyterlab/rendermime": ^4.1.5 + "@jupyterlab/rendermime-interfaces": ^3.9.5 + "@jupyterlab/translation": ^4.1.5 + "@jupyterlab/ui-components": ^4.1.5 "@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 + "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 4b688fdd2aa0d14db02394bafcbae5e0ce632681e8541ff3ca6153ba0e219dc20cb99f03ef4ac25f849b4b7b23f3e168e50a450bf952f42b0418e2e42aaeb546 + checksum: 8be983a63ecd0ee33da196e3b9f254704230b4bd3ee5a59064e1bc32599a4c798274d68b0155360b95f5cb2893a2558156039c49cef542ea9aef2354ee82aeab languageName: node linkType: hard -"@jupyterlab/translation@npm:^4.0.5": - version: 4.0.5 - resolution: "@jupyterlab/translation@npm:4.0.5" +"@jupyterlab/translation@npm:^4.1.5": + version: 4.1.5 + resolution: "@jupyterlab/translation@npm:4.1.5" dependencies: - "@jupyterlab/coreutils": ^6.0.5 - "@jupyterlab/rendermime-interfaces": ^3.8.5 - "@jupyterlab/services": ^7.0.5 - "@jupyterlab/statedb": ^4.0.5 + "@jupyterlab/coreutils": ^6.1.5 + "@jupyterlab/rendermime-interfaces": ^3.9.5 + "@jupyterlab/services": ^7.1.5 + "@jupyterlab/statedb": ^4.1.5 "@lumino/coreutils": ^2.1.2 - checksum: ba879b7ed27f9398f409333624f679ad4c6d02f668a832eb7ee0cc27998e17d12938192dc32cdf74eff9c1b76116215543b1218093c32717d465568794b49660 + checksum: f12e2f13048cd1628a9a03003401009972a3439a038314e2c7cdf19ab4c29fa02a0091475bdd1ddb7cb26e2175c401a86ab8664f54b99bb47962cbd595e6f643 languageName: node linkType: hard -"@jupyterlab/ui-components@npm:^4.0.5": - version: 4.0.5 - resolution: "@jupyterlab/ui-components@npm:4.0.5" - dependencies: - "@jupyterlab/coreutils": ^6.0.5 - "@jupyterlab/observables": ^5.0.5 - "@jupyterlab/rendermime-interfaces": ^3.8.5 - "@jupyterlab/translation": ^4.0.5 +"@jupyterlab/ui-components@npm:^4.1.5": + version: 4.1.5 + resolution: "@jupyterlab/ui-components@npm:4.1.5" + dependencies: + "@jupyter/react-components": ^0.15.2 + "@jupyter/web-components": ^0.15.2 + "@jupyterlab/coreutils": ^6.1.5 + "@jupyterlab/observables": ^5.1.5 + "@jupyterlab/rendermime-interfaces": ^3.9.5 + "@jupyterlab/translation": ^4.1.5 "@lumino/algorithm": ^2.0.1 - "@lumino/commands": ^2.1.3 + "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 @@ -952,15 +962,15 @@ __metadata: "@lumino/properties": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/virtualdom": ^2.0.1 - "@lumino/widgets": ^2.3.0 - "@rjsf/core": ^5.1.0 - "@rjsf/utils": ^5.1.0 + "@lumino/widgets": ^2.3.1 + "@rjsf/core": ^5.13.4 + "@rjsf/utils": ^5.13.4 react: ^18.2.0 react-dom: ^18.2.0 typestyle: ^2.0.4 peerDependencies: react: ^18.2.0 - checksum: 4dfae7b37d7e7b58b83bdc75d260126fcdabfb9fd52cc3f04e3bf3c481c8f05c3b3323953389408f793ec7ec6580fd582667a83ab906a308361f0f20f766ad7a + checksum: a50315549c03718b5e953bdb695757b1d39db293131dd5c2c26587612e0ed30ad208d1d65c86ddc153a241df2e01d3a9a162f0e4b5f86d2a20816260c9aefe67 languageName: node linkType: hard @@ -1112,13 +1122,6 @@ __metadata: languageName: node linkType: hard -"@lumino/algorithm@npm:^2.0.0": - version: 2.0.0 - resolution: "@lumino/algorithm@npm:2.0.0" - checksum: 663edf536e94397b449c6a2643a735e602fbb396dec86b56ad1193a768dce27c6e7da5ad0384aa90086ea44cbb64dde3f9d565e9fd81858f1eb0c6b4253f3b94 - languageName: node - linkType: hard - "@lumino/algorithm@npm:^2.0.1": version: 2.0.1 resolution: "@lumino/algorithm@npm:2.0.1" @@ -1126,14 +1129,14 @@ __metadata: languageName: node linkType: hard -"@lumino/application@npm:^2.2.1": - version: 2.2.1 - resolution: "@lumino/application@npm:2.2.1" +"@lumino/application@npm:^2.3.0": + version: 2.3.1 + resolution: "@lumino/application@npm:2.3.1" dependencies: - "@lumino/commands": ^2.1.3 + "@lumino/commands": ^2.3.0 "@lumino/coreutils": ^2.1.2 - "@lumino/widgets": ^2.3.0 - checksum: a33e661703728440bc7d2ddb4674261f4de0d20eb8c9846646cbd6debac03b5c65e78d739a500903550fd83b8f47b47fa82ec178c97bc9967ca3ac4014075cde + "@lumino/widgets": ^2.3.2 + checksum: c112789d99baf62e5c2cee98834bc3efb5027bbca1aac81f10ea8855c0cd2538ec0a7c56c3f5dd42dce244e6892ef5bf8ef356f97e1cd4c161b99eb2068c195c languageName: node linkType: hard @@ -1146,9 +1149,9 @@ __metadata: languageName: node linkType: hard -"@lumino/commands@npm:^2.1.3": - version: 2.1.3 - resolution: "@lumino/commands@npm:2.1.3" +"@lumino/commands@npm:^2.2.0, @lumino/commands@npm:^2.3.0": + version: 2.3.0 + resolution: "@lumino/commands@npm:2.3.0" dependencies: "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 @@ -1157,51 +1160,35 @@ __metadata: "@lumino/keyboard": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/virtualdom": ^2.0.1 - checksum: e4e3ee279f2a5e8d68e4ce142c880333f5542f90c684972402356936ecb5cf5e07163800b59e7cb8c911cbdb4e5089edcc5dd2990bc8db10c87517268de1fc5d - languageName: node - linkType: hard - -"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^2.1.0": - version: 2.1.0 - resolution: "@lumino/coreutils@npm:2.1.0" - checksum: 8ba567a64b4d430b7fd56f984b54557bfbb089a4ea13de24022f62a9de51b48f18960dfd03aae7800194dc4ec0e303c1bf75c26808e31e93a7601ff60f723014 + checksum: a9b83bbfcc0421ff501e818dd234c65db438a8abb450628db0dea9ee05e8077d10b2275e7e2289f6df9c20dc26d2af458b1db88ccf43ec69f185eb207dbad419 languageName: node linkType: hard -"@lumino/coreutils@npm:^1.11.0 || ^2.1.2, @lumino/coreutils@npm:^2.1.2": +"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^1.11.0 || ^2.1.2, @lumino/coreutils@npm:^2.1.2": version: 2.1.2 resolution: "@lumino/coreutils@npm:2.1.2" checksum: 7865317ac0676b448d108eb57ab5d8b2a17c101995c0f7a7106662d9fe6c859570104525f83ee3cda12ae2e326803372206d6f4c1f415a5b59e4158a7b81066f languageName: node linkType: hard -"@lumino/datagrid@npm:^2.2.0": - version: 2.2.0 - resolution: "@lumino/datagrid@npm:2.2.0" +"@lumino/datagrid@npm:^2.3.0": + version: 2.3.1 + resolution: "@lumino/datagrid@npm:2.3.1" dependencies: "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/domutils": ^2.0.1 - "@lumino/dragdrop": ^2.1.3 + "@lumino/dragdrop": ^2.1.4 "@lumino/keyboard": ^2.0.1 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.0 - checksum: dcd6e06500c05b0f30b9924a25a2cc4c1cb98b8432f488148e74e98a7fe092a1f19cadbdc9edfbede9e2030d30b84e5633e40753fbe8d6bbb120d3336d3675ff + "@lumino/widgets": ^2.3.2 + checksum: 5d9fa32f3eb4fac041f75276d5a03118b36257db79a29c5ccabe826d423f15473e60ea337d8148379e8906bf78850a923b149c8d2956089aa940eae419b00e60 languageName: node linkType: hard -"@lumino/disposable@npm:^1.10.0 || ^2.0.0": - version: 2.1.0 - resolution: "@lumino/disposable@npm:2.1.0" - dependencies: - "@lumino/signaling": ^2.1.0 - checksum: 22f1c76ebc98622fe04ddbc0b0e417bcd16f7554c011c6495fb07113fbfb2f6cb2e127c2b114caa9876d739925e4eb3fdf83f53a4e0cb12472ed39fbd72853c0 - languageName: node - linkType: hard - -"@lumino/disposable@npm:^2.1.2": +"@lumino/disposable@npm:^1.10.0 || ^2.0.0, @lumino/disposable@npm:^2.1.2": version: 2.1.2 resolution: "@lumino/disposable@npm:2.1.2" dependencies: @@ -1217,13 +1204,13 @@ __metadata: languageName: node linkType: hard -"@lumino/dragdrop@npm:^2.1.3": - version: 2.1.3 - resolution: "@lumino/dragdrop@npm:2.1.3" +"@lumino/dragdrop@npm:^2.1.4": + version: 2.1.4 + resolution: "@lumino/dragdrop@npm:2.1.4" dependencies: "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 - checksum: d5f7eb4cc9f9a084cb9af10f02d6741b25d683350878ecbc324e24ba9d4b5246451a410e2ca5fff227aab1c191d1e73a2faf431f93e13111d67a4e426e126258 + checksum: 43d82484b13b38b612e7dfb424a840ed6a38d0db778af10655c4ba235c67b5b12db1683929b35a36ab2845f77466066dfd1ee25c1c273e8e175677eba9dc560d languageName: node linkType: hard @@ -1262,17 +1249,7 @@ __metadata: languageName: node linkType: hard -"@lumino/signaling@npm:^1.10.0 || ^2.0.0, @lumino/signaling@npm:^2.1.0": - version: 2.1.0 - resolution: "@lumino/signaling@npm:2.1.0" - dependencies: - "@lumino/algorithm": ^2.0.0 - "@lumino/coreutils": ^2.1.0 - checksum: dca61d9e0d52c94f3ceabd18fa2663cb19854167a511000ed13a8d7be1c4a702002f2e82ee5ee919365b859377b8d1ed2df9ed32029b411b84132749ce513896 - languageName: node - linkType: hard - -"@lumino/signaling@npm:^2.1.2": +"@lumino/signaling@npm:^1.10.0 || ^2.0.0, @lumino/signaling@npm:^2.1.2": version: 2.1.2 resolution: "@lumino/signaling@npm:2.1.2" dependencies: @@ -1291,22 +1268,69 @@ __metadata: languageName: node linkType: hard -"@lumino/widgets@npm:^1.37.2 || ^2.3.0, @lumino/widgets@npm:^2.3.0": - version: 2.3.0 - resolution: "@lumino/widgets@npm:2.3.0" +"@lumino/widgets@npm:^1.37.2 || ^2.3.1, @lumino/widgets@npm:^2.3.1, @lumino/widgets@npm:^2.3.2": + version: 2.3.2 + resolution: "@lumino/widgets@npm:2.3.2" dependencies: "@lumino/algorithm": ^2.0.1 - "@lumino/commands": ^2.1.3 + "@lumino/commands": ^2.3.0 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/domutils": ^2.0.1 - "@lumino/dragdrop": ^2.1.3 + "@lumino/dragdrop": ^2.1.4 "@lumino/keyboard": ^2.0.1 "@lumino/messaging": ^2.0.1 "@lumino/properties": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/virtualdom": ^2.0.1 - checksum: a8559bd3574b7fc16e7679e05994c515b0d3e78dada35786d161f67c639941d134e92ce31d95c2e4ac06709cdf83b0e7fb4b6414a3f7779579222a2fb525d025 + checksum: 954fe066b0826cf00c019731bb3f70e635c63be4a0ce27f7573dbe6bd59e2154f511594b50e8f58f44877cf514084128c1e894ecbbbfd6e20d937e5cfb69ca8b + languageName: node + linkType: hard + +"@microsoft/fast-colors@npm:^5.3.1": + version: 5.3.1 + resolution: "@microsoft/fast-colors@npm:5.3.1" + checksum: ff87f402faadb4b5aeee3d27762566c11807f927cd4012b8bbc7f073ca68de0e2197f95330ff5dfd7038f4b4f0e2f51b11feb64c5d570f5c598d37850a5daf60 + languageName: node + linkType: hard + +"@microsoft/fast-element@npm:^1.12.0": + version: 1.12.0 + resolution: "@microsoft/fast-element@npm:1.12.0" + checksum: bbff4e9c83106d1d74f3eeedc87bf84832429e78fee59c6a4ae8164ee4f42667503f586896bea72341b4d2c76c244a3cb0d4fd0d5d3732755f00357714dd609e + languageName: node + linkType: hard + +"@microsoft/fast-foundation@npm:^2.49.4, @microsoft/fast-foundation@npm:^2.49.5": + version: 2.49.5 + resolution: "@microsoft/fast-foundation@npm:2.49.5" + dependencies: + "@microsoft/fast-element": ^1.12.0 + "@microsoft/fast-web-utilities": ^5.4.1 + tabbable: ^5.2.0 + tslib: ^1.13.0 + checksum: 8a4729e8193ee93f780dc88fac26561b42f2636e3f0a8e89bb1dfe256f50a01a21ed1d8e4d31ce40678807dc833e25f31ba735cb5d3c247b65219aeb2560c82c + languageName: node + linkType: hard + +"@microsoft/fast-react-wrapper@npm:^0.3.22": + version: 0.3.23 + resolution: "@microsoft/fast-react-wrapper@npm:0.3.23" + dependencies: + "@microsoft/fast-element": ^1.12.0 + "@microsoft/fast-foundation": ^2.49.5 + peerDependencies: + react: ">=16.9.0" + checksum: 45885e1868916d2aa9059e99c341c97da434331d9340a57128d4218081df68b5e1107031c608db9a550d6d1c3b010d516ed4f8dc5a8a2470058da6750dcd204a + languageName: node + linkType: hard + +"@microsoft/fast-web-utilities@npm:^5.4.1": + version: 5.4.1 + resolution: "@microsoft/fast-web-utilities@npm:5.4.1" + dependencies: + exenv-es6: ^1.1.1 + checksum: 303e87847f962944f474e3716c3eb305668243916ca9e0719e26bb9a32346144bc958d915c103776b3e552cea0f0f6233f839fad66adfdf96a8436b947288ca7 languageName: node linkType: hard @@ -1346,25 +1370,25 @@ __metadata: languageName: node linkType: hard -"@rjsf/core@npm:^5.1.0": - version: 5.6.2 - resolution: "@rjsf/core@npm:5.6.2" +"@rjsf/core@npm:^5.13.4": + version: 5.18.1 + resolution: "@rjsf/core@npm:5.18.1" dependencies: lodash: ^4.17.21 lodash-es: ^4.17.21 - markdown-to-jsx: ^7.2.0 - nanoid: ^3.3.6 + markdown-to-jsx: ^7.4.1 + nanoid: ^3.3.7 prop-types: ^15.8.1 peerDependencies: - "@rjsf/utils": 5.6.x + "@rjsf/utils": ^5.18.x react: ^16.14.0 || >=17 - checksum: 8cc9c1a439fcb232be66464aa1bc370b49dc0f872ae09cca296adf07ea993cb8dbec366c26414ff2ea92490f89fafd39ca5fb2369b424ff0035cbf045de44927 + checksum: 25a686fd2f46e648ee8261acbe1eb4f986ec2aff8c445c76acd0a2fec8f4d4f866d95dd49efe2395e8337ada129e999a26ed994e262a1d96afbf0906b8f9e945 languageName: node linkType: hard -"@rjsf/utils@npm:^5.1.0": - version: 5.6.2 - resolution: "@rjsf/utils@npm:5.6.2" +"@rjsf/utils@npm:^5.13.4": + version: 5.18.1 + resolution: "@rjsf/utils@npm:5.18.1" dependencies: json-schema-merge-allof: ^0.8.1 jsonpointer: ^5.0.1 @@ -1373,7 +1397,7 @@ __metadata: react-is: ^18.2.0 peerDependencies: react: ^16.14.0 || >=17 - checksum: f6ab90d2cf383f8f7d14ba70f51b2e0171997aeee1f822115734ec39d0f208477374046e4cc2b4cbabe544f8bb6a6250f0bd5fb9e9470aae876a0896eabfa23e + checksum: 4cac73c4b7740b12399bd2c96cd9514cb998e6e5585d9436104ec514e126c7139e3508256e6d80285aeef065a37424a254f3576523ae734e337bea868a1f8a53 languageName: node linkType: hard @@ -2104,30 +2128,14 @@ __metadata: languageName: node linkType: hard -"csstype@npm:3.0.10": +"csstype@npm:3.0.10, csstype@npm:^3.0.2": version: 3.0.10 resolution: "csstype@npm:3.0.10" checksum: 20a8fa324f2b33ddf94aa7507d1b6ab3daa6f3cc308888dc50126585d7952f2471de69b2dbe0635d1fdc31223fef8e070842691877e725caf456e2378685a631 languageName: node linkType: hard -"csstype@npm:^3.0.2": - version: 3.1.2 - resolution: "csstype@npm:3.1.2" - checksum: e1a52e6c25c1314d6beef5168da704ab29c5186b877c07d822bd0806717d9a265e8493a2e35ca7e68d0f5d472d43fac1cdce70fd79fd0853dff81f3028d857b5 - languageName: node - linkType: hard - -"d3-array@npm:1 - 3, d3-array@npm:2 - 3, d3-array@npm:2.10.0 - 3, d3-array@npm:2.5.0 - 3, d3-array@npm:^3.2.2": - version: 3.2.3 - resolution: "d3-array@npm:3.2.3" - dependencies: - internmap: 1 - 2 - checksum: 41d6a4989b73e0d2649a880b2f29a7e7cc059db0eba36cd29a79e0118ebdf6b78922a84cde0733cd54cb4072f3442ec44f3563902e00ea42892442d60e99f961 - languageName: node - linkType: hard - -"d3-array@npm:3.2.2": +"d3-array@npm:1 - 3, d3-array@npm:2 - 3, d3-array@npm:2.10.0 - 3, d3-array@npm:2.5.0 - 3, d3-array@npm:3.2.2, d3-array@npm:^3.2.2": version: 3.2.2 resolution: "d3-array@npm:3.2.2" dependencies: @@ -2441,6 +2449,13 @@ __metadata: languageName: node linkType: hard +"exenv-es6@npm:^1.1.1": + version: 1.1.1 + resolution: "exenv-es6@npm:1.1.1" + checksum: 7f2aa12025e6f06c48dc286f380cf3183bb19c6017b36d91695034a3e5124a7235c4f8ff24ca2eb88ae801322f0f99605cedfcfd996a5fcbba7669320e2a448e + languageName: node + linkType: hard + "fast-deep-equal@npm:^3.1.1, fast-deep-equal@npm:~3.1.3": version: 3.1.3 resolution: "fast-deep-equal@npm:3.1.3" @@ -2661,14 +2676,7 @@ __metadata: languageName: node linkType: hard -"inherits@npm:2, inherits@npm:^2.0.3, inherits@npm:~2.0.3": - version: 2.0.4 - resolution: "inherits@npm:2.0.4" - checksum: 4a48a733847879d6cf6691860a6b1e3f0f4754176e4d71494c41f3475553768b10f84b5ce1d40fbd0e34e6bfbb864ee35858ad4dd2cf31e02fc4a154b724d7f1 - languageName: node - linkType: hard - -"inherits@npm:2.0.3": +"inherits@npm:2, inherits@npm:2.0.3, inherits@npm:^2.0.3, inherits@npm:~2.0.3": version: 2.0.3 resolution: "inherits@npm:2.0.3" checksum: 78cb8d7d850d20a5e9a7f3620db31483aa00ad5f722ce03a55b110e5a723539b3716a3b463e2b96ce3fe286f33afc7c131fa2f91407528ba80cea98a7545d4c0 @@ -2805,8 +2813,8 @@ __metadata: version: 0.0.0-use.local resolution: "jupyter-collaboration-ui-tests@workspace:." dependencies: - "@jupyterlab/galata": ^5.0.5 - "@jupyterlab/services": ^7.0.5 + "@jupyterlab/galata": ^5.1.5 + "@jupyterlab/services": ^7.1.5 "@playwright/test": ^1.35.0 languageName: unknown linkType: soft @@ -2902,12 +2910,12 @@ __metadata: languageName: node linkType: hard -"markdown-to-jsx@npm:^7.2.0": - version: 7.2.0 - resolution: "markdown-to-jsx@npm:7.2.0" +"markdown-to-jsx@npm:^7.4.1": + version: 7.4.5 + resolution: "markdown-to-jsx@npm:7.4.5" peerDependencies: react: ">= 0.14.0" - checksum: ea417e684d7eec9f1beebc9423aba377116ef77c3cd83a2d622df1b9030ffef99aa9b3f431192b94f3237943a33560e6dda9be8a4c1d25187518d09986dad22f + checksum: 185f7a383ed8b46f015a98e1e6e9d57d5b82fea0fafb141f57b9362366a673989ade20f02711b96678a6e1d04cc3ca76b4689ffbd47623844b78dff9a57b9148 languageName: node linkType: hard @@ -3029,26 +3037,19 @@ __metadata: languageName: node linkType: hard -"ms@npm:2.1.2": +"ms@npm:2.1.2, ms@npm:^2.0.0": version: 2.1.2 resolution: "ms@npm:2.1.2" checksum: 673cdb2c3133eb050c745908d8ce632ed2c02d85640e2edb3ace856a2266a813b30c613569bf3354fdf4ea7d1a1494add3bfa95e2713baa27d0c2c71fc44f58f languageName: node linkType: hard -"ms@npm:^2.0.0": - version: 2.1.3 - resolution: "ms@npm:2.1.3" - checksum: aa92de608021b242401676e35cfa5aa42dd70cbdc082b916da7fb925c542173e36bce97ea3e804923fe92c0ad991434e4a38327e15a1b5b5f945d66df615ae6d - languageName: node - linkType: hard - -"nanoid@npm:^3.3.6": - version: 3.3.6 - resolution: "nanoid@npm:3.3.6" +"nanoid@npm:^3.3.6, nanoid@npm:^3.3.7": + version: 3.3.7 + resolution: "nanoid@npm:3.3.7" bin: nanoid: bin/nanoid.cjs - checksum: 7d0eda657002738aa5206107bd0580aead6c95c460ef1bdd0b1a87a9c7ae6277ac2e9b945306aaa5b32c6dcb7feaf462d0f552e7f8b5718abfc6ead5c94a71b3 + checksum: d36c427e530713e4ac6567d488b489a36582ef89da1d6d4e3b87eded11eb10d7042a877958c6f104929809b2ab0bafa17652b076cdf84324aa75b30b722204f2 languageName: node linkType: hard @@ -3281,7 +3282,7 @@ __metadata: languageName: node linkType: hard -"react@npm:^18.2.0": +"react@npm:>=17.0.0 <19.0.0, react@npm:^18.2.0": version: 18.2.0 resolution: "react@npm:18.2.0" dependencies: @@ -3394,13 +3395,6 @@ __metadata: languageName: node linkType: hard -"safe-buffer@npm:~5.2.0": - version: 5.2.1 - resolution: "safe-buffer@npm:5.2.1" - checksum: b99c4b41fdd67a6aaf280fcd05e9ffb0813654894223afb78a31f14a19ad220bba8aba1cb14eddce1fcfb037155fe6de4e861784eb434f7d11ed58d1e70dd491 - languageName: node - linkType: hard - "safer-buffer@npm:>= 2.1.2 < 3.0.0": version: 2.1.2 resolution: "safer-buffer@npm:2.1.2" @@ -3511,16 +3505,7 @@ __metadata: languageName: node linkType: hard -"string_decoder@npm:^1.1.1": - version: 1.3.0 - resolution: "string_decoder@npm:1.3.0" - dependencies: - safe-buffer: ~5.2.0 - checksum: 8417646695a66e73aefc4420eb3b84cc9ffd89572861fe004e6aeb13c7bc00e2f616247505d2dbbef24247c372f70268f594af7126f43548565c68c117bdeb56 - languageName: node - linkType: hard - -"string_decoder@npm:~1.1.1": +"string_decoder@npm:^1.1.1, string_decoder@npm:~1.1.1": version: 1.1.1 resolution: "string_decoder@npm:1.1.1" dependencies: @@ -3555,6 +3540,13 @@ __metadata: languageName: node linkType: hard +"tabbable@npm:^5.2.0": + version: 5.3.3 + resolution: "tabbable@npm:5.3.3" + checksum: 1aa56e1bb617cc10616c407f4e756f0607f3e2d30f9803664d70b85db037ca27e75918ed1c71443f3dc902e21dc9f991ce4b52d63a538c9b69b3218d3babcd70 + languageName: node + linkType: hard + "tar@npm:^6.1.11, tar@npm:^6.1.2": version: 6.1.13 resolution: "tar@npm:6.1.13" @@ -3589,6 +3581,13 @@ __metadata: languageName: node linkType: hard +"tslib@npm:^1.13.0": + version: 1.14.1 + resolution: "tslib@npm:1.14.1" + checksum: dbe628ef87f66691d5d2959b3e41b9ca0045c3ee3c7c7b906cc1e328b39f199bb1ad9e671c39025bd56122ac57dfbf7385a94843b1cc07c60a4db74795829acd + languageName: node + linkType: hard + "tslib@npm:~2.5.0": version: 2.5.0 resolution: "tslib@npm:2.5.0"