From d95778380e0644ff2df7e1efdb62c83b53157a98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Krassowski?= <5832902+krassowski@users.noreply.github.com> Date: Fri, 19 Apr 2024 16:42:14 +0100 Subject: [PATCH 1/7] Partial backport of windowing fix from #16013 (#16202) --- packages/notebook/src/windowing.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/notebook/src/windowing.ts b/packages/notebook/src/windowing.ts index 0459029b93da..7297b4070cfb 100644 --- a/packages/notebook/src/windowing.ts +++ b/packages/notebook/src/windowing.ts @@ -261,7 +261,7 @@ export class NotebookWindowedLayout extends WindowedLayout { // Note: `index` is relative to the displayed cells, not all cells, // hence we compare with the widget itself. - if (widget === this.activeCell) { + if (widget === this.activeCell && widget !== this._willBeRemoved) { // Do not change display of the active cell to allow user to continue providing input // into the code mirror editor when out of view. We still hide the cell so to prevent // minor visual glitches when scrolling. From 2ea289ff7cc56a66ea5c6a5ad80f6d066782c5e2 Mon Sep 17 00:00:00 2001 From: "Lumberbot (aka Jack)" <39504233+meeseeksmachine@users.noreply.github.com> Date: Thu, 25 Apr 2024 12:22:58 +0200 Subject: [PATCH 2/7] Backport PR #16102: Fix extension toggling at different level (#16238) Co-authored-by: Divyansh Choudhary --- jupyterlab/commands.py | 30 +++++++++++++++++++++++++++++- pyproject.toml | 2 +- scripts/ci_script.sh | 4 ++++ 3 files changed, 34 insertions(+), 2 deletions(-) diff --git a/jupyterlab/commands.py b/jupyterlab/commands.py index 61f74a3ccd8e..5811dedf560b 100644 --- a/jupyterlab/commands.py +++ b/jupyterlab/commands.py @@ -30,6 +30,7 @@ from jupyter_core.paths import jupyter_config_dir from jupyter_server.extension.serverextension import GREEN_ENABLED, GREEN_OK, RED_DISABLED, RED_X from jupyterlab_server.config import ( + get_allowed_levels, get_federated_extensions, get_package_url, get_page_config, @@ -1101,6 +1102,18 @@ def unlink_package(self, path): self._write_build_config(config) return True + def _is_extension_locked(self, extension, level="sys_prefix", include_higher_levels=True): + app_settings_dir = osp.join(self.app_dir, "settings") + page_config = get_static_page_config( + app_settings_dir=app_settings_dir, + logger=self.logger, + level=level, + include_higher_levels=True, + ) + + locked = page_config.get("lockedExtensions", {}) + return locked.get(extension, False) + def toggle_extension(self, extension, value, level="sys_prefix"): """Enable or disable a lab extension. @@ -1108,6 +1121,14 @@ def toggle_extension(self, extension, value, level="sys_prefix"): """ app_settings_dir = osp.join(self.app_dir, "settings") + # If extension is locked at a higher level, we don't toggle it. + allowed = get_allowed_levels() + if self._is_extension_locked( + extension, level=allowed[allowed.index(level) + 1], include_higher_levels=True + ): + self.logger.info("Extension locked at a higher level, cannot toggle status") + return False + page_config = get_static_page_config( app_settings_dir=app_settings_dir, logger=self.logger, level=level ) @@ -1115,6 +1136,7 @@ def toggle_extension(self, extension, value, level="sys_prefix"): disabled = page_config.get("disabledExtensions", {}) did_something = False is_disabled = disabled.get(extension, False) + if value and not is_disabled: disabled[extension] = True did_something = True @@ -1155,6 +1177,12 @@ def _maybe_mirror_disabled_in_locked(self, level="sys_prefix"): def toggle_extension_lock(self, extension, value, level="sys_prefix"): """Lock or unlock a lab extension (/plugin).""" app_settings_dir = osp.join(self.app_dir, "settings") + allowed = get_allowed_levels() + if self._is_extension_locked( + extension, level=allowed[allowed.index(level) + 1], include_higher_levels=True + ): + self.logger.info("Extension locked at a higher level, cannot toggle") + return page_config = get_static_page_config( app_settings_dir=app_settings_dir, logger=self.logger, level=level @@ -1162,7 +1190,7 @@ def toggle_extension_lock(self, extension, value, level="sys_prefix"): locked = page_config.get("lockedExtensions", {}) locked[extension] = value - + page_config["lockedExtensions"] = locked write_page_config(page_config, level=level) def check_extension(self, extension, check_installed_only=False): diff --git a/pyproject.toml b/pyproject.toml index 03e3616742ac..05b16665c0a5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,7 +43,7 @@ dependencies = [ "jupyter_core", "jupyter_server>=2.4.0,<3", "jupyter-lsp>=2.0.0", - "jupyterlab_server>=2.19.0,<3", + "jupyterlab_server>=2.27.1,<3", "notebook_shim>=0.2", "packaging", "tomli>=1.2.2;python_version<\"3.11\"", diff --git a/scripts/ci_script.sh b/scripts/ci_script.sh index 2e838e4f2f66..5bf9608d287a 100755 --- a/scripts/ci_script.sh +++ b/scripts/ci_script.sh @@ -204,6 +204,10 @@ if [[ $GROUP == usage ]]; then cat labextensions | grep "Uninstalled core extensions:" jupyter labextension install @jupyterlab/notebook-extension --no-build --debug jupyter labextension enable @jupyterlab/notebook-extension --debug + jupyter labextension lock @jupyterlab/notebook-extension --level sys_prefix + jupyter labextension disable @jupyterlab/notebook-extension --level user 2>&1 | grep "Extension locked at a higher level, cannot toggle status" + jupyter labextension unlock @jupyterlab/notebook-extension --level sys_prefix + jupyter labextension disable @jupyterlab/notebook-extension --level user # Test with a prebuilt install jupyter labextension develop extension --debug From afb36c7a7486b8828862601f30848b2b09f573fd Mon Sep 17 00:00:00 2001 From: "Lumberbot (aka Jack)" <39504233+meeseeksmachine@users.noreply.github.com> Date: Fri, 26 Apr 2024 09:57:30 +0200 Subject: [PATCH 3/7] Backport PR #16241: Fix toggling extension at system level (#16243) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: MichaƂ Krassowski <5832902+krassowski@users.noreply.github.com> --- jupyterlab/commands.py | 31 +++++++++++++++++++------------ scripts/ci_script.sh | 11 +++++++++++ 2 files changed, 30 insertions(+), 12 deletions(-) diff --git a/jupyterlab/commands.py b/jupyterlab/commands.py index 5811dedf560b..61a4ac82694e 100644 --- a/jupyterlab/commands.py +++ b/jupyterlab/commands.py @@ -1122,12 +1122,15 @@ def toggle_extension(self, extension, value, level="sys_prefix"): app_settings_dir = osp.join(self.app_dir, "settings") # If extension is locked at a higher level, we don't toggle it. - allowed = get_allowed_levels() - if self._is_extension_locked( - extension, level=allowed[allowed.index(level) + 1], include_higher_levels=True - ): - self.logger.info("Extension locked at a higher level, cannot toggle status") - return False + # The highest level at which an extension can be locked is system, + # so we do not need to check levels above that one. + if level != "system": + allowed = get_allowed_levels() + if self._is_extension_locked( + extension, level=allowed[allowed.index(level) + 1], include_higher_levels=True + ): + self.logger.info("Extension locked at a higher level, cannot toggle status") + return False page_config = get_static_page_config( app_settings_dir=app_settings_dir, logger=self.logger, level=level @@ -1177,12 +1180,16 @@ def _maybe_mirror_disabled_in_locked(self, level="sys_prefix"): def toggle_extension_lock(self, extension, value, level="sys_prefix"): """Lock or unlock a lab extension (/plugin).""" app_settings_dir = osp.join(self.app_dir, "settings") - allowed = get_allowed_levels() - if self._is_extension_locked( - extension, level=allowed[allowed.index(level) + 1], include_higher_levels=True - ): - self.logger.info("Extension locked at a higher level, cannot toggle") - return + + # The highest level at which an extension can be locked is system, + # so we do not need to check levels above that one. + if level != "system": + allowed = get_allowed_levels() + if self._is_extension_locked( + extension, level=allowed[allowed.index(level) + 1], include_higher_levels=True + ): + self.logger.info("Extension locked at a higher level, cannot toggle") + return False page_config = get_static_page_config( app_settings_dir=app_settings_dir, logger=self.logger, level=level diff --git a/scripts/ci_script.sh b/scripts/ci_script.sh index 5bf9608d287a..5ce2647ffe1e 100755 --- a/scripts/ci_script.sh +++ b/scripts/ci_script.sh @@ -204,6 +204,17 @@ if [[ $GROUP == usage ]]; then cat labextensions | grep "Uninstalled core extensions:" jupyter labextension install @jupyterlab/notebook-extension --no-build --debug jupyter labextension enable @jupyterlab/notebook-extension --debug + + # Test enable/disable on system level + JUPYTER_BIN=$(which jupyter) + sudo $JUPYTER_BIN labextension disable @jupyterlab/console-extension --level system --debug + sudo $JUPYTER_BIN labextension list 1>labextensions 2>&1 --debug + cat labextensions | grep "@jupyterlab/console-extension (all plugins)" + sudo $JUPYTER_BIN labextension enable @jupyterlab/console-extension --level system --debug + sudo $JUPYTER_BIN labextension list 1>labextensions 2>&1 --debug + ! cat labextensions | grep -L "@jupyterlab/console-extension (all plugins)" + + # Test locking at higher level jupyter labextension lock @jupyterlab/notebook-extension --level sys_prefix jupyter labextension disable @jupyterlab/notebook-extension --level user 2>&1 | grep "Extension locked at a higher level, cannot toggle status" jupyter labextension unlock @jupyterlab/notebook-extension --level sys_prefix From e12c710c3e60a00ce0e0888033c2b6a5ceb320b3 Mon Sep 17 00:00:00 2001 From: krassowski Date: Fri, 26 Apr 2024 09:33:08 +0000 Subject: [PATCH 4/7] [ci skip] Publish 4.1.7 SHA256 hashes: jupyterlab-4.1.7-py3-none-any.whl: 43ccd32a3afa641912e4e2d2875b8cebbebcead57a35e2987c43bf496ac49d58 jupyterlab-4.1.7.tar.gz: 32532a43d35d4aaab328722e738ee527915fd572a5c84ae5eeba6e409d0cdc55 jupyterlab-application-4.1.7.tgz: f2893118fe90f9aa36ea009078e41f3e63218110fafe21d2bc5401e41c600782 jupyterlab-application-extension-4.1.7.tgz: 4492a33d3227e9aaa94dd7b3d0aa40a1668bf469c3bdbc83baf532bfd3a9f0bc jupyterlab-apputils-4.2.7.tgz: 4e9955871eadeec83168924b5cd533fe0b25a5795878a7ea4ab2c953aeec1972 jupyterlab-apputils-extension-4.1.7.tgz: 52049028ad08a75ff338ef2ce939e0691378f8f096acd3db913daf2bd5cdebe1 jupyterlab-attachments-4.1.7.tgz: d580fe872b6bbb62b3d81f3c56571a684654de0af4bf311505787a4ce3f2932f jupyterlab-builder-4.1.7.tgz: b9eb006abe0e088adfe56ea13525ef998f1dcb52e5c874161c9aa6b736a2a503 jupyterlab-buildutils-4.1.7.tgz: c90c076e53caf9d3ed6a79754f51212ed52cfcd1dc49f48c9f8c71bc51514500 jupyterlab-cell-toolbar-4.1.7.tgz: 6d58c076b2180f821d04ba14b82533ef6d585a42b7ec13ee1bc4a36502347e1c jupyterlab-cell-toolbar-extension-4.1.7.tgz: d9c4af359836dc72530d7714c71bbe8c9ae4d4be8c17f88626ff4c9b5bd1c363 jupyterlab-cells-4.1.7.tgz: aebab5594dc0f2539ea4bcf204f6b824f1056a16f647ebabb9d1cef834d66a8e jupyterlab-celltags-extension-4.1.7.tgz: 23c33df83829307e73b5cbfa2de93b9b000ab20ee55241f6bda200517f6731bf jupyterlab-codeeditor-4.1.7.tgz: 7df52342edb8b5883b87a68e824623059e72c2827fe7bc94c9d47daf1732ae98 jupyterlab-codemirror-4.1.7.tgz: 2cdacbf530af98c194461f04c8ad9895e5f211c7f4efc15b87856510b4df39ce jupyterlab-codemirror-extension-4.1.7.tgz: bfd8c22b365a61e1552f8e310c81dd99cd8a81f0975524b28f656265fbac11f0 jupyterlab-completer-4.1.7.tgz: c2ffaae557820126d1d1e2f531ed976cd95ff2ca06983544f49a8a3d9c0ffd04 jupyterlab-completer-extension-4.1.7.tgz: 5cbbc7ee8ce4125149845a479fe73eeac11c5ea51cec1a49da561faaa833459f jupyterlab-console-4.1.7.tgz: 98c790cf7edf44b3ad35d44f51147f5f22e6e61a54faa59f973f50e85468d335 jupyterlab-console-extension-4.1.7.tgz: 3d8d5149264a1f68016ab25ea3bdc7981a55ff7cccca9720e4efabfcb5755a76 jupyterlab-coreutils-6.1.7.tgz: 2b999600c2aa24ea37a28189574937077b7ba6dd5dbb781ccdab0d8df609cef9 jupyterlab-csvviewer-4.1.7.tgz: 9b20dcb441774da646989d5f27de9a4632932dbddac566bb85aa5d2d7190f43b jupyterlab-csvviewer-extension-4.1.7.tgz: 4350b02ff4c3df733c31f118070b221e9fb62e84e76f877242bbacedf05cbedb jupyterlab-debugger-4.1.7.tgz: 0921429af64efe4bdf4c59a7bb059db8d1b62249677ae4f6d60e084e4b6d9a43 jupyterlab-debugger-extension-4.1.7.tgz: 685f2c9fe4795d0f73f3da9eb77e23840a201cb53c1ee565ca3a3eb25cbea8ce jupyterlab-docmanager-4.1.7.tgz: bbeb3f0760b79315b3f7483f60b0088a8e88c5c25c162395a79827fe1be98fca jupyterlab-docmanager-extension-4.1.7.tgz: 339697904c17201ef396105a296af38080966a58c66f2835e7b95c7e5755cd70 jupyterlab-docregistry-4.1.7.tgz: 80056809db586359f56a269ce9d9fc48b0623175c3f58a42934c66189449a38b jupyterlab-documentsearch-4.1.7.tgz: ee1e3d14c01f45bded13012788c038d02952042056c57e357f56bda6b9ef9fbe jupyterlab-documentsearch-extension-4.1.7.tgz: 0c6eeb999ce26bc3c793a62842aa4d78c961b7b8f71c0042e28d8327adfdb439 jupyterlab-extensionmanager-4.1.7.tgz: 62162c7b4deeb7e805234651bc127b2267768bdb6711a405049201d9d6335573 jupyterlab-extensionmanager-extension-4.1.7.tgz: 1317caaead79e335e192a2b4c1d8e25c8b35c9b3da3127f040e93c7e4767d699 jupyterlab-filebrowser-4.1.7.tgz: 3d865a1a193c51db31dd36b2447acfe5b8d405d5bb7fe3f723291026427ecd8f jupyterlab-filebrowser-extension-4.1.7.tgz: 9f61e5be4cc1344e5e466437558f6ae3d9d0b9be0e1785e1e56472d0e474e6e5 jupyterlab-fileeditor-4.1.7.tgz: bec86b8682eed52bbadcfa974bfc13e7cc13c4dcf88f2fd78185abd84f136326 jupyterlab-fileeditor-extension-4.1.7.tgz: e8a4373f49803180145e92129f3e48c9a23ff4741a91f0d14ed4d49224a87952 jupyterlab-galata-5.1.7.tgz: 1e0bc2f7325ba1d78139541ad500effa1224b34bf21de7f8cc28a9f0cf6307b0 jupyterlab-help-extension-4.1.7.tgz: dfa6380f7ec7026800c7637d5c995e1cacc2fcd757e3908046f37fe87585eede jupyterlab-htmlviewer-4.1.7.tgz: 00f29f844e5159f34563a53549a18dc6c7585004343707ad67938f2150f21850 jupyterlab-htmlviewer-extension-4.1.7.tgz: a96378a463f31535048dd4e8a2a55fc48352161998c45b94e200bda9e627920d jupyterlab-hub-extension-4.1.7.tgz: 2ab3f140ae5aa5a10af6435eb36bbded5c7d8ab63c706c74c44ad899b77134ba jupyterlab-imageviewer-4.1.7.tgz: 00859567380017efea5041d26714b85b3c12bfe4f811edd560714783aebc56d4 jupyterlab-imageviewer-extension-4.1.7.tgz: 48bee95c07b2e42a51cc02b5218afc0d4834340286b77c4251167905ec2c0569 jupyterlab-inspector-4.1.7.tgz: 8cb84e52678c0cf116fea271d64976f872b9bbc4a1c3253a170590c90c891134 jupyterlab-inspector-extension-4.1.7.tgz: 15bd4ae450d12aed34d4278c961de7eba7dc6f4c066998ef5d6d07ab8d347a2a jupyterlab-javascript-extension-4.1.7.tgz: 19022adb66a2973b7a72797845f879f910683e242868ee90967199b64304a7f0 jupyterlab-json-extension-4.1.7.tgz: ffba0eec5e2e31fa1914b69829b487cda85835e85ffd233907ded708cee5c722 jupyterlab-launcher-4.1.7.tgz: c39a9c246a559362b380d22172694d153e8e36936e87138e77f7b2760148638e jupyterlab-launcher-extension-4.1.7.tgz: 63b198cc3c632a2ddb992881f16d85e2af99bf5246d13ebda863c0c7ffde203e jupyterlab-logconsole-4.1.7.tgz: 0881ce2e63e74f7bc922f1ffd5356db4bc777a08ef793227d83c382d51ebaf49 jupyterlab-logconsole-extension-4.1.7.tgz: 58030e5aa0ad889f0c42928e4813d4c45b358f9dbb4219e168946a6a11d08455 jupyterlab-lsp-4.1.7.tgz: 8c41def6b1c76b6875a3ab8660dedc6d1738419c214b4a5218b09711f890a67e jupyterlab-lsp-extension-4.1.7.tgz: 3df13b9e14a24c03a15e53eb639be157b8b4924a1dfe83fe9e2f90336e140b8b jupyterlab-mainmenu-4.1.7.tgz: e84ddf5ff47b62e8a608cbae6b40b0e5381a1ff5079b15aeb879fe44900559b7 jupyterlab-mainmenu-extension-4.1.7.tgz: 4f59e487de1b2d4b0e0a4bde48bd77f78dba5c9da43febeed1ba65cbe0261d8c jupyterlab-markdownviewer-4.1.7.tgz: 0a8843903157a6ed9b7b5f35a7a2491200af73bf8e43c6e2dcb08f06b7f22d4d jupyterlab-markdownviewer-extension-4.1.7.tgz: c66477edcc84c650b2296b84510847514d94d7304be86337f1a9f57a74868400 jupyterlab-markedparser-extension-4.1.7.tgz: 721e5e05763070a288737699ba17572466efcb2cc3a48d437dbfd113a4341b41 jupyterlab-mathjax-extension-4.1.7.tgz: c43a58af33ead5230708b59ac1489ed4ca1a28e67c213d61684ffb1afe8fd43b jupyterlab-mermaid-4.1.7.tgz: a6b6b3296535780fb135bc877cbb955f9f48facb6b0fc8458fe8879110bbd861 jupyterlab-mermaid-extension-4.1.7.tgz: 9fc98b5afd885b14377daf2489e088078273782677f46c2eae3a0906f863407a jupyterlab-metadataform-4.1.7.tgz: 94869fd55e64dc1b358bfe5a294473583e2b7eb98767eb1bc9b1c5f93bb83b0f jupyterlab-metadataform-extension-4.1.7.tgz: b621d3c00465fbf19c32bde53fc87e2c0e9bf5ed9734bdd9be5977668b8c004a jupyterlab-metapackage-4.1.7.tgz: 22f63b4b4751185e99b83c15fc1263e992b828da65f72ed80e88974ed6ca18c0 jupyterlab-nbconvert-css-4.1.7.tgz: c8a5387d1d998c8adc90e9f8d8cd14bfec1c800cdb5aa4710768fd2a021aca01 jupyterlab-nbformat-4.1.7.tgz: 408d0269ac272c528a0191a0f704707c173cc1b8e575c1f987492be1aa410960 jupyterlab-notebook-4.1.7.tgz: 436e3a3792b36e1e4575b9152e8825cec93505c481a34f0fa6026c740b41a2d0 jupyterlab-notebook-extension-4.1.7.tgz: c175e19d94de77146b3709f162b656fd8599bdbaaf35ea0709c8d423e520048d jupyterlab-observables-5.1.7.tgz: ba683f7d6be88dbae5edf3c79c6c0d599e321727c34db2ee7ca8aca715a55d6d jupyterlab-outputarea-4.1.7.tgz: 445d55d4fc3bb61ab790dc241fcb9757ffdeaf814c13252ebdcba8fb89b8c625 jupyterlab-pdf-extension-4.1.7.tgz: f20a624a035efc90b84a35b75fa8fb3985fd3cd640c356a90398fcb27c693162 jupyterlab-pluginmanager-4.1.7.tgz: a2ac7a1160d624bd78da93e3acfc766b4693f97173ee44bf47a41c9a6a3ffa82 jupyterlab-pluginmanager-extension-4.1.7.tgz: b629c298d8fd7747475f62f051dccb489ca2191b25b26146f437a05673d89eaa jupyterlab-property-inspector-4.1.7.tgz: e6304ea771b75c636fbacf4cb77edb6cee671873208942c7b63c235802f671d4 jupyterlab-rendermime-4.1.7.tgz: e72058298ef61d91ef29015d6564f2b0e97027a7b6b67fdc8d9ceea7740a9ddd jupyterlab-rendermime-extension-4.1.7.tgz: bfc71351c88d12d82ed28041073e74609baa8b5dec49c212e0b8c9f197c0daa1 jupyterlab-rendermime-interfaces-3.9.7.tgz: f984afdf671b086e26b4f5d26b0386b30b1680b53daf7c1ac35c6acb6837eb6e jupyterlab-running-4.1.7.tgz: c36ff8a724396bdbfc0eb4e7bb302e3125a19e7cbb7898fb0ad6fab0bbfb187e jupyterlab-running-extension-4.1.7.tgz: 61a2064d8ef112cb5d8701378c64eb878661fbf5d2ad0f4599b5db8343e0de9d jupyterlab-services-7.1.7.tgz: d0c77b9339a16a13e7fe02d867fea1c027e65ab3e47c29ea43aced3ea200d5c1 jupyterlab-settingeditor-4.1.7.tgz: dfd50e4f47df46d6f578b06d9d6cfb06b31ea09d8a1d8c110e0ce915ed3be356 jupyterlab-settingeditor-extension-4.1.7.tgz: 932ef38913bf72f0d4371a5aeebe74ba21123edd70b831d44d4db54836b663d3 jupyterlab-settingregistry-4.1.7.tgz: 0168305ee57a56e4d697fed41e6d5d5fe2be17dc53fd5dc4b56e46368c8afcb4 jupyterlab-shortcuts-extension-4.1.7.tgz: 5bae1f061854ab05b33ab57b4305cccf6d0d36bd7ffbb01cfe79d1016cd1058c jupyterlab-statedb-4.1.7.tgz: a55eb1ab80ab4883b0cef4ed3b47b3356933500cd4820fe103d0f8f7f14e2783 jupyterlab-statusbar-4.1.7.tgz: bd04494e95ab4cad66b5b6c82261ff7cc90950966c5bbaa2b6a0c6e92f94d58a jupyterlab-statusbar-extension-4.1.7.tgz: 55412400022dd1035c3b46b6c925483200a0ac673b264714b46b8834a9f1cbe0 jupyterlab-template-4.1.7.tgz: c1920fe3e4fdf7cc7559c01c1949ca06f91ae91443adf713d62d7ea1126487e2 jupyterlab-terminal-4.1.7.tgz: de82a5daa2f70d71af1745bafd1c27d65dae21818bea3fd69d5fecc031fecb52 jupyterlab-terminal-extension-4.1.7.tgz: 776b96cc0c27340d433f0d8ffacf73c92f9af74f5d5af3302332752d438c4f68 jupyterlab-testing-4.1.7.tgz: 16c873197fa1e635a9f5dc9b29f88c272e40ed0df2a0742b6837fe4ab4781ba0 jupyterlab-testutils-4.1.7.tgz: dfd1913c709eb8504c64544b5e17c8a3b6d30169e89ce4e2972d56691ae80dce jupyterlab-theme-dark-extension-4.1.7.tgz: d0f46a9eb2a640f0dc37637278d67458cbe99a781ec4f9ad514175db5dee5acd jupyterlab-theme-light-extension-4.1.7.tgz: deef0f859ec49c71604c2c3ef7bbc99c7916193d36c05e72e8684d5688a3bc4f jupyterlab-toc-6.1.7.tgz: f26aff2664d1639b5b1dffca5c48e9049ad15c8022da28a0db35e2215d60079e jupyterlab-toc-extension-6.1.7.tgz: 21287d336d582f39cb90b252208d93706a329edc925c4bc4a07f932d2e5f6154 jupyterlab-tooltip-4.1.7.tgz: c7bf2fedb2b071da7a35c95377b236d19444cfd54121690c2f43117d35b8207e jupyterlab-tooltip-extension-4.1.7.tgz: 812fe246176987d8e54bd671a4de83a9140607e9766227fc669c73fef8b96aff jupyterlab-translation-4.1.7.tgz: 6b41f3cf888403c5d9619bf291d458c934156377b1687cd8f616217258c627cf jupyterlab-translation-extension-4.1.7.tgz: 151619625a639741ca2f0f940c55709433a4d50089910e531b3e0e09d5b2710a jupyterlab-ui-components-4.1.7.tgz: 8fab9e7903d3384ee419263b0b8f683f45a04a84ee3e4cb835b651ac4aec6fa9 jupyterlab-ui-components-extension-4.1.7.tgz: c24add91bcd1cea41577d3e37e4f9b57fc1251bfc59b793a86d251da558038c7 jupyterlab-vega5-extension-4.1.7.tgz: c1f902c99b05071887c6b2e02270f735a1c3403e7f0cdc71e4ff3b0f6369e44c --- .bumpversion.cfg | 2 +- CHANGELOG.md | 29 +- builder/package.json | 2 +- buildutils/package.json | 2 +- buildutils/template/package.json | 4 +- dev_mode/package.json | 294 +-- examples/app/package.json | 68 +- examples/cell/package.json | 22 +- examples/console/package.json | 18 +- examples/federated/core_package/package.json | 168 +- examples/federated/md_package/package.json | 10 +- .../federated/middle_package/package.json | 4 +- examples/federated/package.json | 2 +- examples/filebrowser/package.json | 26 +- examples/notebook/package.json | 34 +- examples/terminal/package.json | 12 +- galata/extension/package.json | 20 +- galata/package.json | 20 +- jupyterlab/_version.py | 2 +- jupyterlab/staging/package.json | 294 +-- jupyterlab/staging/yarn.lock | 2098 ++++++++-------- .../mock_packages/extension/package.json | 6 +- .../interop/consumer/package.json | 6 +- .../interop/provider/package.json | 6 +- .../mock_packages/interop/token/package.json | 2 +- packages/application-extension/package.json | 20 +- packages/application/package.json | 22 +- packages/apputils-extension/package.json | 28 +- packages/apputils/package.json | 22 +- packages/attachments/package.json | 10 +- packages/cell-toolbar-extension/package.json | 12 +- packages/cell-toolbar/package.json | 16 +- packages/cells/package.json | 34 +- packages/celltags-extension/package.json | 10 +- packages/codeeditor/package.json | 18 +- packages/codemirror-extension/package.json | 16 +- packages/codemirror/package.json | 14 +- packages/completer-extension/package.json | 12 +- packages/completer/package.json | 24 +- packages/console-extension/package.json | 26 +- packages/console/package.json | 26 +- packages/coreutils/package.json | 2 +- packages/csvviewer-extension/package.json | 20 +- packages/csvviewer/package.json | 12 +- packages/debugger-extension/package.json | 34 +- packages/debugger/package.json | 34 +- packages/docmanager-extension/package.json | 22 +- packages/docmanager/package.json | 18 +- packages/docregistry/package.json | 22 +- .../documentsearch-extension/package.json | 12 +- packages/documentsearch/package.json | 10 +- .../extensionmanager-extension/package.json | 14 +- packages/extensionmanager/package.json | 12 +- packages/filebrowser-extension/package.json | 26 +- packages/filebrowser/package.json | 22 +- packages/fileeditor-extension/package.json | 46 +- packages/fileeditor/package.json | 26 +- packages/help-extension/package.json | 16 +- packages/htmlviewer-extension/package.json | 18 +- packages/htmlviewer/package.json | 12 +- packages/hub-extension/package.json | 12 +- packages/imageviewer-extension/package.json | 12 +- packages/imageviewer/package.json | 10 +- packages/inspector-extension/package.json | 18 +- packages/inspector/package.json | 18 +- packages/javascript-extension/package.json | 6 +- packages/json-extension/package.json | 12 +- packages/launcher-extension/package.json | 14 +- packages/launcher/package.json | 8 +- packages/logconsole-extension/package.json | 20 +- packages/logconsole/package.json | 16 +- packages/lsp-extension/package.json | 16 +- packages/lsp/package.json | 18 +- packages/mainmenu-extension/package.json | 18 +- packages/mainmenu/package.json | 10 +- .../markdownviewer-extension/package.json | 18 +- packages/markdownviewer/package.json | 14 +- packages/markedparser-extension/package.json | 12 +- packages/mathjax-extension/package.json | 6 +- packages/mermaid-extension/package.json | 12 +- packages/mermaid/package.json | 8 +- packages/metadataform-extension/package.json | 14 +- packages/metadataform/package.json | 16 +- packages/metapackage/package.json | 192 +- packages/nbconvert-css/package.json | 16 +- packages/nbformat/package.json | 4 +- packages/notebook-extension/package.json | 60 +- packages/notebook/package.json | 38 +- packages/observables/package.json | 4 +- packages/outputarea/package.json | 18 +- packages/pdf-extension/package.json | 4 +- packages/pluginmanager-extension/package.json | 12 +- packages/pluginmanager/package.json | 16 +- packages/property-inspector/package.json | 8 +- packages/rendermime-extension/package.json | 12 +- packages/rendermime-interfaces/package.json | 2 +- packages/rendermime/package.json | 18 +- packages/running-extension/package.json | 18 +- packages/running/package.json | 8 +- .../services/examples/browser/package.json | 6 +- packages/services/examples/node/package.json | 4 +- .../package.json | 10 +- packages/services/package.json | 12 +- packages/settingeditor-extension/package.json | 22 +- packages/settingeditor/package.json | 22 +- packages/settingregistry/package.json | 8 +- packages/shortcuts-extension/package.json | 12 +- packages/statedb/package.json | 4 +- packages/statusbar-extension/package.json | 12 +- packages/statusbar/package.json | 6 +- packages/terminal-extension/package.json | 22 +- packages/terminal/package.json | 10 +- packages/testing/package.json | 4 +- packages/theme-dark-extension/package.json | 8 +- packages/theme-light-extension/package.json | 8 +- packages/toc-extension/package.json | 12 +- packages/toc/package.json | 20 +- packages/tooltip-extension/package.json | 22 +- packages/tooltip/package.json | 10 +- packages/translation-extension/package.json | 12 +- packages/translation/package.json | 12 +- packages/ui-components-extension/package.json | 6 +- .../simple-windowed-list/package.json | 12 +- packages/ui-components/package.json | 12 +- packages/vega5-extension/package.json | 6 +- testutils/package.json | 12 +- yarn.lock | 2142 ++++++++--------- 127 files changed, 3525 insertions(+), 3500 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 56c57d9a7321..f0823eb229e8 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4, 1, 6, "final", 0 +current_version = 4, 1, 7, "final", 0 commit = False tag = False parse = (?P\d+)\,\ (?P\d+)\,\ (?P\d+)\,\ \"(?P\S+)\"\,\ (?P\d+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 03b585900c6f..32b7e99a24c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -266,6 +266,33 @@ To ease code migration to JupyterLab 4, developers should review the [migration +## 4.1.7 + +([Full Changelog](https://github.com/jupyterlab/jupyterlab/compare/v4.1.6...afb36c7a7486b8828862601f30848b2b09f573fd)) + +### Bugs fixed + +- Fix toggling extension at system level [#16241](https://github.com/jupyterlab/jupyterlab/pull/16241) ([@krassowski](https://github.com/krassowski)) +- Fix extension toggling at different level [#16102](https://github.com/jupyterlab/jupyterlab/pull/16102) ([@divyansshhh](https://github.com/divyansshhh)) +- Partial backport of windowing fix from #16013 [#16202](https://github.com/jupyterlab/jupyterlab/pull/16202) ([@krassowski](https://github.com/krassowski)) + +### Maintenance and upkeep improvements + +- Fix documentation snapshots test [#16159](https://github.com/jupyterlab/jupyterlab/pull/16159) ([@krassowski](https://github.com/krassowski)) + +### Documentation improvements + +- Clarify the LSP documentation [#16160](https://github.com/jupyterlab/jupyterlab/pull/16160) ([@krassowski](https://github.com/krassowski)) +- Removed broken gif links in README.md files [#16151](https://github.com/jupyterlab/jupyterlab/pull/16151) ([@Tanmay-Deshmukh](https://github.com/Tanmay-Deshmukh)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyterlab/jupyterlab/graphs/contributors?from=2024-04-08&to=2024-04-26&type=c)) + +[@andrii-i](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Aandrii-i+updated%3A2024-04-08..2024-04-26&type=Issues) | [@bollwyvl](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Abollwyvl+updated%3A2024-04-08..2024-04-26&type=Issues) | [@davidbrochart](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Adavidbrochart+updated%3A2024-04-08..2024-04-26&type=Issues) | [@echarles](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Aecharles+updated%3A2024-04-08..2024-04-26&type=Issues) | [@fcollonval](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Afcollonval+updated%3A2024-04-08..2024-04-26&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Agithub-actions+updated%3A2024-04-08..2024-04-26&type=Issues) | [@JasonWeill](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3AJasonWeill+updated%3A2024-04-08..2024-04-26&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ajtpio+updated%3A2024-04-08..2024-04-26&type=Issues) | [@jupyterlab-probot](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ajupyterlab-probot+updated%3A2024-04-08..2024-04-26&type=Issues) | [@kolibril13](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Akolibril13+updated%3A2024-04-08..2024-04-26&type=Issues) | [@krassowski](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Akrassowski+updated%3A2024-04-08..2024-04-26&type=Issues) | [@lumberbot-app](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Alumberbot-app+updated%3A2024-04-08..2024-04-26&type=Issues) | [@meeseeksmachine](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ameeseeksmachine+updated%3A2024-04-08..2024-04-26&type=Issues) | [@welcome](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Awelcome+updated%3A2024-04-08..2024-04-26&type=Issues) + + + ## 4.1.6 ([Full Changelog](https://github.com/jupyterlab/jupyterlab/compare/v4.1.5...5edd1a2f71250022b1f2660235fe41b755d4cc8a)) @@ -304,8 +331,6 @@ To ease code migration to JupyterLab 4, developers should review the [migration [@afshin](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Aafshin+updated%3A2024-03-14..2024-04-08&type=Issues) | [@brichet](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Abrichet+updated%3A2024-03-14..2024-04-08&type=Issues) | [@fcollonval](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Afcollonval+updated%3A2024-03-14..2024-04-08&type=Issues) | [@gabalafou](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Agabalafou+updated%3A2024-03-14..2024-04-08&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Agithub-actions+updated%3A2024-03-14..2024-04-08&type=Issues) | [@JasonWeill](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3AJasonWeill+updated%3A2024-03-14..2024-04-08&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ajtpio+updated%3A2024-03-14..2024-04-08&type=Issues) | [@jupyterlab-probot](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ajupyterlab-probot+updated%3A2024-03-14..2024-04-08&type=Issues) | [@krassowski](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Akrassowski+updated%3A2024-03-14..2024-04-08&type=Issues) | [@lumberbot-app](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Alumberbot-app+updated%3A2024-03-14..2024-04-08&type=Issues) | [@meeseeksmachine](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ameeseeksmachine+updated%3A2024-03-14..2024-04-08&type=Issues) | [@Mehak261124](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3AMehak261124+updated%3A2024-03-14..2024-04-08&type=Issues) | [@RRosio](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3ARRosio+updated%3A2024-03-14..2024-04-08&type=Issues) | [@trungleduc](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Atrungleduc+updated%3A2024-03-14..2024-04-08&type=Issues) | [@welcome](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Awelcome+updated%3A2024-03-14..2024-04-08&type=Issues) - - ## 4.1.5 ([Full Changelog](https://github.com/jupyterlab/jupyterlab/compare/v4.1.4...a5fa0aa9ba3b561f116d9b4d2e9bf775f95b67a1)) diff --git a/builder/package.json b/builder/package.json index 595dd15a4feb..24c25f494bfa 100644 --- a/builder/package.json +++ b/builder/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/builder", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Extension Builder", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { diff --git a/buildutils/package.json b/buildutils/package.json index 1e1991bc5563..793945c32831 100644 --- a/buildutils/package.json +++ b/buildutils/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/buildutils", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Build Utilities", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { diff --git a/buildutils/template/package.json b/buildutils/template/package.json index 5960600c81f3..aaa78c219196 100644 --- a/buildutils/template/package.json +++ b/buildutils/template/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/template", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Package Template", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,7 +37,7 @@ "watch": "tsc -b --watch" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "rimraf": "~5.0.5", "typescript": "~5.1.6" diff --git a/dev_mode/package.json b/dev_mode/package.json index 316174339ccf..e93fdac9706e 100644 --- a/dev_mode/package.json +++ b/dev_mode/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/application-top", - "version": "4.1.6", + "version": "4.1.7", "private": true, "license": "BSD-3-Clause", "scripts": { @@ -23,101 +23,101 @@ "@jupyter/react-components": "~0.13.3", "@jupyter/web-components": "~0.13.3", "@jupyter/ydoc": "~1.1.1", - "@jupyterlab/application": "~4.1.6", - "@jupyterlab/application-extension": "~4.1.6", - "@jupyterlab/apputils": "~4.2.6", - "@jupyterlab/apputils-extension": "~4.1.6", - "@jupyterlab/attachments": "~4.1.6", - "@jupyterlab/cell-toolbar": "~4.1.6", - "@jupyterlab/cell-toolbar-extension": "~4.1.6", - "@jupyterlab/cells": "~4.1.6", - "@jupyterlab/celltags-extension": "~4.1.6", - "@jupyterlab/codeeditor": "~4.1.6", - "@jupyterlab/codemirror": "~4.1.6", - "@jupyterlab/codemirror-extension": "~4.1.6", - "@jupyterlab/completer": "~4.1.6", - "@jupyterlab/completer-extension": "~4.1.6", - "@jupyterlab/console": "~4.1.6", - "@jupyterlab/console-extension": "~4.1.6", - "@jupyterlab/coreutils": "~6.1.6", - "@jupyterlab/csvviewer": "~4.1.6", - "@jupyterlab/csvviewer-extension": "~4.1.6", - "@jupyterlab/debugger": "~4.1.6", - "@jupyterlab/debugger-extension": "~4.1.6", - "@jupyterlab/docmanager": "~4.1.6", - "@jupyterlab/docmanager-extension": "~4.1.6", - "@jupyterlab/docregistry": "~4.1.6", - "@jupyterlab/documentsearch": "~4.1.6", - "@jupyterlab/documentsearch-extension": "~4.1.6", - "@jupyterlab/extensionmanager": "~4.1.6", - "@jupyterlab/extensionmanager-extension": "~4.1.6", - "@jupyterlab/filebrowser": "~4.1.6", - "@jupyterlab/filebrowser-extension": "~4.1.6", - "@jupyterlab/fileeditor": "~4.1.6", - "@jupyterlab/fileeditor-extension": "~4.1.6", - "@jupyterlab/help-extension": "~4.1.6", - "@jupyterlab/htmlviewer": "~4.1.6", - "@jupyterlab/htmlviewer-extension": "~4.1.6", - "@jupyterlab/hub-extension": "~4.1.6", - "@jupyterlab/imageviewer": "~4.1.6", - "@jupyterlab/imageviewer-extension": "~4.1.6", - "@jupyterlab/inspector": "~4.1.6", - "@jupyterlab/inspector-extension": "~4.1.6", - "@jupyterlab/javascript-extension": "~4.1.6", - "@jupyterlab/json-extension": "~4.1.6", - "@jupyterlab/launcher": "~4.1.6", - "@jupyterlab/launcher-extension": "~4.1.6", - "@jupyterlab/logconsole": "~4.1.6", - "@jupyterlab/logconsole-extension": "~4.1.6", - "@jupyterlab/lsp": "~4.1.6", - "@jupyterlab/lsp-extension": "~4.1.6", - "@jupyterlab/mainmenu": "~4.1.6", - "@jupyterlab/mainmenu-extension": "~4.1.6", - "@jupyterlab/markdownviewer": "~4.1.6", - "@jupyterlab/markdownviewer-extension": "~4.1.6", - "@jupyterlab/markedparser-extension": "~4.1.6", - "@jupyterlab/mathjax-extension": "~4.1.6", - "@jupyterlab/mermaid": "~4.1.6", - "@jupyterlab/mermaid-extension": "~4.1.6", - "@jupyterlab/metadataform": "~4.1.6", - "@jupyterlab/metadataform-extension": "~4.1.6", - "@jupyterlab/metapackage": "~4.1.6", - "@jupyterlab/nbconvert-css": "~4.1.6", - "@jupyterlab/nbformat": "~4.1.6", - "@jupyterlab/notebook": "~4.1.6", - "@jupyterlab/notebook-extension": "~4.1.6", - "@jupyterlab/observables": "~5.1.6", - "@jupyterlab/outputarea": "~4.1.6", - "@jupyterlab/pdf-extension": "~4.1.6", - "@jupyterlab/pluginmanager": "~4.1.6", - "@jupyterlab/pluginmanager-extension": "~4.1.6", - "@jupyterlab/property-inspector": "~4.1.6", - "@jupyterlab/rendermime": "~4.1.6", - "@jupyterlab/rendermime-extension": "~4.1.6", - "@jupyterlab/rendermime-interfaces": "~3.9.6", - "@jupyterlab/running": "~4.1.6", - "@jupyterlab/running-extension": "~4.1.6", - "@jupyterlab/services": "~7.1.6", - "@jupyterlab/settingeditor": "~4.1.6", - "@jupyterlab/settingeditor-extension": "~4.1.6", - "@jupyterlab/settingregistry": "~4.1.6", - "@jupyterlab/shortcuts-extension": "~4.1.6", - "@jupyterlab/statedb": "~4.1.6", - "@jupyterlab/statusbar": "~4.1.6", - "@jupyterlab/statusbar-extension": "~4.1.6", - "@jupyterlab/terminal": "~4.1.6", - "@jupyterlab/terminal-extension": "~4.1.6", - "@jupyterlab/theme-dark-extension": "~4.1.6", - "@jupyterlab/theme-light-extension": "~4.1.6", - "@jupyterlab/toc": "~6.1.6", - "@jupyterlab/toc-extension": "~6.1.6", - "@jupyterlab/tooltip": "~4.1.6", - "@jupyterlab/tooltip-extension": "~4.1.6", - "@jupyterlab/translation": "~4.1.6", - "@jupyterlab/translation-extension": "~4.1.6", - "@jupyterlab/ui-components": "~4.1.6", - "@jupyterlab/ui-components-extension": "~4.1.6", - "@jupyterlab/vega5-extension": "~4.1.6", + "@jupyterlab/application": "~4.1.7", + "@jupyterlab/application-extension": "~4.1.7", + "@jupyterlab/apputils": "~4.2.7", + "@jupyterlab/apputils-extension": "~4.1.7", + "@jupyterlab/attachments": "~4.1.7", + "@jupyterlab/cell-toolbar": "~4.1.7", + "@jupyterlab/cell-toolbar-extension": "~4.1.7", + "@jupyterlab/cells": "~4.1.7", + "@jupyterlab/celltags-extension": "~4.1.7", + "@jupyterlab/codeeditor": "~4.1.7", + "@jupyterlab/codemirror": "~4.1.7", + "@jupyterlab/codemirror-extension": "~4.1.7", + "@jupyterlab/completer": "~4.1.7", + "@jupyterlab/completer-extension": "~4.1.7", + "@jupyterlab/console": "~4.1.7", + "@jupyterlab/console-extension": "~4.1.7", + "@jupyterlab/coreutils": "~6.1.7", + "@jupyterlab/csvviewer": "~4.1.7", + "@jupyterlab/csvviewer-extension": "~4.1.7", + "@jupyterlab/debugger": "~4.1.7", + "@jupyterlab/debugger-extension": "~4.1.7", + "@jupyterlab/docmanager": "~4.1.7", + "@jupyterlab/docmanager-extension": "~4.1.7", + "@jupyterlab/docregistry": "~4.1.7", + "@jupyterlab/documentsearch": "~4.1.7", + "@jupyterlab/documentsearch-extension": "~4.1.7", + "@jupyterlab/extensionmanager": "~4.1.7", + "@jupyterlab/extensionmanager-extension": "~4.1.7", + "@jupyterlab/filebrowser": "~4.1.7", + "@jupyterlab/filebrowser-extension": "~4.1.7", + "@jupyterlab/fileeditor": "~4.1.7", + "@jupyterlab/fileeditor-extension": "~4.1.7", + "@jupyterlab/help-extension": "~4.1.7", + "@jupyterlab/htmlviewer": "~4.1.7", + "@jupyterlab/htmlviewer-extension": "~4.1.7", + "@jupyterlab/hub-extension": "~4.1.7", + "@jupyterlab/imageviewer": "~4.1.7", + "@jupyterlab/imageviewer-extension": "~4.1.7", + "@jupyterlab/inspector": "~4.1.7", + "@jupyterlab/inspector-extension": "~4.1.7", + "@jupyterlab/javascript-extension": "~4.1.7", + "@jupyterlab/json-extension": "~4.1.7", + "@jupyterlab/launcher": "~4.1.7", + "@jupyterlab/launcher-extension": "~4.1.7", + "@jupyterlab/logconsole": "~4.1.7", + "@jupyterlab/logconsole-extension": "~4.1.7", + "@jupyterlab/lsp": "~4.1.7", + "@jupyterlab/lsp-extension": "~4.1.7", + "@jupyterlab/mainmenu": "~4.1.7", + "@jupyterlab/mainmenu-extension": "~4.1.7", + "@jupyterlab/markdownviewer": "~4.1.7", + "@jupyterlab/markdownviewer-extension": "~4.1.7", + "@jupyterlab/markedparser-extension": "~4.1.7", + "@jupyterlab/mathjax-extension": "~4.1.7", + "@jupyterlab/mermaid": "~4.1.7", + "@jupyterlab/mermaid-extension": "~4.1.7", + "@jupyterlab/metadataform": "~4.1.7", + "@jupyterlab/metadataform-extension": "~4.1.7", + "@jupyterlab/metapackage": "~4.1.7", + "@jupyterlab/nbconvert-css": "~4.1.7", + "@jupyterlab/nbformat": "~4.1.7", + "@jupyterlab/notebook": "~4.1.7", + "@jupyterlab/notebook-extension": "~4.1.7", + "@jupyterlab/observables": "~5.1.7", + "@jupyterlab/outputarea": "~4.1.7", + "@jupyterlab/pdf-extension": "~4.1.7", + "@jupyterlab/pluginmanager": "~4.1.7", + "@jupyterlab/pluginmanager-extension": "~4.1.7", + "@jupyterlab/property-inspector": "~4.1.7", + "@jupyterlab/rendermime": "~4.1.7", + "@jupyterlab/rendermime-extension": "~4.1.7", + "@jupyterlab/rendermime-interfaces": "~3.9.7", + "@jupyterlab/running": "~4.1.7", + "@jupyterlab/running-extension": "~4.1.7", + "@jupyterlab/services": "~7.1.7", + "@jupyterlab/settingeditor": "~4.1.7", + "@jupyterlab/settingeditor-extension": "~4.1.7", + "@jupyterlab/settingregistry": "~4.1.7", + "@jupyterlab/shortcuts-extension": "~4.1.7", + "@jupyterlab/statedb": "~4.1.7", + "@jupyterlab/statusbar": "~4.1.7", + "@jupyterlab/statusbar-extension": "~4.1.7", + "@jupyterlab/terminal": "~4.1.7", + "@jupyterlab/terminal-extension": "~4.1.7", + "@jupyterlab/theme-dark-extension": "~4.1.7", + "@jupyterlab/theme-light-extension": "~4.1.7", + "@jupyterlab/toc": "~6.1.7", + "@jupyterlab/toc-extension": "~6.1.7", + "@jupyterlab/tooltip": "~4.1.7", + "@jupyterlab/tooltip-extension": "~4.1.7", + "@jupyterlab/translation": "~4.1.7", + "@jupyterlab/translation-extension": "~4.1.7", + "@jupyterlab/ui-components": "~4.1.7", + "@jupyterlab/ui-components-extension": "~4.1.7", + "@jupyterlab/vega5-extension": "~4.1.7", "@lezer/common": "^1.0.0", "@lezer/highlight": "^1.0.0", "@lumino/algorithm": "^2.0.0", @@ -142,58 +142,58 @@ "yjs": "^13.5.40" }, "dependencies": { - "@jupyterlab/application": "~4.1.6", - "@jupyterlab/application-extension": "~4.1.6", - "@jupyterlab/apputils-extension": "~4.1.6", - "@jupyterlab/cell-toolbar-extension": "~4.1.6", - "@jupyterlab/celltags-extension": "~4.1.6", - "@jupyterlab/codemirror-extension": "~4.1.6", - "@jupyterlab/completer-extension": "~4.1.6", - "@jupyterlab/console-extension": "~4.1.6", - "@jupyterlab/coreutils": "~6.1.6", - "@jupyterlab/csvviewer-extension": "~4.1.6", - "@jupyterlab/debugger-extension": "~4.1.6", - "@jupyterlab/docmanager-extension": "~4.1.6", - "@jupyterlab/documentsearch-extension": "~4.1.6", - "@jupyterlab/extensionmanager-extension": "~4.1.6", - "@jupyterlab/filebrowser-extension": "~4.1.6", - "@jupyterlab/fileeditor-extension": "~4.1.6", - "@jupyterlab/help-extension": "~4.1.6", - "@jupyterlab/htmlviewer-extension": "~4.1.6", - "@jupyterlab/hub-extension": "~4.1.6", - "@jupyterlab/imageviewer-extension": "~4.1.6", - "@jupyterlab/inspector-extension": "~4.1.6", - "@jupyterlab/javascript-extension": "~4.1.6", - "@jupyterlab/json-extension": "~4.1.6", - "@jupyterlab/launcher-extension": "~4.1.6", - "@jupyterlab/logconsole-extension": "~4.1.6", - "@jupyterlab/lsp-extension": "~4.1.6", - "@jupyterlab/mainmenu-extension": "~4.1.6", - "@jupyterlab/markdownviewer-extension": "~4.1.6", - "@jupyterlab/markedparser-extension": "~4.1.6", - "@jupyterlab/mathjax-extension": "~4.1.6", - "@jupyterlab/mermaid-extension": "~4.1.6", - "@jupyterlab/metadataform-extension": "~4.1.6", - "@jupyterlab/notebook-extension": "~4.1.6", - "@jupyterlab/pdf-extension": "~4.1.6", - "@jupyterlab/pluginmanager-extension": "~4.1.6", - "@jupyterlab/rendermime-extension": "~4.1.6", - "@jupyterlab/running-extension": "~4.1.6", - "@jupyterlab/settingeditor-extension": "~4.1.6", - "@jupyterlab/shortcuts-extension": "~4.1.6", - "@jupyterlab/statusbar-extension": "~4.1.6", - "@jupyterlab/terminal-extension": "~4.1.6", - "@jupyterlab/theme-dark-extension": "~4.1.6", - "@jupyterlab/theme-light-extension": "~4.1.6", - "@jupyterlab/toc-extension": "~6.1.6", - "@jupyterlab/tooltip-extension": "~4.1.6", - "@jupyterlab/translation-extension": "~4.1.6", - "@jupyterlab/ui-components-extension": "~4.1.6", - "@jupyterlab/vega5-extension": "~4.1.6" + "@jupyterlab/application": "~4.1.7", + "@jupyterlab/application-extension": "~4.1.7", + "@jupyterlab/apputils-extension": "~4.1.7", + "@jupyterlab/cell-toolbar-extension": "~4.1.7", + "@jupyterlab/celltags-extension": "~4.1.7", + "@jupyterlab/codemirror-extension": "~4.1.7", + "@jupyterlab/completer-extension": "~4.1.7", + "@jupyterlab/console-extension": "~4.1.7", + "@jupyterlab/coreutils": "~6.1.7", + "@jupyterlab/csvviewer-extension": "~4.1.7", + "@jupyterlab/debugger-extension": "~4.1.7", + "@jupyterlab/docmanager-extension": "~4.1.7", + "@jupyterlab/documentsearch-extension": "~4.1.7", + "@jupyterlab/extensionmanager-extension": "~4.1.7", + "@jupyterlab/filebrowser-extension": "~4.1.7", + "@jupyterlab/fileeditor-extension": "~4.1.7", + "@jupyterlab/help-extension": "~4.1.7", + "@jupyterlab/htmlviewer-extension": "~4.1.7", + "@jupyterlab/hub-extension": "~4.1.7", + "@jupyterlab/imageviewer-extension": "~4.1.7", + "@jupyterlab/inspector-extension": "~4.1.7", + "@jupyterlab/javascript-extension": "~4.1.7", + "@jupyterlab/json-extension": "~4.1.7", + "@jupyterlab/launcher-extension": "~4.1.7", + "@jupyterlab/logconsole-extension": "~4.1.7", + "@jupyterlab/lsp-extension": "~4.1.7", + "@jupyterlab/mainmenu-extension": "~4.1.7", + "@jupyterlab/markdownviewer-extension": "~4.1.7", + "@jupyterlab/markedparser-extension": "~4.1.7", + "@jupyterlab/mathjax-extension": "~4.1.7", + "@jupyterlab/mermaid-extension": "~4.1.7", + "@jupyterlab/metadataform-extension": "~4.1.7", + "@jupyterlab/notebook-extension": "~4.1.7", + "@jupyterlab/pdf-extension": "~4.1.7", + "@jupyterlab/pluginmanager-extension": "~4.1.7", + "@jupyterlab/rendermime-extension": "~4.1.7", + "@jupyterlab/running-extension": "~4.1.7", + "@jupyterlab/settingeditor-extension": "~4.1.7", + "@jupyterlab/shortcuts-extension": "~4.1.7", + "@jupyterlab/statusbar-extension": "~4.1.7", + "@jupyterlab/terminal-extension": "~4.1.7", + "@jupyterlab/theme-dark-extension": "~4.1.7", + "@jupyterlab/theme-light-extension": "~4.1.7", + "@jupyterlab/toc-extension": "~6.1.7", + "@jupyterlab/tooltip-extension": "~4.1.7", + "@jupyterlab/translation-extension": "~4.1.7", + "@jupyterlab/ui-components-extension": "~4.1.7", + "@jupyterlab/vega5-extension": "~4.1.7" }, "devDependencies": { - "@jupyterlab/builder": "^4.1.6", - "@jupyterlab/buildutils": "^4.1.6", + "@jupyterlab/builder": "^4.1.7", + "@jupyterlab/buildutils": "^4.1.7", "chokidar": "^3.4.0", "css-loader": "^6.7.1", "duplicate-package-checker-webpack-plugin": "^3.0.0", @@ -222,7 +222,7 @@ }, "jupyterlab": { "name": "JupyterLab", - "version": "4.1.6", + "version": "4.1.7", "extensions": { "@jupyterlab/application-extension": "", "@jupyterlab/apputils-extension": "", diff --git a/examples/app/package.json b/examples/app/package.json index 0dd11d3163f6..c0015f45473b 100644 --- a/examples/app/package.json +++ b/examples/app/package.json @@ -1,45 +1,45 @@ { "name": "@jupyterlab/example-app", - "version": "4.1.6", + "version": "4.1.7", "private": true, "scripts": { "build": "webpack", "clean": "rimraf build" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/application-extension": "^4.1.6", - "@jupyterlab/apputils-extension": "^4.1.6", - "@jupyterlab/builder": "^4.1.6", - "@jupyterlab/celltags-extension": "^4.1.6", - "@jupyterlab/codemirror-extension": "^4.1.6", - "@jupyterlab/completer-extension": "^4.1.6", - "@jupyterlab/console-extension": "^4.1.6", - "@jupyterlab/csvviewer-extension": "^4.1.6", - "@jupyterlab/docmanager-extension": "^4.1.6", - "@jupyterlab/filebrowser-extension": "^4.1.6", - "@jupyterlab/fileeditor-extension": "^4.1.6", - "@jupyterlab/help-extension": "^4.1.6", - "@jupyterlab/imageviewer-extension": "^4.1.6", - "@jupyterlab/inspector-extension": "^4.1.6", - "@jupyterlab/launcher-extension": "^4.1.6", - "@jupyterlab/mainmenu-extension": "^4.1.6", - "@jupyterlab/markdownviewer-extension": "^4.1.6", - "@jupyterlab/mathjax-extension": "^4.1.6", - "@jupyterlab/metadataform-extension": "^4.1.6", - "@jupyterlab/notebook-extension": "^4.1.6", - "@jupyterlab/rendermime-extension": "^4.1.6", - "@jupyterlab/running-extension": "^4.1.6", - "@jupyterlab/settingeditor-extension": "^4.1.6", - "@jupyterlab/shortcuts-extension": "^4.1.6", - "@jupyterlab/statusbar-extension": "^4.1.6", - "@jupyterlab/theme-dark-extension": "^4.1.6", - "@jupyterlab/theme-light-extension": "^4.1.6", - "@jupyterlab/toc-extension": "^6.1.6", - "@jupyterlab/tooltip-extension": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/translation-extension": "^4.1.6", - "@jupyterlab/ui-components-extension": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/application-extension": "^4.1.7", + "@jupyterlab/apputils-extension": "^4.1.7", + "@jupyterlab/builder": "^4.1.7", + "@jupyterlab/celltags-extension": "^4.1.7", + "@jupyterlab/codemirror-extension": "^4.1.7", + "@jupyterlab/completer-extension": "^4.1.7", + "@jupyterlab/console-extension": "^4.1.7", + "@jupyterlab/csvviewer-extension": "^4.1.7", + "@jupyterlab/docmanager-extension": "^4.1.7", + "@jupyterlab/filebrowser-extension": "^4.1.7", + "@jupyterlab/fileeditor-extension": "^4.1.7", + "@jupyterlab/help-extension": "^4.1.7", + "@jupyterlab/imageviewer-extension": "^4.1.7", + "@jupyterlab/inspector-extension": "^4.1.7", + "@jupyterlab/launcher-extension": "^4.1.7", + "@jupyterlab/mainmenu-extension": "^4.1.7", + "@jupyterlab/markdownviewer-extension": "^4.1.7", + "@jupyterlab/mathjax-extension": "^4.1.7", + "@jupyterlab/metadataform-extension": "^4.1.7", + "@jupyterlab/notebook-extension": "^4.1.7", + "@jupyterlab/rendermime-extension": "^4.1.7", + "@jupyterlab/running-extension": "^4.1.7", + "@jupyterlab/settingeditor-extension": "^4.1.7", + "@jupyterlab/shortcuts-extension": "^4.1.7", + "@jupyterlab/statusbar-extension": "^4.1.7", + "@jupyterlab/theme-dark-extension": "^4.1.7", + "@jupyterlab/theme-light-extension": "^4.1.7", + "@jupyterlab/toc-extension": "^6.1.7", + "@jupyterlab/tooltip-extension": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/translation-extension": "^4.1.7", + "@jupyterlab/ui-components-extension": "^4.1.7", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/examples/cell/package.json b/examples/cell/package.json index eee7020a3d10..bafd9ff9ad64 100644 --- a/examples/cell/package.json +++ b/examples/cell/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-cell", - "version": "4.1.6", + "version": "4.1.7", "private": true, "scripts": { "build": "tsc -p src && webpack", @@ -9,16 +9,16 @@ "dependencies": { "@jupyter/web-components": "^0.15.2", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/cells": "^4.1.6", - "@jupyterlab/codemirror": "^4.1.6", - "@jupyterlab/completer": "^4.1.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/rendermime": "^4.1.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/theme-light-extension": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/cells": "^4.1.7", + "@jupyterlab/codemirror": "^4.1.7", + "@jupyterlab/completer": "^4.1.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/theme-light-extension": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/commands": "^2.2.0", "@lumino/widgets": "^2.3.1" }, diff --git a/examples/console/package.json b/examples/console/package.json index b40df1e6cc61..8a42c826df85 100644 --- a/examples/console/package.json +++ b/examples/console/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-console", - "version": "4.1.6", + "version": "4.1.7", "private": true, "scripts": { "build": "tsc -p src && webpack", @@ -9,14 +9,14 @@ "dependencies": { "@jupyter/web-components": "^0.15.2", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/codemirror": "^4.1.6", - "@jupyterlab/console": "^4.1.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/rendermime": "^4.1.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/theme-light-extension": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/codemirror": "^4.1.7", + "@jupyterlab/console": "^4.1.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/theme-light-extension": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", "@lumino/commands": "^2.2.0", "@lumino/widgets": "^2.3.1" }, diff --git a/examples/federated/core_package/package.json b/examples/federated/core_package/package.json index 2de28c6319b6..a831ecebb0ae 100644 --- a/examples/federated/core_package/package.json +++ b/examples/federated/core_package/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-federated-core", - "version": "3.1.6", + "version": "3.1.7", "private": true, "scripts": { "build": "npm run clean && webpack", @@ -8,77 +8,77 @@ "watch": "npm run clean && webpack --watch" }, "resolutions": { - "@jupyterlab/application": "~4.1.6", - "@jupyterlab/application-extension": "~4.1.6", + "@jupyterlab/application": "~4.1.7", + "@jupyterlab/application-extension": "~4.1.7", "@jupyterlab/apputils": "~4.1.0-alpha.0", - "@jupyterlab/apputils-extension": "~4.1.6", + "@jupyterlab/apputils-extension": "~4.1.7", "@jupyterlab/attachments": "~4.1.0-alpha.0", "@jupyterlab/cells": "~4.1.0-alpha.0", - "@jupyterlab/celltags-extension": "~4.1.6", + "@jupyterlab/celltags-extension": "~4.1.7", "@jupyterlab/codeeditor": "~4.1.0-alpha.0", - "@jupyterlab/codemirror-extension": "~4.1.6", + "@jupyterlab/codemirror-extension": "~4.1.7", "@jupyterlab/completer": "~4.1.0-alpha.0", - "@jupyterlab/completer-extension": "~4.1.6", + "@jupyterlab/completer-extension": "~4.1.7", "@jupyterlab/console": "~4.1.0-alpha.0", - "@jupyterlab/console-extension": "~4.1.6", - "@jupyterlab/coreutils": "~6.1.6", - "@jupyterlab/csvviewer-extension": "~4.1.6", + "@jupyterlab/console-extension": "~4.1.7", + "@jupyterlab/coreutils": "~6.1.7", + "@jupyterlab/csvviewer-extension": "~4.1.7", "@jupyterlab/debugger": "~4.1.0-alpha.0", - "@jupyterlab/debugger-extension": "~4.1.6", + "@jupyterlab/debugger-extension": "~4.1.7", "@jupyterlab/docmanager": "~4.1.0-alpha.0", - "@jupyterlab/docmanager-extension": "~4.1.6", + "@jupyterlab/docmanager-extension": "~4.1.7", "@jupyterlab/documentsearch": "~4.1.0-alpha.0", - "@jupyterlab/documentsearch-extension": "~4.1.6", + "@jupyterlab/documentsearch-extension": "~4.1.7", "@jupyterlab/extensionmanager": "~4.1.0-alpha.0", - "@jupyterlab/extensionmanager-extension": "~4.1.6", + "@jupyterlab/extensionmanager-extension": "~4.1.7", "@jupyterlab/filebrowser": "~4.1.0-alpha.0", - "@jupyterlab/filebrowser-extension": "~4.1.6", + "@jupyterlab/filebrowser-extension": "~4.1.7", "@jupyterlab/fileeditor": "~4.1.0-alpha.0", - "@jupyterlab/fileeditor-extension": "~4.1.6", - "@jupyterlab/help-extension": "~4.1.6", - "@jupyterlab/htmlviewer-extension": "~4.1.6", - "@jupyterlab/hub-extension": "~4.1.6", + "@jupyterlab/fileeditor-extension": "~4.1.7", + "@jupyterlab/help-extension": "~4.1.7", + "@jupyterlab/htmlviewer-extension": "~4.1.7", + "@jupyterlab/hub-extension": "~4.1.7", "@jupyterlab/imageviewer": "~4.1.0-alpha.0", - "@jupyterlab/imageviewer-extension": "~4.1.6", + "@jupyterlab/imageviewer-extension": "~4.1.7", "@jupyterlab/inspector": "~4.1.0-alpha.0", - "@jupyterlab/inspector-extension": "~4.1.6", - "@jupyterlab/javascript-extension": "~4.1.6", - "@jupyterlab/json-extension": "~4.1.6", + "@jupyterlab/inspector-extension": "~4.1.7", + "@jupyterlab/javascript-extension": "~4.1.7", + "@jupyterlab/json-extension": "~4.1.7", "@jupyterlab/launcher": "~4.1.0-alpha.0", - "@jupyterlab/launcher-extension": "~4.1.6", + "@jupyterlab/launcher-extension": "~4.1.7", "@jupyterlab/logconsole": "~4.1.0-alpha.0", - "@jupyterlab/logconsole-extension": "~4.1.6", + "@jupyterlab/logconsole-extension": "~4.1.7", "@jupyterlab/lsp": "~4.1.0-alpha.0", - "@jupyterlab/lsp-extension": "~4.1.6", + "@jupyterlab/lsp-extension": "~4.1.7", "@jupyterlab/mainmenu": "~4.1.0-alpha.0", - "@jupyterlab/mainmenu-extension": "~4.1.6", + "@jupyterlab/mainmenu-extension": "~4.1.7", "@jupyterlab/markedparser-extension": "~4.1.0-alpha.0", - "@jupyterlab/mathjax-extension": "~4.1.6", + "@jupyterlab/mathjax-extension": "~4.1.7", "@jupyterlab/metadataform": "~4.1.0-alpha.0", - "@jupyterlab/metadataform-extension": "~4.1.6", + "@jupyterlab/metadataform-extension": "~4.1.7", "@jupyterlab/notebook": "~4.1.0-alpha.0", - "@jupyterlab/notebook-extension": "~4.1.6", - "@jupyterlab/pdf-extension": "~4.1.6", + "@jupyterlab/notebook-extension": "~4.1.7", + "@jupyterlab/pdf-extension": "~4.1.7", "@jupyterlab/rendermime": "~4.1.0-alpha.0", - "@jupyterlab/rendermime-extension": "~4.1.6", + "@jupyterlab/rendermime-extension": "~4.1.7", "@jupyterlab/rendermime-interfaces": "^3.9.0-alpha.1", "@jupyterlab/services": "~7.1.0-alpha.0", "@jupyterlab/settingeditor": "~4.1.0-alpha.0", - "@jupyterlab/settingeditor-extension": "~4.1.6", + "@jupyterlab/settingeditor-extension": "~4.1.7", "@jupyterlab/settingregistry": "~4.1.0-alpha.0", - "@jupyterlab/shortcuts-extension": "~4.1.6", + "@jupyterlab/shortcuts-extension": "~4.1.7", "@jupyterlab/statedb": "~4.1.0-alpha.0", "@jupyterlab/statusbar": "~4.1.0-alpha.0", - "@jupyterlab/statusbar-extension": "~4.1.6", - "@jupyterlab/theme-light-extension": "~4.1.6", - "@jupyterlab/toc-extension": "~6.1.6", + "@jupyterlab/statusbar-extension": "~4.1.7", + "@jupyterlab/theme-light-extension": "~4.1.7", + "@jupyterlab/toc-extension": "~6.1.7", "@jupyterlab/tooltip": "~4.1.0-alpha.0", - "@jupyterlab/tooltip-extension": "~4.1.6", - "@jupyterlab/translation": "~4.1.6", - "@jupyterlab/translation-extension": "~4.1.6", + "@jupyterlab/tooltip-extension": "~4.1.7", + "@jupyterlab/translation": "~4.1.7", + "@jupyterlab/translation-extension": "~4.1.7", "@jupyterlab/ui-components": "~4.1.0-alpha.0", - "@jupyterlab/ui-components-extension": "~4.1.6", - "@jupyterlab/vega5-extension": "~4.1.6", + "@jupyterlab/ui-components-extension": "~4.1.7", + "@jupyterlab/vega5-extension": "~4.1.7", "@lumino/algorithm": "^2.0.0", "@lumino/application": "^2.3.0-alpha.0", "@lumino/commands": "^2.0.1", @@ -96,50 +96,50 @@ "yjs": "^13.5.40" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/application-extension": "^4.1.6", - "@jupyterlab/apputils-extension": "^4.1.6", - "@jupyterlab/celltags-extension": "^4.1.6", - "@jupyterlab/codemirror-extension": "^4.1.6", - "@jupyterlab/completer-extension": "^4.1.6", - "@jupyterlab/console-extension": "^4.1.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/csvviewer-extension": "^4.1.6", - "@jupyterlab/debugger-extension": "^4.1.6", - "@jupyterlab/docmanager-extension": "^4.1.6", - "@jupyterlab/documentsearch-extension": "^4.1.6", - "@jupyterlab/extensionmanager-extension": "^4.1.6", - "@jupyterlab/filebrowser-extension": "^4.1.6", - "@jupyterlab/fileeditor-extension": "^4.1.6", - "@jupyterlab/help-extension": "^4.1.6", - "@jupyterlab/htmlviewer-extension": "^4.1.6", - "@jupyterlab/hub-extension": "^4.1.6", - "@jupyterlab/imageviewer-extension": "^4.1.6", - "@jupyterlab/inspector-extension": "^4.1.6", - "@jupyterlab/javascript-extension": "^4.1.6", - "@jupyterlab/json-extension": "^4.1.6", - "@jupyterlab/launcher-extension": "^4.1.6", - "@jupyterlab/logconsole-extension": "^4.1.6", - "@jupyterlab/lsp-extension": "^4.1.6", - "@jupyterlab/mainmenu-extension": "^4.1.6", - "@jupyterlab/mathjax-extension": "^4.1.6", - "@jupyterlab/metadataform-extension": "^4.1.6", - "@jupyterlab/notebook-extension": "^4.1.6", - "@jupyterlab/pdf-extension": "^4.1.6", - "@jupyterlab/rendermime-extension": "^4.1.6", - "@jupyterlab/settingeditor-extension": "^4.1.6", - "@jupyterlab/shortcuts-extension": "^4.1.6", - "@jupyterlab/statusbar-extension": "^4.1.6", - "@jupyterlab/theme-light-extension": "^4.1.6", - "@jupyterlab/toc-extension": "^6.1.6", - "@jupyterlab/tooltip-extension": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/translation-extension": "^4.1.6", - "@jupyterlab/ui-components-extension": "^4.1.6", - "@jupyterlab/vega5-extension": "^4.1.6" + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/application-extension": "^4.1.7", + "@jupyterlab/apputils-extension": "^4.1.7", + "@jupyterlab/celltags-extension": "^4.1.7", + "@jupyterlab/codemirror-extension": "^4.1.7", + "@jupyterlab/completer-extension": "^4.1.7", + "@jupyterlab/console-extension": "^4.1.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/csvviewer-extension": "^4.1.7", + "@jupyterlab/debugger-extension": "^4.1.7", + "@jupyterlab/docmanager-extension": "^4.1.7", + "@jupyterlab/documentsearch-extension": "^4.1.7", + "@jupyterlab/extensionmanager-extension": "^4.1.7", + "@jupyterlab/filebrowser-extension": "^4.1.7", + "@jupyterlab/fileeditor-extension": "^4.1.7", + "@jupyterlab/help-extension": "^4.1.7", + "@jupyterlab/htmlviewer-extension": "^4.1.7", + "@jupyterlab/hub-extension": "^4.1.7", + "@jupyterlab/imageviewer-extension": "^4.1.7", + "@jupyterlab/inspector-extension": "^4.1.7", + "@jupyterlab/javascript-extension": "^4.1.7", + "@jupyterlab/json-extension": "^4.1.7", + "@jupyterlab/launcher-extension": "^4.1.7", + "@jupyterlab/logconsole-extension": "^4.1.7", + "@jupyterlab/lsp-extension": "^4.1.7", + "@jupyterlab/mainmenu-extension": "^4.1.7", + "@jupyterlab/mathjax-extension": "^4.1.7", + "@jupyterlab/metadataform-extension": "^4.1.7", + "@jupyterlab/notebook-extension": "^4.1.7", + "@jupyterlab/pdf-extension": "^4.1.7", + "@jupyterlab/rendermime-extension": "^4.1.7", + "@jupyterlab/settingeditor-extension": "^4.1.7", + "@jupyterlab/shortcuts-extension": "^4.1.7", + "@jupyterlab/statusbar-extension": "^4.1.7", + "@jupyterlab/theme-light-extension": "^4.1.7", + "@jupyterlab/toc-extension": "^6.1.7", + "@jupyterlab/tooltip-extension": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/translation-extension": "^4.1.7", + "@jupyterlab/ui-components-extension": "^4.1.7", + "@jupyterlab/vega5-extension": "^4.1.7" }, "devDependencies": { - "@jupyterlab/builder": "^4.1.6", + "@jupyterlab/builder": "^4.1.7", "copy-webpack-plugin": "^11.0.0", "css-loader": "^6.7.1", "fs-extra": "^10.1.0", diff --git a/examples/federated/md_package/package.json b/examples/federated/md_package/package.json index ef29b8a33eaf..3da0842e89a6 100644 --- a/examples/federated/md_package/package.json +++ b/examples/federated/md_package/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-federated-md", - "version": "3.1.6", + "version": "3.1.7", "private": true, "main": "./index.js", "scripts": { @@ -8,13 +8,13 @@ "clean": "rimraf ../labextensions/@jupyterlab/example-federated-md" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/example-federated-middle": "^3.0.9", - "@jupyterlab/markdownviewer-extension": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/example-federated-middle": "^3.0.10", + "@jupyterlab/markdownviewer-extension": "^4.1.7", "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/builder": "^4.1.6", + "@jupyterlab/builder": "^4.1.7", "rimraf": "~5.0.5" }, "jupyterlab": { diff --git a/examples/federated/middle_package/package.json b/examples/federated/middle_package/package.json index feb5901411a3..10ab79a9357e 100644 --- a/examples/federated/middle_package/package.json +++ b/examples/federated/middle_package/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-federated-middle", - "version": "3.0.9", + "version": "3.0.10", "private": true, "scripts": { "build": "npm run clean && build-labextension --core-path ../core_package .", @@ -10,7 +10,7 @@ "@lumino/coreutils": "^2.1.2" }, "devDependencies": { - "@jupyterlab/builder": "^4.1.6", + "@jupyterlab/builder": "^4.1.7", "rimraf": "~5.0.5" }, "publishConfig": { diff --git a/examples/federated/package.json b/examples/federated/package.json index 49c645d6a578..da902eb06f5a 100644 --- a/examples/federated/package.json +++ b/examples/federated/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-federated", - "version": "3.1.6", + "version": "3.1.7", "private": true, "scripts": { "build": "npm run build:core && npm run build:middle && npm run build:md", diff --git a/examples/filebrowser/package.json b/examples/filebrowser/package.json index 6ba7b9767057..ebeb9e4b739a 100644 --- a/examples/filebrowser/package.json +++ b/examples/filebrowser/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-filebrowser", - "version": "4.1.6", + "version": "4.1.7", "private": true, "scripts": { "build": "tsc -p src && webpack", @@ -8,18 +8,18 @@ }, "dependencies": { "@jupyter/web-components": "^0.15.2", - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/codemirror": "^4.1.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/docmanager": "^4.1.6", - "@jupyterlab/docregistry": "^4.1.6", - "@jupyterlab/filebrowser": "^4.1.6", - "@jupyterlab/fileeditor": "^4.1.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/theme-light-extension": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/codemirror": "^4.1.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/docmanager": "^4.1.7", + "@jupyterlab/docregistry": "^4.1.7", + "@jupyterlab/filebrowser": "^4.1.7", + "@jupyterlab/fileeditor": "^4.1.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/theme-light-extension": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/commands": "^2.2.0", "@lumino/widgets": "^2.3.1" }, diff --git a/examples/notebook/package.json b/examples/notebook/package.json index 7a8de76f8867..70c7121c4b89 100644 --- a/examples/notebook/package.json +++ b/examples/notebook/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-notebook", - "version": "4.1.6", + "version": "4.1.7", "private": true, "scripts": { "build": "tsc -p src && webpack", @@ -9,22 +9,22 @@ "dependencies": { "@jupyter/web-components": "^0.15.2", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/codemirror": "^4.1.6", - "@jupyterlab/completer": "^4.1.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/docmanager": "^4.1.6", - "@jupyterlab/docregistry": "^4.1.6", - "@jupyterlab/documentsearch": "^4.1.6", - "@jupyterlab/markedparser-extension": "^4.1.6", - "@jupyterlab/mathjax-extension": "^4.1.6", - "@jupyterlab/notebook": "^4.1.6", - "@jupyterlab/rendermime": "^4.1.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/theme-light-extension": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/codemirror": "^4.1.7", + "@jupyterlab/completer": "^4.1.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/docmanager": "^4.1.7", + "@jupyterlab/docregistry": "^4.1.7", + "@jupyterlab/documentsearch": "^4.1.7", + "@jupyterlab/markedparser-extension": "^4.1.7", + "@jupyterlab/mathjax-extension": "^4.1.7", + "@jupyterlab/notebook": "^4.1.7", + "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/theme-light-extension": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/commands": "^2.2.0", "@lumino/widgets": "^2.3.1" }, diff --git a/examples/terminal/package.json b/examples/terminal/package.json index 3d85255d8b02..0a1c9f565f84 100644 --- a/examples/terminal/package.json +++ b/examples/terminal/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-terminal", - "version": "4.1.6", + "version": "4.1.7", "private": true, "scripts": { "build": "tsc -p src && webpack", @@ -8,11 +8,11 @@ }, "dependencies": { "@jupyter/web-components": "^0.15.2", - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/terminal": "^4.1.6", - "@jupyterlab/theme-light-extension": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/terminal": "^4.1.7", + "@jupyterlab/theme-light-extension": "^4.1.7", "@lumino/widgets": "^2.3.1" }, "devDependencies": { diff --git a/galata/extension/package.json b/galata/extension/package.json index e3b378c0fe99..521e0206c9ce 100644 --- a/galata/extension/package.json +++ b/galata/extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/galata-extension", - "version": "5.1.6", + "version": "5.1.7", "private": true, "description": "JupyterLab UI Testing Framework Extension.", "keywords": [ @@ -32,20 +32,20 @@ "clean:lib": "rimraf ../lib/extension tsconfig.tsbuildinfo" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/cells": "^4.1.6", - "@jupyterlab/debugger": "^4.1.6", - "@jupyterlab/docmanager": "^4.1.6", - "@jupyterlab/nbformat": "^4.1.6", - "@jupyterlab/notebook": "^4.1.6", - "@jupyterlab/settingregistry": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/cells": "^4.1.7", + "@jupyterlab/debugger": "^4.1.7", + "@jupyterlab/docmanager": "^4.1.7", + "@jupyterlab/nbformat": "^4.1.7", + "@jupyterlab/notebook": "^4.1.7", + "@jupyterlab/settingregistry": "^4.1.7", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/signaling": "^2.1.2" }, "devDependencies": { - "@jupyterlab/builder": "^4.1.6", + "@jupyterlab/builder": "^4.1.7", "rimraf": "~5.0.5", "typescript": "~5.1.6" }, diff --git a/galata/package.json b/galata/package.json index 64562b930a51..c0c1a89f1f53 100644 --- a/galata/package.json +++ b/galata/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/galata", - "version": "5.1.6", + "version": "5.1.7", "description": "JupyterLab UI Testing Framework", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -44,15 +44,15 @@ "test:update": "jlpm test:base:update && jlpm test:benchmark:update" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/debugger": "^4.1.6", - "@jupyterlab/docmanager": "^4.1.6", - "@jupyterlab/nbformat": "^4.1.6", - "@jupyterlab/notebook": "^4.1.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/settingregistry": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/debugger": "^4.1.7", + "@jupyterlab/docmanager": "^4.1.7", + "@jupyterlab/nbformat": "^4.1.7", + "@jupyterlab/notebook": "^4.1.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/settingregistry": "^4.1.7", "@lumino/coreutils": "^2.1.2", "@playwright/test": "^1.32.2", "@stdlib/stats": "~0.0.13", diff --git a/jupyterlab/_version.py b/jupyterlab/_version.py index a860c8cbe557..5073f8d153ac 100644 --- a/jupyterlab/_version.py +++ b/jupyterlab/_version.py @@ -6,7 +6,7 @@ VersionInfo = namedtuple("VersionInfo", ["major", "minor", "micro", "releaselevel", "serial"]) # DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion -version_info = VersionInfo(4, 1, 6, "final", 0) +version_info = VersionInfo(4, 1, 7, "final", 0) _specifier_ = {"alpha": "a", "beta": "b", "candidate": "rc", "final": ""} diff --git a/jupyterlab/staging/package.json b/jupyterlab/staging/package.json index aad6e751a5b8..fc8f40e47150 100644 --- a/jupyterlab/staging/package.json +++ b/jupyterlab/staging/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/application-top", - "version": "4.1.6", + "version": "4.1.7", "private": true, "license": "BSD-3-Clause", "scripts": { @@ -23,101 +23,101 @@ "@jupyter/react-components": "~0.13.3", "@jupyter/web-components": "~0.13.3", "@jupyter/ydoc": "~1.1.1", - "@jupyterlab/application": "~4.1.6", - "@jupyterlab/application-extension": "~4.1.6", - "@jupyterlab/apputils": "~4.2.6", - "@jupyterlab/apputils-extension": "~4.1.6", - "@jupyterlab/attachments": "~4.1.6", - "@jupyterlab/cell-toolbar": "~4.1.6", - "@jupyterlab/cell-toolbar-extension": "~4.1.6", - "@jupyterlab/cells": "~4.1.6", - "@jupyterlab/celltags-extension": "~4.1.6", - "@jupyterlab/codeeditor": "~4.1.6", - "@jupyterlab/codemirror": "~4.1.6", - "@jupyterlab/codemirror-extension": "~4.1.6", - "@jupyterlab/completer": "~4.1.6", - "@jupyterlab/completer-extension": "~4.1.6", - "@jupyterlab/console": "~4.1.6", - "@jupyterlab/console-extension": "~4.1.6", - "@jupyterlab/coreutils": "~6.1.6", - "@jupyterlab/csvviewer": "~4.1.6", - "@jupyterlab/csvviewer-extension": "~4.1.6", - "@jupyterlab/debugger": "~4.1.6", - "@jupyterlab/debugger-extension": "~4.1.6", - "@jupyterlab/docmanager": "~4.1.6", - "@jupyterlab/docmanager-extension": "~4.1.6", - "@jupyterlab/docregistry": "~4.1.6", - "@jupyterlab/documentsearch": "~4.1.6", - "@jupyterlab/documentsearch-extension": "~4.1.6", - "@jupyterlab/extensionmanager": "~4.1.6", - "@jupyterlab/extensionmanager-extension": "~4.1.6", - "@jupyterlab/filebrowser": "~4.1.6", - "@jupyterlab/filebrowser-extension": "~4.1.6", - "@jupyterlab/fileeditor": "~4.1.6", - "@jupyterlab/fileeditor-extension": "~4.1.6", - "@jupyterlab/help-extension": "~4.1.6", - "@jupyterlab/htmlviewer": "~4.1.6", - "@jupyterlab/htmlviewer-extension": "~4.1.6", - "@jupyterlab/hub-extension": "~4.1.6", - "@jupyterlab/imageviewer": "~4.1.6", - "@jupyterlab/imageviewer-extension": "~4.1.6", - "@jupyterlab/inspector": "~4.1.6", - "@jupyterlab/inspector-extension": "~4.1.6", - "@jupyterlab/javascript-extension": "~4.1.6", - "@jupyterlab/json-extension": "~4.1.6", - "@jupyterlab/launcher": "~4.1.6", - "@jupyterlab/launcher-extension": "~4.1.6", - "@jupyterlab/logconsole": "~4.1.6", - "@jupyterlab/logconsole-extension": "~4.1.6", - "@jupyterlab/lsp": "~4.1.6", - "@jupyterlab/lsp-extension": "~4.1.6", - "@jupyterlab/mainmenu": "~4.1.6", - "@jupyterlab/mainmenu-extension": "~4.1.6", - "@jupyterlab/markdownviewer": "~4.1.6", - "@jupyterlab/markdownviewer-extension": "~4.1.6", - "@jupyterlab/markedparser-extension": "~4.1.6", - "@jupyterlab/mathjax-extension": "~4.1.6", - "@jupyterlab/mermaid": "~4.1.6", - "@jupyterlab/mermaid-extension": "~4.1.6", - "@jupyterlab/metadataform": "~4.1.6", - "@jupyterlab/metadataform-extension": "~4.1.6", - "@jupyterlab/metapackage": "~4.1.6", - "@jupyterlab/nbconvert-css": "~4.1.6", - "@jupyterlab/nbformat": "~4.1.6", - "@jupyterlab/notebook": "~4.1.6", - "@jupyterlab/notebook-extension": "~4.1.6", - "@jupyterlab/observables": "~5.1.6", - "@jupyterlab/outputarea": "~4.1.6", - "@jupyterlab/pdf-extension": "~4.1.6", - "@jupyterlab/pluginmanager": "~4.1.6", - "@jupyterlab/pluginmanager-extension": "~4.1.6", - "@jupyterlab/property-inspector": "~4.1.6", - "@jupyterlab/rendermime": "~4.1.6", - "@jupyterlab/rendermime-extension": "~4.1.6", - "@jupyterlab/rendermime-interfaces": "~3.9.6", - "@jupyterlab/running": "~4.1.6", - "@jupyterlab/running-extension": "~4.1.6", - "@jupyterlab/services": "~7.1.6", - "@jupyterlab/settingeditor": "~4.1.6", - "@jupyterlab/settingeditor-extension": "~4.1.6", - "@jupyterlab/settingregistry": "~4.1.6", - "@jupyterlab/shortcuts-extension": "~4.1.6", - "@jupyterlab/statedb": "~4.1.6", - "@jupyterlab/statusbar": "~4.1.6", - "@jupyterlab/statusbar-extension": "~4.1.6", - "@jupyterlab/terminal": "~4.1.6", - "@jupyterlab/terminal-extension": "~4.1.6", - "@jupyterlab/theme-dark-extension": "~4.1.6", - "@jupyterlab/theme-light-extension": "~4.1.6", - "@jupyterlab/toc": "~6.1.6", - "@jupyterlab/toc-extension": "~6.1.6", - "@jupyterlab/tooltip": "~4.1.6", - "@jupyterlab/tooltip-extension": "~4.1.6", - "@jupyterlab/translation": "~4.1.6", - "@jupyterlab/translation-extension": "~4.1.6", - "@jupyterlab/ui-components": "~4.1.6", - "@jupyterlab/ui-components-extension": "~4.1.6", - "@jupyterlab/vega5-extension": "~4.1.6", + "@jupyterlab/application": "~4.1.7", + "@jupyterlab/application-extension": "~4.1.7", + "@jupyterlab/apputils": "~4.2.7", + "@jupyterlab/apputils-extension": "~4.1.7", + "@jupyterlab/attachments": "~4.1.7", + "@jupyterlab/cell-toolbar": "~4.1.7", + "@jupyterlab/cell-toolbar-extension": "~4.1.7", + "@jupyterlab/cells": "~4.1.7", + "@jupyterlab/celltags-extension": "~4.1.7", + "@jupyterlab/codeeditor": "~4.1.7", + "@jupyterlab/codemirror": "~4.1.7", + "@jupyterlab/codemirror-extension": "~4.1.7", + "@jupyterlab/completer": "~4.1.7", + "@jupyterlab/completer-extension": "~4.1.7", + "@jupyterlab/console": "~4.1.7", + "@jupyterlab/console-extension": "~4.1.7", + "@jupyterlab/coreutils": "~6.1.7", + "@jupyterlab/csvviewer": "~4.1.7", + "@jupyterlab/csvviewer-extension": "~4.1.7", + "@jupyterlab/debugger": "~4.1.7", + "@jupyterlab/debugger-extension": "~4.1.7", + "@jupyterlab/docmanager": "~4.1.7", + "@jupyterlab/docmanager-extension": "~4.1.7", + "@jupyterlab/docregistry": "~4.1.7", + "@jupyterlab/documentsearch": "~4.1.7", + "@jupyterlab/documentsearch-extension": "~4.1.7", + "@jupyterlab/extensionmanager": "~4.1.7", + "@jupyterlab/extensionmanager-extension": "~4.1.7", + "@jupyterlab/filebrowser": "~4.1.7", + "@jupyterlab/filebrowser-extension": "~4.1.7", + "@jupyterlab/fileeditor": "~4.1.7", + "@jupyterlab/fileeditor-extension": "~4.1.7", + "@jupyterlab/help-extension": "~4.1.7", + "@jupyterlab/htmlviewer": "~4.1.7", + "@jupyterlab/htmlviewer-extension": "~4.1.7", + "@jupyterlab/hub-extension": "~4.1.7", + "@jupyterlab/imageviewer": "~4.1.7", + "@jupyterlab/imageviewer-extension": "~4.1.7", + "@jupyterlab/inspector": "~4.1.7", + "@jupyterlab/inspector-extension": "~4.1.7", + "@jupyterlab/javascript-extension": "~4.1.7", + "@jupyterlab/json-extension": "~4.1.7", + "@jupyterlab/launcher": "~4.1.7", + "@jupyterlab/launcher-extension": "~4.1.7", + "@jupyterlab/logconsole": "~4.1.7", + "@jupyterlab/logconsole-extension": "~4.1.7", + "@jupyterlab/lsp": "~4.1.7", + "@jupyterlab/lsp-extension": "~4.1.7", + "@jupyterlab/mainmenu": "~4.1.7", + "@jupyterlab/mainmenu-extension": "~4.1.7", + "@jupyterlab/markdownviewer": "~4.1.7", + "@jupyterlab/markdownviewer-extension": "~4.1.7", + "@jupyterlab/markedparser-extension": "~4.1.7", + "@jupyterlab/mathjax-extension": "~4.1.7", + "@jupyterlab/mermaid": "~4.1.7", + "@jupyterlab/mermaid-extension": "~4.1.7", + "@jupyterlab/metadataform": "~4.1.7", + "@jupyterlab/metadataform-extension": "~4.1.7", + "@jupyterlab/metapackage": "~4.1.7", + "@jupyterlab/nbconvert-css": "~4.1.7", + "@jupyterlab/nbformat": "~4.1.7", + "@jupyterlab/notebook": "~4.1.7", + "@jupyterlab/notebook-extension": "~4.1.7", + "@jupyterlab/observables": "~5.1.7", + "@jupyterlab/outputarea": "~4.1.7", + "@jupyterlab/pdf-extension": "~4.1.7", + "@jupyterlab/pluginmanager": "~4.1.7", + "@jupyterlab/pluginmanager-extension": "~4.1.7", + "@jupyterlab/property-inspector": "~4.1.7", + "@jupyterlab/rendermime": "~4.1.7", + "@jupyterlab/rendermime-extension": "~4.1.7", + "@jupyterlab/rendermime-interfaces": "~3.9.7", + "@jupyterlab/running": "~4.1.7", + "@jupyterlab/running-extension": "~4.1.7", + "@jupyterlab/services": "~7.1.7", + "@jupyterlab/settingeditor": "~4.1.7", + "@jupyterlab/settingeditor-extension": "~4.1.7", + "@jupyterlab/settingregistry": "~4.1.7", + "@jupyterlab/shortcuts-extension": "~4.1.7", + "@jupyterlab/statedb": "~4.1.7", + "@jupyterlab/statusbar": "~4.1.7", + "@jupyterlab/statusbar-extension": "~4.1.7", + "@jupyterlab/terminal": "~4.1.7", + "@jupyterlab/terminal-extension": "~4.1.7", + "@jupyterlab/theme-dark-extension": "~4.1.7", + "@jupyterlab/theme-light-extension": "~4.1.7", + "@jupyterlab/toc": "~6.1.7", + "@jupyterlab/toc-extension": "~6.1.7", + "@jupyterlab/tooltip": "~4.1.7", + "@jupyterlab/tooltip-extension": "~4.1.7", + "@jupyterlab/translation": "~4.1.7", + "@jupyterlab/translation-extension": "~4.1.7", + "@jupyterlab/ui-components": "~4.1.7", + "@jupyterlab/ui-components-extension": "~4.1.7", + "@jupyterlab/vega5-extension": "~4.1.7", "@lezer/common": "^1.0.0", "@lezer/highlight": "^1.0.0", "@lumino/algorithm": "^2.0.0", @@ -142,58 +142,58 @@ "yjs": "^13.5.40" }, "dependencies": { - "@jupyterlab/application": "~4.1.6", - "@jupyterlab/application-extension": "~4.1.6", - "@jupyterlab/apputils-extension": "~4.1.6", - "@jupyterlab/cell-toolbar-extension": "~4.1.6", - "@jupyterlab/celltags-extension": "~4.1.6", - "@jupyterlab/codemirror-extension": "~4.1.6", - "@jupyterlab/completer-extension": "~4.1.6", - "@jupyterlab/console-extension": "~4.1.6", - "@jupyterlab/coreutils": "~6.1.6", - "@jupyterlab/csvviewer-extension": "~4.1.6", - "@jupyterlab/debugger-extension": "~4.1.6", - "@jupyterlab/docmanager-extension": "~4.1.6", - "@jupyterlab/documentsearch-extension": "~4.1.6", - "@jupyterlab/extensionmanager-extension": "~4.1.6", - "@jupyterlab/filebrowser-extension": "~4.1.6", - "@jupyterlab/fileeditor-extension": "~4.1.6", - "@jupyterlab/help-extension": "~4.1.6", - "@jupyterlab/htmlviewer-extension": "~4.1.6", - "@jupyterlab/hub-extension": "~4.1.6", - "@jupyterlab/imageviewer-extension": "~4.1.6", - "@jupyterlab/inspector-extension": "~4.1.6", - "@jupyterlab/javascript-extension": "~4.1.6", - "@jupyterlab/json-extension": "~4.1.6", - "@jupyterlab/launcher-extension": "~4.1.6", - "@jupyterlab/logconsole-extension": "~4.1.6", - "@jupyterlab/lsp-extension": "~4.1.6", - "@jupyterlab/mainmenu-extension": "~4.1.6", - "@jupyterlab/markdownviewer-extension": "~4.1.6", - "@jupyterlab/markedparser-extension": "~4.1.6", - "@jupyterlab/mathjax-extension": "~4.1.6", - "@jupyterlab/mermaid-extension": "~4.1.6", - "@jupyterlab/metadataform-extension": "~4.1.6", - "@jupyterlab/notebook-extension": "~4.1.6", - "@jupyterlab/pdf-extension": "~4.1.6", - "@jupyterlab/pluginmanager-extension": "~4.1.6", - "@jupyterlab/rendermime-extension": "~4.1.6", - "@jupyterlab/running-extension": "~4.1.6", - "@jupyterlab/settingeditor-extension": "~4.1.6", - "@jupyterlab/shortcuts-extension": "~4.1.6", - "@jupyterlab/statusbar-extension": "~4.1.6", - "@jupyterlab/terminal-extension": "~4.1.6", - "@jupyterlab/theme-dark-extension": "~4.1.6", - "@jupyterlab/theme-light-extension": "~4.1.6", - "@jupyterlab/toc-extension": "~6.1.6", - "@jupyterlab/tooltip-extension": "~4.1.6", - "@jupyterlab/translation-extension": "~4.1.6", - "@jupyterlab/ui-components-extension": "~4.1.6", - "@jupyterlab/vega5-extension": "~4.1.6" + "@jupyterlab/application": "~4.1.7", + "@jupyterlab/application-extension": "~4.1.7", + "@jupyterlab/apputils-extension": "~4.1.7", + "@jupyterlab/cell-toolbar-extension": "~4.1.7", + "@jupyterlab/celltags-extension": "~4.1.7", + "@jupyterlab/codemirror-extension": "~4.1.7", + "@jupyterlab/completer-extension": "~4.1.7", + "@jupyterlab/console-extension": "~4.1.7", + "@jupyterlab/coreutils": "~6.1.7", + "@jupyterlab/csvviewer-extension": "~4.1.7", + "@jupyterlab/debugger-extension": "~4.1.7", + "@jupyterlab/docmanager-extension": "~4.1.7", + "@jupyterlab/documentsearch-extension": "~4.1.7", + "@jupyterlab/extensionmanager-extension": "~4.1.7", + "@jupyterlab/filebrowser-extension": "~4.1.7", + "@jupyterlab/fileeditor-extension": "~4.1.7", + "@jupyterlab/help-extension": "~4.1.7", + "@jupyterlab/htmlviewer-extension": "~4.1.7", + "@jupyterlab/hub-extension": "~4.1.7", + "@jupyterlab/imageviewer-extension": "~4.1.7", + "@jupyterlab/inspector-extension": "~4.1.7", + "@jupyterlab/javascript-extension": "~4.1.7", + "@jupyterlab/json-extension": "~4.1.7", + "@jupyterlab/launcher-extension": "~4.1.7", + "@jupyterlab/logconsole-extension": "~4.1.7", + "@jupyterlab/lsp-extension": "~4.1.7", + "@jupyterlab/mainmenu-extension": "~4.1.7", + "@jupyterlab/markdownviewer-extension": "~4.1.7", + "@jupyterlab/markedparser-extension": "~4.1.7", + "@jupyterlab/mathjax-extension": "~4.1.7", + "@jupyterlab/mermaid-extension": "~4.1.7", + "@jupyterlab/metadataform-extension": "~4.1.7", + "@jupyterlab/notebook-extension": "~4.1.7", + "@jupyterlab/pdf-extension": "~4.1.7", + "@jupyterlab/pluginmanager-extension": "~4.1.7", + "@jupyterlab/rendermime-extension": "~4.1.7", + "@jupyterlab/running-extension": "~4.1.7", + "@jupyterlab/settingeditor-extension": "~4.1.7", + "@jupyterlab/shortcuts-extension": "~4.1.7", + "@jupyterlab/statusbar-extension": "~4.1.7", + "@jupyterlab/terminal-extension": "~4.1.7", + "@jupyterlab/theme-dark-extension": "~4.1.7", + "@jupyterlab/theme-light-extension": "~4.1.7", + "@jupyterlab/toc-extension": "~6.1.7", + "@jupyterlab/tooltip-extension": "~4.1.7", + "@jupyterlab/translation-extension": "~4.1.7", + "@jupyterlab/ui-components-extension": "~4.1.7", + "@jupyterlab/vega5-extension": "~4.1.7" }, "devDependencies": { - "@jupyterlab/builder": "^4.1.6", - "@jupyterlab/buildutils": "^4.1.6", + "@jupyterlab/builder": "^4.1.7", + "@jupyterlab/buildutils": "^4.1.7", "chokidar": "^3.4.0", "css-loader": "^6.7.1", "duplicate-package-checker-webpack-plugin": "^3.0.0", @@ -222,7 +222,7 @@ }, "jupyterlab": { "name": "JupyterLab", - "version": "4.1.6", + "version": "4.1.7", "extensions": { "@jupyterlab/application-extension": "", "@jupyterlab/apputils-extension": "", diff --git a/jupyterlab/staging/yarn.lock b/jupyterlab/staging/yarn.lock index fb799c2c74f8..ec73ae43a161 100644 --- a/jupyterlab/staging/yarn.lock +++ b/jupyterlab/staging/yarn.lock @@ -420,26 +420,26 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/application-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/application-extension@npm:4.1.6" - dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/property-inspector": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/statedb": ^4.1.6 - "@jupyterlab/statusbar": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 +"@jupyterlab/application-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/application-extension@npm:4.1.7" + dependencies: + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/property-inspector": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/statedb": ^4.1.7 + "@jupyterlab/statusbar": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 39bd8b95e3e6d3fc5c5266e0218618695eac0dd8df305b1c5474afc1b3b20f869219286d9ba403b417ed69cf64e7d569f9c65a477d9a46f5ab92af569bcfd697 + checksum: d8043e20cc9653ad84d3a79df30b72eedb36477ca1e6c053b6995b9235c5d168b44cd2e09418488d773ae193d4d3c9d43ac7b4d95856bfaa9d1b90d645457f56 languageName: node linkType: hard @@ -447,56 +447,56 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/application-top@workspace:." dependencies: - "@jupyterlab/application": ~4.1.6 - "@jupyterlab/application-extension": ~4.1.6 - "@jupyterlab/apputils-extension": ~4.1.6 - "@jupyterlab/builder": ^4.1.6 - "@jupyterlab/buildutils": ^4.1.6 - "@jupyterlab/cell-toolbar-extension": ~4.1.6 - "@jupyterlab/celltags-extension": ~4.1.6 - "@jupyterlab/codemirror-extension": ~4.1.6 - "@jupyterlab/completer-extension": ~4.1.6 - "@jupyterlab/console-extension": ~4.1.6 - "@jupyterlab/coreutils": ~6.1.6 - "@jupyterlab/csvviewer-extension": ~4.1.6 - "@jupyterlab/debugger-extension": ~4.1.6 - "@jupyterlab/docmanager-extension": ~4.1.6 - "@jupyterlab/documentsearch-extension": ~4.1.6 - "@jupyterlab/extensionmanager-extension": ~4.1.6 - "@jupyterlab/filebrowser-extension": ~4.1.6 - "@jupyterlab/fileeditor-extension": ~4.1.6 - "@jupyterlab/help-extension": ~4.1.6 - "@jupyterlab/htmlviewer-extension": ~4.1.6 - "@jupyterlab/hub-extension": ~4.1.6 - "@jupyterlab/imageviewer-extension": ~4.1.6 - "@jupyterlab/inspector-extension": ~4.1.6 - "@jupyterlab/javascript-extension": ~4.1.6 - "@jupyterlab/json-extension": ~4.1.6 - "@jupyterlab/launcher-extension": ~4.1.6 - "@jupyterlab/logconsole-extension": ~4.1.6 - "@jupyterlab/lsp-extension": ~4.1.6 - "@jupyterlab/mainmenu-extension": ~4.1.6 - "@jupyterlab/markdownviewer-extension": ~4.1.6 - "@jupyterlab/markedparser-extension": ~4.1.6 - "@jupyterlab/mathjax-extension": ~4.1.6 - "@jupyterlab/mermaid-extension": ~4.1.6 - "@jupyterlab/metadataform-extension": ~4.1.6 - "@jupyterlab/notebook-extension": ~4.1.6 - "@jupyterlab/pdf-extension": ~4.1.6 - "@jupyterlab/pluginmanager-extension": ~4.1.6 - "@jupyterlab/rendermime-extension": ~4.1.6 - "@jupyterlab/running-extension": ~4.1.6 - "@jupyterlab/settingeditor-extension": ~4.1.6 - "@jupyterlab/shortcuts-extension": ~4.1.6 - "@jupyterlab/statusbar-extension": ~4.1.6 - "@jupyterlab/terminal-extension": ~4.1.6 - "@jupyterlab/theme-dark-extension": ~4.1.6 - "@jupyterlab/theme-light-extension": ~4.1.6 - "@jupyterlab/toc-extension": ~6.1.6 - "@jupyterlab/tooltip-extension": ~4.1.6 - "@jupyterlab/translation-extension": ~4.1.6 - "@jupyterlab/ui-components-extension": ~4.1.6 - "@jupyterlab/vega5-extension": ~4.1.6 + "@jupyterlab/application": ~4.1.7 + "@jupyterlab/application-extension": ~4.1.7 + "@jupyterlab/apputils-extension": ~4.1.7 + "@jupyterlab/builder": ^4.1.7 + "@jupyterlab/buildutils": ^4.1.7 + "@jupyterlab/cell-toolbar-extension": ~4.1.7 + "@jupyterlab/celltags-extension": ~4.1.7 + "@jupyterlab/codemirror-extension": ~4.1.7 + "@jupyterlab/completer-extension": ~4.1.7 + "@jupyterlab/console-extension": ~4.1.7 + "@jupyterlab/coreutils": ~6.1.7 + "@jupyterlab/csvviewer-extension": ~4.1.7 + "@jupyterlab/debugger-extension": ~4.1.7 + "@jupyterlab/docmanager-extension": ~4.1.7 + "@jupyterlab/documentsearch-extension": ~4.1.7 + "@jupyterlab/extensionmanager-extension": ~4.1.7 + "@jupyterlab/filebrowser-extension": ~4.1.7 + "@jupyterlab/fileeditor-extension": ~4.1.7 + "@jupyterlab/help-extension": ~4.1.7 + "@jupyterlab/htmlviewer-extension": ~4.1.7 + "@jupyterlab/hub-extension": ~4.1.7 + "@jupyterlab/imageviewer-extension": ~4.1.7 + "@jupyterlab/inspector-extension": ~4.1.7 + "@jupyterlab/javascript-extension": ~4.1.7 + "@jupyterlab/json-extension": ~4.1.7 + "@jupyterlab/launcher-extension": ~4.1.7 + "@jupyterlab/logconsole-extension": ~4.1.7 + "@jupyterlab/lsp-extension": ~4.1.7 + "@jupyterlab/mainmenu-extension": ~4.1.7 + "@jupyterlab/markdownviewer-extension": ~4.1.7 + "@jupyterlab/markedparser-extension": ~4.1.7 + "@jupyterlab/mathjax-extension": ~4.1.7 + "@jupyterlab/mermaid-extension": ~4.1.7 + "@jupyterlab/metadataform-extension": ~4.1.7 + "@jupyterlab/notebook-extension": ~4.1.7 + "@jupyterlab/pdf-extension": ~4.1.7 + "@jupyterlab/pluginmanager-extension": ~4.1.7 + "@jupyterlab/rendermime-extension": ~4.1.7 + "@jupyterlab/running-extension": ~4.1.7 + "@jupyterlab/settingeditor-extension": ~4.1.7 + "@jupyterlab/shortcuts-extension": ~4.1.7 + "@jupyterlab/statusbar-extension": ~4.1.7 + "@jupyterlab/terminal-extension": ~4.1.7 + "@jupyterlab/theme-dark-extension": ~4.1.7 + "@jupyterlab/theme-light-extension": ~4.1.7 + "@jupyterlab/toc-extension": ~6.1.7 + "@jupyterlab/tooltip-extension": ~4.1.7 + "@jupyterlab/translation-extension": ~4.1.7 + "@jupyterlab/ui-components-extension": ~4.1.7 + "@jupyterlab/vega5-extension": ~4.1.7 chokidar: ^3.4.0 css-loader: ^6.7.1 duplicate-package-checker-webpack-plugin: ^3.0.0 @@ -522,20 +522,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/application@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/application@npm:4.1.6" +"@jupyterlab/application@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/application@npm:4.1.7" dependencies: "@fortawesome/fontawesome-free": ^5.12.0 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/statedb": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/statedb": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/application": ^2.3.0 "@lumino/commands": ^2.2.0 @@ -546,27 +546,27 @@ __metadata: "@lumino/properties": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: 7b240381f1c661b75c9d165686cb2cd6d376596d1450c1e40a4bdb4dc608bbe71622f7e6f0520da385c7ad1dc10f5d21e88a074cb8077d3ba57280f7dd65ed84 - languageName: node - linkType: hard - -"@jupyterlab/apputils-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/apputils-extension@npm:4.1.6" - dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/filebrowser": ^4.1.6 - "@jupyterlab/mainmenu": ^4.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/statedb": ^4.1.6 - "@jupyterlab/statusbar": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + checksum: 4bb3f2411e8786f466d6b87604cb970d99a4900bea8230ec0aa2ce6852651b6170b905fcf11bfccab010be0dcdf5a559401abae36efc1d237cb20e80a4a9a6ab + languageName: node + linkType: hard + +"@jupyterlab/apputils-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/apputils-extension@npm:4.1.7" + dependencies: + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/filebrowser": ^4.1.7 + "@jupyterlab/mainmenu": ^4.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/statedb": ^4.1.7 + "@jupyterlab/statusbar": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -577,23 +577,23 @@ __metadata: react: ^18.2.0 react-dom: ^18.2.0 react-toastify: ^9.0.8 - checksum: ee8dbd0c93087f85ad1039993236da6484c490847cde44db5e14b60dd3e8710f86591586f4077da72971efdaef7b46cc942f5dc54501d2887bae6c3cbf7553a3 + checksum: beec07f28c68bbc025a9e614df586dec0459d76f3f93c087bde2381cb8e7a3323c4d6e50d94cab212d0350d3558e65f75a61318f026be0c873a30e41669d37b0 languageName: node linkType: hard -"@jupyterlab/apputils@npm:~4.2.6": - version: 4.2.6 - resolution: "@jupyterlab/apputils@npm:4.2.6" +"@jupyterlab/apputils@npm:~4.2.7": + version: 4.2.7 + resolution: "@jupyterlab/apputils@npm:4.2.7" dependencies: - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/statedb": ^4.1.6 - "@jupyterlab/statusbar": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/statedb": ^4.1.7 + "@jupyterlab/statusbar": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -606,27 +606,27 @@ __metadata: "@types/react": ^18.0.26 react: ^18.2.0 sanitize-html: ~2.7.3 - checksum: 2ca507223fb1ca3a527ce6c544c6fc1433a0eef9a41db54031f1b159a3ef29f4908e7408c22ce0cbf6e8a2e46999ab3f9175e06df54412dd6f583a5bdf11fb6a + checksum: 95ff30660dbc276942918f2aa4c7953b2f126407258d18a0ed5c921287677e267763a2af6be2b9a0857bce60564c9ae8ec16848d1813de2151fde41ebf059f5c languageName: node linkType: hard -"@jupyterlab/attachments@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/attachments@npm:4.1.6" +"@jupyterlab/attachments@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/attachments@npm:4.1.7" dependencies: - "@jupyterlab/nbformat": ^4.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/nbformat": ^4.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 - checksum: 94080c9c2b925315b221fbd3cef167740a7ba553d435813c3cca6da0740bdb556e73614440795a05d4027eb3114b3935e951f1aa10769afc1af7fa57c137b3e2 + checksum: 4d7c28843db44e230341e7725e3bb6e4775b08fb3574614cb9a2d17561323433652481aeee6d6d4f0c3916440eb890cfeadcea7cc9edcd7113728b13eb8fc395 languageName: node linkType: hard -"@jupyterlab/builder@npm:^4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/builder@npm:4.1.6" +"@jupyterlab/builder@npm:^4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/builder@npm:4.1.7" dependencies: "@lumino/algorithm": ^2.0.1 "@lumino/application": ^2.3.0 @@ -661,13 +661,13 @@ __metadata: worker-loader: ^3.0.2 bin: build-labextension: lib/build-labextension.js - checksum: 7807bc85d319ed43cedba7431a100219b5fb36fde40088f78faaf03d161a04c3a9fa2811e7d7ff47882c478e3fc264b19cce7e7bc2994329fb391e3975fdfb4b + checksum: e858c70fdb2bf4472918ca81672bbc55a5d5a5cf9f448c11e5673c7e861ecb8632428c87407be10957c9652338675f33c759f5a3fb0f8a24e900ecb39904d4a1 languageName: node linkType: hard -"@jupyterlab/buildutils@npm:^4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/buildutils@npm:4.1.6" +"@jupyterlab/buildutils@npm:^4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/buildutils@npm:4.1.7" dependencies: "@yarnpkg/core": ^3.0.0 "@yarnpkg/parsers": ^2.0.0 @@ -695,65 +695,65 @@ __metadata: update-dependency: lib/update-dependency.js update-dist-tag: lib/update-dist-tag.js update-staging-lock: lib/update-staging-lock.js - checksum: 3b12059c85c91d0ab5a46d54794f09174395bf4acb6eef373ca7ddd9170010cec873de9a88a33a80000af13c21b4d4f08b2051a1e4cc650d853f870db0db936f + checksum: 73dba9b36c29c51d4bc4ca1164a2751497e5858281f3949cc69f7652778d646ca3f744c3aabcff503f2c61e500cb935b74b2d29724bde824ee2b23d4c14b6777 languageName: node linkType: hard -"@jupyterlab/cell-toolbar-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/cell-toolbar-extension@npm:4.1.6" +"@jupyterlab/cell-toolbar-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/cell-toolbar-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/cell-toolbar": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - checksum: 217f8a606401419c353ba26f390a060934259752832291b2c4e6768a899804041dd3771d5908ebf48125b438b4fc0667bbe33146481a13079176cbddd67667a4 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/cell-toolbar": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + checksum: 800ff23b8c3876bdfe7086164d2e82c6e0a3c683431bd381a0f2236d3f843bf438183c38d35598a67c28992a158a3d8339aa06f6a34631e2a1ca03e29d45a5c3 languageName: node linkType: hard -"@jupyterlab/cell-toolbar@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/cell-toolbar@npm:4.1.6" +"@jupyterlab/cell-toolbar@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/cell-toolbar@npm:4.1.7" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/cells": ^4.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/notebook": ^4.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/cells": ^4.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/notebook": ^4.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: 3a1b8baafce38698fddde0354d7a1134dfb8cc81efa89d3e2bc9e5c2f31bd064c49f6c19d3f9ddfd3bc3bb9aa2e41a7b31e102ba2674bc0368b9c566bd857a2b + checksum: 94ee61e28ee6892ba9dc526f33bc2846835df4b1b1bed5465e94a552eabe0bf875722755e87eff84cae09aca9bf807ccd8c52d6f1b244d77ce0da775224ff007 languageName: node linkType: hard -"@jupyterlab/cells@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/cells@npm:4.1.6" +"@jupyterlab/cells@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/cells@npm:4.1.7" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/attachments": ^4.1.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/codemirror": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/documentsearch": ^4.1.6 - "@jupyterlab/filebrowser": ^4.1.6 - "@jupyterlab/nbformat": ^4.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/outputarea": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/toc": ^6.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/attachments": ^4.1.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/codemirror": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/documentsearch": ^4.1.7 + "@jupyterlab/filebrowser": ^4.1.7 + "@jupyterlab/nbformat": ^4.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/outputarea": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/toc": ^6.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/domutils": ^2.0.1 @@ -764,38 +764,38 @@ __metadata: "@lumino/virtualdom": ^2.0.1 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 03c0d032a4a25795d5f086deae22343d52e0034fbd5098151565cfe5dcb17126bf6a277f5ef6e5d3358abc72a989e3000033e1b35e03b4fd4e2e3c45fbb0cde0 + checksum: 6a0d31052e3ea00f0b936de0a934fde9a0249ddc9d35879a1e0ce05b483b2a97eb305ef9a1b1311643305fe93ac089070f962446cf3a98326ff3bc2d7efa76bb languageName: node linkType: hard -"@jupyterlab/celltags-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/celltags-extension@npm:4.1.6" +"@jupyterlab/celltags-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/celltags-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/notebook": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/notebook": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: e1733e5205f8c1147085a33f6aee80b89e1a74af093d420b6cf4e7b4b12a4c9aa217ce180ff2e8c4bea7e8a4f4259c194c29a3a920a7f049aad89cc511e33d15 + checksum: d96c4d6d97e76fc2e0d6687f8efa0f9f852b5ed46d646dd0331781dbb6487906cda6708399d52167ac526b5fc8be55e02179371ccc88bc6c91876f5b49dcac23 languageName: node linkType: hard -"@jupyterlab/codeeditor@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/codeeditor@npm:4.1.6" +"@jupyterlab/codeeditor@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/codeeditor@npm:4.1.7" dependencies: "@codemirror/state": ^6.2.0 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/nbformat": ^4.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/statusbar": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/nbformat": ^4.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/statusbar": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/dragdrop": ^2.1.4 @@ -803,37 +803,37 @@ __metadata: "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 0c34e3f30e20aa590ac8308b00b1dc89a51b0b214cd0d548311b5b7392ae072db42e7823963ca0faf7761eadf5c4b62a1b25e467e44c93a0ccb9ac5ad645d1c3 + checksum: b97f56fb05d7e25b0339631249afdf144cd33a6d8bb111ff875bcf5c022edd959e73ff2195c6b462d330b4b13dcfbb9cd75fab1e9f2ae09afe681d4abea92a7b languageName: node linkType: hard -"@jupyterlab/codemirror-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/codemirror-extension@npm:4.1.6" +"@jupyterlab/codemirror-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/codemirror-extension@npm:4.1.7" dependencies: "@codemirror/lang-markdown": ^6.1.1 "@codemirror/language": ^6.6.0 "@codemirror/legacy-modes": ^6.3.2 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/codemirror": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/statusbar": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/codemirror": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/statusbar": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 "@rjsf/utils": ^5.13.4 "@rjsf/validator-ajv8": ^5.13.4 react: ^18.2.0 - checksum: f16f2d62fe81acd6448eeea566d0bf1cc6efd8fc4dc22ad7ea396130c98477757b3af5469f98dd7f945ff86d89d58c74950d7a307174dad0d8889102b66cddf6 + checksum: 2593e905955efbd9109d1b01e7a579ada832b3d98029fa041e7c905fdf237901b9294c80fa53c6375c452b866b4fddff637dba3c5ee26c01fc33f2264e651cf4 languageName: node linkType: hard -"@jupyterlab/codemirror@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/codemirror@npm:4.1.6" +"@jupyterlab/codemirror@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/codemirror@npm:4.1.7" dependencies: "@codemirror/autocomplete": ^6.5.1 "@codemirror/commands": ^6.2.3 @@ -856,11 +856,11 @@ __metadata: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/documentsearch": ^4.1.6 - "@jupyterlab/nbformat": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/documentsearch": ^4.1.7 + "@jupyterlab/nbformat": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 "@lezer/common": ^1.0.2 "@lezer/generator": ^1.2.2 "@lezer/highlight": ^1.1.4 @@ -869,44 +869,44 @@ __metadata: "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 yjs: ^13.5.40 - checksum: 3083fad1754ef15d9ffc02a6c0d6f6c368cd90a40943245b92f321befc8c61ffe26a9bc260224e6ec32fc3df67feacf4fb925a51cc24aa90036d6ab3e7b7e9f2 + checksum: 51b9d9fb558fa3f310ea618118d889f507770112077f8befbb77f6e06448929a6d88d4c6582182dacd2e75b3366ef851105f3ec75b9ff4642cc62fccfd015680 languageName: node linkType: hard -"@jupyterlab/completer-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/completer-extension@npm:4.1.6" +"@jupyterlab/completer-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/completer-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/completer": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/completer": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: b433e9b63e5baba10b9116ce93079eddbf16cead892667e9a56ca867dd6c3fca0ecde33fadf347248d1e06eca2d203bf891a85da24eafd77af9605e5592cb548 + checksum: c456903bc9fc896222aa7e2541dc25f835a259f685236eb5214574cb3701086a2f3ec314980d392f4ef57afd4283ebc6a641142fff877a971ddf9592dc919b59 languageName: node linkType: hard -"@jupyterlab/completer@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/completer@npm:4.1.6" +"@jupyterlab/completer@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/completer@npm:4.1.7" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/codemirror": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/statedb": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/codemirror": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/statedb": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -914,65 +914,65 @@ __metadata: "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: f39665df61c22fcbabb03b7de94ad028047e59def2e394a70d99b3efa7c54730bec28bcc7c5a6728349e7ced7d9bf6c5407aa3bc4b8b85bd27e27af27360eabd - languageName: node - linkType: hard - -"@jupyterlab/console-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/console-extension@npm:4.1.6" - dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/completer": ^4.1.6 - "@jupyterlab/console": ^4.1.6 - "@jupyterlab/filebrowser": ^4.1.6 - "@jupyterlab/launcher": ^4.1.6 - "@jupyterlab/mainmenu": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + checksum: 6927b9c71523a205619ed8a46cec8018dda301dcf69be445e822ba7d1ef6de6431b516eee156bb24275d22171f741fc8daf4922ea60f9f7c9a0e0ca84ec3c0d3 + languageName: node + linkType: hard + +"@jupyterlab/console-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/console-extension@npm:4.1.7" + dependencies: + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/completer": ^4.1.7 + "@jupyterlab/console": ^4.1.7 + "@jupyterlab/filebrowser": ^4.1.7 + "@jupyterlab/launcher": ^4.1.7 + "@jupyterlab/mainmenu": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/properties": ^2.0.1 "@lumino/widgets": ^2.3.1 - checksum: f4871a4e127c56a7550fbac8349ec0b97bc7eb22a140988786cc4310668296784758696be20958dc24a82aa96a29268f0ca6c8ca962914fa2122a20c354dafbf + checksum: 6b90f18cf9d23d9bd39b9270a152bb4b3d90644d367cd072c4535bf5210b521a09855a8fb526f129ca504bfd86505fd184970148cf501a0288250c53c0722145 languageName: node linkType: hard -"@jupyterlab/console@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/console@npm:4.1.6" +"@jupyterlab/console@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/console@npm:4.1.7" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/cells": ^4.1.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/nbformat": ^4.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/cells": ^4.1.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/nbformat": ^4.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@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.1 - checksum: 140e8e4e240907251fb107fda9463380c07929b930a73c911b7db37e6ee89c9bd60c03310daf1ed852f711b10d9efdbfc5aa6d9693c5818b3de23c024061a96d + checksum: 76f028d771c1e84baf6fe4772299d1f6c42afb332843aeabf908ff7d261e8f3fa6a7fe0109548b54477f654b58d52a3409c4167192c3c8e6805f14b91e51d370 languageName: node linkType: hard -"@jupyterlab/coreutils@npm:~6.1.6": - version: 6.1.6 - resolution: "@jupyterlab/coreutils@npm:6.1.6" +"@jupyterlab/coreutils@npm:~6.1.7": + version: 6.1.7 + resolution: "@jupyterlab/coreutils@npm:6.1.7" dependencies: "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -980,92 +980,92 @@ __metadata: minimist: ~1.2.0 path-browserify: ^1.0.0 url-parse: ~1.5.4 - checksum: f351f327f9c7ab14ac291e4ca85a8f4289dd315e9f2e68fc6acb52efab6c47fde158f65a83ba780c382665459995bad68c7b1f9c4ffef6b9038ac81252a3f07a + checksum: 5a92ad16db3841193112ae39581e3b2546c0a1af45abe1f95c4ee797721c9c642ee0ad59bf967ca6a8813d0b62b471fb1018bdb3214662a6200c83f9c61f79ad languageName: node linkType: hard -"@jupyterlab/csvviewer-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/csvviewer-extension@npm:4.1.6" +"@jupyterlab/csvviewer-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/csvviewer-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/csvviewer": ^4.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/documentsearch": ^4.1.6 - "@jupyterlab/mainmenu": ^4.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/csvviewer": ^4.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/documentsearch": ^4.1.7 + "@jupyterlab/mainmenu": ^4.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 "@lumino/datagrid": ^2.3.0 "@lumino/widgets": ^2.3.1 - checksum: 861732c4a8b352a0d73e2c0619cbeb988d5e05435476af0f149fc31c4a3479d8701619f59bf67a83f0a9a9e0ab429f1ad51eb230f7a8bb764fced52cf3aff1de + checksum: f4a5d5c71b83589a2716dcdee437c34ff186b343167f732a6fa70379dc125a36cb271acaab14b3255da248a0f0bfea02ea008cb18eae90c926d2c3a28b02c18b languageName: node linkType: hard -"@jupyterlab/csvviewer@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/csvviewer@npm:4.1.6" +"@jupyterlab/csvviewer@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/csvviewer@npm:4.1.7" dependencies: - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/datagrid": ^2.3.0 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: 3e19c0df0d26221c8357029832c3e626977043e60bb01e5492bee6a0089be0e5a1b32b6a9bed7aee662f75bdad69c969cb86a3b24bd101e78d4c6984446ce8c2 + checksum: 15d93337ef9962ea5c91a0393110c7ec136c1116814e19280154a4d1dc9eb278a7ee7a44b984db8051cd302589e8417299792ff8512087efa68079f01ef0e32e languageName: node linkType: hard -"@jupyterlab/debugger-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/debugger-extension@npm:4.1.6" +"@jupyterlab/debugger-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/debugger-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/cells": ^4.1.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/console": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/debugger": ^4.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/fileeditor": ^4.1.6 - "@jupyterlab/logconsole": ^4.1.6 - "@jupyterlab/notebook": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - checksum: 8630fb26892a8293504cae7d23474f4c9927020ffe93642a7addc166ae4735c8258ff6c150c4076984ccdc1722c9fa8626e167ecd54c9795a367362625009e43 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/cells": ^4.1.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/console": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/debugger": ^4.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/fileeditor": ^4.1.7 + "@jupyterlab/logconsole": ^4.1.7 + "@jupyterlab/notebook": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + checksum: 3a599e18188d506fb8562bc24b7456cf8233e8b88a8ddb6a4b456074b9023684bf1e5dcb3fab12cc9453b4a373edf00ad21d1a8590cc4e6bd603f74f81e10aa5 languageName: node linkType: hard -"@jupyterlab/debugger@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/debugger@npm:4.1.6" +"@jupyterlab/debugger@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/debugger@npm:4.1.7" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/cells": ^4.1.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/codemirror": ^4.1.6 - "@jupyterlab/console": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/fileeditor": ^4.1.6 - "@jupyterlab/notebook": ^4.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/cells": ^4.1.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/codemirror": ^4.1.7 + "@jupyterlab/console": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/fileeditor": ^4.1.7 + "@jupyterlab/notebook": ^4.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -1077,24 +1077,24 @@ __metadata: "@lumino/widgets": ^2.3.1 "@vscode/debugprotocol": ^1.51.0 react: ^18.2.0 - checksum: df7162a6ce0afc82bdc1d5ce2acadf3d278a0160dc0a970ccfe973ac56b42e208b476c419706fc93603f38a15b78e613ea66805132516f8b53d17e63cc2793fe + checksum: 504bf2ab07bb321ff03b878f2c664a597d6d3c08f26ef612634624a6190ba8ff1e2f21839292e4d1fd4cbab8e9e62ba61b2d63d04827b1a4387de7bf0b85a464 languageName: node linkType: hard -"@jupyterlab/docmanager-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/docmanager-extension@npm:4.1.6" +"@jupyterlab/docmanager-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/docmanager-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docmanager": ^4.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/statusbar": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docmanager": ^4.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/statusbar": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -1102,21 +1102,21 @@ __metadata: "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 633a8890fc8ac4bd26de26446e33e263ba537f9dce49d3f5508e5517443def1f48ce60636861d167934a16b082a1e07d55d74c27fc69b31ae0a3c5cf3911de36 + checksum: d0b511c881d24f48ae19bc3ea630d867f093539dc66753a3d6c52082048082e2c63fae567c96fd20e847a0f0895018c4b43be84fcc928e2efb5953223e565488 languageName: node linkType: hard -"@jupyterlab/docmanager@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/docmanager@npm:4.1.6" +"@jupyterlab/docmanager@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/docmanager@npm:4.1.7" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/statusbar": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/statusbar": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -1125,24 +1125,24 @@ __metadata: "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 890a8f86fc3d96d896e86ed64ef3c713152d781c941eea99d1b2d021bf5d1844f2d0a52d8cb077b1e8a1d31f13a6253c118cbe70440e10df20a490ab2595bab2 + checksum: 89de534c683cf7a20d1922a2c038624c043d023f3429c3bdabd439ed01640c073e635a87f0c08c8e7c34dbd5b16e19581b4c11a5d7e7b3edb008752d3ba77d5e languageName: node linkType: hard -"@jupyterlab/docregistry@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/docregistry@npm:4.1.6" +"@jupyterlab/docregistry@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/docregistry@npm:4.1.7" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -1151,32 +1151,32 @@ __metadata: "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 0b7db803cd0013e1b65f0294b5bec2f6d4047cd7b191080ade3d67ff78d1d5a2d0e3a7016532dd316899b291bbc0b07561a958b2dd750dbcf3fc34927552c0d8 + checksum: a0c388b621cc088648e9d54f7717b502cc07f54f54b0107f336cb94c15f22bf2d7d9eb06001183ac0fa9df51b287211fbca673e1e1936278af5f33d4576b0224 languageName: node linkType: hard -"@jupyterlab/documentsearch-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/documentsearch-extension@npm:4.1.6" +"@jupyterlab/documentsearch-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/documentsearch-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/documentsearch": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/documentsearch": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 "@lumino/commands": ^2.2.0 "@lumino/widgets": ^2.3.1 - checksum: a250784148d58650cc251d5b9434ab40382ebb050fc535fa6aca9241f08cbccc094357ae7d66176f6b3680e48d7d1d5a99c5737c012bd9a7ba2e3d4a8813d381 + checksum: 7da3b91b52d987c289c79e7bab7c75fd8f95dfb1d5d7ceb731989be987b9857592cbdd9e9c7e6e0b59a7320cf63dfbd8bd641414737cc35a48150bfcfd761896 languageName: node linkType: hard -"@jupyterlab/documentsearch@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/documentsearch@npm:4.1.6" +"@jupyterlab/documentsearch@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/documentsearch@npm:4.1.7" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -1185,79 +1185,79 @@ __metadata: "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 911fd30871b5087c1ad8c3decd3c5ac184aa61ae02e3bd7577665ad941d4078082df6ddf25af2acf937f4674f7fc1f2347698eef352ebbac67702e1a4b296491 + checksum: a8d00d2fec47eb4c15dcb435b8b67a3fd691591fb17e2f89e3ed114d3966c4c284fce5e9d4f1f470df2d60a47ded6e7400090ee0d37899435db60b4e6b99386a languageName: node linkType: hard -"@jupyterlab/extensionmanager-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/extensionmanager-extension@npm:4.1.6" +"@jupyterlab/extensionmanager-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/extensionmanager-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/extensionmanager": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 - checksum: dcde0b36625f652ae8700370d789f444f053deb8486bbfe5baea1c2003a38fb4c902743f6288f87ebe36bf818252e78dc07d9efbcbcc9cd68d93c7ea4d3872d6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/extensionmanager": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 + checksum: e9a0a070a428bd8c8326a9732541a087ce1de2f86ba74df12f72d47f4661b6a8bb2a2fa2e9efcdc9cb3b9024663d4f886ba442e2af4cd3a328a876a982e12b8c languageName: node linkType: hard -"@jupyterlab/extensionmanager@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/extensionmanager@npm:4.1.6" +"@jupyterlab/extensionmanager@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/extensionmanager@npm:4.1.7" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/messaging": ^2.0.1 "@lumino/polling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 react-paginate: ^6.3.2 semver: ^7.3.2 - checksum: 1b537f909d48c810ee9a44b1c6c369a3934c6a10cbc8f84ee66a575312f080689224592ac6523d926c7930385f771818de8c2431e83e2fae14198cecbc6c7cfd - languageName: node - linkType: hard - -"@jupyterlab/filebrowser-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/filebrowser-extension@npm:4.1.6" - dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docmanager": ^4.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/filebrowser": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/statedb": ^4.1.6 - "@jupyterlab/statusbar": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + checksum: 65d948c2ca170e51caaf13f2198c280b3d703fc007c08cb5b65757c588a75ebd9bce2dafa66d23e08b71534d9b07c0afcad3a663753f4c423ba59261b8bfb4ef + languageName: node + linkType: hard + +"@jupyterlab/filebrowser-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/filebrowser-extension@npm:4.1.7" + dependencies: + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docmanager": ^4.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/filebrowser": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/statedb": ^4.1.7 + "@jupyterlab/statusbar": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/widgets": ^2.3.1 - checksum: f5af2f183a8798506281f22572a74b1e586e2c1128144bc44da9aeec99fa80bbb4ad975ff792929ef6687b65607484feb6b1e75abc794318d8835086221b2aba + checksum: 1b67a458cda0dd5e80681b4fb32b44cdc98816faff07dc7f60b794f5819aeb19a47da3775507f0436011b749990497cd35596e0d4ec5d4efe97b99352abc256d languageName: node linkType: hard -"@jupyterlab/filebrowser@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/filebrowser@npm:4.1.6" +"@jupyterlab/filebrowser@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/filebrowser@npm:4.1.7" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docmanager": ^4.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/statedb": ^4.1.6 - "@jupyterlab/statusbar": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docmanager": ^4.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/statedb": ^4.1.7 + "@jupyterlab/statusbar": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -1269,221 +1269,221 @@ __metadata: "@lumino/virtualdom": ^2.0.1 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 886d086b183b3d92af0dcafc7f752ef9bcaabd8e48af39794446897240091390989c5c9dd5e602d5f29a240e99ca4134f802d63c55b2a5f87168adf20a9bc26e + checksum: 8890986df2e234f37c0d7cd1f3f15fb68c6fe91479790365f6b0e3578fd176be844e6bef3bb36614593fca0119bf9a40ae3bd7cda63131fc47c0b8bae2efaf83 languageName: node linkType: hard -"@jupyterlab/fileeditor-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/fileeditor-extension@npm:4.1.6" +"@jupyterlab/fileeditor-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/fileeditor-extension@npm:4.1.7" dependencies: "@codemirror/commands": ^6.2.3 "@codemirror/search": ^6.3.0 - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/codemirror": ^4.1.6 - "@jupyterlab/completer": ^4.1.6 - "@jupyterlab/console": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/documentsearch": ^4.1.6 - "@jupyterlab/filebrowser": ^4.1.6 - "@jupyterlab/fileeditor": ^4.1.6 - "@jupyterlab/launcher": ^4.1.6 - "@jupyterlab/lsp": ^4.1.6 - "@jupyterlab/mainmenu": ^4.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/statusbar": ^4.1.6 - "@jupyterlab/toc": ^6.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/codemirror": ^4.1.7 + "@jupyterlab/completer": ^4.1.7 + "@jupyterlab/console": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/documentsearch": ^4.1.7 + "@jupyterlab/filebrowser": ^4.1.7 + "@jupyterlab/fileeditor": ^4.1.7 + "@jupyterlab/launcher": ^4.1.7 + "@jupyterlab/lsp": ^4.1.7 + "@jupyterlab/mainmenu": ^4.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/statusbar": ^4.1.7 + "@jupyterlab/toc": ^6.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: e33e13adbb5ec6c488e62f12346a0b5aeb679d6b1aa3b234eee3a2ce26a05c9c8097aa8a86f7e781423dbc4534ed671dba409dcb62ab2bf56d8ab11f22f9ad6a + checksum: 6ea5e304b51666fabfd78f1855620fb75bce17c168e4f14342258b25e7db5d60c9f5e8e5f5ac1491b188c686d23c16c61c5a7fe399f9cda028906633c63503a3 languageName: node linkType: hard -"@jupyterlab/fileeditor@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/fileeditor@npm:4.1.6" +"@jupyterlab/fileeditor@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/fileeditor@npm:4.1.7" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/codemirror": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/documentsearch": ^4.1.6 - "@jupyterlab/lsp": ^4.1.6 - "@jupyterlab/statusbar": ^4.1.6 - "@jupyterlab/toc": ^6.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/codemirror": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/documentsearch": ^4.1.7 + "@jupyterlab/lsp": ^4.1.7 + "@jupyterlab/statusbar": ^4.1.7 + "@jupyterlab/toc": ^6.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.1 react: ^18.2.0 regexp-match-indices: ^1.0.2 - checksum: 440bd5a1ad36bbb775f6590486b759319ce87e243a49981004bc0dbc1ac90a3f605d741ec22b2de19949668781604688c10aa738134e4bf564ee4b81d93c1f54 + checksum: 1297b75ed1b52ca223d311fc74ca19c0d978eded2e6dcada3d65833fcd27ce3279fe182317598cdc26ee48b196e3e993a3f79f596046921efdc47346a4b711bd languageName: node linkType: hard -"@jupyterlab/help-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/help-extension@npm:4.1.6" +"@jupyterlab/help-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/help-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/mainmenu": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/mainmenu": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/virtualdom": ^2.0.1 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 4734bb9ae26c79197dad69a237d0425732a7b22b3559c0538e85f1ab5c2da64c9346e1517300934a02090cc5b7aeb29217457abdbed46d673af778bf6f032f13 + checksum: 65932f8a63456c3822a9264815fa873d8cd3b043ae9e79516b8085c1b082f1b296ce53ac2f9a11180e4008498e6812a5267ac83ae7d8276846382b769e3a87cd languageName: node linkType: hard -"@jupyterlab/htmlviewer-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/htmlviewer-extension@npm:4.1.6" +"@jupyterlab/htmlviewer-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/htmlviewer-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/htmlviewer": ^4.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 - checksum: 3680074acb578288cfddf0bd7adce183e4486d5c0c5614c504496009c008b499f2c1db8347605c89a32a05e8dd9621803158332a69406d5bb40ace0f6297e35a + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/htmlviewer": ^4.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 + checksum: 8d1ede6ae8cddd265d985dda41244faaa8f7aec8e5f13b64585a67fc38196fa9b22b0cdc39cb31148175808a503546d3e1b7e3a67f48c4f3e213b5a9cfa3b65b languageName: node linkType: hard -"@jupyterlab/htmlviewer@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/htmlviewer@npm:4.1.6" +"@jupyterlab/htmlviewer@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/htmlviewer@npm:4.1.7" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 9a00ab14bdb595d5bb144850ca0d9b41b27f7170cc6af22bd58fc0cc16b7b9dcb4f52b9fd2ea80e472cd15fee7e70f3c7930e41e49e196d2ece9093ac70912d1 + checksum: f46f4d17f95309f72f22605f6b85d6045e2b0d21c10512dd890fc8dc8715d8f0791d549a3a84b78ebc53129e03d973b5c57e40a6f4f134ff48126ee5adea9279 languageName: node linkType: hard -"@jupyterlab/hub-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/hub-extension@npm:4.1.6" +"@jupyterlab/hub-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/hub-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/translation": ^4.1.6 - checksum: 7b718c44c73a060c5f9fe0786304d64c551cb1a99d531dc26d83f66920519f81dd7b5edd10aa9171e3c4b0b11c3630c1bf324c20f1931af99bdd6016f92e452c + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/translation": ^4.1.7 + checksum: f40bc8ac2fda3a5826f46dfae16b37884ddd7e883fe5cd9bdca8aaa30308d2370d13497d5afacea5d4e84e3ce1c08cd99b85bcb7f66fe00e0465c41ca840e4ef languageName: node linkType: hard -"@jupyterlab/imageviewer-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/imageviewer-extension@npm:4.1.6" +"@jupyterlab/imageviewer-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/imageviewer-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/imageviewer": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - checksum: 7b297526f692f6d5fe769907d1796a8893c0d5f3cf8dec82d32e4335a2528e4d5dce8a31a7e0118fc1627424f0d8189c11431cee531f3935ea673b9aa61b4b6b + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/imageviewer": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + checksum: 105e8f1bc7674b338346aa118e07d9ce8140bb2d808985d001f0e29b826dd94808a0c5f025e25e28a6bd4abdfe069b3753dceffdcd0078c6cb69fa43ec05d53c languageName: node linkType: hard -"@jupyterlab/imageviewer@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/imageviewer@npm:4.1.6" +"@jupyterlab/imageviewer@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/imageviewer@npm:4.1.7" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docregistry": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docregistry": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.1 - checksum: b23f38fd65b97f6d71d407a0e7e31d72204c3c44725518b00e64039ec0138f2a11538caf868c2b4570ef3088a2e1f16d7a831d886960b59ae8c12c1cc4d6399b + checksum: 4869ccc4ef38a7e1e26a2db621d369e4dfc06fbe9108cf829e306585a40ce0a0d45fbe6581ac270d198fad8df3422c94d194bee02fd7b17a690cd83f55acc3cb languageName: node linkType: hard -"@jupyterlab/inspector-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/inspector-extension@npm:4.1.6" +"@jupyterlab/inspector-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/inspector-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/console": ^4.1.6 - "@jupyterlab/inspector": ^4.1.6 - "@jupyterlab/launcher": ^4.1.6 - "@jupyterlab/notebook": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/console": ^4.1.7 + "@jupyterlab/inspector": ^4.1.7 + "@jupyterlab/launcher": ^4.1.7 + "@jupyterlab/notebook": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/widgets": ^2.3.1 - checksum: 8724fdce3d6a2e0a9f4112512760256aca5a60550265d9ed1bd2898b6e0f5c2f48962c5f4e32fae86fefb63858fa89e80429d3ff1314bac96b6b705c5f87f494 + checksum: 2197cc1a5cfc62828876de18f367c04ccd55803f5cbfddbd6ab0326ff86d00313c2cbb99e7a6fec05fea0f94d246c3628edf15e9ecb6f51b49e3ab64025b3b03 languageName: node linkType: hard -"@jupyterlab/inspector@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/inspector@npm:4.1.6" +"@jupyterlab/inspector@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/inspector@npm:4.1.7" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/statedb": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/statedb": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/polling": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: 348bb54359685c310d24cfa3628eaf2213dba167130de96193bd8e5dedcbc1871fadf460ed799b5db94d8affa25dcd05dc37cb537b976095f41c07c9c0965a81 + checksum: 11198701eaf5e1be6a482549da21310d582ea380a68b1f0b37d3a1a8dc49eaaff66fc008fcbe1d3e1d8470bf0d9ad4a8713bae6834c70a2f910447f7a47db5c1 languageName: node linkType: hard -"@jupyterlab/javascript-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/javascript-extension@npm:4.1.6" +"@jupyterlab/javascript-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/javascript-extension@npm:4.1.7" dependencies: - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 - checksum: 152a9225731b15be68f53ce7c81cf1e918b964d41a339ceec5fc86b4e9dc5e5400e34e1dcc24904796883edf4388cb17ab9fc19b07156e69c8b76483e03aa208 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 + checksum: d2bfb22b2624173a82f91662c82b2544144b0c755cec2996b65e91a0d27a785522eb47fccee2a07a6367222580a6d3e3bd8c63b6c67073c37fbb8be2e48a804d languageName: node linkType: hard -"@jupyterlab/json-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/json-extension@npm:4.1.6" +"@jupyterlab/json-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/json-extension@npm:4.1.7" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/codemirror": ^4.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/codemirror": ^4.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lezer/highlight": ^1.1.4 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 @@ -1493,34 +1493,34 @@ __metadata: react-highlight-words: ^0.20.0 react-json-tree: ^0.18.0 style-mod: ^4.0.0 - checksum: ecc2f7fbec89a666b8f04329c19a3635bf6a6a43c3005d9ccd8bccdf7d1d27b3746b3e2746298f280168eb607c7ac098b345fbe035e6dfa02377d94ba33ace4e + checksum: b4adb8dad3365ccfe785db06060c480ab1ce84daf28f118f5e6ae3ead4e241714465528e9df55f4b9d93397b348cc1a07849c519ae786f78c3a15edaba665895 languageName: node linkType: hard -"@jupyterlab/launcher-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/launcher-extension@npm:4.1.6" +"@jupyterlab/launcher-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/launcher-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/filebrowser": ^4.1.6 - "@jupyterlab/launcher": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/filebrowser": ^4.1.7 + "@jupyterlab/launcher": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: b0047fb6365f61fe79f7815ca8999b39c8f2f43dfeeb0b286714fdbfbeef61c519919e8aa74760f0a6362744dd76bf01e59398879c1b3a3c6f42ae0fd8cbe9dc + checksum: f01eba74a2f4a7a9b8547c9652ac0733db89d1c2658c5b9f5571a5a80d1c0caabb3f6baddafb9dcd1d8cf095c0b4ffbd0c7c8be9cb645f1602bfb51b108ab5fc languageName: node linkType: hard -"@jupyterlab/launcher@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/launcher@npm:4.1.6" +"@jupyterlab/launcher@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/launcher@npm:4.1.7" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -1528,81 +1528,81 @@ __metadata: "@lumino/properties": ^2.0.1 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 50168b135751f3a20dab73f5fb62bac2d5a784fa818eac64dddc6fdc96f12da58dc0de3292c9ccd6ce717ff89c0ac99090dfeeafbf5dd5bbea9a71ecf0fa2c1a + checksum: d152362167d807619653e32e6a883a2c07f9fc018128df915004dc33f69241af93c1cf7990229f1ae0e001d9be2fc0229b83d105c644c8be1a7939199e83f863 languageName: node linkType: hard -"@jupyterlab/logconsole-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/logconsole-extension@npm:4.1.6" +"@jupyterlab/logconsole-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/logconsole-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/logconsole": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/statusbar": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/logconsole": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/statusbar": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 457ef5b7136e0eeda8583c90492c351517c314254eb183a873c31e2ee33cb083a271df3fe3ceba66620a0e0e525804309a85612fbc452f4bc32408c549b7e696 + checksum: 67734e84c32e50f8e8e9c8f3c7eb249ad65835f8ef5918d12728c6a985c1131dfbb6013cdd4eb6a0639ebe84943f7a9b127c7fd14edbbedd803f6a948a1fed80 languageName: node linkType: hard -"@jupyterlab/logconsole@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/logconsole@npm:4.1.6" +"@jupyterlab/logconsole@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/logconsole@npm:4.1.7" dependencies: - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/nbformat": ^4.1.6 - "@jupyterlab/outputarea": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/nbformat": ^4.1.7 + "@jupyterlab/outputarea": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/translation": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: b159bb3066237845fcbf7dd843b6e31f4245a9e0c7c1d1bf2f9a232e168d3c06c0f0a8d923ac88b2fc6bfb4ea5d95a2245bbc59b547ab7513053ed3181ff1d93 + checksum: 875451b5ba16ecbf4c07b0a876d996d2ec1d075223e3b2ed27ba1273e612e1a3d13d096a4e9e56f856ba15755907ee60634a5ff942ff0edbd76ec76d305e47f6 languageName: node linkType: hard -"@jupyterlab/lsp-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/lsp-extension@npm:4.1.6" +"@jupyterlab/lsp-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/lsp-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/lsp": ^4.1.6 - "@jupyterlab/running": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/lsp": ^4.1.7 + "@jupyterlab/running": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/polling": ^2.1.2 "@lumino/signaling": ^2.1.2 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: ddcfd3a99724b42d043c304678400c1b766c422941d78b36efabc1c0e2a1477a6f72e91178b58646b0759efec668b790c4c613ccc70a71729ba86a3ad6d56923 + checksum: 86fbd3789fc76ce919b3ff6c2a0e5033510fd8d083df0db7b4b4d02f51dc2bfcf8da3c107460d177c743ff920c1d77da1a914dd44e661cb5e5acd7ce21de4192 languageName: node linkType: hard -"@jupyterlab/lsp@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/lsp@npm:4.1.6" +"@jupyterlab/lsp@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/lsp@npm:4.1.7" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/codemirror": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/codemirror": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/translation": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 @@ -1611,160 +1611,160 @@ __metadata: vscode-jsonrpc: ^6.0.0 vscode-languageserver-protocol: ^3.17.0 vscode-ws-jsonrpc: ~1.0.2 - checksum: d777321cdc78896a7a184394937fdccbab1c623d4f4897335c4da419862ef09e62919667ba7a5a5da5df10a474e9da1ebb0e8f8dde444c3efdf3d9ddaf4a2e67 + checksum: 1c3c2cf67da4124fcafe821b362ed0dd5d416efe35346017e3b89d0ab1585595c0a8592d245ca838b3e2538b63da54a524cbef52fefce0c471c01daf34afd12b languageName: node linkType: hard -"@jupyterlab/mainmenu-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/mainmenu-extension@npm:4.1.6" +"@jupyterlab/mainmenu-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/mainmenu-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/mainmenu": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/mainmenu": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: d6f017e665a66a7ef619697b08c886cead2d68938cb429c59e3a8ca6c541e2487a8265331f7178049c5c56c01740db0e1662b8cf9a9196006b9226357dc55f3e + checksum: 06b549b540b735eff8ec21a26379c88eb48a5b32042e20237d8bcf9c05ac25d44c64407975240de1edcea511857f7fb063443436476d3af2eabd2566c3c505ca languageName: node linkType: hard -"@jupyterlab/mainmenu@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/mainmenu@npm:4.1.6" +"@jupyterlab/mainmenu@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/mainmenu@npm:4.1.7" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: 2204d6417ec786efab1689f1349b1df59754ea717d9d4fe647866a5fdf9931a58505a18cbf9615f8706ca482fb36fad707e5d42a5c4837535650f5dcb9ea650c + checksum: ad35fefe3ff003bfdc7af2ac120a1e6d29afddf9835129f56acaad626b13ecfd776d9ff2d2b22b06cfc273fac1aa00d9fa699bcae9bdfc734ded4394536d6d3c languageName: node linkType: hard -"@jupyterlab/markdownviewer-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/markdownviewer-extension@npm:4.1.6" +"@jupyterlab/markdownviewer-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/markdownviewer-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/markdownviewer": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/toc": ^6.1.6 - "@jupyterlab/translation": ^4.1.6 - checksum: e09e713618933d13ab184da88366b47a19adbb635db60bfe16737d0eecb3dce4c2b05087ed1440af8e0e2f0f5280380df096f8ff2b7cc4639f1842b8b85ccb3f + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/markdownviewer": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/toc": ^6.1.7 + "@jupyterlab/translation": ^4.1.7 + checksum: eb973d0009eee040d4d8eeb0025949c11c235c575a14f818c6d57ef17f3cbeafcb8fd90d37cf0b84383fef316eacba97e66e1d73eeb46aac2b3a9b16c07f5f9b languageName: node linkType: hard -"@jupyterlab/markdownviewer@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/markdownviewer@npm:4.1.6" +"@jupyterlab/markdownviewer@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/markdownviewer@npm:4.1.7" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/toc": ^6.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/toc": ^6.1.7 + "@jupyterlab/translation": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: ebd82f6e116dfed32e391435e079672f83017fa8037473861d4a5a930a3b7caa2cefab6e25f5edc71ae0a304617be32a03b99153c3a13de6aa93460e384b6dfb + checksum: d7e267a2cfaa9b50f2a6c340b556ebcbe9a2c11785ec8bfdc652eb9cc2c3d2a07042aa1d77b13b6325f85366f35df7b9118699b1c889eb09f2e1e22c07d64664 languageName: node linkType: hard -"@jupyterlab/markedparser-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/markedparser-extension@npm:4.1.6" +"@jupyterlab/markedparser-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/markedparser-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/codemirror": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/mermaid": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/codemirror": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/mermaid": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 "@lumino/coreutils": ^2.1.2 marked: ^9.1.2 marked-gfm-heading-id: ^3.1.0 marked-mangle: ^1.1.4 - checksum: f4ce60b400ed6be5c07ba9ca084a5dcdf27ade5bd05f32887475f3daa0144d996de91802753dd0f23d8d3881bd5192f909b20b727abd6a33ca5a306c0a8294ac + checksum: 7615182615dd81b02dfccfae027b613b5f1aaa6cac2bed88ac290fdc9d04bcb3a92650ded9b00b72ad4247a084dcf015cdaa0a7af9b1a52d4a21312d33f63d94 languageName: node linkType: hard -"@jupyterlab/mathjax-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/mathjax-extension@npm:4.1.6" +"@jupyterlab/mathjax-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/mathjax-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 "@lumino/coreutils": ^2.1.2 mathjax-full: ^3.2.2 - checksum: 6cff09609b72744340ba173201d1a35847d5efdefa33155883ab663b07dd5ed8179084fbc257a7829d1c11113175f97dbdfb720eeee3c2d34ee8ccfb9220d82f + checksum: 90d438ffa1baede9511a3fcccb30d8d0a301c5ba3e4f9272c10ad8153487eeb64cb1c6144bd1b629383c3d39b197e0dce679a61401056e93e51682e5a2c7e230 languageName: node linkType: hard -"@jupyterlab/mermaid-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/mermaid-extension@npm:4.1.6" +"@jupyterlab/mermaid-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/mermaid-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/mermaid": ^4.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 - "@jupyterlab/translation": ^4.1.6 - checksum: f4a28a1f4b6b62c96b388934748d940a89d5f95e8dc0b304f27742c19e8d6abccd12b398fbaee5656b46537150cde037f3c554dc599756781f10e6ff36fb5dc1 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/mermaid": ^4.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/translation": ^4.1.7 + checksum: 7cfe031533b1d1e1dcd5261dd8eea74a2307eee84768720ea23ca4f69c9086b6461cdb89a455d846112970b78d301cc15ee996114338db1588b2b75530a9cfe3 languageName: node linkType: hard -"@jupyterlab/mermaid@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/mermaid@npm:4.1.6" +"@jupyterlab/mermaid@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/mermaid@npm:4.1.7" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 mermaid: ^10.7.0 - checksum: 375245985efbced62893754b214afba0231b1e1067313e98d0c9685a1c97a6370ed92aade3e67eda7963876f5e5d94c97a234d0c68373b70101e7693e26cea3e + checksum: 94d6eafc295c761ea46b49b173f0307c1c7eaafae7beff6f317b1c0cf4f1057eeff8bc0144483d16a945913e98f6056a550b31a7fad35f209a8833de86c596a1 languageName: node linkType: hard -"@jupyterlab/metadataform-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/metadataform-extension@npm:4.1.6" +"@jupyterlab/metadataform-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/metadataform-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/metadataform": ^4.1.6 - "@jupyterlab/notebook": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/metadataform": ^4.1.7 + "@jupyterlab/notebook": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/coreutils": ^2.1.2 - checksum: 56782c5d8a65c731993149232bde968935ea56bfce9b3be87c77b26d686d178ce9b8822f96d3a57299f23df817073dd1aa18e0874900d381c12ff38082ee3a2b + checksum: 5a07cb14dd18c5839d109210f48977a0e55a46770c2bc7a69479b67453b0fd4453438f83a104b0f8643315cd20f40b887c2db447db3a014ebf424bfa3cfa7266 languageName: node linkType: hard -"@jupyterlab/metadataform@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/metadataform@npm:4.1.6" +"@jupyterlab/metadataform@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/metadataform@npm:4.1.7" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/nbformat": ^4.1.6 - "@jupyterlab/notebook": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/nbformat": ^4.1.7 + "@jupyterlab/notebook": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.1 @@ -1772,53 +1772,53 @@ __metadata: "@rjsf/validator-ajv8": ^5.13.4 json-schema: ^0.4.0 react: ^18.2.0 - checksum: 26ff4ff4ccef5c02345c3dabff8a6ba32e35feac49789670ab92bf3822cffcf6d23694d6589df6ef86e1f71523d59c93caf6abca6a40bc0e7b5a904f04d0eac2 + checksum: 58c732cacc083ffe634310f3329e11ce105a3ad09ae305ae065af8a5ccd14cf2ec97e3ab0277bd9860b832e87bce840e69ebf807ef74f746ac5f574c12b8e00e languageName: node linkType: hard -"@jupyterlab/nbformat@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/nbformat@npm:4.1.6" +"@jupyterlab/nbformat@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/nbformat@npm:4.1.7" dependencies: "@lumino/coreutils": ^2.1.2 - checksum: 4ef43fdaaecec06732528753c5316adaa883c77ae86d129fb5d1f0542124acc0e7bb5692aae799463722b8c47ce8934356572c040d682e0ce41548eca3ca421b + checksum: e54f3e7d59ecbd2f4d4ca8164ebef25affc8cf0f6cbb1500b7130a813c9eb8b86d6b0e8acc09b7cc3fead430c6af8ff110b38a76cad40b38fe23bee297d23273 languageName: node linkType: hard -"@jupyterlab/notebook-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/notebook-extension@npm:4.1.6" +"@jupyterlab/notebook-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/notebook-extension@npm:4.1.7" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/cells": ^4.1.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/codemirror": ^4.1.6 - "@jupyterlab/completer": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docmanager": ^4.1.6 - "@jupyterlab/docmanager-extension": ^4.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/documentsearch": ^4.1.6 - "@jupyterlab/filebrowser": ^4.1.6 - "@jupyterlab/launcher": ^4.1.6 - "@jupyterlab/logconsole": ^4.1.6 - "@jupyterlab/lsp": ^4.1.6 - "@jupyterlab/mainmenu": ^4.1.6 - "@jupyterlab/metadataform": ^4.1.6 - "@jupyterlab/nbformat": ^4.1.6 - "@jupyterlab/notebook": ^4.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/property-inspector": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/statedb": ^4.1.6 - "@jupyterlab/statusbar": ^4.1.6 - "@jupyterlab/toc": ^6.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/cells": ^4.1.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/codemirror": ^4.1.7 + "@jupyterlab/completer": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docmanager": ^4.1.7 + "@jupyterlab/docmanager-extension": ^4.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/documentsearch": ^4.1.7 + "@jupyterlab/filebrowser": ^4.1.7 + "@jupyterlab/launcher": ^4.1.7 + "@jupyterlab/logconsole": ^4.1.7 + "@jupyterlab/lsp": ^4.1.7 + "@jupyterlab/mainmenu": ^4.1.7 + "@jupyterlab/metadataform": ^4.1.7 + "@jupyterlab/nbformat": ^4.1.7 + "@jupyterlab/notebook": ^4.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/property-inspector": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/statedb": ^4.1.7 + "@jupyterlab/statusbar": ^4.1.7 + "@jupyterlab/toc": ^6.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -1828,32 +1828,32 @@ __metadata: "@lumino/widgets": ^2.3.1 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: b19d76845253a70e117fed0675fefd5e1105d8b370f3a45839c2d5858d4ed4e00397b1e5e8dae17cabd97d95555a379420db628d225b23e3afd9cee3cd4b1fab + checksum: fa415de391dd7d526962a8fa2e328ef21332374c03f23324493990fcc4c4a754f5596023fab4b990c0917743da2dee8f2185515a574dd79b019029a52b69817d languageName: node linkType: hard -"@jupyterlab/notebook@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/notebook@npm:4.1.6" +"@jupyterlab/notebook@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/notebook@npm:4.1.7" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/cells": ^4.1.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/codemirror": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/documentsearch": ^4.1.6 - "@jupyterlab/lsp": ^4.1.6 - "@jupyterlab/nbformat": ^4.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/statusbar": ^4.1.6 - "@jupyterlab/toc": ^6.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/cells": ^4.1.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/codemirror": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/documentsearch": ^4.1.7 + "@jupyterlab/lsp": ^4.1.7 + "@jupyterlab/nbformat": ^4.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/statusbar": ^4.1.7 + "@jupyterlab/toc": ^6.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -1865,34 +1865,34 @@ __metadata: "@lumino/virtualdom": ^2.0.1 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 46401d9bd70bffec69d226a2cf35b6194cbdd4b47f2833a39e31fbd95e1f75b3ddc71c13286c25eed5c7e7092de566a89301fadb2923841ecf11e1802c874469 + checksum: 3154944a3e1a13dc353788dba62bd5883d5107e6ebc1b54c7f2fdfbd1eccd44e817bd20ff26ed02635452b1f95bf2b4a68eef39459851b5ab37db1714b3288f6 languageName: node linkType: hard -"@jupyterlab/observables@npm:~5.1.6": - version: 5.1.6 - resolution: "@jupyterlab/observables@npm:5.1.6" +"@jupyterlab/observables@npm:~5.1.7": + version: 5.1.7 + resolution: "@jupyterlab/observables@npm:5.1.7" 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: 930e53ca38dd08232ec46585acf8d49ebbef9628a792619fbf51a1da13f3249da24a7a8b24c34a2c7ce3fa50145a4e647b65e19275ea5ce92946a2ad805faa82 + checksum: 94330741342b5d4bb1dc42760c0690236a3dd1b28c7ef027fa8f93dee2608c00775a7fa654218b1c279009a240a573dfac0dee89c43d90b01ca1edebc88db835 languageName: node linkType: hard -"@jupyterlab/outputarea@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/outputarea@npm:4.1.6" +"@jupyterlab/outputarea@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/outputarea@npm:4.1.7" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/nbformat": ^4.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/nbformat": ^4.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/translation": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -1900,201 +1900,201 @@ __metadata: "@lumino/properties": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: e45e0db75b1d4def07ff48323ac84ef1b7eedfd09cff24a9c669db8da9bc846fd8186eaa34a210e66fdab2c0b6a9be93e406e7e54456063fbe879bf2c2ffcbea + checksum: f038c6cd0b26919b8a21677a56ff88582b44e192b739cd353ff061b44324c012fd1f77dc9206f194a2536b29579e3bb080d58c68b149023131ea9c7825c303e8 languageName: node linkType: hard -"@jupyterlab/pdf-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/pdf-extension@npm:4.1.6" +"@jupyterlab/pdf-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/pdf-extension@npm:4.1.7" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/rendermime-interfaces": ^3.9.7 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: f36e0c4bc00d5c8e9f8671b2946658f5303a91ac81fe9cf276bf3a9580b835f426b72b844149f80f822faf98fd070d86743caa4b671ae17393a657780afb915c + checksum: 8aad12601b61898d38adaf920ce676328286352bb088a6e307498012b752eecda09d0063d4ac6f95c136724316235b0c00a212a35649cbbad45cdfc085a1647d languageName: node linkType: hard -"@jupyterlab/pluginmanager-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/pluginmanager-extension@npm:4.1.6" +"@jupyterlab/pluginmanager-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/pluginmanager-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/pluginmanager": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/pluginmanager": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/coreutils": ^2.1.2 - checksum: d734f1044e2b9ad87f9b84e83d44eba72d5b2a78fa04332f84fd1c427c9b6674dfc815ca81a5e7b12e207599790ff4ff3731093dd4dcbd24731926928d264fc3 + checksum: 064f8cb05794fb052914092dab4d9bcd9982423d5367550035833d7538ef46260ccc91eff0a3a670ec6de4c02c1374b1e086c7d64e11a4c07a5558d1a4de7f35 languageName: node linkType: hard -"@jupyterlab/pluginmanager@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/pluginmanager@npm:4.1.6" +"@jupyterlab/pluginmanager@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/pluginmanager@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 4c09dbcab4db1e9900995fcb64a5266bad04898c98e000f62c4e4f77f74c21f35fe45442d2cc70f94ea42c2b04ceeea16be5c2bf0dd5804830c9371e4664b5f5 + checksum: 0444a821facbf7380b55ed2e09d4770ba81f4d0256c2c68572a20914144edc3d418b5c66222b8f7c6a8e27b6274c376ab0975f97c56ea3e80c36abac307bf54e languageName: node linkType: hard -"@jupyterlab/property-inspector@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/property-inspector@npm:4.1.6" +"@jupyterlab/property-inspector@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/property-inspector@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: aaea35dcbf5fae8aa264c233d740b90d485e77f4b6d6d59aa58325f9d74ce457ad4d28f802e5cda6e923163f8adc3b81014b05e481cc06b5de90c8e0d68949dc + checksum: d9b20722cd97edcb965b11f5ad659a3642e97be515977040f18cceb6780a6c5cf1e9d291b2db4db4ec9556bd2026e66c70f35567dc37dd26fad09a8906f2fe9a languageName: node linkType: hard -"@jupyterlab/rendermime-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/rendermime-extension@npm:4.1.6" +"@jupyterlab/rendermime-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/rendermime-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/docmanager": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - checksum: c0c801e68f155beba4435f8734bd30cb5caa640614f2c5c3f907e6a606ecfb3a06e681f8b6455ec018176675a9f507954d98f7a30ab1c38586118287361473c2 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/docmanager": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + checksum: 4c44e13b6ae3783e16ea750b7ea80e40be83cdfe87ed627d246dc1bd72bc4f60126d7ce00c1d77f368f88d8df61937804a13411889509e8e334e3ce08fa395d3 languageName: node linkType: hard -"@jupyterlab/rendermime-interfaces@npm:~3.9.6": - version: 3.9.6 - resolution: "@jupyterlab/rendermime-interfaces@npm:3.9.6" +"@jupyterlab/rendermime-interfaces@npm:~3.9.7": + version: 3.9.7 + resolution: "@jupyterlab/rendermime-interfaces@npm:3.9.7" dependencies: "@lumino/coreutils": ^1.11.0 || ^2.1.2 "@lumino/widgets": ^1.37.2 || ^2.3.1 - checksum: 9dd08d4c71ece6e68e2972b4ce950153e2d38cc876208bb1f0e5d533daf50b062bd6aa1711c94934ea2a1f8445cf49dc6370cda80e1372b3fbede0d4534b0235 + checksum: 09a53fb6f6764f55122cdb1b6130584232c4ee3ae46a8ce42c90edb692402e870ca4ccad7f35b772d6cad99014186dfea77d06731d2e70d51d1b47278c4c20c7 languageName: node linkType: hard -"@jupyterlab/rendermime@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/rendermime@npm:4.1.6" +"@jupyterlab/rendermime@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/rendermime@npm:4.1.7" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/nbformat": ^4.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/nbformat": ^4.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/translation": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 lodash.escape: ^4.0.1 - checksum: f79430851e97c4a26938bdbd3d834a0beba2860630f5f8bcccda433a2b3c52d26b180e89d016ec7cd0fce28cbc71dc825307b8b37ca63951775965cb091381ab + checksum: 2bd9a359e6919c58683a9a6207249875463ce0e55cfd091c78960e889cea00b49a33ed1394a219db9f413b178b82bc71f0d2f1f8cfb6917f8574d0778ca43cad languageName: node linkType: hard -"@jupyterlab/running-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/running-extension@npm:4.1.6" +"@jupyterlab/running-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/running-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 - "@jupyterlab/running": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/running": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/commands": ^2.2.0 "@lumino/polling": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: a8565ee24465672e3ce2d683c82b34c47749cfb28667f326cb89fb5786202314b6d5bc31b142beae21a5a4d2fd69a1a28cb6a2ae76dbb7861a8c62d3d0a95260 + checksum: ca1381553360e02fd31f3a038633cef071635a8b5c4ed8b5a0aa360834553957475422632eb469f21925161dbddc1bb87c133583242c3472b298386aed0d615e languageName: node linkType: hard -"@jupyterlab/running@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/running@npm:4.1.6" +"@jupyterlab/running@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/running@npm:4.1.7" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 759f378d6b755b8d60373212bd6fca29ffd817ef59b41694d9f2913983a328be5bb300188572cefbb7b6f1c67d5951502207b4de6f9e8a525edb670c339b5c2c + checksum: 9e7e70343f083b3f5b2848d32f6b3aad5f5dcaf003880b589ec59813c6c8e23871c8010ccfe214303b7eae36b8114a0a94ab926f269b7e84e091d0d989b3e3e4 languageName: node linkType: hard -"@jupyterlab/services@npm:~7.1.6": - version: 7.1.6 - resolution: "@jupyterlab/services@npm:7.1.6" +"@jupyterlab/services@npm:~7.1.7": + version: 7.1.7 + resolution: "@jupyterlab/services@npm:7.1.7" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/nbformat": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/statedb": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/nbformat": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/statedb": ^4.1.7 "@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: ad47d3c9b211be4be3aad2714f3028e66ad381a6367a57f347644c693f055ee9c7655d15630a637d9181b42e89c2b8183675abc561c3959820a6bc03d3f2af12 + checksum: 5c15ca3efc110a9885b2417b45b63e2954f13a91e73d9c378cd49a1dde261961c8a0a93c05fd019686a8f713865fc63719877352dd4f0f488feb075555579ca6 languageName: node linkType: hard -"@jupyterlab/settingeditor-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/settingeditor-extension@npm:4.1.6" +"@jupyterlab/settingeditor-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/settingeditor-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/pluginmanager": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/settingeditor": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/statedb": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/pluginmanager": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/settingeditor": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/statedb": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/disposable": ^2.1.2 - checksum: 5fe04e36e9da13dacb0663fafefeb24c9f009023cd404f827b5f977dbef82b36d84eb8a0cf2f28e4a99336fd8907bf85657d909beb7b1bed6e28ff5acb109a36 + checksum: 53464979aeab0096b9594a784dddfd34876a81c7924a26bc1e6da21ab82faa78176fc3c9945395e5ca8472faf1dd787ca373ad36443a300454d5bc9139ee9bef languageName: node linkType: hard -"@jupyterlab/settingeditor@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/settingeditor@npm:4.1.6" +"@jupyterlab/settingeditor@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/settingeditor@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/inspector": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/statedb": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/inspector": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/statedb": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -2108,16 +2108,16 @@ __metadata: "@rjsf/validator-ajv8": ^5.13.4 json-schema: ^0.4.0 react: ^18.2.0 - checksum: 7fe9e0f41d20c6f4b79b57df816d3cdcabac15efe483696a1aefa0ecf6de0eecaed9f6f2231c8937a145a9db028dea38b34f17bfa76b0901b59f46270a92c3e7 + checksum: 1a19d9ebe62b1f00fe8b8d0faf18101d7e4a374aa371c8d2fd71f063f6406b8fa856d01aa4da8db500b25376a2b329b64dcb452f4a29cf80ad2475e01998f71c languageName: node linkType: hard -"@jupyterlab/settingregistry@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/settingregistry@npm:4.1.6" +"@jupyterlab/settingregistry@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/settingregistry@npm:4.1.7" dependencies: - "@jupyterlab/nbformat": ^4.1.6 - "@jupyterlab/statedb": ^4.1.6 + "@jupyterlab/nbformat": ^4.1.7 + "@jupyterlab/statedb": ^4.1.7 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -2127,18 +2127,18 @@ __metadata: json5: ^2.2.3 peerDependencies: react: ">=16" - checksum: 93c1a4921a30243f2bd2c9591319e749e2f5cb5884f6962241857640afb6b67600cdba44fb308a23bffacc7defa3c6fc3d2ad15be52ff5946f0a8fd873b5fddd + checksum: 2361a561315172ff23547294eb430d57aa7c1635e5f99fffc2e52035ed453a84358f8aa3283832d7c8e90ccd0f1c8dbcdb28460bf79050b445c2892bcc9c6e5d languageName: node linkType: hard -"@jupyterlab/shortcuts-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/shortcuts-extension@npm:4.1.6" +"@jupyterlab/shortcuts-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/shortcuts-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -2147,41 +2147,41 @@ __metadata: "@lumino/keyboard": ^2.0.1 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 4d8fb4f411609faa56559f421618b426023e4e7578676aacf4473c5724c1738fdf7fdfaff4bd7b6929bc88012d2068488ff9aedae9ae786e5ef8cd7cc8df983f + checksum: c1d978dc5bc41d6f496e50a211bc26dfeb8c5ebd37c10aa87accadb7325ec60385b7245a5399eb33e11e323e3c1c4b931b3ea24c3f509b4414c653182a5b44f3 languageName: node linkType: hard -"@jupyterlab/statedb@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/statedb@npm:4.1.6" +"@jupyterlab/statedb@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/statedb@npm:4.1.7" dependencies: "@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: 4aba49eeead6ac6306ec2d8146543230db9296e7bf088380290eb4b89698b66573c00ba630890b821047b584fc59716b64ba06a013d4698551adeaf20b034301 + checksum: 5bf9ac95790373208c4e305ba573fd009577311386b6d6f7b71426177a6b5ddc3f511cdabd46deeefb560cd07aa1b68dc1d4013c0cc10a18ab926e11239968f0 languageName: node linkType: hard -"@jupyterlab/statusbar-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/statusbar-extension@npm:4.1.6" +"@jupyterlab/statusbar-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/statusbar-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/statusbar": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - checksum: 16688658637c2ab0b43121d9d295070eaff21363fefc888d82286b4b08c929d4a95e7ff34f4e19972e0f9a3d83dec25783063e6eae380cfd60c9cfcf561bada4 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/statusbar": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + checksum: 0eb2cf2a82adc1760df6fb99a203b53c06b74bd7c6812f7c525ab5bd8b1050b2c328edde73467e06d904768aef1453269ebbe5ef5c8c2bdd367f63ac911db06b languageName: node linkType: hard -"@jupyterlab/statusbar@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/statusbar@npm:4.1.6" +"@jupyterlab/statusbar@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/statusbar@npm:4.1.7" dependencies: - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -2189,36 +2189,36 @@ __metadata: "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: ad8a7f366b8a3b3f1f6a4993a0b890192f5de99f0fe3b29aecb7a6474d568203798bee63b77012d4cfdc793b7b376ec8bd64b3c5e67cb26511b13801e7a75f77 + checksum: 2a9c81f15c4d2d2c2db6ea931dd6b70b42899f62c25cc8a29788c7a47382275e474ce735f14d5b3e9f84dc26f3d716f54f1573db581c3fba97c7281ff155c4b6 languageName: node linkType: hard -"@jupyterlab/terminal-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/terminal-extension@npm:4.1.6" +"@jupyterlab/terminal-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/terminal-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/launcher": ^4.1.6 - "@jupyterlab/mainmenu": ^4.1.6 - "@jupyterlab/running": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/terminal": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/launcher": ^4.1.7 + "@jupyterlab/mainmenu": ^4.1.7 + "@jupyterlab/running": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/terminal": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/widgets": ^2.3.1 - checksum: ad8af1cb7d0235ca700ca740783e36a38482fc796488c47befa1a465b50cffb26b6d1af6716d942320d1c06b95335d78e258cff74cabdffd3dbfeef23353eb2f + checksum: 1604bd2041c4c8eb52651f58846bfbf7e04703d7e27beac39a1f4ddf2a5154406e594ceb540c525f404350ee9ed20dc47f58572c369ce91250e5751a584ec118 languageName: node linkType: hard -"@jupyterlab/terminal@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/terminal@npm:4.1.6" +"@jupyterlab/terminal@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/terminal@npm:4.1.7" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/translation": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/domutils": ^2.0.1 "@lumino/messaging": ^2.0.1 @@ -2228,149 +2228,149 @@ __metadata: xterm-addon-fit: ~0.7.0 xterm-addon-web-links: ~0.8.0 xterm-addon-webgl: ~0.14.0 - checksum: 22704365949aa624442de3ac21fc184f19083a1a1089be88267b4991c64226f4de6dbf550974f18bba8fc4d4e4d868acfd3f5e3bff9893f4c48fe77cecb1a7f3 + checksum: ca3cfd7f85390bf7395c657750b1a6153937b1bca3e7ca06c5ea0f661b1d3789878594f3a6c317b7c0522742c6811148f04577bcd1ad76532d3fe8e824f8d6c2 languageName: node linkType: hard -"@jupyterlab/theme-dark-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/theme-dark-extension@npm:4.1.6" +"@jupyterlab/theme-dark-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/theme-dark-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/translation": ^4.1.6 - checksum: abcb3b6507020d58e170ffad6b8aaff8466a08e74f05bd95afed750c6579e41c066032905c18325012b85927bda8c4a8fed029360bc1eba4aaf2d4f10cb3d568 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/translation": ^4.1.7 + checksum: 9676a02b4d960bb9a334e0b9782a7ddd7e896ea12ce2ae1605e6a81a0c940add16d72fb145da76e1a0f89a9fbf4d117e98b521c438bad0e538237bfd2e393db7 languageName: node linkType: hard -"@jupyterlab/theme-light-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/theme-light-extension@npm:4.1.6" +"@jupyterlab/theme-light-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/theme-light-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/translation": ^4.1.6 - checksum: 24a9ab38e2337897cdf5e506cb8a48078c783b5a7f40120dcad60aa5f64da85cc24a752e0711ffed755804957ff0e1f538d7bf3f0fee3a405c87987b0ee8a2a7 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/translation": ^4.1.7 + checksum: 1e63b40e9ad05ea8a6fe9f24a9bb7f5fead995a509238ea9b97525cec68b9eea7c85118742f60174bc7fe049783459bd7d052e116f8f8959dd097e0346d38c80 languageName: node linkType: hard -"@jupyterlab/toc-extension@npm:~6.1.6": - version: 6.1.6 - resolution: "@jupyterlab/toc-extension@npm:6.1.6" +"@jupyterlab/toc-extension@npm:~6.1.7": + version: 6.1.7 + resolution: "@jupyterlab/toc-extension@npm:6.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/toc": ^6.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 - checksum: bc23c519e841c263b88b83f69de379b9f81a54a3c62efe6bffd0a5ed65c5719ac47a6988d1bd7ce68c51703d6ed3ca720b7073737ce7023c3d1793bc3c6bb153 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/toc": ^6.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 + checksum: 56e8204d612a9034ff27b60de00c8a5a5e817d6baf3b28329c4b6e48e168460ca08989954c444907d3254a8effc61d08298b6d57449b0eabbe72a4655ff15d69 languageName: node linkType: hard -"@jupyterlab/toc@npm:~6.1.6": - version: 6.1.6 - resolution: "@jupyterlab/toc@npm:6.1.6" - dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 +"@jupyterlab/toc@npm:~6.1.7": + version: 6.1.7 + resolution: "@jupyterlab/toc@npm:6.1.7" + dependencies: + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 45111e9a02f9e9bd96b6a7024d1374abacb00924dc4b5c2dce0a5f1cfb18d7a60b749a56d71196d6cab843f5c9f9a06ca18cdf8f176292bf0f13880fd332cfc7 + checksum: f003cdb01b0d235e24baceb781e6e0a69093f6ffd4bb75d12de9208e7225c04bbdd5575b4f9fd7daea50f65aa4d76c39962c2a7aa0cda645e944649e6275c902 languageName: node linkType: hard -"@jupyterlab/tooltip-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/tooltip-extension@npm:4.1.6" +"@jupyterlab/tooltip-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/tooltip-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/console": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/fileeditor": ^4.1.6 - "@jupyterlab/notebook": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/tooltip": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/console": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/fileeditor": ^4.1.7 + "@jupyterlab/notebook": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/tooltip": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: ec32eb4f89809d2c512113537c47ec2679349ee75cd3022656616671842f95c78a236c0575df1843e567e436e6494d12e833ab48facc948039a7bb71dce944b5 + checksum: 84f2099e4381b9c859965a9c88e0308e5d085002e9dd3cae5662b6b5bbcab76eb689789b96ffa467b46ca10e9e7f9bb325813e2b879b3f627b376a0b124df45a languageName: node linkType: hard -"@jupyterlab/tooltip@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/tooltip@npm:4.1.6" +"@jupyterlab/tooltip@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/tooltip@npm:4.1.7" dependencies: - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.1 - checksum: d983042527f4f8e90fa2451be695ee0b0ce187cff7d549b3a81d07aae1ee1e1ce24c3f0a42ddc4dba60d1998d887c846e59e309ca42aa4fc1582de0cfed83f45 + checksum: 05f4bf0d6e38890df6e8aa9cdf599dd40dc8ae030f39da962b4f4c466a1e8e0fd89d485d6a7a39517f222a7cecca3f5e314ffddf2f4042f70b8c6abf9e94d47f languageName: node linkType: hard -"@jupyterlab/translation-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/translation-extension@npm:4.1.6" +"@jupyterlab/translation-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/translation-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/mainmenu": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - checksum: 2cf2c5c7ab717122c6955c4ed269d4a437c3d03e8fadbfbaff8507be7175a25cf310a20a8b0594429d90316de354c91f16d25a0ac3fe90d4a5fa7d410727e69d + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/mainmenu": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + checksum: 0de4523c8bcc5191485b8dcb64cc5b8800dd7f8d02192dde56555cd3904a43e1bdf81a6e5c2a9dbd833a144ef4cfdc2bc0a6f792975b09eecac8ce88ac8ab7c3 languageName: node linkType: hard -"@jupyterlab/translation@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/translation@npm:4.1.6" +"@jupyterlab/translation@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/translation@npm:4.1.7" dependencies: - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/statedb": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/statedb": ^4.1.7 "@lumino/coreutils": ^2.1.2 - checksum: 6de45e310d7ac83f2ed2e3e0c372ba71d087e597891d9e9a7ff791f6fc7fc3804d0d18dad5b152757c5a2b583d564ed7f4361561fa993be303e415a47e8b2fa6 + checksum: c28ed1451e68501078b1de1f665552beb56adc522ecb0e63a6e96293abd19c8638cbbe1c7974d9b57663bf5aca95e393ed81877e46d2cc8aaa9f072091f66969 languageName: node linkType: hard -"@jupyterlab/ui-components-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/ui-components-extension@npm:4.1.6" +"@jupyterlab/ui-components-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/ui-components-extension@npm:4.1.7" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 - checksum: 3e501ae67c851c1230ed75bc736881b86281f1451df0eb6baaa739fbce5bb3d4eb95316068039afe9fbb5a09d23ae9adcd427e920bce431c97ac205f73100dec + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 + checksum: ce3923ed57759bfba65137392c7b56cbe6dbf8440d09fb982d7b9faf6c7b6d87b4172517801a394990ec38cd6d1f3abaaeefc691b68acc0ac4b9762c2e77fd17 languageName: node linkType: hard -"@jupyterlab/ui-components@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/ui-components@npm:4.1.6" +"@jupyterlab/ui-components@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/ui-components@npm:4.1.7" dependencies: "@jupyter/react-components": ^0.15.2 "@jupyter/web-components": ^0.15.2 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/translation": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -2388,21 +2388,21 @@ __metadata: typestyle: ^2.0.4 peerDependencies: react: ^18.2.0 - checksum: f555138b2345aac6ee5c580b517fd563b55b8a6b33f132de362d559a514bbbec970bd690970676173872674f802a5dd9de7ac75b897a0a2b09d7428dddc3c04d + checksum: 4ec9069dc49e5a5f6b6801654dfa76cd93aac593285ccf5982c3742f34d1537d17e1a5724d870379f23a7b854de048bd0dbf5ad77566a12e4a09c1591e3e81ef languageName: node linkType: hard -"@jupyterlab/vega5-extension@npm:~4.1.6": - version: 4.1.6 - resolution: "@jupyterlab/vega5-extension@npm:4.1.6" +"@jupyterlab/vega5-extension@npm:~4.1.7": + version: 4.1.7 + resolution: "@jupyterlab/vega5-extension@npm:4.1.7" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/rendermime-interfaces": ^3.9.7 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 vega: ^5.20.0 vega-embed: ^6.2.1 vega-lite: ^5.6.1-next.1 - checksum: eee4671d08ad731093b841cde280bf0f04c2a37958da1fc6117e84a7cf2069220a2be7b0b67c64622e68bcc43365e5741e2eb7ea14e7b55f07decbb3e5f2b027 + checksum: c07da97e68149fd1e2121c3fae501dbece27e28dd4ea6d403def4c98b7363e2459fa774ae9919226c8755c2a811dbb4e0d43010bfb98c80249dce741af3c4139 languageName: node linkType: hard diff --git a/jupyterlab/tests/mock_packages/extension/package.json b/jupyterlab/tests/mock_packages/extension/package.json index 0c24d180fd8e..795e7724b6b4 100644 --- a/jupyterlab/tests/mock_packages/extension/package.json +++ b/jupyterlab/tests/mock_packages/extension/package.json @@ -1,12 +1,12 @@ { "name": "@jupyterlab/mock-extension", - "version": "4.1.6", + "version": "4.1.7", "private": true, "dependencies": { - "@jupyterlab/launcher": "^4.1.6" + "@jupyterlab/launcher": "^4.1.7" }, "devDependencies": { - "@jupyterlab/builder": "^4.1.6" + "@jupyterlab/builder": "^4.1.7" }, "jupyterlab": { "extension": true, diff --git a/jupyterlab/tests/mock_packages/interop/consumer/package.json b/jupyterlab/tests/mock_packages/interop/consumer/package.json index f2be8521b2c2..386155e95a32 100644 --- a/jupyterlab/tests/mock_packages/interop/consumer/package.json +++ b/jupyterlab/tests/mock_packages/interop/consumer/package.json @@ -1,12 +1,12 @@ { "name": "@jupyterlab/mock-consumer", - "version": "4.1.6", + "version": "4.1.7", "private": true, "dependencies": { - "@jupyterlab/mock-token": "^4.1.6" + "@jupyterlab/mock-token": "^4.1.7" }, "devDependencies": { - "@jupyterlab/builder": "^4.1.6" + "@jupyterlab/builder": "^4.1.7" }, "jupyterlab": { "extension": true, diff --git a/jupyterlab/tests/mock_packages/interop/provider/package.json b/jupyterlab/tests/mock_packages/interop/provider/package.json index f6546352316b..7c91d8c4db06 100644 --- a/jupyterlab/tests/mock_packages/interop/provider/package.json +++ b/jupyterlab/tests/mock_packages/interop/provider/package.json @@ -1,12 +1,12 @@ { "name": "@jupyterlab/mock-provider", - "version": "4.1.6", + "version": "4.1.7", "private": true, "dependencies": { - "@jupyterlab/mock-token": "^4.1.6" + "@jupyterlab/mock-token": "^4.1.7" }, "devDependencies": { - "@jupyterlab/builder": "^4.1.6" + "@jupyterlab/builder": "^4.1.7" }, "jupyterlab": { "extension": true diff --git a/jupyterlab/tests/mock_packages/interop/token/package.json b/jupyterlab/tests/mock_packages/interop/token/package.json index 814ab83f1fcf..7b95ad6fb582 100644 --- a/jupyterlab/tests/mock_packages/interop/token/package.json +++ b/jupyterlab/tests/mock_packages/interop/token/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mock-token", - "version": "4.1.6", + "version": "4.1.7", "private": true, "dependencies": { "@lumino/coreutils": "^2.1.2" diff --git a/packages/application-extension/package.json b/packages/application-extension/package.json index 120ec88d8dd0..c16c6309bec9 100644 --- a/packages/application-extension/package.json +++ b/packages/application-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/application-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Application Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,15 +38,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/property-inspector": "^4.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/statedb": "^4.1.6", - "@jupyterlab/statusbar": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/property-inspector": "^4.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/statedb": "^4.1.7", + "@jupyterlab/statusbar": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", diff --git a/packages/application/package.json b/packages/application/package.json index 411f2ed5261e..a76c303d103c 100644 --- a/packages/application/package.json +++ b/packages/application/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/application", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Application", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -43,15 +43,15 @@ }, "dependencies": { "@fortawesome/fontawesome-free": "^5.12.0", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/docregistry": "^4.1.6", - "@jupyterlab/rendermime": "^4.1.6", - "@jupyterlab/rendermime-interfaces": "^3.9.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/statedb": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/docregistry": "^4.1.7", + "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/rendermime-interfaces": "^3.9.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/statedb": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/algorithm": "^2.0.1", "@lumino/application": "^2.3.0", "@lumino/commands": "^2.2.0", @@ -64,7 +64,7 @@ "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/apputils-extension/package.json b/packages/apputils-extension/package.json index dc6d02d7af34..c0161a7392e4 100644 --- a/packages/apputils-extension/package.json +++ b/packages/apputils-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/apputils-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Application Utilities Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,19 +38,19 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/docregistry": "^4.1.6", - "@jupyterlab/filebrowser": "^4.1.6", - "@jupyterlab/mainmenu": "^4.1.6", - "@jupyterlab/rendermime-interfaces": "^3.9.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/statedb": "^4.1.6", - "@jupyterlab/statusbar": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/docregistry": "^4.1.7", + "@jupyterlab/filebrowser": "^4.1.7", + "@jupyterlab/mainmenu": "^4.1.7", + "@jupyterlab/rendermime-interfaces": "^3.9.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/statedb": "^4.1.7", + "@jupyterlab/statusbar": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", diff --git a/packages/apputils/package.json b/packages/apputils/package.json index 0f14a54c4291..7557bd30f9f4 100644 --- a/packages/apputils/package.json +++ b/packages/apputils/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/apputils", - "version": "4.2.6", + "version": "4.2.7", "description": "JupyterLab - Application Utilities", "keywords": [ "jupyter", @@ -45,15 +45,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/observables": "^5.1.6", - "@jupyterlab/rendermime-interfaces": "^3.9.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/statedb": "^4.1.6", - "@jupyterlab/statusbar": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/observables": "^5.1.7", + "@jupyterlab/rendermime-interfaces": "^3.9.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/statedb": "^4.1.7", + "@jupyterlab/statusbar": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", @@ -68,7 +68,7 @@ "sanitize-html": "~2.7.3" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "@types/sanitize-html": "^2.3.1", "jest": "^29.2.0", diff --git a/packages/attachments/package.json b/packages/attachments/package.json index 8552d4bf4532..255d74b90841 100644 --- a/packages/attachments/package.json +++ b/packages/attachments/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/attachments", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Notebook Cell Attachments", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,10 +37,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/nbformat": "^4.1.6", - "@jupyterlab/observables": "^5.1.6", - "@jupyterlab/rendermime": "^4.1.6", - "@jupyterlab/rendermime-interfaces": "^3.9.6", + "@jupyterlab/nbformat": "^4.1.7", + "@jupyterlab/observables": "^5.1.7", + "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/rendermime-interfaces": "^3.9.7", "@lumino/disposable": "^2.1.2", "@lumino/signaling": "^2.1.2" }, diff --git a/packages/cell-toolbar-extension/package.json b/packages/cell-toolbar-extension/package.json index 6c1a32d1ff8d..f801a7085c13 100644 --- a/packages/cell-toolbar-extension/package.json +++ b/packages/cell-toolbar-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/cell-toolbar-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "Extension for cell toolbar adapted from jlab-enhanced-cell-toolbar", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -34,11 +34,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/cell-toolbar": "^4.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/translation": "^4.1.6" + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/cell-toolbar": "^4.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/translation": "^4.1.7" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/cell-toolbar/package.json b/packages/cell-toolbar/package.json index a0013bd61046..4973eae689e9 100644 --- a/packages/cell-toolbar/package.json +++ b/packages/cell-toolbar/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/cell-toolbar", - "version": "4.1.6", + "version": "4.1.7", "description": "Contextual cell toolbar adapted from jlab-enhanced-cell-toolbar", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,12 +41,12 @@ }, "dependencies": { "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/cells": "^4.1.6", - "@jupyterlab/docregistry": "^4.1.6", - "@jupyterlab/notebook": "^4.1.6", - "@jupyterlab/observables": "^5.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/cells": "^4.1.7", + "@jupyterlab/docregistry": "^4.1.7", + "@jupyterlab/notebook": "^4.1.7", + "@jupyterlab/observables": "^5.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/disposable": "^2.1.2", @@ -54,7 +54,7 @@ "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/cells/package.json b/packages/cells/package.json index d9bfc206c22d..c3359cd8ef53 100644 --- a/packages/cells/package.json +++ b/packages/cells/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/cells", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Notebook Cells", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -46,21 +46,21 @@ "@codemirror/state": "^6.2.0", "@codemirror/view": "^6.9.6", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/attachments": "^4.1.6", - "@jupyterlab/codeeditor": "^4.1.6", - "@jupyterlab/codemirror": "^4.1.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/documentsearch": "^4.1.6", - "@jupyterlab/filebrowser": "^4.1.6", - "@jupyterlab/nbformat": "^4.1.6", - "@jupyterlab/observables": "^5.1.6", - "@jupyterlab/outputarea": "^4.1.6", - "@jupyterlab/rendermime": "^4.1.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/toc": "^6.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/attachments": "^4.1.7", + "@jupyterlab/codeeditor": "^4.1.7", + "@jupyterlab/codemirror": "^4.1.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/documentsearch": "^4.1.7", + "@jupyterlab/filebrowser": "^4.1.7", + "@jupyterlab/nbformat": "^4.1.7", + "@jupyterlab/observables": "^5.1.7", + "@jupyterlab/outputarea": "^4.1.7", + "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/toc": "^6.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/domutils": "^2.0.1", @@ -73,7 +73,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "@types/react": "^18.0.26", "jest": "^29.2.0", diff --git a/packages/celltags-extension/package.json b/packages/celltags-extension/package.json index 976134b6b06c..9006ab472d01 100644 --- a/packages/celltags-extension/package.json +++ b/packages/celltags-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/celltags-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "An extension for manipulating tags in cell metadata", "keywords": [ "jupyter", @@ -40,10 +40,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/notebook": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/notebook": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/algorithm": "^2.0.1", "@rjsf/utils": "^5.13.4", "react": "^18.2.0" diff --git a/packages/codeeditor/package.json b/packages/codeeditor/package.json index a788f66555b6..ab6000887f1b 100644 --- a/packages/codeeditor/package.json +++ b/packages/codeeditor/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/codeeditor", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Abstract Code Editor", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -44,13 +44,13 @@ "dependencies": { "@codemirror/state": "^6.2.0", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/nbformat": "^4.1.6", - "@jupyterlab/observables": "^5.1.6", - "@jupyterlab/statusbar": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/nbformat": "^4.1.7", + "@jupyterlab/observables": "^5.1.7", + "@jupyterlab/statusbar": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/dragdrop": "^2.1.4", @@ -60,7 +60,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/codemirror-extension/package.json b/packages/codemirror-extension/package.json index 562e276f1693..584b9194c231 100644 --- a/packages/codemirror-extension/package.json +++ b/packages/codemirror-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/codemirror-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - CodeMirror Provider Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,13 +42,13 @@ "@codemirror/language": "^6.6.0", "@codemirror/legacy-modes": "^6.3.2", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/codeeditor": "^4.1.6", - "@jupyterlab/codemirror": "^4.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/statusbar": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/codeeditor": "^4.1.7", + "@jupyterlab/codemirror": "^4.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/statusbar": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/coreutils": "^2.1.2", "@lumino/widgets": "^2.3.1", "@rjsf/utils": "^5.13.4", diff --git a/packages/codemirror/package.json b/packages/codemirror/package.json index a4c2a7f937ee..a50e4d47d7ed 100644 --- a/packages/codemirror/package.json +++ b/packages/codemirror/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/codemirror", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - CodeMirror Editor Provider", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -59,11 +59,11 @@ "@codemirror/state": "^6.2.0", "@codemirror/view": "^6.9.6", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/codeeditor": "^4.1.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/documentsearch": "^4.1.6", - "@jupyterlab/nbformat": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/codeeditor": "^4.1.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/documentsearch": "^4.1.7", + "@jupyterlab/nbformat": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", "@lezer/common": "^1.0.2", "@lezer/generator": "^1.2.2", "@lezer/highlight": "^1.1.4", @@ -74,7 +74,7 @@ "yjs": "^13.5.40" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@lezer/generator": "^1.2.2", "@lezer/lr": "^1.3.3", "@types/jest": "^29.2.0", diff --git a/packages/completer-extension/package.json b/packages/completer-extension/package.json index 0d484031ea4d..2dc337fb9fc6 100644 --- a/packages/completer-extension/package.json +++ b/packages/completer-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/completer-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Completer Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,11 +38,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/completer": "^4.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/completer": "^4.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", "@rjsf/utils": "^5.13.4", diff --git a/packages/completer/package.json b/packages/completer/package.json index 47fcf55f27ab..b479e9e3cb2e 100644 --- a/packages/completer/package.json +++ b/packages/completer/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/completer", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Completer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -49,16 +49,16 @@ "@codemirror/state": "^6.2.0", "@codemirror/view": "^6.9.6", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/codeeditor": "^4.1.6", - "@jupyterlab/codemirror": "^4.1.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/rendermime": "^4.1.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/statedb": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/codeeditor": "^4.1.7", + "@jupyterlab/codemirror": "^4.1.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/statedb": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -68,7 +68,7 @@ "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/console-extension/package.json b/packages/console-extension/package.json index 9cc3b6588fb0..eb535e607e42 100644 --- a/packages/console-extension/package.json +++ b/packages/console-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/console-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Code Console Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,18 +38,18 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/codeeditor": "^4.1.6", - "@jupyterlab/completer": "^4.1.6", - "@jupyterlab/console": "^4.1.6", - "@jupyterlab/filebrowser": "^4.1.6", - "@jupyterlab/launcher": "^4.1.6", - "@jupyterlab/mainmenu": "^4.1.6", - "@jupyterlab/rendermime": "^4.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/codeeditor": "^4.1.7", + "@jupyterlab/completer": "^4.1.7", + "@jupyterlab/console": "^4.1.7", + "@jupyterlab/filebrowser": "^4.1.7", + "@jupyterlab/launcher": "^4.1.7", + "@jupyterlab/mainmenu": "^4.1.7", + "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", diff --git a/packages/console/package.json b/packages/console/package.json index cd924b2d9b2a..649a4e3e6e30 100644 --- a/packages/console/package.json +++ b/packages/console/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/console", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Code Console", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -46,16 +46,16 @@ "@codemirror/state": "^6.2.0", "@codemirror/view": "^6.9.6", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/cells": "^4.1.6", - "@jupyterlab/codeeditor": "^4.1.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/nbformat": "^4.1.6", - "@jupyterlab/observables": "^5.1.6", - "@jupyterlab/rendermime": "^4.1.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/cells": "^4.1.7", + "@jupyterlab/codeeditor": "^4.1.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/nbformat": "^4.1.7", + "@jupyterlab/observables": "^5.1.7", + "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/dragdrop": "^2.1.4", @@ -64,8 +64,8 @@ "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/codemirror": "^4.1.6", - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/codemirror": "^4.1.7", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/coreutils/package.json b/packages/coreutils/package.json index e75bbb785f0f..ae47408042b1 100644 --- a/packages/coreutils/package.json +++ b/packages/coreutils/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/coreutils", - "version": "6.1.6", + "version": "6.1.7", "description": "JupyterLab - Core Utilities", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { diff --git a/packages/csvviewer-extension/package.json b/packages/csvviewer-extension/package.json index 6f38489cda13..2fb86b2039f4 100644 --- a/packages/csvviewer-extension/package.json +++ b/packages/csvviewer-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/csvviewer-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - CSV Widget Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,15 +38,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/csvviewer": "^4.1.6", - "@jupyterlab/docregistry": "^4.1.6", - "@jupyterlab/documentsearch": "^4.1.6", - "@jupyterlab/mainmenu": "^4.1.6", - "@jupyterlab/observables": "^5.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/csvviewer": "^4.1.7", + "@jupyterlab/docregistry": "^4.1.7", + "@jupyterlab/documentsearch": "^4.1.7", + "@jupyterlab/mainmenu": "^4.1.7", + "@jupyterlab/observables": "^5.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", "@lumino/datagrid": "^2.3.0", "@lumino/widgets": "^2.3.1" }, diff --git a/packages/csvviewer/package.json b/packages/csvviewer/package.json index eadeb2e7553a..c18df69d5500 100644 --- a/packages/csvviewer/package.json +++ b/packages/csvviewer/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/csvviewer", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - CSV Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,10 +42,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/docregistry": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/docregistry": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/coreutils": "^2.1.2", "@lumino/datagrid": "^2.3.0", "@lumino/disposable": "^2.1.2", @@ -54,7 +54,7 @@ "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "canvas": "^2.11.2", "csv-spectrum": "^1.0.0", diff --git a/packages/debugger-extension/package.json b/packages/debugger-extension/package.json index ed3acacfa96f..ce0f86ac7564 100644 --- a/packages/debugger-extension/package.json +++ b/packages/debugger-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/debugger-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Debugger Extension", "keywords": [ "jupyter", @@ -44,24 +44,24 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/cells": "^4.1.6", - "@jupyterlab/codeeditor": "^4.1.6", - "@jupyterlab/console": "^4.1.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/debugger": "^4.1.6", - "@jupyterlab/docregistry": "^4.1.6", - "@jupyterlab/fileeditor": "^4.1.6", - "@jupyterlab/logconsole": "^4.1.6", - "@jupyterlab/notebook": "^4.1.6", - "@jupyterlab/rendermime": "^4.1.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/translation": "^4.1.6" + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/cells": "^4.1.7", + "@jupyterlab/codeeditor": "^4.1.7", + "@jupyterlab/console": "^4.1.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/debugger": "^4.1.7", + "@jupyterlab/docregistry": "^4.1.7", + "@jupyterlab/fileeditor": "^4.1.7", + "@jupyterlab/logconsole": "^4.1.7", + "@jupyterlab/notebook": "^4.1.7", + "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/translation": "^4.1.7" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "@types/react-dom": "^18.0.9", "rimraf": "~5.0.5", diff --git a/packages/debugger/package.json b/packages/debugger/package.json index 6f0397f6369d..e088d89a67e7 100644 --- a/packages/debugger/package.json +++ b/packages/debugger/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/debugger", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Debugger Extension", "keywords": [ "jupyter", @@ -52,21 +52,21 @@ "@codemirror/state": "^6.2.0", "@codemirror/view": "^6.9.6", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/cells": "^4.1.6", - "@jupyterlab/codeeditor": "^4.1.6", - "@jupyterlab/codemirror": "^4.1.6", - "@jupyterlab/console": "^4.1.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/docregistry": "^4.1.6", - "@jupyterlab/fileeditor": "^4.1.6", - "@jupyterlab/notebook": "^4.1.6", - "@jupyterlab/observables": "^5.1.6", - "@jupyterlab/rendermime": "^4.1.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/cells": "^4.1.7", + "@jupyterlab/codeeditor": "^4.1.7", + "@jupyterlab/codemirror": "^4.1.7", + "@jupyterlab/console": "^4.1.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/docregistry": "^4.1.7", + "@jupyterlab/fileeditor": "^4.1.7", + "@jupyterlab/notebook": "^4.1.7", + "@jupyterlab/observables": "^5.1.7", + "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", @@ -80,7 +80,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "canvas": "^2.11.2", "jest": "^29.2.0", diff --git a/packages/docmanager-extension/package.json b/packages/docmanager-extension/package.json index a3a06505da9f..6449975e7c66 100644 --- a/packages/docmanager-extension/package.json +++ b/packages/docmanager-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/docmanager-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Document Manager Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,16 +38,16 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/docmanager": "^4.1.6", - "@jupyterlab/docregistry": "^4.1.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/statusbar": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/docmanager": "^4.1.7", + "@jupyterlab/docregistry": "^4.1.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/statusbar": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", diff --git a/packages/docmanager/package.json b/packages/docmanager/package.json index c968c5d5ec32..cd7d6c582750 100644 --- a/packages/docmanager/package.json +++ b/packages/docmanager/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/docmanager", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Document Manager", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,13 +42,13 @@ "watch": "npm run test -- --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/docregistry": "^4.1.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/statusbar": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/docregistry": "^4.1.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/statusbar": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -59,7 +59,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/docregistry/package.json b/packages/docregistry/package.json index 59e479a50421..abae2b9e725e 100644 --- a/packages/docregistry/package.json +++ b/packages/docregistry/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/docregistry", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Document Registry", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -43,15 +43,15 @@ }, "dependencies": { "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/codeeditor": "^4.1.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/observables": "^5.1.6", - "@jupyterlab/rendermime": "^4.1.6", - "@jupyterlab/rendermime-interfaces": "^3.9.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/codeeditor": "^4.1.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/observables": "^5.1.7", + "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/rendermime-interfaces": "^3.9.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -62,7 +62,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/documentsearch-extension/package.json b/packages/documentsearch-extension/package.json index 27fdfe86739d..f013e701cd53 100644 --- a/packages/documentsearch-extension/package.json +++ b/packages/documentsearch-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/documentsearch-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Document Search Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -34,11 +34,11 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/documentsearch": "^4.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/documentsearch": "^4.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", "@lumino/commands": "^2.2.0", "@lumino/widgets": "^2.3.1" }, diff --git a/packages/documentsearch/package.json b/packages/documentsearch/package.json index 7eba6177138b..7d31f00afac1 100644 --- a/packages/documentsearch/package.json +++ b/packages/documentsearch/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/documentsearch", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Document Search", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,9 +38,9 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -51,7 +51,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/extensionmanager-extension/package.json b/packages/extensionmanager-extension/package.json index f565b611668d..332aaa563f9b 100644 --- a/packages/extensionmanager-extension/package.json +++ b/packages/extensionmanager-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/extensionmanager-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Extension Manager Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -39,12 +39,12 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/extensionmanager": "^4.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6" + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/extensionmanager": "^4.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/extensionmanager/package.json b/packages/extensionmanager/package.json index 8c3e9467e67b..9f5314f2ff7e 100644 --- a/packages/extensionmanager/package.json +++ b/packages/extensionmanager/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/extensionmanager", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Extension Manager", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,11 +37,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/messaging": "^2.0.1", "@lumino/polling": "^2.1.2", "@lumino/widgets": "^2.3.1", diff --git a/packages/filebrowser-extension/package.json b/packages/filebrowser-extension/package.json index 2e461b4f371b..759257132f73 100644 --- a/packages/filebrowser-extension/package.json +++ b/packages/filebrowser-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/filebrowser-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Filebrowser Widget Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,18 +38,18 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/docmanager": "^4.1.6", - "@jupyterlab/docregistry": "^4.1.6", - "@jupyterlab/filebrowser": "^4.1.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/statedb": "^4.1.6", - "@jupyterlab/statusbar": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/docmanager": "^4.1.7", + "@jupyterlab/docregistry": "^4.1.7", + "@jupyterlab/filebrowser": "^4.1.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/statedb": "^4.1.7", + "@jupyterlab/statusbar": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/widgets": "^2.3.1" diff --git a/packages/filebrowser/package.json b/packages/filebrowser/package.json index 686952f9e926..87c755e91586 100644 --- a/packages/filebrowser/package.json +++ b/packages/filebrowser/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/filebrowser", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - FileBrowser Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,15 +42,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/docmanager": "^4.1.6", - "@jupyterlab/docregistry": "^4.1.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/statedb": "^4.1.6", - "@jupyterlab/statusbar": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/docmanager": "^4.1.7", + "@jupyterlab/docregistry": "^4.1.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/statedb": "^4.1.7", + "@jupyterlab/statusbar": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -64,7 +64,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/fileeditor-extension/package.json b/packages/fileeditor-extension/package.json index a4c1b14fdbf0..233ee1d0280d 100644 --- a/packages/fileeditor-extension/package.json +++ b/packages/fileeditor-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/fileeditor-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Editor Widget Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -40,28 +40,28 @@ "dependencies": { "@codemirror/commands": "^6.2.3", "@codemirror/search": "^6.3.0", - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/codeeditor": "^4.1.6", - "@jupyterlab/codemirror": "^4.1.6", - "@jupyterlab/completer": "^4.1.6", - "@jupyterlab/console": "^4.1.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/docregistry": "^4.1.6", - "@jupyterlab/documentsearch": "^4.1.6", - "@jupyterlab/filebrowser": "^4.1.6", - "@jupyterlab/fileeditor": "^4.1.6", - "@jupyterlab/launcher": "^4.1.6", - "@jupyterlab/lsp": "^4.1.6", - "@jupyterlab/mainmenu": "^4.1.6", - "@jupyterlab/observables": "^5.1.6", - "@jupyterlab/rendermime-interfaces": "^3.9.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/statusbar": "^4.1.6", - "@jupyterlab/toc": "^6.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/codeeditor": "^4.1.7", + "@jupyterlab/codemirror": "^4.1.7", + "@jupyterlab/completer": "^4.1.7", + "@jupyterlab/console": "^4.1.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/docregistry": "^4.1.7", + "@jupyterlab/documentsearch": "^4.1.7", + "@jupyterlab/filebrowser": "^4.1.7", + "@jupyterlab/fileeditor": "^4.1.7", + "@jupyterlab/launcher": "^4.1.7", + "@jupyterlab/lsp": "^4.1.7", + "@jupyterlab/mainmenu": "^4.1.7", + "@jupyterlab/observables": "^5.1.7", + "@jupyterlab/rendermime-interfaces": "^3.9.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/statusbar": "^4.1.7", + "@jupyterlab/toc": "^6.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", diff --git a/packages/fileeditor/package.json b/packages/fileeditor/package.json index e8de8cdba15b..aa09d18f8460 100644 --- a/packages/fileeditor/package.json +++ b/packages/fileeditor/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/fileeditor", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Editor Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,17 +41,17 @@ }, "dependencies": { "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/codeeditor": "^4.1.6", - "@jupyterlab/codemirror": "^4.1.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/docregistry": "^4.1.6", - "@jupyterlab/documentsearch": "^4.1.6", - "@jupyterlab/lsp": "^4.1.6", - "@jupyterlab/statusbar": "^4.1.6", - "@jupyterlab/toc": "^6.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/codeeditor": "^4.1.7", + "@jupyterlab/codemirror": "^4.1.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/docregistry": "^4.1.7", + "@jupyterlab/documentsearch": "^4.1.7", + "@jupyterlab/lsp": "^4.1.7", + "@jupyterlab/statusbar": "^4.1.7", + "@jupyterlab/toc": "^6.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", "@lumino/messaging": "^2.0.1", @@ -60,7 +60,7 @@ "regexp-match-indices": "^1.0.2" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/help-extension/package.json b/packages/help-extension/package.json index 4c81bc98b060..ffc714bcd8d3 100644 --- a/packages/help-extension/package.json +++ b/packages/help-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/help-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Help Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,13 +38,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/mainmenu": "^4.1.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/mainmenu": "^4.1.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/coreutils": "^2.1.2", "@lumino/signaling": "^2.1.2", "@lumino/virtualdom": "^2.0.1", diff --git a/packages/htmlviewer-extension/package.json b/packages/htmlviewer-extension/package.json index 0b873b049af6..f5f1103fb27e 100644 --- a/packages/htmlviewer-extension/package.json +++ b/packages/htmlviewer-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/htmlviewer-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab extension to render HTML files", "keywords": [ "jupyter", @@ -35,14 +35,14 @@ "watch": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/docregistry": "^4.1.6", - "@jupyterlab/htmlviewer": "^4.1.6", - "@jupyterlab/observables": "^5.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6" + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/docregistry": "^4.1.7", + "@jupyterlab/htmlviewer": "^4.1.7", + "@jupyterlab/observables": "^5.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/htmlviewer/package.json b/packages/htmlviewer/package.json index 82c83caea032..9cb25e1b3b64 100644 --- a/packages/htmlviewer/package.json +++ b/packages/htmlviewer/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/htmlviewer", - "version": "4.1.6", + "version": "4.1.7", "description": "A viewer for HTML documents.", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -33,11 +33,11 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/docregistry": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/docregistry": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/coreutils": "^2.1.2", "@lumino/signaling": "^2.1.2", "@lumino/widgets": "^2.3.1", diff --git a/packages/hub-extension/package.json b/packages/hub-extension/package.json index 20b32cb50c28..5990c8274ec7 100644 --- a/packages/hub-extension/package.json +++ b/packages/hub-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/hub-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab integration for JupyterHub", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -34,11 +34,11 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/translation": "^4.1.6" + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/translation": "^4.1.7" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/imageviewer-extension/package.json b/packages/imageviewer-extension/package.json index 3b885ba622d2..240cbe18750d 100644 --- a/packages/imageviewer-extension/package.json +++ b/packages/imageviewer-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/imageviewer-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Image Widget Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,11 +38,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/docregistry": "^4.1.6", - "@jupyterlab/imageviewer": "^4.1.6", - "@jupyterlab/translation": "^4.1.6" + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/docregistry": "^4.1.7", + "@jupyterlab/imageviewer": "^4.1.7", + "@jupyterlab/translation": "^4.1.7" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/imageviewer/package.json b/packages/imageviewer/package.json index 36045b222576..32ada1a33813 100644 --- a/packages/imageviewer/package.json +++ b/packages/imageviewer/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/imageviewer", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Image Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,15 +42,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/docregistry": "^4.1.6", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/docregistry": "^4.1.7", "@lumino/coreutils": "^2.1.2", "@lumino/messaging": "^2.0.1", "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/inspector-extension/package.json b/packages/inspector-extension/package.json index 2639ce395a85..37267d09d6c7 100644 --- a/packages/inspector-extension/package.json +++ b/packages/inspector-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/inspector-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Code Inspector Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,14 +38,14 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/console": "^4.1.6", - "@jupyterlab/inspector": "^4.1.6", - "@jupyterlab/launcher": "^4.1.6", - "@jupyterlab/notebook": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/console": "^4.1.7", + "@jupyterlab/inspector": "^4.1.7", + "@jupyterlab/launcher": "^4.1.7", + "@jupyterlab/notebook": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/widgets": "^2.3.1" }, "devDependencies": { diff --git a/packages/inspector/package.json b/packages/inspector/package.json index 634ae391166d..a6ba4b4d710c 100644 --- a/packages/inspector/package.json +++ b/packages/inspector/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/inspector", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Code Inspector", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,13 +42,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/codeeditor": "^4.1.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/rendermime": "^4.1.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/statedb": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/codeeditor": "^4.1.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/statedb": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/polling": "^2.1.2", @@ -56,7 +56,7 @@ "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/javascript-extension/package.json b/packages/javascript-extension/package.json index 100079f97699..71be47d38228 100644 --- a/packages/javascript-extension/package.json +++ b/packages/javascript-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/javascript-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Javascript Renderer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -33,8 +33,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/rendermime": "^4.1.6", - "@jupyterlab/rendermime-interfaces": "^3.9.6" + "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/rendermime-interfaces": "^3.9.7" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/json-extension/package.json b/packages/json-extension/package.json index e18e202a4d96..ce31ebcab205 100644 --- a/packages/json-extension/package.json +++ b/packages/json-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/json-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - JSON Renderer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -33,11 +33,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/codemirror": "^4.1.6", - "@jupyterlab/rendermime-interfaces": "^3.9.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/codemirror": "^4.1.7", + "@jupyterlab/rendermime-interfaces": "^3.9.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lezer/highlight": "^1.1.4", "@lumino/coreutils": "^2.1.2", "@lumino/messaging": "^2.0.1", diff --git a/packages/launcher-extension/package.json b/packages/launcher-extension/package.json index b7fab2593f0b..a705d31a1621 100644 --- a/packages/launcher-extension/package.json +++ b/packages/launcher-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/launcher-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Launcher Page Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,12 +38,12 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/filebrowser": "^4.1.6", - "@jupyterlab/launcher": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/filebrowser": "^4.1.7", + "@jupyterlab/launcher": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/widgets": "^2.3.1" diff --git a/packages/launcher/package.json b/packages/launcher/package.json index 03aa1dab294b..4f7ba369fdaa 100644 --- a/packages/launcher/package.json +++ b/packages/launcher/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/launcher", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Launcher Panel", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,9 +37,9 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", diff --git a/packages/logconsole-extension/package.json b/packages/logconsole-extension/package.json index 66643862cb9c..71fecd42cb8a 100644 --- a/packages/logconsole-extension/package.json +++ b/packages/logconsole-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/logconsole-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Log Console Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -34,15 +34,15 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/logconsole": "^4.1.6", - "@jupyterlab/rendermime": "^4.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/statusbar": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/logconsole": "^4.1.7", + "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/statusbar": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/coreutils": "^2.1.2", "@lumino/signaling": "^2.1.2", "@lumino/widgets": "^2.3.1", diff --git a/packages/logconsole/package.json b/packages/logconsole/package.json index 3c325de6c22b..31184fc2355f 100644 --- a/packages/logconsole/package.json +++ b/packages/logconsole/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/logconsole", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Log Console", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,12 +38,12 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/nbformat": "^4.1.6", - "@jupyterlab/outputarea": "^4.1.6", - "@jupyterlab/rendermime": "^4.1.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/nbformat": "^4.1.7", + "@jupyterlab/outputarea": "^4.1.7", + "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/translation": "^4.1.7", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/messaging": "^2.0.1", @@ -51,7 +51,7 @@ "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/lsp-extension/package.json b/packages/lsp-extension/package.json index 76969b0f3dd9..e66e294d0131 100644 --- a/packages/lsp-extension/package.json +++ b/packages/lsp-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/lsp-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -36,13 +36,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/lsp": "^4.1.6", - "@jupyterlab/running": "^4.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/lsp": "^4.1.7", + "@jupyterlab/running": "^4.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/coreutils": "^2.1.2", "@lumino/polling": "^2.1.2", "@lumino/signaling": "^2.1.2", diff --git a/packages/lsp/package.json b/packages/lsp/package.json index 766fcfb605c7..70804460c588 100644 --- a/packages/lsp/package.json +++ b/packages/lsp/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/lsp", - "version": "4.1.6", + "version": "4.1.7", "description": "", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,13 +41,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/codeeditor": "^4.1.6", - "@jupyterlab/codemirror": "^4.1.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/docregistry": "^4.1.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/codeeditor": "^4.1.7", + "@jupyterlab/codemirror": "^4.1.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/docregistry": "^4.1.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/translation": "^4.1.7", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/signaling": "^2.1.2", @@ -58,7 +58,7 @@ "vscode-ws-jsonrpc": "~1.0.2" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "@types/lodash.mergewith": "^4.6.1", "jest": "^29.2.0", diff --git a/packages/mainmenu-extension/package.json b/packages/mainmenu-extension/package.json index 25fcf67688c6..7efab4415a4e 100644 --- a/packages/mainmenu-extension/package.json +++ b/packages/mainmenu-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mainmenu-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Main Menu Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,14 +38,14 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/mainmenu": "^4.1.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/mainmenu": "^4.1.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", diff --git a/packages/mainmenu/package.json b/packages/mainmenu/package.json index cde62a59ef13..0d575173d8e0 100644 --- a/packages/mainmenu/package.json +++ b/packages/mainmenu/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mainmenu", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Main Menu", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,16 +42,16 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/markdownviewer-extension/package.json b/packages/markdownviewer-extension/package.json index e8de33efaa30..8cbf84119ffc 100644 --- a/packages/markdownviewer-extension/package.json +++ b/packages/markdownviewer-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/markdownviewer-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Markdown Renderer Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,14 +38,14 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/markdownviewer": "^4.1.6", - "@jupyterlab/rendermime": "^4.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/toc": "^6.1.6", - "@jupyterlab/translation": "^4.1.6" + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/markdownviewer": "^4.1.7", + "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/toc": "^6.1.7", + "@jupyterlab/translation": "^4.1.7" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/markdownviewer/package.json b/packages/markdownviewer/package.json index 73a79ef1fae6..c49395660e38 100644 --- a/packages/markdownviewer/package.json +++ b/packages/markdownviewer/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/markdownviewer", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Markdown viewer Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,12 +37,12 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/docregistry": "^4.1.6", - "@jupyterlab/rendermime": "^4.1.6", - "@jupyterlab/toc": "^6.1.6", - "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/docregistry": "^4.1.7", + "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/toc": "^6.1.7", + "@jupyterlab/translation": "^4.1.7", "@lumino/coreutils": "^2.1.2", "@lumino/messaging": "^2.0.1", "@lumino/signaling": "^2.1.2", diff --git a/packages/markedparser-extension/package.json b/packages/markedparser-extension/package.json index 4fd18b805004..48b6dfbf9f40 100644 --- a/packages/markedparser-extension/package.json +++ b/packages/markedparser-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/markedparser-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Markdown parser provider", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -36,11 +36,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/codemirror": "^4.1.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/mermaid": "^4.1.6", - "@jupyterlab/rendermime": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/codemirror": "^4.1.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/mermaid": "^4.1.7", + "@jupyterlab/rendermime": "^4.1.7", "@lumino/coreutils": "^2.1.2", "marked": "^9.1.2", "marked-gfm-heading-id": "^3.1.0", diff --git a/packages/mathjax-extension/package.json b/packages/mathjax-extension/package.json index 4175bbd57623..c842cff2c75e 100644 --- a/packages/mathjax-extension/package.json +++ b/packages/mathjax-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mathjax-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "A JupyterLab extension providing MathJax Typesetting", "keywords": [ "jupyter", @@ -43,8 +43,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/rendermime": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/rendermime": "^4.1.7", "@lumino/coreutils": "^2.1.2", "mathjax-full": "^3.2.2" }, diff --git a/packages/mermaid-extension/package.json b/packages/mermaid-extension/package.json index 2dd37230ba58..d926282b9716 100644 --- a/packages/mermaid-extension/package.json +++ b/packages/mermaid-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mermaid-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Mermaid Viewer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,11 +37,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/mermaid": "^4.1.6", - "@jupyterlab/rendermime-interfaces": "^3.9.6", - "@jupyterlab/translation": "^4.1.6" + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/mermaid": "^4.1.7", + "@jupyterlab/rendermime-interfaces": "^3.9.7", + "@jupyterlab/translation": "^4.1.7" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/mermaid/package.json b/packages/mermaid/package.json index 89f63f804fe4..4c7015441ccb 100644 --- a/packages/mermaid/package.json +++ b/packages/mermaid/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mermaid", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Mermaid Renderer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,9 +42,9 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/rendermime-interfaces": "^3.9.6", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/rendermime-interfaces": "^3.9.7", "@lumino/coreutils": "^2.1.2", "@lumino/widgets": "^2.3.1", "mermaid": "^10.7.0" diff --git a/packages/metadataform-extension/package.json b/packages/metadataform-extension/package.json index 556348ba1344..80edeab32cae 100644 --- a/packages/metadataform-extension/package.json +++ b/packages/metadataform-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/metadataform-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "A helper to build form for metadata", "keywords": [ "jupyter", @@ -39,12 +39,12 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/metadataform": "^4.1.6", - "@jupyterlab/notebook": "^4.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/metadataform": "^4.1.7", + "@jupyterlab/notebook": "^4.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/coreutils": "^2.1.2" }, "devDependencies": { diff --git a/packages/metadataform/package.json b/packages/metadataform/package.json index 182e8b018249..afd7fd3101da 100644 --- a/packages/metadataform/package.json +++ b/packages/metadataform/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/metadataform", - "version": "4.1.6", + "version": "4.1.7", "description": "A helper to build form for metadata", "keywords": [ "jupyter", @@ -45,12 +45,12 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/nbformat": "^4.1.6", - "@jupyterlab/notebook": "^4.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/nbformat": "^4.1.7", + "@jupyterlab/notebook": "^4.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/coreutils": "^2.1.2", "@lumino/messaging": "^2.0.1", "@lumino/widgets": "^2.3.1", @@ -60,7 +60,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "@types/react": "^18.0.26", "jest": "^29.2.0", diff --git a/packages/metapackage/package.json b/packages/metapackage/package.json index daa564d7d124..b8de485db8ef 100644 --- a/packages/metapackage/package.json +++ b/packages/metapackage/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/metapackage", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Meta Package. All of the packages used by the core JupyterLab application", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,103 +37,103 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/application-extension": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/apputils-extension": "^4.1.6", - "@jupyterlab/attachments": "^4.1.6", - "@jupyterlab/cell-toolbar": "^4.1.6", - "@jupyterlab/cell-toolbar-extension": "^4.1.6", - "@jupyterlab/cells": "^4.1.6", - "@jupyterlab/celltags-extension": "^4.1.6", - "@jupyterlab/codeeditor": "^4.1.6", - "@jupyterlab/codemirror": "^4.1.6", - "@jupyterlab/codemirror-extension": "^4.1.6", - "@jupyterlab/completer": "^4.1.6", - "@jupyterlab/completer-extension": "^4.1.6", - "@jupyterlab/console": "^4.1.6", - "@jupyterlab/console-extension": "^4.1.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/csvviewer": "^4.1.6", - "@jupyterlab/csvviewer-extension": "^4.1.6", - "@jupyterlab/debugger": "^4.1.6", - "@jupyterlab/debugger-extension": "^4.1.6", - "@jupyterlab/docmanager": "^4.1.6", - "@jupyterlab/docmanager-extension": "^4.1.6", - "@jupyterlab/docregistry": "^4.1.6", - "@jupyterlab/documentsearch": "^4.1.6", - "@jupyterlab/documentsearch-extension": "^4.1.6", - "@jupyterlab/extensionmanager": "^4.1.6", - "@jupyterlab/extensionmanager-extension": "^4.1.6", - "@jupyterlab/filebrowser": "^4.1.6", - "@jupyterlab/filebrowser-extension": "^4.1.6", - "@jupyterlab/fileeditor": "^4.1.6", - "@jupyterlab/fileeditor-extension": "^4.1.6", - "@jupyterlab/help-extension": "^4.1.6", - "@jupyterlab/htmlviewer": "^4.1.6", - "@jupyterlab/htmlviewer-extension": "^4.1.6", - "@jupyterlab/hub-extension": "^4.1.6", - "@jupyterlab/imageviewer": "^4.1.6", - "@jupyterlab/imageviewer-extension": "^4.1.6", - "@jupyterlab/inspector": "^4.1.6", - "@jupyterlab/inspector-extension": "^4.1.6", - "@jupyterlab/javascript-extension": "^4.1.6", - "@jupyterlab/json-extension": "^4.1.6", - "@jupyterlab/launcher": "^4.1.6", - "@jupyterlab/launcher-extension": "^4.1.6", - "@jupyterlab/logconsole": "^4.1.6", - "@jupyterlab/logconsole-extension": "^4.1.6", - "@jupyterlab/lsp": "^4.1.6", - "@jupyterlab/lsp-extension": "^4.1.6", - "@jupyterlab/mainmenu": "^4.1.6", - "@jupyterlab/mainmenu-extension": "^4.1.6", - "@jupyterlab/markdownviewer": "^4.1.6", - "@jupyterlab/markdownviewer-extension": "^4.1.6", - "@jupyterlab/markedparser-extension": "^4.1.6", - "@jupyterlab/mathjax-extension": "^4.1.6", - "@jupyterlab/mermaid": "^4.1.6", - "@jupyterlab/mermaid-extension": "^4.1.6", - "@jupyterlab/metadataform": "^4.1.6", - "@jupyterlab/metadataform-extension": "^4.1.6", - "@jupyterlab/nbconvert-css": "^4.1.6", - "@jupyterlab/nbformat": "^4.1.6", - "@jupyterlab/notebook": "^4.1.6", - "@jupyterlab/notebook-extension": "^4.1.6", - "@jupyterlab/observables": "^5.1.6", - "@jupyterlab/outputarea": "^4.1.6", - "@jupyterlab/pdf-extension": "^4.1.6", - "@jupyterlab/pluginmanager": "^4.1.6", - "@jupyterlab/pluginmanager-extension": "^4.1.6", - "@jupyterlab/property-inspector": "^4.1.6", - "@jupyterlab/rendermime": "^4.1.6", - "@jupyterlab/rendermime-extension": "^4.1.6", - "@jupyterlab/rendermime-interfaces": "^3.9.6", - "@jupyterlab/running": "^4.1.6", - "@jupyterlab/running-extension": "^4.1.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/settingeditor": "^4.1.6", - "@jupyterlab/settingeditor-extension": "^4.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/shortcuts-extension": "^4.1.6", - "@jupyterlab/statedb": "^4.1.6", - "@jupyterlab/statusbar": "^4.1.6", - "@jupyterlab/statusbar-extension": "^4.1.6", - "@jupyterlab/terminal": "^4.1.6", - "@jupyterlab/terminal-extension": "^4.1.6", - "@jupyterlab/theme-dark-extension": "^4.1.6", - "@jupyterlab/theme-light-extension": "^4.1.6", - "@jupyterlab/toc": "^6.1.6", - "@jupyterlab/toc-extension": "^6.1.6", - "@jupyterlab/tooltip": "^4.1.6", - "@jupyterlab/tooltip-extension": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/translation-extension": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", - "@jupyterlab/ui-components-extension": "^4.1.6", - "@jupyterlab/vega5-extension": "^4.1.6" + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/application-extension": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/apputils-extension": "^4.1.7", + "@jupyterlab/attachments": "^4.1.7", + "@jupyterlab/cell-toolbar": "^4.1.7", + "@jupyterlab/cell-toolbar-extension": "^4.1.7", + "@jupyterlab/cells": "^4.1.7", + "@jupyterlab/celltags-extension": "^4.1.7", + "@jupyterlab/codeeditor": "^4.1.7", + "@jupyterlab/codemirror": "^4.1.7", + "@jupyterlab/codemirror-extension": "^4.1.7", + "@jupyterlab/completer": "^4.1.7", + "@jupyterlab/completer-extension": "^4.1.7", + "@jupyterlab/console": "^4.1.7", + "@jupyterlab/console-extension": "^4.1.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/csvviewer": "^4.1.7", + "@jupyterlab/csvviewer-extension": "^4.1.7", + "@jupyterlab/debugger": "^4.1.7", + "@jupyterlab/debugger-extension": "^4.1.7", + "@jupyterlab/docmanager": "^4.1.7", + "@jupyterlab/docmanager-extension": "^4.1.7", + "@jupyterlab/docregistry": "^4.1.7", + "@jupyterlab/documentsearch": "^4.1.7", + "@jupyterlab/documentsearch-extension": "^4.1.7", + "@jupyterlab/extensionmanager": "^4.1.7", + "@jupyterlab/extensionmanager-extension": "^4.1.7", + "@jupyterlab/filebrowser": "^4.1.7", + "@jupyterlab/filebrowser-extension": "^4.1.7", + "@jupyterlab/fileeditor": "^4.1.7", + "@jupyterlab/fileeditor-extension": "^4.1.7", + "@jupyterlab/help-extension": "^4.1.7", + "@jupyterlab/htmlviewer": "^4.1.7", + "@jupyterlab/htmlviewer-extension": "^4.1.7", + "@jupyterlab/hub-extension": "^4.1.7", + "@jupyterlab/imageviewer": "^4.1.7", + "@jupyterlab/imageviewer-extension": "^4.1.7", + "@jupyterlab/inspector": "^4.1.7", + "@jupyterlab/inspector-extension": "^4.1.7", + "@jupyterlab/javascript-extension": "^4.1.7", + "@jupyterlab/json-extension": "^4.1.7", + "@jupyterlab/launcher": "^4.1.7", + "@jupyterlab/launcher-extension": "^4.1.7", + "@jupyterlab/logconsole": "^4.1.7", + "@jupyterlab/logconsole-extension": "^4.1.7", + "@jupyterlab/lsp": "^4.1.7", + "@jupyterlab/lsp-extension": "^4.1.7", + "@jupyterlab/mainmenu": "^4.1.7", + "@jupyterlab/mainmenu-extension": "^4.1.7", + "@jupyterlab/markdownviewer": "^4.1.7", + "@jupyterlab/markdownviewer-extension": "^4.1.7", + "@jupyterlab/markedparser-extension": "^4.1.7", + "@jupyterlab/mathjax-extension": "^4.1.7", + "@jupyterlab/mermaid": "^4.1.7", + "@jupyterlab/mermaid-extension": "^4.1.7", + "@jupyterlab/metadataform": "^4.1.7", + "@jupyterlab/metadataform-extension": "^4.1.7", + "@jupyterlab/nbconvert-css": "^4.1.7", + "@jupyterlab/nbformat": "^4.1.7", + "@jupyterlab/notebook": "^4.1.7", + "@jupyterlab/notebook-extension": "^4.1.7", + "@jupyterlab/observables": "^5.1.7", + "@jupyterlab/outputarea": "^4.1.7", + "@jupyterlab/pdf-extension": "^4.1.7", + "@jupyterlab/pluginmanager": "^4.1.7", + "@jupyterlab/pluginmanager-extension": "^4.1.7", + "@jupyterlab/property-inspector": "^4.1.7", + "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/rendermime-extension": "^4.1.7", + "@jupyterlab/rendermime-interfaces": "^3.9.7", + "@jupyterlab/running": "^4.1.7", + "@jupyterlab/running-extension": "^4.1.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/settingeditor": "^4.1.7", + "@jupyterlab/settingeditor-extension": "^4.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/shortcuts-extension": "^4.1.7", + "@jupyterlab/statedb": "^4.1.7", + "@jupyterlab/statusbar": "^4.1.7", + "@jupyterlab/statusbar-extension": "^4.1.7", + "@jupyterlab/terminal": "^4.1.7", + "@jupyterlab/terminal-extension": "^4.1.7", + "@jupyterlab/theme-dark-extension": "^4.1.7", + "@jupyterlab/theme-light-extension": "^4.1.7", + "@jupyterlab/toc": "^6.1.7", + "@jupyterlab/toc-extension": "^6.1.7", + "@jupyterlab/tooltip": "^4.1.7", + "@jupyterlab/tooltip-extension": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/translation-extension": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/ui-components-extension": "^4.1.7", + "@jupyterlab/vega5-extension": "^4.1.7" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "fs-extra": "^10.1.0", "jest": "^29.2.0", diff --git a/packages/nbconvert-css/package.json b/packages/nbconvert-css/package.json index b9a675dc75f5..e69f4090841d 100644 --- a/packages/nbconvert-css/package.json +++ b/packages/nbconvert-css/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/nbconvert-css", - "version": "4.1.6", + "version": "4.1.7", "description": "CSS bundle for the JupyterLab nbconvert template", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -31,13 +31,13 @@ "watch": "webpack --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/cells": "^4.1.6", - "@jupyterlab/codemirror": "^4.1.6", - "@jupyterlab/notebook": "^4.1.6", - "@jupyterlab/outputarea": "^4.1.6", - "@jupyterlab/rendermime": "^4.1.6" + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/cells": "^4.1.7", + "@jupyterlab/codemirror": "^4.1.7", + "@jupyterlab/notebook": "^4.1.7", + "@jupyterlab/outputarea": "^4.1.7", + "@jupyterlab/rendermime": "^4.1.7" }, "devDependencies": { "css-loader": "^6.7.1", diff --git a/packages/nbformat/package.json b/packages/nbformat/package.json index b9a77e625d7b..828131ac8e3d 100644 --- a/packages/nbformat/package.json +++ b/packages/nbformat/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/nbformat", - "version": "4.1.6", + "version": "4.1.7", "description": "Notebook format interfaces", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,7 +41,7 @@ "@lumino/coreutils": "^2.1.2" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/notebook-extension/package.json b/packages/notebook-extension/package.json index a1b5b271a5fc..9243d946042d 100644 --- a/packages/notebook-extension/package.json +++ b/packages/notebook-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/notebook-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Notebook Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,35 +38,35 @@ }, "dependencies": { "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/cells": "^4.1.6", - "@jupyterlab/codeeditor": "^4.1.6", - "@jupyterlab/codemirror": "^4.1.6", - "@jupyterlab/completer": "^4.1.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/docmanager": "^4.1.6", - "@jupyterlab/docmanager-extension": "^4.1.6", - "@jupyterlab/docregistry": "^4.1.6", - "@jupyterlab/documentsearch": "^4.1.6", - "@jupyterlab/filebrowser": "^4.1.6", - "@jupyterlab/launcher": "^4.1.6", - "@jupyterlab/logconsole": "^4.1.6", - "@jupyterlab/lsp": "^4.1.6", - "@jupyterlab/mainmenu": "^4.1.6", - "@jupyterlab/metadataform": "^4.1.6", - "@jupyterlab/nbformat": "^4.1.6", - "@jupyterlab/notebook": "^4.1.6", - "@jupyterlab/observables": "^5.1.6", - "@jupyterlab/property-inspector": "^4.1.6", - "@jupyterlab/rendermime": "^4.1.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/statedb": "^4.1.6", - "@jupyterlab/statusbar": "^4.1.6", - "@jupyterlab/toc": "^6.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/cells": "^4.1.7", + "@jupyterlab/codeeditor": "^4.1.7", + "@jupyterlab/codemirror": "^4.1.7", + "@jupyterlab/completer": "^4.1.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/docmanager": "^4.1.7", + "@jupyterlab/docmanager-extension": "^4.1.7", + "@jupyterlab/docregistry": "^4.1.7", + "@jupyterlab/documentsearch": "^4.1.7", + "@jupyterlab/filebrowser": "^4.1.7", + "@jupyterlab/launcher": "^4.1.7", + "@jupyterlab/logconsole": "^4.1.7", + "@jupyterlab/lsp": "^4.1.7", + "@jupyterlab/mainmenu": "^4.1.7", + "@jupyterlab/metadataform": "^4.1.7", + "@jupyterlab/nbformat": "^4.1.7", + "@jupyterlab/notebook": "^4.1.7", + "@jupyterlab/observables": "^5.1.7", + "@jupyterlab/property-inspector": "^4.1.7", + "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/statedb": "^4.1.7", + "@jupyterlab/statusbar": "^4.1.7", + "@jupyterlab/toc": "^6.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", diff --git a/packages/notebook/package.json b/packages/notebook/package.json index 2263c846ba6a..36887f351723 100644 --- a/packages/notebook/package.json +++ b/packages/notebook/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/notebook", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Notebook", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,23 +42,23 @@ }, "dependencies": { "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/cells": "^4.1.6", - "@jupyterlab/codeeditor": "^4.1.6", - "@jupyterlab/codemirror": "^4.1.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/docregistry": "^4.1.6", - "@jupyterlab/documentsearch": "^4.1.6", - "@jupyterlab/lsp": "^4.1.6", - "@jupyterlab/nbformat": "^4.1.6", - "@jupyterlab/observables": "^5.1.6", - "@jupyterlab/rendermime": "^4.1.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/statusbar": "^4.1.6", - "@jupyterlab/toc": "^6.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/cells": "^4.1.7", + "@jupyterlab/codeeditor": "^4.1.7", + "@jupyterlab/codemirror": "^4.1.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/docregistry": "^4.1.7", + "@jupyterlab/documentsearch": "^4.1.7", + "@jupyterlab/lsp": "^4.1.7", + "@jupyterlab/nbformat": "^4.1.7", + "@jupyterlab/observables": "^5.1.7", + "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/statusbar": "^4.1.7", + "@jupyterlab/toc": "^6.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -72,7 +72,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/observables/package.json b/packages/observables/package.json index 0f650f709e68..5213e99d1cea 100644 --- a/packages/observables/package.json +++ b/packages/observables/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/observables", - "version": "5.1.6", + "version": "5.1.7", "description": "Data structures which may be observed for changes.", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -44,7 +44,7 @@ "@lumino/signaling": "^2.1.2" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/outputarea/package.json b/packages/outputarea/package.json index fc0c608ecbd5..d74f52ce287b 100644 --- a/packages/outputarea/package.json +++ b/packages/outputarea/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/outputarea", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Notebook Output Area", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,13 +42,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/nbformat": "^4.1.6", - "@jupyterlab/observables": "^5.1.6", - "@jupyterlab/rendermime": "^4.1.6", - "@jupyterlab/rendermime-interfaces": "^3.9.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/nbformat": "^4.1.7", + "@jupyterlab/observables": "^5.1.7", + "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/rendermime-interfaces": "^3.9.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/translation": "^4.1.7", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -58,7 +58,7 @@ "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/pdf-extension/package.json b/packages/pdf-extension/package.json index b082b247ef73..dda0ffdd524d 100644 --- a/packages/pdf-extension/package.json +++ b/packages/pdf-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/pdf-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - PDF Viewer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,7 +37,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/rendermime-interfaces": "^3.9.6", + "@jupyterlab/rendermime-interfaces": "^3.9.7", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/widgets": "^2.3.1" diff --git a/packages/pluginmanager-extension/package.json b/packages/pluginmanager-extension/package.json index 398b08cf4fae..b0f092bc6a9a 100644 --- a/packages/pluginmanager-extension/package.json +++ b/packages/pluginmanager-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/pluginmanager-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "Enable/disable plugins from user interface", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -35,11 +35,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/pluginmanager": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/pluginmanager": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/coreutils": "^2.1.2" }, "devDependencies": { diff --git a/packages/pluginmanager/package.json b/packages/pluginmanager/package.json index 2622f6faf3f0..cc886530bc92 100644 --- a/packages/pluginmanager/package.json +++ b/packages/pluginmanager/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/pluginmanager", - "version": "4.1.6", + "version": "4.1.7", "description": "List, enable or disable individual plugins.", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -39,19 +39,19 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/coreutils": "^2.1.2", "@lumino/signaling": "^2.1.2", "@lumino/widgets": "^2.3.1", "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/property-inspector/package.json b/packages/property-inspector/package.json index ce85752a776e..d38a53bfcbd0 100644 --- a/packages/property-inspector/package.json +++ b/packages/property-inspector/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/property-inspector", - "version": "4.1.6", + "version": "4.1.7", "description": "A property inspector display for widgets", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -34,9 +34,9 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/signaling": "^2.1.2", diff --git a/packages/rendermime-extension/package.json b/packages/rendermime-extension/package.json index 13df2c60d9dc..5b22dfcfcc99 100644 --- a/packages/rendermime-extension/package.json +++ b/packages/rendermime-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/rendermime-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "A rendermime extension for JupyterLab", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -34,11 +34,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/docmanager": "^4.1.6", - "@jupyterlab/rendermime": "^4.1.6", - "@jupyterlab/translation": "^4.1.6" + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/docmanager": "^4.1.7", + "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/translation": "^4.1.7" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/rendermime-interfaces/package.json b/packages/rendermime-interfaces/package.json index 3a58f132314e..3d72c73caaea 100644 --- a/packages/rendermime-interfaces/package.json +++ b/packages/rendermime-interfaces/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/rendermime-interfaces", - "version": "3.9.6", + "version": "3.9.7", "description": "JupyterLab - Interfaces for Mime Renderers", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { diff --git a/packages/rendermime/package.json b/packages/rendermime/package.json index 8bdc323fbf98..c051f901f5fc 100644 --- a/packages/rendermime/package.json +++ b/packages/rendermime/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/rendermime", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - RenderMime", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,13 +42,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/nbformat": "^4.1.6", - "@jupyterlab/observables": "^5.1.6", - "@jupyterlab/rendermime-interfaces": "^3.9.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/nbformat": "^4.1.7", + "@jupyterlab/observables": "^5.1.7", + "@jupyterlab/rendermime-interfaces": "^3.9.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/translation": "^4.1.7", "@lumino/coreutils": "^2.1.2", "@lumino/messaging": "^2.0.1", "@lumino/signaling": "^2.1.2", @@ -56,7 +56,7 @@ "lodash.escape": "^4.0.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "@types/lodash.escape": "^4.0.6", "fs-extra": "^10.1.0", diff --git a/packages/running-extension/package.json b/packages/running-extension/package.json index 8b3fe9f87b5c..2685bc65bfd5 100644 --- a/packages/running-extension/package.json +++ b/packages/running-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/running-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Running Sessions Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,14 +38,14 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/docregistry": "^4.1.6", - "@jupyterlab/rendermime-interfaces": "^3.9.6", - "@jupyterlab/running": "^4.1.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/docregistry": "^4.1.7", + "@jupyterlab/rendermime-interfaces": "^3.9.7", + "@jupyterlab/running": "^4.1.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/commands": "^2.2.0", "@lumino/polling": "^2.1.2", "@lumino/signaling": "^2.1.2", diff --git a/packages/running/package.json b/packages/running/package.json index 8840e3ef9c76..aa8a95b213b0 100644 --- a/packages/running/package.json +++ b/packages/running/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/running", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Running Sessions Panel", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,9 +37,9 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/messaging": "^2.0.1", diff --git a/packages/services/examples/browser/package.json b/packages/services/examples/browser/package.json index 8d9fe000656b..125de4977199 100644 --- a/packages/services/examples/browser/package.json +++ b/packages/services/examples/browser/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-services-browser", - "version": "4.1.6", + "version": "4.1.7", "private": true, "files": [ "lib/*.{d.ts,js,js.map}" @@ -10,8 +10,8 @@ "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo" }, "dependencies": { - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/services": "^7.1.6", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/services": "^7.1.7", "@lumino/coreutils": "^2.1.2" }, "devDependencies": { diff --git a/packages/services/examples/node/package.json b/packages/services/examples/node/package.json index f65a23a4abba..6d86b5a56c35 100644 --- a/packages/services/examples/node/package.json +++ b/packages/services/examples/node/package.json @@ -1,13 +1,13 @@ { "name": "node-example", - "version": "4.1.6", + "version": "4.1.7", "private": true, "scripts": { "clean": "rimraf node_modules", "update": "rimraf node_modules/@jupyterlab/services && npm install" }, "dependencies": { - "@jupyterlab/services": "^7.1.6", + "@jupyterlab/services": "^7.1.7", "ws": "^8.11.0" }, "devDependencies": { diff --git a/packages/services/examples/typescript-browser-with-output/package.json b/packages/services/examples/typescript-browser-with-output/package.json index 3384f767fd8b..629b1125edf3 100644 --- a/packages/services/examples/typescript-browser-with-output/package.json +++ b/packages/services/examples/typescript-browser-with-output/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-services-outputarea", - "version": "4.1.6", + "version": "4.1.7", "private": true, "sideEffects": [ "style/*" @@ -16,10 +16,10 @@ "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo" }, "dependencies": { - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/outputarea": "^4.1.6", - "@jupyterlab/rendermime": "^4.1.6", - "@jupyterlab/services": "^7.1.6" + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/outputarea": "^4.1.7", + "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/services": "^7.1.7" }, "devDependencies": { "css-loader": "^6.7.1", diff --git a/packages/services/package.json b/packages/services/package.json index e0e90dfcb8f8..c0a99eb93df5 100644 --- a/packages/services/package.json +++ b/packages/services/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/services", - "version": "7.1.6", + "version": "7.1.7", "description": "Client APIs for the Jupyter services REST APIs", "keywords": [ "jupyter", @@ -47,10 +47,10 @@ }, "dependencies": { "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/nbformat": "^4.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/statedb": "^4.1.6", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/nbformat": "^4.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/statedb": "^4.1.7", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/polling": "^2.1.2", @@ -59,7 +59,7 @@ "ws": "^8.11.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "@types/ws": "^8.5.3", "jest": "^29.2.0", diff --git a/packages/settingeditor-extension/package.json b/packages/settingeditor-extension/package.json index 56a6108f11d4..3b80ad6cefcf 100644 --- a/packages/settingeditor-extension/package.json +++ b/packages/settingeditor-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/settingeditor-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Setting Editor Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,16 +38,16 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/codeeditor": "^4.1.6", - "@jupyterlab/pluginmanager": "^4.1.6", - "@jupyterlab/rendermime": "^4.1.6", - "@jupyterlab/settingeditor": "^4.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/statedb": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/codeeditor": "^4.1.7", + "@jupyterlab/pluginmanager": "^4.1.7", + "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/settingeditor": "^4.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/statedb": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/disposable": "^2.1.2" }, "devDependencies": { diff --git a/packages/settingeditor/package.json b/packages/settingeditor/package.json index f54314c91fd2..d500368a812c 100644 --- a/packages/settingeditor/package.json +++ b/packages/settingeditor/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/settingeditor", - "version": "4.1.6", + "version": "4.1.7", "description": "The JupyterLab default setting editor interface", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,15 +42,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/codeeditor": "^4.1.6", - "@jupyterlab/inspector": "^4.1.6", - "@jupyterlab/rendermime": "^4.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/statedb": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/codeeditor": "^4.1.7", + "@jupyterlab/inspector": "^4.1.7", + "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/statedb": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", @@ -66,7 +66,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "@types/react": "^18.0.26", "@types/react-test-renderer": "^18.0.0", diff --git a/packages/settingregistry/package.json b/packages/settingregistry/package.json index e1a0abc1aa18..a8c1e5b28335 100644 --- a/packages/settingregistry/package.json +++ b/packages/settingregistry/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/settingregistry", - "version": "4.1.6", + "version": "4.1.7", "description": "Settings registry for Jupyterlab", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,8 +37,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/nbformat": "^4.1.6", - "@jupyterlab/statedb": "^4.1.6", + "@jupyterlab/nbformat": "^4.1.7", + "@jupyterlab/statedb": "^4.1.7", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -48,7 +48,7 @@ "json5": "^2.2.3" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/shortcuts-extension/package.json b/packages/shortcuts-extension/package.json index 20cd5eb0cea4..ad7e7dcf7486 100644 --- a/packages/shortcuts-extension/package.json +++ b/packages/shortcuts-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/shortcuts-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Shortcuts Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,10 +41,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", @@ -55,7 +55,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/statedb/package.json b/packages/statedb/package.json index d35b0aea1102..0671fec245d5 100644 --- a/packages/statedb/package.json +++ b/packages/statedb/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/statedb", - "version": "4.1.6", + "version": "4.1.7", "description": "Package for managing state in Jupyterlab", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -43,7 +43,7 @@ "@lumino/signaling": "^2.1.2" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/statusbar-extension/package.json b/packages/statusbar-extension/package.json index 4161733bf2a9..de719e7fc3b9 100644 --- a/packages/statusbar-extension/package.json +++ b/packages/statusbar-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/statusbar-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Statusbar Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,11 +37,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/statusbar": "^4.1.6", - "@jupyterlab/translation": "^4.1.6" + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/statusbar": "^4.1.7", + "@jupyterlab/translation": "^4.1.7" }, "devDependencies": { "@types/react": "^18.0.26", diff --git a/packages/statusbar/package.json b/packages/statusbar/package.json index 738bc2dac868..f5493da08627 100644 --- a/packages/statusbar/package.json +++ b/packages/statusbar/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/statusbar", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab statusbar package.", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,7 +37,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -47,7 +47,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/terminal-extension/package.json b/packages/terminal-extension/package.json index e76785b907b8..c32d1f143896 100644 --- a/packages/terminal-extension/package.json +++ b/packages/terminal-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/terminal-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Terminal Emulator Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,16 +38,16 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/launcher": "^4.1.6", - "@jupyterlab/mainmenu": "^4.1.6", - "@jupyterlab/running": "^4.1.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/terminal": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/launcher": "^4.1.7", + "@jupyterlab/mainmenu": "^4.1.7", + "@jupyterlab/running": "^4.1.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/terminal": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/widgets": "^2.3.1" }, "devDependencies": { diff --git a/packages/terminal/package.json b/packages/terminal/package.json index b86c96209cf6..e13192beb330 100644 --- a/packages/terminal/package.json +++ b/packages/terminal/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/terminal", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Terminal Emulator Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,9 +42,9 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/translation": "^4.1.7", "@lumino/coreutils": "^2.1.2", "@lumino/domutils": "^2.0.1", "@lumino/messaging": "^2.0.1", @@ -56,7 +56,7 @@ "xterm-addon-webgl": "~0.14.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "canvas": "^2.11.2", "jest": "^29.2.0", diff --git a/packages/testing/package.json b/packages/testing/package.json index 7323e821deda..309b1302d0ef 100644 --- a/packages/testing/package.json +++ b/packages/testing/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/testing", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab basic testing utilities.", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -35,7 +35,7 @@ "dependencies": { "@babel/core": "^7.10.2", "@babel/preset-env": "^7.10.2", - "@jupyterlab/coreutils": "^6.1.6", + "@jupyterlab/coreutils": "^6.1.7", "@lumino/coreutils": "^2.1.2", "@lumino/signaling": "^2.1.2", "child_process": "~1.0.2", diff --git a/packages/theme-dark-extension/package.json b/packages/theme-dark-extension/package.json index bc10914406c6..2c35461aed6f 100644 --- a/packages/theme-dark-extension/package.json +++ b/packages/theme-dark-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/theme-dark-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Default Dark Theme", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -32,9 +32,9 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/translation": "^4.1.6" + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/translation": "^4.1.7" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/theme-light-extension/package.json b/packages/theme-light-extension/package.json index ac987d8e5ed0..63ddb59762cc 100644 --- a/packages/theme-light-extension/package.json +++ b/packages/theme-light-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/theme-light-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Default Light Theme", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -32,9 +32,9 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/translation": "^4.1.6" + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/translation": "^4.1.7" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/toc-extension/package.json b/packages/toc-extension/package.json index 725586f1ea54..315f986a18c4 100644 --- a/packages/toc-extension/package.json +++ b/packages/toc-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/toc-extension", - "version": "6.1.6", + "version": "6.1.7", "description": "JupyterLab - Table of Contents widget extension", "keywords": [ "jupyter", @@ -41,11 +41,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/toc": "^6.1.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6" + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/toc": "^6.1.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/toc/package.json b/packages/toc/package.json index e4e1e9e0343c..ae4702495bf9 100644 --- a/packages/toc/package.json +++ b/packages/toc/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/toc", - "version": "6.1.6", + "version": "6.1.7", "description": "JupyterLab - Table of Contents widget", "keywords": [ "jupyterlab" @@ -41,14 +41,14 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/docregistry": "^4.1.6", - "@jupyterlab/observables": "^5.1.6", - "@jupyterlab/rendermime": "^4.1.6", - "@jupyterlab/rendermime-interfaces": "^3.9.6", - "@jupyterlab/translation": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/docregistry": "^4.1.7", + "@jupyterlab/observables": "^5.1.7", + "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/rendermime-interfaces": "^3.9.7", + "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/messaging": "^2.0.1", @@ -57,7 +57,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "@types/react": "^18.0.26", "jest": "^29.2.0", diff --git a/packages/tooltip-extension/package.json b/packages/tooltip-extension/package.json index 768e23f746af..4a342aa0ea10 100644 --- a/packages/tooltip-extension/package.json +++ b/packages/tooltip-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/tooltip-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Tooltip Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,16 +38,16 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/codeeditor": "^4.1.6", - "@jupyterlab/console": "^4.1.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/fileeditor": "^4.1.6", - "@jupyterlab/notebook": "^4.1.6", - "@jupyterlab/rendermime": "^4.1.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/tooltip": "^4.1.6", - "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/codeeditor": "^4.1.7", + "@jupyterlab/console": "^4.1.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/fileeditor": "^4.1.7", + "@jupyterlab/notebook": "^4.1.7", + "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/tooltip": "^4.1.7", + "@jupyterlab/translation": "^4.1.7", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/widgets": "^2.3.1" diff --git a/packages/tooltip/package.json b/packages/tooltip/package.json index c2eca05cd366..6456e5281b85 100644 --- a/packages/tooltip/package.json +++ b/packages/tooltip/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/tooltip", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Tooltip Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,10 +37,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/codeeditor": "^4.1.6", - "@jupyterlab/rendermime": "^4.1.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/codeeditor": "^4.1.7", + "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/coreutils": "^2.1.2", "@lumino/messaging": "^2.0.1", "@lumino/widgets": "^2.3.1" diff --git a/packages/translation-extension/package.json b/packages/translation-extension/package.json index d55eeb71ec90..519fa0655345 100644 --- a/packages/translation-extension/package.json +++ b/packages/translation-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/translation-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Translation services", "keywords": [ "jupyter", @@ -37,11 +37,11 @@ "watch": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/mainmenu": "^4.1.6", - "@jupyterlab/settingregistry": "^4.1.6", - "@jupyterlab/translation": "^4.1.6" + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/mainmenu": "^4.1.7", + "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/translation": "^4.1.7" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/translation/package.json b/packages/translation/package.json index 17950a832e36..30b475316427 100644 --- a/packages/translation/package.json +++ b/packages/translation/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/translation", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Translation services", "keywords": [ "jupyter", @@ -38,14 +38,14 @@ "watch": "tsc -w" }, "dependencies": { - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/rendermime-interfaces": "^3.9.6", - "@jupyterlab/services": "^7.1.6", - "@jupyterlab/statedb": "^4.1.6", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/rendermime-interfaces": "^3.9.7", + "@jupyterlab/services": "^7.1.7", + "@jupyterlab/statedb": "^4.1.7", "@lumino/coreutils": "^2.1.2" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/ui-components-extension/package.json b/packages/ui-components-extension/package.json index 050497a0d1ff..f395f1043742 100644 --- a/packages/ui-components-extension/package.json +++ b/packages/ui-components-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/ui-components-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - UI component plugins", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -33,8 +33,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6" + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/ui-components/examples/simple-windowed-list/package.json b/packages/ui-components/examples/simple-windowed-list/package.json index f443c439c75a..9b3fff53b8a6 100644 --- a/packages/ui-components/examples/simple-windowed-list/package.json +++ b/packages/ui-components/examples/simple-windowed-list/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-simple-list", - "version": "4.1.6", + "version": "4.1.7", "private": true, "style": "style/index.css", "scripts": { @@ -9,11 +9,11 @@ "watch": "webpack --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/observables": "^5.1.6", - "@jupyterlab/theme-light-extension": "^4.1.6", - "@jupyterlab/ui-components": "^4.1.6", + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/observables": "^5.1.7", + "@jupyterlab/theme-light-extension": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.7", "@lumino/messaging": "^2.0.1", "@lumino/widgets": "^2.3.1" }, diff --git a/packages/ui-components/package.json b/packages/ui-components/package.json index 2ebb76df016d..c4bd6e33cc1c 100644 --- a/packages/ui-components/package.json +++ b/packages/ui-components/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/ui-components", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - UI components written in React", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -43,10 +43,10 @@ "dependencies": { "@jupyter/react-components": "^0.15.2", "@jupyter/web-components": "^0.15.2", - "@jupyterlab/coreutils": "^6.1.6", - "@jupyterlab/observables": "^5.1.6", - "@jupyterlab/rendermime-interfaces": "^3.9.6", - "@jupyterlab/translation": "^4.1.6", + "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/observables": "^5.1.7", + "@jupyterlab/rendermime-interfaces": "^3.9.7", + "@jupyterlab/translation": "^4.1.7", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", @@ -64,7 +64,7 @@ "typestyle": "^2.0.4" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.6", + "@jupyterlab/testing": "^4.1.7", "@types/jest": "^29.2.0", "@types/react": "^18.0.26", "jest": "^29.2.0", diff --git a/packages/vega5-extension/package.json b/packages/vega5-extension/package.json index 88aacf94f0c4..9a0d7086ad64 100644 --- a/packages/vega5-extension/package.json +++ b/packages/vega5-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/vega5-extension", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Vega 5 and Vega-Lite 5 Mime Renderer Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/rendermime-interfaces": "^3.9.6", + "@jupyterlab/rendermime-interfaces": "^3.9.7", "@lumino/coreutils": "^2.1.2", "@lumino/widgets": "^2.3.1", "vega": "^5.20.0", @@ -46,7 +46,7 @@ "vega-lite": "^5.6.1-next.1" }, "devDependencies": { - "@jupyterlab/testutils": "^4.1.6", + "@jupyterlab/testutils": "^4.1.7", "@types/jest": "^29.2.0", "@types/webpack-env": "^1.18.0", "jest": "^29.2.0", diff --git a/testutils/package.json b/testutils/package.json index 3574f1b4d7bc..6a47fe8f0750 100644 --- a/testutils/package.json +++ b/testutils/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/testutils", - "version": "4.1.6", + "version": "4.1.7", "description": "JupyterLab - Test Utilities", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -31,11 +31,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.6", - "@jupyterlab/apputils": "^4.2.6", - "@jupyterlab/notebook": "^4.1.6", - "@jupyterlab/rendermime": "^4.1.6", - "@jupyterlab/testing": "^4.1.6" + "@jupyterlab/application": "^4.1.7", + "@jupyterlab/apputils": "^4.2.7", + "@jupyterlab/notebook": "^4.1.7", + "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/testing": "^4.1.7" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/yarn.lock b/yarn.lock index 8ede0524ad93..9e07ec13e675 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2096,19 +2096,19 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/application-extension@^4.1.6, @jupyterlab/application-extension@workspace:packages/application-extension, @jupyterlab/application-extension@~4.1.6": +"@jupyterlab/application-extension@^4.1.7, @jupyterlab/application-extension@workspace:packages/application-extension, @jupyterlab/application-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/application-extension@workspace:packages/application-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/property-inspector": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/statedb": ^4.1.6 - "@jupyterlab/statusbar": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/property-inspector": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/statedb": ^4.1.7 + "@jupyterlab/statusbar": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -2125,56 +2125,56 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/application-top@workspace:dev_mode" dependencies: - "@jupyterlab/application": ~4.1.6 - "@jupyterlab/application-extension": ~4.1.6 - "@jupyterlab/apputils-extension": ~4.1.6 - "@jupyterlab/builder": ^4.1.6 - "@jupyterlab/buildutils": ^4.1.6 - "@jupyterlab/cell-toolbar-extension": ~4.1.6 - "@jupyterlab/celltags-extension": ~4.1.6 - "@jupyterlab/codemirror-extension": ~4.1.6 - "@jupyterlab/completer-extension": ~4.1.6 - "@jupyterlab/console-extension": ~4.1.6 - "@jupyterlab/coreutils": ~6.1.6 - "@jupyterlab/csvviewer-extension": ~4.1.6 - "@jupyterlab/debugger-extension": ~4.1.6 - "@jupyterlab/docmanager-extension": ~4.1.6 - "@jupyterlab/documentsearch-extension": ~4.1.6 - "@jupyterlab/extensionmanager-extension": ~4.1.6 - "@jupyterlab/filebrowser-extension": ~4.1.6 - "@jupyterlab/fileeditor-extension": ~4.1.6 - "@jupyterlab/help-extension": ~4.1.6 - "@jupyterlab/htmlviewer-extension": ~4.1.6 - "@jupyterlab/hub-extension": ~4.1.6 - "@jupyterlab/imageviewer-extension": ~4.1.6 - "@jupyterlab/inspector-extension": ~4.1.6 - "@jupyterlab/javascript-extension": ~4.1.6 - "@jupyterlab/json-extension": ~4.1.6 - "@jupyterlab/launcher-extension": ~4.1.6 - "@jupyterlab/logconsole-extension": ~4.1.6 - "@jupyterlab/lsp-extension": ~4.1.6 - "@jupyterlab/mainmenu-extension": ~4.1.6 - "@jupyterlab/markdownviewer-extension": ~4.1.6 - "@jupyterlab/markedparser-extension": ~4.1.6 - "@jupyterlab/mathjax-extension": ~4.1.6 - "@jupyterlab/mermaid-extension": ~4.1.6 - "@jupyterlab/metadataform-extension": ~4.1.6 - "@jupyterlab/notebook-extension": ~4.1.6 - "@jupyterlab/pdf-extension": ~4.1.6 - "@jupyterlab/pluginmanager-extension": ~4.1.6 - "@jupyterlab/rendermime-extension": ~4.1.6 - "@jupyterlab/running-extension": ~4.1.6 - "@jupyterlab/settingeditor-extension": ~4.1.6 - "@jupyterlab/shortcuts-extension": ~4.1.6 - "@jupyterlab/statusbar-extension": ~4.1.6 - "@jupyterlab/terminal-extension": ~4.1.6 - "@jupyterlab/theme-dark-extension": ~4.1.6 - "@jupyterlab/theme-light-extension": ~4.1.6 - "@jupyterlab/toc-extension": ~6.1.6 - "@jupyterlab/tooltip-extension": ~4.1.6 - "@jupyterlab/translation-extension": ~4.1.6 - "@jupyterlab/ui-components-extension": ~4.1.6 - "@jupyterlab/vega5-extension": ~4.1.6 + "@jupyterlab/application": ~4.1.7 + "@jupyterlab/application-extension": ~4.1.7 + "@jupyterlab/apputils-extension": ~4.1.7 + "@jupyterlab/builder": ^4.1.7 + "@jupyterlab/buildutils": ^4.1.7 + "@jupyterlab/cell-toolbar-extension": ~4.1.7 + "@jupyterlab/celltags-extension": ~4.1.7 + "@jupyterlab/codemirror-extension": ~4.1.7 + "@jupyterlab/completer-extension": ~4.1.7 + "@jupyterlab/console-extension": ~4.1.7 + "@jupyterlab/coreutils": ~6.1.7 + "@jupyterlab/csvviewer-extension": ~4.1.7 + "@jupyterlab/debugger-extension": ~4.1.7 + "@jupyterlab/docmanager-extension": ~4.1.7 + "@jupyterlab/documentsearch-extension": ~4.1.7 + "@jupyterlab/extensionmanager-extension": ~4.1.7 + "@jupyterlab/filebrowser-extension": ~4.1.7 + "@jupyterlab/fileeditor-extension": ~4.1.7 + "@jupyterlab/help-extension": ~4.1.7 + "@jupyterlab/htmlviewer-extension": ~4.1.7 + "@jupyterlab/hub-extension": ~4.1.7 + "@jupyterlab/imageviewer-extension": ~4.1.7 + "@jupyterlab/inspector-extension": ~4.1.7 + "@jupyterlab/javascript-extension": ~4.1.7 + "@jupyterlab/json-extension": ~4.1.7 + "@jupyterlab/launcher-extension": ~4.1.7 + "@jupyterlab/logconsole-extension": ~4.1.7 + "@jupyterlab/lsp-extension": ~4.1.7 + "@jupyterlab/mainmenu-extension": ~4.1.7 + "@jupyterlab/markdownviewer-extension": ~4.1.7 + "@jupyterlab/markedparser-extension": ~4.1.7 + "@jupyterlab/mathjax-extension": ~4.1.7 + "@jupyterlab/mermaid-extension": ~4.1.7 + "@jupyterlab/metadataform-extension": ~4.1.7 + "@jupyterlab/notebook-extension": ~4.1.7 + "@jupyterlab/pdf-extension": ~4.1.7 + "@jupyterlab/pluginmanager-extension": ~4.1.7 + "@jupyterlab/rendermime-extension": ~4.1.7 + "@jupyterlab/running-extension": ~4.1.7 + "@jupyterlab/settingeditor-extension": ~4.1.7 + "@jupyterlab/shortcuts-extension": ~4.1.7 + "@jupyterlab/statusbar-extension": ~4.1.7 + "@jupyterlab/terminal-extension": ~4.1.7 + "@jupyterlab/theme-dark-extension": ~4.1.7 + "@jupyterlab/theme-light-extension": ~4.1.7 + "@jupyterlab/toc-extension": ~6.1.7 + "@jupyterlab/tooltip-extension": ~4.1.7 + "@jupyterlab/translation-extension": ~4.1.7 + "@jupyterlab/ui-components-extension": ~4.1.7 + "@jupyterlab/vega5-extension": ~4.1.7 chokidar: ^3.4.0 css-loader: ^6.7.1 duplicate-package-checker-webpack-plugin: ^3.0.0 @@ -2200,21 +2200,21 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/application@^4.1.6, @jupyterlab/application@workspace:packages/application, @jupyterlab/application@~4.1.6": +"@jupyterlab/application@^4.1.7, @jupyterlab/application@workspace:packages/application, @jupyterlab/application@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/application@workspace:packages/application" dependencies: "@fortawesome/fontawesome-free": ^5.12.0 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/statedb": ^4.1.6 - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/statedb": ^4.1.7 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/application": ^2.3.0 "@lumino/commands": ^2.2.0 @@ -2233,23 +2233,23 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/apputils-extension@^4.1.6, @jupyterlab/apputils-extension@workspace:packages/apputils-extension, @jupyterlab/apputils-extension@~4.1.6": +"@jupyterlab/apputils-extension@^4.1.7, @jupyterlab/apputils-extension@workspace:packages/apputils-extension, @jupyterlab/apputils-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/apputils-extension@workspace:packages/apputils-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/filebrowser": ^4.1.6 - "@jupyterlab/mainmenu": ^4.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/statedb": ^4.1.6 - "@jupyterlab/statusbar": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/filebrowser": ^4.1.7 + "@jupyterlab/mainmenu": ^4.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/statedb": ^4.1.7 + "@jupyterlab/statusbar": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -2266,20 +2266,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/apputils@^4.2.6, @jupyterlab/apputils@workspace:packages/apputils": +"@jupyterlab/apputils@^4.2.7, @jupyterlab/apputils@workspace:packages/apputils": version: 0.0.0-use.local resolution: "@jupyterlab/apputils@workspace:packages/apputils" dependencies: - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/statedb": ^4.1.6 - "@jupyterlab/statusbar": ^4.1.6 - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/statedb": ^4.1.7 + "@jupyterlab/statusbar": ^4.1.7 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -2301,14 +2301,14 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/attachments@^4.1.6, @jupyterlab/attachments@workspace:packages/attachments": +"@jupyterlab/attachments@^4.1.7, @jupyterlab/attachments@workspace:packages/attachments": version: 0.0.0-use.local resolution: "@jupyterlab/attachments@workspace:packages/attachments" dependencies: - "@jupyterlab/nbformat": ^4.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/nbformat": ^4.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 rimraf: ~5.0.5 @@ -2317,7 +2317,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/builder@^4.1.6, @jupyterlab/builder@workspace:builder": +"@jupyterlab/builder@^4.1.7, @jupyterlab/builder@workspace:builder": version: 0.0.0-use.local resolution: "@jupyterlab/builder@workspace:builder" dependencies: @@ -2363,7 +2363,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/buildutils@^4.1.6, @jupyterlab/buildutils@workspace:buildutils": +"@jupyterlab/buildutils@^4.1.7, @jupyterlab/buildutils@workspace:buildutils": version: 0.0.0-use.local resolution: "@jupyterlab/buildutils@workspace:buildutils" dependencies: @@ -2403,32 +2403,32 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/cell-toolbar-extension@^4.1.6, @jupyterlab/cell-toolbar-extension@workspace:packages/cell-toolbar-extension, @jupyterlab/cell-toolbar-extension@~4.1.6": +"@jupyterlab/cell-toolbar-extension@^4.1.7, @jupyterlab/cell-toolbar-extension@workspace:packages/cell-toolbar-extension, @jupyterlab/cell-toolbar-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/cell-toolbar-extension@workspace:packages/cell-toolbar-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/cell-toolbar": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/cell-toolbar": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/cell-toolbar@^4.1.6, @jupyterlab/cell-toolbar@workspace:packages/cell-toolbar": +"@jupyterlab/cell-toolbar@^4.1.7, @jupyterlab/cell-toolbar@workspace:packages/cell-toolbar": version: 0.0.0-use.local resolution: "@jupyterlab/cell-toolbar@workspace:packages/cell-toolbar" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/cells": ^4.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/notebook": ^4.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/cells": ^4.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/notebook": ^4.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/disposable": ^2.1.2 @@ -2441,29 +2441,29 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/cells@^4.1.6, @jupyterlab/cells@workspace:packages/cells": +"@jupyterlab/cells@^4.1.7, @jupyterlab/cells@workspace:packages/cells": version: 0.0.0-use.local resolution: "@jupyterlab/cells@workspace:packages/cells" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/attachments": ^4.1.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/codemirror": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/documentsearch": ^4.1.6 - "@jupyterlab/filebrowser": ^4.1.6 - "@jupyterlab/nbformat": ^4.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/outputarea": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/toc": ^6.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/attachments": ^4.1.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/codemirror": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/documentsearch": ^4.1.7 + "@jupyterlab/filebrowser": ^4.1.7 + "@jupyterlab/nbformat": ^4.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/outputarea": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/toc": ^6.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/domutils": ^2.0.1 @@ -2483,14 +2483,14 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/celltags-extension@^4.1.6, @jupyterlab/celltags-extension@workspace:packages/celltags-extension, @jupyterlab/celltags-extension@~4.1.6": +"@jupyterlab/celltags-extension@^4.1.7, @jupyterlab/celltags-extension@workspace:packages/celltags-extension, @jupyterlab/celltags-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/celltags-extension@workspace:packages/celltags-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/notebook": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/notebook": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@rjsf/utils": ^5.13.4 react: ^18.2.0 @@ -2499,20 +2499,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/codeeditor@^4.1.6, @jupyterlab/codeeditor@workspace:packages/codeeditor": +"@jupyterlab/codeeditor@^4.1.7, @jupyterlab/codeeditor@workspace:packages/codeeditor": version: 0.0.0-use.local resolution: "@jupyterlab/codeeditor@workspace:packages/codeeditor" dependencies: "@codemirror/state": ^6.2.0 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/nbformat": ^4.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/statusbar": ^4.1.6 - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/nbformat": ^4.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/statusbar": ^4.1.7 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/dragdrop": ^2.1.4 @@ -2528,7 +2528,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/codemirror-extension@^4.1.6, @jupyterlab/codemirror-extension@workspace:packages/codemirror-extension, @jupyterlab/codemirror-extension@~4.1.6": +"@jupyterlab/codemirror-extension@^4.1.7, @jupyterlab/codemirror-extension@workspace:packages/codemirror-extension, @jupyterlab/codemirror-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/codemirror-extension@workspace:packages/codemirror-extension" dependencies: @@ -2536,13 +2536,13 @@ __metadata: "@codemirror/language": ^6.6.0 "@codemirror/legacy-modes": ^6.3.2 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/codemirror": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/statusbar": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/codemirror": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/statusbar": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 "@rjsf/utils": ^5.13.4 @@ -2555,7 +2555,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/codemirror@^4.1.6, @jupyterlab/codemirror@workspace:packages/codemirror": +"@jupyterlab/codemirror@^4.1.7, @jupyterlab/codemirror@workspace:packages/codemirror": version: 0.0.0-use.local resolution: "@jupyterlab/codemirror@workspace:packages/codemirror" dependencies: @@ -2580,12 +2580,12 @@ __metadata: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/documentsearch": ^4.1.6 - "@jupyterlab/nbformat": ^4.1.6 - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/documentsearch": ^4.1.7 + "@jupyterlab/nbformat": ^4.1.7 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 "@lezer/common": ^1.0.2 "@lezer/generator": ^1.2.2 "@lezer/highlight": ^1.1.4 @@ -2603,15 +2603,15 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/completer-extension@^4.1.6, @jupyterlab/completer-extension@workspace:packages/completer-extension, @jupyterlab/completer-extension@~4.1.6": +"@jupyterlab/completer-extension@^4.1.7, @jupyterlab/completer-extension@workspace:packages/completer-extension, @jupyterlab/completer-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/completer-extension@workspace:packages/completer-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/completer": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/completer": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@rjsf/utils": ^5.13.4 @@ -2622,24 +2622,24 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/completer@^4.1.6, @jupyterlab/completer@workspace:packages/completer": +"@jupyterlab/completer@^4.1.7, @jupyterlab/completer@workspace:packages/completer": version: 0.0.0-use.local resolution: "@jupyterlab/completer@workspace:packages/completer" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/codemirror": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/statedb": ^4.1.6 - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/codemirror": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/statedb": ^4.1.7 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -2655,22 +2655,22 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/console-extension@^4.1.6, @jupyterlab/console-extension@workspace:packages/console-extension, @jupyterlab/console-extension@~4.1.6": +"@jupyterlab/console-extension@^4.1.7, @jupyterlab/console-extension@workspace:packages/console-extension, @jupyterlab/console-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/console-extension@workspace:packages/console-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/completer": ^4.1.6 - "@jupyterlab/console": ^4.1.6 - "@jupyterlab/filebrowser": ^4.1.6 - "@jupyterlab/launcher": ^4.1.6 - "@jupyterlab/mainmenu": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/completer": ^4.1.7 + "@jupyterlab/console": ^4.1.7 + "@jupyterlab/filebrowser": ^4.1.7 + "@jupyterlab/launcher": ^4.1.7 + "@jupyterlab/mainmenu": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -2682,25 +2682,25 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/console@^4.1.6, @jupyterlab/console@workspace:packages/console": +"@jupyterlab/console@^4.1.7, @jupyterlab/console@workspace:packages/console": version: 0.0.0-use.local resolution: "@jupyterlab/console@workspace:packages/console" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/cells": ^4.1.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/codemirror": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/nbformat": ^4.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/cells": ^4.1.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/codemirror": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/nbformat": ^4.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/dragdrop": ^2.1.4 @@ -2715,7 +2715,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/coreutils@^6.1.6, @jupyterlab/coreutils@workspace:packages/coreutils, @jupyterlab/coreutils@~6.1.6": +"@jupyterlab/coreutils@^6.1.7, @jupyterlab/coreutils@workspace:packages/coreutils, @jupyterlab/coreutils@~6.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/coreutils@workspace:packages/coreutils" dependencies: @@ -2740,19 +2740,19 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/csvviewer-extension@^4.1.6, @jupyterlab/csvviewer-extension@workspace:packages/csvviewer-extension, @jupyterlab/csvviewer-extension@~4.1.6": +"@jupyterlab/csvviewer-extension@^4.1.7, @jupyterlab/csvviewer-extension@workspace:packages/csvviewer-extension, @jupyterlab/csvviewer-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/csvviewer-extension@workspace:packages/csvviewer-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/csvviewer": ^4.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/documentsearch": ^4.1.6 - "@jupyterlab/mainmenu": ^4.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/csvviewer": ^4.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/documentsearch": ^4.1.7 + "@jupyterlab/mainmenu": ^4.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 "@lumino/datagrid": ^2.3.0 "@lumino/widgets": ^2.3.1 rimraf: ~5.0.5 @@ -2761,15 +2761,15 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/csvviewer@^4.1.6, @jupyterlab/csvviewer@workspace:packages/csvviewer": +"@jupyterlab/csvviewer@^4.1.7, @jupyterlab/csvviewer@workspace:packages/csvviewer": version: 0.0.0-use.local resolution: "@jupyterlab/csvviewer@workspace:packages/csvviewer" dependencies: - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/datagrid": ^2.3.0 "@lumino/disposable": ^2.1.2 @@ -2786,26 +2786,26 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/debugger-extension@^4.1.6, @jupyterlab/debugger-extension@workspace:packages/debugger-extension, @jupyterlab/debugger-extension@~4.1.6": +"@jupyterlab/debugger-extension@^4.1.7, @jupyterlab/debugger-extension@workspace:packages/debugger-extension, @jupyterlab/debugger-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/debugger-extension@workspace:packages/debugger-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/cells": ^4.1.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/console": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/debugger": ^4.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/fileeditor": ^4.1.6 - "@jupyterlab/logconsole": ^4.1.6 - "@jupyterlab/notebook": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/cells": ^4.1.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/console": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/debugger": ^4.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/fileeditor": ^4.1.7 + "@jupyterlab/logconsole": ^4.1.7 + "@jupyterlab/notebook": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 "@types/jest": ^29.2.0 "@types/react-dom": ^18.0.9 rimraf: ~5.0.5 @@ -2814,29 +2814,29 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/debugger@^4.1.6, @jupyterlab/debugger@workspace:packages/debugger": +"@jupyterlab/debugger@^4.1.7, @jupyterlab/debugger@workspace:packages/debugger": version: 0.0.0-use.local resolution: "@jupyterlab/debugger@workspace:packages/debugger" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/cells": ^4.1.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/codemirror": ^4.1.6 - "@jupyterlab/console": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/fileeditor": ^4.1.6 - "@jupyterlab/notebook": ^4.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/cells": ^4.1.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/codemirror": ^4.1.7 + "@jupyterlab/console": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/fileeditor": ^4.1.7 + "@jupyterlab/notebook": ^4.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -2857,20 +2857,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/docmanager-extension@^4.1.6, @jupyterlab/docmanager-extension@workspace:packages/docmanager-extension, @jupyterlab/docmanager-extension@~4.1.6": +"@jupyterlab/docmanager-extension@^4.1.7, @jupyterlab/docmanager-extension@workspace:packages/docmanager-extension, @jupyterlab/docmanager-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/docmanager-extension@workspace:packages/docmanager-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docmanager": ^4.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/statusbar": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docmanager": ^4.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/statusbar": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -2884,18 +2884,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/docmanager@^4.1.6, @jupyterlab/docmanager@workspace:packages/docmanager": +"@jupyterlab/docmanager@^4.1.7, @jupyterlab/docmanager@workspace:packages/docmanager": version: 0.0.0-use.local resolution: "@jupyterlab/docmanager@workspace:packages/docmanager" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/statusbar": ^4.1.6 - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/statusbar": ^4.1.7 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -2912,21 +2912,21 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/docregistry@^4.1.6, @jupyterlab/docregistry@workspace:packages/docregistry": +"@jupyterlab/docregistry@^4.1.7, @jupyterlab/docregistry@workspace:packages/docregistry": version: 0.0.0-use.local resolution: "@jupyterlab/docregistry@workspace:packages/docregistry" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -2943,15 +2943,15 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/documentsearch-extension@^4.1.6, @jupyterlab/documentsearch-extension@workspace:packages/documentsearch-extension, @jupyterlab/documentsearch-extension@~4.1.6": +"@jupyterlab/documentsearch-extension@^4.1.7, @jupyterlab/documentsearch-extension@workspace:packages/documentsearch-extension, @jupyterlab/documentsearch-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/documentsearch-extension@workspace:packages/documentsearch-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/documentsearch": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/documentsearch": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 "@lumino/commands": ^2.2.0 "@lumino/widgets": ^2.3.1 rimraf: ~5.0.5 @@ -2959,14 +2959,14 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/documentsearch@^4.1.6, @jupyterlab/documentsearch@workspace:packages/documentsearch": +"@jupyterlab/documentsearch@^4.1.7, @jupyterlab/documentsearch@workspace:packages/documentsearch": version: 0.0.0-use.local resolution: "@jupyterlab/documentsearch@workspace:packages/documentsearch" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -2986,39 +2986,39 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/example-app@workspace:examples/app" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/application-extension": ^4.1.6 - "@jupyterlab/apputils-extension": ^4.1.6 - "@jupyterlab/builder": ^4.1.6 - "@jupyterlab/celltags-extension": ^4.1.6 - "@jupyterlab/codemirror-extension": ^4.1.6 - "@jupyterlab/completer-extension": ^4.1.6 - "@jupyterlab/console-extension": ^4.1.6 - "@jupyterlab/csvviewer-extension": ^4.1.6 - "@jupyterlab/docmanager-extension": ^4.1.6 - "@jupyterlab/filebrowser-extension": ^4.1.6 - "@jupyterlab/fileeditor-extension": ^4.1.6 - "@jupyterlab/help-extension": ^4.1.6 - "@jupyterlab/imageviewer-extension": ^4.1.6 - "@jupyterlab/inspector-extension": ^4.1.6 - "@jupyterlab/launcher-extension": ^4.1.6 - "@jupyterlab/mainmenu-extension": ^4.1.6 - "@jupyterlab/markdownviewer-extension": ^4.1.6 - "@jupyterlab/mathjax-extension": ^4.1.6 - "@jupyterlab/metadataform-extension": ^4.1.6 - "@jupyterlab/notebook-extension": ^4.1.6 - "@jupyterlab/rendermime-extension": ^4.1.6 - "@jupyterlab/running-extension": ^4.1.6 - "@jupyterlab/settingeditor-extension": ^4.1.6 - "@jupyterlab/shortcuts-extension": ^4.1.6 - "@jupyterlab/statusbar-extension": ^4.1.6 - "@jupyterlab/theme-dark-extension": ^4.1.6 - "@jupyterlab/theme-light-extension": ^4.1.6 - "@jupyterlab/toc-extension": ^6.1.6 - "@jupyterlab/tooltip-extension": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/translation-extension": ^4.1.6 - "@jupyterlab/ui-components-extension": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/application-extension": ^4.1.7 + "@jupyterlab/apputils-extension": ^4.1.7 + "@jupyterlab/builder": ^4.1.7 + "@jupyterlab/celltags-extension": ^4.1.7 + "@jupyterlab/codemirror-extension": ^4.1.7 + "@jupyterlab/completer-extension": ^4.1.7 + "@jupyterlab/console-extension": ^4.1.7 + "@jupyterlab/csvviewer-extension": ^4.1.7 + "@jupyterlab/docmanager-extension": ^4.1.7 + "@jupyterlab/filebrowser-extension": ^4.1.7 + "@jupyterlab/fileeditor-extension": ^4.1.7 + "@jupyterlab/help-extension": ^4.1.7 + "@jupyterlab/imageviewer-extension": ^4.1.7 + "@jupyterlab/inspector-extension": ^4.1.7 + "@jupyterlab/launcher-extension": ^4.1.7 + "@jupyterlab/mainmenu-extension": ^4.1.7 + "@jupyterlab/markdownviewer-extension": ^4.1.7 + "@jupyterlab/mathjax-extension": ^4.1.7 + "@jupyterlab/metadataform-extension": ^4.1.7 + "@jupyterlab/notebook-extension": ^4.1.7 + "@jupyterlab/rendermime-extension": ^4.1.7 + "@jupyterlab/running-extension": ^4.1.7 + "@jupyterlab/settingeditor-extension": ^4.1.7 + "@jupyterlab/shortcuts-extension": ^4.1.7 + "@jupyterlab/statusbar-extension": ^4.1.7 + "@jupyterlab/theme-dark-extension": ^4.1.7 + "@jupyterlab/theme-light-extension": ^4.1.7 + "@jupyterlab/toc-extension": ^6.1.7 + "@jupyterlab/tooltip-extension": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/translation-extension": ^4.1.7 + "@jupyterlab/ui-components-extension": ^4.1.7 css-loader: ^6.7.1 fs-extra: ^10.1.0 glob: ~7.1.6 @@ -3040,16 +3040,16 @@ __metadata: dependencies: "@jupyter/web-components": ^0.15.2 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/cells": ^4.1.6 - "@jupyterlab/codemirror": ^4.1.6 - "@jupyterlab/completer": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/theme-light-extension": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/cells": ^4.1.7 + "@jupyterlab/codemirror": ^4.1.7 + "@jupyterlab/completer": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/theme-light-extension": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/commands": ^2.2.0 "@lumino/widgets": ^2.3.1 css-loader: ^6.7.1 @@ -3070,14 +3070,14 @@ __metadata: dependencies: "@jupyter/web-components": ^0.15.2 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/codemirror": ^4.1.6 - "@jupyterlab/console": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/theme-light-extension": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/codemirror": ^4.1.7 + "@jupyterlab/console": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/theme-light-extension": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 "@lumino/commands": ^2.2.0 "@lumino/widgets": ^2.3.1 css-loader: ^6.7.1 @@ -3095,48 +3095,48 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/example-federated-core@workspace:examples/federated/core_package" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/application-extension": ^4.1.6 - "@jupyterlab/apputils-extension": ^4.1.6 - "@jupyterlab/builder": ^4.1.6 - "@jupyterlab/celltags-extension": ^4.1.6 - "@jupyterlab/codemirror-extension": ^4.1.6 - "@jupyterlab/completer-extension": ^4.1.6 - "@jupyterlab/console-extension": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/csvviewer-extension": ^4.1.6 - "@jupyterlab/debugger-extension": ^4.1.6 - "@jupyterlab/docmanager-extension": ^4.1.6 - "@jupyterlab/documentsearch-extension": ^4.1.6 - "@jupyterlab/extensionmanager-extension": ^4.1.6 - "@jupyterlab/filebrowser-extension": ^4.1.6 - "@jupyterlab/fileeditor-extension": ^4.1.6 - "@jupyterlab/help-extension": ^4.1.6 - "@jupyterlab/htmlviewer-extension": ^4.1.6 - "@jupyterlab/hub-extension": ^4.1.6 - "@jupyterlab/imageviewer-extension": ^4.1.6 - "@jupyterlab/inspector-extension": ^4.1.6 - "@jupyterlab/javascript-extension": ^4.1.6 - "@jupyterlab/json-extension": ^4.1.6 - "@jupyterlab/launcher-extension": ^4.1.6 - "@jupyterlab/logconsole-extension": ^4.1.6 - "@jupyterlab/lsp-extension": ^4.1.6 - "@jupyterlab/mainmenu-extension": ^4.1.6 - "@jupyterlab/mathjax-extension": ^4.1.6 - "@jupyterlab/metadataform-extension": ^4.1.6 - "@jupyterlab/notebook-extension": ^4.1.6 - "@jupyterlab/pdf-extension": ^4.1.6 - "@jupyterlab/rendermime-extension": ^4.1.6 - "@jupyterlab/settingeditor-extension": ^4.1.6 - "@jupyterlab/shortcuts-extension": ^4.1.6 - "@jupyterlab/statusbar-extension": ^4.1.6 - "@jupyterlab/theme-light-extension": ^4.1.6 - "@jupyterlab/toc-extension": ^6.1.6 - "@jupyterlab/tooltip-extension": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/translation-extension": ^4.1.6 - "@jupyterlab/ui-components-extension": ^4.1.6 - "@jupyterlab/vega5-extension": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/application-extension": ^4.1.7 + "@jupyterlab/apputils-extension": ^4.1.7 + "@jupyterlab/builder": ^4.1.7 + "@jupyterlab/celltags-extension": ^4.1.7 + "@jupyterlab/codemirror-extension": ^4.1.7 + "@jupyterlab/completer-extension": ^4.1.7 + "@jupyterlab/console-extension": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/csvviewer-extension": ^4.1.7 + "@jupyterlab/debugger-extension": ^4.1.7 + "@jupyterlab/docmanager-extension": ^4.1.7 + "@jupyterlab/documentsearch-extension": ^4.1.7 + "@jupyterlab/extensionmanager-extension": ^4.1.7 + "@jupyterlab/filebrowser-extension": ^4.1.7 + "@jupyterlab/fileeditor-extension": ^4.1.7 + "@jupyterlab/help-extension": ^4.1.7 + "@jupyterlab/htmlviewer-extension": ^4.1.7 + "@jupyterlab/hub-extension": ^4.1.7 + "@jupyterlab/imageviewer-extension": ^4.1.7 + "@jupyterlab/inspector-extension": ^4.1.7 + "@jupyterlab/javascript-extension": ^4.1.7 + "@jupyterlab/json-extension": ^4.1.7 + "@jupyterlab/launcher-extension": ^4.1.7 + "@jupyterlab/logconsole-extension": ^4.1.7 + "@jupyterlab/lsp-extension": ^4.1.7 + "@jupyterlab/mainmenu-extension": ^4.1.7 + "@jupyterlab/mathjax-extension": ^4.1.7 + "@jupyterlab/metadataform-extension": ^4.1.7 + "@jupyterlab/notebook-extension": ^4.1.7 + "@jupyterlab/pdf-extension": ^4.1.7 + "@jupyterlab/rendermime-extension": ^4.1.7 + "@jupyterlab/settingeditor-extension": ^4.1.7 + "@jupyterlab/shortcuts-extension": ^4.1.7 + "@jupyterlab/statusbar-extension": ^4.1.7 + "@jupyterlab/theme-light-extension": ^4.1.7 + "@jupyterlab/toc-extension": ^6.1.7 + "@jupyterlab/tooltip-extension": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/translation-extension": ^4.1.7 + "@jupyterlab/ui-components-extension": ^4.1.7 + "@jupyterlab/vega5-extension": ^4.1.7 copy-webpack-plugin: ^11.0.0 css-loader: ^6.7.1 fs-extra: ^10.1.0 @@ -3157,20 +3157,20 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/example-federated-md@workspace:examples/federated/md_package" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/builder": ^4.1.6 - "@jupyterlab/example-federated-middle": ^3.0.9 - "@jupyterlab/markdownviewer-extension": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/builder": ^4.1.7 + "@jupyterlab/example-federated-middle": ^3.0.10 + "@jupyterlab/markdownviewer-extension": ^4.1.7 "@lumino/widgets": ^2.3.1 rimraf: ~5.0.5 languageName: unknown linkType: soft -"@jupyterlab/example-federated-middle@^3.0.9, @jupyterlab/example-federated-middle@workspace:examples/federated/middle_package": +"@jupyterlab/example-federated-middle@^3.0.10, @jupyterlab/example-federated-middle@workspace:examples/federated/middle_package": version: 0.0.0-use.local resolution: "@jupyterlab/example-federated-middle@workspace:examples/federated/middle_package" dependencies: - "@jupyterlab/builder": ^4.1.6 + "@jupyterlab/builder": ^4.1.7 "@lumino/coreutils": ^2.1.2 rimraf: ~5.0.5 languageName: unknown @@ -3187,18 +3187,18 @@ __metadata: resolution: "@jupyterlab/example-filebrowser@workspace:examples/filebrowser" dependencies: "@jupyter/web-components": ^0.15.2 - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/codemirror": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docmanager": ^4.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/filebrowser": ^4.1.6 - "@jupyterlab/fileeditor": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/theme-light-extension": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/codemirror": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docmanager": ^4.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/filebrowser": ^4.1.7 + "@jupyterlab/fileeditor": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/theme-light-extension": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/commands": ^2.2.0 "@lumino/widgets": ^2.3.1 css-loader: ^6.7.1 @@ -3219,22 +3219,22 @@ __metadata: dependencies: "@jupyter/web-components": ^0.15.2 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/codemirror": ^4.1.6 - "@jupyterlab/completer": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docmanager": ^4.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/documentsearch": ^4.1.6 - "@jupyterlab/markedparser-extension": ^4.1.6 - "@jupyterlab/mathjax-extension": ^4.1.6 - "@jupyterlab/notebook": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/theme-light-extension": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/codemirror": ^4.1.7 + "@jupyterlab/completer": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docmanager": ^4.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/documentsearch": ^4.1.7 + "@jupyterlab/markedparser-extension": ^4.1.7 + "@jupyterlab/mathjax-extension": ^4.1.7 + "@jupyterlab/notebook": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/theme-light-extension": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/commands": ^2.2.0 "@lumino/widgets": ^2.3.1 css-loader: ^6.7.1 @@ -3253,8 +3253,8 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/example-services-browser@workspace:packages/services/examples/browser" dependencies: - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/services": ^7.1.6 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/services": ^7.1.7 "@lumino/coreutils": ^2.1.2 rimraf: ~5.0.5 typescript: ~5.1.6 @@ -3267,10 +3267,10 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/example-services-outputarea@workspace:packages/services/examples/typescript-browser-with-output" dependencies: - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/outputarea": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/services": ^7.1.6 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/outputarea": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/services": ^7.1.7 css-loader: ^6.7.1 rimraf: ~5.0.5 style-loader: ~3.3.1 @@ -3284,11 +3284,11 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/example-simple-list@workspace:packages/ui-components/examples/simple-windowed-list" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/theme-light-extension": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/theme-light-extension": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.1 css-loader: ^6.7.1 @@ -3307,11 +3307,11 @@ __metadata: resolution: "@jupyterlab/example-terminal@workspace:examples/terminal" dependencies: "@jupyter/web-components": ^0.15.2 - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/terminal": ^4.1.6 - "@jupyterlab/theme-light-extension": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/terminal": ^4.1.7 + "@jupyterlab/theme-light-extension": ^4.1.7 "@lumino/widgets": ^2.3.1 css-loader: ^6.7.1 mini-css-extract-plugin: ^2.7.0 @@ -3325,31 +3325,31 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/extensionmanager-extension@^4.1.6, @jupyterlab/extensionmanager-extension@workspace:packages/extensionmanager-extension, @jupyterlab/extensionmanager-extension@~4.1.6": +"@jupyterlab/extensionmanager-extension@^4.1.7, @jupyterlab/extensionmanager-extension@workspace:packages/extensionmanager-extension, @jupyterlab/extensionmanager-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/extensionmanager-extension@workspace:packages/extensionmanager-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/extensionmanager": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/extensionmanager": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 rimraf: ~5.0.5 typedoc: ~0.24.7 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/extensionmanager@^4.1.6, @jupyterlab/extensionmanager@workspace:packages/extensionmanager": +"@jupyterlab/extensionmanager@^4.1.7, @jupyterlab/extensionmanager@workspace:packages/extensionmanager": version: 0.0.0-use.local resolution: "@jupyterlab/extensionmanager@workspace:packages/extensionmanager" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/messaging": ^2.0.1 "@lumino/polling": ^2.1.2 "@lumino/widgets": ^2.3.1 @@ -3366,22 +3366,22 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/filebrowser-extension@^4.1.6, @jupyterlab/filebrowser-extension@workspace:packages/filebrowser-extension, @jupyterlab/filebrowser-extension@~4.1.6": +"@jupyterlab/filebrowser-extension@^4.1.7, @jupyterlab/filebrowser-extension@workspace:packages/filebrowser-extension, @jupyterlab/filebrowser-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/filebrowser-extension@workspace:packages/filebrowser-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docmanager": ^4.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/filebrowser": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/statedb": ^4.1.6 - "@jupyterlab/statusbar": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docmanager": ^4.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/filebrowser": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/statedb": ^4.1.7 + "@jupyterlab/statusbar": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/widgets": ^2.3.1 @@ -3391,20 +3391,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/filebrowser@^4.1.6, @jupyterlab/filebrowser@workspace:packages/filebrowser": +"@jupyterlab/filebrowser@^4.1.7, @jupyterlab/filebrowser@workspace:packages/filebrowser": version: 0.0.0-use.local resolution: "@jupyterlab/filebrowser@workspace:packages/filebrowser" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docmanager": ^4.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/statedb": ^4.1.6 - "@jupyterlab/statusbar": ^4.1.6 - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docmanager": ^4.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/statedb": ^4.1.7 + "@jupyterlab/statusbar": ^4.1.7 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -3424,34 +3424,34 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/fileeditor-extension@^4.1.6, @jupyterlab/fileeditor-extension@workspace:packages/fileeditor-extension, @jupyterlab/fileeditor-extension@~4.1.6": +"@jupyterlab/fileeditor-extension@^4.1.7, @jupyterlab/fileeditor-extension@workspace:packages/fileeditor-extension, @jupyterlab/fileeditor-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/fileeditor-extension@workspace:packages/fileeditor-extension" dependencies: "@codemirror/commands": ^6.2.3 "@codemirror/search": ^6.3.0 - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/codemirror": ^4.1.6 - "@jupyterlab/completer": ^4.1.6 - "@jupyterlab/console": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/documentsearch": ^4.1.6 - "@jupyterlab/filebrowser": ^4.1.6 - "@jupyterlab/fileeditor": ^4.1.6 - "@jupyterlab/launcher": ^4.1.6 - "@jupyterlab/lsp": ^4.1.6 - "@jupyterlab/mainmenu": ^4.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/statusbar": ^4.1.6 - "@jupyterlab/toc": ^6.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/codemirror": ^4.1.7 + "@jupyterlab/completer": ^4.1.7 + "@jupyterlab/console": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/documentsearch": ^4.1.7 + "@jupyterlab/filebrowser": ^4.1.7 + "@jupyterlab/fileeditor": ^4.1.7 + "@jupyterlab/launcher": ^4.1.7 + "@jupyterlab/lsp": ^4.1.7 + "@jupyterlab/mainmenu": ^4.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/statusbar": ^4.1.7 + "@jupyterlab/toc": ^6.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -3462,23 +3462,23 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/fileeditor@^4.1.6, @jupyterlab/fileeditor@workspace:packages/fileeditor": +"@jupyterlab/fileeditor@^4.1.7, @jupyterlab/fileeditor@workspace:packages/fileeditor": version: 0.0.0-use.local resolution: "@jupyterlab/fileeditor@workspace:packages/fileeditor" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/codemirror": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/documentsearch": ^4.1.6 - "@jupyterlab/lsp": ^4.1.6 - "@jupyterlab/statusbar": ^4.1.6 - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/toc": ^6.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/codemirror": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/documentsearch": ^4.1.7 + "@jupyterlab/lsp": ^4.1.7 + "@jupyterlab/statusbar": ^4.1.7 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/toc": ^6.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 @@ -3497,15 +3497,15 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/galata-extension@workspace:galata/extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/builder": ^4.1.6 - "@jupyterlab/cells": ^4.1.6 - "@jupyterlab/debugger": ^4.1.6 - "@jupyterlab/docmanager": ^4.1.6 - "@jupyterlab/nbformat": ^4.1.6 - "@jupyterlab/notebook": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/builder": ^4.1.7 + "@jupyterlab/cells": ^4.1.7 + "@jupyterlab/debugger": ^4.1.7 + "@jupyterlab/docmanager": ^4.1.7 + "@jupyterlab/nbformat": ^4.1.7 + "@jupyterlab/notebook": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 @@ -3518,15 +3518,15 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/galata@workspace:galata" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/debugger": ^4.1.6 - "@jupyterlab/docmanager": ^4.1.6 - "@jupyterlab/nbformat": ^4.1.6 - "@jupyterlab/notebook": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/settingregistry": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/debugger": ^4.1.7 + "@jupyterlab/docmanager": ^4.1.7 + "@jupyterlab/nbformat": ^4.1.7 + "@jupyterlab/notebook": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/settingregistry": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@playwright/test": ^1.32.2 "@stdlib/stats": ~0.0.13 @@ -3542,17 +3542,17 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/help-extension@^4.1.6, @jupyterlab/help-extension@workspace:packages/help-extension, @jupyterlab/help-extension@~4.1.6": +"@jupyterlab/help-extension@^4.1.7, @jupyterlab/help-extension@workspace:packages/help-extension, @jupyterlab/help-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/help-extension@workspace:packages/help-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/mainmenu": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/mainmenu": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/virtualdom": ^2.0.1 @@ -3564,32 +3564,32 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/htmlviewer-extension@^4.1.6, @jupyterlab/htmlviewer-extension@workspace:packages/htmlviewer-extension, @jupyterlab/htmlviewer-extension@~4.1.6": +"@jupyterlab/htmlviewer-extension@^4.1.7, @jupyterlab/htmlviewer-extension@workspace:packages/htmlviewer-extension, @jupyterlab/htmlviewer-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/htmlviewer-extension@workspace:packages/htmlviewer-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/htmlviewer": ^4.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/htmlviewer": ^4.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/htmlviewer@^4.1.6, @jupyterlab/htmlviewer@workspace:packages/htmlviewer": +"@jupyterlab/htmlviewer@^4.1.7, @jupyterlab/htmlviewer@workspace:packages/htmlviewer": version: 0.0.0-use.local resolution: "@jupyterlab/htmlviewer@workspace:packages/htmlviewer" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 @@ -3599,43 +3599,43 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/hub-extension@^4.1.6, @jupyterlab/hub-extension@workspace:packages/hub-extension, @jupyterlab/hub-extension@~4.1.6": +"@jupyterlab/hub-extension@^4.1.7, @jupyterlab/hub-extension@workspace:packages/hub-extension, @jupyterlab/hub-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/hub-extension@workspace:packages/hub-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/translation": ^4.1.7 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/imageviewer-extension@^4.1.6, @jupyterlab/imageviewer-extension@workspace:packages/imageviewer-extension, @jupyterlab/imageviewer-extension@~4.1.6": +"@jupyterlab/imageviewer-extension@^4.1.7, @jupyterlab/imageviewer-extension@workspace:packages/imageviewer-extension, @jupyterlab/imageviewer-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/imageviewer-extension@workspace:packages/imageviewer-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/imageviewer": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/imageviewer": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 rimraf: ~5.0.5 typedoc: ~0.24.7 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/imageviewer@^4.1.6, @jupyterlab/imageviewer@workspace:packages/imageviewer": +"@jupyterlab/imageviewer@^4.1.7, @jupyterlab/imageviewer@workspace:packages/imageviewer": version: 0.0.0-use.local resolution: "@jupyterlab/imageviewer@workspace:packages/imageviewer" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/testing": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.1 @@ -3647,18 +3647,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/inspector-extension@^4.1.6, @jupyterlab/inspector-extension@workspace:packages/inspector-extension, @jupyterlab/inspector-extension@~4.1.6": +"@jupyterlab/inspector-extension@^4.1.7, @jupyterlab/inspector-extension@workspace:packages/inspector-extension, @jupyterlab/inspector-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/inspector-extension@workspace:packages/inspector-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/console": ^4.1.6 - "@jupyterlab/inspector": ^4.1.6 - "@jupyterlab/launcher": ^4.1.6 - "@jupyterlab/notebook": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/console": ^4.1.7 + "@jupyterlab/inspector": ^4.1.7 + "@jupyterlab/launcher": ^4.1.7 + "@jupyterlab/notebook": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/widgets": ^2.3.1 rimraf: ~5.0.5 typedoc: ~0.24.7 @@ -3666,18 +3666,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/inspector@^4.1.6, @jupyterlab/inspector@workspace:packages/inspector": +"@jupyterlab/inspector@^4.1.7, @jupyterlab/inspector@workspace:packages/inspector": version: 0.0.0-use.local resolution: "@jupyterlab/inspector@workspace:packages/inspector" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/statedb": ^4.1.6 - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/statedb": ^4.1.7 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/polling": ^2.1.2 @@ -3691,27 +3691,27 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/javascript-extension@^4.1.6, @jupyterlab/javascript-extension@workspace:packages/javascript-extension, @jupyterlab/javascript-extension@~4.1.6": +"@jupyterlab/javascript-extension@^4.1.7, @jupyterlab/javascript-extension@workspace:packages/javascript-extension, @jupyterlab/javascript-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/javascript-extension@workspace:packages/javascript-extension" dependencies: - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 rimraf: ~5.0.5 typedoc: ~0.24.7 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/json-extension@^4.1.6, @jupyterlab/json-extension@workspace:packages/json-extension, @jupyterlab/json-extension@~4.1.6": +"@jupyterlab/json-extension@^4.1.7, @jupyterlab/json-extension@workspace:packages/json-extension, @jupyterlab/json-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/json-extension@workspace:packages/json-extension" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/codemirror": ^4.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/codemirror": ^4.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lezer/highlight": ^1.1.4 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 @@ -3730,16 +3730,16 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/launcher-extension@^4.1.6, @jupyterlab/launcher-extension@workspace:packages/launcher-extension, @jupyterlab/launcher-extension@~4.1.6": +"@jupyterlab/launcher-extension@^4.1.7, @jupyterlab/launcher-extension@workspace:packages/launcher-extension, @jupyterlab/launcher-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/launcher-extension@workspace:packages/launcher-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/filebrowser": ^4.1.6 - "@jupyterlab/launcher": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/filebrowser": ^4.1.7 + "@jupyterlab/launcher": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 @@ -3749,13 +3749,13 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/launcher@^4.1.6, @jupyterlab/launcher@workspace:packages/launcher": +"@jupyterlab/launcher@^4.1.7, @jupyterlab/launcher@workspace:packages/launcher": version: 0.0.0-use.local resolution: "@jupyterlab/launcher@workspace:packages/launcher" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -3770,19 +3770,19 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/logconsole-extension@^4.1.6, @jupyterlab/logconsole-extension@workspace:packages/logconsole-extension, @jupyterlab/logconsole-extension@~4.1.6": +"@jupyterlab/logconsole-extension@^4.1.7, @jupyterlab/logconsole-extension@workspace:packages/logconsole-extension, @jupyterlab/logconsole-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/logconsole-extension@workspace:packages/logconsole-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/logconsole": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/statusbar": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/logconsole": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/statusbar": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 @@ -3792,17 +3792,17 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/logconsole@^4.1.6, @jupyterlab/logconsole@workspace:packages/logconsole": +"@jupyterlab/logconsole@^4.1.7, @jupyterlab/logconsole@workspace:packages/logconsole": version: 0.0.0-use.local resolution: "@jupyterlab/logconsole@workspace:packages/logconsole" dependencies: - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/nbformat": ^4.1.6 - "@jupyterlab/outputarea": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/nbformat": ^4.1.7 + "@jupyterlab/outputarea": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 @@ -3815,17 +3815,17 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/lsp-extension@^4.1.6, @jupyterlab/lsp-extension@workspace:packages/lsp-extension, @jupyterlab/lsp-extension@~4.1.6": +"@jupyterlab/lsp-extension@^4.1.7, @jupyterlab/lsp-extension@workspace:packages/lsp-extension, @jupyterlab/lsp-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/lsp-extension@workspace:packages/lsp-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/lsp": ^4.1.6 - "@jupyterlab/running": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/lsp": ^4.1.7 + "@jupyterlab/running": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/polling": ^2.1.2 "@lumino/signaling": ^2.1.2 @@ -3836,18 +3836,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/lsp@^4.1.6, @jupyterlab/lsp@workspace:packages/lsp": +"@jupyterlab/lsp@^4.1.7, @jupyterlab/lsp@workspace:packages/lsp": version: 0.0.0-use.local resolution: "@jupyterlab/lsp@workspace:packages/lsp" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/codemirror": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/codemirror": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 @@ -3865,18 +3865,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/mainmenu-extension@^4.1.6, @jupyterlab/mainmenu-extension@workspace:packages/mainmenu-extension, @jupyterlab/mainmenu-extension@~4.1.6": +"@jupyterlab/mainmenu-extension@^4.1.7, @jupyterlab/mainmenu-extension@workspace:packages/mainmenu-extension, @jupyterlab/mainmenu-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/mainmenu-extension@workspace:packages/mainmenu-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/mainmenu": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/mainmenu": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -3887,14 +3887,14 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/mainmenu@^4.1.6, @jupyterlab/mainmenu@workspace:packages/mainmenu": +"@jupyterlab/mainmenu@^4.1.7, @jupyterlab/mainmenu@workspace:packages/mainmenu": version: 0.0.0-use.local resolution: "@jupyterlab/mainmenu@workspace:packages/mainmenu" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -3907,34 +3907,34 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/markdownviewer-extension@^4.1.6, @jupyterlab/markdownviewer-extension@workspace:packages/markdownviewer-extension, @jupyterlab/markdownviewer-extension@~4.1.6": +"@jupyterlab/markdownviewer-extension@^4.1.7, @jupyterlab/markdownviewer-extension@workspace:packages/markdownviewer-extension, @jupyterlab/markdownviewer-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/markdownviewer-extension@workspace:packages/markdownviewer-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/markdownviewer": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/toc": ^6.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/markdownviewer": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/toc": ^6.1.7 + "@jupyterlab/translation": ^4.1.7 rimraf: ~5.0.5 typedoc: ~0.24.7 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/markdownviewer@^4.1.6, @jupyterlab/markdownviewer@workspace:packages/markdownviewer": +"@jupyterlab/markdownviewer@^4.1.7, @jupyterlab/markdownviewer@workspace:packages/markdownviewer": version: 0.0.0-use.local resolution: "@jupyterlab/markdownviewer@workspace:packages/markdownviewer" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/toc": ^6.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/toc": ^6.1.7 + "@jupyterlab/translation": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 @@ -3945,15 +3945,15 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/markedparser-extension@^4.1.6, @jupyterlab/markedparser-extension@workspace:packages/markedparser-extension, @jupyterlab/markedparser-extension@~4.1.6": +"@jupyterlab/markedparser-extension@^4.1.7, @jupyterlab/markedparser-extension@workspace:packages/markedparser-extension, @jupyterlab/markedparser-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/markedparser-extension@workspace:packages/markedparser-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/codemirror": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/mermaid": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/codemirror": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/mermaid": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@types/d3": ^7.4.0 "@types/dompurify": ^2.4.0 @@ -3966,12 +3966,12 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/mathjax-extension@^4.1.6, @jupyterlab/mathjax-extension@workspace:packages/mathjax-extension, @jupyterlab/mathjax-extension@~4.1.6": +"@jupyterlab/mathjax-extension@^4.1.7, @jupyterlab/mathjax-extension@workspace:packages/mathjax-extension, @jupyterlab/mathjax-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/mathjax-extension@workspace:packages/mathjax-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 "@lumino/coreutils": ^2.1.2 mathjax-full: ^3.2.2 rimraf: ~5.0.5 @@ -3980,28 +3980,28 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/mermaid-extension@^4.1.6, @jupyterlab/mermaid-extension@workspace:packages/mermaid-extension, @jupyterlab/mermaid-extension@~4.1.6": +"@jupyterlab/mermaid-extension@^4.1.7, @jupyterlab/mermaid-extension@workspace:packages/mermaid-extension, @jupyterlab/mermaid-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/mermaid-extension@workspace:packages/mermaid-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/mermaid": ^4.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/mermaid": ^4.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/translation": ^4.1.7 rimraf: ~5.0.5 typedoc: ~0.24.7 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/mermaid@^4.1.6, @jupyterlab/mermaid@workspace:packages/mermaid": +"@jupyterlab/mermaid@^4.1.7, @jupyterlab/mermaid@workspace:packages/mermaid": version: 0.0.0-use.local resolution: "@jupyterlab/mermaid@workspace:packages/mermaid" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 "@types/jest": ^29.2.0 @@ -4013,33 +4013,33 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/metadataform-extension@^4.1.6, @jupyterlab/metadataform-extension@workspace:packages/metadataform-extension, @jupyterlab/metadataform-extension@~4.1.6": +"@jupyterlab/metadataform-extension@^4.1.7, @jupyterlab/metadataform-extension@workspace:packages/metadataform-extension, @jupyterlab/metadataform-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/metadataform-extension@workspace:packages/metadataform-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/metadataform": ^4.1.6 - "@jupyterlab/notebook": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/metadataform": ^4.1.7 + "@jupyterlab/notebook": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/coreutils": ^2.1.2 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/metadataform@^4.1.6, @jupyterlab/metadataform@workspace:packages/metadataform": +"@jupyterlab/metadataform@^4.1.7, @jupyterlab/metadataform@workspace:packages/metadataform": version: 0.0.0-use.local resolution: "@jupyterlab/metadataform@workspace:packages/metadataform" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/nbformat": ^4.1.6 - "@jupyterlab/notebook": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/nbformat": ^4.1.7 + "@jupyterlab/notebook": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.1 @@ -4060,101 +4060,101 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/metapackage@workspace:packages/metapackage" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/application-extension": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/apputils-extension": ^4.1.6 - "@jupyterlab/attachments": ^4.1.6 - "@jupyterlab/cell-toolbar": ^4.1.6 - "@jupyterlab/cell-toolbar-extension": ^4.1.6 - "@jupyterlab/cells": ^4.1.6 - "@jupyterlab/celltags-extension": ^4.1.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/codemirror": ^4.1.6 - "@jupyterlab/codemirror-extension": ^4.1.6 - "@jupyterlab/completer": ^4.1.6 - "@jupyterlab/completer-extension": ^4.1.6 - "@jupyterlab/console": ^4.1.6 - "@jupyterlab/console-extension": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/csvviewer": ^4.1.6 - "@jupyterlab/csvviewer-extension": ^4.1.6 - "@jupyterlab/debugger": ^4.1.6 - "@jupyterlab/debugger-extension": ^4.1.6 - "@jupyterlab/docmanager": ^4.1.6 - "@jupyterlab/docmanager-extension": ^4.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/documentsearch": ^4.1.6 - "@jupyterlab/documentsearch-extension": ^4.1.6 - "@jupyterlab/extensionmanager": ^4.1.6 - "@jupyterlab/extensionmanager-extension": ^4.1.6 - "@jupyterlab/filebrowser": ^4.1.6 - "@jupyterlab/filebrowser-extension": ^4.1.6 - "@jupyterlab/fileeditor": ^4.1.6 - "@jupyterlab/fileeditor-extension": ^4.1.6 - "@jupyterlab/help-extension": ^4.1.6 - "@jupyterlab/htmlviewer": ^4.1.6 - "@jupyterlab/htmlviewer-extension": ^4.1.6 - "@jupyterlab/hub-extension": ^4.1.6 - "@jupyterlab/imageviewer": ^4.1.6 - "@jupyterlab/imageviewer-extension": ^4.1.6 - "@jupyterlab/inspector": ^4.1.6 - "@jupyterlab/inspector-extension": ^4.1.6 - "@jupyterlab/javascript-extension": ^4.1.6 - "@jupyterlab/json-extension": ^4.1.6 - "@jupyterlab/launcher": ^4.1.6 - "@jupyterlab/launcher-extension": ^4.1.6 - "@jupyterlab/logconsole": ^4.1.6 - "@jupyterlab/logconsole-extension": ^4.1.6 - "@jupyterlab/lsp": ^4.1.6 - "@jupyterlab/lsp-extension": ^4.1.6 - "@jupyterlab/mainmenu": ^4.1.6 - "@jupyterlab/mainmenu-extension": ^4.1.6 - "@jupyterlab/markdownviewer": ^4.1.6 - "@jupyterlab/markdownviewer-extension": ^4.1.6 - "@jupyterlab/markedparser-extension": ^4.1.6 - "@jupyterlab/mathjax-extension": ^4.1.6 - "@jupyterlab/mermaid": ^4.1.6 - "@jupyterlab/mermaid-extension": ^4.1.6 - "@jupyterlab/metadataform": ^4.1.6 - "@jupyterlab/metadataform-extension": ^4.1.6 - "@jupyterlab/nbconvert-css": ^4.1.6 - "@jupyterlab/nbformat": ^4.1.6 - "@jupyterlab/notebook": ^4.1.6 - "@jupyterlab/notebook-extension": ^4.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/outputarea": ^4.1.6 - "@jupyterlab/pdf-extension": ^4.1.6 - "@jupyterlab/pluginmanager": ^4.1.6 - "@jupyterlab/pluginmanager-extension": ^4.1.6 - "@jupyterlab/property-inspector": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/rendermime-extension": ^4.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 - "@jupyterlab/running": ^4.1.6 - "@jupyterlab/running-extension": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/settingeditor": ^4.1.6 - "@jupyterlab/settingeditor-extension": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/shortcuts-extension": ^4.1.6 - "@jupyterlab/statedb": ^4.1.6 - "@jupyterlab/statusbar": ^4.1.6 - "@jupyterlab/statusbar-extension": ^4.1.6 - "@jupyterlab/terminal": ^4.1.6 - "@jupyterlab/terminal-extension": ^4.1.6 - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/theme-dark-extension": ^4.1.6 - "@jupyterlab/theme-light-extension": ^4.1.6 - "@jupyterlab/toc": ^6.1.6 - "@jupyterlab/toc-extension": ^6.1.6 - "@jupyterlab/tooltip": ^4.1.6 - "@jupyterlab/tooltip-extension": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/translation-extension": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 - "@jupyterlab/ui-components-extension": ^4.1.6 - "@jupyterlab/vega5-extension": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/application-extension": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/apputils-extension": ^4.1.7 + "@jupyterlab/attachments": ^4.1.7 + "@jupyterlab/cell-toolbar": ^4.1.7 + "@jupyterlab/cell-toolbar-extension": ^4.1.7 + "@jupyterlab/cells": ^4.1.7 + "@jupyterlab/celltags-extension": ^4.1.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/codemirror": ^4.1.7 + "@jupyterlab/codemirror-extension": ^4.1.7 + "@jupyterlab/completer": ^4.1.7 + "@jupyterlab/completer-extension": ^4.1.7 + "@jupyterlab/console": ^4.1.7 + "@jupyterlab/console-extension": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/csvviewer": ^4.1.7 + "@jupyterlab/csvviewer-extension": ^4.1.7 + "@jupyterlab/debugger": ^4.1.7 + "@jupyterlab/debugger-extension": ^4.1.7 + "@jupyterlab/docmanager": ^4.1.7 + "@jupyterlab/docmanager-extension": ^4.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/documentsearch": ^4.1.7 + "@jupyterlab/documentsearch-extension": ^4.1.7 + "@jupyterlab/extensionmanager": ^4.1.7 + "@jupyterlab/extensionmanager-extension": ^4.1.7 + "@jupyterlab/filebrowser": ^4.1.7 + "@jupyterlab/filebrowser-extension": ^4.1.7 + "@jupyterlab/fileeditor": ^4.1.7 + "@jupyterlab/fileeditor-extension": ^4.1.7 + "@jupyterlab/help-extension": ^4.1.7 + "@jupyterlab/htmlviewer": ^4.1.7 + "@jupyterlab/htmlviewer-extension": ^4.1.7 + "@jupyterlab/hub-extension": ^4.1.7 + "@jupyterlab/imageviewer": ^4.1.7 + "@jupyterlab/imageviewer-extension": ^4.1.7 + "@jupyterlab/inspector": ^4.1.7 + "@jupyterlab/inspector-extension": ^4.1.7 + "@jupyterlab/javascript-extension": ^4.1.7 + "@jupyterlab/json-extension": ^4.1.7 + "@jupyterlab/launcher": ^4.1.7 + "@jupyterlab/launcher-extension": ^4.1.7 + "@jupyterlab/logconsole": ^4.1.7 + "@jupyterlab/logconsole-extension": ^4.1.7 + "@jupyterlab/lsp": ^4.1.7 + "@jupyterlab/lsp-extension": ^4.1.7 + "@jupyterlab/mainmenu": ^4.1.7 + "@jupyterlab/mainmenu-extension": ^4.1.7 + "@jupyterlab/markdownviewer": ^4.1.7 + "@jupyterlab/markdownviewer-extension": ^4.1.7 + "@jupyterlab/markedparser-extension": ^4.1.7 + "@jupyterlab/mathjax-extension": ^4.1.7 + "@jupyterlab/mermaid": ^4.1.7 + "@jupyterlab/mermaid-extension": ^4.1.7 + "@jupyterlab/metadataform": ^4.1.7 + "@jupyterlab/metadataform-extension": ^4.1.7 + "@jupyterlab/nbconvert-css": ^4.1.7 + "@jupyterlab/nbformat": ^4.1.7 + "@jupyterlab/notebook": ^4.1.7 + "@jupyterlab/notebook-extension": ^4.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/outputarea": ^4.1.7 + "@jupyterlab/pdf-extension": ^4.1.7 + "@jupyterlab/pluginmanager": ^4.1.7 + "@jupyterlab/pluginmanager-extension": ^4.1.7 + "@jupyterlab/property-inspector": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/rendermime-extension": ^4.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/running": ^4.1.7 + "@jupyterlab/running-extension": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/settingeditor": ^4.1.7 + "@jupyterlab/settingeditor-extension": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/shortcuts-extension": ^4.1.7 + "@jupyterlab/statedb": ^4.1.7 + "@jupyterlab/statusbar": ^4.1.7 + "@jupyterlab/statusbar-extension": ^4.1.7 + "@jupyterlab/terminal": ^4.1.7 + "@jupyterlab/terminal-extension": ^4.1.7 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/theme-dark-extension": ^4.1.7 + "@jupyterlab/theme-light-extension": ^4.1.7 + "@jupyterlab/toc": ^6.1.7 + "@jupyterlab/toc-extension": ^6.1.7 + "@jupyterlab/tooltip": ^4.1.7 + "@jupyterlab/tooltip-extension": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/translation-extension": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/ui-components-extension": ^4.1.7 + "@jupyterlab/vega5-extension": ^4.1.7 "@types/jest": ^29.2.0 fs-extra: ^10.1.0 jest: ^29.2.0 @@ -4169,8 +4169,8 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/mock-consumer@workspace:jupyterlab/tests/mock_packages/interop/consumer" dependencies: - "@jupyterlab/builder": ^4.1.6 - "@jupyterlab/mock-token": ^4.1.6 + "@jupyterlab/builder": ^4.1.7 + "@jupyterlab/mock-token": ^4.1.7 languageName: unknown linkType: soft @@ -4178,8 +4178,8 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/mock-extension@workspace:jupyterlab/tests/mock_packages/extension" dependencies: - "@jupyterlab/builder": ^4.1.6 - "@jupyterlab/launcher": ^4.1.6 + "@jupyterlab/builder": ^4.1.7 + "@jupyterlab/launcher": ^4.1.7 languageName: unknown linkType: soft @@ -4187,12 +4187,12 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/mock-provider@workspace:jupyterlab/tests/mock_packages/interop/provider" dependencies: - "@jupyterlab/builder": ^4.1.6 - "@jupyterlab/mock-token": ^4.1.6 + "@jupyterlab/builder": ^4.1.7 + "@jupyterlab/mock-token": ^4.1.7 languageName: unknown linkType: soft -"@jupyterlab/mock-token@^4.1.6, @jupyterlab/mock-token@workspace:jupyterlab/tests/mock_packages/interop/token": +"@jupyterlab/mock-token@^4.1.7, @jupyterlab/mock-token@workspace:jupyterlab/tests/mock_packages/interop/token": version: 0.0.0-use.local resolution: "@jupyterlab/mock-token@workspace:jupyterlab/tests/mock_packages/interop/token" dependencies: @@ -4200,17 +4200,17 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/nbconvert-css@^4.1.6, @jupyterlab/nbconvert-css@workspace:packages/nbconvert-css": +"@jupyterlab/nbconvert-css@^4.1.7, @jupyterlab/nbconvert-css@workspace:packages/nbconvert-css": version: 0.0.0-use.local resolution: "@jupyterlab/nbconvert-css@workspace:packages/nbconvert-css" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/cells": ^4.1.6 - "@jupyterlab/codemirror": ^4.1.6 - "@jupyterlab/notebook": ^4.1.6 - "@jupyterlab/outputarea": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/cells": ^4.1.7 + "@jupyterlab/codemirror": ^4.1.7 + "@jupyterlab/notebook": ^4.1.7 + "@jupyterlab/outputarea": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 css-loader: ^6.7.1 mini-css-extract-plugin: ^2.7.0 null-loader: ^4.0.0 @@ -4220,11 +4220,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/nbformat@^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@^4.1.6, @jupyterlab/nbformat@workspace:packages/nbformat": +"@jupyterlab/nbformat@^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@^4.1.7, @jupyterlab/nbformat@workspace:packages/nbformat": version: 0.0.0-use.local resolution: "@jupyterlab/nbformat@workspace:packages/nbformat" dependencies: - "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/testing": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@types/jest": ^29.2.0 jest: ^29.2.0 @@ -4233,40 +4233,40 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/notebook-extension@^4.1.6, @jupyterlab/notebook-extension@workspace:packages/notebook-extension, @jupyterlab/notebook-extension@~4.1.6": +"@jupyterlab/notebook-extension@^4.1.7, @jupyterlab/notebook-extension@workspace:packages/notebook-extension, @jupyterlab/notebook-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/notebook-extension@workspace:packages/notebook-extension" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/cells": ^4.1.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/codemirror": ^4.1.6 - "@jupyterlab/completer": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docmanager": ^4.1.6 - "@jupyterlab/docmanager-extension": ^4.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/documentsearch": ^4.1.6 - "@jupyterlab/filebrowser": ^4.1.6 - "@jupyterlab/launcher": ^4.1.6 - "@jupyterlab/logconsole": ^4.1.6 - "@jupyterlab/lsp": ^4.1.6 - "@jupyterlab/mainmenu": ^4.1.6 - "@jupyterlab/metadataform": ^4.1.6 - "@jupyterlab/nbformat": ^4.1.6 - "@jupyterlab/notebook": ^4.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/property-inspector": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/statedb": ^4.1.6 - "@jupyterlab/statusbar": ^4.1.6 - "@jupyterlab/toc": ^6.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/cells": ^4.1.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/codemirror": ^4.1.7 + "@jupyterlab/completer": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docmanager": ^4.1.7 + "@jupyterlab/docmanager-extension": ^4.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/documentsearch": ^4.1.7 + "@jupyterlab/filebrowser": ^4.1.7 + "@jupyterlab/launcher": ^4.1.7 + "@jupyterlab/logconsole": ^4.1.7 + "@jupyterlab/lsp": ^4.1.7 + "@jupyterlab/mainmenu": ^4.1.7 + "@jupyterlab/metadataform": ^4.1.7 + "@jupyterlab/nbformat": ^4.1.7 + "@jupyterlab/notebook": ^4.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/property-inspector": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/statedb": ^4.1.7 + "@jupyterlab/statusbar": ^4.1.7 + "@jupyterlab/toc": ^6.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -4282,29 +4282,29 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/notebook@^4.1.6, @jupyterlab/notebook@workspace:packages/notebook": +"@jupyterlab/notebook@^4.1.7, @jupyterlab/notebook@workspace:packages/notebook": version: 0.0.0-use.local resolution: "@jupyterlab/notebook@workspace:packages/notebook" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/cells": ^4.1.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/codemirror": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/documentsearch": ^4.1.6 - "@jupyterlab/lsp": ^4.1.6 - "@jupyterlab/nbformat": ^4.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/statusbar": ^4.1.6 - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/toc": ^6.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/cells": ^4.1.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/codemirror": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/documentsearch": ^4.1.7 + "@jupyterlab/lsp": ^4.1.7 + "@jupyterlab/nbformat": ^4.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/statusbar": ^4.1.7 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/toc": ^6.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -4324,11 +4324,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/observables@^5.1.6, @jupyterlab/observables@workspace:packages/observables": +"@jupyterlab/observables@^5.1.7, @jupyterlab/observables@workspace:packages/observables": version: 0.0.0-use.local resolution: "@jupyterlab/observables@workspace:packages/observables" dependencies: - "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/testing": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -4342,18 +4342,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/outputarea@^4.1.6, @jupyterlab/outputarea@workspace:packages/outputarea": +"@jupyterlab/outputarea@^4.1.7, @jupyterlab/outputarea@workspace:packages/outputarea": version: 0.0.0-use.local resolution: "@jupyterlab/outputarea@workspace:packages/outputarea" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/nbformat": ^4.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/nbformat": ^4.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -4369,11 +4369,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/pdf-extension@^4.1.6, @jupyterlab/pdf-extension@workspace:packages/pdf-extension, @jupyterlab/pdf-extension@~4.1.6": +"@jupyterlab/pdf-extension@^4.1.7, @jupyterlab/pdf-extension@workspace:packages/pdf-extension, @jupyterlab/pdf-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/pdf-extension@workspace:packages/pdf-extension" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.9.6 + "@jupyterlab/rendermime-interfaces": ^3.9.7 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/widgets": ^2.3.1 @@ -4383,32 +4383,32 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/pluginmanager-extension@^4.1.6, @jupyterlab/pluginmanager-extension@workspace:packages/pluginmanager-extension, @jupyterlab/pluginmanager-extension@~4.1.6": +"@jupyterlab/pluginmanager-extension@^4.1.7, @jupyterlab/pluginmanager-extension@workspace:packages/pluginmanager-extension, @jupyterlab/pluginmanager-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/pluginmanager-extension@workspace:packages/pluginmanager-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/pluginmanager": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/pluginmanager": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/coreutils": ^2.1.2 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/pluginmanager@^4.1.6, @jupyterlab/pluginmanager@workspace:packages/pluginmanager": +"@jupyterlab/pluginmanager@^4.1.7, @jupyterlab/pluginmanager@workspace:packages/pluginmanager": version: 0.0.0-use.local resolution: "@jupyterlab/pluginmanager@workspace:packages/pluginmanager" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 @@ -4420,13 +4420,13 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/property-inspector@^4.1.6, @jupyterlab/property-inspector@workspace:packages/property-inspector": +"@jupyterlab/property-inspector@^4.1.7, @jupyterlab/property-inspector@workspace:packages/property-inspector": version: 0.0.0-use.local resolution: "@jupyterlab/property-inspector@workspace:packages/property-inspector" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 @@ -4438,22 +4438,22 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/rendermime-extension@^4.1.6, @jupyterlab/rendermime-extension@workspace:packages/rendermime-extension, @jupyterlab/rendermime-extension@~4.1.6": +"@jupyterlab/rendermime-extension@^4.1.7, @jupyterlab/rendermime-extension@workspace:packages/rendermime-extension, @jupyterlab/rendermime-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/rendermime-extension@workspace:packages/rendermime-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/docmanager": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/docmanager": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 rimraf: ~5.0.5 typedoc: ~0.24.7 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/rendermime-interfaces@^3.9.6, @jupyterlab/rendermime-interfaces@workspace:packages/rendermime-interfaces": +"@jupyterlab/rendermime-interfaces@^3.9.7, @jupyterlab/rendermime-interfaces@workspace:packages/rendermime-interfaces": version: 0.0.0-use.local resolution: "@jupyterlab/rendermime-interfaces@workspace:packages/rendermime-interfaces" dependencies: @@ -4465,18 +4465,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/rendermime@^4.1.6, @jupyterlab/rendermime@workspace:packages/rendermime": +"@jupyterlab/rendermime@^4.1.7, @jupyterlab/rendermime@workspace:packages/rendermime": version: 0.0.0-use.local resolution: "@jupyterlab/rendermime@workspace:packages/rendermime" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/nbformat": ^4.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/nbformat": ^4.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 @@ -4516,18 +4516,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/running-extension@^4.1.6, @jupyterlab/running-extension@workspace:packages/running-extension, @jupyterlab/running-extension@~4.1.6": +"@jupyterlab/running-extension@^4.1.7, @jupyterlab/running-extension@workspace:packages/running-extension, @jupyterlab/running-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/running-extension@workspace:packages/running-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 - "@jupyterlab/running": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/running": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/commands": ^2.2.0 "@lumino/polling": ^2.1.2 "@lumino/signaling": ^2.1.2 @@ -4538,13 +4538,13 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/running@^4.1.6, @jupyterlab/running@workspace:packages/running": +"@jupyterlab/running@^4.1.7, @jupyterlab/running@workspace:packages/running": version: 0.0.0-use.local resolution: "@jupyterlab/running@workspace:packages/running" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 @@ -4557,16 +4557,16 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/services@^7.1.6, @jupyterlab/services@workspace:packages/services": +"@jupyterlab/services@^7.1.7, @jupyterlab/services@workspace:packages/services": version: 0.0.0-use.local resolution: "@jupyterlab/services@workspace:packages/services" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/nbformat": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/statedb": ^4.1.6 - "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/nbformat": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/statedb": ^4.1.7 + "@jupyterlab/testing": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/polling": ^2.1.2 @@ -4584,20 +4584,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/settingeditor-extension@^4.1.6, @jupyterlab/settingeditor-extension@workspace:packages/settingeditor-extension, @jupyterlab/settingeditor-extension@~4.1.6": +"@jupyterlab/settingeditor-extension@^4.1.7, @jupyterlab/settingeditor-extension@workspace:packages/settingeditor-extension, @jupyterlab/settingeditor-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/settingeditor-extension@workspace:packages/settingeditor-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/pluginmanager": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/settingeditor": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/statedb": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/pluginmanager": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/settingeditor": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/statedb": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/disposable": ^2.1.2 rimraf: ~5.0.5 typedoc: ~0.24.7 @@ -4605,20 +4605,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/settingeditor@^4.1.6, @jupyterlab/settingeditor@workspace:packages/settingeditor": +"@jupyterlab/settingeditor@^4.1.7, @jupyterlab/settingeditor@workspace:packages/settingeditor": version: 0.0.0-use.local resolution: "@jupyterlab/settingeditor@workspace:packages/settingeditor" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/inspector": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/statedb": ^4.1.6 - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/inspector": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/statedb": ^4.1.7 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -4644,13 +4644,13 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/settingregistry@^4.1.6, @jupyterlab/settingregistry@workspace:packages/settingregistry": +"@jupyterlab/settingregistry@^4.1.7, @jupyterlab/settingregistry@workspace:packages/settingregistry": version: 0.0.0-use.local resolution: "@jupyterlab/settingregistry@workspace:packages/settingregistry" dependencies: - "@jupyterlab/nbformat": ^4.1.6 - "@jupyterlab/statedb": ^4.1.6 - "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/nbformat": ^4.1.7 + "@jupyterlab/statedb": ^4.1.7 + "@jupyterlab/testing": ^4.1.7 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -4667,15 +4667,15 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/shortcuts-extension@^4.1.6, @jupyterlab/shortcuts-extension@workspace:packages/shortcuts-extension, @jupyterlab/shortcuts-extension@~4.1.6": +"@jupyterlab/shortcuts-extension@^4.1.7, @jupyterlab/shortcuts-extension@workspace:packages/shortcuts-extension, @jupyterlab/shortcuts-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/shortcuts-extension@workspace:packages/shortcuts-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -4692,11 +4692,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/statedb@^4.1.6, @jupyterlab/statedb@workspace:packages/statedb": +"@jupyterlab/statedb@^4.1.7, @jupyterlab/statedb@workspace:packages/statedb": version: 0.0.0-use.local resolution: "@jupyterlab/statedb@workspace:packages/statedb" dependencies: - "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/testing": ^4.1.7 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -4710,15 +4710,15 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/statusbar-extension@^4.1.6, @jupyterlab/statusbar-extension@workspace:packages/statusbar-extension, @jupyterlab/statusbar-extension@~4.1.6": +"@jupyterlab/statusbar-extension@^4.1.7, @jupyterlab/statusbar-extension@workspace:packages/statusbar-extension, @jupyterlab/statusbar-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/statusbar-extension@workspace:packages/statusbar-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/statusbar": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/statusbar": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 "@types/react": ^18.0.26 "@types/react-dom": ^18.0.9 rimraf: ~5.0.5 @@ -4727,12 +4727,12 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/statusbar@^4.1.6, @jupyterlab/statusbar@workspace:packages/statusbar": +"@jupyterlab/statusbar@^4.1.7, @jupyterlab/statusbar@workspace:packages/statusbar": version: 0.0.0-use.local resolution: "@jupyterlab/statusbar@workspace:packages/statusbar" dependencies: - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -4751,27 +4751,27 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/template@workspace:buildutils/template" dependencies: - "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/testing": ^4.1.7 "@types/jest": ^29.2.0 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/terminal-extension@^4.1.6, @jupyterlab/terminal-extension@workspace:packages/terminal-extension, @jupyterlab/terminal-extension@~4.1.6": +"@jupyterlab/terminal-extension@^4.1.7, @jupyterlab/terminal-extension@workspace:packages/terminal-extension, @jupyterlab/terminal-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/terminal-extension@workspace:packages/terminal-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/launcher": ^4.1.6 - "@jupyterlab/mainmenu": ^4.1.6 - "@jupyterlab/running": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/terminal": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/launcher": ^4.1.7 + "@jupyterlab/mainmenu": ^4.1.7 + "@jupyterlab/running": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/terminal": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/widgets": ^2.3.1 "@types/webpack-env": ^1.18.0 rimraf: ~5.0.5 @@ -4780,14 +4780,14 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/terminal@^4.1.6, @jupyterlab/terminal@workspace:packages/terminal": +"@jupyterlab/terminal@^4.1.7, @jupyterlab/terminal@workspace:packages/terminal": version: 0.0.0-use.local resolution: "@jupyterlab/terminal@workspace:packages/terminal" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/domutils": ^2.0.1 "@lumino/messaging": ^2.0.1 @@ -4806,13 +4806,13 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/testing@^4.1.6, @jupyterlab/testing@workspace:packages/testing": +"@jupyterlab/testing@^4.1.7, @jupyterlab/testing@workspace:packages/testing": version: 0.0.0-use.local resolution: "@jupyterlab/testing@workspace:packages/testing" dependencies: "@babel/core": ^7.10.2 "@babel/preset-env": ^7.10.2 - "@jupyterlab/coreutils": ^6.1.6 + "@jupyterlab/coreutils": ^6.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@types/jest": ^29.2.0 @@ -4835,74 +4835,74 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/testutils@^4.1.6, @jupyterlab/testutils@workspace:testutils": +"@jupyterlab/testutils@^4.1.7, @jupyterlab/testutils@workspace:testutils": version: 0.0.0-use.local resolution: "@jupyterlab/testutils@workspace:testutils" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/notebook": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/notebook": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/testing": ^4.1.7 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/theme-dark-extension@^4.1.6, @jupyterlab/theme-dark-extension@workspace:packages/theme-dark-extension, @jupyterlab/theme-dark-extension@~4.1.6": +"@jupyterlab/theme-dark-extension@^4.1.7, @jupyterlab/theme-dark-extension@workspace:packages/theme-dark-extension, @jupyterlab/theme-dark-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/theme-dark-extension@workspace:packages/theme-dark-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/translation": ^4.1.7 rimraf: ~5.0.5 typedoc: ~0.24.7 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/theme-light-extension@^4.1.6, @jupyterlab/theme-light-extension@workspace:packages/theme-light-extension, @jupyterlab/theme-light-extension@~4.1.6": +"@jupyterlab/theme-light-extension@^4.1.7, @jupyterlab/theme-light-extension@workspace:packages/theme-light-extension, @jupyterlab/theme-light-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/theme-light-extension@workspace:packages/theme-light-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/translation": ^4.1.7 rimraf: ~5.0.5 typedoc: ~0.24.7 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/toc-extension@^6.1.6, @jupyterlab/toc-extension@workspace:packages/toc-extension, @jupyterlab/toc-extension@~6.1.6": +"@jupyterlab/toc-extension@^6.1.7, @jupyterlab/toc-extension@workspace:packages/toc-extension, @jupyterlab/toc-extension@~6.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/toc-extension@workspace:packages/toc-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/toc": ^6.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/toc": ^6.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 rimraf: ~5.0.5 typedoc: ~0.24.7 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/toc@^6.1.6, @jupyterlab/toc@workspace:packages/toc": +"@jupyterlab/toc@^6.1.7, @jupyterlab/toc@workspace:packages/toc": version: 0.0.0-use.local resolution: "@jupyterlab/toc@workspace:packages/toc" dependencies: - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/docregistry": ^4.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 @@ -4918,20 +4918,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/tooltip-extension@^4.1.6, @jupyterlab/tooltip-extension@workspace:packages/tooltip-extension, @jupyterlab/tooltip-extension@~4.1.6": +"@jupyterlab/tooltip-extension@^4.1.7, @jupyterlab/tooltip-extension@workspace:packages/tooltip-extension, @jupyterlab/tooltip-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/tooltip-extension@workspace:packages/tooltip-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/console": ^4.1.6 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/fileeditor": ^4.1.6 - "@jupyterlab/notebook": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/tooltip": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/console": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/fileeditor": ^4.1.7 + "@jupyterlab/notebook": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/tooltip": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 @@ -4941,14 +4941,14 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/tooltip@^4.1.6, @jupyterlab/tooltip@workspace:packages/tooltip": +"@jupyterlab/tooltip@^4.1.7, @jupyterlab/tooltip@workspace:packages/tooltip": version: 0.0.0-use.local resolution: "@jupyterlab/tooltip@workspace:packages/tooltip" dependencies: - "@jupyterlab/codeeditor": ^4.1.6 - "@jupyterlab/rendermime": ^4.1.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/codeeditor": ^4.1.7 + "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/ui-components": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.1 @@ -4958,29 +4958,29 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/translation-extension@^4.1.6, @jupyterlab/translation-extension@workspace:packages/translation-extension, @jupyterlab/translation-extension@~4.1.6": +"@jupyterlab/translation-extension@^4.1.7, @jupyterlab/translation-extension@workspace:packages/translation-extension, @jupyterlab/translation-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/translation-extension@workspace:packages/translation-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/apputils": ^4.2.6 - "@jupyterlab/mainmenu": ^4.1.6 - "@jupyterlab/settingregistry": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/apputils": ^4.2.7 + "@jupyterlab/mainmenu": ^4.1.7 + "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/translation@^4.1.6, @jupyterlab/translation@workspace:packages/translation": +"@jupyterlab/translation@^4.1.7, @jupyterlab/translation@workspace:packages/translation": version: 0.0.0-use.local resolution: "@jupyterlab/translation@workspace:packages/translation" dependencies: - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 - "@jupyterlab/services": ^7.1.6 - "@jupyterlab/statedb": ^4.1.6 - "@jupyterlab/testing": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/services": ^7.1.7 + "@jupyterlab/statedb": ^4.1.7 + "@jupyterlab/testing": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@types/jest": ^29.2.0 jest: ^29.2.0 @@ -4989,29 +4989,29 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/ui-components-extension@^4.1.6, @jupyterlab/ui-components-extension@workspace:packages/ui-components-extension, @jupyterlab/ui-components-extension@~4.1.6": +"@jupyterlab/ui-components-extension@^4.1.7, @jupyterlab/ui-components-extension@workspace:packages/ui-components-extension, @jupyterlab/ui-components-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/ui-components-extension@workspace:packages/ui-components-extension" dependencies: - "@jupyterlab/application": ^4.1.6 - "@jupyterlab/ui-components": ^4.1.6 + "@jupyterlab/application": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.7 rimraf: ~5.0.5 typedoc: ~0.24.7 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/ui-components@^4.1.6, @jupyterlab/ui-components@workspace:packages/ui-components": +"@jupyterlab/ui-components@^4.1.7, @jupyterlab/ui-components@workspace:packages/ui-components": version: 0.0.0-use.local resolution: "@jupyterlab/ui-components@workspace:packages/ui-components" dependencies: "@jupyter/react-components": ^0.15.2 "@jupyter/web-components": ^0.15.2 - "@jupyterlab/coreutils": ^6.1.6 - "@jupyterlab/observables": ^5.1.6 - "@jupyterlab/rendermime-interfaces": ^3.9.6 - "@jupyterlab/testing": ^4.1.6 - "@jupyterlab/translation": ^4.1.6 + "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/observables": ^5.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/translation": ^4.1.7 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -5039,12 +5039,12 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/vega5-extension@^4.1.6, @jupyterlab/vega5-extension@workspace:packages/vega5-extension, @jupyterlab/vega5-extension@~4.1.6": +"@jupyterlab/vega5-extension@^4.1.7, @jupyterlab/vega5-extension@workspace:packages/vega5-extension, @jupyterlab/vega5-extension@~4.1.7": version: 0.0.0-use.local resolution: "@jupyterlab/vega5-extension@workspace:packages/vega5-extension" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.9.6 - "@jupyterlab/testutils": ^4.1.6 + "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/testutils": ^4.1.7 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 "@types/jest": ^29.2.0 @@ -16285,7 +16285,7 @@ __metadata: version: 0.0.0-use.local resolution: "node-example@workspace:packages/services/examples/node" dependencies: - "@jupyterlab/services": ^7.1.6 + "@jupyterlab/services": ^7.1.7 rimraf: ~5.0.5 ws: ^8.11.0 languageName: unknown From 29d68c7b501a82e291f1576274320c7282992c7e Mon Sep 17 00:00:00 2001 From: "Lumberbot (aka Jack)" <39504233+meeseeksmachine@users.noreply.github.com> Date: Fri, 26 Apr 2024 14:12:31 +0200 Subject: [PATCH 5/7] Backport PR #16245: Install Firefox from brew on Mac on CI (#16247) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: MichaƂ Krassowski <5832902+krassowski@users.noreply.github.com> --- .github/workflows/macostests.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/macostests.yml b/.github/workflows/macostests.yml index 40bf2514e132..9ce6cf83154f 100644 --- a/.github/workflows/macostests.yml +++ b/.github/workflows/macostests.yml @@ -26,7 +26,10 @@ jobs: uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 - name: Setup firefox - uses: browser-actions/setup-firefox@latest + run: brew install --cask firefox + + - name: Setup cairo and pango + run: brew install cairo pango - name: Install dependencies env: From 65a59b279fa22a2f5fb2eeec5bdafe91771b3cd8 Mon Sep 17 00:00:00 2001 From: "Lumberbot (aka Jack)" <39504233+meeseeksmachine@users.noreply.github.com> Date: Fri, 26 Apr 2024 18:27:18 +0200 Subject: [PATCH 6/7] Backport PR #16251: Consider higher levels when toggling plugin (#16253) Co-authored-by: Divyansh Choudhary --- jupyterlab/commands.py | 17 +++++++++++------ scripts/ci_script.sh | 5 +++++ 2 files changed, 16 insertions(+), 6 deletions(-) diff --git a/jupyterlab/commands.py b/jupyterlab/commands.py index 61a4ac82694e..8d6444e3faf8 100644 --- a/jupyterlab/commands.py +++ b/jupyterlab/commands.py @@ -1132,24 +1132,29 @@ def toggle_extension(self, extension, value, level="sys_prefix"): self.logger.info("Extension locked at a higher level, cannot toggle status") return False - page_config = get_static_page_config( + complete_page_config = get_static_page_config( + app_settings_dir=app_settings_dir, logger=self.logger, level="all" + ) + + level_page_config = get_static_page_config( app_settings_dir=app_settings_dir, logger=self.logger, level=level ) - disabled = page_config.get("disabledExtensions", {}) + disabled = complete_page_config.get("disabledExtensions", {}) + disabled_at_level = level_page_config.get("disabledExtensions", {}) did_something = False is_disabled = disabled.get(extension, False) if value and not is_disabled: - disabled[extension] = True + disabled_at_level[extension] = True did_something = True elif not value and is_disabled: - disabled[extension] = False + disabled_at_level[extension] = False did_something = True if did_something: - page_config["disabledExtensions"] = disabled - write_page_config(page_config, level=level) + level_page_config["disabledExtensions"] = disabled_at_level + write_page_config(level_page_config, level=level) return did_something def _maybe_mirror_disabled_in_locked(self, level="sys_prefix"): diff --git a/scripts/ci_script.sh b/scripts/ci_script.sh index 5ce2647ffe1e..01f43ebd1ff1 100755 --- a/scripts/ci_script.sh +++ b/scripts/ci_script.sh @@ -215,10 +215,15 @@ if [[ $GROUP == usage ]]; then ! cat labextensions | grep -L "@jupyterlab/console-extension (all plugins)" # Test locking at higher level + jupyter labextension enable @jupyterlab/notebook-extension --level sys_prefix jupyter labextension lock @jupyterlab/notebook-extension --level sys_prefix jupyter labextension disable @jupyterlab/notebook-extension --level user 2>&1 | grep "Extension locked at a higher level, cannot toggle status" jupyter labextension unlock @jupyterlab/notebook-extension --level sys_prefix jupyter labextension disable @jupyterlab/notebook-extension --level user + USER_PAGE_CONFIG=$(jupyter --config-dir)/labconfig/page_config.json + cat $USER_PAGE_CONFIG | grep "\"@jupyterlab/notebook-extension\": true" + jupyter labextension enable @jupyterlab/notebook-extension --level user + cat $USER_PAGE_CONFIG | grep "\"@jupyterlab/notebook-extension\": false" # Test with a prebuilt install jupyter labextension develop extension --debug From a181314219dd78d421bb3e2810442ac18c80d155 Mon Sep 17 00:00:00 2001 From: krassowski Date: Fri, 26 Apr 2024 20:22:07 +0000 Subject: [PATCH 7/7] [ci skip] Publish 4.1.8 SHA256 hashes: jupyterlab-4.1.8-py3-none-any.whl: c3baf3a2f91f89d110ed5786cd18672b9a357129d4e389d2a0dead15e11a4d2c jupyterlab-4.1.8.tar.gz: 3384aded8680e7ce504fd63b8bb89a39df21c9c7694d9e7dc4a68742cdb30f9b jupyterlab-application-4.1.8.tgz: 3055f61f7b3c6df5d871898c06827a81f310405f6204c51364603d55280849b8 jupyterlab-application-extension-4.1.8.tgz: c407232a8aea0296a40635bd7960862773b9008237d8e86d846987789e5bcf66 jupyterlab-apputils-4.2.8.tgz: 976dbc38096297cb937eceba23ccd4ff3b4168bbd0474e4dcd8a82529fa9ff0b jupyterlab-apputils-extension-4.1.8.tgz: 548a87386aaa22784fb395c7c9d9a409ca111561272fa00fdaed7f0a04af13ff jupyterlab-attachments-4.1.8.tgz: d9de7d7fe392094ccbb3fcaa0c466cf30b5c073bcef3f838f1846bb54b76a99a jupyterlab-builder-4.1.8.tgz: 47891fabc0f12e97e90b712ec4f2bc49efe29b84ecb3aaddba3f17d160f185d1 jupyterlab-buildutils-4.1.8.tgz: 960a81d06662cde1bc367c31c193404894472279f80d6c504af12d4039e7dd88 jupyterlab-cell-toolbar-4.1.8.tgz: f92732c30e3c356de166a6089dcc05bd4547c2ab50e0dda786c138cde8b95606 jupyterlab-cell-toolbar-extension-4.1.8.tgz: f131fa3f65ec18f1047e7d8d668bd52060d628bae06be38c692d54240ece10dd jupyterlab-cells-4.1.8.tgz: 448c66ab9e8a4f88518d0049b0ba64423d0452b3a29c614a42705d8daefbc237 jupyterlab-celltags-extension-4.1.8.tgz: 5f86a4cfc3f2ee64a66df5f93294bd812b55ca871380d1354d3715f074c37c92 jupyterlab-codeeditor-4.1.8.tgz: 8ba5e4e79c5aca89bc6bafdb1fc5413f9e69f29f7597ad55cb8abf0e766c84af jupyterlab-codemirror-4.1.8.tgz: 21155d065bdaace89740c966aa58cf132fd09e4caf4ec1fa00cf450c9053b259 jupyterlab-codemirror-extension-4.1.8.tgz: 01fcd3365838635b0a554cb39e1d4814211b71821190555db00e93db68d11ae9 jupyterlab-completer-4.1.8.tgz: 1ec56c06bc7109327e3f9a2898df972325c2e8d599cb0de81abef8e3a25fb357 jupyterlab-completer-extension-4.1.8.tgz: 96473f430be9e49f386165819cc231d3621c75c44fcaade024193e654937a8ad jupyterlab-console-4.1.8.tgz: ca2d911e12b73163e65b37e9a3153fee0cd7ae70fdcd1453e6ba0410b7961083 jupyterlab-console-extension-4.1.8.tgz: 43e41c69eca4a797a5e6cd572c09983e01db1faf462346cf35936c8bf8e657c2 jupyterlab-coreutils-6.1.8.tgz: d9adda8544a61baf410458b22fb47a1b604bc0e0393032fbe6c71f919ad21820 jupyterlab-csvviewer-4.1.8.tgz: 57c3b17955d8f371549192788c16381f9689f466d9e79b58e95ac9ceceb315e0 jupyterlab-csvviewer-extension-4.1.8.tgz: 722dc0714ed60471dd8e1b44dc95c835ef2e5b16d59f78f5136413b29cf9f5b5 jupyterlab-debugger-4.1.8.tgz: 8a238cfb33106711a66d1a98e4c58e271f1bf2a87d839677bef0cd9fe901f80f jupyterlab-debugger-extension-4.1.8.tgz: 84c60b038e79e1c82b316b0d7d415aff2cba2b265f2f6947e76dde4688565aae jupyterlab-docmanager-4.1.8.tgz: 6b105c9f8c3c9402ea0d6c42e9f5ec7d5357fbfb5a790964b5f6f3b3dcdc70de jupyterlab-docmanager-extension-4.1.8.tgz: 664cc6117d94a11118c73c9dbabb879f1200f76548f8fb7bd448fb559fa3e31a jupyterlab-docregistry-4.1.8.tgz: 0588f6088fee2a78c8f9ccb6303454859c43da472da24850c1b924447752f2be jupyterlab-documentsearch-4.1.8.tgz: 9704635dd06847340e0355c5b45a918ee085992b09e09feae47459d0449472a9 jupyterlab-documentsearch-extension-4.1.8.tgz: e36b0b11b9acbf986e8a342d7ba1f8ceef24db5ce4646b240fdedf78a6b9ef27 jupyterlab-extensionmanager-4.1.8.tgz: 090a55ddb4434c228da7d26a58d4dd4382a0f77064479b65207d94b8d3951532 jupyterlab-extensionmanager-extension-4.1.8.tgz: 5b813497454310cebd76edcf68ffaa7f4f7aa3a66b65eabe9addcb77959e2f11 jupyterlab-filebrowser-4.1.8.tgz: 00c79f23bc4c21885bdcd5cea3b22ed3781f163bf5c88589c62abecd27cc885e jupyterlab-filebrowser-extension-4.1.8.tgz: e76077143578765e1f401b6aa073cf477222f404ffc306cab72544815e00bacd jupyterlab-fileeditor-4.1.8.tgz: 35e90bed542e9fb9408df719df651e9cb67df12aaa9b141f7c28ea5d06c0ec7c jupyterlab-fileeditor-extension-4.1.8.tgz: 9da318be1431d6f0815bfd66eaaf1b7709d4509ec376ce99c4f20bc4cf434e98 jupyterlab-galata-5.1.8.tgz: e5e5496f305eb89feff84590a0bfb2a03e7c422f07730da9188b9b20c3b0beef jupyterlab-help-extension-4.1.8.tgz: 06e8471967113aab06dae8b522c4d70f4e6b7a84ba6b55bdadfcbcbb8a182e52 jupyterlab-htmlviewer-4.1.8.tgz: 6bd3c3082c0d3f8195378cad2c160f46782fd94c385137a021a1766ce26d7757 jupyterlab-htmlviewer-extension-4.1.8.tgz: 0b1dbf9aae6aab36d34d5375b4f83e3f2cd4a6480a5443e5ece74582fc86524a jupyterlab-hub-extension-4.1.8.tgz: c5dd09df5e0ab1512196a2f4895073b3fd4f78e8f917c0dd2b6477fce1a156cc jupyterlab-imageviewer-4.1.8.tgz: beb8a19f1b7fc09d3a415a1c4057387af43fa15d4c63922703073e26da6fdbb3 jupyterlab-imageviewer-extension-4.1.8.tgz: feefa390ca59534c7f3c26c291e1135a0de8116a1664c9f8fb5662cdb46e4874 jupyterlab-inspector-4.1.8.tgz: f7c749b613797ae3cc043cc3c8a8a8bd9f8a74e3713d0ed87719fe128c09e0e1 jupyterlab-inspector-extension-4.1.8.tgz: e2982a87c9e8fd9b0ee249f38732f03cfd700a03d99f9bf451c1a6fc758f1617 jupyterlab-javascript-extension-4.1.8.tgz: ad77a78945d7af58ec5a858da78d15db4f95e43ec0e4cbf6e41f9842d80b0c67 jupyterlab-json-extension-4.1.8.tgz: 55c31be03bf0e3a818271593613cc919f51b1c75f5d1ede68c62207ce37cb960 jupyterlab-launcher-4.1.8.tgz: 9efd7499f92c88ec646a10d9b27fd547f632272b691cab26d7e4edb864fc71b1 jupyterlab-launcher-extension-4.1.8.tgz: 1d28903d7fd5393b834f91f756e1a87c05cdf652315bae44f81dc4d86a98c343 jupyterlab-logconsole-4.1.8.tgz: b7a1a40a587a3299dd6e9b2b955045f884b9beaa9d04b98a4da8512cd4551d79 jupyterlab-logconsole-extension-4.1.8.tgz: b92286b6bd0837ee457a7f219881702ebf35c81dc12322e860099e1a6a6afa3e jupyterlab-lsp-4.1.8.tgz: 8ca6dd78f1cc2cfb02012fa8e77345098aba1fc8de6a5f35cd765c537877ae2d jupyterlab-lsp-extension-4.1.8.tgz: 039cbdb27b8a335021729ccaeb230ee07ad1c026bce05816622dda528cd4cf5e jupyterlab-mainmenu-4.1.8.tgz: 41d751a0de1cb9fc3b6b338ef3a10eee2328568b190f842c8d51e9cad77851c8 jupyterlab-mainmenu-extension-4.1.8.tgz: 03318354f60a7aa2b4fdde6770e0d993d981da4d29d7a2f422b390cfdb3be6ed jupyterlab-markdownviewer-4.1.8.tgz: d5cb2572dd4acc04ffdd5f73895ad47e188437eadd7837ce6fed8a9041f1c854 jupyterlab-markdownviewer-extension-4.1.8.tgz: 2022d9ebcf8b95b25237474c009a8442729799be3f2473ea02f6572773055216 jupyterlab-markedparser-extension-4.1.8.tgz: bb81bf8e541dcf9cd45682ed1eac29261b931bda1ae3c6c6f91a231b0ad31a6a jupyterlab-mathjax-extension-4.1.8.tgz: 731f291a12b7f580c7c2d1cf9546e007aedcff408d006e68745be8421e27d995 jupyterlab-mermaid-4.1.8.tgz: d1faae4c538d7424cd6d2d60f8986991cb666217e3df6233e4ac56085e52b476 jupyterlab-mermaid-extension-4.1.8.tgz: c0f795c920b31580711774fd2d483d91d3938aeada5bcacd195dc819e19d453d jupyterlab-metadataform-4.1.8.tgz: b172a05228d7f96f5c7be9d5cd26886b33984877ac5a8e2e88ac1928932e639b jupyterlab-metadataform-extension-4.1.8.tgz: 0960ee3b24cc6e07439f86deccf1cb4dfdc02b40ee160213eecb8c753f71a7dd jupyterlab-metapackage-4.1.8.tgz: 6fdba85d7f8e4a337b18a97b83c99d19c412a69603434e00b04c7404ed3b8352 jupyterlab-nbconvert-css-4.1.8.tgz: ee92b7eac6f9748cc3007ed35ac84c051de575c73b4fc9de1303aaabbed07d2f jupyterlab-nbformat-4.1.8.tgz: af01194ccb7e174d8716e38bc0f0ae3f598e855d35be0fafaa1b4c65ec9cca17 jupyterlab-notebook-4.1.8.tgz: ea7e75726781be47d969be7dd6a628813710e5916f2814c794777f55c237e7f9 jupyterlab-notebook-extension-4.1.8.tgz: 2b6ee3a8d8363b93d331a291d4c10e99ee74efa5c0fa5b447c2ae25acf3424d5 jupyterlab-observables-5.1.8.tgz: 5dd745f1461366dd636d03422c4a62a5ba95bd6a2680397a331eb222adb6566d jupyterlab-outputarea-4.1.8.tgz: 2d0a93066e6f1b75bb532e6c34fe8ef7235cb2348950b86fbcd261c59858281c jupyterlab-pdf-extension-4.1.8.tgz: 6e4cbe65c6e8b6477e8574b4cd8384f39497e010fff10dbff4b40594ba7795f6 jupyterlab-pluginmanager-4.1.8.tgz: 552be5b5db99a639013b171eb1ca7e216afd54790b307bd68229921f8b5286e0 jupyterlab-pluginmanager-extension-4.1.8.tgz: 56049d2776a89c07c03dca3845ca0f550d3f6f84e240b993699234f249d15e2f jupyterlab-property-inspector-4.1.8.tgz: 5c3edc58b1c268682ca952927c6c99d4d27d44771133be335856bed7539d0d9c jupyterlab-rendermime-4.1.8.tgz: abc9638e3a8ae638bb61503b5b76b14544d017d5f0120aea059f56f0cce1735a jupyterlab-rendermime-extension-4.1.8.tgz: 1123c505e06611c90fa8701aed79c397738cc9614577d5acd8aa847f25a66e12 jupyterlab-rendermime-interfaces-3.9.8.tgz: caf8e0b172417673b89ea8bd857daa45b3f8cddeb19fab1e99c8533eec00e5ff jupyterlab-running-4.1.8.tgz: f825005a7464fb24ee80928391b3a9143140d0f4f2e1751461718cc89b68650e jupyterlab-running-extension-4.1.8.tgz: 9635a1d75fa73be46d667d5b94a2f2660140455b7da97fd13fd1dee0b34943a0 jupyterlab-services-7.1.8.tgz: 93672a850ac7a32150f8b84ace8ff320fabff02b16afe81b5b26f0d474800baa jupyterlab-settingeditor-4.1.8.tgz: b224b6d3f9cc268d2edcf9134e257afac632ad368185201e9835b895fd324bd9 jupyterlab-settingeditor-extension-4.1.8.tgz: a593d738fc1b60fe066084f2e4efbbf58340941e740ed35a5094a976b00af551 jupyterlab-settingregistry-4.1.8.tgz: e1635e79860a480b4a2589f83a6f137ac532961c5c56b68bff93864b77d65033 jupyterlab-shortcuts-extension-4.1.8.tgz: 13e0bd0bf3f6573746e8db7d480d400810bc952ce1eed3408ccb6a1eea34c1d3 jupyterlab-statedb-4.1.8.tgz: f45d1ec7b354df906712e0e4ac9113ac6a786274af4082bd481532e95f487941 jupyterlab-statusbar-4.1.8.tgz: 12f5571c4f19edabb98de4a8a9a97be1c784b9bb90b8f16180367670f5d96959 jupyterlab-statusbar-extension-4.1.8.tgz: fc6281e596f422a3e629ffacb01df2a45a336c1939dc4bc2e4e0a35139345115 jupyterlab-template-4.1.8.tgz: e9bba405afbf297cbd7c79766b3fd8f77e521e5f41f2f9d154a699568a16f64a jupyterlab-terminal-4.1.8.tgz: 72ebc5f4d414244274a7863801b1a747a701ad19ce9728372a1f8bf25ede10ed jupyterlab-terminal-extension-4.1.8.tgz: 73d8ee5fec79886c5aadda873db083b246d53429d77fe4dbbc4fcd12b10f6865 jupyterlab-testing-4.1.8.tgz: 9471b506b0a4164c0b2a3788c4cbb847213a51db90fc3b639c0aa8f82491169a jupyterlab-testutils-4.1.8.tgz: fa6abe5d694c240dbe3e5ade00d2f83b689f91225ca788b1d04bbd606208d8ab jupyterlab-theme-dark-extension-4.1.8.tgz: bf7dfec196884834085e50541f70d27e53f8c13eccf4bea95eb00ea600c7cc37 jupyterlab-theme-light-extension-4.1.8.tgz: 425946605f564adf975c3e6f2510811d33133ca6d92a563affe73a8b0336ed60 jupyterlab-toc-6.1.8.tgz: eecac0ebf9fa7b637ab9ea2afa3dc4f0918fe32b5198dc748cf2ef3cacb211e3 jupyterlab-toc-extension-6.1.8.tgz: 23a503e4c7889ed4c9da278333e3dbce1582e0dcb0999a2f9ec14e0cd8cc817d jupyterlab-tooltip-4.1.8.tgz: e3c74b40b6e77a8cd793d2aeab7ca45a4e73af766b0751510f0088a5b5e2ac4e jupyterlab-tooltip-extension-4.1.8.tgz: d6a47a7e2deed55b3865964469c3b6150233bcb6c39f562d87034fa286a1b8f9 jupyterlab-translation-4.1.8.tgz: 247d55dd4f3f7a6b13361917f4fe2dee322e561256b2ecf00926610eb9df6fcd jupyterlab-translation-extension-4.1.8.tgz: eec89313ed6d92b624bc5153e4915d16d12478d0008fdb0db1caea04a01ec0b6 jupyterlab-ui-components-4.1.8.tgz: ae455d510ce9ff2109223cdd7b1cd692f4eef7d4e4afb579fba9da02ff692ba0 jupyterlab-ui-components-extension-4.1.8.tgz: 3520dd6e2ee965a2622d7ec61a3a53d59f17772eec99ab58c0ded1ad2296778a jupyterlab-vega5-extension-4.1.8.tgz: 06d54e7945404b3408e2fdea6fd1d11375e7635e324c75c576ffc7b1907256c8 --- .bumpversion.cfg | 2 +- CHANGELOG.md | 22 +- builder/package.json | 2 +- buildutils/package.json | 2 +- buildutils/template/package.json | 4 +- dev_mode/package.json | 294 +-- examples/app/package.json | 68 +- examples/cell/package.json | 22 +- examples/console/package.json | 18 +- examples/federated/core_package/package.json | 168 +- examples/federated/md_package/package.json | 10 +- .../federated/middle_package/package.json | 4 +- examples/federated/package.json | 2 +- examples/filebrowser/package.json | 26 +- examples/notebook/package.json | 34 +- examples/terminal/package.json | 12 +- galata/extension/package.json | 20 +- galata/package.json | 20 +- jupyterlab/_version.py | 2 +- jupyterlab/staging/package.json | 294 +-- jupyterlab/staging/yarn.lock | 2154 ++++++++--------- .../mock_packages/extension/package.json | 6 +- .../interop/consumer/package.json | 6 +- .../interop/provider/package.json | 6 +- .../mock_packages/interop/token/package.json | 2 +- packages/application-extension/package.json | 20 +- packages/application/package.json | 22 +- packages/apputils-extension/package.json | 28 +- packages/apputils/package.json | 22 +- packages/attachments/package.json | 10 +- packages/cell-toolbar-extension/package.json | 12 +- packages/cell-toolbar/package.json | 16 +- packages/cells/package.json | 34 +- packages/celltags-extension/package.json | 10 +- packages/codeeditor/package.json | 18 +- packages/codemirror-extension/package.json | 16 +- packages/codemirror/package.json | 14 +- packages/completer-extension/package.json | 12 +- packages/completer/package.json | 24 +- packages/console-extension/package.json | 26 +- packages/console/package.json | 26 +- packages/coreutils/package.json | 2 +- packages/csvviewer-extension/package.json | 20 +- packages/csvviewer/package.json | 12 +- packages/debugger-extension/package.json | 34 +- packages/debugger/package.json | 34 +- packages/docmanager-extension/package.json | 22 +- packages/docmanager/package.json | 18 +- packages/docregistry/package.json | 22 +- .../documentsearch-extension/package.json | 12 +- packages/documentsearch/package.json | 10 +- .../extensionmanager-extension/package.json | 14 +- packages/extensionmanager/package.json | 12 +- packages/filebrowser-extension/package.json | 26 +- packages/filebrowser/package.json | 22 +- packages/fileeditor-extension/package.json | 46 +- packages/fileeditor/package.json | 26 +- packages/help-extension/package.json | 16 +- packages/htmlviewer-extension/package.json | 18 +- packages/htmlviewer/package.json | 12 +- packages/hub-extension/package.json | 12 +- packages/imageviewer-extension/package.json | 12 +- packages/imageviewer/package.json | 10 +- packages/inspector-extension/package.json | 18 +- packages/inspector/package.json | 18 +- packages/javascript-extension/package.json | 6 +- packages/json-extension/package.json | 12 +- packages/launcher-extension/package.json | 14 +- packages/launcher/package.json | 8 +- packages/logconsole-extension/package.json | 20 +- packages/logconsole/package.json | 16 +- packages/lsp-extension/package.json | 16 +- packages/lsp/package.json | 18 +- packages/mainmenu-extension/package.json | 18 +- packages/mainmenu/package.json | 10 +- .../markdownviewer-extension/package.json | 18 +- packages/markdownviewer/package.json | 14 +- packages/markedparser-extension/package.json | 12 +- packages/mathjax-extension/package.json | 6 +- packages/mermaid-extension/package.json | 12 +- packages/mermaid/package.json | 8 +- packages/metadataform-extension/package.json | 14 +- packages/metadataform/package.json | 16 +- packages/metapackage/package.json | 192 +- packages/nbconvert-css/package.json | 16 +- packages/nbformat/package.json | 4 +- packages/notebook-extension/package.json | 60 +- packages/notebook/package.json | 38 +- packages/observables/package.json | 4 +- packages/outputarea/package.json | 18 +- packages/pdf-extension/package.json | 4 +- packages/pluginmanager-extension/package.json | 12 +- packages/pluginmanager/package.json | 16 +- packages/property-inspector/package.json | 8 +- packages/rendermime-extension/package.json | 12 +- packages/rendermime-interfaces/package.json | 2 +- packages/rendermime/package.json | 18 +- packages/running-extension/package.json | 18 +- packages/running/package.json | 8 +- .../services/examples/browser/package.json | 6 +- packages/services/examples/node/package.json | 4 +- .../package.json | 10 +- packages/services/package.json | 12 +- packages/settingeditor-extension/package.json | 22 +- packages/settingeditor/package.json | 22 +- packages/settingregistry/package.json | 8 +- packages/shortcuts-extension/package.json | 12 +- packages/statedb/package.json | 4 +- packages/statusbar-extension/package.json | 12 +- packages/statusbar/package.json | 6 +- packages/terminal-extension/package.json | 22 +- packages/terminal/package.json | 10 +- packages/testing/package.json | 4 +- packages/theme-dark-extension/package.json | 8 +- packages/theme-light-extension/package.json | 8 +- packages/toc-extension/package.json | 12 +- packages/toc/package.json | 20 +- packages/tooltip-extension/package.json | 22 +- packages/tooltip/package.json | 10 +- packages/translation-extension/package.json | 12 +- packages/translation/package.json | 12 +- packages/ui-components-extension/package.json | 6 +- .../simple-windowed-list/package.json | 12 +- packages/ui-components/package.json | 12 +- packages/vega5-extension/package.json | 6 +- testutils/package.json | 12 +- yarn.lock | 2142 ++++++++-------- 127 files changed, 3546 insertions(+), 3528 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f0823eb229e8..bb6c9a9cb951 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4, 1, 7, "final", 0 +current_version = 4, 1, 8, "final", 0 commit = False tag = False parse = (?P\d+)\,\ (?P\d+)\,\ (?P\d+)\,\ \"(?P\S+)\"\,\ (?P\d+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 32b7e99a24c4..a9ba85f63890 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -266,6 +266,26 @@ To ease code migration to JupyterLab 4, developers should review the [migration +## 4.1.8 + +([Full Changelog](https://github.com/jupyterlab/jupyterlab/compare/v4.1.7...65a59b279fa22a2f5fb2eeec5bdafe91771b3cd8)) + +### Bugs fixed + +- Consider higher levels when toggling plugin [#16251](https://github.com/jupyterlab/jupyterlab/pull/16251) ([@divyansshhh](https://github.com/divyansshhh)) + +### Maintenance and upkeep improvements + +- Install Firefox from brew on Mac on CI [#16245](https://github.com/jupyterlab/jupyterlab/pull/16245) ([@krassowski](https://github.com/krassowski)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyterlab/jupyterlab/graphs/contributors?from=2024-04-26&to=2024-04-26&type=c)) + +[@github-actions](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Agithub-actions+updated%3A2024-04-26..2024-04-26&type=Issues) | [@jupyterlab-probot](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ajupyterlab-probot+updated%3A2024-04-26..2024-04-26&type=Issues) | [@krassowski](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Akrassowski+updated%3A2024-04-26..2024-04-26&type=Issues) | [@meeseeksmachine](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ameeseeksmachine+updated%3A2024-04-26..2024-04-26&type=Issues) | [@welcome](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Awelcome+updated%3A2024-04-26..2024-04-26&type=Issues) + + + ## 4.1.7 ([Full Changelog](https://github.com/jupyterlab/jupyterlab/compare/v4.1.6...afb36c7a7486b8828862601f30848b2b09f573fd)) @@ -291,8 +311,6 @@ To ease code migration to JupyterLab 4, developers should review the [migration [@andrii-i](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Aandrii-i+updated%3A2024-04-08..2024-04-26&type=Issues) | [@bollwyvl](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Abollwyvl+updated%3A2024-04-08..2024-04-26&type=Issues) | [@davidbrochart](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Adavidbrochart+updated%3A2024-04-08..2024-04-26&type=Issues) | [@echarles](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Aecharles+updated%3A2024-04-08..2024-04-26&type=Issues) | [@fcollonval](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Afcollonval+updated%3A2024-04-08..2024-04-26&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Agithub-actions+updated%3A2024-04-08..2024-04-26&type=Issues) | [@JasonWeill](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3AJasonWeill+updated%3A2024-04-08..2024-04-26&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ajtpio+updated%3A2024-04-08..2024-04-26&type=Issues) | [@jupyterlab-probot](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ajupyterlab-probot+updated%3A2024-04-08..2024-04-26&type=Issues) | [@kolibril13](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Akolibril13+updated%3A2024-04-08..2024-04-26&type=Issues) | [@krassowski](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Akrassowski+updated%3A2024-04-08..2024-04-26&type=Issues) | [@lumberbot-app](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Alumberbot-app+updated%3A2024-04-08..2024-04-26&type=Issues) | [@meeseeksmachine](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ameeseeksmachine+updated%3A2024-04-08..2024-04-26&type=Issues) | [@welcome](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Awelcome+updated%3A2024-04-08..2024-04-26&type=Issues) - - ## 4.1.6 ([Full Changelog](https://github.com/jupyterlab/jupyterlab/compare/v4.1.5...5edd1a2f71250022b1f2660235fe41b755d4cc8a)) diff --git a/builder/package.json b/builder/package.json index 24c25f494bfa..d741c864ce3b 100644 --- a/builder/package.json +++ b/builder/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/builder", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Extension Builder", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { diff --git a/buildutils/package.json b/buildutils/package.json index 793945c32831..e21e7942284a 100644 --- a/buildutils/package.json +++ b/buildutils/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/buildutils", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Build Utilities", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { diff --git a/buildutils/template/package.json b/buildutils/template/package.json index aaa78c219196..821e637db4bd 100644 --- a/buildutils/template/package.json +++ b/buildutils/template/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/template", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Package Template", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,7 +37,7 @@ "watch": "tsc -b --watch" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "rimraf": "~5.0.5", "typescript": "~5.1.6" diff --git a/dev_mode/package.json b/dev_mode/package.json index e93fdac9706e..0e041fa6d1a9 100644 --- a/dev_mode/package.json +++ b/dev_mode/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/application-top", - "version": "4.1.7", + "version": "4.1.8", "private": true, "license": "BSD-3-Clause", "scripts": { @@ -23,101 +23,101 @@ "@jupyter/react-components": "~0.13.3", "@jupyter/web-components": "~0.13.3", "@jupyter/ydoc": "~1.1.1", - "@jupyterlab/application": "~4.1.7", - "@jupyterlab/application-extension": "~4.1.7", - "@jupyterlab/apputils": "~4.2.7", - "@jupyterlab/apputils-extension": "~4.1.7", - "@jupyterlab/attachments": "~4.1.7", - "@jupyterlab/cell-toolbar": "~4.1.7", - "@jupyterlab/cell-toolbar-extension": "~4.1.7", - "@jupyterlab/cells": "~4.1.7", - "@jupyterlab/celltags-extension": "~4.1.7", - "@jupyterlab/codeeditor": "~4.1.7", - "@jupyterlab/codemirror": "~4.1.7", - "@jupyterlab/codemirror-extension": "~4.1.7", - "@jupyterlab/completer": "~4.1.7", - "@jupyterlab/completer-extension": "~4.1.7", - "@jupyterlab/console": "~4.1.7", - "@jupyterlab/console-extension": "~4.1.7", - "@jupyterlab/coreutils": "~6.1.7", - "@jupyterlab/csvviewer": "~4.1.7", - "@jupyterlab/csvviewer-extension": "~4.1.7", - "@jupyterlab/debugger": "~4.1.7", - "@jupyterlab/debugger-extension": "~4.1.7", - "@jupyterlab/docmanager": "~4.1.7", - "@jupyterlab/docmanager-extension": "~4.1.7", - "@jupyterlab/docregistry": "~4.1.7", - "@jupyterlab/documentsearch": "~4.1.7", - "@jupyterlab/documentsearch-extension": "~4.1.7", - "@jupyterlab/extensionmanager": "~4.1.7", - "@jupyterlab/extensionmanager-extension": "~4.1.7", - "@jupyterlab/filebrowser": "~4.1.7", - "@jupyterlab/filebrowser-extension": "~4.1.7", - "@jupyterlab/fileeditor": "~4.1.7", - "@jupyterlab/fileeditor-extension": "~4.1.7", - "@jupyterlab/help-extension": "~4.1.7", - "@jupyterlab/htmlviewer": "~4.1.7", - "@jupyterlab/htmlviewer-extension": "~4.1.7", - "@jupyterlab/hub-extension": "~4.1.7", - "@jupyterlab/imageviewer": "~4.1.7", - "@jupyterlab/imageviewer-extension": "~4.1.7", - "@jupyterlab/inspector": "~4.1.7", - "@jupyterlab/inspector-extension": "~4.1.7", - "@jupyterlab/javascript-extension": "~4.1.7", - "@jupyterlab/json-extension": "~4.1.7", - "@jupyterlab/launcher": "~4.1.7", - "@jupyterlab/launcher-extension": "~4.1.7", - "@jupyterlab/logconsole": "~4.1.7", - "@jupyterlab/logconsole-extension": "~4.1.7", - "@jupyterlab/lsp": "~4.1.7", - "@jupyterlab/lsp-extension": "~4.1.7", - "@jupyterlab/mainmenu": "~4.1.7", - "@jupyterlab/mainmenu-extension": "~4.1.7", - "@jupyterlab/markdownviewer": "~4.1.7", - "@jupyterlab/markdownviewer-extension": "~4.1.7", - "@jupyterlab/markedparser-extension": "~4.1.7", - "@jupyterlab/mathjax-extension": "~4.1.7", - "@jupyterlab/mermaid": "~4.1.7", - "@jupyterlab/mermaid-extension": "~4.1.7", - "@jupyterlab/metadataform": "~4.1.7", - "@jupyterlab/metadataform-extension": "~4.1.7", - "@jupyterlab/metapackage": "~4.1.7", - "@jupyterlab/nbconvert-css": "~4.1.7", - "@jupyterlab/nbformat": "~4.1.7", - "@jupyterlab/notebook": "~4.1.7", - "@jupyterlab/notebook-extension": "~4.1.7", - "@jupyterlab/observables": "~5.1.7", - "@jupyterlab/outputarea": "~4.1.7", - "@jupyterlab/pdf-extension": "~4.1.7", - "@jupyterlab/pluginmanager": "~4.1.7", - "@jupyterlab/pluginmanager-extension": "~4.1.7", - "@jupyterlab/property-inspector": "~4.1.7", - "@jupyterlab/rendermime": "~4.1.7", - "@jupyterlab/rendermime-extension": "~4.1.7", - "@jupyterlab/rendermime-interfaces": "~3.9.7", - "@jupyterlab/running": "~4.1.7", - "@jupyterlab/running-extension": "~4.1.7", - "@jupyterlab/services": "~7.1.7", - "@jupyterlab/settingeditor": "~4.1.7", - "@jupyterlab/settingeditor-extension": "~4.1.7", - "@jupyterlab/settingregistry": "~4.1.7", - "@jupyterlab/shortcuts-extension": "~4.1.7", - "@jupyterlab/statedb": "~4.1.7", - "@jupyterlab/statusbar": "~4.1.7", - "@jupyterlab/statusbar-extension": "~4.1.7", - "@jupyterlab/terminal": "~4.1.7", - "@jupyterlab/terminal-extension": "~4.1.7", - "@jupyterlab/theme-dark-extension": "~4.1.7", - "@jupyterlab/theme-light-extension": "~4.1.7", - "@jupyterlab/toc": "~6.1.7", - "@jupyterlab/toc-extension": "~6.1.7", - "@jupyterlab/tooltip": "~4.1.7", - "@jupyterlab/tooltip-extension": "~4.1.7", - "@jupyterlab/translation": "~4.1.7", - "@jupyterlab/translation-extension": "~4.1.7", - "@jupyterlab/ui-components": "~4.1.7", - "@jupyterlab/ui-components-extension": "~4.1.7", - "@jupyterlab/vega5-extension": "~4.1.7", + "@jupyterlab/application": "~4.1.8", + "@jupyterlab/application-extension": "~4.1.8", + "@jupyterlab/apputils": "~4.2.8", + "@jupyterlab/apputils-extension": "~4.1.8", + "@jupyterlab/attachments": "~4.1.8", + "@jupyterlab/cell-toolbar": "~4.1.8", + "@jupyterlab/cell-toolbar-extension": "~4.1.8", + "@jupyterlab/cells": "~4.1.8", + "@jupyterlab/celltags-extension": "~4.1.8", + "@jupyterlab/codeeditor": "~4.1.8", + "@jupyterlab/codemirror": "~4.1.8", + "@jupyterlab/codemirror-extension": "~4.1.8", + "@jupyterlab/completer": "~4.1.8", + "@jupyterlab/completer-extension": "~4.1.8", + "@jupyterlab/console": "~4.1.8", + "@jupyterlab/console-extension": "~4.1.8", + "@jupyterlab/coreutils": "~6.1.8", + "@jupyterlab/csvviewer": "~4.1.8", + "@jupyterlab/csvviewer-extension": "~4.1.8", + "@jupyterlab/debugger": "~4.1.8", + "@jupyterlab/debugger-extension": "~4.1.8", + "@jupyterlab/docmanager": "~4.1.8", + "@jupyterlab/docmanager-extension": "~4.1.8", + "@jupyterlab/docregistry": "~4.1.8", + "@jupyterlab/documentsearch": "~4.1.8", + "@jupyterlab/documentsearch-extension": "~4.1.8", + "@jupyterlab/extensionmanager": "~4.1.8", + "@jupyterlab/extensionmanager-extension": "~4.1.8", + "@jupyterlab/filebrowser": "~4.1.8", + "@jupyterlab/filebrowser-extension": "~4.1.8", + "@jupyterlab/fileeditor": "~4.1.8", + "@jupyterlab/fileeditor-extension": "~4.1.8", + "@jupyterlab/help-extension": "~4.1.8", + "@jupyterlab/htmlviewer": "~4.1.8", + "@jupyterlab/htmlviewer-extension": "~4.1.8", + "@jupyterlab/hub-extension": "~4.1.8", + "@jupyterlab/imageviewer": "~4.1.8", + "@jupyterlab/imageviewer-extension": "~4.1.8", + "@jupyterlab/inspector": "~4.1.8", + "@jupyterlab/inspector-extension": "~4.1.8", + "@jupyterlab/javascript-extension": "~4.1.8", + "@jupyterlab/json-extension": "~4.1.8", + "@jupyterlab/launcher": "~4.1.8", + "@jupyterlab/launcher-extension": "~4.1.8", + "@jupyterlab/logconsole": "~4.1.8", + "@jupyterlab/logconsole-extension": "~4.1.8", + "@jupyterlab/lsp": "~4.1.8", + "@jupyterlab/lsp-extension": "~4.1.8", + "@jupyterlab/mainmenu": "~4.1.8", + "@jupyterlab/mainmenu-extension": "~4.1.8", + "@jupyterlab/markdownviewer": "~4.1.8", + "@jupyterlab/markdownviewer-extension": "~4.1.8", + "@jupyterlab/markedparser-extension": "~4.1.8", + "@jupyterlab/mathjax-extension": "~4.1.8", + "@jupyterlab/mermaid": "~4.1.8", + "@jupyterlab/mermaid-extension": "~4.1.8", + "@jupyterlab/metadataform": "~4.1.8", + "@jupyterlab/metadataform-extension": "~4.1.8", + "@jupyterlab/metapackage": "~4.1.8", + "@jupyterlab/nbconvert-css": "~4.1.8", + "@jupyterlab/nbformat": "~4.1.8", + "@jupyterlab/notebook": "~4.1.8", + "@jupyterlab/notebook-extension": "~4.1.8", + "@jupyterlab/observables": "~5.1.8", + "@jupyterlab/outputarea": "~4.1.8", + "@jupyterlab/pdf-extension": "~4.1.8", + "@jupyterlab/pluginmanager": "~4.1.8", + "@jupyterlab/pluginmanager-extension": "~4.1.8", + "@jupyterlab/property-inspector": "~4.1.8", + "@jupyterlab/rendermime": "~4.1.8", + "@jupyterlab/rendermime-extension": "~4.1.8", + "@jupyterlab/rendermime-interfaces": "~3.9.8", + "@jupyterlab/running": "~4.1.8", + "@jupyterlab/running-extension": "~4.1.8", + "@jupyterlab/services": "~7.1.8", + "@jupyterlab/settingeditor": "~4.1.8", + "@jupyterlab/settingeditor-extension": "~4.1.8", + "@jupyterlab/settingregistry": "~4.1.8", + "@jupyterlab/shortcuts-extension": "~4.1.8", + "@jupyterlab/statedb": "~4.1.8", + "@jupyterlab/statusbar": "~4.1.8", + "@jupyterlab/statusbar-extension": "~4.1.8", + "@jupyterlab/terminal": "~4.1.8", + "@jupyterlab/terminal-extension": "~4.1.8", + "@jupyterlab/theme-dark-extension": "~4.1.8", + "@jupyterlab/theme-light-extension": "~4.1.8", + "@jupyterlab/toc": "~6.1.8", + "@jupyterlab/toc-extension": "~6.1.8", + "@jupyterlab/tooltip": "~4.1.8", + "@jupyterlab/tooltip-extension": "~4.1.8", + "@jupyterlab/translation": "~4.1.8", + "@jupyterlab/translation-extension": "~4.1.8", + "@jupyterlab/ui-components": "~4.1.8", + "@jupyterlab/ui-components-extension": "~4.1.8", + "@jupyterlab/vega5-extension": "~4.1.8", "@lezer/common": "^1.0.0", "@lezer/highlight": "^1.0.0", "@lumino/algorithm": "^2.0.0", @@ -142,58 +142,58 @@ "yjs": "^13.5.40" }, "dependencies": { - "@jupyterlab/application": "~4.1.7", - "@jupyterlab/application-extension": "~4.1.7", - "@jupyterlab/apputils-extension": "~4.1.7", - "@jupyterlab/cell-toolbar-extension": "~4.1.7", - "@jupyterlab/celltags-extension": "~4.1.7", - "@jupyterlab/codemirror-extension": "~4.1.7", - "@jupyterlab/completer-extension": "~4.1.7", - "@jupyterlab/console-extension": "~4.1.7", - "@jupyterlab/coreutils": "~6.1.7", - "@jupyterlab/csvviewer-extension": "~4.1.7", - "@jupyterlab/debugger-extension": "~4.1.7", - "@jupyterlab/docmanager-extension": "~4.1.7", - "@jupyterlab/documentsearch-extension": "~4.1.7", - "@jupyterlab/extensionmanager-extension": "~4.1.7", - "@jupyterlab/filebrowser-extension": "~4.1.7", - "@jupyterlab/fileeditor-extension": "~4.1.7", - "@jupyterlab/help-extension": "~4.1.7", - "@jupyterlab/htmlviewer-extension": "~4.1.7", - "@jupyterlab/hub-extension": "~4.1.7", - "@jupyterlab/imageviewer-extension": "~4.1.7", - "@jupyterlab/inspector-extension": "~4.1.7", - "@jupyterlab/javascript-extension": "~4.1.7", - "@jupyterlab/json-extension": "~4.1.7", - "@jupyterlab/launcher-extension": "~4.1.7", - "@jupyterlab/logconsole-extension": "~4.1.7", - "@jupyterlab/lsp-extension": "~4.1.7", - "@jupyterlab/mainmenu-extension": "~4.1.7", - "@jupyterlab/markdownviewer-extension": "~4.1.7", - "@jupyterlab/markedparser-extension": "~4.1.7", - "@jupyterlab/mathjax-extension": "~4.1.7", - "@jupyterlab/mermaid-extension": "~4.1.7", - "@jupyterlab/metadataform-extension": "~4.1.7", - "@jupyterlab/notebook-extension": "~4.1.7", - "@jupyterlab/pdf-extension": "~4.1.7", - "@jupyterlab/pluginmanager-extension": "~4.1.7", - "@jupyterlab/rendermime-extension": "~4.1.7", - "@jupyterlab/running-extension": "~4.1.7", - "@jupyterlab/settingeditor-extension": "~4.1.7", - "@jupyterlab/shortcuts-extension": "~4.1.7", - "@jupyterlab/statusbar-extension": "~4.1.7", - "@jupyterlab/terminal-extension": "~4.1.7", - "@jupyterlab/theme-dark-extension": "~4.1.7", - "@jupyterlab/theme-light-extension": "~4.1.7", - "@jupyterlab/toc-extension": "~6.1.7", - "@jupyterlab/tooltip-extension": "~4.1.7", - "@jupyterlab/translation-extension": "~4.1.7", - "@jupyterlab/ui-components-extension": "~4.1.7", - "@jupyterlab/vega5-extension": "~4.1.7" + "@jupyterlab/application": "~4.1.8", + "@jupyterlab/application-extension": "~4.1.8", + "@jupyterlab/apputils-extension": "~4.1.8", + "@jupyterlab/cell-toolbar-extension": "~4.1.8", + "@jupyterlab/celltags-extension": "~4.1.8", + "@jupyterlab/codemirror-extension": "~4.1.8", + "@jupyterlab/completer-extension": "~4.1.8", + "@jupyterlab/console-extension": "~4.1.8", + "@jupyterlab/coreutils": "~6.1.8", + "@jupyterlab/csvviewer-extension": "~4.1.8", + "@jupyterlab/debugger-extension": "~4.1.8", + "@jupyterlab/docmanager-extension": "~4.1.8", + "@jupyterlab/documentsearch-extension": "~4.1.8", + "@jupyterlab/extensionmanager-extension": "~4.1.8", + "@jupyterlab/filebrowser-extension": "~4.1.8", + "@jupyterlab/fileeditor-extension": "~4.1.8", + "@jupyterlab/help-extension": "~4.1.8", + "@jupyterlab/htmlviewer-extension": "~4.1.8", + "@jupyterlab/hub-extension": "~4.1.8", + "@jupyterlab/imageviewer-extension": "~4.1.8", + "@jupyterlab/inspector-extension": "~4.1.8", + "@jupyterlab/javascript-extension": "~4.1.8", + "@jupyterlab/json-extension": "~4.1.8", + "@jupyterlab/launcher-extension": "~4.1.8", + "@jupyterlab/logconsole-extension": "~4.1.8", + "@jupyterlab/lsp-extension": "~4.1.8", + "@jupyterlab/mainmenu-extension": "~4.1.8", + "@jupyterlab/markdownviewer-extension": "~4.1.8", + "@jupyterlab/markedparser-extension": "~4.1.8", + "@jupyterlab/mathjax-extension": "~4.1.8", + "@jupyterlab/mermaid-extension": "~4.1.8", + "@jupyterlab/metadataform-extension": "~4.1.8", + "@jupyterlab/notebook-extension": "~4.1.8", + "@jupyterlab/pdf-extension": "~4.1.8", + "@jupyterlab/pluginmanager-extension": "~4.1.8", + "@jupyterlab/rendermime-extension": "~4.1.8", + "@jupyterlab/running-extension": "~4.1.8", + "@jupyterlab/settingeditor-extension": "~4.1.8", + "@jupyterlab/shortcuts-extension": "~4.1.8", + "@jupyterlab/statusbar-extension": "~4.1.8", + "@jupyterlab/terminal-extension": "~4.1.8", + "@jupyterlab/theme-dark-extension": "~4.1.8", + "@jupyterlab/theme-light-extension": "~4.1.8", + "@jupyterlab/toc-extension": "~6.1.8", + "@jupyterlab/tooltip-extension": "~4.1.8", + "@jupyterlab/translation-extension": "~4.1.8", + "@jupyterlab/ui-components-extension": "~4.1.8", + "@jupyterlab/vega5-extension": "~4.1.8" }, "devDependencies": { - "@jupyterlab/builder": "^4.1.7", - "@jupyterlab/buildutils": "^4.1.7", + "@jupyterlab/builder": "^4.1.8", + "@jupyterlab/buildutils": "^4.1.8", "chokidar": "^3.4.0", "css-loader": "^6.7.1", "duplicate-package-checker-webpack-plugin": "^3.0.0", @@ -222,7 +222,7 @@ }, "jupyterlab": { "name": "JupyterLab", - "version": "4.1.7", + "version": "4.1.8", "extensions": { "@jupyterlab/application-extension": "", "@jupyterlab/apputils-extension": "", diff --git a/examples/app/package.json b/examples/app/package.json index c0015f45473b..49d1b17531fb 100644 --- a/examples/app/package.json +++ b/examples/app/package.json @@ -1,45 +1,45 @@ { "name": "@jupyterlab/example-app", - "version": "4.1.7", + "version": "4.1.8", "private": true, "scripts": { "build": "webpack", "clean": "rimraf build" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/application-extension": "^4.1.7", - "@jupyterlab/apputils-extension": "^4.1.7", - "@jupyterlab/builder": "^4.1.7", - "@jupyterlab/celltags-extension": "^4.1.7", - "@jupyterlab/codemirror-extension": "^4.1.7", - "@jupyterlab/completer-extension": "^4.1.7", - "@jupyterlab/console-extension": "^4.1.7", - "@jupyterlab/csvviewer-extension": "^4.1.7", - "@jupyterlab/docmanager-extension": "^4.1.7", - "@jupyterlab/filebrowser-extension": "^4.1.7", - "@jupyterlab/fileeditor-extension": "^4.1.7", - "@jupyterlab/help-extension": "^4.1.7", - "@jupyterlab/imageviewer-extension": "^4.1.7", - "@jupyterlab/inspector-extension": "^4.1.7", - "@jupyterlab/launcher-extension": "^4.1.7", - "@jupyterlab/mainmenu-extension": "^4.1.7", - "@jupyterlab/markdownviewer-extension": "^4.1.7", - "@jupyterlab/mathjax-extension": "^4.1.7", - "@jupyterlab/metadataform-extension": "^4.1.7", - "@jupyterlab/notebook-extension": "^4.1.7", - "@jupyterlab/rendermime-extension": "^4.1.7", - "@jupyterlab/running-extension": "^4.1.7", - "@jupyterlab/settingeditor-extension": "^4.1.7", - "@jupyterlab/shortcuts-extension": "^4.1.7", - "@jupyterlab/statusbar-extension": "^4.1.7", - "@jupyterlab/theme-dark-extension": "^4.1.7", - "@jupyterlab/theme-light-extension": "^4.1.7", - "@jupyterlab/toc-extension": "^6.1.7", - "@jupyterlab/tooltip-extension": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/translation-extension": "^4.1.7", - "@jupyterlab/ui-components-extension": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/application-extension": "^4.1.8", + "@jupyterlab/apputils-extension": "^4.1.8", + "@jupyterlab/builder": "^4.1.8", + "@jupyterlab/celltags-extension": "^4.1.8", + "@jupyterlab/codemirror-extension": "^4.1.8", + "@jupyterlab/completer-extension": "^4.1.8", + "@jupyterlab/console-extension": "^4.1.8", + "@jupyterlab/csvviewer-extension": "^4.1.8", + "@jupyterlab/docmanager-extension": "^4.1.8", + "@jupyterlab/filebrowser-extension": "^4.1.8", + "@jupyterlab/fileeditor-extension": "^4.1.8", + "@jupyterlab/help-extension": "^4.1.8", + "@jupyterlab/imageviewer-extension": "^4.1.8", + "@jupyterlab/inspector-extension": "^4.1.8", + "@jupyterlab/launcher-extension": "^4.1.8", + "@jupyterlab/mainmenu-extension": "^4.1.8", + "@jupyterlab/markdownviewer-extension": "^4.1.8", + "@jupyterlab/mathjax-extension": "^4.1.8", + "@jupyterlab/metadataform-extension": "^4.1.8", + "@jupyterlab/notebook-extension": "^4.1.8", + "@jupyterlab/rendermime-extension": "^4.1.8", + "@jupyterlab/running-extension": "^4.1.8", + "@jupyterlab/settingeditor-extension": "^4.1.8", + "@jupyterlab/shortcuts-extension": "^4.1.8", + "@jupyterlab/statusbar-extension": "^4.1.8", + "@jupyterlab/theme-dark-extension": "^4.1.8", + "@jupyterlab/theme-light-extension": "^4.1.8", + "@jupyterlab/toc-extension": "^6.1.8", + "@jupyterlab/tooltip-extension": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/translation-extension": "^4.1.8", + "@jupyterlab/ui-components-extension": "^4.1.8", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/examples/cell/package.json b/examples/cell/package.json index bafd9ff9ad64..17c23d513d1f 100644 --- a/examples/cell/package.json +++ b/examples/cell/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-cell", - "version": "4.1.7", + "version": "4.1.8", "private": true, "scripts": { "build": "tsc -p src && webpack", @@ -9,16 +9,16 @@ "dependencies": { "@jupyter/web-components": "^0.15.2", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/cells": "^4.1.7", - "@jupyterlab/codemirror": "^4.1.7", - "@jupyterlab/completer": "^4.1.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/rendermime": "^4.1.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/theme-light-extension": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/cells": "^4.1.8", + "@jupyterlab/codemirror": "^4.1.8", + "@jupyterlab/completer": "^4.1.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/rendermime": "^4.1.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/theme-light-extension": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/commands": "^2.2.0", "@lumino/widgets": "^2.3.1" }, diff --git a/examples/console/package.json b/examples/console/package.json index 8a42c826df85..91c4a9c16f0e 100644 --- a/examples/console/package.json +++ b/examples/console/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-console", - "version": "4.1.7", + "version": "4.1.8", "private": true, "scripts": { "build": "tsc -p src && webpack", @@ -9,14 +9,14 @@ "dependencies": { "@jupyter/web-components": "^0.15.2", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/codemirror": "^4.1.7", - "@jupyterlab/console": "^4.1.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/rendermime": "^4.1.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/theme-light-extension": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/codemirror": "^4.1.8", + "@jupyterlab/console": "^4.1.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/rendermime": "^4.1.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/theme-light-extension": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", "@lumino/commands": "^2.2.0", "@lumino/widgets": "^2.3.1" }, diff --git a/examples/federated/core_package/package.json b/examples/federated/core_package/package.json index a831ecebb0ae..b0a2b1987b2c 100644 --- a/examples/federated/core_package/package.json +++ b/examples/federated/core_package/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-federated-core", - "version": "3.1.7", + "version": "3.1.8", "private": true, "scripts": { "build": "npm run clean && webpack", @@ -8,77 +8,77 @@ "watch": "npm run clean && webpack --watch" }, "resolutions": { - "@jupyterlab/application": "~4.1.7", - "@jupyterlab/application-extension": "~4.1.7", + "@jupyterlab/application": "~4.1.8", + "@jupyterlab/application-extension": "~4.1.8", "@jupyterlab/apputils": "~4.1.0-alpha.0", - "@jupyterlab/apputils-extension": "~4.1.7", + "@jupyterlab/apputils-extension": "~4.1.8", "@jupyterlab/attachments": "~4.1.0-alpha.0", "@jupyterlab/cells": "~4.1.0-alpha.0", - "@jupyterlab/celltags-extension": "~4.1.7", + "@jupyterlab/celltags-extension": "~4.1.8", "@jupyterlab/codeeditor": "~4.1.0-alpha.0", - "@jupyterlab/codemirror-extension": "~4.1.7", + "@jupyterlab/codemirror-extension": "~4.1.8", "@jupyterlab/completer": "~4.1.0-alpha.0", - "@jupyterlab/completer-extension": "~4.1.7", + "@jupyterlab/completer-extension": "~4.1.8", "@jupyterlab/console": "~4.1.0-alpha.0", - "@jupyterlab/console-extension": "~4.1.7", - "@jupyterlab/coreutils": "~6.1.7", - "@jupyterlab/csvviewer-extension": "~4.1.7", + "@jupyterlab/console-extension": "~4.1.8", + "@jupyterlab/coreutils": "~6.1.8", + "@jupyterlab/csvviewer-extension": "~4.1.8", "@jupyterlab/debugger": "~4.1.0-alpha.0", - "@jupyterlab/debugger-extension": "~4.1.7", + "@jupyterlab/debugger-extension": "~4.1.8", "@jupyterlab/docmanager": "~4.1.0-alpha.0", - "@jupyterlab/docmanager-extension": "~4.1.7", + "@jupyterlab/docmanager-extension": "~4.1.8", "@jupyterlab/documentsearch": "~4.1.0-alpha.0", - "@jupyterlab/documentsearch-extension": "~4.1.7", + "@jupyterlab/documentsearch-extension": "~4.1.8", "@jupyterlab/extensionmanager": "~4.1.0-alpha.0", - "@jupyterlab/extensionmanager-extension": "~4.1.7", + "@jupyterlab/extensionmanager-extension": "~4.1.8", "@jupyterlab/filebrowser": "~4.1.0-alpha.0", - "@jupyterlab/filebrowser-extension": "~4.1.7", + "@jupyterlab/filebrowser-extension": "~4.1.8", "@jupyterlab/fileeditor": "~4.1.0-alpha.0", - "@jupyterlab/fileeditor-extension": "~4.1.7", - "@jupyterlab/help-extension": "~4.1.7", - "@jupyterlab/htmlviewer-extension": "~4.1.7", - "@jupyterlab/hub-extension": "~4.1.7", + "@jupyterlab/fileeditor-extension": "~4.1.8", + "@jupyterlab/help-extension": "~4.1.8", + "@jupyterlab/htmlviewer-extension": "~4.1.8", + "@jupyterlab/hub-extension": "~4.1.8", "@jupyterlab/imageviewer": "~4.1.0-alpha.0", - "@jupyterlab/imageviewer-extension": "~4.1.7", + "@jupyterlab/imageviewer-extension": "~4.1.8", "@jupyterlab/inspector": "~4.1.0-alpha.0", - "@jupyterlab/inspector-extension": "~4.1.7", - "@jupyterlab/javascript-extension": "~4.1.7", - "@jupyterlab/json-extension": "~4.1.7", + "@jupyterlab/inspector-extension": "~4.1.8", + "@jupyterlab/javascript-extension": "~4.1.8", + "@jupyterlab/json-extension": "~4.1.8", "@jupyterlab/launcher": "~4.1.0-alpha.0", - "@jupyterlab/launcher-extension": "~4.1.7", + "@jupyterlab/launcher-extension": "~4.1.8", "@jupyterlab/logconsole": "~4.1.0-alpha.0", - "@jupyterlab/logconsole-extension": "~4.1.7", + "@jupyterlab/logconsole-extension": "~4.1.8", "@jupyterlab/lsp": "~4.1.0-alpha.0", - "@jupyterlab/lsp-extension": "~4.1.7", + "@jupyterlab/lsp-extension": "~4.1.8", "@jupyterlab/mainmenu": "~4.1.0-alpha.0", - "@jupyterlab/mainmenu-extension": "~4.1.7", + "@jupyterlab/mainmenu-extension": "~4.1.8", "@jupyterlab/markedparser-extension": "~4.1.0-alpha.0", - "@jupyterlab/mathjax-extension": "~4.1.7", + "@jupyterlab/mathjax-extension": "~4.1.8", "@jupyterlab/metadataform": "~4.1.0-alpha.0", - "@jupyterlab/metadataform-extension": "~4.1.7", + "@jupyterlab/metadataform-extension": "~4.1.8", "@jupyterlab/notebook": "~4.1.0-alpha.0", - "@jupyterlab/notebook-extension": "~4.1.7", - "@jupyterlab/pdf-extension": "~4.1.7", + "@jupyterlab/notebook-extension": "~4.1.8", + "@jupyterlab/pdf-extension": "~4.1.8", "@jupyterlab/rendermime": "~4.1.0-alpha.0", - "@jupyterlab/rendermime-extension": "~4.1.7", + "@jupyterlab/rendermime-extension": "~4.1.8", "@jupyterlab/rendermime-interfaces": "^3.9.0-alpha.1", "@jupyterlab/services": "~7.1.0-alpha.0", "@jupyterlab/settingeditor": "~4.1.0-alpha.0", - "@jupyterlab/settingeditor-extension": "~4.1.7", + "@jupyterlab/settingeditor-extension": "~4.1.8", "@jupyterlab/settingregistry": "~4.1.0-alpha.0", - "@jupyterlab/shortcuts-extension": "~4.1.7", + "@jupyterlab/shortcuts-extension": "~4.1.8", "@jupyterlab/statedb": "~4.1.0-alpha.0", "@jupyterlab/statusbar": "~4.1.0-alpha.0", - "@jupyterlab/statusbar-extension": "~4.1.7", - "@jupyterlab/theme-light-extension": "~4.1.7", - "@jupyterlab/toc-extension": "~6.1.7", + "@jupyterlab/statusbar-extension": "~4.1.8", + "@jupyterlab/theme-light-extension": "~4.1.8", + "@jupyterlab/toc-extension": "~6.1.8", "@jupyterlab/tooltip": "~4.1.0-alpha.0", - "@jupyterlab/tooltip-extension": "~4.1.7", - "@jupyterlab/translation": "~4.1.7", - "@jupyterlab/translation-extension": "~4.1.7", + "@jupyterlab/tooltip-extension": "~4.1.8", + "@jupyterlab/translation": "~4.1.8", + "@jupyterlab/translation-extension": "~4.1.8", "@jupyterlab/ui-components": "~4.1.0-alpha.0", - "@jupyterlab/ui-components-extension": "~4.1.7", - "@jupyterlab/vega5-extension": "~4.1.7", + "@jupyterlab/ui-components-extension": "~4.1.8", + "@jupyterlab/vega5-extension": "~4.1.8", "@lumino/algorithm": "^2.0.0", "@lumino/application": "^2.3.0-alpha.0", "@lumino/commands": "^2.0.1", @@ -96,50 +96,50 @@ "yjs": "^13.5.40" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/application-extension": "^4.1.7", - "@jupyterlab/apputils-extension": "^4.1.7", - "@jupyterlab/celltags-extension": "^4.1.7", - "@jupyterlab/codemirror-extension": "^4.1.7", - "@jupyterlab/completer-extension": "^4.1.7", - "@jupyterlab/console-extension": "^4.1.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/csvviewer-extension": "^4.1.7", - "@jupyterlab/debugger-extension": "^4.1.7", - "@jupyterlab/docmanager-extension": "^4.1.7", - "@jupyterlab/documentsearch-extension": "^4.1.7", - "@jupyterlab/extensionmanager-extension": "^4.1.7", - "@jupyterlab/filebrowser-extension": "^4.1.7", - "@jupyterlab/fileeditor-extension": "^4.1.7", - "@jupyterlab/help-extension": "^4.1.7", - "@jupyterlab/htmlviewer-extension": "^4.1.7", - "@jupyterlab/hub-extension": "^4.1.7", - "@jupyterlab/imageviewer-extension": "^4.1.7", - "@jupyterlab/inspector-extension": "^4.1.7", - "@jupyterlab/javascript-extension": "^4.1.7", - "@jupyterlab/json-extension": "^4.1.7", - "@jupyterlab/launcher-extension": "^4.1.7", - "@jupyterlab/logconsole-extension": "^4.1.7", - "@jupyterlab/lsp-extension": "^4.1.7", - "@jupyterlab/mainmenu-extension": "^4.1.7", - "@jupyterlab/mathjax-extension": "^4.1.7", - "@jupyterlab/metadataform-extension": "^4.1.7", - "@jupyterlab/notebook-extension": "^4.1.7", - "@jupyterlab/pdf-extension": "^4.1.7", - "@jupyterlab/rendermime-extension": "^4.1.7", - "@jupyterlab/settingeditor-extension": "^4.1.7", - "@jupyterlab/shortcuts-extension": "^4.1.7", - "@jupyterlab/statusbar-extension": "^4.1.7", - "@jupyterlab/theme-light-extension": "^4.1.7", - "@jupyterlab/toc-extension": "^6.1.7", - "@jupyterlab/tooltip-extension": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/translation-extension": "^4.1.7", - "@jupyterlab/ui-components-extension": "^4.1.7", - "@jupyterlab/vega5-extension": "^4.1.7" + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/application-extension": "^4.1.8", + "@jupyterlab/apputils-extension": "^4.1.8", + "@jupyterlab/celltags-extension": "^4.1.8", + "@jupyterlab/codemirror-extension": "^4.1.8", + "@jupyterlab/completer-extension": "^4.1.8", + "@jupyterlab/console-extension": "^4.1.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/csvviewer-extension": "^4.1.8", + "@jupyterlab/debugger-extension": "^4.1.8", + "@jupyterlab/docmanager-extension": "^4.1.8", + "@jupyterlab/documentsearch-extension": "^4.1.8", + "@jupyterlab/extensionmanager-extension": "^4.1.8", + "@jupyterlab/filebrowser-extension": "^4.1.8", + "@jupyterlab/fileeditor-extension": "^4.1.8", + "@jupyterlab/help-extension": "^4.1.8", + "@jupyterlab/htmlviewer-extension": "^4.1.8", + "@jupyterlab/hub-extension": "^4.1.8", + "@jupyterlab/imageviewer-extension": "^4.1.8", + "@jupyterlab/inspector-extension": "^4.1.8", + "@jupyterlab/javascript-extension": "^4.1.8", + "@jupyterlab/json-extension": "^4.1.8", + "@jupyterlab/launcher-extension": "^4.1.8", + "@jupyterlab/logconsole-extension": "^4.1.8", + "@jupyterlab/lsp-extension": "^4.1.8", + "@jupyterlab/mainmenu-extension": "^4.1.8", + "@jupyterlab/mathjax-extension": "^4.1.8", + "@jupyterlab/metadataform-extension": "^4.1.8", + "@jupyterlab/notebook-extension": "^4.1.8", + "@jupyterlab/pdf-extension": "^4.1.8", + "@jupyterlab/rendermime-extension": "^4.1.8", + "@jupyterlab/settingeditor-extension": "^4.1.8", + "@jupyterlab/shortcuts-extension": "^4.1.8", + "@jupyterlab/statusbar-extension": "^4.1.8", + "@jupyterlab/theme-light-extension": "^4.1.8", + "@jupyterlab/toc-extension": "^6.1.8", + "@jupyterlab/tooltip-extension": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/translation-extension": "^4.1.8", + "@jupyterlab/ui-components-extension": "^4.1.8", + "@jupyterlab/vega5-extension": "^4.1.8" }, "devDependencies": { - "@jupyterlab/builder": "^4.1.7", + "@jupyterlab/builder": "^4.1.8", "copy-webpack-plugin": "^11.0.0", "css-loader": "^6.7.1", "fs-extra": "^10.1.0", diff --git a/examples/federated/md_package/package.json b/examples/federated/md_package/package.json index 3da0842e89a6..6f324baf576d 100644 --- a/examples/federated/md_package/package.json +++ b/examples/federated/md_package/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-federated-md", - "version": "3.1.7", + "version": "3.1.8", "private": true, "main": "./index.js", "scripts": { @@ -8,13 +8,13 @@ "clean": "rimraf ../labextensions/@jupyterlab/example-federated-md" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/example-federated-middle": "^3.0.10", - "@jupyterlab/markdownviewer-extension": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/example-federated-middle": "^3.0.11", + "@jupyterlab/markdownviewer-extension": "^4.1.8", "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/builder": "^4.1.7", + "@jupyterlab/builder": "^4.1.8", "rimraf": "~5.0.5" }, "jupyterlab": { diff --git a/examples/federated/middle_package/package.json b/examples/federated/middle_package/package.json index 10ab79a9357e..922aff973e46 100644 --- a/examples/federated/middle_package/package.json +++ b/examples/federated/middle_package/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-federated-middle", - "version": "3.0.10", + "version": "3.0.11", "private": true, "scripts": { "build": "npm run clean && build-labextension --core-path ../core_package .", @@ -10,7 +10,7 @@ "@lumino/coreutils": "^2.1.2" }, "devDependencies": { - "@jupyterlab/builder": "^4.1.7", + "@jupyterlab/builder": "^4.1.8", "rimraf": "~5.0.5" }, "publishConfig": { diff --git a/examples/federated/package.json b/examples/federated/package.json index da902eb06f5a..37cf4fc4254f 100644 --- a/examples/federated/package.json +++ b/examples/federated/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-federated", - "version": "3.1.7", + "version": "3.1.8", "private": true, "scripts": { "build": "npm run build:core && npm run build:middle && npm run build:md", diff --git a/examples/filebrowser/package.json b/examples/filebrowser/package.json index ebeb9e4b739a..3c02a001a668 100644 --- a/examples/filebrowser/package.json +++ b/examples/filebrowser/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-filebrowser", - "version": "4.1.7", + "version": "4.1.8", "private": true, "scripts": { "build": "tsc -p src && webpack", @@ -8,18 +8,18 @@ }, "dependencies": { "@jupyter/web-components": "^0.15.2", - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/codemirror": "^4.1.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/docmanager": "^4.1.7", - "@jupyterlab/docregistry": "^4.1.7", - "@jupyterlab/filebrowser": "^4.1.7", - "@jupyterlab/fileeditor": "^4.1.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/theme-light-extension": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/codemirror": "^4.1.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/docmanager": "^4.1.8", + "@jupyterlab/docregistry": "^4.1.8", + "@jupyterlab/filebrowser": "^4.1.8", + "@jupyterlab/fileeditor": "^4.1.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/theme-light-extension": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/commands": "^2.2.0", "@lumino/widgets": "^2.3.1" }, diff --git a/examples/notebook/package.json b/examples/notebook/package.json index 70c7121c4b89..936858c88961 100644 --- a/examples/notebook/package.json +++ b/examples/notebook/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-notebook", - "version": "4.1.7", + "version": "4.1.8", "private": true, "scripts": { "build": "tsc -p src && webpack", @@ -9,22 +9,22 @@ "dependencies": { "@jupyter/web-components": "^0.15.2", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/codemirror": "^4.1.7", - "@jupyterlab/completer": "^4.1.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/docmanager": "^4.1.7", - "@jupyterlab/docregistry": "^4.1.7", - "@jupyterlab/documentsearch": "^4.1.7", - "@jupyterlab/markedparser-extension": "^4.1.7", - "@jupyterlab/mathjax-extension": "^4.1.7", - "@jupyterlab/notebook": "^4.1.7", - "@jupyterlab/rendermime": "^4.1.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/theme-light-extension": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/codemirror": "^4.1.8", + "@jupyterlab/completer": "^4.1.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/docmanager": "^4.1.8", + "@jupyterlab/docregistry": "^4.1.8", + "@jupyterlab/documentsearch": "^4.1.8", + "@jupyterlab/markedparser-extension": "^4.1.8", + "@jupyterlab/mathjax-extension": "^4.1.8", + "@jupyterlab/notebook": "^4.1.8", + "@jupyterlab/rendermime": "^4.1.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/theme-light-extension": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/commands": "^2.2.0", "@lumino/widgets": "^2.3.1" }, diff --git a/examples/terminal/package.json b/examples/terminal/package.json index 0a1c9f565f84..5e0d28337139 100644 --- a/examples/terminal/package.json +++ b/examples/terminal/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-terminal", - "version": "4.1.7", + "version": "4.1.8", "private": true, "scripts": { "build": "tsc -p src && webpack", @@ -8,11 +8,11 @@ }, "dependencies": { "@jupyter/web-components": "^0.15.2", - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/terminal": "^4.1.7", - "@jupyterlab/theme-light-extension": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/terminal": "^4.1.8", + "@jupyterlab/theme-light-extension": "^4.1.8", "@lumino/widgets": "^2.3.1" }, "devDependencies": { diff --git a/galata/extension/package.json b/galata/extension/package.json index 521e0206c9ce..d1c3f0b8debb 100644 --- a/galata/extension/package.json +++ b/galata/extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/galata-extension", - "version": "5.1.7", + "version": "5.1.8", "private": true, "description": "JupyterLab UI Testing Framework Extension.", "keywords": [ @@ -32,20 +32,20 @@ "clean:lib": "rimraf ../lib/extension tsconfig.tsbuildinfo" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/cells": "^4.1.7", - "@jupyterlab/debugger": "^4.1.7", - "@jupyterlab/docmanager": "^4.1.7", - "@jupyterlab/nbformat": "^4.1.7", - "@jupyterlab/notebook": "^4.1.7", - "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/cells": "^4.1.8", + "@jupyterlab/debugger": "^4.1.8", + "@jupyterlab/docmanager": "^4.1.8", + "@jupyterlab/nbformat": "^4.1.8", + "@jupyterlab/notebook": "^4.1.8", + "@jupyterlab/settingregistry": "^4.1.8", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/signaling": "^2.1.2" }, "devDependencies": { - "@jupyterlab/builder": "^4.1.7", + "@jupyterlab/builder": "^4.1.8", "rimraf": "~5.0.5", "typescript": "~5.1.6" }, diff --git a/galata/package.json b/galata/package.json index c0c1a89f1f53..ad3c05260863 100644 --- a/galata/package.json +++ b/galata/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/galata", - "version": "5.1.7", + "version": "5.1.8", "description": "JupyterLab UI Testing Framework", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -44,15 +44,15 @@ "test:update": "jlpm test:base:update && jlpm test:benchmark:update" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/debugger": "^4.1.7", - "@jupyterlab/docmanager": "^4.1.7", - "@jupyterlab/nbformat": "^4.1.7", - "@jupyterlab/notebook": "^4.1.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/settingregistry": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/debugger": "^4.1.8", + "@jupyterlab/docmanager": "^4.1.8", + "@jupyterlab/nbformat": "^4.1.8", + "@jupyterlab/notebook": "^4.1.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/settingregistry": "^4.1.8", "@lumino/coreutils": "^2.1.2", "@playwright/test": "^1.32.2", "@stdlib/stats": "~0.0.13", diff --git a/jupyterlab/_version.py b/jupyterlab/_version.py index 5073f8d153ac..3b1ccec4317c 100644 --- a/jupyterlab/_version.py +++ b/jupyterlab/_version.py @@ -6,7 +6,7 @@ VersionInfo = namedtuple("VersionInfo", ["major", "minor", "micro", "releaselevel", "serial"]) # DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion -version_info = VersionInfo(4, 1, 7, "final", 0) +version_info = VersionInfo(4, 1, 8, "final", 0) _specifier_ = {"alpha": "a", "beta": "b", "candidate": "rc", "final": ""} diff --git a/jupyterlab/staging/package.json b/jupyterlab/staging/package.json index fc8f40e47150..785768a2c779 100644 --- a/jupyterlab/staging/package.json +++ b/jupyterlab/staging/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/application-top", - "version": "4.1.7", + "version": "4.1.8", "private": true, "license": "BSD-3-Clause", "scripts": { @@ -23,101 +23,101 @@ "@jupyter/react-components": "~0.13.3", "@jupyter/web-components": "~0.13.3", "@jupyter/ydoc": "~1.1.1", - "@jupyterlab/application": "~4.1.7", - "@jupyterlab/application-extension": "~4.1.7", - "@jupyterlab/apputils": "~4.2.7", - "@jupyterlab/apputils-extension": "~4.1.7", - "@jupyterlab/attachments": "~4.1.7", - "@jupyterlab/cell-toolbar": "~4.1.7", - "@jupyterlab/cell-toolbar-extension": "~4.1.7", - "@jupyterlab/cells": "~4.1.7", - "@jupyterlab/celltags-extension": "~4.1.7", - "@jupyterlab/codeeditor": "~4.1.7", - "@jupyterlab/codemirror": "~4.1.7", - "@jupyterlab/codemirror-extension": "~4.1.7", - "@jupyterlab/completer": "~4.1.7", - "@jupyterlab/completer-extension": "~4.1.7", - "@jupyterlab/console": "~4.1.7", - "@jupyterlab/console-extension": "~4.1.7", - "@jupyterlab/coreutils": "~6.1.7", - "@jupyterlab/csvviewer": "~4.1.7", - "@jupyterlab/csvviewer-extension": "~4.1.7", - "@jupyterlab/debugger": "~4.1.7", - "@jupyterlab/debugger-extension": "~4.1.7", - "@jupyterlab/docmanager": "~4.1.7", - "@jupyterlab/docmanager-extension": "~4.1.7", - "@jupyterlab/docregistry": "~4.1.7", - "@jupyterlab/documentsearch": "~4.1.7", - "@jupyterlab/documentsearch-extension": "~4.1.7", - "@jupyterlab/extensionmanager": "~4.1.7", - "@jupyterlab/extensionmanager-extension": "~4.1.7", - "@jupyterlab/filebrowser": "~4.1.7", - "@jupyterlab/filebrowser-extension": "~4.1.7", - "@jupyterlab/fileeditor": "~4.1.7", - "@jupyterlab/fileeditor-extension": "~4.1.7", - "@jupyterlab/help-extension": "~4.1.7", - "@jupyterlab/htmlviewer": "~4.1.7", - "@jupyterlab/htmlviewer-extension": "~4.1.7", - "@jupyterlab/hub-extension": "~4.1.7", - "@jupyterlab/imageviewer": "~4.1.7", - "@jupyterlab/imageviewer-extension": "~4.1.7", - "@jupyterlab/inspector": "~4.1.7", - "@jupyterlab/inspector-extension": "~4.1.7", - "@jupyterlab/javascript-extension": "~4.1.7", - "@jupyterlab/json-extension": "~4.1.7", - "@jupyterlab/launcher": "~4.1.7", - "@jupyterlab/launcher-extension": "~4.1.7", - "@jupyterlab/logconsole": "~4.1.7", - "@jupyterlab/logconsole-extension": "~4.1.7", - "@jupyterlab/lsp": "~4.1.7", - "@jupyterlab/lsp-extension": "~4.1.7", - "@jupyterlab/mainmenu": "~4.1.7", - "@jupyterlab/mainmenu-extension": "~4.1.7", - "@jupyterlab/markdownviewer": "~4.1.7", - "@jupyterlab/markdownviewer-extension": "~4.1.7", - "@jupyterlab/markedparser-extension": "~4.1.7", - "@jupyterlab/mathjax-extension": "~4.1.7", - "@jupyterlab/mermaid": "~4.1.7", - "@jupyterlab/mermaid-extension": "~4.1.7", - "@jupyterlab/metadataform": "~4.1.7", - "@jupyterlab/metadataform-extension": "~4.1.7", - "@jupyterlab/metapackage": "~4.1.7", - "@jupyterlab/nbconvert-css": "~4.1.7", - "@jupyterlab/nbformat": "~4.1.7", - "@jupyterlab/notebook": "~4.1.7", - "@jupyterlab/notebook-extension": "~4.1.7", - "@jupyterlab/observables": "~5.1.7", - "@jupyterlab/outputarea": "~4.1.7", - "@jupyterlab/pdf-extension": "~4.1.7", - "@jupyterlab/pluginmanager": "~4.1.7", - "@jupyterlab/pluginmanager-extension": "~4.1.7", - "@jupyterlab/property-inspector": "~4.1.7", - "@jupyterlab/rendermime": "~4.1.7", - "@jupyterlab/rendermime-extension": "~4.1.7", - "@jupyterlab/rendermime-interfaces": "~3.9.7", - "@jupyterlab/running": "~4.1.7", - "@jupyterlab/running-extension": "~4.1.7", - "@jupyterlab/services": "~7.1.7", - "@jupyterlab/settingeditor": "~4.1.7", - "@jupyterlab/settingeditor-extension": "~4.1.7", - "@jupyterlab/settingregistry": "~4.1.7", - "@jupyterlab/shortcuts-extension": "~4.1.7", - "@jupyterlab/statedb": "~4.1.7", - "@jupyterlab/statusbar": "~4.1.7", - "@jupyterlab/statusbar-extension": "~4.1.7", - "@jupyterlab/terminal": "~4.1.7", - "@jupyterlab/terminal-extension": "~4.1.7", - "@jupyterlab/theme-dark-extension": "~4.1.7", - "@jupyterlab/theme-light-extension": "~4.1.7", - "@jupyterlab/toc": "~6.1.7", - "@jupyterlab/toc-extension": "~6.1.7", - "@jupyterlab/tooltip": "~4.1.7", - "@jupyterlab/tooltip-extension": "~4.1.7", - "@jupyterlab/translation": "~4.1.7", - "@jupyterlab/translation-extension": "~4.1.7", - "@jupyterlab/ui-components": "~4.1.7", - "@jupyterlab/ui-components-extension": "~4.1.7", - "@jupyterlab/vega5-extension": "~4.1.7", + "@jupyterlab/application": "~4.1.8", + "@jupyterlab/application-extension": "~4.1.8", + "@jupyterlab/apputils": "~4.2.8", + "@jupyterlab/apputils-extension": "~4.1.8", + "@jupyterlab/attachments": "~4.1.8", + "@jupyterlab/cell-toolbar": "~4.1.8", + "@jupyterlab/cell-toolbar-extension": "~4.1.8", + "@jupyterlab/cells": "~4.1.8", + "@jupyterlab/celltags-extension": "~4.1.8", + "@jupyterlab/codeeditor": "~4.1.8", + "@jupyterlab/codemirror": "~4.1.8", + "@jupyterlab/codemirror-extension": "~4.1.8", + "@jupyterlab/completer": "~4.1.8", + "@jupyterlab/completer-extension": "~4.1.8", + "@jupyterlab/console": "~4.1.8", + "@jupyterlab/console-extension": "~4.1.8", + "@jupyterlab/coreutils": "~6.1.8", + "@jupyterlab/csvviewer": "~4.1.8", + "@jupyterlab/csvviewer-extension": "~4.1.8", + "@jupyterlab/debugger": "~4.1.8", + "@jupyterlab/debugger-extension": "~4.1.8", + "@jupyterlab/docmanager": "~4.1.8", + "@jupyterlab/docmanager-extension": "~4.1.8", + "@jupyterlab/docregistry": "~4.1.8", + "@jupyterlab/documentsearch": "~4.1.8", + "@jupyterlab/documentsearch-extension": "~4.1.8", + "@jupyterlab/extensionmanager": "~4.1.8", + "@jupyterlab/extensionmanager-extension": "~4.1.8", + "@jupyterlab/filebrowser": "~4.1.8", + "@jupyterlab/filebrowser-extension": "~4.1.8", + "@jupyterlab/fileeditor": "~4.1.8", + "@jupyterlab/fileeditor-extension": "~4.1.8", + "@jupyterlab/help-extension": "~4.1.8", + "@jupyterlab/htmlviewer": "~4.1.8", + "@jupyterlab/htmlviewer-extension": "~4.1.8", + "@jupyterlab/hub-extension": "~4.1.8", + "@jupyterlab/imageviewer": "~4.1.8", + "@jupyterlab/imageviewer-extension": "~4.1.8", + "@jupyterlab/inspector": "~4.1.8", + "@jupyterlab/inspector-extension": "~4.1.8", + "@jupyterlab/javascript-extension": "~4.1.8", + "@jupyterlab/json-extension": "~4.1.8", + "@jupyterlab/launcher": "~4.1.8", + "@jupyterlab/launcher-extension": "~4.1.8", + "@jupyterlab/logconsole": "~4.1.8", + "@jupyterlab/logconsole-extension": "~4.1.8", + "@jupyterlab/lsp": "~4.1.8", + "@jupyterlab/lsp-extension": "~4.1.8", + "@jupyterlab/mainmenu": "~4.1.8", + "@jupyterlab/mainmenu-extension": "~4.1.8", + "@jupyterlab/markdownviewer": "~4.1.8", + "@jupyterlab/markdownviewer-extension": "~4.1.8", + "@jupyterlab/markedparser-extension": "~4.1.8", + "@jupyterlab/mathjax-extension": "~4.1.8", + "@jupyterlab/mermaid": "~4.1.8", + "@jupyterlab/mermaid-extension": "~4.1.8", + "@jupyterlab/metadataform": "~4.1.8", + "@jupyterlab/metadataform-extension": "~4.1.8", + "@jupyterlab/metapackage": "~4.1.8", + "@jupyterlab/nbconvert-css": "~4.1.8", + "@jupyterlab/nbformat": "~4.1.8", + "@jupyterlab/notebook": "~4.1.8", + "@jupyterlab/notebook-extension": "~4.1.8", + "@jupyterlab/observables": "~5.1.8", + "@jupyterlab/outputarea": "~4.1.8", + "@jupyterlab/pdf-extension": "~4.1.8", + "@jupyterlab/pluginmanager": "~4.1.8", + "@jupyterlab/pluginmanager-extension": "~4.1.8", + "@jupyterlab/property-inspector": "~4.1.8", + "@jupyterlab/rendermime": "~4.1.8", + "@jupyterlab/rendermime-extension": "~4.1.8", + "@jupyterlab/rendermime-interfaces": "~3.9.8", + "@jupyterlab/running": "~4.1.8", + "@jupyterlab/running-extension": "~4.1.8", + "@jupyterlab/services": "~7.1.8", + "@jupyterlab/settingeditor": "~4.1.8", + "@jupyterlab/settingeditor-extension": "~4.1.8", + "@jupyterlab/settingregistry": "~4.1.8", + "@jupyterlab/shortcuts-extension": "~4.1.8", + "@jupyterlab/statedb": "~4.1.8", + "@jupyterlab/statusbar": "~4.1.8", + "@jupyterlab/statusbar-extension": "~4.1.8", + "@jupyterlab/terminal": "~4.1.8", + "@jupyterlab/terminal-extension": "~4.1.8", + "@jupyterlab/theme-dark-extension": "~4.1.8", + "@jupyterlab/theme-light-extension": "~4.1.8", + "@jupyterlab/toc": "~6.1.8", + "@jupyterlab/toc-extension": "~6.1.8", + "@jupyterlab/tooltip": "~4.1.8", + "@jupyterlab/tooltip-extension": "~4.1.8", + "@jupyterlab/translation": "~4.1.8", + "@jupyterlab/translation-extension": "~4.1.8", + "@jupyterlab/ui-components": "~4.1.8", + "@jupyterlab/ui-components-extension": "~4.1.8", + "@jupyterlab/vega5-extension": "~4.1.8", "@lezer/common": "^1.0.0", "@lezer/highlight": "^1.0.0", "@lumino/algorithm": "^2.0.0", @@ -142,58 +142,58 @@ "yjs": "^13.5.40" }, "dependencies": { - "@jupyterlab/application": "~4.1.7", - "@jupyterlab/application-extension": "~4.1.7", - "@jupyterlab/apputils-extension": "~4.1.7", - "@jupyterlab/cell-toolbar-extension": "~4.1.7", - "@jupyterlab/celltags-extension": "~4.1.7", - "@jupyterlab/codemirror-extension": "~4.1.7", - "@jupyterlab/completer-extension": "~4.1.7", - "@jupyterlab/console-extension": "~4.1.7", - "@jupyterlab/coreutils": "~6.1.7", - "@jupyterlab/csvviewer-extension": "~4.1.7", - "@jupyterlab/debugger-extension": "~4.1.7", - "@jupyterlab/docmanager-extension": "~4.1.7", - "@jupyterlab/documentsearch-extension": "~4.1.7", - "@jupyterlab/extensionmanager-extension": "~4.1.7", - "@jupyterlab/filebrowser-extension": "~4.1.7", - "@jupyterlab/fileeditor-extension": "~4.1.7", - "@jupyterlab/help-extension": "~4.1.7", - "@jupyterlab/htmlviewer-extension": "~4.1.7", - "@jupyterlab/hub-extension": "~4.1.7", - "@jupyterlab/imageviewer-extension": "~4.1.7", - "@jupyterlab/inspector-extension": "~4.1.7", - "@jupyterlab/javascript-extension": "~4.1.7", - "@jupyterlab/json-extension": "~4.1.7", - "@jupyterlab/launcher-extension": "~4.1.7", - "@jupyterlab/logconsole-extension": "~4.1.7", - "@jupyterlab/lsp-extension": "~4.1.7", - "@jupyterlab/mainmenu-extension": "~4.1.7", - "@jupyterlab/markdownviewer-extension": "~4.1.7", - "@jupyterlab/markedparser-extension": "~4.1.7", - "@jupyterlab/mathjax-extension": "~4.1.7", - "@jupyterlab/mermaid-extension": "~4.1.7", - "@jupyterlab/metadataform-extension": "~4.1.7", - "@jupyterlab/notebook-extension": "~4.1.7", - "@jupyterlab/pdf-extension": "~4.1.7", - "@jupyterlab/pluginmanager-extension": "~4.1.7", - "@jupyterlab/rendermime-extension": "~4.1.7", - "@jupyterlab/running-extension": "~4.1.7", - "@jupyterlab/settingeditor-extension": "~4.1.7", - "@jupyterlab/shortcuts-extension": "~4.1.7", - "@jupyterlab/statusbar-extension": "~4.1.7", - "@jupyterlab/terminal-extension": "~4.1.7", - "@jupyterlab/theme-dark-extension": "~4.1.7", - "@jupyterlab/theme-light-extension": "~4.1.7", - "@jupyterlab/toc-extension": "~6.1.7", - "@jupyterlab/tooltip-extension": "~4.1.7", - "@jupyterlab/translation-extension": "~4.1.7", - "@jupyterlab/ui-components-extension": "~4.1.7", - "@jupyterlab/vega5-extension": "~4.1.7" + "@jupyterlab/application": "~4.1.8", + "@jupyterlab/application-extension": "~4.1.8", + "@jupyterlab/apputils-extension": "~4.1.8", + "@jupyterlab/cell-toolbar-extension": "~4.1.8", + "@jupyterlab/celltags-extension": "~4.1.8", + "@jupyterlab/codemirror-extension": "~4.1.8", + "@jupyterlab/completer-extension": "~4.1.8", + "@jupyterlab/console-extension": "~4.1.8", + "@jupyterlab/coreutils": "~6.1.8", + "@jupyterlab/csvviewer-extension": "~4.1.8", + "@jupyterlab/debugger-extension": "~4.1.8", + "@jupyterlab/docmanager-extension": "~4.1.8", + "@jupyterlab/documentsearch-extension": "~4.1.8", + "@jupyterlab/extensionmanager-extension": "~4.1.8", + "@jupyterlab/filebrowser-extension": "~4.1.8", + "@jupyterlab/fileeditor-extension": "~4.1.8", + "@jupyterlab/help-extension": "~4.1.8", + "@jupyterlab/htmlviewer-extension": "~4.1.8", + "@jupyterlab/hub-extension": "~4.1.8", + "@jupyterlab/imageviewer-extension": "~4.1.8", + "@jupyterlab/inspector-extension": "~4.1.8", + "@jupyterlab/javascript-extension": "~4.1.8", + "@jupyterlab/json-extension": "~4.1.8", + "@jupyterlab/launcher-extension": "~4.1.8", + "@jupyterlab/logconsole-extension": "~4.1.8", + "@jupyterlab/lsp-extension": "~4.1.8", + "@jupyterlab/mainmenu-extension": "~4.1.8", + "@jupyterlab/markdownviewer-extension": "~4.1.8", + "@jupyterlab/markedparser-extension": "~4.1.8", + "@jupyterlab/mathjax-extension": "~4.1.8", + "@jupyterlab/mermaid-extension": "~4.1.8", + "@jupyterlab/metadataform-extension": "~4.1.8", + "@jupyterlab/notebook-extension": "~4.1.8", + "@jupyterlab/pdf-extension": "~4.1.8", + "@jupyterlab/pluginmanager-extension": "~4.1.8", + "@jupyterlab/rendermime-extension": "~4.1.8", + "@jupyterlab/running-extension": "~4.1.8", + "@jupyterlab/settingeditor-extension": "~4.1.8", + "@jupyterlab/shortcuts-extension": "~4.1.8", + "@jupyterlab/statusbar-extension": "~4.1.8", + "@jupyterlab/terminal-extension": "~4.1.8", + "@jupyterlab/theme-dark-extension": "~4.1.8", + "@jupyterlab/theme-light-extension": "~4.1.8", + "@jupyterlab/toc-extension": "~6.1.8", + "@jupyterlab/tooltip-extension": "~4.1.8", + "@jupyterlab/translation-extension": "~4.1.8", + "@jupyterlab/ui-components-extension": "~4.1.8", + "@jupyterlab/vega5-extension": "~4.1.8" }, "devDependencies": { - "@jupyterlab/builder": "^4.1.7", - "@jupyterlab/buildutils": "^4.1.7", + "@jupyterlab/builder": "^4.1.8", + "@jupyterlab/buildutils": "^4.1.8", "chokidar": "^3.4.0", "css-loader": "^6.7.1", "duplicate-package-checker-webpack-plugin": "^3.0.0", @@ -222,7 +222,7 @@ }, "jupyterlab": { "name": "JupyterLab", - "version": "4.1.7", + "version": "4.1.8", "extensions": { "@jupyterlab/application-extension": "", "@jupyterlab/apputils-extension": "", diff --git a/jupyterlab/staging/yarn.lock b/jupyterlab/staging/yarn.lock index ec73ae43a161..03092442155c 100644 --- a/jupyterlab/staging/yarn.lock +++ b/jupyterlab/staging/yarn.lock @@ -420,26 +420,26 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/application-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/application-extension@npm:4.1.7" - dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/property-inspector": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/statedb": ^4.1.7 - "@jupyterlab/statusbar": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 +"@jupyterlab/application-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/application-extension@npm:4.1.8" + dependencies: + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/property-inspector": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/statedb": ^4.1.8 + "@jupyterlab/statusbar": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: d8043e20cc9653ad84d3a79df30b72eedb36477ca1e6c053b6995b9235c5d168b44cd2e09418488d773ae193d4d3c9d43ac7b4d95856bfaa9d1b90d645457f56 + checksum: 5f6d8bd0b022e1f0a4f2a0c7ac7d8d9e7d5d0011a8b9c479e87fe5b5931702fcdd1c7010160a378a30c5755ca9f0e050b944a2cb15adb5706168687d1bc41518 languageName: node linkType: hard @@ -447,56 +447,56 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/application-top@workspace:." dependencies: - "@jupyterlab/application": ~4.1.7 - "@jupyterlab/application-extension": ~4.1.7 - "@jupyterlab/apputils-extension": ~4.1.7 - "@jupyterlab/builder": ^4.1.7 - "@jupyterlab/buildutils": ^4.1.7 - "@jupyterlab/cell-toolbar-extension": ~4.1.7 - "@jupyterlab/celltags-extension": ~4.1.7 - "@jupyterlab/codemirror-extension": ~4.1.7 - "@jupyterlab/completer-extension": ~4.1.7 - "@jupyterlab/console-extension": ~4.1.7 - "@jupyterlab/coreutils": ~6.1.7 - "@jupyterlab/csvviewer-extension": ~4.1.7 - "@jupyterlab/debugger-extension": ~4.1.7 - "@jupyterlab/docmanager-extension": ~4.1.7 - "@jupyterlab/documentsearch-extension": ~4.1.7 - "@jupyterlab/extensionmanager-extension": ~4.1.7 - "@jupyterlab/filebrowser-extension": ~4.1.7 - "@jupyterlab/fileeditor-extension": ~4.1.7 - "@jupyterlab/help-extension": ~4.1.7 - "@jupyterlab/htmlviewer-extension": ~4.1.7 - "@jupyterlab/hub-extension": ~4.1.7 - "@jupyterlab/imageviewer-extension": ~4.1.7 - "@jupyterlab/inspector-extension": ~4.1.7 - "@jupyterlab/javascript-extension": ~4.1.7 - "@jupyterlab/json-extension": ~4.1.7 - "@jupyterlab/launcher-extension": ~4.1.7 - "@jupyterlab/logconsole-extension": ~4.1.7 - "@jupyterlab/lsp-extension": ~4.1.7 - "@jupyterlab/mainmenu-extension": ~4.1.7 - "@jupyterlab/markdownviewer-extension": ~4.1.7 - "@jupyterlab/markedparser-extension": ~4.1.7 - "@jupyterlab/mathjax-extension": ~4.1.7 - "@jupyterlab/mermaid-extension": ~4.1.7 - "@jupyterlab/metadataform-extension": ~4.1.7 - "@jupyterlab/notebook-extension": ~4.1.7 - "@jupyterlab/pdf-extension": ~4.1.7 - "@jupyterlab/pluginmanager-extension": ~4.1.7 - "@jupyterlab/rendermime-extension": ~4.1.7 - "@jupyterlab/running-extension": ~4.1.7 - "@jupyterlab/settingeditor-extension": ~4.1.7 - "@jupyterlab/shortcuts-extension": ~4.1.7 - "@jupyterlab/statusbar-extension": ~4.1.7 - "@jupyterlab/terminal-extension": ~4.1.7 - "@jupyterlab/theme-dark-extension": ~4.1.7 - "@jupyterlab/theme-light-extension": ~4.1.7 - "@jupyterlab/toc-extension": ~6.1.7 - "@jupyterlab/tooltip-extension": ~4.1.7 - "@jupyterlab/translation-extension": ~4.1.7 - "@jupyterlab/ui-components-extension": ~4.1.7 - "@jupyterlab/vega5-extension": ~4.1.7 + "@jupyterlab/application": ~4.1.8 + "@jupyterlab/application-extension": ~4.1.8 + "@jupyterlab/apputils-extension": ~4.1.8 + "@jupyterlab/builder": ^4.1.8 + "@jupyterlab/buildutils": ^4.1.8 + "@jupyterlab/cell-toolbar-extension": ~4.1.8 + "@jupyterlab/celltags-extension": ~4.1.8 + "@jupyterlab/codemirror-extension": ~4.1.8 + "@jupyterlab/completer-extension": ~4.1.8 + "@jupyterlab/console-extension": ~4.1.8 + "@jupyterlab/coreutils": ~6.1.8 + "@jupyterlab/csvviewer-extension": ~4.1.8 + "@jupyterlab/debugger-extension": ~4.1.8 + "@jupyterlab/docmanager-extension": ~4.1.8 + "@jupyterlab/documentsearch-extension": ~4.1.8 + "@jupyterlab/extensionmanager-extension": ~4.1.8 + "@jupyterlab/filebrowser-extension": ~4.1.8 + "@jupyterlab/fileeditor-extension": ~4.1.8 + "@jupyterlab/help-extension": ~4.1.8 + "@jupyterlab/htmlviewer-extension": ~4.1.8 + "@jupyterlab/hub-extension": ~4.1.8 + "@jupyterlab/imageviewer-extension": ~4.1.8 + "@jupyterlab/inspector-extension": ~4.1.8 + "@jupyterlab/javascript-extension": ~4.1.8 + "@jupyterlab/json-extension": ~4.1.8 + "@jupyterlab/launcher-extension": ~4.1.8 + "@jupyterlab/logconsole-extension": ~4.1.8 + "@jupyterlab/lsp-extension": ~4.1.8 + "@jupyterlab/mainmenu-extension": ~4.1.8 + "@jupyterlab/markdownviewer-extension": ~4.1.8 + "@jupyterlab/markedparser-extension": ~4.1.8 + "@jupyterlab/mathjax-extension": ~4.1.8 + "@jupyterlab/mermaid-extension": ~4.1.8 + "@jupyterlab/metadataform-extension": ~4.1.8 + "@jupyterlab/notebook-extension": ~4.1.8 + "@jupyterlab/pdf-extension": ~4.1.8 + "@jupyterlab/pluginmanager-extension": ~4.1.8 + "@jupyterlab/rendermime-extension": ~4.1.8 + "@jupyterlab/running-extension": ~4.1.8 + "@jupyterlab/settingeditor-extension": ~4.1.8 + "@jupyterlab/shortcuts-extension": ~4.1.8 + "@jupyterlab/statusbar-extension": ~4.1.8 + "@jupyterlab/terminal-extension": ~4.1.8 + "@jupyterlab/theme-dark-extension": ~4.1.8 + "@jupyterlab/theme-light-extension": ~4.1.8 + "@jupyterlab/toc-extension": ~6.1.8 + "@jupyterlab/tooltip-extension": ~4.1.8 + "@jupyterlab/translation-extension": ~4.1.8 + "@jupyterlab/ui-components-extension": ~4.1.8 + "@jupyterlab/vega5-extension": ~4.1.8 chokidar: ^3.4.0 css-loader: ^6.7.1 duplicate-package-checker-webpack-plugin: ^3.0.0 @@ -522,20 +522,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/application@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/application@npm:4.1.7" +"@jupyterlab/application@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/application@npm:4.1.8" dependencies: "@fortawesome/fontawesome-free": ^5.12.0 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/statedb": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/statedb": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/application": ^2.3.0 "@lumino/commands": ^2.2.0 @@ -546,27 +546,27 @@ __metadata: "@lumino/properties": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: 4bb3f2411e8786f466d6b87604cb970d99a4900bea8230ec0aa2ce6852651b6170b905fcf11bfccab010be0dcdf5a559401abae36efc1d237cb20e80a4a9a6ab - languageName: node - linkType: hard - -"@jupyterlab/apputils-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/apputils-extension@npm:4.1.7" - dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/filebrowser": ^4.1.7 - "@jupyterlab/mainmenu": ^4.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/statedb": ^4.1.7 - "@jupyterlab/statusbar": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + checksum: 33c57c7e825f72f8aca146bfb2ade9c91e55ac5218410ff4472b0e4cf0de0305ec34f94a9ff3ab5e8982c37a170225dbfe47b4ac900980837ecaf00b7effb0fc + languageName: node + linkType: hard + +"@jupyterlab/apputils-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/apputils-extension@npm:4.1.8" + dependencies: + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/filebrowser": ^4.1.8 + "@jupyterlab/mainmenu": ^4.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/statedb": ^4.1.8 + "@jupyterlab/statusbar": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -577,23 +577,23 @@ __metadata: react: ^18.2.0 react-dom: ^18.2.0 react-toastify: ^9.0.8 - checksum: beec07f28c68bbc025a9e614df586dec0459d76f3f93c087bde2381cb8e7a3323c4d6e50d94cab212d0350d3558e65f75a61318f026be0c873a30e41669d37b0 + checksum: e54528be15abc6ef1b85e512f5ca216bb68f24dec85acab0501ca48996c299ed3ccb2eb39e28f2827891b1d49a5ac618cc50bb28c31e014efbf855e447429e38 languageName: node linkType: hard -"@jupyterlab/apputils@npm:~4.2.7": - version: 4.2.7 - resolution: "@jupyterlab/apputils@npm:4.2.7" +"@jupyterlab/apputils@npm:~4.2.8": + version: 4.2.8 + resolution: "@jupyterlab/apputils@npm:4.2.8" dependencies: - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/statedb": ^4.1.7 - "@jupyterlab/statusbar": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/statedb": ^4.1.8 + "@jupyterlab/statusbar": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -606,27 +606,27 @@ __metadata: "@types/react": ^18.0.26 react: ^18.2.0 sanitize-html: ~2.7.3 - checksum: 95ff30660dbc276942918f2aa4c7953b2f126407258d18a0ed5c921287677e267763a2af6be2b9a0857bce60564c9ae8ec16848d1813de2151fde41ebf059f5c + checksum: 253b3a21f292b19791e149926014e90eb0e6e074b86422a63ce2fbfaebc53c6e16c6cd628f79d91eb7e66b60357df79b9dc6de683b5293562f9fcbe39bcd0522 languageName: node linkType: hard -"@jupyterlab/attachments@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/attachments@npm:4.1.7" +"@jupyterlab/attachments@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/attachments@npm:4.1.8" dependencies: - "@jupyterlab/nbformat": ^4.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/nbformat": ^4.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 - checksum: 4d7c28843db44e230341e7725e3bb6e4775b08fb3574614cb9a2d17561323433652481aeee6d6d4f0c3916440eb890cfeadcea7cc9edcd7113728b13eb8fc395 + checksum: 496eb41e8335d237f7c88b5ce7d1194292d4e6ab8952a3a62883bf4daea36dc6e426ce97b039583ea0e9b9a3ec72e755b2d842e3fc562747efe517e34930f25e languageName: node linkType: hard -"@jupyterlab/builder@npm:^4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/builder@npm:4.1.7" +"@jupyterlab/builder@npm:^4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/builder@npm:4.1.8" dependencies: "@lumino/algorithm": ^2.0.1 "@lumino/application": ^2.3.0 @@ -661,13 +661,13 @@ __metadata: worker-loader: ^3.0.2 bin: build-labextension: lib/build-labextension.js - checksum: e858c70fdb2bf4472918ca81672bbc55a5d5a5cf9f448c11e5673c7e861ecb8632428c87407be10957c9652338675f33c759f5a3fb0f8a24e900ecb39904d4a1 + checksum: e727e4fddbfd4e8f7d4c83e5c5aaf9be41b67771f6a4ef10b44bbc0e51bb21966b2fa1ad33eacf58420ca3a2cda2ab410331a1543e6f945b9ca0a59e109f240b languageName: node linkType: hard -"@jupyterlab/buildutils@npm:^4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/buildutils@npm:4.1.7" +"@jupyterlab/buildutils@npm:^4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/buildutils@npm:4.1.8" dependencies: "@yarnpkg/core": ^3.0.0 "@yarnpkg/parsers": ^2.0.0 @@ -695,65 +695,65 @@ __metadata: update-dependency: lib/update-dependency.js update-dist-tag: lib/update-dist-tag.js update-staging-lock: lib/update-staging-lock.js - checksum: 73dba9b36c29c51d4bc4ca1164a2751497e5858281f3949cc69f7652778d646ca3f744c3aabcff503f2c61e500cb935b74b2d29724bde824ee2b23d4c14b6777 + checksum: 68f9c47c745cdd2bf51b97ea55ce3677f06c6be5430bcef16d580aee04761482471df12015d190c640e0c10fe73a8db1a33b735bb6edbf5e732b53c2a92b08bd languageName: node linkType: hard -"@jupyterlab/cell-toolbar-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/cell-toolbar-extension@npm:4.1.7" +"@jupyterlab/cell-toolbar-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/cell-toolbar-extension@npm:4.1.8" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/cell-toolbar": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - checksum: 800ff23b8c3876bdfe7086164d2e82c6e0a3c683431bd381a0f2236d3f843bf438183c38d35598a67c28992a158a3d8339aa06f6a34631e2a1ca03e29d45a5c3 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/cell-toolbar": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + checksum: ddd48b2367b60cabf7e07b319abd137b7ee175361c3b60ecdba543593dbadbc4a19812c7c424814ac1a2a1dac729c60f3042accc0370d8d1a2b75a7ca30c3187 languageName: node linkType: hard -"@jupyterlab/cell-toolbar@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/cell-toolbar@npm:4.1.7" +"@jupyterlab/cell-toolbar@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/cell-toolbar@npm:4.1.8" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/cells": ^4.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/notebook": ^4.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/cells": ^4.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/notebook": ^4.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: 94ee61e28ee6892ba9dc526f33bc2846835df4b1b1bed5465e94a552eabe0bf875722755e87eff84cae09aca9bf807ccd8c52d6f1b244d77ce0da775224ff007 + checksum: 59adc6d8a0f477bd206cc0a48b317ca09f8699216e923eee27eee114f22f74ea1f6d9228b9d573211600c27450ac1983b8149d2b0c14d2519c9289f72f8391a0 languageName: node linkType: hard -"@jupyterlab/cells@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/cells@npm:4.1.7" +"@jupyterlab/cells@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/cells@npm:4.1.8" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/attachments": ^4.1.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/codemirror": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/documentsearch": ^4.1.7 - "@jupyterlab/filebrowser": ^4.1.7 - "@jupyterlab/nbformat": ^4.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/outputarea": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/toc": ^6.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/attachments": ^4.1.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/codemirror": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/documentsearch": ^4.1.8 + "@jupyterlab/filebrowser": ^4.1.8 + "@jupyterlab/nbformat": ^4.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/outputarea": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/toc": ^6.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/domutils": ^2.0.1 @@ -764,38 +764,38 @@ __metadata: "@lumino/virtualdom": ^2.0.1 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 6a0d31052e3ea00f0b936de0a934fde9a0249ddc9d35879a1e0ce05b483b2a97eb305ef9a1b1311643305fe93ac089070f962446cf3a98326ff3bc2d7efa76bb + checksum: feb2aa9b681acaae78aadffce6d9c61c6b7d4c15da23f11accf98a5d36891918a7304260f73e6b39512fadb8cc31b433bf8619cbb8d7c5c410d5c14b78558364 languageName: node linkType: hard -"@jupyterlab/celltags-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/celltags-extension@npm:4.1.7" +"@jupyterlab/celltags-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/celltags-extension@npm:4.1.8" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/notebook": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/notebook": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: d96c4d6d97e76fc2e0d6687f8efa0f9f852b5ed46d646dd0331781dbb6487906cda6708399d52167ac526b5fc8be55e02179371ccc88bc6c91876f5b49dcac23 + checksum: 3210e85668fba9bb7a257ad8d73192281d161beb6e685b062960d002f756d09f9b76d025301be59792c6501d417374fd242dd41df56b57cc5ecb24deadae69e1 languageName: node linkType: hard -"@jupyterlab/codeeditor@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/codeeditor@npm:4.1.7" +"@jupyterlab/codeeditor@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/codeeditor@npm:4.1.8" dependencies: "@codemirror/state": ^6.2.0 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/nbformat": ^4.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/statusbar": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/nbformat": ^4.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/statusbar": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/dragdrop": ^2.1.4 @@ -803,37 +803,37 @@ __metadata: "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: b97f56fb05d7e25b0339631249afdf144cd33a6d8bb111ff875bcf5c022edd959e73ff2195c6b462d330b4b13dcfbb9cd75fab1e9f2ae09afe681d4abea92a7b + checksum: e5d3b0f5c94775017b044528843596ce7f5616cede5555a6a32b3a8e9ae583775f83a6448717fd15e2cf254ef50209861da06821f67267ebe2ef67b34860f7d6 languageName: node linkType: hard -"@jupyterlab/codemirror-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/codemirror-extension@npm:4.1.7" +"@jupyterlab/codemirror-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/codemirror-extension@npm:4.1.8" dependencies: "@codemirror/lang-markdown": ^6.1.1 "@codemirror/language": ^6.6.0 "@codemirror/legacy-modes": ^6.3.2 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/codemirror": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/statusbar": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/codemirror": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/statusbar": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 "@rjsf/utils": ^5.13.4 "@rjsf/validator-ajv8": ^5.13.4 react: ^18.2.0 - checksum: 2593e905955efbd9109d1b01e7a579ada832b3d98029fa041e7c905fdf237901b9294c80fa53c6375c452b866b4fddff637dba3c5ee26c01fc33f2264e651cf4 + checksum: 679b2a5511546f32a56d180437bc56418cd5e0711b2c753f933f924ca7997c5387a1fc23cf95c775eceb3370573cbe59f37d6d6ea0cad11274bc60bc8f8b9c15 languageName: node linkType: hard -"@jupyterlab/codemirror@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/codemirror@npm:4.1.7" +"@jupyterlab/codemirror@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/codemirror@npm:4.1.8" dependencies: "@codemirror/autocomplete": ^6.5.1 "@codemirror/commands": ^6.2.3 @@ -856,11 +856,11 @@ __metadata: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/documentsearch": ^4.1.7 - "@jupyterlab/nbformat": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/documentsearch": ^4.1.8 + "@jupyterlab/nbformat": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 "@lezer/common": ^1.0.2 "@lezer/generator": ^1.2.2 "@lezer/highlight": ^1.1.4 @@ -869,44 +869,44 @@ __metadata: "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 yjs: ^13.5.40 - checksum: 51b9d9fb558fa3f310ea618118d889f507770112077f8befbb77f6e06448929a6d88d4c6582182dacd2e75b3366ef851105f3ec75b9ff4642cc62fccfd015680 + checksum: 0a56b6855b6dd4999e9816938f7546c2f1c46c629f05cf246813d58700f3c283e068b9c86dba275374756536472b598a19a0e5e12cfffd365817fbcc8333c795 languageName: node linkType: hard -"@jupyterlab/completer-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/completer-extension@npm:4.1.7" +"@jupyterlab/completer-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/completer-extension@npm:4.1.8" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/completer": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/completer": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: c456903bc9fc896222aa7e2541dc25f835a259f685236eb5214574cb3701086a2f3ec314980d392f4ef57afd4283ebc6a641142fff877a971ddf9592dc919b59 + checksum: fe50d349fba4ee839e0677acc2a01767de10d8f912ee239c5ae75c4404b4f83084fb9979a15f775dc81a74d4e26c9a2d9baceb133c4cab46d78b25dde048badf languageName: node linkType: hard -"@jupyterlab/completer@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/completer@npm:4.1.7" +"@jupyterlab/completer@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/completer@npm:4.1.8" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/codemirror": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/statedb": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/codemirror": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/statedb": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -914,65 +914,65 @@ __metadata: "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: 6927b9c71523a205619ed8a46cec8018dda301dcf69be445e822ba7d1ef6de6431b516eee156bb24275d22171f741fc8daf4922ea60f9f7c9a0e0ca84ec3c0d3 - languageName: node - linkType: hard - -"@jupyterlab/console-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/console-extension@npm:4.1.7" - dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/completer": ^4.1.7 - "@jupyterlab/console": ^4.1.7 - "@jupyterlab/filebrowser": ^4.1.7 - "@jupyterlab/launcher": ^4.1.7 - "@jupyterlab/mainmenu": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + checksum: 255958e8a3e61f7de2efa231c2389d27169f26829cf34d3780eac7e65d89a5790ac2190af2c3cc7c05bdcdceef0de6acba6d8f6b8fdcb994e735f1e8f68bfcb8 + languageName: node + linkType: hard + +"@jupyterlab/console-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/console-extension@npm:4.1.8" + dependencies: + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/completer": ^4.1.8 + "@jupyterlab/console": ^4.1.8 + "@jupyterlab/filebrowser": ^4.1.8 + "@jupyterlab/launcher": ^4.1.8 + "@jupyterlab/mainmenu": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/properties": ^2.0.1 "@lumino/widgets": ^2.3.1 - checksum: 6b90f18cf9d23d9bd39b9270a152bb4b3d90644d367cd072c4535bf5210b521a09855a8fb526f129ca504bfd86505fd184970148cf501a0288250c53c0722145 + checksum: 35c20d6b53b5e9a14856811fe7ebc7783e16a60bbfd4dd8b1aa5cd9874cb486af62a4f858a331ebdf0c0d29d07a50a4d0b8dd03c12210e8a640f766cc3c47e8e languageName: node linkType: hard -"@jupyterlab/console@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/console@npm:4.1.7" +"@jupyterlab/console@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/console@npm:4.1.8" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/cells": ^4.1.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/nbformat": ^4.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/cells": ^4.1.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/nbformat": ^4.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@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.1 - checksum: 76f028d771c1e84baf6fe4772299d1f6c42afb332843aeabf908ff7d261e8f3fa6a7fe0109548b54477f654b58d52a3409c4167192c3c8e6805f14b91e51d370 + checksum: 7ebfa8f1d90369722bcb3b15407be69d48280e5846048396f802d74317b537b2d951a0da5ca7a9685d02b24cdc9dd347b254a0d19138d80d281c2262124c53a2 languageName: node linkType: hard -"@jupyterlab/coreutils@npm:~6.1.7": - version: 6.1.7 - resolution: "@jupyterlab/coreutils@npm:6.1.7" +"@jupyterlab/coreutils@npm:~6.1.8": + version: 6.1.8 + resolution: "@jupyterlab/coreutils@npm:6.1.8" dependencies: "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -980,92 +980,92 @@ __metadata: minimist: ~1.2.0 path-browserify: ^1.0.0 url-parse: ~1.5.4 - checksum: 5a92ad16db3841193112ae39581e3b2546c0a1af45abe1f95c4ee797721c9c642ee0ad59bf967ca6a8813d0b62b471fb1018bdb3214662a6200c83f9c61f79ad + checksum: 1049c78bdbffb247fe7e7be4e082fe15711ca0d8da997d6da7042e0299d7ebbf1d0341d830ae0ab451bf8dfbfc30027bf3f063fc7e35210409a7aa56fe94cee9 languageName: node linkType: hard -"@jupyterlab/csvviewer-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/csvviewer-extension@npm:4.1.7" - dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/csvviewer": ^4.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/documentsearch": ^4.1.7 - "@jupyterlab/mainmenu": ^4.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 +"@jupyterlab/csvviewer-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/csvviewer-extension@npm:4.1.8" + dependencies: + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/csvviewer": ^4.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/documentsearch": ^4.1.8 + "@jupyterlab/mainmenu": ^4.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 "@lumino/datagrid": ^2.3.0 "@lumino/widgets": ^2.3.1 - checksum: f4a5d5c71b83589a2716dcdee437c34ff186b343167f732a6fa70379dc125a36cb271acaab14b3255da248a0f0bfea02ea008cb18eae90c926d2c3a28b02c18b + checksum: e4be21990eadfd9a24470d36f5f7a2b65f0e091611b4b3102856412d5b04656fc162e67db90ad1d43e7748c26ec381b621792f3e38c7bac1274340fd1d7710ec languageName: node linkType: hard -"@jupyterlab/csvviewer@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/csvviewer@npm:4.1.7" +"@jupyterlab/csvviewer@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/csvviewer@npm:4.1.8" dependencies: - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/datagrid": ^2.3.0 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: 15d93337ef9962ea5c91a0393110c7ec136c1116814e19280154a4d1dc9eb278a7ee7a44b984db8051cd302589e8417299792ff8512087efa68079f01ef0e32e - languageName: node - linkType: hard - -"@jupyterlab/debugger-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/debugger-extension@npm:4.1.7" - dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/cells": ^4.1.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/console": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/debugger": ^4.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/fileeditor": ^4.1.7 - "@jupyterlab/logconsole": ^4.1.7 - "@jupyterlab/notebook": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - checksum: 3a599e18188d506fb8562bc24b7456cf8233e8b88a8ddb6a4b456074b9023684bf1e5dcb3fab12cc9453b4a373edf00ad21d1a8590cc4e6bd603f74f81e10aa5 + checksum: afa8c9e99e50575b623b8b752ac99e96af7da6c9aaa690bda3f311c22acd754a082fc1927e707a6595e07462528acd50c9f3c08612870d36f2d651e8bc15ba03 languageName: node linkType: hard -"@jupyterlab/debugger@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/debugger@npm:4.1.7" +"@jupyterlab/debugger-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/debugger-extension@npm:4.1.8" + dependencies: + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/cells": ^4.1.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/console": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/debugger": ^4.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/fileeditor": ^4.1.8 + "@jupyterlab/logconsole": ^4.1.8 + "@jupyterlab/notebook": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + checksum: 684cc7e3409890d154e915d082e9ff40e119123f813ecf9e315d37c8c1685ac7d1b09c8d4d06867bd3ca9fd017013e2a99394616d864f69141dd470eeed55d18 + languageName: node + linkType: hard + +"@jupyterlab/debugger@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/debugger@npm:4.1.8" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/cells": ^4.1.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/codemirror": ^4.1.7 - "@jupyterlab/console": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/fileeditor": ^4.1.7 - "@jupyterlab/notebook": ^4.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/cells": ^4.1.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/codemirror": ^4.1.8 + "@jupyterlab/console": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/fileeditor": ^4.1.8 + "@jupyterlab/notebook": ^4.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -1077,24 +1077,24 @@ __metadata: "@lumino/widgets": ^2.3.1 "@vscode/debugprotocol": ^1.51.0 react: ^18.2.0 - checksum: 504bf2ab07bb321ff03b878f2c664a597d6d3c08f26ef612634624a6190ba8ff1e2f21839292e4d1fd4cbab8e9e62ba61b2d63d04827b1a4387de7bf0b85a464 + checksum: fdfbc117952227ae189a39f733286fca2614f172913419a55a7b7db2a8243cd893008338af822bc29f904240202d6e414aa25f253b9522c525437def190e0f9a languageName: node linkType: hard -"@jupyterlab/docmanager-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/docmanager-extension@npm:4.1.7" - dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docmanager": ^4.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/statusbar": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 +"@jupyterlab/docmanager-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/docmanager-extension@npm:4.1.8" + dependencies: + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docmanager": ^4.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/statusbar": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -1102,21 +1102,21 @@ __metadata: "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: d0b511c881d24f48ae19bc3ea630d867f093539dc66753a3d6c52082048082e2c63fae567c96fd20e847a0f0895018c4b43be84fcc928e2efb5953223e565488 + checksum: bac417fb2bf395afd3df6efbf44c115ef8631aaf2264c444072caa3a5d7bd36b0c1a44fc2e13df31cab4cdda8cb2ed559e9abfa0eb3c2c475104a25da80efb35 languageName: node linkType: hard -"@jupyterlab/docmanager@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/docmanager@npm:4.1.7" - dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/statusbar": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 +"@jupyterlab/docmanager@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/docmanager@npm:4.1.8" + dependencies: + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/statusbar": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -1125,24 +1125,24 @@ __metadata: "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 89de534c683cf7a20d1922a2c038624c043d023f3429c3bdabd439ed01640c073e635a87f0c08c8e7c34dbd5b16e19581b4c11a5d7e7b3edb008752d3ba77d5e + checksum: d0d1316a885d1e72891d9b9cd61c36c7f8db4a4e53ae4cc8f105931e0dcdc262ebd5e76d3a145517bcc009cb3f8ab23e4e4ce84191f2f09c5df3d2a3294cfe9a languageName: node linkType: hard -"@jupyterlab/docregistry@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/docregistry@npm:4.1.7" +"@jupyterlab/docregistry@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/docregistry@npm:4.1.8" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -1151,32 +1151,32 @@ __metadata: "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: a0c388b621cc088648e9d54f7717b502cc07f54f54b0107f336cb94c15f22bf2d7d9eb06001183ac0fa9df51b287211fbca673e1e1936278af5f33d4576b0224 + checksum: d65aef500ab8d9d761490cf2a6902e897475173727cd3676691789e6d2609aefc8c98c0a4d4e57c670721409cb58925eeb162dbd101c9b6a473ecd20cf7efe78 languageName: node linkType: hard -"@jupyterlab/documentsearch-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/documentsearch-extension@npm:4.1.7" +"@jupyterlab/documentsearch-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/documentsearch-extension@npm:4.1.8" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/documentsearch": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/documentsearch": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 "@lumino/commands": ^2.2.0 "@lumino/widgets": ^2.3.1 - checksum: 7da3b91b52d987c289c79e7bab7c75fd8f95dfb1d5d7ceb731989be987b9857592cbdd9e9c7e6e0b59a7320cf63dfbd8bd641414737cc35a48150bfcfd761896 + checksum: 929ee06ffb0a4c693cbc8de78cb5b8e0f965d779f8e8f9a0ebdc4f99ff913b729b2370599a890a8a882c914ae75eba4745d2e2a42997c1986fc16588e8f593c3 languageName: node linkType: hard -"@jupyterlab/documentsearch@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/documentsearch@npm:4.1.7" +"@jupyterlab/documentsearch@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/documentsearch@npm:4.1.8" dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -1185,79 +1185,79 @@ __metadata: "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: a8d00d2fec47eb4c15dcb435b8b67a3fd691591fb17e2f89e3ed114d3966c4c284fce5e9d4f1f470df2d60a47ded6e7400090ee0d37899435db60b4e6b99386a + checksum: c8f05403435c8613c599ea54512f4a8bb865e3836f336e2258cba60291b101f35515eb6e8a33d88973d22fffe2b9772d1b0d9d177a5b7a396ff64b046b211580 languageName: node linkType: hard -"@jupyterlab/extensionmanager-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/extensionmanager-extension@npm:4.1.7" +"@jupyterlab/extensionmanager-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/extensionmanager-extension@npm:4.1.8" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/extensionmanager": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 - checksum: e9a0a070a428bd8c8326a9732541a087ce1de2f86ba74df12f72d47f4661b6a8bb2a2fa2e9efcdc9cb3b9024663d4f886ba442e2af4cd3a328a876a982e12b8c + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/extensionmanager": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 + checksum: 6551234f6dde340c8acb0a0df1d6d1bc9e2217c2a6c9a7ddc98441d5a013d373d5bdc930bf3293203b7b46e0e96e48979450dc8f62818f8905027d23d0dff990 languageName: node linkType: hard -"@jupyterlab/extensionmanager@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/extensionmanager@npm:4.1.7" +"@jupyterlab/extensionmanager@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/extensionmanager@npm:4.1.8" dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/messaging": ^2.0.1 "@lumino/polling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 react-paginate: ^6.3.2 semver: ^7.3.2 - checksum: 65d948c2ca170e51caaf13f2198c280b3d703fc007c08cb5b65757c588a75ebd9bce2dafa66d23e08b71534d9b07c0afcad3a663753f4c423ba59261b8bfb4ef - languageName: node - linkType: hard - -"@jupyterlab/filebrowser-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/filebrowser-extension@npm:4.1.7" - dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docmanager": ^4.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/filebrowser": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/statedb": ^4.1.7 - "@jupyterlab/statusbar": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + checksum: 01f3de84a5c4166a4e10eadb558499b7a0e68bf29d5dd6069d015d5a9dc143336c99a4186be433b997f9ee5847e59f0cc5dc5c2623f8e838587a30778cc69d02 + languageName: node + linkType: hard + +"@jupyterlab/filebrowser-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/filebrowser-extension@npm:4.1.8" + dependencies: + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docmanager": ^4.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/filebrowser": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/statedb": ^4.1.8 + "@jupyterlab/statusbar": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/widgets": ^2.3.1 - checksum: 1b67a458cda0dd5e80681b4fb32b44cdc98816faff07dc7f60b794f5819aeb19a47da3775507f0436011b749990497cd35596e0d4ec5d4efe97b99352abc256d + checksum: 1d75a4d3c9080537708bf7923ef9e7ef21d711e358c354f41d668adc802b5117176a4f55737d70277d91bb6c46797396cefc2c154fb490ec4a9b6a36c2dc8ef8 languageName: node linkType: hard -"@jupyterlab/filebrowser@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/filebrowser@npm:4.1.7" - dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docmanager": ^4.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/statedb": ^4.1.7 - "@jupyterlab/statusbar": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 +"@jupyterlab/filebrowser@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/filebrowser@npm:4.1.8" + dependencies: + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docmanager": ^4.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/statedb": ^4.1.8 + "@jupyterlab/statusbar": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -1269,221 +1269,221 @@ __metadata: "@lumino/virtualdom": ^2.0.1 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 8890986df2e234f37c0d7cd1f3f15fb68c6fe91479790365f6b0e3578fd176be844e6bef3bb36614593fca0119bf9a40ae3bd7cda63131fc47c0b8bae2efaf83 + checksum: 51ae88c5fabb2fad341cd3ea7b94750c373d5b3d251287f0bcbc7f1357b11f7a4e9ec08ee92512a46435fccee0c7c647cdf2185db9459a55845d15410f0dcf1c languageName: node linkType: hard -"@jupyterlab/fileeditor-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/fileeditor-extension@npm:4.1.7" +"@jupyterlab/fileeditor-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/fileeditor-extension@npm:4.1.8" dependencies: "@codemirror/commands": ^6.2.3 "@codemirror/search": ^6.3.0 - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/codemirror": ^4.1.7 - "@jupyterlab/completer": ^4.1.7 - "@jupyterlab/console": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/documentsearch": ^4.1.7 - "@jupyterlab/filebrowser": ^4.1.7 - "@jupyterlab/fileeditor": ^4.1.7 - "@jupyterlab/launcher": ^4.1.7 - "@jupyterlab/lsp": ^4.1.7 - "@jupyterlab/mainmenu": ^4.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/statusbar": ^4.1.7 - "@jupyterlab/toc": ^6.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/codemirror": ^4.1.8 + "@jupyterlab/completer": ^4.1.8 + "@jupyterlab/console": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/documentsearch": ^4.1.8 + "@jupyterlab/filebrowser": ^4.1.8 + "@jupyterlab/fileeditor": ^4.1.8 + "@jupyterlab/launcher": ^4.1.8 + "@jupyterlab/lsp": ^4.1.8 + "@jupyterlab/mainmenu": ^4.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/statusbar": ^4.1.8 + "@jupyterlab/toc": ^6.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: 6ea5e304b51666fabfd78f1855620fb75bce17c168e4f14342258b25e7db5d60c9f5e8e5f5ac1491b188c686d23c16c61c5a7fe399f9cda028906633c63503a3 + checksum: bfb5b51929e856c35f2fd5ebbe7deb52d36c2e4ca30030cceedc759447f62b0b5a8719e2eb8695cf616ccaec6ae0e9609cf6c6b68e6c846e09ab53f42ac68d5d languageName: node linkType: hard -"@jupyterlab/fileeditor@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/fileeditor@npm:4.1.7" +"@jupyterlab/fileeditor@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/fileeditor@npm:4.1.8" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/codemirror": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/documentsearch": ^4.1.7 - "@jupyterlab/lsp": ^4.1.7 - "@jupyterlab/statusbar": ^4.1.7 - "@jupyterlab/toc": ^6.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/codemirror": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/documentsearch": ^4.1.8 + "@jupyterlab/lsp": ^4.1.8 + "@jupyterlab/statusbar": ^4.1.8 + "@jupyterlab/toc": ^6.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.1 react: ^18.2.0 regexp-match-indices: ^1.0.2 - checksum: 1297b75ed1b52ca223d311fc74ca19c0d978eded2e6dcada3d65833fcd27ce3279fe182317598cdc26ee48b196e3e993a3f79f596046921efdc47346a4b711bd + checksum: 1d5c67721ebd57d2a30e3ae8de51b6c967b23110730298205289dd8365c9145e69da4f8edf2fc84c3b5ab32feeee45bb65cdfb428b3a8a3c42b7c068e0d2d024 languageName: node linkType: hard -"@jupyterlab/help-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/help-extension@npm:4.1.7" - dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/mainmenu": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 +"@jupyterlab/help-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/help-extension@npm:4.1.8" + dependencies: + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/mainmenu": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/virtualdom": ^2.0.1 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 65932f8a63456c3822a9264815fa873d8cd3b043ae9e79516b8085c1b082f1b296ce53ac2f9a11180e4008498e6812a5267ac83ae7d8276846382b769e3a87cd + checksum: b5e5a77bedc28eefc457108cb857a9ce8598b53e19b190de056a1c31a82b5f354a19122b59de6665844f278b4341097d3f07a29de9d648f83dccaff371e78e58 languageName: node linkType: hard -"@jupyterlab/htmlviewer-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/htmlviewer-extension@npm:4.1.7" +"@jupyterlab/htmlviewer-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/htmlviewer-extension@npm:4.1.8" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/htmlviewer": ^4.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 - checksum: 8d1ede6ae8cddd265d985dda41244faaa8f7aec8e5f13b64585a67fc38196fa9b22b0cdc39cb31148175808a503546d3e1b7e3a67f48c4f3e213b5a9cfa3b65b + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/htmlviewer": ^4.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 + checksum: a67e8de32040af80a6b389cc30cc2faea14b8bc8e88823232a43c42ceddb748f3adf721fa66f8a16701109826ec4028961ec9de64c438b3f5d5db802e1723b6a languageName: node linkType: hard -"@jupyterlab/htmlviewer@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/htmlviewer@npm:4.1.7" +"@jupyterlab/htmlviewer@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/htmlviewer@npm:4.1.8" dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: f46f4d17f95309f72f22605f6b85d6045e2b0d21c10512dd890fc8dc8715d8f0791d549a3a84b78ebc53129e03d973b5c57e40a6f4f134ff48126ee5adea9279 + checksum: c917e76a7cd2f8a98add3e94b2f06292f8b504e3e6d438fb461e5b44a1e11a7cd14c8c505a24d35f3e5d3bc770579f62dabf46e6732761995b5710fe78a23bf7 languageName: node linkType: hard -"@jupyterlab/hub-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/hub-extension@npm:4.1.7" +"@jupyterlab/hub-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/hub-extension@npm:4.1.8" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/translation": ^4.1.7 - checksum: f40bc8ac2fda3a5826f46dfae16b37884ddd7e883fe5cd9bdca8aaa30308d2370d13497d5afacea5d4e84e3ce1c08cd99b85bcb7f66fe00e0465c41ca840e4ef + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/translation": ^4.1.8 + checksum: ac586925c603d0a9c3c6e617dc398c01995ca5bf02cf3eda703393bcfd9909d043bf65e5e390fa722644e9a389358b5d0ce5d81e7627d191709612047a317108 languageName: node linkType: hard -"@jupyterlab/imageviewer-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/imageviewer-extension@npm:4.1.7" +"@jupyterlab/imageviewer-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/imageviewer-extension@npm:4.1.8" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/imageviewer": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - checksum: 105e8f1bc7674b338346aa118e07d9ce8140bb2d808985d001f0e29b826dd94808a0c5f025e25e28a6bd4abdfe069b3753dceffdcd0078c6cb69fa43ec05d53c + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/imageviewer": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + checksum: 022151ba42d6973403270c5f9a1c7d3eb58b3bafa093688fd004e41d51bd18690458c62094af818bf9c892f5ebe8d5be87d417fb4ecbd97b248af8ccb0e158be languageName: node linkType: hard -"@jupyterlab/imageviewer@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/imageviewer@npm:4.1.7" +"@jupyterlab/imageviewer@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/imageviewer@npm:4.1.8" dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docregistry": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docregistry": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.1 - checksum: 4869ccc4ef38a7e1e26a2db621d369e4dfc06fbe9108cf829e306585a40ce0a0d45fbe6581ac270d198fad8df3422c94d194bee02fd7b17a690cd83f55acc3cb + checksum: 63a3246719fc0b58c8f5b24ef9b65e8f293df981ea1bb3d123311830d0277317cd9434ea6819a7460d278f8a5f60d89458ba1f89b9b6c022fb940e77149a085b languageName: node linkType: hard -"@jupyterlab/inspector-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/inspector-extension@npm:4.1.7" - dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/console": ^4.1.7 - "@jupyterlab/inspector": ^4.1.7 - "@jupyterlab/launcher": ^4.1.7 - "@jupyterlab/notebook": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 +"@jupyterlab/inspector-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/inspector-extension@npm:4.1.8" + dependencies: + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/console": ^4.1.8 + "@jupyterlab/inspector": ^4.1.8 + "@jupyterlab/launcher": ^4.1.8 + "@jupyterlab/notebook": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/widgets": ^2.3.1 - checksum: 2197cc1a5cfc62828876de18f367c04ccd55803f5cbfddbd6ab0326ff86d00313c2cbb99e7a6fec05fea0f94d246c3628edf15e9ecb6f51b49e3ab64025b3b03 + checksum: 235ac98a68b0f5ecdd1786585090f019c09d79a7ba083c5e8a368ac03ac7eea060980111baca64a4e30c74abc2dcb21ff7629f87b62d39495a9a81fe72750eec languageName: node linkType: hard -"@jupyterlab/inspector@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/inspector@npm:4.1.7" - dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/statedb": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 +"@jupyterlab/inspector@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/inspector@npm:4.1.8" + dependencies: + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/statedb": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/polling": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: 11198701eaf5e1be6a482549da21310d582ea380a68b1f0b37d3a1a8dc49eaaff66fc008fcbe1d3e1d8470bf0d9ad4a8713bae6834c70a2f910447f7a47db5c1 + checksum: 13bc350e989ba8bc20b5c9550161ff9dca7be6aded0ff1dd0b4b79d2b57c0794b1ad80e9b5c8c1ba778a508c4ee3cc03f95861b5510c780c12a1df3800ac65b1 languageName: node linkType: hard -"@jupyterlab/javascript-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/javascript-extension@npm:4.1.7" +"@jupyterlab/javascript-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/javascript-extension@npm:4.1.8" dependencies: - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 - checksum: d2bfb22b2624173a82f91662c82b2544144b0c755cec2996b65e91a0d27a785522eb47fccee2a07a6367222580a6d3e3bd8c63b6c67073c37fbb8be2e48a804d + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 + checksum: 6b542c07e4190cd21f8cf9b3166682a1f5138c88bfc6fcdda5d876b2cb7d3bf18ba2cd07d9c655986f1f99337034434b0e675a6d7f043cbfcfcfb5a2466a13d5 languageName: node linkType: hard -"@jupyterlab/json-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/json-extension@npm:4.1.7" +"@jupyterlab/json-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/json-extension@npm:4.1.8" dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/codemirror": ^4.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/codemirror": ^4.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lezer/highlight": ^1.1.4 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 @@ -1493,34 +1493,34 @@ __metadata: react-highlight-words: ^0.20.0 react-json-tree: ^0.18.0 style-mod: ^4.0.0 - checksum: b4adb8dad3365ccfe785db06060c480ab1ce84daf28f118f5e6ae3ead4e241714465528e9df55f4b9d93397b348cc1a07849c519ae786f78c3a15edaba665895 + checksum: 863706f9a52e87d801e28a0c1e733325feee66b78043a739d3f1c3077a64b7bdc30045564568a3a6dc8d44a2f20f7f72f645ebfc8a26a91a98b0dab7d944e920 languageName: node linkType: hard -"@jupyterlab/launcher-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/launcher-extension@npm:4.1.7" - dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/filebrowser": ^4.1.7 - "@jupyterlab/launcher": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 +"@jupyterlab/launcher-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/launcher-extension@npm:4.1.8" + dependencies: + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/filebrowser": ^4.1.8 + "@jupyterlab/launcher": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: f01eba74a2f4a7a9b8547c9652ac0733db89d1c2658c5b9f5571a5a80d1c0caabb3f6baddafb9dcd1d8cf095c0b4ffbd0c7c8be9cb645f1602bfb51b108ab5fc + checksum: 4add2e6be7cfd165a78fea9c0603e43227b55467f29f2eaedead1fd71d0f9f4351a3858b8c6be12ebdc65c753605a211f5e0271119aa889651b52086851269d2 languageName: node linkType: hard -"@jupyterlab/launcher@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/launcher@npm:4.1.7" +"@jupyterlab/launcher@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/launcher@npm:4.1.8" dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -1528,81 +1528,81 @@ __metadata: "@lumino/properties": ^2.0.1 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: d152362167d807619653e32e6a883a2c07f9fc018128df915004dc33f69241af93c1cf7990229f1ae0e001d9be2fc0229b83d105c644c8be1a7939199e83f863 + checksum: f98bfd3da5346729fbd54f569d65ba255e3695af02a712f5a153115463168a116147bb4c9388d8f8a4132cf1f6a9f580e94b0058bea162181b80654246356026 languageName: node linkType: hard -"@jupyterlab/logconsole-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/logconsole-extension@npm:4.1.7" - dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/logconsole": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/statusbar": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 +"@jupyterlab/logconsole-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/logconsole-extension@npm:4.1.8" + dependencies: + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/logconsole": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/statusbar": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 67734e84c32e50f8e8e9c8f3c7eb249ad65835f8ef5918d12728c6a985c1131dfbb6013cdd4eb6a0639ebe84943f7a9b127c7fd14edbbedd803f6a948a1fed80 + checksum: 5768e405d5db5d02ffa5a000fda091aa209158f9c3ee2a75a6c84239317c929a232e98064d786a11c109721d1c2efb195f96926e762159541bfb462e1911a990 languageName: node linkType: hard -"@jupyterlab/logconsole@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/logconsole@npm:4.1.7" - dependencies: - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/nbformat": ^4.1.7 - "@jupyterlab/outputarea": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/translation": ^4.1.7 +"@jupyterlab/logconsole@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/logconsole@npm:4.1.8" + dependencies: + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/nbformat": ^4.1.8 + "@jupyterlab/outputarea": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/translation": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: 875451b5ba16ecbf4c07b0a876d996d2ec1d075223e3b2ed27ba1273e612e1a3d13d096a4e9e56f856ba15755907ee60634a5ff942ff0edbd76ec76d305e47f6 + checksum: a8a48c17c4ebb29081d58b95da6c0302c91707706e21566d3a9d4942e5707aefa87cd3ad4329f2616486b3fb084f05f92b12d48a2371c2fcf3c0dc4d7e744d24 languageName: node linkType: hard -"@jupyterlab/lsp-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/lsp-extension@npm:4.1.7" - dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/lsp": ^4.1.7 - "@jupyterlab/running": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 +"@jupyterlab/lsp-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/lsp-extension@npm:4.1.8" + dependencies: + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/lsp": ^4.1.8 + "@jupyterlab/running": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/polling": ^2.1.2 "@lumino/signaling": ^2.1.2 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: 86fbd3789fc76ce919b3ff6c2a0e5033510fd8d083df0db7b4b4d02f51dc2bfcf8da3c107460d177c743ff920c1d77da1a914dd44e661cb5e5acd7ce21de4192 + checksum: 1d158b156116e22cabc7472a7e6a931069d34f5b812035988b5a28e52327fb890e5880c5432d8b32c715aa755ca105a09600d9db841d92d8f52e63b78e84d8e1 languageName: node linkType: hard -"@jupyterlab/lsp@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/lsp@npm:4.1.7" - dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/codemirror": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/translation": ^4.1.7 +"@jupyterlab/lsp@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/lsp@npm:4.1.8" + dependencies: + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/codemirror": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/translation": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 @@ -1611,160 +1611,160 @@ __metadata: vscode-jsonrpc: ^6.0.0 vscode-languageserver-protocol: ^3.17.0 vscode-ws-jsonrpc: ~1.0.2 - checksum: 1c3c2cf67da4124fcafe821b362ed0dd5d416efe35346017e3b89d0ab1585595c0a8592d245ca838b3e2538b63da54a524cbef52fefce0c471c01daf34afd12b + checksum: 535786735c28c8cd6b3a39c2ae0d8e7b4d7b39c96346595fea6c39f4c81b55c986025e27b6a5f874d16319eab09022eb3d9ae7114ecbdcf688712838858f1590 languageName: node linkType: hard -"@jupyterlab/mainmenu-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/mainmenu-extension@npm:4.1.7" - dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/mainmenu": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 +"@jupyterlab/mainmenu-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/mainmenu-extension@npm:4.1.8" + dependencies: + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/mainmenu": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: 06b549b540b735eff8ec21a26379c88eb48a5b32042e20237d8bcf9c05ac25d44c64407975240de1edcea511857f7fb063443436476d3af2eabd2566c3c505ca + checksum: 25a9c9799ae9091f4d019fb79fd7b70ec0f78b0e168e16a9ece14ea4dd2310560d49e569a349f94f0cc55c3a185e5b53f3f12e35ce492827db8515e676f5e9d0 languageName: node linkType: hard -"@jupyterlab/mainmenu@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/mainmenu@npm:4.1.7" +"@jupyterlab/mainmenu@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/mainmenu@npm:4.1.8" dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: ad35fefe3ff003bfdc7af2ac120a1e6d29afddf9835129f56acaad626b13ecfd776d9ff2d2b22b06cfc273fac1aa00d9fa699bcae9bdfc734ded4394536d6d3c + checksum: 8ef36427492ec8605479e714ed0941bacb13ed9140907c31d589d78889c6a60f3adbf23ea1f466839d6edef44d9e4313671ff2e099f8a69feea248aa38e482f2 languageName: node linkType: hard -"@jupyterlab/markdownviewer-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/markdownviewer-extension@npm:4.1.7" +"@jupyterlab/markdownviewer-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/markdownviewer-extension@npm:4.1.8" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/markdownviewer": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/toc": ^6.1.7 - "@jupyterlab/translation": ^4.1.7 - checksum: eb973d0009eee040d4d8eeb0025949c11c235c575a14f818c6d57ef17f3cbeafcb8fd90d37cf0b84383fef316eacba97e66e1d73eeb46aac2b3a9b16c07f5f9b + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/markdownviewer": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/toc": ^6.1.8 + "@jupyterlab/translation": ^4.1.8 + checksum: 77f41e37ddcf9777a8dbaf9c4b3c4e117eeb83567e4287d57964dee9d481e568138492ccee979ff1b7911de36c97c50ee63c43b7d547de65a6487b4f20fd5a94 languageName: node linkType: hard -"@jupyterlab/markdownviewer@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/markdownviewer@npm:4.1.7" - dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/toc": ^6.1.7 - "@jupyterlab/translation": ^4.1.7 +"@jupyterlab/markdownviewer@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/markdownviewer@npm:4.1.8" + dependencies: + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/toc": ^6.1.8 + "@jupyterlab/translation": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: d7e267a2cfaa9b50f2a6c340b556ebcbe9a2c11785ec8bfdc652eb9cc2c3d2a07042aa1d77b13b6325f85366f35df7b9118699b1c889eb09f2e1e22c07d64664 + checksum: 1128d7b171062e24ae002001b367d61edb0a720394346a6f30c32b214e4840e4c29c8fe78da01632f10cd5c9dd09e48050e1999ea2e172dab8892f68e32e2d4d languageName: node linkType: hard -"@jupyterlab/markedparser-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/markedparser-extension@npm:4.1.7" +"@jupyterlab/markedparser-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/markedparser-extension@npm:4.1.8" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/codemirror": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/mermaid": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/codemirror": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/mermaid": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 "@lumino/coreutils": ^2.1.2 marked: ^9.1.2 marked-gfm-heading-id: ^3.1.0 marked-mangle: ^1.1.4 - checksum: 7615182615dd81b02dfccfae027b613b5f1aaa6cac2bed88ac290fdc9d04bcb3a92650ded9b00b72ad4247a084dcf015cdaa0a7af9b1a52d4a21312d33f63d94 + checksum: af2e19fca6a5204fb360c313427bc03f20a4ca0f3df6872fe07e6848fae02d9d3f7489e71b65462698304b8ad4e2fe4f86e2022a52db40b884dc32c83c683238 languageName: node linkType: hard -"@jupyterlab/mathjax-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/mathjax-extension@npm:4.1.7" +"@jupyterlab/mathjax-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/mathjax-extension@npm:4.1.8" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 "@lumino/coreutils": ^2.1.2 mathjax-full: ^3.2.2 - checksum: 90d438ffa1baede9511a3fcccb30d8d0a301c5ba3e4f9272c10ad8153487eeb64cb1c6144bd1b629383c3d39b197e0dce679a61401056e93e51682e5a2c7e230 + checksum: e0dbb1eedb2c35d41095a61cfe72fd6b5eb0859541c4d946de3d30d97a41a9964ff3d8d8a21d3bc5447519400c2be49a57fb695d1e5f678d828aceca43be4e39 languageName: node linkType: hard -"@jupyterlab/mermaid-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/mermaid-extension@npm:4.1.7" +"@jupyterlab/mermaid-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/mermaid-extension@npm:4.1.8" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/mermaid": ^4.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 - "@jupyterlab/translation": ^4.1.7 - checksum: 7cfe031533b1d1e1dcd5261dd8eea74a2307eee84768720ea23ca4f69c9086b6461cdb89a455d846112970b78d301cc15ee996114338db1588b2b75530a9cfe3 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/mermaid": ^4.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 + "@jupyterlab/translation": ^4.1.8 + checksum: 0571afa3d9f5816b07c6f2dff63a68932eba30d06773eab53c76e9b335ee9b33e56384783784c67022ba746d81b0e37c286dc8a3cf45e873774bae14a7361e95 languageName: node linkType: hard -"@jupyterlab/mermaid@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/mermaid@npm:4.1.7" +"@jupyterlab/mermaid@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/mermaid@npm:4.1.8" dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 mermaid: ^10.7.0 - checksum: 94d6eafc295c761ea46b49b173f0307c1c7eaafae7beff6f317b1c0cf4f1057eeff8bc0144483d16a945913e98f6056a550b31a7fad35f209a8833de86c596a1 + checksum: 5175f316677018d4fc00c8afb88ad5b38ad27d9f2feea6ec07f84002fdf79f92aa54589482e568ab4ee4f171fd110a484615d93779ec5d916ef2b0e40415e879 languageName: node linkType: hard -"@jupyterlab/metadataform-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/metadataform-extension@npm:4.1.7" - dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/metadataform": ^4.1.7 - "@jupyterlab/notebook": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 +"@jupyterlab/metadataform-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/metadataform-extension@npm:4.1.8" + dependencies: + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/metadataform": ^4.1.8 + "@jupyterlab/notebook": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/coreutils": ^2.1.2 - checksum: 5a07cb14dd18c5839d109210f48977a0e55a46770c2bc7a69479b67453b0fd4453438f83a104b0f8643315cd20f40b887c2db447db3a014ebf424bfa3cfa7266 + checksum: 2a3b996886f99d3a1f04aff20db5c9f6ca3b855b7b9e414a6b871bf5291dcc94332ee80fde025e40f0a11df07a39059d4b0144a26ca543a8309cf1acad740510 languageName: node linkType: hard -"@jupyterlab/metadataform@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/metadataform@npm:4.1.7" - dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/nbformat": ^4.1.7 - "@jupyterlab/notebook": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 +"@jupyterlab/metadataform@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/metadataform@npm:4.1.8" + dependencies: + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/nbformat": ^4.1.8 + "@jupyterlab/notebook": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.1 @@ -1772,53 +1772,53 @@ __metadata: "@rjsf/validator-ajv8": ^5.13.4 json-schema: ^0.4.0 react: ^18.2.0 - checksum: 58c732cacc083ffe634310f3329e11ce105a3ad09ae305ae065af8a5ccd14cf2ec97e3ab0277bd9860b832e87bce840e69ebf807ef74f746ac5f574c12b8e00e + checksum: eb056d32fa04c7d31e6e7252ee5d6ec93a86b3bad886e90efac9756803ca6a1ac47f27b93e9d23c1eb525a355642a703f40e8e6ea4a63ee9c33fb07847cca869 languageName: node linkType: hard -"@jupyterlab/nbformat@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/nbformat@npm:4.1.7" +"@jupyterlab/nbformat@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/nbformat@npm:4.1.8" dependencies: "@lumino/coreutils": ^2.1.2 - checksum: e54f3e7d59ecbd2f4d4ca8164ebef25affc8cf0f6cbb1500b7130a813c9eb8b86d6b0e8acc09b7cc3fead430c6af8ff110b38a76cad40b38fe23bee297d23273 + checksum: 11d89ae6fb2385a00e60ab84defc61e3cf28510b029ffbe9ffe27a75bc84f85e64a0d0d16b6deb7b57256fdd651d842a0626128def511e7755121a5a0a71f078 languageName: node linkType: hard -"@jupyterlab/notebook-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/notebook-extension@npm:4.1.7" +"@jupyterlab/notebook-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/notebook-extension@npm:4.1.8" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/cells": ^4.1.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/codemirror": ^4.1.7 - "@jupyterlab/completer": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docmanager": ^4.1.7 - "@jupyterlab/docmanager-extension": ^4.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/documentsearch": ^4.1.7 - "@jupyterlab/filebrowser": ^4.1.7 - "@jupyterlab/launcher": ^4.1.7 - "@jupyterlab/logconsole": ^4.1.7 - "@jupyterlab/lsp": ^4.1.7 - "@jupyterlab/mainmenu": ^4.1.7 - "@jupyterlab/metadataform": ^4.1.7 - "@jupyterlab/nbformat": ^4.1.7 - "@jupyterlab/notebook": ^4.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/property-inspector": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/statedb": ^4.1.7 - "@jupyterlab/statusbar": ^4.1.7 - "@jupyterlab/toc": ^6.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/cells": ^4.1.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/codemirror": ^4.1.8 + "@jupyterlab/completer": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docmanager": ^4.1.8 + "@jupyterlab/docmanager-extension": ^4.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/documentsearch": ^4.1.8 + "@jupyterlab/filebrowser": ^4.1.8 + "@jupyterlab/launcher": ^4.1.8 + "@jupyterlab/logconsole": ^4.1.8 + "@jupyterlab/lsp": ^4.1.8 + "@jupyterlab/mainmenu": ^4.1.8 + "@jupyterlab/metadataform": ^4.1.8 + "@jupyterlab/nbformat": ^4.1.8 + "@jupyterlab/notebook": ^4.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/property-inspector": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/statedb": ^4.1.8 + "@jupyterlab/statusbar": ^4.1.8 + "@jupyterlab/toc": ^6.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -1828,32 +1828,32 @@ __metadata: "@lumino/widgets": ^2.3.1 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: fa415de391dd7d526962a8fa2e328ef21332374c03f23324493990fcc4c4a754f5596023fab4b990c0917743da2dee8f2185515a574dd79b019029a52b69817d + checksum: 9c99a077c497275e2014843f414ee222428de3a25d8e5a1e1b2238d46b2abd75d4f473ec8b5c8d4cfa0ff3bc8e529d6c817a6882b8c1e98d87aff98cc0829b55 languageName: node linkType: hard -"@jupyterlab/notebook@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/notebook@npm:4.1.7" +"@jupyterlab/notebook@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/notebook@npm:4.1.8" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/cells": ^4.1.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/codemirror": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/documentsearch": ^4.1.7 - "@jupyterlab/lsp": ^4.1.7 - "@jupyterlab/nbformat": ^4.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/statusbar": ^4.1.7 - "@jupyterlab/toc": ^6.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/cells": ^4.1.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/codemirror": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/documentsearch": ^4.1.8 + "@jupyterlab/lsp": ^4.1.8 + "@jupyterlab/nbformat": ^4.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/statusbar": ^4.1.8 + "@jupyterlab/toc": ^6.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -1865,34 +1865,34 @@ __metadata: "@lumino/virtualdom": ^2.0.1 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 3154944a3e1a13dc353788dba62bd5883d5107e6ebc1b54c7f2fdfbd1eccd44e817bd20ff26ed02635452b1f95bf2b4a68eef39459851b5ab37db1714b3288f6 + checksum: ec1044f23cbbcaa5a6d1057f2f26640630a3c31f4d2fc9930da5dc6665fcf041ab4472952f13dd863eb29a91ed3af2e8a4eee5eff2d329b381b8f0a5865f52ef languageName: node linkType: hard -"@jupyterlab/observables@npm:~5.1.7": - version: 5.1.7 - resolution: "@jupyterlab/observables@npm:5.1.7" +"@jupyterlab/observables@npm:~5.1.8": + version: 5.1.8 + resolution: "@jupyterlab/observables@npm:5.1.8" 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: 94330741342b5d4bb1dc42760c0690236a3dd1b28c7ef027fa8f93dee2608c00775a7fa654218b1c279009a240a573dfac0dee89c43d90b01ca1edebc88db835 + checksum: c349b4fea92ef28019c0b3f5a100abdd4384554188d6741234e90e03f3f18b343a22ea8560f9d2eea1a00d4cd9514074d195ec850e930785f28a2f8a624a0f4d languageName: node linkType: hard -"@jupyterlab/outputarea@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/outputarea@npm:4.1.7" - dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/nbformat": ^4.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/translation": ^4.1.7 +"@jupyterlab/outputarea@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/outputarea@npm:4.1.8" + dependencies: + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/nbformat": ^4.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/translation": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -1900,201 +1900,201 @@ __metadata: "@lumino/properties": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: f038c6cd0b26919b8a21677a56ff88582b44e192b739cd353ff061b44324c012fd1f77dc9206f194a2536b29579e3bb080d58c68b149023131ea9c7825c303e8 + checksum: deb86addc7c43794442cdec2097946be949accd081aec51029cf0c6b53e4a950be1cfd9d9621059e580b9e45255a8bf971966ae8ecebec2358579462f7396b8b languageName: node linkType: hard -"@jupyterlab/pdf-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/pdf-extension@npm:4.1.7" +"@jupyterlab/pdf-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/pdf-extension@npm:4.1.8" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/rendermime-interfaces": ^3.9.8 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: 8aad12601b61898d38adaf920ce676328286352bb088a6e307498012b752eecda09d0063d4ac6f95c136724316235b0c00a212a35649cbbad45cdfc085a1647d + checksum: 3eb19ccd1ec613457198dd869ac0fe642677624f2656dab89e87f53ad4a5c212dfade6820cbde2669fdf2ac4d2421b8a281b6f508a9fdb3ca65460a8787f483f languageName: node linkType: hard -"@jupyterlab/pluginmanager-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/pluginmanager-extension@npm:4.1.7" +"@jupyterlab/pluginmanager-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/pluginmanager-extension@npm:4.1.8" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/pluginmanager": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/pluginmanager": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/coreutils": ^2.1.2 - checksum: 064f8cb05794fb052914092dab4d9bcd9982423d5367550035833d7538ef46260ccc91eff0a3a670ec6de4c02c1374b1e086c7d64e11a4c07a5558d1a4de7f35 + checksum: 90e91dbf0b929acccc3389f54cfbbab916c53d36a1d2cf8b68dec6b1ec9751c97e3c6201c8f26a30ce1d4055ad2c935b1322a52658dcc63fa1353afdaff9c4fd languageName: node linkType: hard -"@jupyterlab/pluginmanager@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/pluginmanager@npm:4.1.7" - dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 +"@jupyterlab/pluginmanager@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/pluginmanager@npm:4.1.8" + dependencies: + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 0444a821facbf7380b55ed2e09d4770ba81f4d0256c2c68572a20914144edc3d418b5c66222b8f7c6a8e27b6274c376ab0975f97c56ea3e80c36abac307bf54e + checksum: 238b6be396ae9cfd6d59453416103072eb8c6c319639719bb07b7e649148ae6dfcbd1f34e5bcce529c338a840ba1423bfea822dbd7b49df1673f047632b5bad6 languageName: node linkType: hard -"@jupyterlab/property-inspector@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/property-inspector@npm:4.1.7" +"@jupyterlab/property-inspector@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/property-inspector@npm:4.1.8" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: d9b20722cd97edcb965b11f5ad659a3642e97be515977040f18cceb6780a6c5cf1e9d291b2db4db4ec9556bd2026e66c70f35567dc37dd26fad09a8906f2fe9a + checksum: 629690f5404f35e795f99fbac8e15ce12485690a673e43575d4bbc0138ed0fb6c1517e4db1894b55fc17add13ddb775d559699585b635c319721086da36056ed languageName: node linkType: hard -"@jupyterlab/rendermime-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/rendermime-extension@npm:4.1.7" +"@jupyterlab/rendermime-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/rendermime-extension@npm:4.1.8" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/docmanager": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - checksum: 4c44e13b6ae3783e16ea750b7ea80e40be83cdfe87ed627d246dc1bd72bc4f60126d7ce00c1d77f368f88d8df61937804a13411889509e8e334e3ce08fa395d3 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/docmanager": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + checksum: 994a9ac7764f59e03c0646f1d576bf89cdec50c1b00f78b346a652a678a024bdc5d823d349299585587bf47b241e249316939a7e3f47813f64bb16382dd04cdc languageName: node linkType: hard -"@jupyterlab/rendermime-interfaces@npm:~3.9.7": - version: 3.9.7 - resolution: "@jupyterlab/rendermime-interfaces@npm:3.9.7" +"@jupyterlab/rendermime-interfaces@npm:~3.9.8": + version: 3.9.8 + resolution: "@jupyterlab/rendermime-interfaces@npm:3.9.8" dependencies: "@lumino/coreutils": ^1.11.0 || ^2.1.2 "@lumino/widgets": ^1.37.2 || ^2.3.1 - checksum: 09a53fb6f6764f55122cdb1b6130584232c4ee3ae46a8ce42c90edb692402e870ca4ccad7f35b772d6cad99014186dfea77d06731d2e70d51d1b47278c4c20c7 + checksum: d08bcecdf37a48de5c22bbb5b62a4ebe756408aaa27ae18b3a99d13863e5776c861db69ee1066b2262a1a93ce59f475b549a8d56fe5bc087d4a6ba27afbc168a languageName: node linkType: hard -"@jupyterlab/rendermime@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/rendermime@npm:4.1.7" - dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/nbformat": ^4.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/translation": ^4.1.7 +"@jupyterlab/rendermime@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/rendermime@npm:4.1.8" + dependencies: + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/nbformat": ^4.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/translation": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 lodash.escape: ^4.0.1 - checksum: 2bd9a359e6919c58683a9a6207249875463ce0e55cfd091c78960e889cea00b49a33ed1394a219db9f413b178b82bc71f0d2f1f8cfb6917f8574d0778ca43cad + checksum: 3c750598c212e2df43f45c32deba9d4b96dd676781e348771dd7d18c4c23e64e9bf3d25906a68be5368d898a4c81e48ff4215607c46df7934b17dc1ba672a697 languageName: node linkType: hard -"@jupyterlab/running-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/running-extension@npm:4.1.7" - dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 - "@jupyterlab/running": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 +"@jupyterlab/running-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/running-extension@npm:4.1.8" + dependencies: + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 + "@jupyterlab/running": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/commands": ^2.2.0 "@lumino/polling": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: ca1381553360e02fd31f3a038633cef071635a8b5c4ed8b5a0aa360834553957475422632eb469f21925161dbddc1bb87c133583242c3472b298386aed0d615e + checksum: d73039cb896568a65acf276b8f57fa1385f20dedc36535159248e7bfdafc89a9f660bf8c933173d7d76f0caaaf0a0bef1404e099359ca8f627ba414eed1946f0 languageName: node linkType: hard -"@jupyterlab/running@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/running@npm:4.1.7" +"@jupyterlab/running@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/running@npm:4.1.8" dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 9e7e70343f083b3f5b2848d32f6b3aad5f5dcaf003880b589ec59813c6c8e23871c8010ccfe214303b7eae36b8114a0a94ab926f269b7e84e091d0d989b3e3e4 + checksum: 21c121d978c8d4eaf12b2a2117f1a113aa68de1f6ac03e4d8b575aa3c8ba24db1548e987d69f9ee49d4874abef9dd2a4c1a07b2441d4aa7f870e08db24830bcb languageName: node linkType: hard -"@jupyterlab/services@npm:~7.1.7": - version: 7.1.7 - resolution: "@jupyterlab/services@npm:7.1.7" +"@jupyterlab/services@npm:~7.1.8": + version: 7.1.8 + resolution: "@jupyterlab/services@npm:7.1.8" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/nbformat": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/statedb": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/nbformat": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/statedb": ^4.1.8 "@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: 5c15ca3efc110a9885b2417b45b63e2954f13a91e73d9c378cd49a1dde261961c8a0a93c05fd019686a8f713865fc63719877352dd4f0f488feb075555579ca6 + checksum: 56143631829ee1081f6ad2f03343a47d83549d2463f9c4bfddb34e4770c74cf78cbcc5f54aca5338a0d5ce4d28e9b8d8301e6e04b4fb7f66570c49d1ceaf19e5 languageName: node linkType: hard -"@jupyterlab/settingeditor-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/settingeditor-extension@npm:4.1.7" - dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/pluginmanager": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/settingeditor": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/statedb": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 +"@jupyterlab/settingeditor-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/settingeditor-extension@npm:4.1.8" + dependencies: + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/pluginmanager": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/settingeditor": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/statedb": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/disposable": ^2.1.2 - checksum: 53464979aeab0096b9594a784dddfd34876a81c7924a26bc1e6da21ab82faa78176fc3c9945395e5ca8472faf1dd787ca373ad36443a300454d5bc9139ee9bef + checksum: 39a0cf34178daca7b9654e158b29c8f52e8fcd98297aafa8db7ed4fbf36414ded134a0c7655b60b07ef30ae9ad942389271328f9c3ef5473f396d83d50b1d9d0 languageName: node linkType: hard -"@jupyterlab/settingeditor@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/settingeditor@npm:4.1.7" - dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/inspector": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/statedb": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 +"@jupyterlab/settingeditor@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/settingeditor@npm:4.1.8" + dependencies: + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/inspector": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/statedb": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -2108,16 +2108,16 @@ __metadata: "@rjsf/validator-ajv8": ^5.13.4 json-schema: ^0.4.0 react: ^18.2.0 - checksum: 1a19d9ebe62b1f00fe8b8d0faf18101d7e4a374aa371c8d2fd71f063f6406b8fa856d01aa4da8db500b25376a2b329b64dcb452f4a29cf80ad2475e01998f71c + checksum: 983596d08bb57cba2f031a5352c8f3b078bb99b206d3df7958567ceccef3db84f1d3382e785a02898b2e8f75e1865611875465350564592b4f83330960f2e2de languageName: node linkType: hard -"@jupyterlab/settingregistry@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/settingregistry@npm:4.1.7" +"@jupyterlab/settingregistry@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/settingregistry@npm:4.1.8" dependencies: - "@jupyterlab/nbformat": ^4.1.7 - "@jupyterlab/statedb": ^4.1.7 + "@jupyterlab/nbformat": ^4.1.8 + "@jupyterlab/statedb": ^4.1.8 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -2127,18 +2127,18 @@ __metadata: json5: ^2.2.3 peerDependencies: react: ">=16" - checksum: 2361a561315172ff23547294eb430d57aa7c1635e5f99fffc2e52035ed453a84358f8aa3283832d7c8e90ccd0f1c8dbcdb28460bf79050b445c2892bcc9c6e5d + checksum: 90067142211fdaf6e9a6e0029fe1bc4c9ae05fa8e88e37f912373a0365bc8d507ef44e0bf83deb1e0bd0855a2cf05b0f541db38fafe3bc37d83422df8671e56a languageName: node linkType: hard -"@jupyterlab/shortcuts-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/shortcuts-extension@npm:4.1.7" +"@jupyterlab/shortcuts-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/shortcuts-extension@npm:4.1.8" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -2147,41 +2147,41 @@ __metadata: "@lumino/keyboard": ^2.0.1 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: c1d978dc5bc41d6f496e50a211bc26dfeb8c5ebd37c10aa87accadb7325ec60385b7245a5399eb33e11e323e3c1c4b931b3ea24c3f509b4414c653182a5b44f3 + checksum: 79fe5ed0fdbc08651c67b61cdcf14393ac74a5112de15fde4cafce93f1b2fb70b39a21422134e9bceab52da4454957b7b5186f92be9573f136d6a81cff87ec93 languageName: node linkType: hard -"@jupyterlab/statedb@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/statedb@npm:4.1.7" +"@jupyterlab/statedb@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/statedb@npm:4.1.8" dependencies: "@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: 5bf9ac95790373208c4e305ba573fd009577311386b6d6f7b71426177a6b5ddc3f511cdabd46deeefb560cd07aa1b68dc1d4013c0cc10a18ab926e11239968f0 + checksum: 28983e98affec8b8d6bb8e0cbacfe2c74d1ae48af8e69fddc7f457dcd87210adf5e39dafd21bcad24cfe572f45758c7531cd8d991e9eda894e63392b544bf09d languageName: node linkType: hard -"@jupyterlab/statusbar-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/statusbar-extension@npm:4.1.7" +"@jupyterlab/statusbar-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/statusbar-extension@npm:4.1.8" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/statusbar": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - checksum: 0eb2cf2a82adc1760df6fb99a203b53c06b74bd7c6812f7c525ab5bd8b1050b2c328edde73467e06d904768aef1453269ebbe5ef5c8c2bdd367f63ac911db06b + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/statusbar": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + checksum: a1c6ea976f62f7bb3cd543339468f69309db1b2ce06010519282c94a8e7346b62c7b29e19b519a439f30dce562cbdecd9332a56df33a067dfd9707bd1b95d744 languageName: node linkType: hard -"@jupyterlab/statusbar@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/statusbar@npm:4.1.7" +"@jupyterlab/statusbar@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/statusbar@npm:4.1.8" dependencies: - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -2189,36 +2189,36 @@ __metadata: "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: 2a9c81f15c4d2d2c2db6ea931dd6b70b42899f62c25cc8a29788c7a47382275e474ce735f14d5b3e9f84dc26f3d716f54f1573db581c3fba97c7281ff155c4b6 + checksum: eb3094b9511334a82b92686ad7010763fc8c101a9631ee558462cc71d6ca3e7ad485a927e777da1f2c1aba8398c5c2d1ec65c48daae69317267944255197dbe7 languageName: node linkType: hard -"@jupyterlab/terminal-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/terminal-extension@npm:4.1.7" - dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/launcher": ^4.1.7 - "@jupyterlab/mainmenu": ^4.1.7 - "@jupyterlab/running": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/terminal": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 +"@jupyterlab/terminal-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/terminal-extension@npm:4.1.8" + dependencies: + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/launcher": ^4.1.8 + "@jupyterlab/mainmenu": ^4.1.8 + "@jupyterlab/running": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/terminal": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/widgets": ^2.3.1 - checksum: 1604bd2041c4c8eb52651f58846bfbf7e04703d7e27beac39a1f4ddf2a5154406e594ceb540c525f404350ee9ed20dc47f58572c369ce91250e5751a584ec118 + checksum: 801e4bd73e59323ebd844ef4e32ed3521253aaae03141c4d20a6942851b22a2248e6bc83a5a1c4dde03c349ffd2ddb8c853add4ccc9818969f4a56c3e962e0e5 languageName: node linkType: hard -"@jupyterlab/terminal@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/terminal@npm:4.1.7" +"@jupyterlab/terminal@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/terminal@npm:4.1.8" dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/translation": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/domutils": ^2.0.1 "@lumino/messaging": ^2.0.1 @@ -2228,149 +2228,149 @@ __metadata: xterm-addon-fit: ~0.7.0 xterm-addon-web-links: ~0.8.0 xterm-addon-webgl: ~0.14.0 - checksum: ca3cfd7f85390bf7395c657750b1a6153937b1bca3e7ca06c5ea0f661b1d3789878594f3a6c317b7c0522742c6811148f04577bcd1ad76532d3fe8e824f8d6c2 + checksum: 575023ebb481ffba5b218cef2fd2dc815cad790e1131f761d640c8baae42c57146d1333aba0a344fa971bb2700f7fd55024c655b9bb8ccdd03197ee85e66b1e6 languageName: node linkType: hard -"@jupyterlab/theme-dark-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/theme-dark-extension@npm:4.1.7" +"@jupyterlab/theme-dark-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/theme-dark-extension@npm:4.1.8" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/translation": ^4.1.7 - checksum: 9676a02b4d960bb9a334e0b9782a7ddd7e896ea12ce2ae1605e6a81a0c940add16d72fb145da76e1a0f89a9fbf4d117e98b521c438bad0e538237bfd2e393db7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/translation": ^4.1.8 + checksum: 444c863c35820476538f62c47106a343519a0918411d999faae20a0c433a3df8157bda25b186f2bf1e09b0291d2313e3285acf32a331da79e74f63716083e3a4 languageName: node linkType: hard -"@jupyterlab/theme-light-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/theme-light-extension@npm:4.1.7" +"@jupyterlab/theme-light-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/theme-light-extension@npm:4.1.8" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/translation": ^4.1.7 - checksum: 1e63b40e9ad05ea8a6fe9f24a9bb7f5fead995a509238ea9b97525cec68b9eea7c85118742f60174bc7fe049783459bd7d052e116f8f8959dd097e0346d38c80 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/translation": ^4.1.8 + checksum: 20c558c3fc0315fed895ab937828aaa923a859682fa1ced89a6218fbc9fa40a7507a621fb9b0c7e14e29255cdd0adcf39ccc1ac4c684b7dacec5243bbb50f4da languageName: node linkType: hard -"@jupyterlab/toc-extension@npm:~6.1.7": - version: 6.1.7 - resolution: "@jupyterlab/toc-extension@npm:6.1.7" +"@jupyterlab/toc-extension@npm:~6.1.8": + version: 6.1.8 + resolution: "@jupyterlab/toc-extension@npm:6.1.8" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/toc": ^6.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 - checksum: 56e8204d612a9034ff27b60de00c8a5a5e817d6baf3b28329c4b6e48e168460ca08989954c444907d3254a8effc61d08298b6d57449b0eabbe72a4655ff15d69 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/toc": ^6.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 + checksum: a5197f94ca4922693493e6cea79f5b55eb8638274b8e41e1b57f3e86867c01e1488c2269a685b700f016a689c5fa1ab27172dae83d66db00f1bc86e0fa00b79c languageName: node linkType: hard -"@jupyterlab/toc@npm:~6.1.7": - version: 6.1.7 - resolution: "@jupyterlab/toc@npm:6.1.7" - dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 +"@jupyterlab/toc@npm:~6.1.8": + version: 6.1.8 + resolution: "@jupyterlab/toc@npm:6.1.8" + dependencies: + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 react: ^18.2.0 - checksum: f003cdb01b0d235e24baceb781e6e0a69093f6ffd4bb75d12de9208e7225c04bbdd5575b4f9fd7daea50f65aa4d76c39962c2a7aa0cda645e944649e6275c902 + checksum: 6dadf19c32fadeccc19df6ba31287c929a7a09ac41ecaf53fbc88471d4c62a16193555c3fb391ecc4e495c9f6cdde7d0519c77ed0b69fbc90da9e5b16bb924d3 languageName: node linkType: hard -"@jupyterlab/tooltip-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/tooltip-extension@npm:4.1.7" - dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/console": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/fileeditor": ^4.1.7 - "@jupyterlab/notebook": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/tooltip": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 +"@jupyterlab/tooltip-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/tooltip-extension@npm:4.1.8" + dependencies: + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/console": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/fileeditor": ^4.1.8 + "@jupyterlab/notebook": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/tooltip": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 - checksum: 84f2099e4381b9c859965a9c88e0308e5d085002e9dd3cae5662b6b5bbcab76eb689789b96ffa467b46ca10e9e7f9bb325813e2b879b3f627b376a0b124df45a + checksum: 9640f509254a493d7b3cc9541512799e14f657c52fccfbaa2f4f48750cccb39be00ee858e7affbe64a5cf48f1a42602f78a82e6cf5398373e01c07782e35a36a languageName: node linkType: hard -"@jupyterlab/tooltip@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/tooltip@npm:4.1.7" +"@jupyterlab/tooltip@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/tooltip@npm:4.1.8" dependencies: - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.1 - checksum: 05f4bf0d6e38890df6e8aa9cdf599dd40dc8ae030f39da962b4f4c466a1e8e0fd89d485d6a7a39517f222a7cecca3f5e314ffddf2f4042f70b8c6abf9e94d47f + checksum: 1b0e7ee5db9ec12e7e47416b905b0c04d78e4d3552c75e41c5acd9d86a445bd902fe1bcfbeb43689649b18765453d10d330346eee9c0d71c14dc090840a58564 languageName: node linkType: hard -"@jupyterlab/translation-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/translation-extension@npm:4.1.7" +"@jupyterlab/translation-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/translation-extension@npm:4.1.8" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/mainmenu": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - checksum: 0de4523c8bcc5191485b8dcb64cc5b8800dd7f8d02192dde56555cd3904a43e1bdf81a6e5c2a9dbd833a144ef4cfdc2bc0a6f792975b09eecac8ce88ac8ab7c3 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/mainmenu": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + checksum: b8e14caca5dc4e32e2ae2f724f45fe819433153d3063375e599499a5008658523faeacf2f87a2579daeb0afd8fa75f160bf8d1463c02c2afffa666851e38b3cd languageName: node linkType: hard -"@jupyterlab/translation@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/translation@npm:4.1.7" +"@jupyterlab/translation@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/translation@npm:4.1.8" dependencies: - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/statedb": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/statedb": ^4.1.8 "@lumino/coreutils": ^2.1.2 - checksum: c28ed1451e68501078b1de1f665552beb56adc522ecb0e63a6e96293abd19c8638cbbe1c7974d9b57663bf5aca95e393ed81877e46d2cc8aaa9f072091f66969 + checksum: 7de872e52ffa0d2e4579c26b906ae7f98fcab6767ff85a4ce157f70be26d9edcf3410e94931ea9c8c1a1c48f4fc5f5e410b396761164dc8314ec1157314bcb9e languageName: node linkType: hard -"@jupyterlab/ui-components-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/ui-components-extension@npm:4.1.7" +"@jupyterlab/ui-components-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/ui-components-extension@npm:4.1.8" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 - checksum: ce3923ed57759bfba65137392c7b56cbe6dbf8440d09fb982d7b9faf6c7b6d87b4172517801a394990ec38cd6d1f3abaaeefc691b68acc0ac4b9762c2e77fd17 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 + checksum: 4251ae76514a910e270315263ebaeab4a677689a0be48209935ad4ed5067586824c62c0739611678ef7db7200c7974a71b1dc1590f1aa4f2e22922a3c0001924 languageName: node linkType: hard -"@jupyterlab/ui-components@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/ui-components@npm:4.1.7" +"@jupyterlab/ui-components@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/ui-components@npm:4.1.8" dependencies: "@jupyter/react-components": ^0.15.2 "@jupyter/web-components": ^0.15.2 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 - "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 + "@jupyterlab/translation": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -2388,21 +2388,21 @@ __metadata: typestyle: ^2.0.4 peerDependencies: react: ^18.2.0 - checksum: 4ec9069dc49e5a5f6b6801654dfa76cd93aac593285ccf5982c3742f34d1537d17e1a5724d870379f23a7b854de048bd0dbf5ad77566a12e4a09c1591e3e81ef + checksum: 6a95597b8c71cd31b3f7a39cc61dc094fc6fede5b0b6bac61ff9df0a5757542d419e653f3a2527a15cb0dc9e7b7fcd2568101e9063878ce260f6adb486787e69 languageName: node linkType: hard -"@jupyterlab/vega5-extension@npm:~4.1.7": - version: 4.1.7 - resolution: "@jupyterlab/vega5-extension@npm:4.1.7" +"@jupyterlab/vega5-extension@npm:~4.1.8": + version: 4.1.8 + resolution: "@jupyterlab/vega5-extension@npm:4.1.8" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/rendermime-interfaces": ^3.9.8 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 vega: ^5.20.0 vega-embed: ^6.2.1 vega-lite: ^5.6.1-next.1 - checksum: c07da97e68149fd1e2121c3fae501dbece27e28dd4ea6d403def4c98b7363e2459fa774ae9919226c8755c2a811dbb4e0d43010bfb98c80249dce741af3c4139 + checksum: e56c29ee7ba5517969c4aa485fe161e39882101e33455cbf6ea5c1708e846b6bfc12472f67fb629505c8fd1a71b2dba78326017a9099cf57839f9a66e34f2753 languageName: node linkType: hard diff --git a/jupyterlab/tests/mock_packages/extension/package.json b/jupyterlab/tests/mock_packages/extension/package.json index 795e7724b6b4..5e59f62fe058 100644 --- a/jupyterlab/tests/mock_packages/extension/package.json +++ b/jupyterlab/tests/mock_packages/extension/package.json @@ -1,12 +1,12 @@ { "name": "@jupyterlab/mock-extension", - "version": "4.1.7", + "version": "4.1.8", "private": true, "dependencies": { - "@jupyterlab/launcher": "^4.1.7" + "@jupyterlab/launcher": "^4.1.8" }, "devDependencies": { - "@jupyterlab/builder": "^4.1.7" + "@jupyterlab/builder": "^4.1.8" }, "jupyterlab": { "extension": true, diff --git a/jupyterlab/tests/mock_packages/interop/consumer/package.json b/jupyterlab/tests/mock_packages/interop/consumer/package.json index 386155e95a32..65e495959b7a 100644 --- a/jupyterlab/tests/mock_packages/interop/consumer/package.json +++ b/jupyterlab/tests/mock_packages/interop/consumer/package.json @@ -1,12 +1,12 @@ { "name": "@jupyterlab/mock-consumer", - "version": "4.1.7", + "version": "4.1.8", "private": true, "dependencies": { - "@jupyterlab/mock-token": "^4.1.7" + "@jupyterlab/mock-token": "^4.1.8" }, "devDependencies": { - "@jupyterlab/builder": "^4.1.7" + "@jupyterlab/builder": "^4.1.8" }, "jupyterlab": { "extension": true, diff --git a/jupyterlab/tests/mock_packages/interop/provider/package.json b/jupyterlab/tests/mock_packages/interop/provider/package.json index 7c91d8c4db06..837a94f51957 100644 --- a/jupyterlab/tests/mock_packages/interop/provider/package.json +++ b/jupyterlab/tests/mock_packages/interop/provider/package.json @@ -1,12 +1,12 @@ { "name": "@jupyterlab/mock-provider", - "version": "4.1.7", + "version": "4.1.8", "private": true, "dependencies": { - "@jupyterlab/mock-token": "^4.1.7" + "@jupyterlab/mock-token": "^4.1.8" }, "devDependencies": { - "@jupyterlab/builder": "^4.1.7" + "@jupyterlab/builder": "^4.1.8" }, "jupyterlab": { "extension": true diff --git a/jupyterlab/tests/mock_packages/interop/token/package.json b/jupyterlab/tests/mock_packages/interop/token/package.json index 7b95ad6fb582..492978609e0b 100644 --- a/jupyterlab/tests/mock_packages/interop/token/package.json +++ b/jupyterlab/tests/mock_packages/interop/token/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mock-token", - "version": "4.1.7", + "version": "4.1.8", "private": true, "dependencies": { "@lumino/coreutils": "^2.1.2" diff --git a/packages/application-extension/package.json b/packages/application-extension/package.json index c16c6309bec9..d4190d6dc310 100644 --- a/packages/application-extension/package.json +++ b/packages/application-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/application-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Application Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,15 +38,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/property-inspector": "^4.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/statedb": "^4.1.7", - "@jupyterlab/statusbar": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/property-inspector": "^4.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/statedb": "^4.1.8", + "@jupyterlab/statusbar": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", diff --git a/packages/application/package.json b/packages/application/package.json index a76c303d103c..0e0c0e8a49af 100644 --- a/packages/application/package.json +++ b/packages/application/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/application", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Application", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -43,15 +43,15 @@ }, "dependencies": { "@fortawesome/fontawesome-free": "^5.12.0", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/docregistry": "^4.1.7", - "@jupyterlab/rendermime": "^4.1.7", - "@jupyterlab/rendermime-interfaces": "^3.9.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/statedb": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/docregistry": "^4.1.8", + "@jupyterlab/rendermime": "^4.1.8", + "@jupyterlab/rendermime-interfaces": "^3.9.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/statedb": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/algorithm": "^2.0.1", "@lumino/application": "^2.3.0", "@lumino/commands": "^2.2.0", @@ -64,7 +64,7 @@ "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/apputils-extension/package.json b/packages/apputils-extension/package.json index c0161a7392e4..6084106f2623 100644 --- a/packages/apputils-extension/package.json +++ b/packages/apputils-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/apputils-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Application Utilities Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,19 +38,19 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/docregistry": "^4.1.7", - "@jupyterlab/filebrowser": "^4.1.7", - "@jupyterlab/mainmenu": "^4.1.7", - "@jupyterlab/rendermime-interfaces": "^3.9.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/statedb": "^4.1.7", - "@jupyterlab/statusbar": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/docregistry": "^4.1.8", + "@jupyterlab/filebrowser": "^4.1.8", + "@jupyterlab/mainmenu": "^4.1.8", + "@jupyterlab/rendermime-interfaces": "^3.9.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/statedb": "^4.1.8", + "@jupyterlab/statusbar": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", diff --git a/packages/apputils/package.json b/packages/apputils/package.json index 7557bd30f9f4..b4a0da42ed97 100644 --- a/packages/apputils/package.json +++ b/packages/apputils/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/apputils", - "version": "4.2.7", + "version": "4.2.8", "description": "JupyterLab - Application Utilities", "keywords": [ "jupyter", @@ -45,15 +45,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/observables": "^5.1.7", - "@jupyterlab/rendermime-interfaces": "^3.9.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/statedb": "^4.1.7", - "@jupyterlab/statusbar": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/observables": "^5.1.8", + "@jupyterlab/rendermime-interfaces": "^3.9.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/statedb": "^4.1.8", + "@jupyterlab/statusbar": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", @@ -68,7 +68,7 @@ "sanitize-html": "~2.7.3" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "@types/sanitize-html": "^2.3.1", "jest": "^29.2.0", diff --git a/packages/attachments/package.json b/packages/attachments/package.json index 255d74b90841..f4bb19df82ef 100644 --- a/packages/attachments/package.json +++ b/packages/attachments/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/attachments", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Notebook Cell Attachments", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,10 +37,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/nbformat": "^4.1.7", - "@jupyterlab/observables": "^5.1.7", - "@jupyterlab/rendermime": "^4.1.7", - "@jupyterlab/rendermime-interfaces": "^3.9.7", + "@jupyterlab/nbformat": "^4.1.8", + "@jupyterlab/observables": "^5.1.8", + "@jupyterlab/rendermime": "^4.1.8", + "@jupyterlab/rendermime-interfaces": "^3.9.8", "@lumino/disposable": "^2.1.2", "@lumino/signaling": "^2.1.2" }, diff --git a/packages/cell-toolbar-extension/package.json b/packages/cell-toolbar-extension/package.json index f801a7085c13..89eef16287ff 100644 --- a/packages/cell-toolbar-extension/package.json +++ b/packages/cell-toolbar-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/cell-toolbar-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "Extension for cell toolbar adapted from jlab-enhanced-cell-toolbar", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -34,11 +34,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/cell-toolbar": "^4.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/translation": "^4.1.7" + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/cell-toolbar": "^4.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/translation": "^4.1.8" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/cell-toolbar/package.json b/packages/cell-toolbar/package.json index 4973eae689e9..72b0da872ca2 100644 --- a/packages/cell-toolbar/package.json +++ b/packages/cell-toolbar/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/cell-toolbar", - "version": "4.1.7", + "version": "4.1.8", "description": "Contextual cell toolbar adapted from jlab-enhanced-cell-toolbar", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,12 +41,12 @@ }, "dependencies": { "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/cells": "^4.1.7", - "@jupyterlab/docregistry": "^4.1.7", - "@jupyterlab/notebook": "^4.1.7", - "@jupyterlab/observables": "^5.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/cells": "^4.1.8", + "@jupyterlab/docregistry": "^4.1.8", + "@jupyterlab/notebook": "^4.1.8", + "@jupyterlab/observables": "^5.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/disposable": "^2.1.2", @@ -54,7 +54,7 @@ "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/cells/package.json b/packages/cells/package.json index c3359cd8ef53..7eec627cb1e8 100644 --- a/packages/cells/package.json +++ b/packages/cells/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/cells", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Notebook Cells", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -46,21 +46,21 @@ "@codemirror/state": "^6.2.0", "@codemirror/view": "^6.9.6", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/attachments": "^4.1.7", - "@jupyterlab/codeeditor": "^4.1.7", - "@jupyterlab/codemirror": "^4.1.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/documentsearch": "^4.1.7", - "@jupyterlab/filebrowser": "^4.1.7", - "@jupyterlab/nbformat": "^4.1.7", - "@jupyterlab/observables": "^5.1.7", - "@jupyterlab/outputarea": "^4.1.7", - "@jupyterlab/rendermime": "^4.1.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/toc": "^6.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/attachments": "^4.1.8", + "@jupyterlab/codeeditor": "^4.1.8", + "@jupyterlab/codemirror": "^4.1.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/documentsearch": "^4.1.8", + "@jupyterlab/filebrowser": "^4.1.8", + "@jupyterlab/nbformat": "^4.1.8", + "@jupyterlab/observables": "^5.1.8", + "@jupyterlab/outputarea": "^4.1.8", + "@jupyterlab/rendermime": "^4.1.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/toc": "^6.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/domutils": "^2.0.1", @@ -73,7 +73,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "@types/react": "^18.0.26", "jest": "^29.2.0", diff --git a/packages/celltags-extension/package.json b/packages/celltags-extension/package.json index 9006ab472d01..7f0e241709bd 100644 --- a/packages/celltags-extension/package.json +++ b/packages/celltags-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/celltags-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "An extension for manipulating tags in cell metadata", "keywords": [ "jupyter", @@ -40,10 +40,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/notebook": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/notebook": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/algorithm": "^2.0.1", "@rjsf/utils": "^5.13.4", "react": "^18.2.0" diff --git a/packages/codeeditor/package.json b/packages/codeeditor/package.json index ab6000887f1b..8ba4030ac65d 100644 --- a/packages/codeeditor/package.json +++ b/packages/codeeditor/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/codeeditor", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Abstract Code Editor", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -44,13 +44,13 @@ "dependencies": { "@codemirror/state": "^6.2.0", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/nbformat": "^4.1.7", - "@jupyterlab/observables": "^5.1.7", - "@jupyterlab/statusbar": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/nbformat": "^4.1.8", + "@jupyterlab/observables": "^5.1.8", + "@jupyterlab/statusbar": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/dragdrop": "^2.1.4", @@ -60,7 +60,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/codemirror-extension/package.json b/packages/codemirror-extension/package.json index 584b9194c231..c77d279d768d 100644 --- a/packages/codemirror-extension/package.json +++ b/packages/codemirror-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/codemirror-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - CodeMirror Provider Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,13 +42,13 @@ "@codemirror/language": "^6.6.0", "@codemirror/legacy-modes": "^6.3.2", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/codeeditor": "^4.1.7", - "@jupyterlab/codemirror": "^4.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/statusbar": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/codeeditor": "^4.1.8", + "@jupyterlab/codemirror": "^4.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/statusbar": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/coreutils": "^2.1.2", "@lumino/widgets": "^2.3.1", "@rjsf/utils": "^5.13.4", diff --git a/packages/codemirror/package.json b/packages/codemirror/package.json index a50e4d47d7ed..33c732ae911c 100644 --- a/packages/codemirror/package.json +++ b/packages/codemirror/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/codemirror", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - CodeMirror Editor Provider", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -59,11 +59,11 @@ "@codemirror/state": "^6.2.0", "@codemirror/view": "^6.9.6", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/codeeditor": "^4.1.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/documentsearch": "^4.1.7", - "@jupyterlab/nbformat": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/codeeditor": "^4.1.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/documentsearch": "^4.1.8", + "@jupyterlab/nbformat": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", "@lezer/common": "^1.0.2", "@lezer/generator": "^1.2.2", "@lezer/highlight": "^1.1.4", @@ -74,7 +74,7 @@ "yjs": "^13.5.40" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@lezer/generator": "^1.2.2", "@lezer/lr": "^1.3.3", "@types/jest": "^29.2.0", diff --git a/packages/completer-extension/package.json b/packages/completer-extension/package.json index 2dc337fb9fc6..7a706f527dba 100644 --- a/packages/completer-extension/package.json +++ b/packages/completer-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/completer-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Completer Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,11 +38,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/completer": "^4.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/completer": "^4.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", "@rjsf/utils": "^5.13.4", diff --git a/packages/completer/package.json b/packages/completer/package.json index b479e9e3cb2e..f3253a39838d 100644 --- a/packages/completer/package.json +++ b/packages/completer/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/completer", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Completer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -49,16 +49,16 @@ "@codemirror/state": "^6.2.0", "@codemirror/view": "^6.9.6", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/codeeditor": "^4.1.7", - "@jupyterlab/codemirror": "^4.1.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/rendermime": "^4.1.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/statedb": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/codeeditor": "^4.1.8", + "@jupyterlab/codemirror": "^4.1.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/rendermime": "^4.1.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/statedb": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -68,7 +68,7 @@ "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/console-extension/package.json b/packages/console-extension/package.json index eb535e607e42..38df3ef1e8ac 100644 --- a/packages/console-extension/package.json +++ b/packages/console-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/console-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Code Console Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,18 +38,18 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/codeeditor": "^4.1.7", - "@jupyterlab/completer": "^4.1.7", - "@jupyterlab/console": "^4.1.7", - "@jupyterlab/filebrowser": "^4.1.7", - "@jupyterlab/launcher": "^4.1.7", - "@jupyterlab/mainmenu": "^4.1.7", - "@jupyterlab/rendermime": "^4.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/codeeditor": "^4.1.8", + "@jupyterlab/completer": "^4.1.8", + "@jupyterlab/console": "^4.1.8", + "@jupyterlab/filebrowser": "^4.1.8", + "@jupyterlab/launcher": "^4.1.8", + "@jupyterlab/mainmenu": "^4.1.8", + "@jupyterlab/rendermime": "^4.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", diff --git a/packages/console/package.json b/packages/console/package.json index 649a4e3e6e30..97e157a98b58 100644 --- a/packages/console/package.json +++ b/packages/console/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/console", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Code Console", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -46,16 +46,16 @@ "@codemirror/state": "^6.2.0", "@codemirror/view": "^6.9.6", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/cells": "^4.1.7", - "@jupyterlab/codeeditor": "^4.1.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/nbformat": "^4.1.7", - "@jupyterlab/observables": "^5.1.7", - "@jupyterlab/rendermime": "^4.1.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/cells": "^4.1.8", + "@jupyterlab/codeeditor": "^4.1.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/nbformat": "^4.1.8", + "@jupyterlab/observables": "^5.1.8", + "@jupyterlab/rendermime": "^4.1.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/dragdrop": "^2.1.4", @@ -64,8 +64,8 @@ "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/codemirror": "^4.1.7", - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/codemirror": "^4.1.8", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/coreutils/package.json b/packages/coreutils/package.json index ae47408042b1..1c0d4a575564 100644 --- a/packages/coreutils/package.json +++ b/packages/coreutils/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/coreutils", - "version": "6.1.7", + "version": "6.1.8", "description": "JupyterLab - Core Utilities", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { diff --git a/packages/csvviewer-extension/package.json b/packages/csvviewer-extension/package.json index 2fb86b2039f4..2a00849b7b16 100644 --- a/packages/csvviewer-extension/package.json +++ b/packages/csvviewer-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/csvviewer-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - CSV Widget Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,15 +38,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/csvviewer": "^4.1.7", - "@jupyterlab/docregistry": "^4.1.7", - "@jupyterlab/documentsearch": "^4.1.7", - "@jupyterlab/mainmenu": "^4.1.7", - "@jupyterlab/observables": "^5.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/csvviewer": "^4.1.8", + "@jupyterlab/docregistry": "^4.1.8", + "@jupyterlab/documentsearch": "^4.1.8", + "@jupyterlab/mainmenu": "^4.1.8", + "@jupyterlab/observables": "^5.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", "@lumino/datagrid": "^2.3.0", "@lumino/widgets": "^2.3.1" }, diff --git a/packages/csvviewer/package.json b/packages/csvviewer/package.json index c18df69d5500..17a3813c321e 100644 --- a/packages/csvviewer/package.json +++ b/packages/csvviewer/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/csvviewer", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - CSV Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,10 +42,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/docregistry": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/docregistry": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/coreutils": "^2.1.2", "@lumino/datagrid": "^2.3.0", "@lumino/disposable": "^2.1.2", @@ -54,7 +54,7 @@ "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "canvas": "^2.11.2", "csv-spectrum": "^1.0.0", diff --git a/packages/debugger-extension/package.json b/packages/debugger-extension/package.json index ce0f86ac7564..c50d702f81d3 100644 --- a/packages/debugger-extension/package.json +++ b/packages/debugger-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/debugger-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Debugger Extension", "keywords": [ "jupyter", @@ -44,24 +44,24 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/cells": "^4.1.7", - "@jupyterlab/codeeditor": "^4.1.7", - "@jupyterlab/console": "^4.1.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/debugger": "^4.1.7", - "@jupyterlab/docregistry": "^4.1.7", - "@jupyterlab/fileeditor": "^4.1.7", - "@jupyterlab/logconsole": "^4.1.7", - "@jupyterlab/notebook": "^4.1.7", - "@jupyterlab/rendermime": "^4.1.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/translation": "^4.1.7" + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/cells": "^4.1.8", + "@jupyterlab/codeeditor": "^4.1.8", + "@jupyterlab/console": "^4.1.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/debugger": "^4.1.8", + "@jupyterlab/docregistry": "^4.1.8", + "@jupyterlab/fileeditor": "^4.1.8", + "@jupyterlab/logconsole": "^4.1.8", + "@jupyterlab/notebook": "^4.1.8", + "@jupyterlab/rendermime": "^4.1.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/translation": "^4.1.8" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "@types/react-dom": "^18.0.9", "rimraf": "~5.0.5", diff --git a/packages/debugger/package.json b/packages/debugger/package.json index e088d89a67e7..c7044286854d 100644 --- a/packages/debugger/package.json +++ b/packages/debugger/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/debugger", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Debugger Extension", "keywords": [ "jupyter", @@ -52,21 +52,21 @@ "@codemirror/state": "^6.2.0", "@codemirror/view": "^6.9.6", "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/cells": "^4.1.7", - "@jupyterlab/codeeditor": "^4.1.7", - "@jupyterlab/codemirror": "^4.1.7", - "@jupyterlab/console": "^4.1.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/docregistry": "^4.1.7", - "@jupyterlab/fileeditor": "^4.1.7", - "@jupyterlab/notebook": "^4.1.7", - "@jupyterlab/observables": "^5.1.7", - "@jupyterlab/rendermime": "^4.1.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/cells": "^4.1.8", + "@jupyterlab/codeeditor": "^4.1.8", + "@jupyterlab/codemirror": "^4.1.8", + "@jupyterlab/console": "^4.1.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/docregistry": "^4.1.8", + "@jupyterlab/fileeditor": "^4.1.8", + "@jupyterlab/notebook": "^4.1.8", + "@jupyterlab/observables": "^5.1.8", + "@jupyterlab/rendermime": "^4.1.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", @@ -80,7 +80,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "canvas": "^2.11.2", "jest": "^29.2.0", diff --git a/packages/docmanager-extension/package.json b/packages/docmanager-extension/package.json index 6449975e7c66..e15fe61980c3 100644 --- a/packages/docmanager-extension/package.json +++ b/packages/docmanager-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/docmanager-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Document Manager Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,16 +38,16 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/docmanager": "^4.1.7", - "@jupyterlab/docregistry": "^4.1.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/statusbar": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/docmanager": "^4.1.8", + "@jupyterlab/docregistry": "^4.1.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/statusbar": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", diff --git a/packages/docmanager/package.json b/packages/docmanager/package.json index cd7d6c582750..2a1100ccb9c2 100644 --- a/packages/docmanager/package.json +++ b/packages/docmanager/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/docmanager", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Document Manager", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,13 +42,13 @@ "watch": "npm run test -- --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/docregistry": "^4.1.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/statusbar": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/docregistry": "^4.1.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/statusbar": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -59,7 +59,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/docregistry/package.json b/packages/docregistry/package.json index abae2b9e725e..d5dc2894a93c 100644 --- a/packages/docregistry/package.json +++ b/packages/docregistry/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/docregistry", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Document Registry", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -43,15 +43,15 @@ }, "dependencies": { "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/codeeditor": "^4.1.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/observables": "^5.1.7", - "@jupyterlab/rendermime": "^4.1.7", - "@jupyterlab/rendermime-interfaces": "^3.9.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/codeeditor": "^4.1.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/observables": "^5.1.8", + "@jupyterlab/rendermime": "^4.1.8", + "@jupyterlab/rendermime-interfaces": "^3.9.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -62,7 +62,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/documentsearch-extension/package.json b/packages/documentsearch-extension/package.json index f013e701cd53..e993c7ef9f47 100644 --- a/packages/documentsearch-extension/package.json +++ b/packages/documentsearch-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/documentsearch-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Document Search Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -34,11 +34,11 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/documentsearch": "^4.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/documentsearch": "^4.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", "@lumino/commands": "^2.2.0", "@lumino/widgets": "^2.3.1" }, diff --git a/packages/documentsearch/package.json b/packages/documentsearch/package.json index 7d31f00afac1..49d1c97a84d9 100644 --- a/packages/documentsearch/package.json +++ b/packages/documentsearch/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/documentsearch", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Document Search", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,9 +38,9 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -51,7 +51,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/extensionmanager-extension/package.json b/packages/extensionmanager-extension/package.json index 332aaa563f9b..f311a3def020 100644 --- a/packages/extensionmanager-extension/package.json +++ b/packages/extensionmanager-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/extensionmanager-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Extension Manager Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -39,12 +39,12 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/extensionmanager": "^4.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7" + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/extensionmanager": "^4.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/extensionmanager/package.json b/packages/extensionmanager/package.json index 9f5314f2ff7e..a692f3834c42 100644 --- a/packages/extensionmanager/package.json +++ b/packages/extensionmanager/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/extensionmanager", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Extension Manager", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,11 +37,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/messaging": "^2.0.1", "@lumino/polling": "^2.1.2", "@lumino/widgets": "^2.3.1", diff --git a/packages/filebrowser-extension/package.json b/packages/filebrowser-extension/package.json index 759257132f73..6e6e8df43c78 100644 --- a/packages/filebrowser-extension/package.json +++ b/packages/filebrowser-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/filebrowser-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Filebrowser Widget Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,18 +38,18 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/docmanager": "^4.1.7", - "@jupyterlab/docregistry": "^4.1.7", - "@jupyterlab/filebrowser": "^4.1.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/statedb": "^4.1.7", - "@jupyterlab/statusbar": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/docmanager": "^4.1.8", + "@jupyterlab/docregistry": "^4.1.8", + "@jupyterlab/filebrowser": "^4.1.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/statedb": "^4.1.8", + "@jupyterlab/statusbar": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/widgets": "^2.3.1" diff --git a/packages/filebrowser/package.json b/packages/filebrowser/package.json index 87c755e91586..41f69ba20ccc 100644 --- a/packages/filebrowser/package.json +++ b/packages/filebrowser/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/filebrowser", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - FileBrowser Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,15 +42,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/docmanager": "^4.1.7", - "@jupyterlab/docregistry": "^4.1.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/statedb": "^4.1.7", - "@jupyterlab/statusbar": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/docmanager": "^4.1.8", + "@jupyterlab/docregistry": "^4.1.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/statedb": "^4.1.8", + "@jupyterlab/statusbar": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -64,7 +64,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/fileeditor-extension/package.json b/packages/fileeditor-extension/package.json index 233ee1d0280d..48299ace8eb2 100644 --- a/packages/fileeditor-extension/package.json +++ b/packages/fileeditor-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/fileeditor-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Editor Widget Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -40,28 +40,28 @@ "dependencies": { "@codemirror/commands": "^6.2.3", "@codemirror/search": "^6.3.0", - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/codeeditor": "^4.1.7", - "@jupyterlab/codemirror": "^4.1.7", - "@jupyterlab/completer": "^4.1.7", - "@jupyterlab/console": "^4.1.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/docregistry": "^4.1.7", - "@jupyterlab/documentsearch": "^4.1.7", - "@jupyterlab/filebrowser": "^4.1.7", - "@jupyterlab/fileeditor": "^4.1.7", - "@jupyterlab/launcher": "^4.1.7", - "@jupyterlab/lsp": "^4.1.7", - "@jupyterlab/mainmenu": "^4.1.7", - "@jupyterlab/observables": "^5.1.7", - "@jupyterlab/rendermime-interfaces": "^3.9.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/statusbar": "^4.1.7", - "@jupyterlab/toc": "^6.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/codeeditor": "^4.1.8", + "@jupyterlab/codemirror": "^4.1.8", + "@jupyterlab/completer": "^4.1.8", + "@jupyterlab/console": "^4.1.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/docregistry": "^4.1.8", + "@jupyterlab/documentsearch": "^4.1.8", + "@jupyterlab/filebrowser": "^4.1.8", + "@jupyterlab/fileeditor": "^4.1.8", + "@jupyterlab/launcher": "^4.1.8", + "@jupyterlab/lsp": "^4.1.8", + "@jupyterlab/mainmenu": "^4.1.8", + "@jupyterlab/observables": "^5.1.8", + "@jupyterlab/rendermime-interfaces": "^3.9.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/statusbar": "^4.1.8", + "@jupyterlab/toc": "^6.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", diff --git a/packages/fileeditor/package.json b/packages/fileeditor/package.json index aa09d18f8460..ec7af6dedd3c 100644 --- a/packages/fileeditor/package.json +++ b/packages/fileeditor/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/fileeditor", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Editor Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,17 +41,17 @@ }, "dependencies": { "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/codeeditor": "^4.1.7", - "@jupyterlab/codemirror": "^4.1.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/docregistry": "^4.1.7", - "@jupyterlab/documentsearch": "^4.1.7", - "@jupyterlab/lsp": "^4.1.7", - "@jupyterlab/statusbar": "^4.1.7", - "@jupyterlab/toc": "^6.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/codeeditor": "^4.1.8", + "@jupyterlab/codemirror": "^4.1.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/docregistry": "^4.1.8", + "@jupyterlab/documentsearch": "^4.1.8", + "@jupyterlab/lsp": "^4.1.8", + "@jupyterlab/statusbar": "^4.1.8", + "@jupyterlab/toc": "^6.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", "@lumino/messaging": "^2.0.1", @@ -60,7 +60,7 @@ "regexp-match-indices": "^1.0.2" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/help-extension/package.json b/packages/help-extension/package.json index ffc714bcd8d3..e5ea4eb41312 100644 --- a/packages/help-extension/package.json +++ b/packages/help-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/help-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Help Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,13 +38,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/mainmenu": "^4.1.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/mainmenu": "^4.1.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/coreutils": "^2.1.2", "@lumino/signaling": "^2.1.2", "@lumino/virtualdom": "^2.0.1", diff --git a/packages/htmlviewer-extension/package.json b/packages/htmlviewer-extension/package.json index f5f1103fb27e..708d4f7c7bb7 100644 --- a/packages/htmlviewer-extension/package.json +++ b/packages/htmlviewer-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/htmlviewer-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab extension to render HTML files", "keywords": [ "jupyter", @@ -35,14 +35,14 @@ "watch": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/docregistry": "^4.1.7", - "@jupyterlab/htmlviewer": "^4.1.7", - "@jupyterlab/observables": "^5.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7" + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/docregistry": "^4.1.8", + "@jupyterlab/htmlviewer": "^4.1.8", + "@jupyterlab/observables": "^5.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/htmlviewer/package.json b/packages/htmlviewer/package.json index 9cb25e1b3b64..39fcef0c7b5a 100644 --- a/packages/htmlviewer/package.json +++ b/packages/htmlviewer/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/htmlviewer", - "version": "4.1.7", + "version": "4.1.8", "description": "A viewer for HTML documents.", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -33,11 +33,11 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/docregistry": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/docregistry": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/coreutils": "^2.1.2", "@lumino/signaling": "^2.1.2", "@lumino/widgets": "^2.3.1", diff --git a/packages/hub-extension/package.json b/packages/hub-extension/package.json index 5990c8274ec7..450475a378cf 100644 --- a/packages/hub-extension/package.json +++ b/packages/hub-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/hub-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab integration for JupyterHub", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -34,11 +34,11 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/translation": "^4.1.7" + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/translation": "^4.1.8" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/imageviewer-extension/package.json b/packages/imageviewer-extension/package.json index 240cbe18750d..91253455f1cf 100644 --- a/packages/imageviewer-extension/package.json +++ b/packages/imageviewer-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/imageviewer-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Image Widget Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,11 +38,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/docregistry": "^4.1.7", - "@jupyterlab/imageviewer": "^4.1.7", - "@jupyterlab/translation": "^4.1.7" + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/docregistry": "^4.1.8", + "@jupyterlab/imageviewer": "^4.1.8", + "@jupyterlab/translation": "^4.1.8" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/imageviewer/package.json b/packages/imageviewer/package.json index 32ada1a33813..b1967c7920ac 100644 --- a/packages/imageviewer/package.json +++ b/packages/imageviewer/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/imageviewer", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Image Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,15 +42,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/docregistry": "^4.1.7", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/docregistry": "^4.1.8", "@lumino/coreutils": "^2.1.2", "@lumino/messaging": "^2.0.1", "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/inspector-extension/package.json b/packages/inspector-extension/package.json index 37267d09d6c7..971398739ca6 100644 --- a/packages/inspector-extension/package.json +++ b/packages/inspector-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/inspector-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Code Inspector Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,14 +38,14 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/console": "^4.1.7", - "@jupyterlab/inspector": "^4.1.7", - "@jupyterlab/launcher": "^4.1.7", - "@jupyterlab/notebook": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/console": "^4.1.8", + "@jupyterlab/inspector": "^4.1.8", + "@jupyterlab/launcher": "^4.1.8", + "@jupyterlab/notebook": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/widgets": "^2.3.1" }, "devDependencies": { diff --git a/packages/inspector/package.json b/packages/inspector/package.json index a6ba4b4d710c..d2e6c1612104 100644 --- a/packages/inspector/package.json +++ b/packages/inspector/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/inspector", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Code Inspector", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,13 +42,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/codeeditor": "^4.1.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/rendermime": "^4.1.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/statedb": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/codeeditor": "^4.1.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/rendermime": "^4.1.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/statedb": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/polling": "^2.1.2", @@ -56,7 +56,7 @@ "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/javascript-extension/package.json b/packages/javascript-extension/package.json index 71be47d38228..e1218b5ab56e 100644 --- a/packages/javascript-extension/package.json +++ b/packages/javascript-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/javascript-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Javascript Renderer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -33,8 +33,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/rendermime": "^4.1.7", - "@jupyterlab/rendermime-interfaces": "^3.9.7" + "@jupyterlab/rendermime": "^4.1.8", + "@jupyterlab/rendermime-interfaces": "^3.9.8" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/json-extension/package.json b/packages/json-extension/package.json index ce31ebcab205..454f292d9c2a 100644 --- a/packages/json-extension/package.json +++ b/packages/json-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/json-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - JSON Renderer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -33,11 +33,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/codemirror": "^4.1.7", - "@jupyterlab/rendermime-interfaces": "^3.9.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/codemirror": "^4.1.8", + "@jupyterlab/rendermime-interfaces": "^3.9.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lezer/highlight": "^1.1.4", "@lumino/coreutils": "^2.1.2", "@lumino/messaging": "^2.0.1", diff --git a/packages/launcher-extension/package.json b/packages/launcher-extension/package.json index a705d31a1621..3274438b6159 100644 --- a/packages/launcher-extension/package.json +++ b/packages/launcher-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/launcher-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Launcher Page Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,12 +38,12 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/filebrowser": "^4.1.7", - "@jupyterlab/launcher": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/filebrowser": "^4.1.8", + "@jupyterlab/launcher": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/widgets": "^2.3.1" diff --git a/packages/launcher/package.json b/packages/launcher/package.json index 4f7ba369fdaa..8a39a2657c13 100644 --- a/packages/launcher/package.json +++ b/packages/launcher/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/launcher", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Launcher Panel", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,9 +37,9 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", diff --git a/packages/logconsole-extension/package.json b/packages/logconsole-extension/package.json index 71fecd42cb8a..ea433e7093e9 100644 --- a/packages/logconsole-extension/package.json +++ b/packages/logconsole-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/logconsole-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Log Console Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -34,15 +34,15 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/logconsole": "^4.1.7", - "@jupyterlab/rendermime": "^4.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/statusbar": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/logconsole": "^4.1.8", + "@jupyterlab/rendermime": "^4.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/statusbar": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/coreutils": "^2.1.2", "@lumino/signaling": "^2.1.2", "@lumino/widgets": "^2.3.1", diff --git a/packages/logconsole/package.json b/packages/logconsole/package.json index 31184fc2355f..4593a813dfc0 100644 --- a/packages/logconsole/package.json +++ b/packages/logconsole/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/logconsole", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Log Console", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,12 +38,12 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/nbformat": "^4.1.7", - "@jupyterlab/outputarea": "^4.1.7", - "@jupyterlab/rendermime": "^4.1.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/nbformat": "^4.1.8", + "@jupyterlab/outputarea": "^4.1.8", + "@jupyterlab/rendermime": "^4.1.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/translation": "^4.1.8", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/messaging": "^2.0.1", @@ -51,7 +51,7 @@ "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/lsp-extension/package.json b/packages/lsp-extension/package.json index e66e294d0131..b57682aaa660 100644 --- a/packages/lsp-extension/package.json +++ b/packages/lsp-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/lsp-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -36,13 +36,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/lsp": "^4.1.7", - "@jupyterlab/running": "^4.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/lsp": "^4.1.8", + "@jupyterlab/running": "^4.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/coreutils": "^2.1.2", "@lumino/polling": "^2.1.2", "@lumino/signaling": "^2.1.2", diff --git a/packages/lsp/package.json b/packages/lsp/package.json index 70804460c588..9cb62dacf4cf 100644 --- a/packages/lsp/package.json +++ b/packages/lsp/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/lsp", - "version": "4.1.7", + "version": "4.1.8", "description": "", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,13 +41,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/codeeditor": "^4.1.7", - "@jupyterlab/codemirror": "^4.1.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/docregistry": "^4.1.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/codeeditor": "^4.1.8", + "@jupyterlab/codemirror": "^4.1.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/docregistry": "^4.1.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/translation": "^4.1.8", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/signaling": "^2.1.2", @@ -58,7 +58,7 @@ "vscode-ws-jsonrpc": "~1.0.2" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "@types/lodash.mergewith": "^4.6.1", "jest": "^29.2.0", diff --git a/packages/mainmenu-extension/package.json b/packages/mainmenu-extension/package.json index 7efab4415a4e..f1ab81c0ae72 100644 --- a/packages/mainmenu-extension/package.json +++ b/packages/mainmenu-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mainmenu-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Main Menu Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,14 +38,14 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/mainmenu": "^4.1.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/mainmenu": "^4.1.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", diff --git a/packages/mainmenu/package.json b/packages/mainmenu/package.json index 0d575173d8e0..d9cc34eaf264 100644 --- a/packages/mainmenu/package.json +++ b/packages/mainmenu/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mainmenu", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Main Menu", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,16 +42,16 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/markdownviewer-extension/package.json b/packages/markdownviewer-extension/package.json index 8cbf84119ffc..4dda331ee394 100644 --- a/packages/markdownviewer-extension/package.json +++ b/packages/markdownviewer-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/markdownviewer-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Markdown Renderer Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,14 +38,14 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/markdownviewer": "^4.1.7", - "@jupyterlab/rendermime": "^4.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/toc": "^6.1.7", - "@jupyterlab/translation": "^4.1.7" + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/markdownviewer": "^4.1.8", + "@jupyterlab/rendermime": "^4.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/toc": "^6.1.8", + "@jupyterlab/translation": "^4.1.8" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/markdownviewer/package.json b/packages/markdownviewer/package.json index c49395660e38..3ed5e7880583 100644 --- a/packages/markdownviewer/package.json +++ b/packages/markdownviewer/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/markdownviewer", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Markdown viewer Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,12 +37,12 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/docregistry": "^4.1.7", - "@jupyterlab/rendermime": "^4.1.7", - "@jupyterlab/toc": "^6.1.7", - "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/docregistry": "^4.1.8", + "@jupyterlab/rendermime": "^4.1.8", + "@jupyterlab/toc": "^6.1.8", + "@jupyterlab/translation": "^4.1.8", "@lumino/coreutils": "^2.1.2", "@lumino/messaging": "^2.0.1", "@lumino/signaling": "^2.1.2", diff --git a/packages/markedparser-extension/package.json b/packages/markedparser-extension/package.json index 48b6dfbf9f40..7c1f03a38d4c 100644 --- a/packages/markedparser-extension/package.json +++ b/packages/markedparser-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/markedparser-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Markdown parser provider", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -36,11 +36,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/codemirror": "^4.1.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/mermaid": "^4.1.7", - "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/codemirror": "^4.1.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/mermaid": "^4.1.8", + "@jupyterlab/rendermime": "^4.1.8", "@lumino/coreutils": "^2.1.2", "marked": "^9.1.2", "marked-gfm-heading-id": "^3.1.0", diff --git a/packages/mathjax-extension/package.json b/packages/mathjax-extension/package.json index c842cff2c75e..d78f251b808f 100644 --- a/packages/mathjax-extension/package.json +++ b/packages/mathjax-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mathjax-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "A JupyterLab extension providing MathJax Typesetting", "keywords": [ "jupyter", @@ -43,8 +43,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/rendermime": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/rendermime": "^4.1.8", "@lumino/coreutils": "^2.1.2", "mathjax-full": "^3.2.2" }, diff --git a/packages/mermaid-extension/package.json b/packages/mermaid-extension/package.json index d926282b9716..b1ca5e1d58b5 100644 --- a/packages/mermaid-extension/package.json +++ b/packages/mermaid-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mermaid-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Mermaid Viewer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,11 +37,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/mermaid": "^4.1.7", - "@jupyterlab/rendermime-interfaces": "^3.9.7", - "@jupyterlab/translation": "^4.1.7" + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/mermaid": "^4.1.8", + "@jupyterlab/rendermime-interfaces": "^3.9.8", + "@jupyterlab/translation": "^4.1.8" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/mermaid/package.json b/packages/mermaid/package.json index 4c7015441ccb..8bb82c9504c9 100644 --- a/packages/mermaid/package.json +++ b/packages/mermaid/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mermaid", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Mermaid Renderer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,9 +42,9 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/rendermime-interfaces": "^3.9.7", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/rendermime-interfaces": "^3.9.8", "@lumino/coreutils": "^2.1.2", "@lumino/widgets": "^2.3.1", "mermaid": "^10.7.0" diff --git a/packages/metadataform-extension/package.json b/packages/metadataform-extension/package.json index 80edeab32cae..d57e6e6e9689 100644 --- a/packages/metadataform-extension/package.json +++ b/packages/metadataform-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/metadataform-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "A helper to build form for metadata", "keywords": [ "jupyter", @@ -39,12 +39,12 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/metadataform": "^4.1.7", - "@jupyterlab/notebook": "^4.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/metadataform": "^4.1.8", + "@jupyterlab/notebook": "^4.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/coreutils": "^2.1.2" }, "devDependencies": { diff --git a/packages/metadataform/package.json b/packages/metadataform/package.json index afd7fd3101da..b1713ff781b4 100644 --- a/packages/metadataform/package.json +++ b/packages/metadataform/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/metadataform", - "version": "4.1.7", + "version": "4.1.8", "description": "A helper to build form for metadata", "keywords": [ "jupyter", @@ -45,12 +45,12 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/nbformat": "^4.1.7", - "@jupyterlab/notebook": "^4.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/nbformat": "^4.1.8", + "@jupyterlab/notebook": "^4.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/coreutils": "^2.1.2", "@lumino/messaging": "^2.0.1", "@lumino/widgets": "^2.3.1", @@ -60,7 +60,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "@types/react": "^18.0.26", "jest": "^29.2.0", diff --git a/packages/metapackage/package.json b/packages/metapackage/package.json index b8de485db8ef..66e182c2e13e 100644 --- a/packages/metapackage/package.json +++ b/packages/metapackage/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/metapackage", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Meta Package. All of the packages used by the core JupyterLab application", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,103 +37,103 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/application-extension": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/apputils-extension": "^4.1.7", - "@jupyterlab/attachments": "^4.1.7", - "@jupyterlab/cell-toolbar": "^4.1.7", - "@jupyterlab/cell-toolbar-extension": "^4.1.7", - "@jupyterlab/cells": "^4.1.7", - "@jupyterlab/celltags-extension": "^4.1.7", - "@jupyterlab/codeeditor": "^4.1.7", - "@jupyterlab/codemirror": "^4.1.7", - "@jupyterlab/codemirror-extension": "^4.1.7", - "@jupyterlab/completer": "^4.1.7", - "@jupyterlab/completer-extension": "^4.1.7", - "@jupyterlab/console": "^4.1.7", - "@jupyterlab/console-extension": "^4.1.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/csvviewer": "^4.1.7", - "@jupyterlab/csvviewer-extension": "^4.1.7", - "@jupyterlab/debugger": "^4.1.7", - "@jupyterlab/debugger-extension": "^4.1.7", - "@jupyterlab/docmanager": "^4.1.7", - "@jupyterlab/docmanager-extension": "^4.1.7", - "@jupyterlab/docregistry": "^4.1.7", - "@jupyterlab/documentsearch": "^4.1.7", - "@jupyterlab/documentsearch-extension": "^4.1.7", - "@jupyterlab/extensionmanager": "^4.1.7", - "@jupyterlab/extensionmanager-extension": "^4.1.7", - "@jupyterlab/filebrowser": "^4.1.7", - "@jupyterlab/filebrowser-extension": "^4.1.7", - "@jupyterlab/fileeditor": "^4.1.7", - "@jupyterlab/fileeditor-extension": "^4.1.7", - "@jupyterlab/help-extension": "^4.1.7", - "@jupyterlab/htmlviewer": "^4.1.7", - "@jupyterlab/htmlviewer-extension": "^4.1.7", - "@jupyterlab/hub-extension": "^4.1.7", - "@jupyterlab/imageviewer": "^4.1.7", - "@jupyterlab/imageviewer-extension": "^4.1.7", - "@jupyterlab/inspector": "^4.1.7", - "@jupyterlab/inspector-extension": "^4.1.7", - "@jupyterlab/javascript-extension": "^4.1.7", - "@jupyterlab/json-extension": "^4.1.7", - "@jupyterlab/launcher": "^4.1.7", - "@jupyterlab/launcher-extension": "^4.1.7", - "@jupyterlab/logconsole": "^4.1.7", - "@jupyterlab/logconsole-extension": "^4.1.7", - "@jupyterlab/lsp": "^4.1.7", - "@jupyterlab/lsp-extension": "^4.1.7", - "@jupyterlab/mainmenu": "^4.1.7", - "@jupyterlab/mainmenu-extension": "^4.1.7", - "@jupyterlab/markdownviewer": "^4.1.7", - "@jupyterlab/markdownviewer-extension": "^4.1.7", - "@jupyterlab/markedparser-extension": "^4.1.7", - "@jupyterlab/mathjax-extension": "^4.1.7", - "@jupyterlab/mermaid": "^4.1.7", - "@jupyterlab/mermaid-extension": "^4.1.7", - "@jupyterlab/metadataform": "^4.1.7", - "@jupyterlab/metadataform-extension": "^4.1.7", - "@jupyterlab/nbconvert-css": "^4.1.7", - "@jupyterlab/nbformat": "^4.1.7", - "@jupyterlab/notebook": "^4.1.7", - "@jupyterlab/notebook-extension": "^4.1.7", - "@jupyterlab/observables": "^5.1.7", - "@jupyterlab/outputarea": "^4.1.7", - "@jupyterlab/pdf-extension": "^4.1.7", - "@jupyterlab/pluginmanager": "^4.1.7", - "@jupyterlab/pluginmanager-extension": "^4.1.7", - "@jupyterlab/property-inspector": "^4.1.7", - "@jupyterlab/rendermime": "^4.1.7", - "@jupyterlab/rendermime-extension": "^4.1.7", - "@jupyterlab/rendermime-interfaces": "^3.9.7", - "@jupyterlab/running": "^4.1.7", - "@jupyterlab/running-extension": "^4.1.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/settingeditor": "^4.1.7", - "@jupyterlab/settingeditor-extension": "^4.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/shortcuts-extension": "^4.1.7", - "@jupyterlab/statedb": "^4.1.7", - "@jupyterlab/statusbar": "^4.1.7", - "@jupyterlab/statusbar-extension": "^4.1.7", - "@jupyterlab/terminal": "^4.1.7", - "@jupyterlab/terminal-extension": "^4.1.7", - "@jupyterlab/theme-dark-extension": "^4.1.7", - "@jupyterlab/theme-light-extension": "^4.1.7", - "@jupyterlab/toc": "^6.1.7", - "@jupyterlab/toc-extension": "^6.1.7", - "@jupyterlab/tooltip": "^4.1.7", - "@jupyterlab/tooltip-extension": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/translation-extension": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", - "@jupyterlab/ui-components-extension": "^4.1.7", - "@jupyterlab/vega5-extension": "^4.1.7" + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/application-extension": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/apputils-extension": "^4.1.8", + "@jupyterlab/attachments": "^4.1.8", + "@jupyterlab/cell-toolbar": "^4.1.8", + "@jupyterlab/cell-toolbar-extension": "^4.1.8", + "@jupyterlab/cells": "^4.1.8", + "@jupyterlab/celltags-extension": "^4.1.8", + "@jupyterlab/codeeditor": "^4.1.8", + "@jupyterlab/codemirror": "^4.1.8", + "@jupyterlab/codemirror-extension": "^4.1.8", + "@jupyterlab/completer": "^4.1.8", + "@jupyterlab/completer-extension": "^4.1.8", + "@jupyterlab/console": "^4.1.8", + "@jupyterlab/console-extension": "^4.1.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/csvviewer": "^4.1.8", + "@jupyterlab/csvviewer-extension": "^4.1.8", + "@jupyterlab/debugger": "^4.1.8", + "@jupyterlab/debugger-extension": "^4.1.8", + "@jupyterlab/docmanager": "^4.1.8", + "@jupyterlab/docmanager-extension": "^4.1.8", + "@jupyterlab/docregistry": "^4.1.8", + "@jupyterlab/documentsearch": "^4.1.8", + "@jupyterlab/documentsearch-extension": "^4.1.8", + "@jupyterlab/extensionmanager": "^4.1.8", + "@jupyterlab/extensionmanager-extension": "^4.1.8", + "@jupyterlab/filebrowser": "^4.1.8", + "@jupyterlab/filebrowser-extension": "^4.1.8", + "@jupyterlab/fileeditor": "^4.1.8", + "@jupyterlab/fileeditor-extension": "^4.1.8", + "@jupyterlab/help-extension": "^4.1.8", + "@jupyterlab/htmlviewer": "^4.1.8", + "@jupyterlab/htmlviewer-extension": "^4.1.8", + "@jupyterlab/hub-extension": "^4.1.8", + "@jupyterlab/imageviewer": "^4.1.8", + "@jupyterlab/imageviewer-extension": "^4.1.8", + "@jupyterlab/inspector": "^4.1.8", + "@jupyterlab/inspector-extension": "^4.1.8", + "@jupyterlab/javascript-extension": "^4.1.8", + "@jupyterlab/json-extension": "^4.1.8", + "@jupyterlab/launcher": "^4.1.8", + "@jupyterlab/launcher-extension": "^4.1.8", + "@jupyterlab/logconsole": "^4.1.8", + "@jupyterlab/logconsole-extension": "^4.1.8", + "@jupyterlab/lsp": "^4.1.8", + "@jupyterlab/lsp-extension": "^4.1.8", + "@jupyterlab/mainmenu": "^4.1.8", + "@jupyterlab/mainmenu-extension": "^4.1.8", + "@jupyterlab/markdownviewer": "^4.1.8", + "@jupyterlab/markdownviewer-extension": "^4.1.8", + "@jupyterlab/markedparser-extension": "^4.1.8", + "@jupyterlab/mathjax-extension": "^4.1.8", + "@jupyterlab/mermaid": "^4.1.8", + "@jupyterlab/mermaid-extension": "^4.1.8", + "@jupyterlab/metadataform": "^4.1.8", + "@jupyterlab/metadataform-extension": "^4.1.8", + "@jupyterlab/nbconvert-css": "^4.1.8", + "@jupyterlab/nbformat": "^4.1.8", + "@jupyterlab/notebook": "^4.1.8", + "@jupyterlab/notebook-extension": "^4.1.8", + "@jupyterlab/observables": "^5.1.8", + "@jupyterlab/outputarea": "^4.1.8", + "@jupyterlab/pdf-extension": "^4.1.8", + "@jupyterlab/pluginmanager": "^4.1.8", + "@jupyterlab/pluginmanager-extension": "^4.1.8", + "@jupyterlab/property-inspector": "^4.1.8", + "@jupyterlab/rendermime": "^4.1.8", + "@jupyterlab/rendermime-extension": "^4.1.8", + "@jupyterlab/rendermime-interfaces": "^3.9.8", + "@jupyterlab/running": "^4.1.8", + "@jupyterlab/running-extension": "^4.1.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/settingeditor": "^4.1.8", + "@jupyterlab/settingeditor-extension": "^4.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/shortcuts-extension": "^4.1.8", + "@jupyterlab/statedb": "^4.1.8", + "@jupyterlab/statusbar": "^4.1.8", + "@jupyterlab/statusbar-extension": "^4.1.8", + "@jupyterlab/terminal": "^4.1.8", + "@jupyterlab/terminal-extension": "^4.1.8", + "@jupyterlab/theme-dark-extension": "^4.1.8", + "@jupyterlab/theme-light-extension": "^4.1.8", + "@jupyterlab/toc": "^6.1.8", + "@jupyterlab/toc-extension": "^6.1.8", + "@jupyterlab/tooltip": "^4.1.8", + "@jupyterlab/tooltip-extension": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/translation-extension": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", + "@jupyterlab/ui-components-extension": "^4.1.8", + "@jupyterlab/vega5-extension": "^4.1.8" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "fs-extra": "^10.1.0", "jest": "^29.2.0", diff --git a/packages/nbconvert-css/package.json b/packages/nbconvert-css/package.json index e69f4090841d..ec662eced85f 100644 --- a/packages/nbconvert-css/package.json +++ b/packages/nbconvert-css/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/nbconvert-css", - "version": "4.1.7", + "version": "4.1.8", "description": "CSS bundle for the JupyterLab nbconvert template", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -31,13 +31,13 @@ "watch": "webpack --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/cells": "^4.1.7", - "@jupyterlab/codemirror": "^4.1.7", - "@jupyterlab/notebook": "^4.1.7", - "@jupyterlab/outputarea": "^4.1.7", - "@jupyterlab/rendermime": "^4.1.7" + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/cells": "^4.1.8", + "@jupyterlab/codemirror": "^4.1.8", + "@jupyterlab/notebook": "^4.1.8", + "@jupyterlab/outputarea": "^4.1.8", + "@jupyterlab/rendermime": "^4.1.8" }, "devDependencies": { "css-loader": "^6.7.1", diff --git a/packages/nbformat/package.json b/packages/nbformat/package.json index 828131ac8e3d..d245ad2b86ae 100644 --- a/packages/nbformat/package.json +++ b/packages/nbformat/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/nbformat", - "version": "4.1.7", + "version": "4.1.8", "description": "Notebook format interfaces", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,7 +41,7 @@ "@lumino/coreutils": "^2.1.2" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/notebook-extension/package.json b/packages/notebook-extension/package.json index 9243d946042d..d81f361d1e9e 100644 --- a/packages/notebook-extension/package.json +++ b/packages/notebook-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/notebook-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Notebook Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,35 +38,35 @@ }, "dependencies": { "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/cells": "^4.1.7", - "@jupyterlab/codeeditor": "^4.1.7", - "@jupyterlab/codemirror": "^4.1.7", - "@jupyterlab/completer": "^4.1.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/docmanager": "^4.1.7", - "@jupyterlab/docmanager-extension": "^4.1.7", - "@jupyterlab/docregistry": "^4.1.7", - "@jupyterlab/documentsearch": "^4.1.7", - "@jupyterlab/filebrowser": "^4.1.7", - "@jupyterlab/launcher": "^4.1.7", - "@jupyterlab/logconsole": "^4.1.7", - "@jupyterlab/lsp": "^4.1.7", - "@jupyterlab/mainmenu": "^4.1.7", - "@jupyterlab/metadataform": "^4.1.7", - "@jupyterlab/nbformat": "^4.1.7", - "@jupyterlab/notebook": "^4.1.7", - "@jupyterlab/observables": "^5.1.7", - "@jupyterlab/property-inspector": "^4.1.7", - "@jupyterlab/rendermime": "^4.1.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/statedb": "^4.1.7", - "@jupyterlab/statusbar": "^4.1.7", - "@jupyterlab/toc": "^6.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/cells": "^4.1.8", + "@jupyterlab/codeeditor": "^4.1.8", + "@jupyterlab/codemirror": "^4.1.8", + "@jupyterlab/completer": "^4.1.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/docmanager": "^4.1.8", + "@jupyterlab/docmanager-extension": "^4.1.8", + "@jupyterlab/docregistry": "^4.1.8", + "@jupyterlab/documentsearch": "^4.1.8", + "@jupyterlab/filebrowser": "^4.1.8", + "@jupyterlab/launcher": "^4.1.8", + "@jupyterlab/logconsole": "^4.1.8", + "@jupyterlab/lsp": "^4.1.8", + "@jupyterlab/mainmenu": "^4.1.8", + "@jupyterlab/metadataform": "^4.1.8", + "@jupyterlab/nbformat": "^4.1.8", + "@jupyterlab/notebook": "^4.1.8", + "@jupyterlab/observables": "^5.1.8", + "@jupyterlab/property-inspector": "^4.1.8", + "@jupyterlab/rendermime": "^4.1.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/statedb": "^4.1.8", + "@jupyterlab/statusbar": "^4.1.8", + "@jupyterlab/toc": "^6.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", diff --git a/packages/notebook/package.json b/packages/notebook/package.json index 36887f351723..71f8ede7c77d 100644 --- a/packages/notebook/package.json +++ b/packages/notebook/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/notebook", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Notebook", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,23 +42,23 @@ }, "dependencies": { "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/cells": "^4.1.7", - "@jupyterlab/codeeditor": "^4.1.7", - "@jupyterlab/codemirror": "^4.1.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/docregistry": "^4.1.7", - "@jupyterlab/documentsearch": "^4.1.7", - "@jupyterlab/lsp": "^4.1.7", - "@jupyterlab/nbformat": "^4.1.7", - "@jupyterlab/observables": "^5.1.7", - "@jupyterlab/rendermime": "^4.1.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/statusbar": "^4.1.7", - "@jupyterlab/toc": "^6.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/cells": "^4.1.8", + "@jupyterlab/codeeditor": "^4.1.8", + "@jupyterlab/codemirror": "^4.1.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/docregistry": "^4.1.8", + "@jupyterlab/documentsearch": "^4.1.8", + "@jupyterlab/lsp": "^4.1.8", + "@jupyterlab/nbformat": "^4.1.8", + "@jupyterlab/observables": "^5.1.8", + "@jupyterlab/rendermime": "^4.1.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/statusbar": "^4.1.8", + "@jupyterlab/toc": "^6.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -72,7 +72,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/observables/package.json b/packages/observables/package.json index 5213e99d1cea..b6224a2ab92b 100644 --- a/packages/observables/package.json +++ b/packages/observables/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/observables", - "version": "5.1.7", + "version": "5.1.8", "description": "Data structures which may be observed for changes.", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -44,7 +44,7 @@ "@lumino/signaling": "^2.1.2" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/outputarea/package.json b/packages/outputarea/package.json index d74f52ce287b..2ad7ef690dd9 100644 --- a/packages/outputarea/package.json +++ b/packages/outputarea/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/outputarea", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Notebook Output Area", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,13 +42,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/nbformat": "^4.1.7", - "@jupyterlab/observables": "^5.1.7", - "@jupyterlab/rendermime": "^4.1.7", - "@jupyterlab/rendermime-interfaces": "^3.9.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/nbformat": "^4.1.8", + "@jupyterlab/observables": "^5.1.8", + "@jupyterlab/rendermime": "^4.1.8", + "@jupyterlab/rendermime-interfaces": "^3.9.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/translation": "^4.1.8", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -58,7 +58,7 @@ "@lumino/widgets": "^2.3.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/pdf-extension/package.json b/packages/pdf-extension/package.json index dda0ffdd524d..69cd6d19d1b8 100644 --- a/packages/pdf-extension/package.json +++ b/packages/pdf-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/pdf-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - PDF Viewer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,7 +37,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/rendermime-interfaces": "^3.9.7", + "@jupyterlab/rendermime-interfaces": "^3.9.8", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/widgets": "^2.3.1" diff --git a/packages/pluginmanager-extension/package.json b/packages/pluginmanager-extension/package.json index b0f092bc6a9a..5b12b1e0dccd 100644 --- a/packages/pluginmanager-extension/package.json +++ b/packages/pluginmanager-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/pluginmanager-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "Enable/disable plugins from user interface", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -35,11 +35,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/pluginmanager": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/pluginmanager": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/coreutils": "^2.1.2" }, "devDependencies": { diff --git a/packages/pluginmanager/package.json b/packages/pluginmanager/package.json index cc886530bc92..b2cac8b29775 100644 --- a/packages/pluginmanager/package.json +++ b/packages/pluginmanager/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/pluginmanager", - "version": "4.1.7", + "version": "4.1.8", "description": "List, enable or disable individual plugins.", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -39,19 +39,19 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/coreutils": "^2.1.2", "@lumino/signaling": "^2.1.2", "@lumino/widgets": "^2.3.1", "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/property-inspector/package.json b/packages/property-inspector/package.json index d38a53bfcbd0..60f53e02894a 100644 --- a/packages/property-inspector/package.json +++ b/packages/property-inspector/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/property-inspector", - "version": "4.1.7", + "version": "4.1.8", "description": "A property inspector display for widgets", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -34,9 +34,9 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/signaling": "^2.1.2", diff --git a/packages/rendermime-extension/package.json b/packages/rendermime-extension/package.json index 5b22dfcfcc99..45c635555e68 100644 --- a/packages/rendermime-extension/package.json +++ b/packages/rendermime-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/rendermime-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "A rendermime extension for JupyterLab", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -34,11 +34,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/docmanager": "^4.1.7", - "@jupyterlab/rendermime": "^4.1.7", - "@jupyterlab/translation": "^4.1.7" + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/docmanager": "^4.1.8", + "@jupyterlab/rendermime": "^4.1.8", + "@jupyterlab/translation": "^4.1.8" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/rendermime-interfaces/package.json b/packages/rendermime-interfaces/package.json index 3d72c73caaea..5b31043212c1 100644 --- a/packages/rendermime-interfaces/package.json +++ b/packages/rendermime-interfaces/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/rendermime-interfaces", - "version": "3.9.7", + "version": "3.9.8", "description": "JupyterLab - Interfaces for Mime Renderers", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { diff --git a/packages/rendermime/package.json b/packages/rendermime/package.json index c051f901f5fc..ec5e6faa3b41 100644 --- a/packages/rendermime/package.json +++ b/packages/rendermime/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/rendermime", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - RenderMime", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,13 +42,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/nbformat": "^4.1.7", - "@jupyterlab/observables": "^5.1.7", - "@jupyterlab/rendermime-interfaces": "^3.9.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/nbformat": "^4.1.8", + "@jupyterlab/observables": "^5.1.8", + "@jupyterlab/rendermime-interfaces": "^3.9.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/translation": "^4.1.8", "@lumino/coreutils": "^2.1.2", "@lumino/messaging": "^2.0.1", "@lumino/signaling": "^2.1.2", @@ -56,7 +56,7 @@ "lodash.escape": "^4.0.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "@types/lodash.escape": "^4.0.6", "fs-extra": "^10.1.0", diff --git a/packages/running-extension/package.json b/packages/running-extension/package.json index 2685bc65bfd5..8b07bbf8b3d6 100644 --- a/packages/running-extension/package.json +++ b/packages/running-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/running-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Running Sessions Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,14 +38,14 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/docregistry": "^4.1.7", - "@jupyterlab/rendermime-interfaces": "^3.9.7", - "@jupyterlab/running": "^4.1.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/docregistry": "^4.1.8", + "@jupyterlab/rendermime-interfaces": "^3.9.8", + "@jupyterlab/running": "^4.1.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/commands": "^2.2.0", "@lumino/polling": "^2.1.2", "@lumino/signaling": "^2.1.2", diff --git a/packages/running/package.json b/packages/running/package.json index aa8a95b213b0..f2a037479e2d 100644 --- a/packages/running/package.json +++ b/packages/running/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/running", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Running Sessions Panel", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,9 +37,9 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/messaging": "^2.0.1", diff --git a/packages/services/examples/browser/package.json b/packages/services/examples/browser/package.json index 125de4977199..40623878a987 100644 --- a/packages/services/examples/browser/package.json +++ b/packages/services/examples/browser/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-services-browser", - "version": "4.1.7", + "version": "4.1.8", "private": true, "files": [ "lib/*.{d.ts,js,js.map}" @@ -10,8 +10,8 @@ "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo" }, "dependencies": { - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/services": "^7.1.7", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/services": "^7.1.8", "@lumino/coreutils": "^2.1.2" }, "devDependencies": { diff --git a/packages/services/examples/node/package.json b/packages/services/examples/node/package.json index 6d86b5a56c35..72388b3f0e9a 100644 --- a/packages/services/examples/node/package.json +++ b/packages/services/examples/node/package.json @@ -1,13 +1,13 @@ { "name": "node-example", - "version": "4.1.7", + "version": "4.1.8", "private": true, "scripts": { "clean": "rimraf node_modules", "update": "rimraf node_modules/@jupyterlab/services && npm install" }, "dependencies": { - "@jupyterlab/services": "^7.1.7", + "@jupyterlab/services": "^7.1.8", "ws": "^8.11.0" }, "devDependencies": { diff --git a/packages/services/examples/typescript-browser-with-output/package.json b/packages/services/examples/typescript-browser-with-output/package.json index 629b1125edf3..89f50ff21383 100644 --- a/packages/services/examples/typescript-browser-with-output/package.json +++ b/packages/services/examples/typescript-browser-with-output/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-services-outputarea", - "version": "4.1.7", + "version": "4.1.8", "private": true, "sideEffects": [ "style/*" @@ -16,10 +16,10 @@ "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo" }, "dependencies": { - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/outputarea": "^4.1.7", - "@jupyterlab/rendermime": "^4.1.7", - "@jupyterlab/services": "^7.1.7" + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/outputarea": "^4.1.8", + "@jupyterlab/rendermime": "^4.1.8", + "@jupyterlab/services": "^7.1.8" }, "devDependencies": { "css-loader": "^6.7.1", diff --git a/packages/services/package.json b/packages/services/package.json index c0a99eb93df5..65d8643fc24d 100644 --- a/packages/services/package.json +++ b/packages/services/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/services", - "version": "7.1.7", + "version": "7.1.8", "description": "Client APIs for the Jupyter services REST APIs", "keywords": [ "jupyter", @@ -47,10 +47,10 @@ }, "dependencies": { "@jupyter/ydoc": "^1.1.1", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/nbformat": "^4.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/statedb": "^4.1.7", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/nbformat": "^4.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/statedb": "^4.1.8", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/polling": "^2.1.2", @@ -59,7 +59,7 @@ "ws": "^8.11.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "@types/ws": "^8.5.3", "jest": "^29.2.0", diff --git a/packages/settingeditor-extension/package.json b/packages/settingeditor-extension/package.json index 3b80ad6cefcf..d8f88bc996fd 100644 --- a/packages/settingeditor-extension/package.json +++ b/packages/settingeditor-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/settingeditor-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Setting Editor Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,16 +38,16 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/codeeditor": "^4.1.7", - "@jupyterlab/pluginmanager": "^4.1.7", - "@jupyterlab/rendermime": "^4.1.7", - "@jupyterlab/settingeditor": "^4.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/statedb": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/codeeditor": "^4.1.8", + "@jupyterlab/pluginmanager": "^4.1.8", + "@jupyterlab/rendermime": "^4.1.8", + "@jupyterlab/settingeditor": "^4.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/statedb": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/disposable": "^2.1.2" }, "devDependencies": { diff --git a/packages/settingeditor/package.json b/packages/settingeditor/package.json index d500368a812c..bc21ba0d59e7 100644 --- a/packages/settingeditor/package.json +++ b/packages/settingeditor/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/settingeditor", - "version": "4.1.7", + "version": "4.1.8", "description": "The JupyterLab default setting editor interface", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,15 +42,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/codeeditor": "^4.1.7", - "@jupyterlab/inspector": "^4.1.7", - "@jupyterlab/rendermime": "^4.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/statedb": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/codeeditor": "^4.1.8", + "@jupyterlab/inspector": "^4.1.8", + "@jupyterlab/rendermime": "^4.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/statedb": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", @@ -66,7 +66,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "@types/react": "^18.0.26", "@types/react-test-renderer": "^18.0.0", diff --git a/packages/settingregistry/package.json b/packages/settingregistry/package.json index a8c1e5b28335..b1625b78380d 100644 --- a/packages/settingregistry/package.json +++ b/packages/settingregistry/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/settingregistry", - "version": "4.1.7", + "version": "4.1.8", "description": "Settings registry for Jupyterlab", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,8 +37,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/nbformat": "^4.1.7", - "@jupyterlab/statedb": "^4.1.7", + "@jupyterlab/nbformat": "^4.1.8", + "@jupyterlab/statedb": "^4.1.8", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -48,7 +48,7 @@ "json5": "^2.2.3" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/shortcuts-extension/package.json b/packages/shortcuts-extension/package.json index ad7e7dcf7486..3c32af7decc6 100644 --- a/packages/shortcuts-extension/package.json +++ b/packages/shortcuts-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/shortcuts-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Shortcuts Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,10 +41,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", @@ -55,7 +55,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/statedb/package.json b/packages/statedb/package.json index 0671fec245d5..c9da738b6cc7 100644 --- a/packages/statedb/package.json +++ b/packages/statedb/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/statedb", - "version": "4.1.7", + "version": "4.1.8", "description": "Package for managing state in Jupyterlab", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -43,7 +43,7 @@ "@lumino/signaling": "^2.1.2" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/statusbar-extension/package.json b/packages/statusbar-extension/package.json index de719e7fc3b9..bd69fb0ba31c 100644 --- a/packages/statusbar-extension/package.json +++ b/packages/statusbar-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/statusbar-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Statusbar Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,11 +37,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/statusbar": "^4.1.7", - "@jupyterlab/translation": "^4.1.7" + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/statusbar": "^4.1.8", + "@jupyterlab/translation": "^4.1.8" }, "devDependencies": { "@types/react": "^18.0.26", diff --git a/packages/statusbar/package.json b/packages/statusbar/package.json index f5493da08627..7642ada7c8f1 100644 --- a/packages/statusbar/package.json +++ b/packages/statusbar/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/statusbar", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab statusbar package.", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,7 +37,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", @@ -47,7 +47,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/terminal-extension/package.json b/packages/terminal-extension/package.json index c32d1f143896..b91cdecbe11f 100644 --- a/packages/terminal-extension/package.json +++ b/packages/terminal-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/terminal-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Terminal Emulator Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,16 +38,16 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/launcher": "^4.1.7", - "@jupyterlab/mainmenu": "^4.1.7", - "@jupyterlab/running": "^4.1.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/terminal": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/launcher": "^4.1.8", + "@jupyterlab/mainmenu": "^4.1.8", + "@jupyterlab/running": "^4.1.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/terminal": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/widgets": "^2.3.1" }, "devDependencies": { diff --git a/packages/terminal/package.json b/packages/terminal/package.json index e13192beb330..9b92d50f16e2 100644 --- a/packages/terminal/package.json +++ b/packages/terminal/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/terminal", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Terminal Emulator Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,9 +42,9 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/translation": "^4.1.8", "@lumino/coreutils": "^2.1.2", "@lumino/domutils": "^2.0.1", "@lumino/messaging": "^2.0.1", @@ -56,7 +56,7 @@ "xterm-addon-webgl": "~0.14.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "canvas": "^2.11.2", "jest": "^29.2.0", diff --git a/packages/testing/package.json b/packages/testing/package.json index 309b1302d0ef..9a8c63dc839d 100644 --- a/packages/testing/package.json +++ b/packages/testing/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/testing", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab basic testing utilities.", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -35,7 +35,7 @@ "dependencies": { "@babel/core": "^7.10.2", "@babel/preset-env": "^7.10.2", - "@jupyterlab/coreutils": "^6.1.7", + "@jupyterlab/coreutils": "^6.1.8", "@lumino/coreutils": "^2.1.2", "@lumino/signaling": "^2.1.2", "child_process": "~1.0.2", diff --git a/packages/theme-dark-extension/package.json b/packages/theme-dark-extension/package.json index 2c35461aed6f..c4de7016e8e6 100644 --- a/packages/theme-dark-extension/package.json +++ b/packages/theme-dark-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/theme-dark-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Default Dark Theme", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -32,9 +32,9 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/translation": "^4.1.7" + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/translation": "^4.1.8" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/theme-light-extension/package.json b/packages/theme-light-extension/package.json index 63ddb59762cc..709a122e985a 100644 --- a/packages/theme-light-extension/package.json +++ b/packages/theme-light-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/theme-light-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Default Light Theme", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -32,9 +32,9 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/translation": "^4.1.7" + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/translation": "^4.1.8" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/toc-extension/package.json b/packages/toc-extension/package.json index 315f986a18c4..ad0c5d08d584 100644 --- a/packages/toc-extension/package.json +++ b/packages/toc-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/toc-extension", - "version": "6.1.7", + "version": "6.1.8", "description": "JupyterLab - Table of Contents widget extension", "keywords": [ "jupyter", @@ -41,11 +41,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/toc": "^6.1.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7" + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/toc": "^6.1.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/toc/package.json b/packages/toc/package.json index ae4702495bf9..ddf2b2bab6bb 100644 --- a/packages/toc/package.json +++ b/packages/toc/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/toc", - "version": "6.1.7", + "version": "6.1.8", "description": "JupyterLab - Table of Contents widget", "keywords": [ "jupyterlab" @@ -41,14 +41,14 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/docregistry": "^4.1.7", - "@jupyterlab/observables": "^5.1.7", - "@jupyterlab/rendermime": "^4.1.7", - "@jupyterlab/rendermime-interfaces": "^3.9.7", - "@jupyterlab/translation": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/docregistry": "^4.1.8", + "@jupyterlab/observables": "^5.1.8", + "@jupyterlab/rendermime": "^4.1.8", + "@jupyterlab/rendermime-interfaces": "^3.9.8", + "@jupyterlab/translation": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/coreutils": "^2.1.2", "@lumino/disposable": "^2.1.2", "@lumino/messaging": "^2.0.1", @@ -57,7 +57,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "@types/react": "^18.0.26", "jest": "^29.2.0", diff --git a/packages/tooltip-extension/package.json b/packages/tooltip-extension/package.json index 4a342aa0ea10..89c27fc9e4ae 100644 --- a/packages/tooltip-extension/package.json +++ b/packages/tooltip-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/tooltip-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Tooltip Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,16 +38,16 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/codeeditor": "^4.1.7", - "@jupyterlab/console": "^4.1.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/fileeditor": "^4.1.7", - "@jupyterlab/notebook": "^4.1.7", - "@jupyterlab/rendermime": "^4.1.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/tooltip": "^4.1.7", - "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/codeeditor": "^4.1.8", + "@jupyterlab/console": "^4.1.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/fileeditor": "^4.1.8", + "@jupyterlab/notebook": "^4.1.8", + "@jupyterlab/rendermime": "^4.1.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/tooltip": "^4.1.8", + "@jupyterlab/translation": "^4.1.8", "@lumino/algorithm": "^2.0.1", "@lumino/coreutils": "^2.1.2", "@lumino/widgets": "^2.3.1" diff --git a/packages/tooltip/package.json b/packages/tooltip/package.json index 6456e5281b85..17f8ab1b8f95 100644 --- a/packages/tooltip/package.json +++ b/packages/tooltip/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/tooltip", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Tooltip Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,10 +37,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/codeeditor": "^4.1.7", - "@jupyterlab/rendermime": "^4.1.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/codeeditor": "^4.1.8", + "@jupyterlab/rendermime": "^4.1.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/coreutils": "^2.1.2", "@lumino/messaging": "^2.0.1", "@lumino/widgets": "^2.3.1" diff --git a/packages/translation-extension/package.json b/packages/translation-extension/package.json index 519fa0655345..b3b4e55266b0 100644 --- a/packages/translation-extension/package.json +++ b/packages/translation-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/translation-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Translation services", "keywords": [ "jupyter", @@ -37,11 +37,11 @@ "watch": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/mainmenu": "^4.1.7", - "@jupyterlab/settingregistry": "^4.1.7", - "@jupyterlab/translation": "^4.1.7" + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/mainmenu": "^4.1.8", + "@jupyterlab/settingregistry": "^4.1.8", + "@jupyterlab/translation": "^4.1.8" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/translation/package.json b/packages/translation/package.json index 30b475316427..6dfd6432d044 100644 --- a/packages/translation/package.json +++ b/packages/translation/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/translation", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Translation services", "keywords": [ "jupyter", @@ -38,14 +38,14 @@ "watch": "tsc -w" }, "dependencies": { - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/rendermime-interfaces": "^3.9.7", - "@jupyterlab/services": "^7.1.7", - "@jupyterlab/statedb": "^4.1.7", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/rendermime-interfaces": "^3.9.8", + "@jupyterlab/services": "^7.1.8", + "@jupyterlab/statedb": "^4.1.8", "@lumino/coreutils": "^2.1.2" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/packages/ui-components-extension/package.json b/packages/ui-components-extension/package.json index f395f1043742..ee91fb71c815 100644 --- a/packages/ui-components-extension/package.json +++ b/packages/ui-components-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/ui-components-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - UI component plugins", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -33,8 +33,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7" + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/ui-components/examples/simple-windowed-list/package.json b/packages/ui-components/examples/simple-windowed-list/package.json index 9b3fff53b8a6..88c1a5999728 100644 --- a/packages/ui-components/examples/simple-windowed-list/package.json +++ b/packages/ui-components/examples/simple-windowed-list/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-simple-list", - "version": "4.1.7", + "version": "4.1.8", "private": true, "style": "style/index.css", "scripts": { @@ -9,11 +9,11 @@ "watch": "webpack --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/observables": "^5.1.7", - "@jupyterlab/theme-light-extension": "^4.1.7", - "@jupyterlab/ui-components": "^4.1.7", + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/observables": "^5.1.8", + "@jupyterlab/theme-light-extension": "^4.1.8", + "@jupyterlab/ui-components": "^4.1.8", "@lumino/messaging": "^2.0.1", "@lumino/widgets": "^2.3.1" }, diff --git a/packages/ui-components/package.json b/packages/ui-components/package.json index c4bd6e33cc1c..8fcc0f321587 100644 --- a/packages/ui-components/package.json +++ b/packages/ui-components/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/ui-components", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - UI components written in React", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -43,10 +43,10 @@ "dependencies": { "@jupyter/react-components": "^0.15.2", "@jupyter/web-components": "^0.15.2", - "@jupyterlab/coreutils": "^6.1.7", - "@jupyterlab/observables": "^5.1.7", - "@jupyterlab/rendermime-interfaces": "^3.9.7", - "@jupyterlab/translation": "^4.1.7", + "@jupyterlab/coreutils": "^6.1.8", + "@jupyterlab/observables": "^5.1.8", + "@jupyterlab/rendermime-interfaces": "^3.9.8", + "@jupyterlab/translation": "^4.1.8", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.2.0", "@lumino/coreutils": "^2.1.2", @@ -64,7 +64,7 @@ "typestyle": "^2.0.4" }, "devDependencies": { - "@jupyterlab/testing": "^4.1.7", + "@jupyterlab/testing": "^4.1.8", "@types/jest": "^29.2.0", "@types/react": "^18.0.26", "jest": "^29.2.0", diff --git a/packages/vega5-extension/package.json b/packages/vega5-extension/package.json index 9a0d7086ad64..e2bfcb84eefb 100644 --- a/packages/vega5-extension/package.json +++ b/packages/vega5-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/vega5-extension", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Vega 5 and Vega-Lite 5 Mime Renderer Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,7 +38,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/rendermime-interfaces": "^3.9.7", + "@jupyterlab/rendermime-interfaces": "^3.9.8", "@lumino/coreutils": "^2.1.2", "@lumino/widgets": "^2.3.1", "vega": "^5.20.0", @@ -46,7 +46,7 @@ "vega-lite": "^5.6.1-next.1" }, "devDependencies": { - "@jupyterlab/testutils": "^4.1.7", + "@jupyterlab/testutils": "^4.1.8", "@types/jest": "^29.2.0", "@types/webpack-env": "^1.18.0", "jest": "^29.2.0", diff --git a/testutils/package.json b/testutils/package.json index 6a47fe8f0750..290465fbfa53 100644 --- a/testutils/package.json +++ b/testutils/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/testutils", - "version": "4.1.7", + "version": "4.1.8", "description": "JupyterLab - Test Utilities", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -31,11 +31,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.1.7", - "@jupyterlab/apputils": "^4.2.7", - "@jupyterlab/notebook": "^4.1.7", - "@jupyterlab/rendermime": "^4.1.7", - "@jupyterlab/testing": "^4.1.7" + "@jupyterlab/application": "^4.1.8", + "@jupyterlab/apputils": "^4.2.8", + "@jupyterlab/notebook": "^4.1.8", + "@jupyterlab/rendermime": "^4.1.8", + "@jupyterlab/testing": "^4.1.8" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/yarn.lock b/yarn.lock index 9e07ec13e675..884445f6f37e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2096,19 +2096,19 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/application-extension@^4.1.7, @jupyterlab/application-extension@workspace:packages/application-extension, @jupyterlab/application-extension@~4.1.7": +"@jupyterlab/application-extension@^4.1.8, @jupyterlab/application-extension@workspace:packages/application-extension, @jupyterlab/application-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/application-extension@workspace:packages/application-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/property-inspector": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/statedb": ^4.1.7 - "@jupyterlab/statusbar": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/property-inspector": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/statedb": ^4.1.8 + "@jupyterlab/statusbar": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -2125,56 +2125,56 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/application-top@workspace:dev_mode" dependencies: - "@jupyterlab/application": ~4.1.7 - "@jupyterlab/application-extension": ~4.1.7 - "@jupyterlab/apputils-extension": ~4.1.7 - "@jupyterlab/builder": ^4.1.7 - "@jupyterlab/buildutils": ^4.1.7 - "@jupyterlab/cell-toolbar-extension": ~4.1.7 - "@jupyterlab/celltags-extension": ~4.1.7 - "@jupyterlab/codemirror-extension": ~4.1.7 - "@jupyterlab/completer-extension": ~4.1.7 - "@jupyterlab/console-extension": ~4.1.7 - "@jupyterlab/coreutils": ~6.1.7 - "@jupyterlab/csvviewer-extension": ~4.1.7 - "@jupyterlab/debugger-extension": ~4.1.7 - "@jupyterlab/docmanager-extension": ~4.1.7 - "@jupyterlab/documentsearch-extension": ~4.1.7 - "@jupyterlab/extensionmanager-extension": ~4.1.7 - "@jupyterlab/filebrowser-extension": ~4.1.7 - "@jupyterlab/fileeditor-extension": ~4.1.7 - "@jupyterlab/help-extension": ~4.1.7 - "@jupyterlab/htmlviewer-extension": ~4.1.7 - "@jupyterlab/hub-extension": ~4.1.7 - "@jupyterlab/imageviewer-extension": ~4.1.7 - "@jupyterlab/inspector-extension": ~4.1.7 - "@jupyterlab/javascript-extension": ~4.1.7 - "@jupyterlab/json-extension": ~4.1.7 - "@jupyterlab/launcher-extension": ~4.1.7 - "@jupyterlab/logconsole-extension": ~4.1.7 - "@jupyterlab/lsp-extension": ~4.1.7 - "@jupyterlab/mainmenu-extension": ~4.1.7 - "@jupyterlab/markdownviewer-extension": ~4.1.7 - "@jupyterlab/markedparser-extension": ~4.1.7 - "@jupyterlab/mathjax-extension": ~4.1.7 - "@jupyterlab/mermaid-extension": ~4.1.7 - "@jupyterlab/metadataform-extension": ~4.1.7 - "@jupyterlab/notebook-extension": ~4.1.7 - "@jupyterlab/pdf-extension": ~4.1.7 - "@jupyterlab/pluginmanager-extension": ~4.1.7 - "@jupyterlab/rendermime-extension": ~4.1.7 - "@jupyterlab/running-extension": ~4.1.7 - "@jupyterlab/settingeditor-extension": ~4.1.7 - "@jupyterlab/shortcuts-extension": ~4.1.7 - "@jupyterlab/statusbar-extension": ~4.1.7 - "@jupyterlab/terminal-extension": ~4.1.7 - "@jupyterlab/theme-dark-extension": ~4.1.7 - "@jupyterlab/theme-light-extension": ~4.1.7 - "@jupyterlab/toc-extension": ~6.1.7 - "@jupyterlab/tooltip-extension": ~4.1.7 - "@jupyterlab/translation-extension": ~4.1.7 - "@jupyterlab/ui-components-extension": ~4.1.7 - "@jupyterlab/vega5-extension": ~4.1.7 + "@jupyterlab/application": ~4.1.8 + "@jupyterlab/application-extension": ~4.1.8 + "@jupyterlab/apputils-extension": ~4.1.8 + "@jupyterlab/builder": ^4.1.8 + "@jupyterlab/buildutils": ^4.1.8 + "@jupyterlab/cell-toolbar-extension": ~4.1.8 + "@jupyterlab/celltags-extension": ~4.1.8 + "@jupyterlab/codemirror-extension": ~4.1.8 + "@jupyterlab/completer-extension": ~4.1.8 + "@jupyterlab/console-extension": ~4.1.8 + "@jupyterlab/coreutils": ~6.1.8 + "@jupyterlab/csvviewer-extension": ~4.1.8 + "@jupyterlab/debugger-extension": ~4.1.8 + "@jupyterlab/docmanager-extension": ~4.1.8 + "@jupyterlab/documentsearch-extension": ~4.1.8 + "@jupyterlab/extensionmanager-extension": ~4.1.8 + "@jupyterlab/filebrowser-extension": ~4.1.8 + "@jupyterlab/fileeditor-extension": ~4.1.8 + "@jupyterlab/help-extension": ~4.1.8 + "@jupyterlab/htmlviewer-extension": ~4.1.8 + "@jupyterlab/hub-extension": ~4.1.8 + "@jupyterlab/imageviewer-extension": ~4.1.8 + "@jupyterlab/inspector-extension": ~4.1.8 + "@jupyterlab/javascript-extension": ~4.1.8 + "@jupyterlab/json-extension": ~4.1.8 + "@jupyterlab/launcher-extension": ~4.1.8 + "@jupyterlab/logconsole-extension": ~4.1.8 + "@jupyterlab/lsp-extension": ~4.1.8 + "@jupyterlab/mainmenu-extension": ~4.1.8 + "@jupyterlab/markdownviewer-extension": ~4.1.8 + "@jupyterlab/markedparser-extension": ~4.1.8 + "@jupyterlab/mathjax-extension": ~4.1.8 + "@jupyterlab/mermaid-extension": ~4.1.8 + "@jupyterlab/metadataform-extension": ~4.1.8 + "@jupyterlab/notebook-extension": ~4.1.8 + "@jupyterlab/pdf-extension": ~4.1.8 + "@jupyterlab/pluginmanager-extension": ~4.1.8 + "@jupyterlab/rendermime-extension": ~4.1.8 + "@jupyterlab/running-extension": ~4.1.8 + "@jupyterlab/settingeditor-extension": ~4.1.8 + "@jupyterlab/shortcuts-extension": ~4.1.8 + "@jupyterlab/statusbar-extension": ~4.1.8 + "@jupyterlab/terminal-extension": ~4.1.8 + "@jupyterlab/theme-dark-extension": ~4.1.8 + "@jupyterlab/theme-light-extension": ~4.1.8 + "@jupyterlab/toc-extension": ~6.1.8 + "@jupyterlab/tooltip-extension": ~4.1.8 + "@jupyterlab/translation-extension": ~4.1.8 + "@jupyterlab/ui-components-extension": ~4.1.8 + "@jupyterlab/vega5-extension": ~4.1.8 chokidar: ^3.4.0 css-loader: ^6.7.1 duplicate-package-checker-webpack-plugin: ^3.0.0 @@ -2200,21 +2200,21 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/application@^4.1.7, @jupyterlab/application@workspace:packages/application, @jupyterlab/application@~4.1.7": +"@jupyterlab/application@^4.1.8, @jupyterlab/application@workspace:packages/application, @jupyterlab/application@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/application@workspace:packages/application" dependencies: "@fortawesome/fontawesome-free": ^5.12.0 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/statedb": ^4.1.7 - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/statedb": ^4.1.8 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/application": ^2.3.0 "@lumino/commands": ^2.2.0 @@ -2233,23 +2233,23 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/apputils-extension@^4.1.7, @jupyterlab/apputils-extension@workspace:packages/apputils-extension, @jupyterlab/apputils-extension@~4.1.7": +"@jupyterlab/apputils-extension@^4.1.8, @jupyterlab/apputils-extension@workspace:packages/apputils-extension, @jupyterlab/apputils-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/apputils-extension@workspace:packages/apputils-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/filebrowser": ^4.1.7 - "@jupyterlab/mainmenu": ^4.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/statedb": ^4.1.7 - "@jupyterlab/statusbar": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/filebrowser": ^4.1.8 + "@jupyterlab/mainmenu": ^4.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/statedb": ^4.1.8 + "@jupyterlab/statusbar": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -2266,20 +2266,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/apputils@^4.2.7, @jupyterlab/apputils@workspace:packages/apputils": +"@jupyterlab/apputils@^4.2.8, @jupyterlab/apputils@workspace:packages/apputils": version: 0.0.0-use.local resolution: "@jupyterlab/apputils@workspace:packages/apputils" dependencies: - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/statedb": ^4.1.7 - "@jupyterlab/statusbar": ^4.1.7 - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/statedb": ^4.1.8 + "@jupyterlab/statusbar": ^4.1.8 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -2301,14 +2301,14 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/attachments@^4.1.7, @jupyterlab/attachments@workspace:packages/attachments": +"@jupyterlab/attachments@^4.1.8, @jupyterlab/attachments@workspace:packages/attachments": version: 0.0.0-use.local resolution: "@jupyterlab/attachments@workspace:packages/attachments" dependencies: - "@jupyterlab/nbformat": ^4.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/nbformat": ^4.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 rimraf: ~5.0.5 @@ -2317,7 +2317,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/builder@^4.1.7, @jupyterlab/builder@workspace:builder": +"@jupyterlab/builder@^4.1.8, @jupyterlab/builder@workspace:builder": version: 0.0.0-use.local resolution: "@jupyterlab/builder@workspace:builder" dependencies: @@ -2363,7 +2363,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/buildutils@^4.1.7, @jupyterlab/buildutils@workspace:buildutils": +"@jupyterlab/buildutils@^4.1.8, @jupyterlab/buildutils@workspace:buildutils": version: 0.0.0-use.local resolution: "@jupyterlab/buildutils@workspace:buildutils" dependencies: @@ -2403,32 +2403,32 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/cell-toolbar-extension@^4.1.7, @jupyterlab/cell-toolbar-extension@workspace:packages/cell-toolbar-extension, @jupyterlab/cell-toolbar-extension@~4.1.7": +"@jupyterlab/cell-toolbar-extension@^4.1.8, @jupyterlab/cell-toolbar-extension@workspace:packages/cell-toolbar-extension, @jupyterlab/cell-toolbar-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/cell-toolbar-extension@workspace:packages/cell-toolbar-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/cell-toolbar": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/cell-toolbar": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/cell-toolbar@^4.1.7, @jupyterlab/cell-toolbar@workspace:packages/cell-toolbar": +"@jupyterlab/cell-toolbar@^4.1.8, @jupyterlab/cell-toolbar@workspace:packages/cell-toolbar": version: 0.0.0-use.local resolution: "@jupyterlab/cell-toolbar@workspace:packages/cell-toolbar" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/cells": ^4.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/notebook": ^4.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/cells": ^4.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/notebook": ^4.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/disposable": ^2.1.2 @@ -2441,29 +2441,29 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/cells@^4.1.7, @jupyterlab/cells@workspace:packages/cells": +"@jupyterlab/cells@^4.1.8, @jupyterlab/cells@workspace:packages/cells": version: 0.0.0-use.local resolution: "@jupyterlab/cells@workspace:packages/cells" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/attachments": ^4.1.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/codemirror": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/documentsearch": ^4.1.7 - "@jupyterlab/filebrowser": ^4.1.7 - "@jupyterlab/nbformat": ^4.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/outputarea": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/toc": ^6.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/attachments": ^4.1.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/codemirror": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/documentsearch": ^4.1.8 + "@jupyterlab/filebrowser": ^4.1.8 + "@jupyterlab/nbformat": ^4.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/outputarea": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/toc": ^6.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/domutils": ^2.0.1 @@ -2483,14 +2483,14 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/celltags-extension@^4.1.7, @jupyterlab/celltags-extension@workspace:packages/celltags-extension, @jupyterlab/celltags-extension@~4.1.7": +"@jupyterlab/celltags-extension@^4.1.8, @jupyterlab/celltags-extension@workspace:packages/celltags-extension, @jupyterlab/celltags-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/celltags-extension@workspace:packages/celltags-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/notebook": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/notebook": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@rjsf/utils": ^5.13.4 react: ^18.2.0 @@ -2499,20 +2499,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/codeeditor@^4.1.7, @jupyterlab/codeeditor@workspace:packages/codeeditor": +"@jupyterlab/codeeditor@^4.1.8, @jupyterlab/codeeditor@workspace:packages/codeeditor": version: 0.0.0-use.local resolution: "@jupyterlab/codeeditor@workspace:packages/codeeditor" dependencies: "@codemirror/state": ^6.2.0 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/nbformat": ^4.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/statusbar": ^4.1.7 - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/nbformat": ^4.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/statusbar": ^4.1.8 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/dragdrop": ^2.1.4 @@ -2528,7 +2528,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/codemirror-extension@^4.1.7, @jupyterlab/codemirror-extension@workspace:packages/codemirror-extension, @jupyterlab/codemirror-extension@~4.1.7": +"@jupyterlab/codemirror-extension@^4.1.8, @jupyterlab/codemirror-extension@workspace:packages/codemirror-extension, @jupyterlab/codemirror-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/codemirror-extension@workspace:packages/codemirror-extension" dependencies: @@ -2536,13 +2536,13 @@ __metadata: "@codemirror/language": ^6.6.0 "@codemirror/legacy-modes": ^6.3.2 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/codemirror": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/statusbar": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/codemirror": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/statusbar": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 "@rjsf/utils": ^5.13.4 @@ -2555,7 +2555,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/codemirror@^4.1.7, @jupyterlab/codemirror@workspace:packages/codemirror": +"@jupyterlab/codemirror@^4.1.8, @jupyterlab/codemirror@workspace:packages/codemirror": version: 0.0.0-use.local resolution: "@jupyterlab/codemirror@workspace:packages/codemirror" dependencies: @@ -2580,12 +2580,12 @@ __metadata: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/documentsearch": ^4.1.7 - "@jupyterlab/nbformat": ^4.1.7 - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/documentsearch": ^4.1.8 + "@jupyterlab/nbformat": ^4.1.8 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 "@lezer/common": ^1.0.2 "@lezer/generator": ^1.2.2 "@lezer/highlight": ^1.1.4 @@ -2603,15 +2603,15 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/completer-extension@^4.1.7, @jupyterlab/completer-extension@workspace:packages/completer-extension, @jupyterlab/completer-extension@~4.1.7": +"@jupyterlab/completer-extension@^4.1.8, @jupyterlab/completer-extension@workspace:packages/completer-extension, @jupyterlab/completer-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/completer-extension@workspace:packages/completer-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/completer": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/completer": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@rjsf/utils": ^5.13.4 @@ -2622,24 +2622,24 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/completer@^4.1.7, @jupyterlab/completer@workspace:packages/completer": +"@jupyterlab/completer@^4.1.8, @jupyterlab/completer@workspace:packages/completer": version: 0.0.0-use.local resolution: "@jupyterlab/completer@workspace:packages/completer" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/codemirror": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/statedb": ^4.1.7 - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/codemirror": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/statedb": ^4.1.8 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -2655,22 +2655,22 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/console-extension@^4.1.7, @jupyterlab/console-extension@workspace:packages/console-extension, @jupyterlab/console-extension@~4.1.7": +"@jupyterlab/console-extension@^4.1.8, @jupyterlab/console-extension@workspace:packages/console-extension, @jupyterlab/console-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/console-extension@workspace:packages/console-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/completer": ^4.1.7 - "@jupyterlab/console": ^4.1.7 - "@jupyterlab/filebrowser": ^4.1.7 - "@jupyterlab/launcher": ^4.1.7 - "@jupyterlab/mainmenu": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/completer": ^4.1.8 + "@jupyterlab/console": ^4.1.8 + "@jupyterlab/filebrowser": ^4.1.8 + "@jupyterlab/launcher": ^4.1.8 + "@jupyterlab/mainmenu": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -2682,25 +2682,25 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/console@^4.1.7, @jupyterlab/console@workspace:packages/console": +"@jupyterlab/console@^4.1.8, @jupyterlab/console@workspace:packages/console": version: 0.0.0-use.local resolution: "@jupyterlab/console@workspace:packages/console" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/cells": ^4.1.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/codemirror": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/nbformat": ^4.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/cells": ^4.1.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/codemirror": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/nbformat": ^4.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/dragdrop": ^2.1.4 @@ -2715,7 +2715,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/coreutils@^6.1.7, @jupyterlab/coreutils@workspace:packages/coreutils, @jupyterlab/coreutils@~6.1.7": +"@jupyterlab/coreutils@^6.1.8, @jupyterlab/coreutils@workspace:packages/coreutils, @jupyterlab/coreutils@~6.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/coreutils@workspace:packages/coreutils" dependencies: @@ -2740,19 +2740,19 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/csvviewer-extension@^4.1.7, @jupyterlab/csvviewer-extension@workspace:packages/csvviewer-extension, @jupyterlab/csvviewer-extension@~4.1.7": +"@jupyterlab/csvviewer-extension@^4.1.8, @jupyterlab/csvviewer-extension@workspace:packages/csvviewer-extension, @jupyterlab/csvviewer-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/csvviewer-extension@workspace:packages/csvviewer-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/csvviewer": ^4.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/documentsearch": ^4.1.7 - "@jupyterlab/mainmenu": ^4.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/csvviewer": ^4.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/documentsearch": ^4.1.8 + "@jupyterlab/mainmenu": ^4.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 "@lumino/datagrid": ^2.3.0 "@lumino/widgets": ^2.3.1 rimraf: ~5.0.5 @@ -2761,15 +2761,15 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/csvviewer@^4.1.7, @jupyterlab/csvviewer@workspace:packages/csvviewer": +"@jupyterlab/csvviewer@^4.1.8, @jupyterlab/csvviewer@workspace:packages/csvviewer": version: 0.0.0-use.local resolution: "@jupyterlab/csvviewer@workspace:packages/csvviewer" dependencies: - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/datagrid": ^2.3.0 "@lumino/disposable": ^2.1.2 @@ -2786,26 +2786,26 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/debugger-extension@^4.1.7, @jupyterlab/debugger-extension@workspace:packages/debugger-extension, @jupyterlab/debugger-extension@~4.1.7": +"@jupyterlab/debugger-extension@^4.1.8, @jupyterlab/debugger-extension@workspace:packages/debugger-extension, @jupyterlab/debugger-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/debugger-extension@workspace:packages/debugger-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/cells": ^4.1.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/console": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/debugger": ^4.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/fileeditor": ^4.1.7 - "@jupyterlab/logconsole": ^4.1.7 - "@jupyterlab/notebook": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/cells": ^4.1.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/console": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/debugger": ^4.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/fileeditor": ^4.1.8 + "@jupyterlab/logconsole": ^4.1.8 + "@jupyterlab/notebook": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 "@types/jest": ^29.2.0 "@types/react-dom": ^18.0.9 rimraf: ~5.0.5 @@ -2814,29 +2814,29 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/debugger@^4.1.7, @jupyterlab/debugger@workspace:packages/debugger": +"@jupyterlab/debugger@^4.1.8, @jupyterlab/debugger@workspace:packages/debugger": version: 0.0.0-use.local resolution: "@jupyterlab/debugger@workspace:packages/debugger" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/cells": ^4.1.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/codemirror": ^4.1.7 - "@jupyterlab/console": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/fileeditor": ^4.1.7 - "@jupyterlab/notebook": ^4.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/cells": ^4.1.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/codemirror": ^4.1.8 + "@jupyterlab/console": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/fileeditor": ^4.1.8 + "@jupyterlab/notebook": ^4.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -2857,20 +2857,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/docmanager-extension@^4.1.7, @jupyterlab/docmanager-extension@workspace:packages/docmanager-extension, @jupyterlab/docmanager-extension@~4.1.7": +"@jupyterlab/docmanager-extension@^4.1.8, @jupyterlab/docmanager-extension@workspace:packages/docmanager-extension, @jupyterlab/docmanager-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/docmanager-extension@workspace:packages/docmanager-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docmanager": ^4.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/statusbar": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docmanager": ^4.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/statusbar": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -2884,18 +2884,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/docmanager@^4.1.7, @jupyterlab/docmanager@workspace:packages/docmanager": +"@jupyterlab/docmanager@^4.1.8, @jupyterlab/docmanager@workspace:packages/docmanager": version: 0.0.0-use.local resolution: "@jupyterlab/docmanager@workspace:packages/docmanager" dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/statusbar": ^4.1.7 - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/statusbar": ^4.1.8 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -2912,21 +2912,21 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/docregistry@^4.1.7, @jupyterlab/docregistry@workspace:packages/docregistry": +"@jupyterlab/docregistry@^4.1.8, @jupyterlab/docregistry@workspace:packages/docregistry": version: 0.0.0-use.local resolution: "@jupyterlab/docregistry@workspace:packages/docregistry" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -2943,15 +2943,15 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/documentsearch-extension@^4.1.7, @jupyterlab/documentsearch-extension@workspace:packages/documentsearch-extension, @jupyterlab/documentsearch-extension@~4.1.7": +"@jupyterlab/documentsearch-extension@^4.1.8, @jupyterlab/documentsearch-extension@workspace:packages/documentsearch-extension, @jupyterlab/documentsearch-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/documentsearch-extension@workspace:packages/documentsearch-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/documentsearch": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/documentsearch": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 "@lumino/commands": ^2.2.0 "@lumino/widgets": ^2.3.1 rimraf: ~5.0.5 @@ -2959,14 +2959,14 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/documentsearch@^4.1.7, @jupyterlab/documentsearch@workspace:packages/documentsearch": +"@jupyterlab/documentsearch@^4.1.8, @jupyterlab/documentsearch@workspace:packages/documentsearch": version: 0.0.0-use.local resolution: "@jupyterlab/documentsearch@workspace:packages/documentsearch" dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -2986,39 +2986,39 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/example-app@workspace:examples/app" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/application-extension": ^4.1.7 - "@jupyterlab/apputils-extension": ^4.1.7 - "@jupyterlab/builder": ^4.1.7 - "@jupyterlab/celltags-extension": ^4.1.7 - "@jupyterlab/codemirror-extension": ^4.1.7 - "@jupyterlab/completer-extension": ^4.1.7 - "@jupyterlab/console-extension": ^4.1.7 - "@jupyterlab/csvviewer-extension": ^4.1.7 - "@jupyterlab/docmanager-extension": ^4.1.7 - "@jupyterlab/filebrowser-extension": ^4.1.7 - "@jupyterlab/fileeditor-extension": ^4.1.7 - "@jupyterlab/help-extension": ^4.1.7 - "@jupyterlab/imageviewer-extension": ^4.1.7 - "@jupyterlab/inspector-extension": ^4.1.7 - "@jupyterlab/launcher-extension": ^4.1.7 - "@jupyterlab/mainmenu-extension": ^4.1.7 - "@jupyterlab/markdownviewer-extension": ^4.1.7 - "@jupyterlab/mathjax-extension": ^4.1.7 - "@jupyterlab/metadataform-extension": ^4.1.7 - "@jupyterlab/notebook-extension": ^4.1.7 - "@jupyterlab/rendermime-extension": ^4.1.7 - "@jupyterlab/running-extension": ^4.1.7 - "@jupyterlab/settingeditor-extension": ^4.1.7 - "@jupyterlab/shortcuts-extension": ^4.1.7 - "@jupyterlab/statusbar-extension": ^4.1.7 - "@jupyterlab/theme-dark-extension": ^4.1.7 - "@jupyterlab/theme-light-extension": ^4.1.7 - "@jupyterlab/toc-extension": ^6.1.7 - "@jupyterlab/tooltip-extension": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/translation-extension": ^4.1.7 - "@jupyterlab/ui-components-extension": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/application-extension": ^4.1.8 + "@jupyterlab/apputils-extension": ^4.1.8 + "@jupyterlab/builder": ^4.1.8 + "@jupyterlab/celltags-extension": ^4.1.8 + "@jupyterlab/codemirror-extension": ^4.1.8 + "@jupyterlab/completer-extension": ^4.1.8 + "@jupyterlab/console-extension": ^4.1.8 + "@jupyterlab/csvviewer-extension": ^4.1.8 + "@jupyterlab/docmanager-extension": ^4.1.8 + "@jupyterlab/filebrowser-extension": ^4.1.8 + "@jupyterlab/fileeditor-extension": ^4.1.8 + "@jupyterlab/help-extension": ^4.1.8 + "@jupyterlab/imageviewer-extension": ^4.1.8 + "@jupyterlab/inspector-extension": ^4.1.8 + "@jupyterlab/launcher-extension": ^4.1.8 + "@jupyterlab/mainmenu-extension": ^4.1.8 + "@jupyterlab/markdownviewer-extension": ^4.1.8 + "@jupyterlab/mathjax-extension": ^4.1.8 + "@jupyterlab/metadataform-extension": ^4.1.8 + "@jupyterlab/notebook-extension": ^4.1.8 + "@jupyterlab/rendermime-extension": ^4.1.8 + "@jupyterlab/running-extension": ^4.1.8 + "@jupyterlab/settingeditor-extension": ^4.1.8 + "@jupyterlab/shortcuts-extension": ^4.1.8 + "@jupyterlab/statusbar-extension": ^4.1.8 + "@jupyterlab/theme-dark-extension": ^4.1.8 + "@jupyterlab/theme-light-extension": ^4.1.8 + "@jupyterlab/toc-extension": ^6.1.8 + "@jupyterlab/tooltip-extension": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/translation-extension": ^4.1.8 + "@jupyterlab/ui-components-extension": ^4.1.8 css-loader: ^6.7.1 fs-extra: ^10.1.0 glob: ~7.1.6 @@ -3040,16 +3040,16 @@ __metadata: dependencies: "@jupyter/web-components": ^0.15.2 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/cells": ^4.1.7 - "@jupyterlab/codemirror": ^4.1.7 - "@jupyterlab/completer": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/theme-light-extension": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/cells": ^4.1.8 + "@jupyterlab/codemirror": ^4.1.8 + "@jupyterlab/completer": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/theme-light-extension": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/commands": ^2.2.0 "@lumino/widgets": ^2.3.1 css-loader: ^6.7.1 @@ -3070,14 +3070,14 @@ __metadata: dependencies: "@jupyter/web-components": ^0.15.2 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/codemirror": ^4.1.7 - "@jupyterlab/console": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/theme-light-extension": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/codemirror": ^4.1.8 + "@jupyterlab/console": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/theme-light-extension": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 "@lumino/commands": ^2.2.0 "@lumino/widgets": ^2.3.1 css-loader: ^6.7.1 @@ -3095,48 +3095,48 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/example-federated-core@workspace:examples/federated/core_package" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/application-extension": ^4.1.7 - "@jupyterlab/apputils-extension": ^4.1.7 - "@jupyterlab/builder": ^4.1.7 - "@jupyterlab/celltags-extension": ^4.1.7 - "@jupyterlab/codemirror-extension": ^4.1.7 - "@jupyterlab/completer-extension": ^4.1.7 - "@jupyterlab/console-extension": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/csvviewer-extension": ^4.1.7 - "@jupyterlab/debugger-extension": ^4.1.7 - "@jupyterlab/docmanager-extension": ^4.1.7 - "@jupyterlab/documentsearch-extension": ^4.1.7 - "@jupyterlab/extensionmanager-extension": ^4.1.7 - "@jupyterlab/filebrowser-extension": ^4.1.7 - "@jupyterlab/fileeditor-extension": ^4.1.7 - "@jupyterlab/help-extension": ^4.1.7 - "@jupyterlab/htmlviewer-extension": ^4.1.7 - "@jupyterlab/hub-extension": ^4.1.7 - "@jupyterlab/imageviewer-extension": ^4.1.7 - "@jupyterlab/inspector-extension": ^4.1.7 - "@jupyterlab/javascript-extension": ^4.1.7 - "@jupyterlab/json-extension": ^4.1.7 - "@jupyterlab/launcher-extension": ^4.1.7 - "@jupyterlab/logconsole-extension": ^4.1.7 - "@jupyterlab/lsp-extension": ^4.1.7 - "@jupyterlab/mainmenu-extension": ^4.1.7 - "@jupyterlab/mathjax-extension": ^4.1.7 - "@jupyterlab/metadataform-extension": ^4.1.7 - "@jupyterlab/notebook-extension": ^4.1.7 - "@jupyterlab/pdf-extension": ^4.1.7 - "@jupyterlab/rendermime-extension": ^4.1.7 - "@jupyterlab/settingeditor-extension": ^4.1.7 - "@jupyterlab/shortcuts-extension": ^4.1.7 - "@jupyterlab/statusbar-extension": ^4.1.7 - "@jupyterlab/theme-light-extension": ^4.1.7 - "@jupyterlab/toc-extension": ^6.1.7 - "@jupyterlab/tooltip-extension": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/translation-extension": ^4.1.7 - "@jupyterlab/ui-components-extension": ^4.1.7 - "@jupyterlab/vega5-extension": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/application-extension": ^4.1.8 + "@jupyterlab/apputils-extension": ^4.1.8 + "@jupyterlab/builder": ^4.1.8 + "@jupyterlab/celltags-extension": ^4.1.8 + "@jupyterlab/codemirror-extension": ^4.1.8 + "@jupyterlab/completer-extension": ^4.1.8 + "@jupyterlab/console-extension": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/csvviewer-extension": ^4.1.8 + "@jupyterlab/debugger-extension": ^4.1.8 + "@jupyterlab/docmanager-extension": ^4.1.8 + "@jupyterlab/documentsearch-extension": ^4.1.8 + "@jupyterlab/extensionmanager-extension": ^4.1.8 + "@jupyterlab/filebrowser-extension": ^4.1.8 + "@jupyterlab/fileeditor-extension": ^4.1.8 + "@jupyterlab/help-extension": ^4.1.8 + "@jupyterlab/htmlviewer-extension": ^4.1.8 + "@jupyterlab/hub-extension": ^4.1.8 + "@jupyterlab/imageviewer-extension": ^4.1.8 + "@jupyterlab/inspector-extension": ^4.1.8 + "@jupyterlab/javascript-extension": ^4.1.8 + "@jupyterlab/json-extension": ^4.1.8 + "@jupyterlab/launcher-extension": ^4.1.8 + "@jupyterlab/logconsole-extension": ^4.1.8 + "@jupyterlab/lsp-extension": ^4.1.8 + "@jupyterlab/mainmenu-extension": ^4.1.8 + "@jupyterlab/mathjax-extension": ^4.1.8 + "@jupyterlab/metadataform-extension": ^4.1.8 + "@jupyterlab/notebook-extension": ^4.1.8 + "@jupyterlab/pdf-extension": ^4.1.8 + "@jupyterlab/rendermime-extension": ^4.1.8 + "@jupyterlab/settingeditor-extension": ^4.1.8 + "@jupyterlab/shortcuts-extension": ^4.1.8 + "@jupyterlab/statusbar-extension": ^4.1.8 + "@jupyterlab/theme-light-extension": ^4.1.8 + "@jupyterlab/toc-extension": ^6.1.8 + "@jupyterlab/tooltip-extension": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/translation-extension": ^4.1.8 + "@jupyterlab/ui-components-extension": ^4.1.8 + "@jupyterlab/vega5-extension": ^4.1.8 copy-webpack-plugin: ^11.0.0 css-loader: ^6.7.1 fs-extra: ^10.1.0 @@ -3157,20 +3157,20 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/example-federated-md@workspace:examples/federated/md_package" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/builder": ^4.1.7 - "@jupyterlab/example-federated-middle": ^3.0.10 - "@jupyterlab/markdownviewer-extension": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/builder": ^4.1.8 + "@jupyterlab/example-federated-middle": ^3.0.11 + "@jupyterlab/markdownviewer-extension": ^4.1.8 "@lumino/widgets": ^2.3.1 rimraf: ~5.0.5 languageName: unknown linkType: soft -"@jupyterlab/example-federated-middle@^3.0.10, @jupyterlab/example-federated-middle@workspace:examples/federated/middle_package": +"@jupyterlab/example-federated-middle@^3.0.11, @jupyterlab/example-federated-middle@workspace:examples/federated/middle_package": version: 0.0.0-use.local resolution: "@jupyterlab/example-federated-middle@workspace:examples/federated/middle_package" dependencies: - "@jupyterlab/builder": ^4.1.7 + "@jupyterlab/builder": ^4.1.8 "@lumino/coreutils": ^2.1.2 rimraf: ~5.0.5 languageName: unknown @@ -3187,18 +3187,18 @@ __metadata: resolution: "@jupyterlab/example-filebrowser@workspace:examples/filebrowser" dependencies: "@jupyter/web-components": ^0.15.2 - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/codemirror": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docmanager": ^4.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/filebrowser": ^4.1.7 - "@jupyterlab/fileeditor": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/theme-light-extension": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/codemirror": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docmanager": ^4.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/filebrowser": ^4.1.8 + "@jupyterlab/fileeditor": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/theme-light-extension": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/commands": ^2.2.0 "@lumino/widgets": ^2.3.1 css-loader: ^6.7.1 @@ -3219,22 +3219,22 @@ __metadata: dependencies: "@jupyter/web-components": ^0.15.2 "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/codemirror": ^4.1.7 - "@jupyterlab/completer": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docmanager": ^4.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/documentsearch": ^4.1.7 - "@jupyterlab/markedparser-extension": ^4.1.7 - "@jupyterlab/mathjax-extension": ^4.1.7 - "@jupyterlab/notebook": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/theme-light-extension": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/codemirror": ^4.1.8 + "@jupyterlab/completer": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docmanager": ^4.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/documentsearch": ^4.1.8 + "@jupyterlab/markedparser-extension": ^4.1.8 + "@jupyterlab/mathjax-extension": ^4.1.8 + "@jupyterlab/notebook": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/theme-light-extension": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/commands": ^2.2.0 "@lumino/widgets": ^2.3.1 css-loader: ^6.7.1 @@ -3253,8 +3253,8 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/example-services-browser@workspace:packages/services/examples/browser" dependencies: - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/services": ^7.1.7 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/services": ^7.1.8 "@lumino/coreutils": ^2.1.2 rimraf: ~5.0.5 typescript: ~5.1.6 @@ -3267,10 +3267,10 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/example-services-outputarea@workspace:packages/services/examples/typescript-browser-with-output" dependencies: - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/outputarea": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/services": ^7.1.7 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/outputarea": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/services": ^7.1.8 css-loader: ^6.7.1 rimraf: ~5.0.5 style-loader: ~3.3.1 @@ -3284,11 +3284,11 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/example-simple-list@workspace:packages/ui-components/examples/simple-windowed-list" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/theme-light-extension": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/theme-light-extension": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.1 css-loader: ^6.7.1 @@ -3307,11 +3307,11 @@ __metadata: resolution: "@jupyterlab/example-terminal@workspace:examples/terminal" dependencies: "@jupyter/web-components": ^0.15.2 - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/terminal": ^4.1.7 - "@jupyterlab/theme-light-extension": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/terminal": ^4.1.8 + "@jupyterlab/theme-light-extension": ^4.1.8 "@lumino/widgets": ^2.3.1 css-loader: ^6.7.1 mini-css-extract-plugin: ^2.7.0 @@ -3325,31 +3325,31 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/extensionmanager-extension@^4.1.7, @jupyterlab/extensionmanager-extension@workspace:packages/extensionmanager-extension, @jupyterlab/extensionmanager-extension@~4.1.7": +"@jupyterlab/extensionmanager-extension@^4.1.8, @jupyterlab/extensionmanager-extension@workspace:packages/extensionmanager-extension, @jupyterlab/extensionmanager-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/extensionmanager-extension@workspace:packages/extensionmanager-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/extensionmanager": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/extensionmanager": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 rimraf: ~5.0.5 typedoc: ~0.24.7 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/extensionmanager@^4.1.7, @jupyterlab/extensionmanager@workspace:packages/extensionmanager": +"@jupyterlab/extensionmanager@^4.1.8, @jupyterlab/extensionmanager@workspace:packages/extensionmanager": version: 0.0.0-use.local resolution: "@jupyterlab/extensionmanager@workspace:packages/extensionmanager" dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/messaging": ^2.0.1 "@lumino/polling": ^2.1.2 "@lumino/widgets": ^2.3.1 @@ -3366,22 +3366,22 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/filebrowser-extension@^4.1.7, @jupyterlab/filebrowser-extension@workspace:packages/filebrowser-extension, @jupyterlab/filebrowser-extension@~4.1.7": +"@jupyterlab/filebrowser-extension@^4.1.8, @jupyterlab/filebrowser-extension@workspace:packages/filebrowser-extension, @jupyterlab/filebrowser-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/filebrowser-extension@workspace:packages/filebrowser-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docmanager": ^4.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/filebrowser": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/statedb": ^4.1.7 - "@jupyterlab/statusbar": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docmanager": ^4.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/filebrowser": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/statedb": ^4.1.8 + "@jupyterlab/statusbar": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/widgets": ^2.3.1 @@ -3391,20 +3391,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/filebrowser@^4.1.7, @jupyterlab/filebrowser@workspace:packages/filebrowser": +"@jupyterlab/filebrowser@^4.1.8, @jupyterlab/filebrowser@workspace:packages/filebrowser": version: 0.0.0-use.local resolution: "@jupyterlab/filebrowser@workspace:packages/filebrowser" dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docmanager": ^4.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/statedb": ^4.1.7 - "@jupyterlab/statusbar": ^4.1.7 - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docmanager": ^4.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/statedb": ^4.1.8 + "@jupyterlab/statusbar": ^4.1.8 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -3424,34 +3424,34 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/fileeditor-extension@^4.1.7, @jupyterlab/fileeditor-extension@workspace:packages/fileeditor-extension, @jupyterlab/fileeditor-extension@~4.1.7": +"@jupyterlab/fileeditor-extension@^4.1.8, @jupyterlab/fileeditor-extension@workspace:packages/fileeditor-extension, @jupyterlab/fileeditor-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/fileeditor-extension@workspace:packages/fileeditor-extension" dependencies: "@codemirror/commands": ^6.2.3 "@codemirror/search": ^6.3.0 - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/codemirror": ^4.1.7 - "@jupyterlab/completer": ^4.1.7 - "@jupyterlab/console": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/documentsearch": ^4.1.7 - "@jupyterlab/filebrowser": ^4.1.7 - "@jupyterlab/fileeditor": ^4.1.7 - "@jupyterlab/launcher": ^4.1.7 - "@jupyterlab/lsp": ^4.1.7 - "@jupyterlab/mainmenu": ^4.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/statusbar": ^4.1.7 - "@jupyterlab/toc": ^6.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/codemirror": ^4.1.8 + "@jupyterlab/completer": ^4.1.8 + "@jupyterlab/console": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/documentsearch": ^4.1.8 + "@jupyterlab/filebrowser": ^4.1.8 + "@jupyterlab/fileeditor": ^4.1.8 + "@jupyterlab/launcher": ^4.1.8 + "@jupyterlab/lsp": ^4.1.8 + "@jupyterlab/mainmenu": ^4.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/statusbar": ^4.1.8 + "@jupyterlab/toc": ^6.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -3462,23 +3462,23 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/fileeditor@^4.1.7, @jupyterlab/fileeditor@workspace:packages/fileeditor": +"@jupyterlab/fileeditor@^4.1.8, @jupyterlab/fileeditor@workspace:packages/fileeditor": version: 0.0.0-use.local resolution: "@jupyterlab/fileeditor@workspace:packages/fileeditor" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/codemirror": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/documentsearch": ^4.1.7 - "@jupyterlab/lsp": ^4.1.7 - "@jupyterlab/statusbar": ^4.1.7 - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/toc": ^6.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/codemirror": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/documentsearch": ^4.1.8 + "@jupyterlab/lsp": ^4.1.8 + "@jupyterlab/statusbar": ^4.1.8 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/toc": ^6.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 @@ -3497,15 +3497,15 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/galata-extension@workspace:galata/extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/builder": ^4.1.7 - "@jupyterlab/cells": ^4.1.7 - "@jupyterlab/debugger": ^4.1.7 - "@jupyterlab/docmanager": ^4.1.7 - "@jupyterlab/nbformat": ^4.1.7 - "@jupyterlab/notebook": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/builder": ^4.1.8 + "@jupyterlab/cells": ^4.1.8 + "@jupyterlab/debugger": ^4.1.8 + "@jupyterlab/docmanager": ^4.1.8 + "@jupyterlab/nbformat": ^4.1.8 + "@jupyterlab/notebook": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 @@ -3518,15 +3518,15 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/galata@workspace:galata" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/debugger": ^4.1.7 - "@jupyterlab/docmanager": ^4.1.7 - "@jupyterlab/nbformat": ^4.1.7 - "@jupyterlab/notebook": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/settingregistry": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/debugger": ^4.1.8 + "@jupyterlab/docmanager": ^4.1.8 + "@jupyterlab/nbformat": ^4.1.8 + "@jupyterlab/notebook": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/settingregistry": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@playwright/test": ^1.32.2 "@stdlib/stats": ~0.0.13 @@ -3542,17 +3542,17 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/help-extension@^4.1.7, @jupyterlab/help-extension@workspace:packages/help-extension, @jupyterlab/help-extension@~4.1.7": +"@jupyterlab/help-extension@^4.1.8, @jupyterlab/help-extension@workspace:packages/help-extension, @jupyterlab/help-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/help-extension@workspace:packages/help-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/mainmenu": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/mainmenu": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/virtualdom": ^2.0.1 @@ -3564,32 +3564,32 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/htmlviewer-extension@^4.1.7, @jupyterlab/htmlviewer-extension@workspace:packages/htmlviewer-extension, @jupyterlab/htmlviewer-extension@~4.1.7": +"@jupyterlab/htmlviewer-extension@^4.1.8, @jupyterlab/htmlviewer-extension@workspace:packages/htmlviewer-extension, @jupyterlab/htmlviewer-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/htmlviewer-extension@workspace:packages/htmlviewer-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/htmlviewer": ^4.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/htmlviewer": ^4.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/htmlviewer@^4.1.7, @jupyterlab/htmlviewer@workspace:packages/htmlviewer": +"@jupyterlab/htmlviewer@^4.1.8, @jupyterlab/htmlviewer@workspace:packages/htmlviewer": version: 0.0.0-use.local resolution: "@jupyterlab/htmlviewer@workspace:packages/htmlviewer" dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 @@ -3599,43 +3599,43 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/hub-extension@^4.1.7, @jupyterlab/hub-extension@workspace:packages/hub-extension, @jupyterlab/hub-extension@~4.1.7": +"@jupyterlab/hub-extension@^4.1.8, @jupyterlab/hub-extension@workspace:packages/hub-extension, @jupyterlab/hub-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/hub-extension@workspace:packages/hub-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/translation": ^4.1.8 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/imageviewer-extension@^4.1.7, @jupyterlab/imageviewer-extension@workspace:packages/imageviewer-extension, @jupyterlab/imageviewer-extension@~4.1.7": +"@jupyterlab/imageviewer-extension@^4.1.8, @jupyterlab/imageviewer-extension@workspace:packages/imageviewer-extension, @jupyterlab/imageviewer-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/imageviewer-extension@workspace:packages/imageviewer-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/imageviewer": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/imageviewer": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 rimraf: ~5.0.5 typedoc: ~0.24.7 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/imageviewer@^4.1.7, @jupyterlab/imageviewer@workspace:packages/imageviewer": +"@jupyterlab/imageviewer@^4.1.8, @jupyterlab/imageviewer@workspace:packages/imageviewer": version: 0.0.0-use.local resolution: "@jupyterlab/imageviewer@workspace:packages/imageviewer" dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/testing": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.1 @@ -3647,18 +3647,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/inspector-extension@^4.1.7, @jupyterlab/inspector-extension@workspace:packages/inspector-extension, @jupyterlab/inspector-extension@~4.1.7": +"@jupyterlab/inspector-extension@^4.1.8, @jupyterlab/inspector-extension@workspace:packages/inspector-extension, @jupyterlab/inspector-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/inspector-extension@workspace:packages/inspector-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/console": ^4.1.7 - "@jupyterlab/inspector": ^4.1.7 - "@jupyterlab/launcher": ^4.1.7 - "@jupyterlab/notebook": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/console": ^4.1.8 + "@jupyterlab/inspector": ^4.1.8 + "@jupyterlab/launcher": ^4.1.8 + "@jupyterlab/notebook": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/widgets": ^2.3.1 rimraf: ~5.0.5 typedoc: ~0.24.7 @@ -3666,18 +3666,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/inspector@^4.1.7, @jupyterlab/inspector@workspace:packages/inspector": +"@jupyterlab/inspector@^4.1.8, @jupyterlab/inspector@workspace:packages/inspector": version: 0.0.0-use.local resolution: "@jupyterlab/inspector@workspace:packages/inspector" dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/statedb": ^4.1.7 - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/statedb": ^4.1.8 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/polling": ^2.1.2 @@ -3691,27 +3691,27 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/javascript-extension@^4.1.7, @jupyterlab/javascript-extension@workspace:packages/javascript-extension, @jupyterlab/javascript-extension@~4.1.7": +"@jupyterlab/javascript-extension@^4.1.8, @jupyterlab/javascript-extension@workspace:packages/javascript-extension, @jupyterlab/javascript-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/javascript-extension@workspace:packages/javascript-extension" dependencies: - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 rimraf: ~5.0.5 typedoc: ~0.24.7 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/json-extension@^4.1.7, @jupyterlab/json-extension@workspace:packages/json-extension, @jupyterlab/json-extension@~4.1.7": +"@jupyterlab/json-extension@^4.1.8, @jupyterlab/json-extension@workspace:packages/json-extension, @jupyterlab/json-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/json-extension@workspace:packages/json-extension" dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/codemirror": ^4.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/codemirror": ^4.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lezer/highlight": ^1.1.4 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 @@ -3730,16 +3730,16 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/launcher-extension@^4.1.7, @jupyterlab/launcher-extension@workspace:packages/launcher-extension, @jupyterlab/launcher-extension@~4.1.7": +"@jupyterlab/launcher-extension@^4.1.8, @jupyterlab/launcher-extension@workspace:packages/launcher-extension, @jupyterlab/launcher-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/launcher-extension@workspace:packages/launcher-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/filebrowser": ^4.1.7 - "@jupyterlab/launcher": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/filebrowser": ^4.1.8 + "@jupyterlab/launcher": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 @@ -3749,13 +3749,13 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/launcher@^4.1.7, @jupyterlab/launcher@workspace:packages/launcher": +"@jupyterlab/launcher@^4.1.8, @jupyterlab/launcher@workspace:packages/launcher": version: 0.0.0-use.local resolution: "@jupyterlab/launcher@workspace:packages/launcher" dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -3770,19 +3770,19 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/logconsole-extension@^4.1.7, @jupyterlab/logconsole-extension@workspace:packages/logconsole-extension, @jupyterlab/logconsole-extension@~4.1.7": +"@jupyterlab/logconsole-extension@^4.1.8, @jupyterlab/logconsole-extension@workspace:packages/logconsole-extension, @jupyterlab/logconsole-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/logconsole-extension@workspace:packages/logconsole-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/logconsole": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/statusbar": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/logconsole": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/statusbar": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 @@ -3792,17 +3792,17 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/logconsole@^4.1.7, @jupyterlab/logconsole@workspace:packages/logconsole": +"@jupyterlab/logconsole@^4.1.8, @jupyterlab/logconsole@workspace:packages/logconsole": version: 0.0.0-use.local resolution: "@jupyterlab/logconsole@workspace:packages/logconsole" dependencies: - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/nbformat": ^4.1.7 - "@jupyterlab/outputarea": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/nbformat": ^4.1.8 + "@jupyterlab/outputarea": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 @@ -3815,17 +3815,17 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/lsp-extension@^4.1.7, @jupyterlab/lsp-extension@workspace:packages/lsp-extension, @jupyterlab/lsp-extension@~4.1.7": +"@jupyterlab/lsp-extension@^4.1.8, @jupyterlab/lsp-extension@workspace:packages/lsp-extension, @jupyterlab/lsp-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/lsp-extension@workspace:packages/lsp-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/lsp": ^4.1.7 - "@jupyterlab/running": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/lsp": ^4.1.8 + "@jupyterlab/running": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/polling": ^2.1.2 "@lumino/signaling": ^2.1.2 @@ -3836,18 +3836,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/lsp@^4.1.7, @jupyterlab/lsp@workspace:packages/lsp": +"@jupyterlab/lsp@^4.1.8, @jupyterlab/lsp@workspace:packages/lsp": version: 0.0.0-use.local resolution: "@jupyterlab/lsp@workspace:packages/lsp" dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/codemirror": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/codemirror": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 @@ -3865,18 +3865,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/mainmenu-extension@^4.1.7, @jupyterlab/mainmenu-extension@workspace:packages/mainmenu-extension, @jupyterlab/mainmenu-extension@~4.1.7": +"@jupyterlab/mainmenu-extension@^4.1.8, @jupyterlab/mainmenu-extension@workspace:packages/mainmenu-extension, @jupyterlab/mainmenu-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/mainmenu-extension@workspace:packages/mainmenu-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/mainmenu": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/mainmenu": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -3887,14 +3887,14 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/mainmenu@^4.1.7, @jupyterlab/mainmenu@workspace:packages/mainmenu": +"@jupyterlab/mainmenu@^4.1.8, @jupyterlab/mainmenu@workspace:packages/mainmenu": version: 0.0.0-use.local resolution: "@jupyterlab/mainmenu@workspace:packages/mainmenu" dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -3907,34 +3907,34 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/markdownviewer-extension@^4.1.7, @jupyterlab/markdownviewer-extension@workspace:packages/markdownviewer-extension, @jupyterlab/markdownviewer-extension@~4.1.7": +"@jupyterlab/markdownviewer-extension@^4.1.8, @jupyterlab/markdownviewer-extension@workspace:packages/markdownviewer-extension, @jupyterlab/markdownviewer-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/markdownviewer-extension@workspace:packages/markdownviewer-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/markdownviewer": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/toc": ^6.1.7 - "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/markdownviewer": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/toc": ^6.1.8 + "@jupyterlab/translation": ^4.1.8 rimraf: ~5.0.5 typedoc: ~0.24.7 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/markdownviewer@^4.1.7, @jupyterlab/markdownviewer@workspace:packages/markdownviewer": +"@jupyterlab/markdownviewer@^4.1.8, @jupyterlab/markdownviewer@workspace:packages/markdownviewer": version: 0.0.0-use.local resolution: "@jupyterlab/markdownviewer@workspace:packages/markdownviewer" dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/toc": ^6.1.7 - "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/toc": ^6.1.8 + "@jupyterlab/translation": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 @@ -3945,15 +3945,15 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/markedparser-extension@^4.1.7, @jupyterlab/markedparser-extension@workspace:packages/markedparser-extension, @jupyterlab/markedparser-extension@~4.1.7": +"@jupyterlab/markedparser-extension@^4.1.8, @jupyterlab/markedparser-extension@workspace:packages/markedparser-extension, @jupyterlab/markedparser-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/markedparser-extension@workspace:packages/markedparser-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/codemirror": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/mermaid": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/codemirror": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/mermaid": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@types/d3": ^7.4.0 "@types/dompurify": ^2.4.0 @@ -3966,12 +3966,12 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/mathjax-extension@^4.1.7, @jupyterlab/mathjax-extension@workspace:packages/mathjax-extension, @jupyterlab/mathjax-extension@~4.1.7": +"@jupyterlab/mathjax-extension@^4.1.8, @jupyterlab/mathjax-extension@workspace:packages/mathjax-extension, @jupyterlab/mathjax-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/mathjax-extension@workspace:packages/mathjax-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 "@lumino/coreutils": ^2.1.2 mathjax-full: ^3.2.2 rimraf: ~5.0.5 @@ -3980,28 +3980,28 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/mermaid-extension@^4.1.7, @jupyterlab/mermaid-extension@workspace:packages/mermaid-extension, @jupyterlab/mermaid-extension@~4.1.7": +"@jupyterlab/mermaid-extension@^4.1.8, @jupyterlab/mermaid-extension@workspace:packages/mermaid-extension, @jupyterlab/mermaid-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/mermaid-extension@workspace:packages/mermaid-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/mermaid": ^4.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 - "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/mermaid": ^4.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 + "@jupyterlab/translation": ^4.1.8 rimraf: ~5.0.5 typedoc: ~0.24.7 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/mermaid@^4.1.7, @jupyterlab/mermaid@workspace:packages/mermaid": +"@jupyterlab/mermaid@^4.1.8, @jupyterlab/mermaid@workspace:packages/mermaid": version: 0.0.0-use.local resolution: "@jupyterlab/mermaid@workspace:packages/mermaid" dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 "@types/jest": ^29.2.0 @@ -4013,33 +4013,33 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/metadataform-extension@^4.1.7, @jupyterlab/metadataform-extension@workspace:packages/metadataform-extension, @jupyterlab/metadataform-extension@~4.1.7": +"@jupyterlab/metadataform-extension@^4.1.8, @jupyterlab/metadataform-extension@workspace:packages/metadataform-extension, @jupyterlab/metadataform-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/metadataform-extension@workspace:packages/metadataform-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/metadataform": ^4.1.7 - "@jupyterlab/notebook": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/metadataform": ^4.1.8 + "@jupyterlab/notebook": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/coreutils": ^2.1.2 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/metadataform@^4.1.7, @jupyterlab/metadataform@workspace:packages/metadataform": +"@jupyterlab/metadataform@^4.1.8, @jupyterlab/metadataform@workspace:packages/metadataform": version: 0.0.0-use.local resolution: "@jupyterlab/metadataform@workspace:packages/metadataform" dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/nbformat": ^4.1.7 - "@jupyterlab/notebook": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/nbformat": ^4.1.8 + "@jupyterlab/notebook": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.1 @@ -4060,101 +4060,101 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/metapackage@workspace:packages/metapackage" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/application-extension": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/apputils-extension": ^4.1.7 - "@jupyterlab/attachments": ^4.1.7 - "@jupyterlab/cell-toolbar": ^4.1.7 - "@jupyterlab/cell-toolbar-extension": ^4.1.7 - "@jupyterlab/cells": ^4.1.7 - "@jupyterlab/celltags-extension": ^4.1.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/codemirror": ^4.1.7 - "@jupyterlab/codemirror-extension": ^4.1.7 - "@jupyterlab/completer": ^4.1.7 - "@jupyterlab/completer-extension": ^4.1.7 - "@jupyterlab/console": ^4.1.7 - "@jupyterlab/console-extension": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/csvviewer": ^4.1.7 - "@jupyterlab/csvviewer-extension": ^4.1.7 - "@jupyterlab/debugger": ^4.1.7 - "@jupyterlab/debugger-extension": ^4.1.7 - "@jupyterlab/docmanager": ^4.1.7 - "@jupyterlab/docmanager-extension": ^4.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/documentsearch": ^4.1.7 - "@jupyterlab/documentsearch-extension": ^4.1.7 - "@jupyterlab/extensionmanager": ^4.1.7 - "@jupyterlab/extensionmanager-extension": ^4.1.7 - "@jupyterlab/filebrowser": ^4.1.7 - "@jupyterlab/filebrowser-extension": ^4.1.7 - "@jupyterlab/fileeditor": ^4.1.7 - "@jupyterlab/fileeditor-extension": ^4.1.7 - "@jupyterlab/help-extension": ^4.1.7 - "@jupyterlab/htmlviewer": ^4.1.7 - "@jupyterlab/htmlviewer-extension": ^4.1.7 - "@jupyterlab/hub-extension": ^4.1.7 - "@jupyterlab/imageviewer": ^4.1.7 - "@jupyterlab/imageviewer-extension": ^4.1.7 - "@jupyterlab/inspector": ^4.1.7 - "@jupyterlab/inspector-extension": ^4.1.7 - "@jupyterlab/javascript-extension": ^4.1.7 - "@jupyterlab/json-extension": ^4.1.7 - "@jupyterlab/launcher": ^4.1.7 - "@jupyterlab/launcher-extension": ^4.1.7 - "@jupyterlab/logconsole": ^4.1.7 - "@jupyterlab/logconsole-extension": ^4.1.7 - "@jupyterlab/lsp": ^4.1.7 - "@jupyterlab/lsp-extension": ^4.1.7 - "@jupyterlab/mainmenu": ^4.1.7 - "@jupyterlab/mainmenu-extension": ^4.1.7 - "@jupyterlab/markdownviewer": ^4.1.7 - "@jupyterlab/markdownviewer-extension": ^4.1.7 - "@jupyterlab/markedparser-extension": ^4.1.7 - "@jupyterlab/mathjax-extension": ^4.1.7 - "@jupyterlab/mermaid": ^4.1.7 - "@jupyterlab/mermaid-extension": ^4.1.7 - "@jupyterlab/metadataform": ^4.1.7 - "@jupyterlab/metadataform-extension": ^4.1.7 - "@jupyterlab/nbconvert-css": ^4.1.7 - "@jupyterlab/nbformat": ^4.1.7 - "@jupyterlab/notebook": ^4.1.7 - "@jupyterlab/notebook-extension": ^4.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/outputarea": ^4.1.7 - "@jupyterlab/pdf-extension": ^4.1.7 - "@jupyterlab/pluginmanager": ^4.1.7 - "@jupyterlab/pluginmanager-extension": ^4.1.7 - "@jupyterlab/property-inspector": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/rendermime-extension": ^4.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 - "@jupyterlab/running": ^4.1.7 - "@jupyterlab/running-extension": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/settingeditor": ^4.1.7 - "@jupyterlab/settingeditor-extension": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/shortcuts-extension": ^4.1.7 - "@jupyterlab/statedb": ^4.1.7 - "@jupyterlab/statusbar": ^4.1.7 - "@jupyterlab/statusbar-extension": ^4.1.7 - "@jupyterlab/terminal": ^4.1.7 - "@jupyterlab/terminal-extension": ^4.1.7 - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/theme-dark-extension": ^4.1.7 - "@jupyterlab/theme-light-extension": ^4.1.7 - "@jupyterlab/toc": ^6.1.7 - "@jupyterlab/toc-extension": ^6.1.7 - "@jupyterlab/tooltip": ^4.1.7 - "@jupyterlab/tooltip-extension": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/translation-extension": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 - "@jupyterlab/ui-components-extension": ^4.1.7 - "@jupyterlab/vega5-extension": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/application-extension": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/apputils-extension": ^4.1.8 + "@jupyterlab/attachments": ^4.1.8 + "@jupyterlab/cell-toolbar": ^4.1.8 + "@jupyterlab/cell-toolbar-extension": ^4.1.8 + "@jupyterlab/cells": ^4.1.8 + "@jupyterlab/celltags-extension": ^4.1.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/codemirror": ^4.1.8 + "@jupyterlab/codemirror-extension": ^4.1.8 + "@jupyterlab/completer": ^4.1.8 + "@jupyterlab/completer-extension": ^4.1.8 + "@jupyterlab/console": ^4.1.8 + "@jupyterlab/console-extension": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/csvviewer": ^4.1.8 + "@jupyterlab/csvviewer-extension": ^4.1.8 + "@jupyterlab/debugger": ^4.1.8 + "@jupyterlab/debugger-extension": ^4.1.8 + "@jupyterlab/docmanager": ^4.1.8 + "@jupyterlab/docmanager-extension": ^4.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/documentsearch": ^4.1.8 + "@jupyterlab/documentsearch-extension": ^4.1.8 + "@jupyterlab/extensionmanager": ^4.1.8 + "@jupyterlab/extensionmanager-extension": ^4.1.8 + "@jupyterlab/filebrowser": ^4.1.8 + "@jupyterlab/filebrowser-extension": ^4.1.8 + "@jupyterlab/fileeditor": ^4.1.8 + "@jupyterlab/fileeditor-extension": ^4.1.8 + "@jupyterlab/help-extension": ^4.1.8 + "@jupyterlab/htmlviewer": ^4.1.8 + "@jupyterlab/htmlviewer-extension": ^4.1.8 + "@jupyterlab/hub-extension": ^4.1.8 + "@jupyterlab/imageviewer": ^4.1.8 + "@jupyterlab/imageviewer-extension": ^4.1.8 + "@jupyterlab/inspector": ^4.1.8 + "@jupyterlab/inspector-extension": ^4.1.8 + "@jupyterlab/javascript-extension": ^4.1.8 + "@jupyterlab/json-extension": ^4.1.8 + "@jupyterlab/launcher": ^4.1.8 + "@jupyterlab/launcher-extension": ^4.1.8 + "@jupyterlab/logconsole": ^4.1.8 + "@jupyterlab/logconsole-extension": ^4.1.8 + "@jupyterlab/lsp": ^4.1.8 + "@jupyterlab/lsp-extension": ^4.1.8 + "@jupyterlab/mainmenu": ^4.1.8 + "@jupyterlab/mainmenu-extension": ^4.1.8 + "@jupyterlab/markdownviewer": ^4.1.8 + "@jupyterlab/markdownviewer-extension": ^4.1.8 + "@jupyterlab/markedparser-extension": ^4.1.8 + "@jupyterlab/mathjax-extension": ^4.1.8 + "@jupyterlab/mermaid": ^4.1.8 + "@jupyterlab/mermaid-extension": ^4.1.8 + "@jupyterlab/metadataform": ^4.1.8 + "@jupyterlab/metadataform-extension": ^4.1.8 + "@jupyterlab/nbconvert-css": ^4.1.8 + "@jupyterlab/nbformat": ^4.1.8 + "@jupyterlab/notebook": ^4.1.8 + "@jupyterlab/notebook-extension": ^4.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/outputarea": ^4.1.8 + "@jupyterlab/pdf-extension": ^4.1.8 + "@jupyterlab/pluginmanager": ^4.1.8 + "@jupyterlab/pluginmanager-extension": ^4.1.8 + "@jupyterlab/property-inspector": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/rendermime-extension": ^4.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 + "@jupyterlab/running": ^4.1.8 + "@jupyterlab/running-extension": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/settingeditor": ^4.1.8 + "@jupyterlab/settingeditor-extension": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/shortcuts-extension": ^4.1.8 + "@jupyterlab/statedb": ^4.1.8 + "@jupyterlab/statusbar": ^4.1.8 + "@jupyterlab/statusbar-extension": ^4.1.8 + "@jupyterlab/terminal": ^4.1.8 + "@jupyterlab/terminal-extension": ^4.1.8 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/theme-dark-extension": ^4.1.8 + "@jupyterlab/theme-light-extension": ^4.1.8 + "@jupyterlab/toc": ^6.1.8 + "@jupyterlab/toc-extension": ^6.1.8 + "@jupyterlab/tooltip": ^4.1.8 + "@jupyterlab/tooltip-extension": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/translation-extension": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 + "@jupyterlab/ui-components-extension": ^4.1.8 + "@jupyterlab/vega5-extension": ^4.1.8 "@types/jest": ^29.2.0 fs-extra: ^10.1.0 jest: ^29.2.0 @@ -4169,8 +4169,8 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/mock-consumer@workspace:jupyterlab/tests/mock_packages/interop/consumer" dependencies: - "@jupyterlab/builder": ^4.1.7 - "@jupyterlab/mock-token": ^4.1.7 + "@jupyterlab/builder": ^4.1.8 + "@jupyterlab/mock-token": ^4.1.8 languageName: unknown linkType: soft @@ -4178,8 +4178,8 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/mock-extension@workspace:jupyterlab/tests/mock_packages/extension" dependencies: - "@jupyterlab/builder": ^4.1.7 - "@jupyterlab/launcher": ^4.1.7 + "@jupyterlab/builder": ^4.1.8 + "@jupyterlab/launcher": ^4.1.8 languageName: unknown linkType: soft @@ -4187,12 +4187,12 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/mock-provider@workspace:jupyterlab/tests/mock_packages/interop/provider" dependencies: - "@jupyterlab/builder": ^4.1.7 - "@jupyterlab/mock-token": ^4.1.7 + "@jupyterlab/builder": ^4.1.8 + "@jupyterlab/mock-token": ^4.1.8 languageName: unknown linkType: soft -"@jupyterlab/mock-token@^4.1.7, @jupyterlab/mock-token@workspace:jupyterlab/tests/mock_packages/interop/token": +"@jupyterlab/mock-token@^4.1.8, @jupyterlab/mock-token@workspace:jupyterlab/tests/mock_packages/interop/token": version: 0.0.0-use.local resolution: "@jupyterlab/mock-token@workspace:jupyterlab/tests/mock_packages/interop/token" dependencies: @@ -4200,17 +4200,17 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/nbconvert-css@^4.1.7, @jupyterlab/nbconvert-css@workspace:packages/nbconvert-css": +"@jupyterlab/nbconvert-css@^4.1.8, @jupyterlab/nbconvert-css@workspace:packages/nbconvert-css": version: 0.0.0-use.local resolution: "@jupyterlab/nbconvert-css@workspace:packages/nbconvert-css" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/cells": ^4.1.7 - "@jupyterlab/codemirror": ^4.1.7 - "@jupyterlab/notebook": ^4.1.7 - "@jupyterlab/outputarea": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/cells": ^4.1.8 + "@jupyterlab/codemirror": ^4.1.8 + "@jupyterlab/notebook": ^4.1.8 + "@jupyterlab/outputarea": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 css-loader: ^6.7.1 mini-css-extract-plugin: ^2.7.0 null-loader: ^4.0.0 @@ -4220,11 +4220,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/nbformat@^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@^4.1.7, @jupyterlab/nbformat@workspace:packages/nbformat": +"@jupyterlab/nbformat@^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@^4.1.8, @jupyterlab/nbformat@workspace:packages/nbformat": version: 0.0.0-use.local resolution: "@jupyterlab/nbformat@workspace:packages/nbformat" dependencies: - "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/testing": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@types/jest": ^29.2.0 jest: ^29.2.0 @@ -4233,40 +4233,40 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/notebook-extension@^4.1.7, @jupyterlab/notebook-extension@workspace:packages/notebook-extension, @jupyterlab/notebook-extension@~4.1.7": +"@jupyterlab/notebook-extension@^4.1.8, @jupyterlab/notebook-extension@workspace:packages/notebook-extension, @jupyterlab/notebook-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/notebook-extension@workspace:packages/notebook-extension" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/cells": ^4.1.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/codemirror": ^4.1.7 - "@jupyterlab/completer": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docmanager": ^4.1.7 - "@jupyterlab/docmanager-extension": ^4.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/documentsearch": ^4.1.7 - "@jupyterlab/filebrowser": ^4.1.7 - "@jupyterlab/launcher": ^4.1.7 - "@jupyterlab/logconsole": ^4.1.7 - "@jupyterlab/lsp": ^4.1.7 - "@jupyterlab/mainmenu": ^4.1.7 - "@jupyterlab/metadataform": ^4.1.7 - "@jupyterlab/nbformat": ^4.1.7 - "@jupyterlab/notebook": ^4.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/property-inspector": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/statedb": ^4.1.7 - "@jupyterlab/statusbar": ^4.1.7 - "@jupyterlab/toc": ^6.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/cells": ^4.1.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/codemirror": ^4.1.8 + "@jupyterlab/completer": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docmanager": ^4.1.8 + "@jupyterlab/docmanager-extension": ^4.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/documentsearch": ^4.1.8 + "@jupyterlab/filebrowser": ^4.1.8 + "@jupyterlab/launcher": ^4.1.8 + "@jupyterlab/logconsole": ^4.1.8 + "@jupyterlab/lsp": ^4.1.8 + "@jupyterlab/mainmenu": ^4.1.8 + "@jupyterlab/metadataform": ^4.1.8 + "@jupyterlab/nbformat": ^4.1.8 + "@jupyterlab/notebook": ^4.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/property-inspector": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/statedb": ^4.1.8 + "@jupyterlab/statusbar": ^4.1.8 + "@jupyterlab/toc": ^6.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -4282,29 +4282,29 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/notebook@^4.1.7, @jupyterlab/notebook@workspace:packages/notebook": +"@jupyterlab/notebook@^4.1.8, @jupyterlab/notebook@workspace:packages/notebook": version: 0.0.0-use.local resolution: "@jupyterlab/notebook@workspace:packages/notebook" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/cells": ^4.1.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/codemirror": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/documentsearch": ^4.1.7 - "@jupyterlab/lsp": ^4.1.7 - "@jupyterlab/nbformat": ^4.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/statusbar": ^4.1.7 - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/toc": ^6.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/cells": ^4.1.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/codemirror": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/documentsearch": ^4.1.8 + "@jupyterlab/lsp": ^4.1.8 + "@jupyterlab/nbformat": ^4.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/statusbar": ^4.1.8 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/toc": ^6.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -4324,11 +4324,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/observables@^5.1.7, @jupyterlab/observables@workspace:packages/observables": +"@jupyterlab/observables@^5.1.8, @jupyterlab/observables@workspace:packages/observables": version: 0.0.0-use.local resolution: "@jupyterlab/observables@workspace:packages/observables" dependencies: - "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/testing": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -4342,18 +4342,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/outputarea@^4.1.7, @jupyterlab/outputarea@workspace:packages/outputarea": +"@jupyterlab/outputarea@^4.1.8, @jupyterlab/outputarea@workspace:packages/outputarea": version: 0.0.0-use.local resolution: "@jupyterlab/outputarea@workspace:packages/outputarea" dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/nbformat": ^4.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/nbformat": ^4.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -4369,11 +4369,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/pdf-extension@^4.1.7, @jupyterlab/pdf-extension@workspace:packages/pdf-extension, @jupyterlab/pdf-extension@~4.1.7": +"@jupyterlab/pdf-extension@^4.1.8, @jupyterlab/pdf-extension@workspace:packages/pdf-extension, @jupyterlab/pdf-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/pdf-extension@workspace:packages/pdf-extension" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.9.7 + "@jupyterlab/rendermime-interfaces": ^3.9.8 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/widgets": ^2.3.1 @@ -4383,32 +4383,32 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/pluginmanager-extension@^4.1.7, @jupyterlab/pluginmanager-extension@workspace:packages/pluginmanager-extension, @jupyterlab/pluginmanager-extension@~4.1.7": +"@jupyterlab/pluginmanager-extension@^4.1.8, @jupyterlab/pluginmanager-extension@workspace:packages/pluginmanager-extension, @jupyterlab/pluginmanager-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/pluginmanager-extension@workspace:packages/pluginmanager-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/pluginmanager": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/pluginmanager": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/coreutils": ^2.1.2 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/pluginmanager@^4.1.7, @jupyterlab/pluginmanager@workspace:packages/pluginmanager": +"@jupyterlab/pluginmanager@^4.1.8, @jupyterlab/pluginmanager@workspace:packages/pluginmanager": version: 0.0.0-use.local resolution: "@jupyterlab/pluginmanager@workspace:packages/pluginmanager" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.1 @@ -4420,13 +4420,13 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/property-inspector@^4.1.7, @jupyterlab/property-inspector@workspace:packages/property-inspector": +"@jupyterlab/property-inspector@^4.1.8, @jupyterlab/property-inspector@workspace:packages/property-inspector": version: 0.0.0-use.local resolution: "@jupyterlab/property-inspector@workspace:packages/property-inspector" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 @@ -4438,22 +4438,22 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/rendermime-extension@^4.1.7, @jupyterlab/rendermime-extension@workspace:packages/rendermime-extension, @jupyterlab/rendermime-extension@~4.1.7": +"@jupyterlab/rendermime-extension@^4.1.8, @jupyterlab/rendermime-extension@workspace:packages/rendermime-extension, @jupyterlab/rendermime-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/rendermime-extension@workspace:packages/rendermime-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/docmanager": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/docmanager": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 rimraf: ~5.0.5 typedoc: ~0.24.7 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/rendermime-interfaces@^3.9.7, @jupyterlab/rendermime-interfaces@workspace:packages/rendermime-interfaces": +"@jupyterlab/rendermime-interfaces@^3.9.8, @jupyterlab/rendermime-interfaces@workspace:packages/rendermime-interfaces": version: 0.0.0-use.local resolution: "@jupyterlab/rendermime-interfaces@workspace:packages/rendermime-interfaces" dependencies: @@ -4465,18 +4465,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/rendermime@^4.1.7, @jupyterlab/rendermime@workspace:packages/rendermime": +"@jupyterlab/rendermime@^4.1.8, @jupyterlab/rendermime@workspace:packages/rendermime": version: 0.0.0-use.local resolution: "@jupyterlab/rendermime@workspace:packages/rendermime" dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/nbformat": ^4.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/nbformat": ^4.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 @@ -4516,18 +4516,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/running-extension@^4.1.7, @jupyterlab/running-extension@workspace:packages/running-extension, @jupyterlab/running-extension@~4.1.7": +"@jupyterlab/running-extension@^4.1.8, @jupyterlab/running-extension@workspace:packages/running-extension, @jupyterlab/running-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/running-extension@workspace:packages/running-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 - "@jupyterlab/running": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 + "@jupyterlab/running": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/commands": ^2.2.0 "@lumino/polling": ^2.1.2 "@lumino/signaling": ^2.1.2 @@ -4538,13 +4538,13 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/running@^4.1.7, @jupyterlab/running@workspace:packages/running": +"@jupyterlab/running@^4.1.8, @jupyterlab/running@workspace:packages/running": version: 0.0.0-use.local resolution: "@jupyterlab/running@workspace:packages/running" dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 @@ -4557,16 +4557,16 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/services@^7.1.7, @jupyterlab/services@workspace:packages/services": +"@jupyterlab/services@^7.1.8, @jupyterlab/services@workspace:packages/services": version: 0.0.0-use.local resolution: "@jupyterlab/services@workspace:packages/services" dependencies: "@jupyter/ydoc": ^1.1.1 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/nbformat": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/statedb": ^4.1.7 - "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/nbformat": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/statedb": ^4.1.8 + "@jupyterlab/testing": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/polling": ^2.1.2 @@ -4584,20 +4584,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/settingeditor-extension@^4.1.7, @jupyterlab/settingeditor-extension@workspace:packages/settingeditor-extension, @jupyterlab/settingeditor-extension@~4.1.7": +"@jupyterlab/settingeditor-extension@^4.1.8, @jupyterlab/settingeditor-extension@workspace:packages/settingeditor-extension, @jupyterlab/settingeditor-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/settingeditor-extension@workspace:packages/settingeditor-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/pluginmanager": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/settingeditor": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/statedb": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/pluginmanager": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/settingeditor": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/statedb": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/disposable": ^2.1.2 rimraf: ~5.0.5 typedoc: ~0.24.7 @@ -4605,20 +4605,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/settingeditor@^4.1.7, @jupyterlab/settingeditor@workspace:packages/settingeditor": +"@jupyterlab/settingeditor@^4.1.8, @jupyterlab/settingeditor@workspace:packages/settingeditor": version: 0.0.0-use.local resolution: "@jupyterlab/settingeditor@workspace:packages/settingeditor" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/inspector": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/statedb": ^4.1.7 - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/inspector": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/statedb": ^4.1.8 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -4644,13 +4644,13 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/settingregistry@^4.1.7, @jupyterlab/settingregistry@workspace:packages/settingregistry": +"@jupyterlab/settingregistry@^4.1.8, @jupyterlab/settingregistry@workspace:packages/settingregistry": version: 0.0.0-use.local resolution: "@jupyterlab/settingregistry@workspace:packages/settingregistry" dependencies: - "@jupyterlab/nbformat": ^4.1.7 - "@jupyterlab/statedb": ^4.1.7 - "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/nbformat": ^4.1.8 + "@jupyterlab/statedb": ^4.1.8 + "@jupyterlab/testing": ^4.1.8 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -4667,15 +4667,15 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/shortcuts-extension@^4.1.7, @jupyterlab/shortcuts-extension@workspace:packages/shortcuts-extension, @jupyterlab/shortcuts-extension@~4.1.7": +"@jupyterlab/shortcuts-extension@^4.1.8, @jupyterlab/shortcuts-extension@workspace:packages/shortcuts-extension, @jupyterlab/shortcuts-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/shortcuts-extension@workspace:packages/shortcuts-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -4692,11 +4692,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/statedb@^4.1.7, @jupyterlab/statedb@workspace:packages/statedb": +"@jupyterlab/statedb@^4.1.8, @jupyterlab/statedb@workspace:packages/statedb": version: 0.0.0-use.local resolution: "@jupyterlab/statedb@workspace:packages/statedb" dependencies: - "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/testing": ^4.1.8 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -4710,15 +4710,15 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/statusbar-extension@^4.1.7, @jupyterlab/statusbar-extension@workspace:packages/statusbar-extension, @jupyterlab/statusbar-extension@~4.1.7": +"@jupyterlab/statusbar-extension@^4.1.8, @jupyterlab/statusbar-extension@workspace:packages/statusbar-extension, @jupyterlab/statusbar-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/statusbar-extension@workspace:packages/statusbar-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/statusbar": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/statusbar": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 "@types/react": ^18.0.26 "@types/react-dom": ^18.0.9 rimraf: ~5.0.5 @@ -4727,12 +4727,12 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/statusbar@^4.1.7, @jupyterlab/statusbar@workspace:packages/statusbar": +"@jupyterlab/statusbar@^4.1.8, @jupyterlab/statusbar@workspace:packages/statusbar": version: 0.0.0-use.local resolution: "@jupyterlab/statusbar@workspace:packages/statusbar" dependencies: - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -4751,27 +4751,27 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/template@workspace:buildutils/template" dependencies: - "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/testing": ^4.1.8 "@types/jest": ^29.2.0 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/terminal-extension@^4.1.7, @jupyterlab/terminal-extension@workspace:packages/terminal-extension, @jupyterlab/terminal-extension@~4.1.7": +"@jupyterlab/terminal-extension@^4.1.8, @jupyterlab/terminal-extension@workspace:packages/terminal-extension, @jupyterlab/terminal-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/terminal-extension@workspace:packages/terminal-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/launcher": ^4.1.7 - "@jupyterlab/mainmenu": ^4.1.7 - "@jupyterlab/running": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/terminal": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/launcher": ^4.1.8 + "@jupyterlab/mainmenu": ^4.1.8 + "@jupyterlab/running": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/terminal": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/widgets": ^2.3.1 "@types/webpack-env": ^1.18.0 rimraf: ~5.0.5 @@ -4780,14 +4780,14 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/terminal@^4.1.7, @jupyterlab/terminal@workspace:packages/terminal": +"@jupyterlab/terminal@^4.1.8, @jupyterlab/terminal@workspace:packages/terminal": version: 0.0.0-use.local resolution: "@jupyterlab/terminal@workspace:packages/terminal" dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/domutils": ^2.0.1 "@lumino/messaging": ^2.0.1 @@ -4806,13 +4806,13 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/testing@^4.1.7, @jupyterlab/testing@workspace:packages/testing": +"@jupyterlab/testing@^4.1.8, @jupyterlab/testing@workspace:packages/testing": version: 0.0.0-use.local resolution: "@jupyterlab/testing@workspace:packages/testing" dependencies: "@babel/core": ^7.10.2 "@babel/preset-env": ^7.10.2 - "@jupyterlab/coreutils": ^6.1.7 + "@jupyterlab/coreutils": ^6.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/signaling": ^2.1.2 "@types/jest": ^29.2.0 @@ -4835,74 +4835,74 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/testutils@^4.1.7, @jupyterlab/testutils@workspace:testutils": +"@jupyterlab/testutils@^4.1.8, @jupyterlab/testutils@workspace:testutils": version: 0.0.0-use.local resolution: "@jupyterlab/testutils@workspace:testutils" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/notebook": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/notebook": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/testing": ^4.1.8 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/theme-dark-extension@^4.1.7, @jupyterlab/theme-dark-extension@workspace:packages/theme-dark-extension, @jupyterlab/theme-dark-extension@~4.1.7": +"@jupyterlab/theme-dark-extension@^4.1.8, @jupyterlab/theme-dark-extension@workspace:packages/theme-dark-extension, @jupyterlab/theme-dark-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/theme-dark-extension@workspace:packages/theme-dark-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/translation": ^4.1.8 rimraf: ~5.0.5 typedoc: ~0.24.7 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/theme-light-extension@^4.1.7, @jupyterlab/theme-light-extension@workspace:packages/theme-light-extension, @jupyterlab/theme-light-extension@~4.1.7": +"@jupyterlab/theme-light-extension@^4.1.8, @jupyterlab/theme-light-extension@workspace:packages/theme-light-extension, @jupyterlab/theme-light-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/theme-light-extension@workspace:packages/theme-light-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/translation": ^4.1.8 rimraf: ~5.0.5 typedoc: ~0.24.7 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/toc-extension@^6.1.7, @jupyterlab/toc-extension@workspace:packages/toc-extension, @jupyterlab/toc-extension@~6.1.7": +"@jupyterlab/toc-extension@^6.1.8, @jupyterlab/toc-extension@workspace:packages/toc-extension, @jupyterlab/toc-extension@~6.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/toc-extension@workspace:packages/toc-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/toc": ^6.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/toc": ^6.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 rimraf: ~5.0.5 typedoc: ~0.24.7 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/toc@^6.1.7, @jupyterlab/toc@workspace:packages/toc": +"@jupyterlab/toc@^6.1.8, @jupyterlab/toc@workspace:packages/toc": version: 0.0.0-use.local resolution: "@jupyterlab/toc@workspace:packages/toc" dependencies: - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/docregistry": ^4.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/docregistry": ^4.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 @@ -4918,20 +4918,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/tooltip-extension@^4.1.7, @jupyterlab/tooltip-extension@workspace:packages/tooltip-extension, @jupyterlab/tooltip-extension@~4.1.7": +"@jupyterlab/tooltip-extension@^4.1.8, @jupyterlab/tooltip-extension@workspace:packages/tooltip-extension, @jupyterlab/tooltip-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/tooltip-extension@workspace:packages/tooltip-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/console": ^4.1.7 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/fileeditor": ^4.1.7 - "@jupyterlab/notebook": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/tooltip": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/console": ^4.1.8 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/fileeditor": ^4.1.8 + "@jupyterlab/notebook": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/tooltip": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 @@ -4941,14 +4941,14 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/tooltip@^4.1.7, @jupyterlab/tooltip@workspace:packages/tooltip": +"@jupyterlab/tooltip@^4.1.8, @jupyterlab/tooltip@workspace:packages/tooltip": version: 0.0.0-use.local resolution: "@jupyterlab/tooltip@workspace:packages/tooltip" dependencies: - "@jupyterlab/codeeditor": ^4.1.7 - "@jupyterlab/rendermime": ^4.1.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/codeeditor": ^4.1.8 + "@jupyterlab/rendermime": ^4.1.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/ui-components": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.1 @@ -4958,29 +4958,29 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/translation-extension@^4.1.7, @jupyterlab/translation-extension@workspace:packages/translation-extension, @jupyterlab/translation-extension@~4.1.7": +"@jupyterlab/translation-extension@^4.1.8, @jupyterlab/translation-extension@workspace:packages/translation-extension, @jupyterlab/translation-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/translation-extension@workspace:packages/translation-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/apputils": ^4.2.7 - "@jupyterlab/mainmenu": ^4.1.7 - "@jupyterlab/settingregistry": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/apputils": ^4.2.8 + "@jupyterlab/mainmenu": ^4.1.8 + "@jupyterlab/settingregistry": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/translation@^4.1.7, @jupyterlab/translation@workspace:packages/translation": +"@jupyterlab/translation@^4.1.8, @jupyterlab/translation@workspace:packages/translation": version: 0.0.0-use.local resolution: "@jupyterlab/translation@workspace:packages/translation" dependencies: - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 - "@jupyterlab/services": ^7.1.7 - "@jupyterlab/statedb": ^4.1.7 - "@jupyterlab/testing": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 + "@jupyterlab/services": ^7.1.8 + "@jupyterlab/statedb": ^4.1.8 + "@jupyterlab/testing": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@types/jest": ^29.2.0 jest: ^29.2.0 @@ -4989,29 +4989,29 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/ui-components-extension@^4.1.7, @jupyterlab/ui-components-extension@workspace:packages/ui-components-extension, @jupyterlab/ui-components-extension@~4.1.7": +"@jupyterlab/ui-components-extension@^4.1.8, @jupyterlab/ui-components-extension@workspace:packages/ui-components-extension, @jupyterlab/ui-components-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/ui-components-extension@workspace:packages/ui-components-extension" dependencies: - "@jupyterlab/application": ^4.1.7 - "@jupyterlab/ui-components": ^4.1.7 + "@jupyterlab/application": ^4.1.8 + "@jupyterlab/ui-components": ^4.1.8 rimraf: ~5.0.5 typedoc: ~0.24.7 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/ui-components@^4.1.7, @jupyterlab/ui-components@workspace:packages/ui-components": +"@jupyterlab/ui-components@^4.1.8, @jupyterlab/ui-components@workspace:packages/ui-components": version: 0.0.0-use.local resolution: "@jupyterlab/ui-components@workspace:packages/ui-components" dependencies: "@jupyter/react-components": ^0.15.2 "@jupyter/web-components": ^0.15.2 - "@jupyterlab/coreutils": ^6.1.7 - "@jupyterlab/observables": ^5.1.7 - "@jupyterlab/rendermime-interfaces": ^3.9.7 - "@jupyterlab/testing": ^4.1.7 - "@jupyterlab/translation": ^4.1.7 + "@jupyterlab/coreutils": ^6.1.8 + "@jupyterlab/observables": ^5.1.8 + "@jupyterlab/rendermime-interfaces": ^3.9.8 + "@jupyterlab/testing": ^4.1.8 + "@jupyterlab/translation": ^4.1.8 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.2.0 "@lumino/coreutils": ^2.1.2 @@ -5039,12 +5039,12 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/vega5-extension@^4.1.7, @jupyterlab/vega5-extension@workspace:packages/vega5-extension, @jupyterlab/vega5-extension@~4.1.7": +"@jupyterlab/vega5-extension@^4.1.8, @jupyterlab/vega5-extension@workspace:packages/vega5-extension, @jupyterlab/vega5-extension@~4.1.8": version: 0.0.0-use.local resolution: "@jupyterlab/vega5-extension@workspace:packages/vega5-extension" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.9.7 - "@jupyterlab/testutils": ^4.1.7 + "@jupyterlab/rendermime-interfaces": ^3.9.8 + "@jupyterlab/testutils": ^4.1.8 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.1 "@types/jest": ^29.2.0 @@ -16285,7 +16285,7 @@ __metadata: version: 0.0.0-use.local resolution: "node-example@workspace:packages/services/examples/node" dependencies: - "@jupyterlab/services": ^7.1.7 + "@jupyterlab/services": ^7.1.8 rimraf: ~5.0.5 ws: ^8.11.0 languageName: unknown