From 84ceea3fab2f3eb1a6549dbbb19f31f6f76ef698 Mon Sep 17 00:00:00 2001 From: Alex Bozarth Date: Wed, 30 Oct 2024 12:51:34 -0500 Subject: [PATCH] Update to Jupyterlab 4.3 and fix prompt accept bug (#13) * Update to Jupyterlab 4.3 and fix prompt accept bug This updates to Jupyterlab 4.3 and includes the fix for the `postModelPromptAccept` edge case --- GETTING_STARTED.md | 2 +- README.md | 2 +- package.json | 24 +- pyproject.toml | 2 +- src/QiskitCompletionProvider.ts | 6 +- src/index.ts | 11 +- yarn.lock | 1423 +++++++++++++++---------------- 7 files changed, 720 insertions(+), 750 deletions(-) diff --git a/GETTING_STARTED.md b/GETTING_STARTED.md index 3db6ea6..8d003f8 100644 --- a/GETTING_STARTED.md +++ b/GETTING_STARTED.md @@ -2,7 +2,7 @@ ## Requirements -- JupyterLab >= 4.2.0 +- JupyterLab >= 4.3.0 - An IBM Quantum premium account ## Install diff --git a/README.md b/README.md index 2ce4607..cf4ffa0 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ for the frontend extension. ## Requirements -- JupyterLab >= 4.2.0 +- JupyterLab >= 4.3.0 - An IBM Quantum premium account ## Install diff --git a/package.json b/package.json index afa2a53..c075b6f 100644 --- a/package.json +++ b/package.json @@ -53,20 +53,20 @@ "watch:labextension": "jupyter labextension watch ." }, "dependencies": { - "@jupyterlab/application": "^4.2.0", - "@jupyterlab/apputils": "^4.2.0", - "@jupyterlab/completer": "^4.2.0", - "@jupyterlab/coreutils": "^6.2.0", - "@jupyterlab/notebook": "^4.2.0", - "@jupyterlab/services": "^7.2.0", - "@jupyterlab/settingregistry": "^4.2.0", - "@jupyterlab/statusbar": "^4.2.0", - "@jupyterlab/ui-components": "^4.2.0", - "@lumino/messaging": "^2.0.1", - "@lumino/widgets": "^2.3.2" + "@jupyterlab/application": "^4.3.0", + "@jupyterlab/apputils": "^4.4.0", + "@jupyterlab/completer": "^4.3.0", + "@jupyterlab/coreutils": "^6.3.0", + "@jupyterlab/notebook": "^4.3.0", + "@jupyterlab/services": "^7.3.0", + "@jupyterlab/settingregistry": "^4.3.0", + "@jupyterlab/statusbar": "^4.3.0", + "@jupyterlab/ui-components": "^4.3.0", + "@lumino/messaging": "^2.0.2", + "@lumino/widgets": "^2.5.0" }, "devDependencies": { - "@jupyterlab/builder": "^4.2.0", + "@jupyterlab/builder": "^4.3.0", "@types/json-schema": "^7.0.11", "@types/react": "^18.0.26", "@types/react-addons-linked-state-mixin": "^0.14.22", diff --git a/pyproject.toml b/pyproject.toml index a0e3942..208c821 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["hatchling>=1.5.0", "jupyterlab>=4.0.0,<5", "hatch-nodejs-version>=0.3.2"] +requires = ["hatchling>=1.5.0", "jupyterlab>=4.3.0,<5", "hatch-nodejs-version>=0.3.2"] build-backend = "hatchling.build" [project] diff --git a/src/QiskitCompletionProvider.ts b/src/QiskitCompletionProvider.ts index 8136222..96c22c7 100644 --- a/src/QiskitCompletionProvider.ts +++ b/src/QiskitCompletionProvider.ts @@ -63,6 +63,7 @@ export class QiskitCompletionProvider implements ICompletionProvider { settings: ISettingRegistry.ISettings; prompt_id: string = ''; + results: string[] = []; constructor(options: { settings: ISettingRegistry.ISettings }) { this.settings = options.settings; @@ -76,6 +77,7 @@ export class QiskitCompletionProvider implements ICompletionProvider { return autoComplete(text).then(results => { this.prompt_id = results.prompt_id; + this.results = results.items; return { start: request.offset, end: request.offset, @@ -97,8 +99,8 @@ export class QiskitCompletionProvider implements ICompletionProvider { return this.settings.composite['enableCompleter'] as boolean; } - accept() { - if (this.prompt_id) { + accept(text: string) { + if (this.prompt_id && this.results.includes(text)) { postModelPromptAccept(this.prompt_id); } } diff --git a/src/index.ts b/src/index.ts index d996b8d..93274bd 100644 --- a/src/index.ts +++ b/src/index.ts @@ -96,13 +96,12 @@ const plugin: JupyterFrontEndPlugin = { category: 'Qiskit Code Assistant' }); + completionProviderManager.selected.connect((completer, selection) => + provider.accept(selection.insertText) + ); + app.commands.commandExecuted.connect((registry, executed) => { - if ( - executed.id === CommandIDs.selectCompleterFile || - executed.id === CommandIDs.selectCompleterNotebook - ) { - provider.accept(); - } else if (executed.id === CommandIDs.acceptInline) { + if (executed.id === CommandIDs.acceptInline) { inlineProvider.accept(); } }); diff --git a/yarn.lock b/yarn.lock index bc9f885..eb38b4b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6,37 +6,26 @@ __metadata: cacheKey: 8 "@babel/code-frame@npm:^7.0.0": - version: 7.24.7 - resolution: "@babel/code-frame@npm:7.24.7" + version: 7.26.0 + resolution: "@babel/code-frame@npm:7.26.0" dependencies: - "@babel/highlight": ^7.24.7 + "@babel/helper-validator-identifier": ^7.25.9 + js-tokens: ^4.0.0 picocolors: ^1.0.0 - checksum: 830e62cd38775fdf84d612544251ce773d544a8e63df667728cc9e0126eeef14c6ebda79be0f0bc307e8318316b7f58c27ce86702e0a1f5c321d842eb38ffda4 + checksum: 2a677369e9b80b956401809485e8c2ae24df5e6076f669cf26a2809fcb88f91c2f6bb1bf3fb799dfe8487b2b7a276b62d14ac230a79d7ac8c7b369090d0a43fc languageName: node linkType: hard -"@babel/helper-validator-identifier@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/helper-validator-identifier@npm:7.24.7" - checksum: 6799ab117cefc0ecd35cd0b40ead320c621a298ecac88686a14cffceaac89d80cdb3c178f969861bf5fa5e4f766648f9161ea0752ecfe080d8e89e3147270257 +"@babel/helper-validator-identifier@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-validator-identifier@npm:7.25.9" + checksum: 5b85918cb1a92a7f3f508ea02699e8d2422fe17ea8e82acd445006c0ef7520fbf48e3dbcdaf7b0a1d571fc3a2715a29719e5226636cb6042e15fe6ed2a590944 languageName: node linkType: hard -"@babel/highlight@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/highlight@npm:7.24.7" - dependencies: - "@babel/helper-validator-identifier": ^7.24.7 - chalk: ^2.4.2 - js-tokens: ^4.0.0 - picocolors: ^1.0.0 - checksum: 5cd3a89f143671c4ac129960024ba678b669e6fc673ce078030f5175002d1d3d52bc10b22c5b916a6faf644b5028e9a4bd2bb264d053d9b05b6a98690f1d46f1 - languageName: node - linkType: hard - -"@codemirror/autocomplete@npm:^6.0.0, @codemirror/autocomplete@npm:^6.15.0, @codemirror/autocomplete@npm:^6.3.2, @codemirror/autocomplete@npm:^6.7.1": - version: 6.18.0 - resolution: "@codemirror/autocomplete@npm:6.18.0" +"@codemirror/autocomplete@npm:^6.0.0, @codemirror/autocomplete@npm:^6.16.0, @codemirror/autocomplete@npm:^6.3.2, @codemirror/autocomplete@npm:^6.7.1": + version: 6.18.2 + resolution: "@codemirror/autocomplete@npm:6.18.2" dependencies: "@codemirror/language": ^6.0.0 "@codemirror/state": ^6.0.0 @@ -47,19 +36,19 @@ __metadata: "@codemirror/state": ^6.0.0 "@codemirror/view": ^6.0.0 "@lezer/common": ^1.0.0 - checksum: 806163d13be3e86f5eceb46768329955f48935e228e238c2b8ae7ebe0b6634b5fe90fc5eeb6df81acb1e9e6e5a84e136f14233459d4bcfea2f3dd8a45ae84f37 + checksum: 96df3ad16ad187784175cfcc6a08272794c920ac6ae3f35ff4e68790e84bbf556a3b25af5f35458172db21f49d77b90496b5ee180f8612f7a83c2656c68ed571 languageName: node linkType: hard -"@codemirror/commands@npm:^6.3.3": - version: 6.6.1 - resolution: "@codemirror/commands@npm:6.6.1" +"@codemirror/commands@npm:^6.5.0": + version: 6.7.1 + resolution: "@codemirror/commands@npm:6.7.1" dependencies: "@codemirror/language": ^6.0.0 "@codemirror/state": ^6.4.0 "@codemirror/view": ^6.27.0 "@lezer/common": ^1.1.0 - checksum: 102cb14f1183eb33f6469148121912863264e281ba22b317915c8e883109d9522f0aa932c5315711a1ecf611fa7894552d6f8604688ca76c7af24d0db83df590 + checksum: 507ae0cc7f3a7bd869bca0de7e942ecb2bc0bd95a42484e5b06835ebf8caf7626c39d2bea26cefab99d07ab83ba5934afd2d07ce00dac4190aca014523f3c97e languageName: node linkType: hard @@ -86,7 +75,7 @@ __metadata: languageName: node linkType: hard -"@codemirror/lang-html@npm:^6.0.0, @codemirror/lang-html@npm:^6.4.8": +"@codemirror/lang-html@npm:^6.0.0, @codemirror/lang-html@npm:^6.4.9": version: 6.4.9 resolution: "@codemirror/lang-html@npm:6.4.9" dependencies: @@ -138,9 +127,9 @@ __metadata: languageName: node linkType: hard -"@codemirror/lang-markdown@npm:^6.2.4": - version: 6.2.5 - resolution: "@codemirror/lang-markdown@npm:6.2.5" +"@codemirror/lang-markdown@npm:^6.2.5": + version: 6.3.0 + resolution: "@codemirror/lang-markdown@npm:6.3.0" dependencies: "@codemirror/autocomplete": ^6.7.1 "@codemirror/lang-html": ^6.0.0 @@ -149,7 +138,7 @@ __metadata: "@codemirror/view": ^6.0.0 "@lezer/common": ^1.2.1 "@lezer/markdown": ^1.0.0 - checksum: 3d9e0817f888eddcb6d05ec8f0d8dacbde7b9ef7650303bc4ab8b08a550a986c60c65b1565212e06af389c31590330f1f5ed65e619a9446dc2979ff3dac0e874 + checksum: 8f3a231a0008d6b6834e58d44eac3c383cf472083ef2a68de66f9b4209bb4de1fb14f167e6e04236dbf58444299bce74715df372b1e97c9b4f207cc65daf6285 languageName: node linkType: hard @@ -166,7 +155,7 @@ __metadata: languageName: node linkType: hard -"@codemirror/lang-python@npm:^6.1.4": +"@codemirror/lang-python@npm:^6.1.6": version: 6.1.6 resolution: "@codemirror/lang-python@npm:6.1.6" dependencies: @@ -189,9 +178,9 @@ __metadata: languageName: node linkType: hard -"@codemirror/lang-sql@npm:^6.6.1": - version: 6.7.1 - resolution: "@codemirror/lang-sql@npm:6.7.1" +"@codemirror/lang-sql@npm:^6.6.4": + version: 6.8.0 + resolution: "@codemirror/lang-sql@npm:6.8.0" dependencies: "@codemirror/autocomplete": ^6.0.0 "@codemirror/language": ^6.0.0 @@ -199,7 +188,7 @@ __metadata: "@lezer/common": ^1.2.0 "@lezer/highlight": ^1.0.0 "@lezer/lr": ^1.0.0 - checksum: 89166b2a30e58b5b51fee3fa3e42735326c11c71013bdd92c7affe44824988e826c8008a045f3abaaa313d47f5a9f089063b3bc388d9fb9bbe849500fec50697 + checksum: 1b5a3c8129b09f24039d8c0906fc4cb8d0f706a424a1d56721057bd1e647797c2b1240bb53eed9bf2bac5806a4e0363e555a3963f04c478efa05829890c537f7 languageName: node linkType: hard @@ -230,8 +219,8 @@ __metadata: linkType: hard "@codemirror/language@npm:^6.0.0, @codemirror/language@npm:^6.10.1, @codemirror/language@npm:^6.3.0, @codemirror/language@npm:^6.4.0, @codemirror/language@npm:^6.6.0, @codemirror/language@npm:^6.8.0": - version: 6.10.2 - resolution: "@codemirror/language@npm:6.10.2" + version: 6.10.3 + resolution: "@codemirror/language@npm:6.10.3" dependencies: "@codemirror/state": ^6.0.0 "@codemirror/view": ^6.23.0 @@ -239,11 +228,11 @@ __metadata: "@lezer/highlight": ^1.0.0 "@lezer/lr": ^1.0.0 style-mod: ^4.0.0 - checksum: 4e60afb75fb56519f59d9d85e0aa03f0c8d017e0da0f3f8f321baf35a776801fcec9787f3d0c029eba12aa766fba98b0fe86fc3111b43e0812b554184c0e8d67 + checksum: 53fb72299500f63706f78c888d6b5fd81043ea11ea2fa4c72c13c6d4794bb6f4ec29450208c56b4f40e839984b3dc73505262803fa61416baf588da389a7c577 languageName: node linkType: hard -"@codemirror/legacy-modes@npm:^6.3.3": +"@codemirror/legacy-modes@npm:^6.4.0": version: 6.4.1 resolution: "@codemirror/legacy-modes@npm:6.4.1" dependencies: @@ -253,13 +242,13 @@ __metadata: linkType: hard "@codemirror/lint@npm:^6.0.0": - version: 6.8.1 - resolution: "@codemirror/lint@npm:6.8.1" + version: 6.8.2 + resolution: "@codemirror/lint@npm:6.8.2" dependencies: "@codemirror/state": ^6.0.0 "@codemirror/view": ^6.0.0 crelt: ^1.0.5 - checksum: faa222b679770baf094ea707251e27d6eef347157006223c22d7726fb5adc9d77257f36c366367ec729cb6286aca3276d30a470e0d0ea9a884ec948e798668e9 + checksum: 714fe911c2d600350ea8ca0f65ceb2de25ace511e71bf174a550ba0aefc9884ec4e099f0f500b55bfd0fccbd7fe3a342a0048ff5a49c8c20020ea16cc8bff3c3 languageName: node linkType: hard @@ -281,14 +270,14 @@ __metadata: languageName: node linkType: hard -"@codemirror/view@npm:^6.0.0, @codemirror/view@npm:^6.17.0, @codemirror/view@npm:^6.23.0, @codemirror/view@npm:^6.26.0, @codemirror/view@npm:^6.27.0": - version: 6.33.0 - resolution: "@codemirror/view@npm:6.33.0" +"@codemirror/view@npm:^6.0.0, @codemirror/view@npm:^6.17.0, @codemirror/view@npm:^6.23.0, @codemirror/view@npm:^6.26.3, @codemirror/view@npm:^6.27.0": + version: 6.34.1 + resolution: "@codemirror/view@npm:6.34.1" dependencies: "@codemirror/state": ^6.4.0 style-mod: ^4.1.0 w3c-keyname: ^2.2.4 - checksum: e28896a7fb40df8e7221fbebfc2cd92c10c6963948e20f3a4300e99c897fbddd091f4fc90cc30eeaf90d07c61dcf6170cd3c164810606fa07337ffb970ffdac2 + checksum: 5c7bf199f0b45a3cc192f08c2ac89e5ab972f313cb4f2c979edf6e05b27bccd60c6cb42d5dacb6813ef3a928d75476eb0a00ffdeffd7431c8e9f44bab4f6e12e languageName: node linkType: hard @@ -335,20 +324,20 @@ __metadata: linkType: hard "@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0": - version: 4.4.0 - resolution: "@eslint-community/eslint-utils@npm:4.4.0" + version: 4.4.1 + resolution: "@eslint-community/eslint-utils@npm:4.4.1" dependencies: - eslint-visitor-keys: ^3.3.0 + eslint-visitor-keys: ^3.4.3 peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - checksum: cdfe3ae42b4f572cbfb46d20edafe6f36fc5fb52bf2d90875c58aefe226892b9677fef60820e2832caf864a326fe4fc225714c46e8389ccca04d5f9288aabd22 + checksum: a7ffc838eb6a9ef594cda348458ccf38f34439ac77dc090fa1c120024bcd4eb911dfd74d5ef44d42063e7949fa7c5123ce714a015c4abb917d4124be1bd32bfe languageName: node linkType: hard "@eslint-community/regexpp@npm:^4.5.1, @eslint-community/regexpp@npm:^4.6.1": - version: 4.11.0 - resolution: "@eslint-community/regexpp@npm:4.11.0" - checksum: 97d2fe46690b69417a551bd19a3dc53b6d9590d2295c43cc4c4e44e64131af541e2f4a44d5c12e87de990403654d3dae9d33600081f3a2f0386b368abc9111ec + version: 4.12.1 + resolution: "@eslint-community/regexpp@npm:4.12.1" + checksum: 0d628680e204bc316d545b4993d3658427ca404ae646ce541fcc65306b8c712c340e5e573e30fb9f85f4855c0c5f6dca9868931f2fcced06417fbe1a0c6cd2d6 languageName: node linkType: hard @@ -369,10 +358,10 @@ __metadata: languageName: node linkType: hard -"@eslint/js@npm:8.57.0": - version: 8.57.0 - resolution: "@eslint/js@npm:8.57.0" - checksum: 315dc65b0e9893e2bff139bddace7ea601ad77ed47b4550e73da8c9c2d2766c7a575c3cddf17ef85b8fd6a36ff34f91729d0dcca56e73ca887c10df91a41b0bb +"@eslint/js@npm:8.57.1": + version: 8.57.1 + resolution: "@eslint/js@npm:8.57.1" + checksum: 2afb77454c06e8316793d2e8e79a0154854d35e6782a1217da274ca60b5044d2c69d6091155234ed0551a1e408f86f09dd4ece02752c59568fa403e60611e880 languageName: node linkType: hard @@ -383,14 +372,14 @@ __metadata: languageName: node linkType: hard -"@humanwhocodes/config-array@npm:^0.11.14": - version: 0.11.14 - resolution: "@humanwhocodes/config-array@npm:0.11.14" +"@humanwhocodes/config-array@npm:^0.13.0": + version: 0.13.0 + resolution: "@humanwhocodes/config-array@npm:0.13.0" dependencies: - "@humanwhocodes/object-schema": ^2.0.2 + "@humanwhocodes/object-schema": ^2.0.3 debug: ^4.3.1 minimatch: ^3.0.5 - checksum: 861ccce9eaea5de19546653bccf75bf09fe878bc39c3aab00aeee2d2a0e654516adad38dd1098aab5e3af0145bbcbf3f309bdf4d964f8dab9dcd5834ae4c02f2 + checksum: eae69ff9134025dd2924f0b430eb324981494be26f0fddd267a33c28711c4db643242cf9fddf7dadb9d16c96b54b2d2c073e60a56477df86e0173149313bd5d6 languageName: node linkType: hard @@ -401,7 +390,7 @@ __metadata: languageName: node linkType: hard -"@humanwhocodes/object-schema@npm:^2.0.2": +"@humanwhocodes/object-schema@npm:^2.0.3": version: 2.0.3 resolution: "@humanwhocodes/object-schema@npm:2.0.3" checksum: d3b78f6c5831888c6ecc899df0d03bcc25d46f3ad26a11d7ea52944dc36a35ef543fad965322174238d677a43d5c694434f6607532cff7077062513ad7022631 @@ -474,32 +463,31 @@ __metadata: languageName: node linkType: hard -"@jupyter/react-components@npm:^0.15.3": - version: 0.15.3 - resolution: "@jupyter/react-components@npm:0.15.3" +"@jupyter/react-components@npm:^0.16.6": + version: 0.16.7 + resolution: "@jupyter/react-components@npm:0.16.7" dependencies: - "@jupyter/web-components": ^0.15.3 - "@microsoft/fast-react-wrapper": ^0.3.22 + "@jupyter/web-components": ^0.16.7 react: ">=17.0.0 <19.0.0" - checksum: 1a6b256314259c6465c4b6d958575710536b82234a7bf0fba3e889a07e1f19ff8ab321450be354359876f92c45dbcc9d21a840237ff4a619806d9de696f55496 + checksum: 37894347e63ebb528725e8b8b4038d138019823f5c9e28e3f6abb93b46d771b2ee3cc004d5ff7d9a06a93f2d90e41000bd2abae14364be34ba99c5e05864810e languageName: node linkType: hard -"@jupyter/web-components@npm:^0.15.3": - version: 0.15.3 - resolution: "@jupyter/web-components@npm:0.15.3" +"@jupyter/web-components@npm:^0.16.6, @jupyter/web-components@npm:^0.16.7": + version: 0.16.7 + resolution: "@jupyter/web-components@npm:0.16.7" dependencies: "@microsoft/fast-colors": ^5.3.1 "@microsoft/fast-element": ^1.12.0 "@microsoft/fast-foundation": ^2.49.4 "@microsoft/fast-web-utilities": ^5.4.1 - checksum: a0980af934157bfdbdb6cc169c0816c1b2e57602d524c56bdcef746a4c25dfeb8f505150d83207c8695ed89b5486cf53d35a3382584d25ef64db666e4e16e45b + checksum: ec3336247bbabb2e2587c2cf8b9d0e80786b454916dd600b3d6791bf08c3d1e45a7ec1becf366a5491ab56b0be020baa8c50a5b6067961faf5ec904de31243aa languageName: node linkType: hard -"@jupyter/ydoc@npm:^2.0.1": - version: 2.1.1 - resolution: "@jupyter/ydoc@npm:2.1.1" +"@jupyter/ydoc@npm:^3.0.0": + version: 3.0.0 + resolution: "@jupyter/ydoc@npm:3.0.0" dependencies: "@jupyterlab/nbformat": ^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0 "@lumino/coreutils": ^1.11.0 || ^2.0.0 @@ -507,97 +495,97 @@ __metadata: "@lumino/signaling": ^1.10.0 || ^2.0.0 y-protocols: ^1.0.5 yjs: ^13.5.40 - checksum: f10268d4d990f454279e3908a172755ed5885fa81bb70c31bdf66923598b283d26491741bece137d1c348619861e9b7f8354296773fe5352b1915e69101a9fb0 + checksum: e9419a461f33d2685db346b19806865fe37f61b2ca33eb39c4ea905d765794a928442adf1bbffda67b665bdeba3be9a082189a57eaab5367aeaf6b57caeda822 languageName: node linkType: hard -"@jupyterlab/application@npm:^4.2.0": - version: 4.2.5 - resolution: "@jupyterlab/application@npm:4.2.5" +"@jupyterlab/application@npm:^4.3.0": + version: 4.3.0 + resolution: "@jupyterlab/application@npm:4.3.0" dependencies: "@fortawesome/fontawesome-free": ^5.12.0 - "@jupyterlab/apputils": ^4.3.5 - "@jupyterlab/coreutils": ^6.2.5 - "@jupyterlab/docregistry": ^4.2.5 - "@jupyterlab/rendermime": ^4.2.5 - "@jupyterlab/rendermime-interfaces": ^3.10.5 - "@jupyterlab/services": ^7.2.5 - "@jupyterlab/statedb": ^4.2.5 - "@jupyterlab/translation": ^4.2.5 - "@jupyterlab/ui-components": ^4.2.5 - "@lumino/algorithm": ^2.0.1 - "@lumino/application": ^2.3.1 - "@lumino/commands": ^2.3.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.2 - checksum: c424ea191ef4da45eeae44e366e2b3cb23426cc72c0321226c83000c02b91fa7c4bc54978aa0b0e9416211cce9c17469204fc2b133cb2bec3d8896a0b2f75ce1 - languageName: node - linkType: hard - -"@jupyterlab/apputils@npm:^4.2.0, @jupyterlab/apputils@npm:^4.3.5": - version: 4.3.5 - resolution: "@jupyterlab/apputils@npm:4.3.5" - dependencies: - "@jupyterlab/coreutils": ^6.2.5 - "@jupyterlab/observables": ^5.2.5 - "@jupyterlab/rendermime-interfaces": ^3.10.5 - "@jupyterlab/services": ^7.2.5 - "@jupyterlab/settingregistry": ^4.2.5 - "@jupyterlab/statedb": ^4.2.5 - "@jupyterlab/statusbar": ^4.2.5 - "@jupyterlab/translation": ^4.2.5 - "@jupyterlab/ui-components": ^4.2.5 - "@lumino/algorithm": ^2.0.1 - "@lumino/commands": ^2.3.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.2 + "@jupyterlab/apputils": ^4.4.0 + "@jupyterlab/coreutils": ^6.3.0 + "@jupyterlab/docregistry": ^4.3.0 + "@jupyterlab/rendermime": ^4.3.0 + "@jupyterlab/rendermime-interfaces": ^3.11.0 + "@jupyterlab/services": ^7.3.0 + "@jupyterlab/statedb": ^4.3.0 + "@jupyterlab/translation": ^4.3.0 + "@jupyterlab/ui-components": ^4.3.0 + "@lumino/algorithm": ^2.0.2 + "@lumino/application": ^2.4.1 + "@lumino/commands": ^2.3.1 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/messaging": ^2.0.2 + "@lumino/polling": ^2.1.3 + "@lumino/properties": ^2.0.2 + "@lumino/signaling": ^2.1.3 + "@lumino/widgets": ^2.5.0 + checksum: 1c5b0dd78074f900bbf8132be07e290f5d4ccecab136ce499db11c2926d6e2755e73666ee3c5a3ce43153f697a0644fecf65d31394bc0f84a58e2a3e3df3512f + languageName: node + linkType: hard + +"@jupyterlab/apputils@npm:^4.4.0": + version: 4.4.0 + resolution: "@jupyterlab/apputils@npm:4.4.0" + dependencies: + "@jupyterlab/coreutils": ^6.3.0 + "@jupyterlab/observables": ^5.3.0 + "@jupyterlab/rendermime-interfaces": ^3.11.0 + "@jupyterlab/services": ^7.3.0 + "@jupyterlab/settingregistry": ^4.3.0 + "@jupyterlab/statedb": ^4.3.0 + "@jupyterlab/statusbar": ^4.3.0 + "@jupyterlab/translation": ^4.3.0 + "@jupyterlab/ui-components": ^4.3.0 + "@lumino/algorithm": ^2.0.2 + "@lumino/commands": ^2.3.1 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/domutils": ^2.0.2 + "@lumino/messaging": ^2.0.2 + "@lumino/signaling": ^2.1.3 + "@lumino/virtualdom": ^2.0.2 + "@lumino/widgets": ^2.5.0 "@types/react": ^18.0.26 react: ^18.2.0 sanitize-html: ~2.12.1 - checksum: a2307657bfab1aff687eccfdb7a2c378a40989beea618ad6e5a811dbd250753588ea704a11250ddef42a551c8360717c1fe4c8827c5e2c3bfff1e84fc7fdc836 + checksum: d4064ab3eb7583dd176c77b15f0619aeb4249ebf4a6d7088f473658ea876414625232955885cfe98668a75228c151ce112a7474b4e87e52732ebae93713f5d4f languageName: node linkType: hard -"@jupyterlab/attachments@npm:^4.2.5": - version: 4.2.5 - resolution: "@jupyterlab/attachments@npm:4.2.5" +"@jupyterlab/attachments@npm:^4.3.0": + version: 4.3.0 + resolution: "@jupyterlab/attachments@npm:4.3.0" dependencies: - "@jupyterlab/nbformat": ^4.2.5 - "@jupyterlab/observables": ^5.2.5 - "@jupyterlab/rendermime": ^4.2.5 - "@jupyterlab/rendermime-interfaces": ^3.10.5 - "@lumino/disposable": ^2.1.2 - "@lumino/signaling": ^2.1.2 - checksum: f49fc50f9889de9c7da88e004ae4dd562460da050ff373c946ec54863fcf293dacb5e15de57dbfb0b01141648989a873188a00b898cbb491bbd6c50140a0392c + "@jupyterlab/nbformat": ^4.3.0 + "@jupyterlab/observables": ^5.3.0 + "@jupyterlab/rendermime": ^4.3.0 + "@jupyterlab/rendermime-interfaces": ^3.11.0 + "@lumino/disposable": ^2.1.3 + "@lumino/signaling": ^2.1.3 + checksum: 0bb8cbe4a746938d24d526ca072f77fa740b2263114dcfe7e71ac0638922398f3a60341da405f160dc56aff72d3b339428a13b1664913ef2352bb86d2eb6971d languageName: node linkType: hard -"@jupyterlab/builder@npm:^4.2.0": - version: 4.2.5 - resolution: "@jupyterlab/builder@npm:4.2.5" +"@jupyterlab/builder@npm:^4.3.0": + version: 4.3.0 + resolution: "@jupyterlab/builder@npm:4.3.0" dependencies: - "@lumino/algorithm": ^2.0.1 - "@lumino/application": ^2.3.1 - "@lumino/commands": ^2.3.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/domutils": ^2.0.1 - "@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.2 + "@lumino/algorithm": ^2.0.2 + "@lumino/application": ^2.4.1 + "@lumino/commands": ^2.3.1 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/domutils": ^2.0.2 + "@lumino/dragdrop": ^2.1.5 + "@lumino/messaging": ^2.0.2 + "@lumino/properties": ^2.0.2 + "@lumino/signaling": ^2.1.3 + "@lumino/virtualdom": ^2.0.2 + "@lumino/widgets": ^2.5.0 ajv: ^8.12.0 commander: ^9.4.1 css-loader: ^6.7.1 @@ -619,509 +607,510 @@ __metadata: worker-loader: ^3.0.2 bin: build-labextension: lib/build-labextension.js - checksum: 67d7150a52cd647cfb1a1b1217223389dd2ce1169bf7aa3a5ea8b7d73e2589e6699181cfd488de88362ff8f46682a4e875c545836733d37b19217ae3068d876c + checksum: d9d7f6ca21f465f632361b1afdff11ea5ce32f17a118df6904dd7cacdc8523e5055c34a45cec6888e07a5a57fec53702e7e84a96668126c1cb7fa2e2390ca3d4 languageName: node linkType: hard -"@jupyterlab/cells@npm:^4.2.5": - version: 4.2.5 - resolution: "@jupyterlab/cells@npm:4.2.5" +"@jupyterlab/cells@npm:^4.3.0": + version: 4.3.0 + resolution: "@jupyterlab/cells@npm:4.3.0" dependencies: "@codemirror/state": ^6.4.1 - "@codemirror/view": ^6.26.0 - "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/apputils": ^4.3.5 - "@jupyterlab/attachments": ^4.2.5 - "@jupyterlab/codeeditor": ^4.2.5 - "@jupyterlab/codemirror": ^4.2.5 - "@jupyterlab/coreutils": ^6.2.5 - "@jupyterlab/documentsearch": ^4.2.5 - "@jupyterlab/filebrowser": ^4.2.5 - "@jupyterlab/nbformat": ^4.2.5 - "@jupyterlab/observables": ^5.2.5 - "@jupyterlab/outputarea": ^4.2.5 - "@jupyterlab/rendermime": ^4.2.5 - "@jupyterlab/services": ^7.2.5 - "@jupyterlab/toc": ^6.2.5 - "@jupyterlab/translation": ^4.2.5 - "@jupyterlab/ui-components": ^4.2.5 - "@lumino/algorithm": ^2.0.1 - "@lumino/coreutils": ^2.1.2 - "@lumino/domutils": ^2.0.1 - "@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.2 + "@codemirror/view": ^6.26.3 + "@jupyter/ydoc": ^3.0.0 + "@jupyterlab/apputils": ^4.4.0 + "@jupyterlab/attachments": ^4.3.0 + "@jupyterlab/codeeditor": ^4.3.0 + "@jupyterlab/codemirror": ^4.3.0 + "@jupyterlab/coreutils": ^6.3.0 + "@jupyterlab/documentsearch": ^4.3.0 + "@jupyterlab/filebrowser": ^4.3.0 + "@jupyterlab/nbformat": ^4.3.0 + "@jupyterlab/observables": ^5.3.0 + "@jupyterlab/outputarea": ^4.3.0 + "@jupyterlab/rendermime": ^4.3.0 + "@jupyterlab/services": ^7.3.0 + "@jupyterlab/toc": ^6.3.0 + "@jupyterlab/translation": ^4.3.0 + "@jupyterlab/ui-components": ^4.3.0 + "@lumino/algorithm": ^2.0.2 + "@lumino/coreutils": ^2.2.0 + "@lumino/domutils": ^2.0.2 + "@lumino/dragdrop": ^2.1.5 + "@lumino/messaging": ^2.0.2 + "@lumino/polling": ^2.1.3 + "@lumino/signaling": ^2.1.3 + "@lumino/virtualdom": ^2.0.2 + "@lumino/widgets": ^2.5.0 react: ^18.2.0 - checksum: 6b2f84c0036dbc8808eb6f5057d07dae00d8000fac2f91568ca3f9b6abe30e6724d1be7ce53f085f6e8a93850817316f4e9e2c0e4fb81c3b29e104908a570d3b + checksum: 8550b24d3d9f8866218f18143e92fd7b6c0a5dfdd69e6bd887582b438b6d2c0596f3fe5020117de4721842434dd416336f3eb3d34aea4821d5d253093092b378 languageName: node linkType: hard -"@jupyterlab/codeeditor@npm:^4.2.5": - version: 4.2.5 - resolution: "@jupyterlab/codeeditor@npm:4.2.5" +"@jupyterlab/codeeditor@npm:^4.3.0": + version: 4.3.0 + resolution: "@jupyterlab/codeeditor@npm:4.3.0" dependencies: "@codemirror/state": ^6.4.1 - "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/apputils": ^4.3.5 - "@jupyterlab/coreutils": ^6.2.5 - "@jupyterlab/nbformat": ^4.2.5 - "@jupyterlab/observables": ^5.2.5 - "@jupyterlab/statusbar": ^4.2.5 - "@jupyterlab/translation": ^4.2.5 - "@jupyterlab/ui-components": ^4.2.5 - "@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.2 + "@jupyter/ydoc": ^3.0.0 + "@jupyterlab/apputils": ^4.4.0 + "@jupyterlab/coreutils": ^6.3.0 + "@jupyterlab/nbformat": ^4.3.0 + "@jupyterlab/observables": ^5.3.0 + "@jupyterlab/statusbar": ^4.3.0 + "@jupyterlab/translation": ^4.3.0 + "@jupyterlab/ui-components": ^4.3.0 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/dragdrop": ^2.1.5 + "@lumino/messaging": ^2.0.2 + "@lumino/signaling": ^2.1.3 + "@lumino/widgets": ^2.5.0 react: ^18.2.0 - checksum: 0b6f3f7a1fe02d2bb0b07571e03c6be645d58e182f3e1fcc5452e79dee8eab2097e13544eb461ff2bed72337bd335c539b8cb7cfe5f7bfd840163cc26d200c58 + checksum: 86e1f252ce4d810935a9c3d1e22a74af62547331aa8bf0d973002382517409a1370d2f313f3f59648d816e23f46731ee05bda9e4895e6a4057496a9c70be8de4 languageName: node linkType: hard -"@jupyterlab/codemirror@npm:^4.2.5": - version: 4.2.5 - resolution: "@jupyterlab/codemirror@npm:4.2.5" +"@jupyterlab/codemirror@npm:^4.3.0": + version: 4.3.0 + resolution: "@jupyterlab/codemirror@npm:4.3.0" dependencies: - "@codemirror/autocomplete": ^6.15.0 - "@codemirror/commands": ^6.3.3 + "@codemirror/autocomplete": ^6.16.0 + "@codemirror/commands": ^6.5.0 "@codemirror/lang-cpp": ^6.0.2 "@codemirror/lang-css": ^6.2.1 - "@codemirror/lang-html": ^6.4.8 + "@codemirror/lang-html": ^6.4.9 "@codemirror/lang-java": ^6.0.1 "@codemirror/lang-javascript": ^6.2.2 "@codemirror/lang-json": ^6.0.1 - "@codemirror/lang-markdown": ^6.2.4 + "@codemirror/lang-markdown": ^6.2.5 "@codemirror/lang-php": ^6.0.1 - "@codemirror/lang-python": ^6.1.4 + "@codemirror/lang-python": ^6.1.6 "@codemirror/lang-rust": ^6.0.1 - "@codemirror/lang-sql": ^6.6.1 + "@codemirror/lang-sql": ^6.6.4 "@codemirror/lang-wast": ^6.0.2 "@codemirror/lang-xml": ^6.1.0 "@codemirror/language": ^6.10.1 - "@codemirror/legacy-modes": ^6.3.3 + "@codemirror/legacy-modes": ^6.4.0 "@codemirror/search": ^6.5.6 "@codemirror/state": ^6.4.1 - "@codemirror/view": ^6.26.0 - "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/codeeditor": ^4.2.5 - "@jupyterlab/coreutils": ^6.2.5 - "@jupyterlab/documentsearch": ^4.2.5 - "@jupyterlab/nbformat": ^4.2.5 - "@jupyterlab/translation": ^4.2.5 + "@codemirror/view": ^6.26.3 + "@jupyter/ydoc": ^3.0.0 + "@jupyterlab/codeeditor": ^4.3.0 + "@jupyterlab/coreutils": ^6.3.0 + "@jupyterlab/documentsearch": ^4.3.0 + "@jupyterlab/nbformat": ^4.3.0 + "@jupyterlab/translation": ^4.3.0 "@lezer/common": ^1.2.1 "@lezer/generator": ^1.7.0 "@lezer/highlight": ^1.2.0 - "@lezer/markdown": ^1.2.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/signaling": ^2.1.2 + "@lezer/markdown": ^1.3.0 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/signaling": ^2.1.3 yjs: ^13.5.40 - checksum: 6c612c861dbc6a6acdc1887e7dd25d5029d1a40cda20735fb3f009867e27aacd0e2d05e9b01c71b3a6f9a35218d881159954e679806b118df24d90565b9c16c4 + checksum: da0e0aa9d2b9479950705f9df926afcd833a8baeb4e3da32153ec09ede9f9d7f7b9222263251fb63ca93a29aa985205e91f109453f67ad876cdeec1e1f600051 languageName: node linkType: hard -"@jupyterlab/completer@npm:^4.2.0": - version: 4.2.5 - resolution: "@jupyterlab/completer@npm:4.2.5" +"@jupyterlab/completer@npm:^4.3.0": + version: 4.3.0 + resolution: "@jupyterlab/completer@npm:4.3.0" dependencies: "@codemirror/state": ^6.4.1 - "@codemirror/view": ^6.26.0 - "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/apputils": ^4.3.5 - "@jupyterlab/codeeditor": ^4.2.5 - "@jupyterlab/codemirror": ^4.2.5 - "@jupyterlab/coreutils": ^6.2.5 - "@jupyterlab/rendermime": ^4.2.5 - "@jupyterlab/services": ^7.2.5 - "@jupyterlab/settingregistry": ^4.2.5 - "@jupyterlab/statedb": ^4.2.5 - "@jupyterlab/translation": ^4.2.5 - "@jupyterlab/ui-components": ^4.2.5 - "@lumino/algorithm": ^2.0.1 - "@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/widgets": ^2.3.2 - checksum: e16d5001b2ffde6e51cf5b5221cb9f812e09142fdb3166204f9fbb1e51d3f814707bf5c3955b3378c968c25cbe39ceedf4221f68d8f75999908621b8e28f98e8 - languageName: node - linkType: hard - -"@jupyterlab/coreutils@npm:^6.2.0, @jupyterlab/coreutils@npm:^6.2.5": - version: 6.2.5 - resolution: "@jupyterlab/coreutils@npm:6.2.5" - dependencies: - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/signaling": ^2.1.2 + "@codemirror/view": ^6.26.3 + "@jupyter/ydoc": ^3.0.0 + "@jupyterlab/apputils": ^4.4.0 + "@jupyterlab/codeeditor": ^4.3.0 + "@jupyterlab/codemirror": ^4.3.0 + "@jupyterlab/coreutils": ^6.3.0 + "@jupyterlab/rendermime": ^4.3.0 + "@jupyterlab/services": ^7.3.0 + "@jupyterlab/settingregistry": ^4.3.0 + "@jupyterlab/statedb": ^4.3.0 + "@jupyterlab/translation": ^4.3.0 + "@jupyterlab/ui-components": ^4.3.0 + "@lumino/algorithm": ^2.0.2 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/domutils": ^2.0.2 + "@lumino/messaging": ^2.0.2 + "@lumino/signaling": ^2.1.3 + "@lumino/widgets": ^2.5.0 + checksum: 39d34c1b56f44a6b0977234241087ab041e95186d7cc6b2d48931e92e2eaafb72835c833f464485f87855d1413df23f15237467365a286a3c9949b27b6b4119d + languageName: node + linkType: hard + +"@jupyterlab/coreutils@npm:^6.3.0": + version: 6.3.0 + resolution: "@jupyterlab/coreutils@npm:6.3.0" + dependencies: + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/signaling": ^2.1.3 minimist: ~1.2.0 path-browserify: ^1.0.0 url-parse: ~1.5.4 - checksum: 3b6a10b117ee82a437b6535801fe012bb5af7769a850be95c8ffa666ee2d6f7c29041ba546c9cfca0ab32b65f91c661570541f4f785f48af9022d08407c0a3e5 - languageName: node - linkType: hard - -"@jupyterlab/docmanager@npm:^4.2.5": - version: 4.2.5 - resolution: "@jupyterlab/docmanager@npm:4.2.5" - dependencies: - "@jupyterlab/apputils": ^4.3.5 - "@jupyterlab/coreutils": ^6.2.5 - "@jupyterlab/docregistry": ^4.2.5 - "@jupyterlab/services": ^7.2.5 - "@jupyterlab/statedb": ^4.2.5 - "@jupyterlab/statusbar": ^4.2.5 - "@jupyterlab/translation": ^4.2.5 - "@jupyterlab/ui-components": ^4.2.5 - "@lumino/algorithm": ^2.0.1 - "@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.2 + checksum: 9e235685a1a5839a26a4fe44547be6bd1f0788809bd423c6d0d1a2ee09e24885246f5f7085d48db47245f52d138a7352f796c10813efebd70e38e6af11186122 + languageName: node + linkType: hard + +"@jupyterlab/docmanager@npm:^4.3.0": + version: 4.3.0 + resolution: "@jupyterlab/docmanager@npm:4.3.0" + dependencies: + "@jupyterlab/apputils": ^4.4.0 + "@jupyterlab/coreutils": ^6.3.0 + "@jupyterlab/docregistry": ^4.3.0 + "@jupyterlab/services": ^7.3.0 + "@jupyterlab/statedb": ^4.3.0 + "@jupyterlab/statusbar": ^4.3.0 + "@jupyterlab/translation": ^4.3.0 + "@jupyterlab/ui-components": ^4.3.0 + "@lumino/algorithm": ^2.0.2 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/messaging": ^2.0.2 + "@lumino/polling": ^2.1.3 + "@lumino/properties": ^2.0.2 + "@lumino/signaling": ^2.1.3 + "@lumino/widgets": ^2.5.0 react: ^18.2.0 - checksum: 0fa3fcbdccab2dfc5d9075dbd7fdf9a15c912843a3ed18c83248fd867d6f4c493c40f88964a406396fc335f60dc71e99df7465f38a94e7210bbdd209ae752d0c - languageName: node - linkType: hard - -"@jupyterlab/docregistry@npm:^4.2.5": - version: 4.2.5 - resolution: "@jupyterlab/docregistry@npm:4.2.5" - dependencies: - "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/apputils": ^4.3.5 - "@jupyterlab/codeeditor": ^4.2.5 - "@jupyterlab/coreutils": ^6.2.5 - "@jupyterlab/observables": ^5.2.5 - "@jupyterlab/rendermime": ^4.2.5 - "@jupyterlab/rendermime-interfaces": ^3.10.5 - "@jupyterlab/services": ^7.2.5 - "@jupyterlab/translation": ^4.2.5 - "@jupyterlab/ui-components": ^4.2.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.2 + checksum: 64a4196be2b84049b2b1b1d1d92fafd6cbb3da5e03ae8e85b65ac2c8cf7326d6a230b745287893adabad69bc1bc4f93278f9b1301d9575f2ef4e5ad2947c2068 + languageName: node + linkType: hard + +"@jupyterlab/docregistry@npm:^4.3.0": + version: 4.3.0 + resolution: "@jupyterlab/docregistry@npm:4.3.0" + dependencies: + "@jupyter/ydoc": ^3.0.0 + "@jupyterlab/apputils": ^4.4.0 + "@jupyterlab/codeeditor": ^4.3.0 + "@jupyterlab/coreutils": ^6.3.0 + "@jupyterlab/observables": ^5.3.0 + "@jupyterlab/rendermime": ^4.3.0 + "@jupyterlab/rendermime-interfaces": ^3.11.0 + "@jupyterlab/services": ^7.3.0 + "@jupyterlab/translation": ^4.3.0 + "@jupyterlab/ui-components": ^4.3.0 + "@lumino/algorithm": ^2.0.2 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/messaging": ^2.0.2 + "@lumino/properties": ^2.0.2 + "@lumino/signaling": ^2.1.3 + "@lumino/widgets": ^2.5.0 react: ^18.2.0 - checksum: 7e93987f4c6cd82058231c10c69a66aba38913c73f425a01c565a45e330e20dcb6f80489d3bd35d78b5b36a7798ed50485635fae3317b5c87d75ce30a144827e + checksum: 37a0c05025a484049fa15013ffd17fe801768cbb80bac5f2152613511da0d7e7980876e7d677caef392d016967c2f119757e0b9362d178e18a9440a4210586fd languageName: node linkType: hard -"@jupyterlab/documentsearch@npm:^4.2.5": - version: 4.2.5 - resolution: "@jupyterlab/documentsearch@npm:4.2.5" +"@jupyterlab/documentsearch@npm:^4.3.0": + version: 4.3.0 + resolution: "@jupyterlab/documentsearch@npm:4.3.0" dependencies: - "@jupyterlab/apputils": ^4.3.5 - "@jupyterlab/translation": ^4.2.5 - "@jupyterlab/ui-components": ^4.2.5 - "@lumino/commands": ^2.3.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.2 + "@jupyterlab/apputils": ^4.4.0 + "@jupyterlab/translation": ^4.3.0 + "@jupyterlab/ui-components": ^4.3.0 + "@lumino/commands": ^2.3.1 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/messaging": ^2.0.2 + "@lumino/polling": ^2.1.3 + "@lumino/signaling": ^2.1.3 + "@lumino/widgets": ^2.5.0 react: ^18.2.0 - checksum: 9f9726b4e779f04c29f5e3dea56c410152607f9c00f60eb1ece03cdcea4bf84d0ab0cfe6500496d9d8da33dbac187df5eda5eafbd840d173953de9b2173e9706 - languageName: node - linkType: hard - -"@jupyterlab/filebrowser@npm:^4.2.5": - version: 4.2.5 - resolution: "@jupyterlab/filebrowser@npm:4.2.5" - dependencies: - "@jupyterlab/apputils": ^4.3.5 - "@jupyterlab/coreutils": ^6.2.5 - "@jupyterlab/docmanager": ^4.2.5 - "@jupyterlab/docregistry": ^4.2.5 - "@jupyterlab/services": ^7.2.5 - "@jupyterlab/statedb": ^4.2.5 - "@jupyterlab/statusbar": ^4.2.5 - "@jupyterlab/translation": ^4.2.5 - "@jupyterlab/ui-components": ^4.2.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.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.2 + checksum: 4ad3a4171f06356be2ec8e67cfbb475da7aa6b46f56cc2f3ccab164ef1986be6194046612504f66c5d91552123db34569241f34977c2f4495b847d03fa0e2485 + languageName: node + linkType: hard + +"@jupyterlab/filebrowser@npm:^4.3.0": + version: 4.3.0 + resolution: "@jupyterlab/filebrowser@npm:4.3.0" + dependencies: + "@jupyterlab/apputils": ^4.4.0 + "@jupyterlab/coreutils": ^6.3.0 + "@jupyterlab/docmanager": ^4.3.0 + "@jupyterlab/docregistry": ^4.3.0 + "@jupyterlab/services": ^7.3.0 + "@jupyterlab/statedb": ^4.3.0 + "@jupyterlab/statusbar": ^4.3.0 + "@jupyterlab/translation": ^4.3.0 + "@jupyterlab/ui-components": ^4.3.0 + "@lumino/algorithm": ^2.0.2 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/domutils": ^2.0.2 + "@lumino/dragdrop": ^2.1.5 + "@lumino/messaging": ^2.0.2 + "@lumino/polling": ^2.1.3 + "@lumino/signaling": ^2.1.3 + "@lumino/virtualdom": ^2.0.2 + "@lumino/widgets": ^2.5.0 react: ^18.2.0 - checksum: bce079263a141c76ec0a28be0d662c0a627ceaa12bcbe13be97a40f99abf37838fc87284701da1f6a7dce0be82f7322c8530f9fd9b3d1f4f253da5ddfa2e04ff + checksum: 1f46cd15c6248df348542db1675ec8011d5ee3a0372a2e3ac2a942fc432d9b15cd7222c49386131fbdbbab79af47bd72ca855fd07f8ce1eba30f2e899c1dbc32 languageName: node linkType: hard -"@jupyterlab/lsp@npm:^4.2.5": - version: 4.2.5 - resolution: "@jupyterlab/lsp@npm:4.2.5" - dependencies: - "@jupyterlab/apputils": ^4.3.5 - "@jupyterlab/codeeditor": ^4.2.5 - "@jupyterlab/codemirror": ^4.2.5 - "@jupyterlab/coreutils": ^6.2.5 - "@jupyterlab/docregistry": ^4.2.5 - "@jupyterlab/services": ^7.2.5 - "@jupyterlab/translation": ^4.2.5 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.2 +"@jupyterlab/lsp@npm:^4.3.0": + version: 4.3.0 + resolution: "@jupyterlab/lsp@npm:4.3.0" + dependencies: + "@jupyterlab/apputils": ^4.4.0 + "@jupyterlab/codeeditor": ^4.3.0 + "@jupyterlab/codemirror": ^4.3.0 + "@jupyterlab/coreutils": ^6.3.0 + "@jupyterlab/docregistry": ^4.3.0 + "@jupyterlab/services": ^7.3.0 + "@jupyterlab/translation": ^4.3.0 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/signaling": ^2.1.3 + "@lumino/widgets": ^2.5.0 lodash.mergewith: ^4.6.1 vscode-jsonrpc: ^6.0.0 vscode-languageserver-protocol: ^3.17.0 vscode-ws-jsonrpc: ~1.0.2 - checksum: 8dfaeb330a6b72b32f8eae6b5d4c3c0ff64203fe5fd69dbfbe15e22c46851a9fbc8c968608e4a6cd887760e194d4e4bb757135aff2df4eaee31acf248d603e9a - languageName: node - linkType: hard - -"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.2.5": - version: 4.2.5 - resolution: "@jupyterlab/nbformat@npm:4.2.5" - dependencies: - "@lumino/coreutils": ^2.1.2 - checksum: b3ad2026969bfa59f8cfb7b1a991419f96f7e6dc8c4acf4ac166c210d7ab99631350c785e9b04350095488965d2824492c8adbff24a2e26db615457545426b3c - languageName: node - linkType: hard - -"@jupyterlab/notebook@npm:^4.2.0": - version: 4.2.5 - resolution: "@jupyterlab/notebook@npm:4.2.5" - dependencies: - "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/apputils": ^4.3.5 - "@jupyterlab/cells": ^4.2.5 - "@jupyterlab/codeeditor": ^4.2.5 - "@jupyterlab/codemirror": ^4.2.5 - "@jupyterlab/coreutils": ^6.2.5 - "@jupyterlab/docregistry": ^4.2.5 - "@jupyterlab/documentsearch": ^4.2.5 - "@jupyterlab/lsp": ^4.2.5 - "@jupyterlab/nbformat": ^4.2.5 - "@jupyterlab/observables": ^5.2.5 - "@jupyterlab/rendermime": ^4.2.5 - "@jupyterlab/services": ^7.2.5 - "@jupyterlab/settingregistry": ^4.2.5 - "@jupyterlab/statusbar": ^4.2.5 - "@jupyterlab/toc": ^6.2.5 - "@jupyterlab/translation": ^4.2.5 - "@jupyterlab/ui-components": ^4.2.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.4 - "@lumino/messaging": ^2.0.1 - "@lumino/polling": ^2.1.2 - "@lumino/properties": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/virtualdom": ^2.0.1 - "@lumino/widgets": ^2.3.2 - react: ^18.2.0 - checksum: 1c91b42e890407574451903af7d48db8c216fa9e27ecc4e60ee76366572029ff73be3974085427b72eaedf67e718a7d4f93207f7b66dd3cf27a0b51172ca7727 + checksum: ea29de972097d296a05b5cf347822f3d9c295fa8be2c3b89147288ca1f9fca12c15df955d1374dc66184fdad3af1acd8cb115187be4eb6024f1e25d5f2b1c8c0 languageName: node linkType: hard -"@jupyterlab/observables@npm:^5.2.5": - version: 5.2.5 - resolution: "@jupyterlab/observables@npm:5.2.5" +"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.3.0": + version: 4.3.0 + resolution: "@jupyterlab/nbformat@npm:4.3.0" 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: 21fd2828463c08a770714692ff44aeca500f8ea8f3a743ad203a61fbf04cfa81921a47b432d8e65f4935fb45c08fce2b8858cb7e2198cc9bf0fa51f482ec37bd + "@lumino/coreutils": ^2.2.0 + checksum: 52e23a2568bf01741196321a5960c13b86ab55318a2e3a3ebde71fc1b89347279acd342a4cddf6ab8b47a4cc3cdd8fe03f206f68115a9d6ac433b0b0582c13ed languageName: node linkType: hard -"@jupyterlab/outputarea@npm:^4.2.5": - version: 4.2.5 - resolution: "@jupyterlab/outputarea@npm:4.2.5" - dependencies: - "@jupyterlab/apputils": ^4.3.5 - "@jupyterlab/nbformat": ^4.2.5 - "@jupyterlab/observables": ^5.2.5 - "@jupyterlab/rendermime": ^4.2.5 - "@jupyterlab/rendermime-interfaces": ^3.10.5 - "@jupyterlab/services": ^7.2.5 - "@jupyterlab/translation": ^4.2.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.2 - checksum: 0e2834244dfc12491d7207e9749c92caaa44424e5541cb227f5933a61884e6d42c67791f5c8982cbefebf6b7ce94fe595e633571d9ebc381dd130616899a4291 +"@jupyterlab/notebook@npm:^4.3.0": + version: 4.3.0 + resolution: "@jupyterlab/notebook@npm:4.3.0" + dependencies: + "@jupyter/ydoc": ^3.0.0 + "@jupyterlab/apputils": ^4.4.0 + "@jupyterlab/cells": ^4.3.0 + "@jupyterlab/codeeditor": ^4.3.0 + "@jupyterlab/codemirror": ^4.3.0 + "@jupyterlab/coreutils": ^6.3.0 + "@jupyterlab/docregistry": ^4.3.0 + "@jupyterlab/documentsearch": ^4.3.0 + "@jupyterlab/lsp": ^4.3.0 + "@jupyterlab/nbformat": ^4.3.0 + "@jupyterlab/observables": ^5.3.0 + "@jupyterlab/rendermime": ^4.3.0 + "@jupyterlab/services": ^7.3.0 + "@jupyterlab/settingregistry": ^4.3.0 + "@jupyterlab/statusbar": ^4.3.0 + "@jupyterlab/toc": ^6.3.0 + "@jupyterlab/translation": ^4.3.0 + "@jupyterlab/ui-components": ^4.3.0 + "@lumino/algorithm": ^2.0.2 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/domutils": ^2.0.2 + "@lumino/dragdrop": ^2.1.5 + "@lumino/messaging": ^2.0.2 + "@lumino/polling": ^2.1.3 + "@lumino/properties": ^2.0.2 + "@lumino/signaling": ^2.1.3 + "@lumino/virtualdom": ^2.0.2 + "@lumino/widgets": ^2.5.0 + react: ^18.2.0 + checksum: 58086e9d3e96fb71955023613d3caa8f0ed1fd7f12f73029e4a5ddc2616dc2e0085216bca99f0914ca504db7d3a85f6da6b818631c9bccaa46259db00d4814f4 languageName: node linkType: hard -"@jupyterlab/rendermime-interfaces@npm:^3.10.5": - version: 3.10.5 - resolution: "@jupyterlab/rendermime-interfaces@npm:3.10.5" +"@jupyterlab/observables@npm:^5.3.0": + version: 5.3.0 + resolution: "@jupyterlab/observables@npm:5.3.0" dependencies: - "@lumino/coreutils": ^1.11.0 || ^2.1.2 - "@lumino/widgets": ^1.37.2 || ^2.3.2 - checksum: acfb10315a3ed4d0b0ef664437b33f8938968c61993351fd4067b0eaf6cb6ccd4c5caf50ae050d184a34b35b88d844eee6689d00244e54a02b228c02eab544b4 + "@lumino/algorithm": ^2.0.2 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/messaging": ^2.0.2 + "@lumino/signaling": ^2.1.3 + checksum: 8d1c5e6eebeebe8fe45098531c9be9b3f0f0f3ec153203746fba233fe74db028f93261f11e0897a020ac0ae6872e7c3e03c4365678663bbbe4f0125b89174f37 languageName: node linkType: hard -"@jupyterlab/rendermime@npm:^4.2.5": - version: 4.2.5 - resolution: "@jupyterlab/rendermime@npm:4.2.5" +"@jupyterlab/outputarea@npm:^4.3.0": + version: 4.3.0 + resolution: "@jupyterlab/outputarea@npm:4.3.0" + dependencies: + "@jupyterlab/apputils": ^4.4.0 + "@jupyterlab/nbformat": ^4.3.0 + "@jupyterlab/observables": ^5.3.0 + "@jupyterlab/rendermime": ^4.3.0 + "@jupyterlab/rendermime-interfaces": ^3.11.0 + "@jupyterlab/services": ^7.3.0 + "@jupyterlab/translation": ^4.3.0 + "@lumino/algorithm": ^2.0.2 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/messaging": ^2.0.2 + "@lumino/properties": ^2.0.2 + "@lumino/signaling": ^2.1.3 + "@lumino/widgets": ^2.5.0 + checksum: 313f964056a63cd04227c4bc6d71f16b71ddf475f5ac63c8b15147327f2fc1c7023c631d687a8eae8b81b647e6c305d34be1a4aaf7dc2cd1fb44b947da6c239b + languageName: node + linkType: hard + +"@jupyterlab/rendermime-interfaces@npm:^3.11.0": + version: 3.11.0 + resolution: "@jupyterlab/rendermime-interfaces@npm:3.11.0" dependencies: - "@jupyterlab/apputils": ^4.3.5 - "@jupyterlab/coreutils": ^6.2.5 - "@jupyterlab/nbformat": ^4.2.5 - "@jupyterlab/observables": ^5.2.5 - "@jupyterlab/rendermime-interfaces": ^3.10.5 - "@jupyterlab/services": ^7.2.5 - "@jupyterlab/translation": ^4.2.5 - "@lumino/coreutils": ^2.1.2 - "@lumino/messaging": ^2.0.1 - "@lumino/signaling": ^2.1.2 - "@lumino/widgets": ^2.3.2 + "@lumino/coreutils": ^1.11.0 || ^2.2.0 + "@lumino/widgets": ^1.37.2 || ^2.5.0 + checksum: ef31fb5b621a83c5080e68cbd12c086bc7f9dc21c84e04f38808e9f5da079367d3c75ab7af09d2a3afc9e588511f905c77ac50b8e2cbd98d0c3b3e748716d7f7 + languageName: node + linkType: hard + +"@jupyterlab/rendermime@npm:^4.3.0": + version: 4.3.0 + resolution: "@jupyterlab/rendermime@npm:4.3.0" + dependencies: + "@jupyterlab/apputils": ^4.4.0 + "@jupyterlab/coreutils": ^6.3.0 + "@jupyterlab/nbformat": ^4.3.0 + "@jupyterlab/observables": ^5.3.0 + "@jupyterlab/rendermime-interfaces": ^3.11.0 + "@jupyterlab/services": ^7.3.0 + "@jupyterlab/translation": ^4.3.0 + "@lumino/coreutils": ^2.2.0 + "@lumino/messaging": ^2.0.2 + "@lumino/signaling": ^2.1.3 + "@lumino/widgets": ^2.5.0 lodash.escape: ^4.0.1 - checksum: e3e68c66306dc4bc7d4497d017e9e32cbfacfdc3ba14da6dfa6d7dbd328a3e8d5b710260365a06cd508209393e21985e7a69d0a160e239e4fdc1f0eb0874f35c + checksum: 84237267b19fbc18e3a6f3797d291de5b16b44583e3cbda282dbd6990612b5d64150a3b1ac6ad77092c9294b866d47a4f1972fe54617c8adeaadb7e0662d691f languageName: node linkType: hard -"@jupyterlab/services@npm:^7.2.0, @jupyterlab/services@npm:^7.2.5": - version: 7.2.5 - resolution: "@jupyterlab/services@npm:7.2.5" +"@jupyterlab/services@npm:^7.3.0": + version: 7.3.0 + resolution: "@jupyterlab/services@npm:7.3.0" dependencies: - "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/coreutils": ^6.2.5 - "@jupyterlab/nbformat": ^4.2.5 - "@jupyterlab/settingregistry": ^4.2.5 - "@jupyterlab/statedb": ^4.2.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 + "@jupyter/ydoc": ^3.0.0 + "@jupyterlab/coreutils": ^6.3.0 + "@jupyterlab/nbformat": ^4.3.0 + "@jupyterlab/settingregistry": ^4.3.0 + "@jupyterlab/statedb": ^4.3.0 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/polling": ^2.1.3 + "@lumino/properties": ^2.0.2 + "@lumino/signaling": ^2.1.3 ws: ^8.11.0 - checksum: 72d7578a86af1277b574095423fafb4176bc66373662fdc0e243a7d20e4baf8f291377b6c80300841dba6486767f16664f0e893174c2761658aedb74024e1db6 + checksum: 949a7452f7fdbc97efc63452db26b5f906595e40b1f6b7164e4e8f5fb8136f47fee703c7c9ef75313b6863552e68ce67d51bddd57b8ff6e9712a1a1e62724fe1 languageName: node linkType: hard -"@jupyterlab/settingregistry@npm:^4.2.0, @jupyterlab/settingregistry@npm:^4.2.5": - version: 4.2.5 - resolution: "@jupyterlab/settingregistry@npm:4.2.5" +"@jupyterlab/settingregistry@npm:^4.3.0": + version: 4.3.0 + resolution: "@jupyterlab/settingregistry@npm:4.3.0" dependencies: - "@jupyterlab/nbformat": ^4.2.5 - "@jupyterlab/statedb": ^4.2.5 - "@lumino/commands": ^2.3.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/signaling": ^2.1.2 + "@jupyterlab/nbformat": ^4.3.0 + "@jupyterlab/statedb": ^4.3.0 + "@lumino/commands": ^2.3.1 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/signaling": ^2.1.3 "@rjsf/utils": ^5.13.4 ajv: ^8.12.0 json5: ^2.2.3 peerDependencies: react: ">=16" - checksum: 2403e3198f2937fb9e4c12f96121e8bfc4f2a9ed47a9ad64182c88c8c19d59fcdf7443d0bf7d04527e89ac06378ceb39d6b4196c7f575c2a21fea23283ad3892 + checksum: 6a0c47b3be2188e487ec74c3ccd9e199c99a72533367b727a913d45d7096dbbb2757a63e55e5d4a9be51fbd274fe6f5f42ee1a6f021fd6a782885d6d58a3f957 languageName: node linkType: hard -"@jupyterlab/statedb@npm:^4.2.5": - version: 4.2.5 - resolution: "@jupyterlab/statedb@npm:4.2.5" +"@jupyterlab/statedb@npm:^4.3.0": + version: 4.3.0 + resolution: "@jupyterlab/statedb@npm:4.3.0" dependencies: - "@lumino/commands": ^2.3.0 - "@lumino/coreutils": ^2.1.2 - "@lumino/disposable": ^2.1.2 - "@lumino/properties": ^2.0.1 - "@lumino/signaling": ^2.1.2 - checksum: 236e7628070971af167eb4fdeac96a0090b2256cfa14b6a75aee5ef23b156cd57a8b25518125fbdc58dea09490f8f473740bc4b454d8ad7c23949f64a61b757e + "@lumino/commands": ^2.3.1 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/properties": ^2.0.2 + "@lumino/signaling": ^2.1.3 + checksum: 68e1a8bffe41a236d34cb8135e0ebf906e1d087ff71d2f1e135c7cd369c7b5e2e675765d5a0627a2487a831141cb06a9ce880609ec9988b0f7e5a0156f4212f3 languageName: node linkType: hard -"@jupyterlab/statusbar@npm:^4.2.0, @jupyterlab/statusbar@npm:^4.2.5": - version: 4.2.5 - resolution: "@jupyterlab/statusbar@npm:4.2.5" +"@jupyterlab/statusbar@npm:^4.3.0": + version: 4.3.0 + resolution: "@jupyterlab/statusbar@npm:4.3.0" dependencies: - "@jupyterlab/ui-components": ^4.2.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.2 + "@jupyterlab/ui-components": ^4.3.0 + "@lumino/algorithm": ^2.0.2 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/messaging": ^2.0.2 + "@lumino/signaling": ^2.1.3 + "@lumino/widgets": ^2.5.0 react: ^18.2.0 - checksum: fa429b88a5bcd6889b9ac32b5f2500cb10a968cc636ca8dede17972535cc47454cb7fc96518fc8def76935f826b66b071752d0fd26afdacba579f6f3785e97b2 - languageName: node - linkType: hard - -"@jupyterlab/toc@npm:^6.2.5": - version: 6.2.5 - resolution: "@jupyterlab/toc@npm:6.2.5" - dependencies: - "@jupyterlab/apputils": ^4.3.5 - "@jupyterlab/coreutils": ^6.2.5 - "@jupyterlab/docregistry": ^4.2.5 - "@jupyterlab/observables": ^5.2.5 - "@jupyterlab/rendermime": ^4.2.5 - "@jupyterlab/rendermime-interfaces": ^3.10.5 - "@jupyterlab/translation": ^4.2.5 - "@jupyterlab/ui-components": ^4.2.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.2 + checksum: f849b903043056a4eda3f9c6900e598c0bd9b8b30cc7632996ede6104421d49bf10d3421a654c1afe008388b3c58a5dda33e7120ed0483c4fef7d0523153ffff + languageName: node + linkType: hard + +"@jupyterlab/toc@npm:^6.3.0": + version: 6.3.0 + resolution: "@jupyterlab/toc@npm:6.3.0" + dependencies: + "@jupyter/react-components": ^0.16.6 + "@jupyterlab/apputils": ^4.4.0 + "@jupyterlab/coreutils": ^6.3.0 + "@jupyterlab/docregistry": ^4.3.0 + "@jupyterlab/observables": ^5.3.0 + "@jupyterlab/rendermime": ^4.3.0 + "@jupyterlab/rendermime-interfaces": ^3.11.0 + "@jupyterlab/translation": ^4.3.0 + "@jupyterlab/ui-components": ^4.3.0 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/messaging": ^2.0.2 + "@lumino/signaling": ^2.1.3 + "@lumino/widgets": ^2.5.0 react: ^18.2.0 - checksum: 49e856b710369308bdf2cc00c9025fa4c9942d221e8a97c548843113e321e78f4f0ef44115605ba01331732b2f4c2574c0e42ba7b53466c8c52a89ecbf00feb0 - languageName: node - linkType: hard - -"@jupyterlab/translation@npm:^4.2.5": - version: 4.2.5 - resolution: "@jupyterlab/translation@npm:4.2.5" - dependencies: - "@jupyterlab/coreutils": ^6.2.5 - "@jupyterlab/rendermime-interfaces": ^3.10.5 - "@jupyterlab/services": ^7.2.5 - "@jupyterlab/statedb": ^4.2.5 - "@lumino/coreutils": ^2.1.2 - checksum: 8983efad2b0d54381cb94799a10eab30f284a87103f93e844bd87106e2df3c304e260b9c95540317819cc2b2520c74ad78cb724816c81e0c315fdb43d0bdaab3 - languageName: node - linkType: hard - -"@jupyterlab/ui-components@npm:^4.2.0, @jupyterlab/ui-components@npm:^4.2.5": - version: 4.2.5 - resolution: "@jupyterlab/ui-components@npm:4.2.5" - dependencies: - "@jupyter/react-components": ^0.15.3 - "@jupyter/web-components": ^0.15.3 - "@jupyterlab/coreutils": ^6.2.5 - "@jupyterlab/observables": ^5.2.5 - "@jupyterlab/rendermime-interfaces": ^3.10.5 - "@jupyterlab/translation": ^4.2.5 - "@lumino/algorithm": ^2.0.1 - "@lumino/commands": ^2.3.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/virtualdom": ^2.0.1 - "@lumino/widgets": ^2.3.2 + checksum: fde80d1193e245cf31877081f989ba99d7cdcf0f7df0d112d086a495a56567612be37568da4d849128e04e0074b13de5479b3bb71781105b994a5a826f0008cb + languageName: node + linkType: hard + +"@jupyterlab/translation@npm:^4.3.0": + version: 4.3.0 + resolution: "@jupyterlab/translation@npm:4.3.0" + dependencies: + "@jupyterlab/coreutils": ^6.3.0 + "@jupyterlab/rendermime-interfaces": ^3.11.0 + "@jupyterlab/services": ^7.3.0 + "@jupyterlab/statedb": ^4.3.0 + "@lumino/coreutils": ^2.2.0 + checksum: bcd466cdb5a52e0a57f5274bb440098f6fc49c784212654e2bf2e09acd1119538b5e5737fb841496056fa85ca8c49d73a769d598f1f67a1b1235852dbb31766c + languageName: node + linkType: hard + +"@jupyterlab/ui-components@npm:^4.3.0": + version: 4.3.0 + resolution: "@jupyterlab/ui-components@npm:4.3.0" + dependencies: + "@jupyter/react-components": ^0.16.6 + "@jupyter/web-components": ^0.16.6 + "@jupyterlab/coreutils": ^6.3.0 + "@jupyterlab/observables": ^5.3.0 + "@jupyterlab/rendermime-interfaces": ^3.11.0 + "@jupyterlab/translation": ^4.3.0 + "@lumino/algorithm": ^2.0.2 + "@lumino/commands": ^2.3.1 + "@lumino/coreutils": ^2.2.0 + "@lumino/disposable": ^2.1.3 + "@lumino/messaging": ^2.0.2 + "@lumino/polling": ^2.1.3 + "@lumino/properties": ^2.0.2 + "@lumino/signaling": ^2.1.3 + "@lumino/virtualdom": ^2.0.2 + "@lumino/widgets": ^2.5.0 "@rjsf/core": ^5.13.4 "@rjsf/utils": ^5.13.4 react: ^18.2.0 @@ -1129,14 +1118,14 @@ __metadata: typestyle: ^2.0.4 peerDependencies: react: ^18.2.0 - checksum: 9d2b887910a3b0d41645388c5ac6183d6fd2f3af4567de9b077b2492b1a9380f98c4598a4ae6d1c3186624ed4f956bedf8ba37adb5f772c96555761384a93e1e + checksum: e1efefd65fb19aa103897d25d5b898972df52c81857136ecb3dd5b5d49a671076161079fe293ae0d55ed7cfef11c670f549beaf54d88877ff0cf806d0d568041 languageName: node linkType: hard "@lezer/common@npm:^1.0.0, @lezer/common@npm:^1.0.2, @lezer/common@npm:^1.1.0, @lezer/common@npm:^1.2.0, @lezer/common@npm:^1.2.1": - version: 1.2.1 - resolution: "@lezer/common@npm:1.2.1" - checksum: 0bd092e293a509ce334f4aaf9a4d4a25528f743cd9d7e7948c697e34ac703b805b288b62ad01563488fb206fc34ff05084f7fc5d864be775924b3d0d53ea5dd2 + version: 1.2.3 + resolution: "@lezer/common@npm:1.2.3" + checksum: 9b5f52d949adae69d077f56c0b1c2295923108c3dfb241dd9f17654ff708f3eab81ff9fa7f0d0e4a668eabdcb9d961c73e75caca87c966ca1436e30e49130fcb languageName: node linkType: hard @@ -1195,24 +1184,24 @@ __metadata: linkType: hard "@lezer/java@npm:^1.0.0": - version: 1.1.2 - resolution: "@lezer/java@npm:1.1.2" + version: 1.1.3 + resolution: "@lezer/java@npm:1.1.3" dependencies: "@lezer/common": ^1.2.0 "@lezer/highlight": ^1.0.0 "@lezer/lr": ^1.0.0 - checksum: 752e8c9b99cccf022669a702016e0c3a793d8326e043b1d053159f5de4d222cd188e8e31e1427cbe6a8ed8e53de3977ab551c64cbd5a76a12eb3a1da5e18b6a5 + checksum: a4b8a348ab08465cff6e54ec80e397d2629e0911decb4c6a47fd56cd74f6978fae478879b15a2e239203b9e53aef41ecaeba675f8013e290165249abdab7da74 languageName: node linkType: hard "@lezer/javascript@npm:^1.0.0": - version: 1.4.17 - resolution: "@lezer/javascript@npm:1.4.17" + version: 1.4.19 + resolution: "@lezer/javascript@npm:1.4.19" dependencies: "@lezer/common": ^1.2.0 "@lezer/highlight": ^1.1.3 "@lezer/lr": ^1.3.0 - checksum: dfcc4130af0bc681cd1ff6ec655a58e747fd877d8aadad2deba5f84512fa539177ece602c5389f4354c93555d3064737dedbe3384ca48b03c4968126bfd1b9a9 + checksum: e305680dea6659570b88eded0d03eba3d33bb8860f8646b457798da955742916dd9cbe17fe6dd867bdb7767ef6c00717aadd45e520ee0b416bdc5e39046e6459 languageName: node linkType: hard @@ -1236,13 +1225,13 @@ __metadata: languageName: node linkType: hard -"@lezer/markdown@npm:^1.0.0, @lezer/markdown@npm:^1.2.0": - version: 1.3.1 - resolution: "@lezer/markdown@npm:1.3.1" +"@lezer/markdown@npm:^1.0.0, @lezer/markdown@npm:^1.3.0": + version: 1.3.2 + resolution: "@lezer/markdown@npm:1.3.2" dependencies: "@lezer/common": ^1.0.0 "@lezer/highlight": ^1.0.0 - checksum: b5cbb857a90411e174e7ad23433756a81cf2ab422ef749e529211e078ed4061b4595fa8cbcca56119919c0b2735e8ecac11ff34768d64cb90e599fde2bc6c730 + checksum: 080c5e6e13ff227d5a1883dd895ef08d6fc8eb9620eb00f93fe1292dd9a740ec50ccf340f2aab2f522843d26ad2ad991ef029fd93cf09f88e00ef470f1142d15 languageName: node linkType: hard @@ -1290,14 +1279,14 @@ __metadata: languageName: node linkType: hard -"@lumino/algorithm@npm:^2.0.1, @lumino/algorithm@npm:^2.0.2": +"@lumino/algorithm@npm:^2.0.2": version: 2.0.2 resolution: "@lumino/algorithm@npm:2.0.2" checksum: 34b25684b845f1bdbf78ca45ebd99a97b67b2992440c9643aafe5fc5a99fae1ddafa9e5890b246b233dc3a12d9f66aa84afe4a2aac44cf31071348ed217740db languageName: node linkType: hard -"@lumino/application@npm:^2.3.1": +"@lumino/application@npm:^2.4.1": version: 2.4.1 resolution: "@lumino/application@npm:2.4.1" dependencies: @@ -1317,7 +1306,7 @@ __metadata: languageName: node linkType: hard -"@lumino/commands@npm:^2.3.0, @lumino/commands@npm:^2.3.1": +"@lumino/commands@npm:^2.3.1": version: 2.3.1 resolution: "@lumino/commands@npm:2.3.1" dependencies: @@ -1332,7 +1321,7 @@ __metadata: languageName: node linkType: hard -"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^1.11.0 || ^2.1.2, @lumino/coreutils@npm:^2.1.2, @lumino/coreutils@npm:^2.2.0": +"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^1.11.0 || ^2.2.0, @lumino/coreutils@npm:^2.2.0": version: 2.2.0 resolution: "@lumino/coreutils@npm:2.2.0" dependencies: @@ -1341,7 +1330,7 @@ __metadata: languageName: node linkType: hard -"@lumino/disposable@npm:^1.10.0 || ^2.0.0, @lumino/disposable@npm:^2.1.2, @lumino/disposable@npm:^2.1.3": +"@lumino/disposable@npm:^1.10.0 || ^2.0.0, @lumino/disposable@npm:^2.1.3": version: 2.1.3 resolution: "@lumino/disposable@npm:2.1.3" dependencies: @@ -1350,14 +1339,14 @@ __metadata: languageName: node linkType: hard -"@lumino/domutils@npm:^2.0.1, @lumino/domutils@npm:^2.0.2": +"@lumino/domutils@npm:^2.0.2": version: 2.0.2 resolution: "@lumino/domutils@npm:2.0.2" checksum: 037b8d0b62af43887fd7edd506fa551e2af104a4b46d62e6fef256e16754dba40d351513beb5083834d468b2c7806aae0fe205fd6aac8ef24759451ee998bbd9 languageName: node linkType: hard -"@lumino/dragdrop@npm:^2.1.4, @lumino/dragdrop@npm:^2.1.5": +"@lumino/dragdrop@npm:^2.1.5": version: 2.1.5 resolution: "@lumino/dragdrop@npm:2.1.5" dependencies: @@ -1374,7 +1363,7 @@ __metadata: languageName: node linkType: hard -"@lumino/messaging@npm:^2.0.1, @lumino/messaging@npm:^2.0.2": +"@lumino/messaging@npm:^2.0.2": version: 2.0.2 resolution: "@lumino/messaging@npm:2.0.2" dependencies: @@ -1384,7 +1373,7 @@ __metadata: languageName: node linkType: hard -"@lumino/polling@npm:^2.1.2": +"@lumino/polling@npm:^2.1.3": version: 2.1.3 resolution: "@lumino/polling@npm:2.1.3" dependencies: @@ -1395,14 +1384,14 @@ __metadata: languageName: node linkType: hard -"@lumino/properties@npm:^2.0.1, @lumino/properties@npm:^2.0.2": +"@lumino/properties@npm:^2.0.2": version: 2.0.2 resolution: "@lumino/properties@npm:2.0.2" checksum: cbe802bd49ced7e13e50b1d89b82e0f03fb44a590c704e6b9343226498b21d8abfe119b024209e79876b4fc0938dbf85e964c6c4cd5bbdd4d7ba41ce0fb69f3f languageName: node linkType: hard -"@lumino/signaling@npm:^1.10.0 || ^2.0.0, @lumino/signaling@npm:^2.1.2, @lumino/signaling@npm:^2.1.3": +"@lumino/signaling@npm:^1.10.0 || ^2.0.0, @lumino/signaling@npm:^2.1.3": version: 2.1.3 resolution: "@lumino/signaling@npm:2.1.3" dependencies: @@ -1412,7 +1401,7 @@ __metadata: languageName: node linkType: hard -"@lumino/virtualdom@npm:^2.0.1, @lumino/virtualdom@npm:^2.0.2": +"@lumino/virtualdom@npm:^2.0.2": version: 2.0.2 resolution: "@lumino/virtualdom@npm:2.0.2" dependencies: @@ -1421,7 +1410,7 @@ __metadata: languageName: node linkType: hard -"@lumino/widgets@npm:^1.37.2 || ^2.3.2, @lumino/widgets@npm:^2.3.2, @lumino/widgets@npm:^2.5.0": +"@lumino/widgets@npm:^1.37.2 || ^2.5.0, @lumino/widgets@npm:^2.5.0": version: 2.5.0 resolution: "@lumino/widgets@npm:2.5.0" dependencies: @@ -1447,34 +1436,22 @@ __metadata: languageName: node linkType: hard -"@microsoft/fast-element@npm:^1.12.0, @microsoft/fast-element@npm:^1.13.0": - version: 1.13.0 - resolution: "@microsoft/fast-element@npm:1.13.0" - checksum: 1cb7b4cfb7531116a3542d3f59bf1dd35106194f5764205403590250aaff744de79e35a5a1f36b4941c4eda9edc088148d4d629fb80be15fdf25f6be01770f3a +"@microsoft/fast-element@npm:^1.12.0, @microsoft/fast-element@npm:^1.14.0": + version: 1.14.0 + resolution: "@microsoft/fast-element@npm:1.14.0" + checksum: 58765739492997a5c51f7841cf6f334e2d2c4ad2365db4a228c07df1c89d139b026abf6afc6691ac48066070d3c94d09afdea2929bdca25842f778293e19892d languageName: node linkType: hard -"@microsoft/fast-foundation@npm:^2.49.4, @microsoft/fast-foundation@npm:^2.49.6": - version: 2.49.6 - resolution: "@microsoft/fast-foundation@npm:2.49.6" +"@microsoft/fast-foundation@npm:^2.49.4": + version: 2.50.0 + resolution: "@microsoft/fast-foundation@npm:2.50.0" dependencies: - "@microsoft/fast-element": ^1.13.0 + "@microsoft/fast-element": ^1.14.0 "@microsoft/fast-web-utilities": ^5.4.1 tabbable: ^5.2.0 tslib: ^1.13.0 - checksum: 15fdf9dd0b910a72a9cff140f765d522304df11f8a78d5a97a815e2bbae25027c2b336e94f89ca31e650d6aabe17b590b7453acc0d2cb7340c219eb76350a942 - languageName: node - linkType: hard - -"@microsoft/fast-react-wrapper@npm:^0.3.22": - version: 0.3.24 - resolution: "@microsoft/fast-react-wrapper@npm:0.3.24" - dependencies: - "@microsoft/fast-element": ^1.13.0 - "@microsoft/fast-foundation": ^2.49.6 - peerDependencies: - react: ">=16.9.0" - checksum: 1d7a87509c22872bafc9b5c64f66659e52ba0cfdff484d7204125e503dafdea143f5e1bd2a643e2f3fbba6cc7567d916393369433f19dab9f0adcbe7a88b7d98 + checksum: 651501eb8cd5a3e583638f70a4e7c0ad30952fe12adedd5c4c24861515d0aaeec0e83d1f1cd25dece899d2fa1614b415001c461f76bb84b20e1a8e18a3fcf219 languageName: node linkType: hard @@ -1529,8 +1506,8 @@ __metadata: linkType: hard "@rjsf/core@npm:^5.13.4": - version: 5.21.0 - resolution: "@rjsf/core@npm:5.21.0" + version: 5.22.2 + resolution: "@rjsf/core@npm:5.22.2" dependencies: lodash: ^4.17.21 lodash-es: ^4.17.21 @@ -1538,17 +1515,16 @@ __metadata: nanoid: ^3.3.7 prop-types: ^15.8.1 peerDependencies: - "@rjsf/utils": ^5.20.x + "@rjsf/utils": ^5.22.x react: ^16.14.0 || >=17 - checksum: 6b4a0a026461c49f19a1fb098ad7daa33f6bc97d089fbf571ea820b31e6b1852e58cd1f5e02a4d46bc7e07f018c9d2cfa4eb35ebc39cdde5345706254a0408b3 + checksum: 349981c7cdd079d641459d24a59b89b64a711254b4993836bf97974735aa1001cec37b1fa857372667c2de61c26cdb666ece6fc88f82d0fe2a34aa048b689022 languageName: node linkType: hard "@rjsf/utils@npm:^5.13.4": - version: 5.21.0 - resolution: "@rjsf/utils@npm:5.21.0" + version: 5.22.2 + resolution: "@rjsf/utils@npm:5.22.2" dependencies: - fast-equals: ^5.0.1 json-schema-merge-allof: ^0.8.1 jsonpointer: ^5.0.1 lodash: ^4.17.21 @@ -1556,7 +1532,7 @@ __metadata: react-is: ^18.2.0 peerDependencies: react: ^16.14.0 || >=17 - checksum: b1f87c1e26544ed5531d387a85644661cb41095b86ec73ed0d03e21f6743cf3ed7324315112e43e6c973e7a81e2313534ba201295d08cbd1ec314d79752f92b5 + checksum: 9e1e14f03313cf075c5f4d6ecffd095fc77db85e561474286686bff02121da4bee256facd9a08c422862798c2b709cea990b197b6e03db2360a684cc05847bdd languageName: node linkType: hard @@ -1571,9 +1547,9 @@ __metadata: linkType: hard "@types/estree@npm:^1.0.5": - version: 1.0.5 - resolution: "@types/estree@npm:1.0.5" - checksum: dd8b5bed28e6213b7acd0fb665a84e693554d850b0df423ac8076cc3ad5823a6bc26b0251d080bdc545af83179ede51dd3f6fa78cad2c46ed1f29624ddf3e41a + version: 1.0.6 + resolution: "@types/estree@npm:1.0.6" + checksum: 8825d6e729e16445d9a1dd2fb1db2edc5ed400799064cd4d028150701031af012ba30d6d03fe9df40f4d7a437d0de6d2b256020152b7b09bde9f2e420afdffd9 languageName: node linkType: hard @@ -1592,11 +1568,11 @@ __metadata: linkType: hard "@types/node@npm:*": - version: 22.5.4 - resolution: "@types/node@npm:22.5.4" + version: 22.8.4 + resolution: "@types/node@npm:22.8.4" dependencies: - undici-types: ~6.19.2 - checksum: 77ac225c38c428200036780036da0bc6764e2721cfa8f528c7e7da7cfefe01a32a5791e28a54efbeedbc977949058d7db902b2e00139298225d4686cee4ae6db + undici-types: ~6.19.8 + checksum: 1e55594ce7942e259919283e6bb9ee814f184afcd545956d95163dd3b1d4b1923dba97e0c258c5a9dd2c96b2e754fa9ae42994437a564255c8907ae7cdc25b4b languageName: node linkType: hard @@ -1608,9 +1584,9 @@ __metadata: linkType: hard "@types/prop-types@npm:*": - version: 15.7.12 - resolution: "@types/prop-types@npm:15.7.12" - checksum: ac16cc3d0a84431ffa5cfdf89579ad1e2269549f32ce0c769321fdd078f84db4fbe1b461ed5a1a496caf09e637c0e367d600c541435716a55b1d9713f5035dfe + version: 15.7.13 + resolution: "@types/prop-types@npm:15.7.13" + checksum: 8935cad87c683c665d09a055919d617fe951cb3b2d5c00544e3a913f861a2bd8d2145b51c9aa6d2457d19f3107ab40784c40205e757232f6a80cc8b1c815513c languageName: node linkType: hard @@ -1625,12 +1601,12 @@ __metadata: linkType: hard "@types/react@npm:*, @types/react@npm:^18.0.26": - version: 18.3.5 - resolution: "@types/react@npm:18.3.5" + version: 18.3.12 + resolution: "@types/react@npm:18.3.12" dependencies: "@types/prop-types": "*" csstype: ^3.0.2 - checksum: 63d2ff473b348c902b68c20be55d2c5124d078c4336c2d1778f316c27789ed596657e8e714022ce14fb24994b0960fc64c913e629bb0bf85815355b0c31eb46b + checksum: 4ab1577a8c2105a5e316536f724117c90eee5f4bd5c137fc82a2253d8c1fd299dedaa07e8dfc95d6e2f04a4be3cb8b0e1b06098c6233ebd55c508d88099395b7 languageName: node linkType: hard @@ -2013,11 +1989,11 @@ __metadata: linkType: hard "acorn@npm:^8.7.1, acorn@npm:^8.8.2, acorn@npm:^8.9.0": - version: 8.12.1 - resolution: "acorn@npm:8.12.1" + version: 8.14.0 + resolution: "acorn@npm:8.14.0" bin: acorn: bin/acorn - checksum: 677880034aee5bdf7434cc2d25b641d7bedb0b5ef47868a78dadabedccf58e1c5457526d9d8249cd253f2df087e081c3fe7d903b448d8e19e5131a3065b83c07 + checksum: 8755074ba55fff94e84e81c72f1013c2d9c78e973c31231c8ae505a5f966859baf654bddd75046bffd73ce816b149298977fff5077a3033dedba0ae2aad152d4 languageName: node linkType: hard @@ -2231,16 +2207,16 @@ __metadata: linkType: hard "browserslist@npm:^4.21.10": - version: 4.23.3 - resolution: "browserslist@npm:4.23.3" + version: 4.24.2 + resolution: "browserslist@npm:4.24.2" dependencies: - caniuse-lite: ^1.0.30001646 - electron-to-chromium: ^1.5.4 + caniuse-lite: ^1.0.30001669 + electron-to-chromium: ^1.5.41 node-releases: ^2.0.18 - update-browserslist-db: ^1.1.0 + update-browserslist-db: ^1.1.1 bin: browserslist: cli.js - checksum: 7906064f9970aeb941310b2fcb8b4ace4a1b50aa657c986677c6f1553a8cabcc94ee9c5922f715baffbedaa0e6cf0831b6fed7b059dde6873a4bfadcbe069c7e + checksum: cf64085f12132d38638f38937a255edb82c7551b164a98577b055dd79719187a816112f7b97b9739e400c4954cd66479c0d7a843cb816e346f4795dc24fd5d97 languageName: node linkType: hard @@ -2290,14 +2266,14 @@ __metadata: languageName: node linkType: hard -"caniuse-lite@npm:^1.0.30001646": - version: 1.0.30001660 - resolution: "caniuse-lite@npm:1.0.30001660" - checksum: 8b2c5de2f5facd31980426afbba68238270984acfe8c1ae925b8b6480448eea2fae292f815674617e9170c730c8a238d7cc0db919f184dc0e3cd9bec18f5e5ad +"caniuse-lite@npm:^1.0.30001669": + version: 1.0.30001675 + resolution: "caniuse-lite@npm:1.0.30001675" + checksum: d1e20a445af355209a8795924e556ed97cd3e744ae0b09e27773a4dcf53e6531de9d206b0929bcbe62e5b69a555237a12c943edb48872803ef64cdb1877f47af languageName: node linkType: hard -"chalk@npm:^2.3.0, chalk@npm:^2.4.1, chalk@npm:^2.4.2": +"chalk@npm:^2.3.0, chalk@npm:^2.4.1": version: 2.4.2 resolution: "chalk@npm:2.4.2" dependencies: @@ -2482,9 +2458,9 @@ __metadata: linkType: hard "css-functions-list@npm:^3.2.1": - version: 3.2.2 - resolution: "css-functions-list@npm:3.2.2" - checksum: b8a564118b93b87b63236a57132a3ef581416896a70c1d0df73360a9ec43dc582f7c2a586b578feb8476179518e557c6657570a8b6185b16300c7232a84d43e3 + version: 3.2.3 + resolution: "css-functions-list@npm:3.2.3" + checksum: 25f12fb0ef1384b1cf45a6e7e0afd596a19bee90b90316d9e50f7820888f4a8f265be7a6a96b10a5c81e403bd7a5ff8010fa936144f84959d9d91c9350cda0d4 languageName: node linkType: hard @@ -2736,10 +2712,10 @@ __metadata: languageName: node linkType: hard -"electron-to-chromium@npm:^1.5.4": - version: 1.5.22 - resolution: "electron-to-chromium@npm:1.5.22" - checksum: 3f8f21f0134dd8dbbf02996336466167f787b5d35c20543c0e5466c062291d1fe3f942e3112bb722c5c059bf438f93e57e0adacb7248dc799136a6029171a3e8 +"electron-to-chromium@npm:^1.5.41": + version: 1.5.49 + resolution: "electron-to-chromium@npm:1.5.49" + checksum: 84d4fde02a6de9464f8de2933e2172253098bf219a368cfd0e1ec71b73f9c0800a9ddf7bfdf57408e5fedef858561eaaf4e30ebbf20d94244a6001d570ce07a9 languageName: node linkType: hard @@ -2907,7 +2883,7 @@ __metadata: languageName: node linkType: hard -"escalade@npm:^3.1.2": +"escalade@npm:^3.2.0": version: 3.2.0 resolution: "escalade@npm:3.2.0" checksum: 47b029c83de01b0d17ad99ed766347b974b0d628e848de404018f3abee728e987da0d2d370ad4574aa3d5b5bfc368754fd085d69a30f8e75903486ec4b5b709e @@ -2979,7 +2955,7 @@ __metadata: languageName: node linkType: hard -"eslint-visitor-keys@npm:^3.3.0, eslint-visitor-keys@npm:^3.4.1, eslint-visitor-keys@npm:^3.4.3": +"eslint-visitor-keys@npm:^3.4.1, eslint-visitor-keys@npm:^3.4.3": version: 3.4.3 resolution: "eslint-visitor-keys@npm:3.4.3" checksum: 36e9ef87fca698b6fd7ca5ca35d7b2b6eeaaf106572e2f7fd31c12d3bfdaccdb587bba6d3621067e5aece31c8c3a348b93922ab8f7b2cbc6aaab5e1d89040c60 @@ -2987,14 +2963,14 @@ __metadata: linkType: hard "eslint@npm:^8.36.0": - version: 8.57.0 - resolution: "eslint@npm:8.57.0" + version: 8.57.1 + resolution: "eslint@npm:8.57.1" dependencies: "@eslint-community/eslint-utils": ^4.2.0 "@eslint-community/regexpp": ^4.6.1 "@eslint/eslintrc": ^2.1.4 - "@eslint/js": 8.57.0 - "@humanwhocodes/config-array": ^0.11.14 + "@eslint/js": 8.57.1 + "@humanwhocodes/config-array": ^0.13.0 "@humanwhocodes/module-importer": ^1.0.1 "@nodelib/fs.walk": ^1.2.8 "@ungap/structured-clone": ^1.2.0 @@ -3030,7 +3006,7 @@ __metadata: text-table: ^0.2.0 bin: eslint: bin/eslint.js - checksum: 3a48d7ff85ab420a8447e9810d8087aea5b1df9ef68c9151732b478de698389ee656fd895635b5f2871c89ee5a2652b3f343d11e9db6f8486880374ebc74a2d9 + checksum: e2489bb7f86dd2011967759a09164e65744ef7688c310bc990612fc26953f34cc391872807486b15c06833bdff737726a23e9b4cdba5de144c311377dc41d91b languageName: node linkType: hard @@ -3112,13 +3088,6 @@ __metadata: languageName: node linkType: hard -"fast-equals@npm:^5.0.1": - version: 5.0.1 - resolution: "fast-equals@npm:5.0.1" - checksum: fbb3b6a74f3a0fa930afac151ff7d01639159b4fddd2678b5d50708e0ba38e9ec14602222d10dadb8398187342692c04fbef5a62b1cfcc7942fe03e754e064bc - languageName: node - linkType: hard - "fast-glob@npm:^3.2.9, fast-glob@npm:^3.3.1": version: 3.3.2 resolution: "fast-glob@npm:3.3.2" @@ -3147,9 +3116,9 @@ __metadata: linkType: hard "fast-uri@npm:^3.0.1": - version: 3.0.1 - resolution: "fast-uri@npm:3.0.1" - checksum: 106143ff83705995225dcc559411288f3337e732bb2e264e79788f1914b6bd8f8bc3683102de60b15ba00e6ebb443633cabac77d4ebc5cb228c47cf955e199ff + version: 3.0.3 + resolution: "fast-uri@npm:3.0.3" + checksum: c52e6c86465f5c240e84a4485fb001088cc743d261a4b54b0050ce4758b1648bdbe53da1328ef9620149dca1435e3de64184f226d7c0a3656cb5837b3491e149 languageName: node linkType: hard @@ -4105,16 +4074,16 @@ __metadata: languageName: node linkType: hard -"lib0@npm:^0.2.85, lib0@npm:^0.2.86": - version: 0.2.97 - resolution: "lib0@npm:0.2.97" +"lib0@npm:^0.2.85, lib0@npm:^0.2.98": + version: 0.2.98 + resolution: "lib0@npm:0.2.98" dependencies: isomorphic.js: ^0.2.4 bin: 0ecdsa-generate-keypair: bin/0ecdsa-generate-keypair.js 0gentesthtml: bin/gentesthtml.js 0serve: bin/0serve.js - checksum: f9ca204aff94e4e25396952c16a302d398468e4076d5f405560463dbbf9c65451a9efd40b1e7d4defd8533765576dc801336a2d2cfa64a2f0ed8e0f3c1a065a2 + checksum: 8d17060deb4ffb73f825e634e6543c024d27dad589a7ce2e6334af34b36d4441434edabf3716930f6c5e1c32c5f3e867b8c1b922c1cc51b22469f281292e423b languageName: node linkType: hard @@ -4644,9 +4613,9 @@ __metadata: linkType: hard "package-json-from-dist@npm:^1.0.0": - version: 1.0.0 - resolution: "package-json-from-dist@npm:1.0.0" - checksum: ac706ec856a5a03f5261e4e48fa974f24feb044d51f84f8332e2af0af04fbdbdd5bbbfb9cbbe354190409bc8307c83a9e38c6672c3c8855f709afb0006a009ea + version: 1.0.1 + resolution: "package-json-from-dist@npm:1.0.1" + checksum: 58ee9538f2f762988433da00e26acc788036914d57c71c246bf0be1b60cdbd77dd60b6a3e1a30465f0b248aeb80079e0b34cb6050b1dfa18c06953bb1cbc7602 languageName: node linkType: hard @@ -4756,10 +4725,10 @@ __metadata: languageName: node linkType: hard -"picocolors@npm:^1.0.0, picocolors@npm:^1.0.1": - version: 1.1.0 - resolution: "picocolors@npm:1.1.0" - checksum: a64d653d3a188119ff45781dfcdaeedd7625583f45280aea33fcb032c7a0d3959f2368f9b192ad5e8aade75b74dbd954ffe3106c158509a45e4c18ab379a2acd +"picocolors@npm:^1.0.0, picocolors@npm:^1.1.0": + version: 1.1.1 + resolution: "picocolors@npm:1.1.1" + checksum: e1cf46bf84886c79055fdfa9dcb3e4711ad259949e3565154b004b260cd356c5d54b31a1437ce9782624bf766272fe6b0154f5f0c744fb7af5d454d2b60db045 languageName: node linkType: hard @@ -4880,13 +4849,13 @@ __metadata: linkType: hard "postcss@npm:^8.3.11, postcss@npm:^8.4.28, postcss@npm:^8.4.33": - version: 8.4.45 - resolution: "postcss@npm:8.4.45" + version: 8.4.47 + resolution: "postcss@npm:8.4.47" dependencies: nanoid: ^3.3.7 - picocolors: ^1.0.1 - source-map-js: ^1.2.0 - checksum: 3223cdad4a9392c0b334ee3ee7e4e8041c631cb6160609cef83c18d2b2580e931dd8068ab13cc6000c1a254d57492ac6c38717efc397c5dcc9756d06bc9c44f3 + picocolors: ^1.1.0 + source-map-js: ^1.2.1 + checksum: f78440a9d8f97431dd2ab1ab8e1de64f12f3eff38a3d8d4a33919b96c381046a314658d2de213a5fa5eb296b656de76a3ec269fdea27f16d5ab465b916a0f52c languageName: node linkType: hard @@ -4944,18 +4913,18 @@ __metadata: version: 0.0.0-use.local resolution: "qiskit-code-assistant-jupyterlab@workspace:." dependencies: - "@jupyterlab/application": ^4.2.0 - "@jupyterlab/apputils": ^4.2.0 - "@jupyterlab/builder": ^4.2.0 - "@jupyterlab/completer": ^4.2.0 - "@jupyterlab/coreutils": ^6.2.0 - "@jupyterlab/notebook": ^4.2.0 - "@jupyterlab/services": ^7.2.0 - "@jupyterlab/settingregistry": ^4.2.0 - "@jupyterlab/statusbar": ^4.2.0 - "@jupyterlab/ui-components": ^4.2.0 - "@lumino/messaging": ^2.0.1 - "@lumino/widgets": ^2.3.2 + "@jupyterlab/application": ^4.3.0 + "@jupyterlab/apputils": ^4.4.0 + "@jupyterlab/builder": ^4.3.0 + "@jupyterlab/completer": ^4.3.0 + "@jupyterlab/coreutils": ^6.3.0 + "@jupyterlab/notebook": ^4.3.0 + "@jupyterlab/services": ^7.3.0 + "@jupyterlab/settingregistry": ^4.3.0 + "@jupyterlab/statusbar": ^4.3.0 + "@jupyterlab/ui-components": ^4.3.0 + "@lumino/messaging": ^2.0.2 + "@lumino/widgets": ^2.5.0 "@types/json-schema": ^7.0.11 "@types/react": ^18.0.26 "@types/react-addons-linked-state-mixin": ^0.14.22 @@ -5100,14 +5069,14 @@ __metadata: linkType: hard "regexp.prototype.flags@npm:^1.5.2": - version: 1.5.2 - resolution: "regexp.prototype.flags@npm:1.5.2" + version: 1.5.3 + resolution: "regexp.prototype.flags@npm:1.5.3" dependencies: - call-bind: ^1.0.6 + call-bind: ^1.0.7 define-properties: ^1.2.1 es-errors: ^1.3.0 - set-function-name: ^2.0.1 - checksum: d7f333667d5c564e2d7a97c56c3075d64c722c9bb51b2b4df6822b2e8096d623a5e63088fb4c83df919b6951ef8113841de8b47de7224872fa6838bc5d8a7d64 + set-function-name: ^2.0.2 + checksum: 83ff0705b837f7cb6d664010a11642250f36d3f642263dd0f3bdfe8f150261aa7b26b50ee97f21c1da30ef82a580bb5afedbef5f45639d69edaafbeac9bbb0ed languageName: node linkType: hard @@ -5347,7 +5316,7 @@ __metadata: languageName: node linkType: hard -"set-function-name@npm:^2.0.1": +"set-function-name@npm:^2.0.2": version: 2.0.2 resolution: "set-function-name@npm:2.0.2" dependencies: @@ -5451,7 +5420,7 @@ __metadata: languageName: node linkType: hard -"source-map-js@npm:^1.0.1, source-map-js@npm:^1.2.0": +"source-map-js@npm:^1.0.1, source-map-js@npm:^1.2.1": version: 1.2.1 resolution: "source-map-js@npm:1.2.1" checksum: 4eb0cd997cdf228bc253bcaff9340afeb706176e64868ecd20efbe6efea931465f43955612346d6b7318789e5265bdc419bc7669c1cebe3db0eb255f57efa76b @@ -5817,12 +5786,12 @@ __metadata: linkType: hard "synckit@npm:^0.9.1": - version: 0.9.1 - resolution: "synckit@npm:0.9.1" + version: 0.9.2 + resolution: "synckit@npm:0.9.2" dependencies: "@pkgr/core": ^0.1.0 tslib: ^2.6.2 - checksum: 4042941a4d939675f1d7b01124b8405b6ac616f3e3f396d00e46c67f38d0d5b7f9a1de05bc7ceea4ce80d967b450cfa2460e5f6aca81f7cea8f1a28be9392985 + checksum: 3a30e828efbdcf3b50fccab4da6e90ea7ca24d8c5c2ad3ffe98e07d7c492df121e0f75227c6e510f96f976aae76f1fa4710cb7b1d69db881caf66ef9de89360e languageName: node linkType: hard @@ -5876,8 +5845,8 @@ __metadata: linkType: hard "terser@npm:^5.26.0": - version: 5.32.0 - resolution: "terser@npm:5.32.0" + version: 5.36.0 + resolution: "terser@npm:5.36.0" dependencies: "@jridgewell/source-map": ^0.3.3 acorn: ^8.8.2 @@ -5885,7 +5854,7 @@ __metadata: source-map-support: ~0.5.20 bin: terser: bin/terser - checksum: 61e7c064ed693222c67413294181713798258ab4326b2f0b14ce889df530fb9683e7f2af2dfd228f1b9aae90c38c44dcbdfd22c0a3e020c56dff2770d1dc4a6d + checksum: 489afd31901a2b170f7766948a3aa0e25da0acb41e9e35bd9f9b4751dfa2fc846e485f6fb9d34f0839a96af77f675b5fbf0a20c9aa54e0b8d7c219cf0b55e508 languageName: node linkType: hard @@ -5938,9 +5907,9 @@ __metadata: linkType: hard "tslib@npm:^2.6.2": - version: 2.7.0 - resolution: "tslib@npm:2.7.0" - checksum: 1606d5c89f88d466889def78653f3aab0f88692e80bb2066d090ca6112ae250ec1cfa9dbfaab0d17b60da15a4186e8ec4d893801c67896b277c17374e36e1d28 + version: 2.8.0 + resolution: "tslib@npm:2.8.0" + checksum: de852ecd81adfdb4870927e250763345f07dc13fe7f395ce261424966bb122a0992ad844c3ec875c9e63e72afe2220a150712984e44dfd1a8a7e538a064e3d46 languageName: node linkType: hard @@ -6061,7 +6030,7 @@ __metadata: languageName: node linkType: hard -"undici-types@npm:~6.19.2": +"undici-types@npm:~6.19.8": version: 6.19.8 resolution: "undici-types@npm:6.19.8" checksum: de51f1b447d22571cf155dfe14ff6d12c5bdaec237c765085b439c38ca8518fc360e88c70f99469162bf2e14188a7b0bcb06e1ed2dc031042b984b0bb9544017 @@ -6075,17 +6044,17 @@ __metadata: languageName: node linkType: hard -"update-browserslist-db@npm:^1.1.0": - version: 1.1.0 - resolution: "update-browserslist-db@npm:1.1.0" +"update-browserslist-db@npm:^1.1.1": + version: 1.1.1 + resolution: "update-browserslist-db@npm:1.1.1" dependencies: - escalade: ^3.1.2 - picocolors: ^1.0.1 + escalade: ^3.2.0 + picocolors: ^1.1.0 peerDependencies: browserslist: ">= 4.21.0" bin: update-browserslist-db: cli.js - checksum: 7b74694d96f0c360f01b702e72353dc5a49df4fe6663d3ee4e5c628f061576cddf56af35a3a886238c01dd3d8f231b7a86a8ceaa31e7a9220ae31c1c1238e562 + checksum: 2ea11bd2562122162c3e438d83a1f9125238c0844b6d16d366e3276d0c0acac6036822dc7df65fc5a89c699cdf9f174acf439c39bedf3f9a2f3983976e4b4c3e languageName: node linkType: hard @@ -6297,8 +6266,8 @@ __metadata: linkType: hard "webpack@npm:^5.76.1": - version: 5.94.0 - resolution: "webpack@npm:5.94.0" + version: 5.95.0 + resolution: "webpack@npm:5.95.0" dependencies: "@types/estree": ^1.0.5 "@webassemblyjs/ast": ^1.12.1 @@ -6328,7 +6297,7 @@ __metadata: optional: true bin: webpack: bin/webpack.js - checksum: 6a3d667be304a69cd6dcb8d676bc29f47642c0d389af514cfcd646eaaa809961bc6989fc4b2621a717dfc461130f29c6e20006d62a32e012dafaa9517813a4e6 + checksum: 0c3dfe288de4d62f8f3dc25478a618894883cab739121330763b7847e43304630ea2815ae2351a5f8ff6ab7c9642caf530d503d89bda261fe2cd220e524dd5d1 languageName: node linkType: hard @@ -6504,11 +6473,11 @@ __metadata: linkType: hard "yjs@npm:^13.5.0, yjs@npm:^13.5.40": - version: 13.6.19 - resolution: "yjs@npm:13.6.19" + version: 13.6.20 + resolution: "yjs@npm:13.6.20" dependencies: - lib0: ^0.2.86 - checksum: 1b6e1454128aa85d720dec41deab1a88f903e8a486532813dba1895752a3fbef468df0bd5549928d77eab232a25113501f794f7347e4e60e3b5efe8382f513a4 + lib0: ^0.2.98 + checksum: a87295efe7df58ae8b5cf09b7cdbbcc3cbfba2b7fb72bb424513eb25587eff8dc8304f41e3bcd3926c02c86a0f7ce2185285e4b9d71aca5ff50cefe1ecb6657c languageName: node linkType: hard