From 5f6a4cea43ff2c61d7d5ff0d97a9b05da54051d3 Mon Sep 17 00:00:00 2001 From: "Lumberbot (aka Jack)" <39504233+meeseeksmachine@users.noreply.github.com> Date: Thu, 5 Dec 2024 10:48:49 -0800 Subject: [PATCH 01/11] Backport PR #16900: Abort saving if a file cannot be saved (#17046) Co-authored-by: Jason Weill <93281816+JasonWeill@users.noreply.github.com> --- packages/docregistry/src/context.ts | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/packages/docregistry/src/context.ts b/packages/docregistry/src/context.ts index 0ee10fbd3e3a..11d6e181c8f1 100644 --- a/packages/docregistry/src/context.ts +++ b/packages/docregistry/src/context.ts @@ -596,6 +596,14 @@ export class Context< try { await this._manager.ready; + if (this._model.collaborative) { + // Files cannot be saved in collaborative mode. The "save" command + // is disabled in the UI, but if the user tries to save anyway, act + // as though it succeeded. + this._saveState.emit('completed'); + return Promise.resolve(); + } + const value = await this._maybeSave(options); if (this.isDisposed) { return; @@ -792,7 +800,7 @@ export class Context< } /** - * Add a checkpoint the file is writable. + * Add a checkpoint if the file is writable. */ private _maybeCheckpoint(force: boolean): Promise { let promise = Promise.resolve(void 0); From d3bab54ae008cc675ae99ff4e38059fee6e08dd1 Mon Sep 17 00:00:00 2001 From: "Lumberbot (aka Jack)" <39504233+meeseeksmachine@users.noreply.github.com> Date: Thu, 5 Dec 2024 11:37:06 -0800 Subject: [PATCH 02/11] Backport PR #17041: restore bottom httpx version window (#17044) Co-authored-by: Nicholas Bollweg --- jupyterlab/extensions/pypi.py | 15 ++++++++++++--- pyproject.toml | 2 +- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/jupyterlab/extensions/pypi.py b/jupyterlab/extensions/pypi.py index e97f0a6f55ae..aa0434e7a50e 100644 --- a/jupyterlab/extensions/pypi.py +++ b/jupyterlab/extensions/pypi.py @@ -26,6 +26,7 @@ import httpx import tornado from async_lru import alru_cache +from packaging.version import Version from traitlets import CFloat, CInt, Unicode, config, observe from jupyterlab._version import __version__ @@ -49,8 +50,6 @@ def make_connection(self, host): return connection -xmlrpc_transport_override = None - all_proxy_url = environ.get("ALL_PROXY") # For historical reasons, we also support the lowercase environment variables. # Info: https://about.gitlab.com/blog/2021/01/27/we-need-to-talk-no-proxy/ @@ -58,7 +57,13 @@ def make_connection(self, host): https_proxy_url = ( environ.get("https_proxy") or environ.get("HTTPS_PROXY") or http_proxy_url or all_proxy_url ) + +# sniff ``httpx`` version for version-sensitive API +_httpx_version = Version(httpx.__version__) +_httpx_client_args = {} + proxies = None +xmlrpc_transport_override = None if http_proxy_url: http_proxy = urlparse(http_proxy_url) @@ -69,6 +74,10 @@ def make_connection(self, host): "https://": httpx.HTTPTransport(proxy=https_proxy_url), } + _httpx_client_args = { + ("mounts" if _httpx_version >= Version("0.28.0") else "proxies"): proxies, + } + xmlrpc_transport_override = ProxiedTransport() xmlrpc_transport_override.set_proxy(proxy_host, proxy_port) @@ -131,7 +140,7 @@ def __init__( parent: Optional[config.Configurable] = None, ) -> None: super().__init__(app_options, ext_options, parent) - self._httpx_client = httpx.AsyncClient(mounts=proxies) + self._httpx_client = httpx.AsyncClient(**_httpx_client_args) # Set configurable cache size to fetch function self._fetch_package_metadata = partial(_fetch_package_metadata, self._httpx_client) self._observe_package_metadata_cache_size({"new": self.package_metadata_cache_size}) diff --git a/pyproject.toml b/pyproject.toml index 82695229e95b..c233e97bc823 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,7 +36,7 @@ classifiers = [ ] dependencies = [ "async_lru>=1.0.0", - "httpx~=0.28.0", + "httpx>=0.25.0", "importlib-metadata>=4.8.3;python_version<\"3.10\"", "importlib-resources>=1.4;python_version<\"3.9\"", "ipykernel>=6.5.0", From 746da3866b92eebd3984029d7bf02b0a935743a6 Mon Sep 17 00:00:00 2001 From: "Lumberbot (aka Jack)" <39504233+meeseeksmachine@users.noreply.github.com> Date: Thu, 5 Dec 2024 14:33:28 -0800 Subject: [PATCH 03/11] Backport PR #17047: Reset resizeData after column adjustment to allow file dragging (#17048) Co-authored-by: Darshan Poudel --- packages/filebrowser/src/listing.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/filebrowser/src/listing.ts b/packages/filebrowser/src/listing.ts index 2bc013ab48a6..34561c3fe639 100644 --- a/packages/filebrowser/src/listing.ts +++ b/packages/filebrowser/src/listing.ts @@ -1477,6 +1477,7 @@ export class DirListing extends Widget { // Remove the resize listeners if necessary. if (this._resizeData) { this._resizeData.overrides.dispose(); + this._resizeData = null; document.removeEventListener('mousemove', this, true); document.removeEventListener('mouseup', this, true); return; From c953eb8000324379e8182aebb367050b4a69b2b2 Mon Sep 17 00:00:00 2001 From: "Lumberbot (aka Jack)" <39504233+meeseeksmachine@users.noreply.github.com> Date: Thu, 5 Dec 2024 23:23:26 -0800 Subject: [PATCH 04/11] Backport PR #17043: Fix newline handling in stream outputs (#17049) Co-authored-by: David Brochart --- packages/outputarea/src/model.ts | 13 ++++++++----- packages/outputarea/test/model.spec.ts | 14 ++++++++++++++ 2 files changed, 22 insertions(+), 5 deletions(-) diff --git a/packages/outputarea/src/model.ts b/packages/outputarea/src/model.ts index 72e1c66f363f..a147b9255253 100644 --- a/packages/outputarea/src/model.ts +++ b/packages/outputarea/src/model.ts @@ -366,10 +366,7 @@ export class OutputAreaModel implements IOutputAreaModel { if (typeof value.text !== 'string') { value.text = value.text.join(''); } - const { text, index } = Private.processText( - this._streamIndex, - value.text - ); + const { text, index } = Private.processText(0, value.text); this._streamIndex = index; value.text = text; } @@ -544,7 +541,13 @@ namespace Private { if (text === undefined) { text = ''; } - if (!(newText.includes('\b') || newText.includes('\r'))) { + if ( + !( + newText.includes('\b') || + newText.includes('\r') || + newText.includes('\n') + ) + ) { text = text.slice(0, index) + newText + text.slice(index + newText.length); return { text, index: index + newText.length }; diff --git a/packages/outputarea/test/model.spec.ts b/packages/outputarea/test/model.spec.ts index 9ab09fa93ebb..fd153c44415a 100644 --- a/packages/outputarea/test/model.spec.ts +++ b/packages/outputarea/test/model.spec.ts @@ -169,6 +169,20 @@ describe('outputarea/model', () => { expect(model.get(0).toJSON().text).toBe('jupyter\njupyter\njupyter'); }); + it('should reconcile stream with new lines after carriage returns', () => { + model.add({ + name: 'stdout', + output_type: 'stream', + text: ['abc\r'] + }); + model.add({ + name: 'stdout', + output_type: 'stream', + text: ['\n-'] + }); + expect(model.get(0).toJSON().text).toBe('abc\n-'); + }); + it('should be fast in sparse presence of returns and backspaces', () => { // locally this test run in 36 ms; setting it to 10 times // more to allow for slower runs on CI From 6749b327f3c228e9b995d855998cc56208a82a55 Mon Sep 17 00:00:00 2001 From: "Lumberbot (aka Jack)" <39504233+meeseeksmachine@users.noreply.github.com> Date: Sat, 7 Dec 2024 03:37:17 -0800 Subject: [PATCH 05/11] Backport PR #16936: Improve drag image styling (#17051) Co-authored-by: Jason Weill <93281816+JasonWeill@users.noreply.github.com> --- packages/notebook/style/base.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/notebook/style/base.css b/packages/notebook/style/base.css index 55e05fe29afd..c7b237541996 100644 --- a/packages/notebook/style/base.css +++ b/packages/notebook/style/base.css @@ -173,7 +173,7 @@ } .jp-dragImage { - display: block; + display: flex; flex-direction: row; width: var(--jp-private-notebook-dragImage-width); height: var(--jp-private-notebook-dragImage-height); From e2338d69723fb9bb7c5d86f918130b5dddd55de9 Mon Sep 17 00:00:00 2001 From: "Lumberbot (aka Jack)" <39504233+meeseeksmachine@users.noreply.github.com> Date: Sat, 7 Dec 2024 04:35:59 -0800 Subject: [PATCH 06/11] Backport PR #16968: Remove unused CSS (#17052) Co-authored-by: Matthias Geier --- packages/mathjax-extension/style/base.css | 5 ----- 1 file changed, 5 deletions(-) diff --git a/packages/mathjax-extension/style/base.css b/packages/mathjax-extension/style/base.css index 1dbc92861048..7e6b24a3e6fe 100644 --- a/packages/mathjax-extension/style/base.css +++ b/packages/mathjax-extension/style/base.css @@ -4,8 +4,3 @@ |----------------------------------------------------------------------------*/ @import './fonts.css'; - -.jp-OutputArea-output.jp-RenderedLatex .MJX-DISPLAY { - margin: 0; - text-align: left; -} From 5709c88bd75787ef2e1876c82dec990f307af4b6 Mon Sep 17 00:00:00 2001 From: "Lumberbot (aka Jack)" <39504233+meeseeksmachine@users.noreply.github.com> Date: Sat, 7 Dec 2024 06:30:14 -0800 Subject: [PATCH 07/11] Backport PR #17038: Fix filebrowser name order (#17053) Co-authored-by: Nate River <6752679+Nriver@users.noreply.github.com> --- packages/filebrowser/src/listing.ts | 33 +++++++++++++++++++++++++---- 1 file changed, 29 insertions(+), 4 deletions(-) diff --git a/packages/filebrowser/src/listing.ts b/packages/filebrowser/src/listing.ts index 34561c3fe639..34f43de771c7 100644 --- a/packages/filebrowser/src/listing.ts +++ b/packages/filebrowser/src/listing.ts @@ -342,7 +342,8 @@ export class DirListing extends Widget { this._sortedItems = Private.sort( this.model.items(), state, - this._sortNotebooksFirst + this._sortNotebooksFirst, + this.translator ); this._sortState = state; this.update(); @@ -3534,7 +3535,8 @@ namespace Private { export function sort( items: Iterable, state: DirListing.ISortState, - sortNotebooksFirst: boolean = false + sortNotebooksFirst: boolean = false, + translator: ITranslator ): Contents.IModel[] { const copy = Array.from(items); const reverse = state.direction === 'descending' ? 1 : -1; @@ -3563,6 +3565,29 @@ namespace Private { return 0; } + /** + * Compare two items by their name using `translator.languageCode`, with fallback to `navigator.language`. + */ + function compareByName(a: Contents.IModel, b: Contents.IModel) { + const languageCode = ( + translator.languageCode ?? navigator.language + ).replace('_', '-'); + try { + return a.name.localeCompare(b.name, languageCode, { + numeric: true, + sensitivity: 'base' + }); + } catch (e) { + console.warn( + `localeCompare failed to compare ${a.name} and ${b.name} under languageCode: ${languageCode}` + ); + return a.name.localeCompare(b.name, navigator.language, { + numeric: true, + sensitivity: 'base' + }); + } + } + function compare( compare: (a: Contents.IModel, b: Contents.IModel) => number ) { @@ -3579,7 +3604,7 @@ namespace Private { } // Default sorting is alphabetical ascending - return a.name.localeCompare(b.name); + return compareByName(a, b); }; } @@ -3604,7 +3629,7 @@ namespace Private { // Sort by name copy.sort( compare((a: Contents.IModel, b: Contents.IModel) => { - return b.name.localeCompare(a.name); + return compareByName(b, a); }) ); } From 38d2123c610659d6ca180262215a840cb576e839 Mon Sep 17 00:00:00 2001 From: "Lumberbot (aka Jack)" <39504233+meeseeksmachine@users.noreply.github.com> Date: Mon, 9 Dec 2024 07:57:48 -0800 Subject: [PATCH 08/11] Backport PR #17058: Use `AsyncHTTPTransport` over `HTTPTransport` for `httpx` (#17063) 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/extensions/pypi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jupyterlab/extensions/pypi.py b/jupyterlab/extensions/pypi.py index aa0434e7a50e..168a94a0c204 100644 --- a/jupyterlab/extensions/pypi.py +++ b/jupyterlab/extensions/pypi.py @@ -70,8 +70,8 @@ def make_connection(self, host): proxy_host, _, proxy_port = http_proxy.netloc.partition(":") proxies = { - "http://": httpx.HTTPTransport(proxy=http_proxy_url), - "https://": httpx.HTTPTransport(proxy=https_proxy_url), + "http://": httpx.AsyncHTTPTransport(proxy=http_proxy_url), + "https://": httpx.AsyncHTTPTransport(proxy=https_proxy_url), } _httpx_client_args = { From 613396a4837586e67e7420155c6cad1d9c8903f1 Mon Sep 17 00:00:00 2001 From: "Lumberbot (aka Jack)" <39504233+meeseeksmachine@users.noreply.github.com> Date: Mon, 9 Dec 2024 07:58:04 -0800 Subject: [PATCH 09/11] Backport PR #17057: Bump `nanoid` from 3.3.6 to to 3.3.8 (#17061) 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> --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index f14cd0fe1aff..874fdf746ca3 100644 --- a/yarn.lock +++ b/yarn.lock @@ -16057,11 +16057,11 @@ __metadata: linkType: hard "nanoid@npm:^3.3.6": - version: 3.3.6 - resolution: "nanoid@npm:3.3.6" + version: 3.3.8 + resolution: "nanoid@npm:3.3.8" bin: nanoid: bin/nanoid.cjs - checksum: 7d0eda657002738aa5206107bd0580aead6c95c460ef1bdd0b1a87a9c7ae6277ac2e9b945306aaa5b32c6dcb7feaf462d0f552e7f8b5718abfc6ead5c94a71b3 + checksum: dfe0adbc0c77e9655b550c333075f51bb28cfc7568afbf3237249904f9c86c9aaaed1f113f0fddddba75673ee31c758c30c43d4414f014a52a7a626efc5958c9 languageName: node linkType: hard From ea92c424a92f15e1466cbea771bc94ff2f89cf2e Mon Sep 17 00:00:00 2001 From: krassowski Date: Tue, 10 Dec 2024 12:39:17 +0000 Subject: [PATCH 10/11] [ci skip] Publish 4.3.3 SHA256 hashes: jupyterlab-4.3.3-py3-none-any.whl: 32a8fd30677e734ffcc3916a4758b9dab21b02015b668c60eb36f84357b7d4b1 jupyterlab-4.3.3.tar.gz: 76fa39e548fdac94dc1204af5956c556f54c785f70ee26aa47ea08eda4d5bbcd jupyterlab-application-4.3.3.tgz: e237dfa6ab10f945252b069ce3fffabc723270472220d03884f2db238df05824 jupyterlab-application-extension-4.3.3.tgz: 5c97671a2f80fe7a8da06a6d63dbc3e929af70dac54fc9c403844510d0aa89d7 jupyterlab-apputils-4.4.3.tgz: 6bf68dff1ecdf196694f715695fd090cf1ea4aff75a29e5308241ce0a18d93c0 jupyterlab-apputils-extension-4.3.3.tgz: 3186ba06e0c70eaf7fd84d28804b3271d565d3f897ac5b76fb41ba9fbfc7622f jupyterlab-attachments-4.3.3.tgz: 92b42090e3f09e67a97c2a654f0f7eec6aa29e97a5d1e2b79f415848f4706ca5 jupyterlab-builder-4.3.3.tgz: 9ee3582eed6b0bd07cf27408ecb1701a8c491460e191041ded94e68784529490 jupyterlab-buildutils-4.3.3.tgz: 04777898da45925e4506d4754da8a643a7a0b8dff40ffafd6dd94a6a3ac3b11d jupyterlab-cell-toolbar-4.3.3.tgz: 99c9ec74c6e1297821d1f3fc7faba35c3a32448384646a72f8c0755057d5a944 jupyterlab-cell-toolbar-extension-4.3.3.tgz: 1d177ed9af98c7845481164ed7e0af516fde3ccc17386277f7bfd14b3453ad3a jupyterlab-cells-4.3.3.tgz: 572c42c57d85a154d85313ba0f9e07f3160d31c8507cdffbbbf9d5448dec49ad jupyterlab-celltags-extension-4.3.3.tgz: 1cdfc1a162b0c8c2fb7ba30c72ff9626f70fb29b8134e181bc1dce1b52422fa8 jupyterlab-codeeditor-4.3.3.tgz: fdafa24f6b74e5a918b0aebcfacf81dc93dd1d33bae0e0d9aedd27e73d960451 jupyterlab-codemirror-4.3.3.tgz: d2ae5b5726b292aec8f20b797cbc4be8e83f5f5e5909bc6ba7bb75e1b9971a05 jupyterlab-codemirror-extension-4.3.3.tgz: 9292510f1e7338f748952a7e1504f878ae92f520132ba297163bc7088babdcfc jupyterlab-completer-4.3.3.tgz: 0e7b96d31ec06657a0b3ec1351237707194969f9d178b5444892d5c3d90db510 jupyterlab-completer-extension-4.3.3.tgz: 01543513c397db156cd656dc8c4b5b231bc9b8382b78b3b1bc89eb65bee3efa2 jupyterlab-console-4.3.3.tgz: 1f4996a46edb05125c4717dece15c6260610f6fd45716637428d1ecc5385467b jupyterlab-console-extension-4.3.3.tgz: a58a288e6810e72a405c185b65ced29dc30111a79c986a352be293237b6b54cc jupyterlab-coreutils-6.3.3.tgz: 7f476432f401abbc6b681d9c92120b5c4f16d5a81c5c818e3c3996c74135ae2c jupyterlab-csvviewer-4.3.3.tgz: bbb5261e9aea40c524dd2dc5756f3ad4caec93869b33e4b347987367737777b5 jupyterlab-csvviewer-extension-4.3.3.tgz: c2d86d21427e14baef4a533106186f6a0995d37bd058eef60f4fd661cb8e4b5c jupyterlab-debugger-4.3.3.tgz: abb800d5c433302df8df4d8e84de7db665262e13509d960ac824a0d0f173afc2 jupyterlab-debugger-extension-4.3.3.tgz: 4df9d5ce1a22e7690d3e7e44fba2a1799bd14f5b2a772864cb04de3035bfa5c2 jupyterlab-docmanager-4.3.3.tgz: 92e731e4a1a8c8175411f7ab4e912b40a0b0102ce680ff715965b5c966078893 jupyterlab-docmanager-extension-4.3.3.tgz: 2928f021c1c19f6b93c682b540414e58ba6358c08c276130eac5e99f948908c6 jupyterlab-docregistry-4.3.3.tgz: 0ca9b99aa5138c83510dd1c464861a5595b31f1da9b4498b1be079ee4d45d908 jupyterlab-documentsearch-4.3.3.tgz: 6a023db4430a3f84dd6784420e17c7c14da00b86d80600e58c0702d44682c9ba jupyterlab-documentsearch-extension-4.3.3.tgz: 592c43ee852e1c1f621667b1b56449272a3962eda7648c46783955c9c868ce36 jupyterlab-extensionmanager-4.3.3.tgz: 64c530d39ced729f5e4de0ece0c2e95efcaed95d7f21a0b5a15b14522b20dbc1 jupyterlab-extensionmanager-extension-4.3.3.tgz: dce35204f2b1d8fa95f83a56ddd56a8e600ce51602e87aeb7e1eb48e27146c32 jupyterlab-filebrowser-4.3.3.tgz: c3de7487d945f7f21be5894bae4dd766c8b9a370dccd3c1d2f06af68b5461594 jupyterlab-filebrowser-extension-4.3.3.tgz: d3283e156013b2a391a488e3cc4760d4b866501012e544c785a4d7870beddb33 jupyterlab-fileeditor-4.3.3.tgz: 24316faa71c36fa58aa44c301f9563b977bbbd42841f3dd5c762e8c74a82a07a jupyterlab-fileeditor-extension-4.3.3.tgz: 78e11ed736a1c4be584c8ff24130cc06bf1339aaf369ff239e4cbf48cee49e7b jupyterlab-galata-5.3.3.tgz: f4837292ca42420c4876c14812bd3b481d79668138b6b27b8610cbff8b7523bd jupyterlab-help-extension-4.3.3.tgz: 3f3de4ddcf114f7f48f9892d240572822346443aaded3b95172379eda1f5f81e jupyterlab-htmlviewer-4.3.3.tgz: 9d3decc958bd3a6f98b50b2ac91255d0e6a462f4de7a618c489bf574bb9adf5e jupyterlab-htmlviewer-extension-4.3.3.tgz: ef8d3e740868d567d5d7f122e9a869dc51e0c62545552a8937e2e8ec144138b9 jupyterlab-hub-extension-4.3.3.tgz: 93fc51bbd4494a9656a573a10d221e85707257ac22762bb65d5f7566ed15ebaa jupyterlab-imageviewer-4.3.3.tgz: a63dcdc8364f07bab5520f4761c8862933bc6f688224cebb71174d92ee495879 jupyterlab-imageviewer-extension-4.3.3.tgz: acc2e829eff4620629cc2df9fbda5b64d1bae33f7f697dec94832e0fa220e7e9 jupyterlab-inspector-4.3.3.tgz: 404995c197d336359fb6db277354ac415ae57b8089f0eddc9e82a8da648e0022 jupyterlab-inspector-extension-4.3.3.tgz: 74e3ff4cd0282ba6862136097ff1748e8079d4983b7e15e670c24f6f2eb883d5 jupyterlab-javascript-extension-4.3.3.tgz: f9268421fea047c5e740c28f545060f47a56d67340b1bca88bb8e850caea8812 jupyterlab-json-extension-4.3.3.tgz: 856a6e67252dda95eefbf12389c6596e47d7dbf723b5605ce0ee2d94a286b7ce jupyterlab-launcher-4.3.3.tgz: 676069abb08554ee83720c1682fe28293c5d70aaa3568f508880dfcb19205601 jupyterlab-launcher-extension-4.3.3.tgz: 9ce1129a79c0a93ff2da5f916950da4ea1c6d9e893f10804695217c2bc836240 jupyterlab-logconsole-4.3.3.tgz: 31e322a8f33ed0805b1e1faaf9b02d1179cd3abee58c8b1a8b090b34092a9e7b jupyterlab-logconsole-extension-4.3.3.tgz: 34a1e11d3c0aeae51e2acaed6955026a993a1e8071959795237d53891d2a35f9 jupyterlab-lsp-4.3.3.tgz: 7b4d40ab5a88e17109eb47ec81639f2e984eb7fc48842fb965eff9d3dcba2142 jupyterlab-lsp-extension-4.3.3.tgz: fddc70878181166dd65981e1cb0d5861789aef20988b19f18023f1a9ab76daf0 jupyterlab-mainmenu-4.3.3.tgz: 3ffd5b41f148c3a572364935f5200feafac3adbf00c37f484451dae4ec18ffa9 jupyterlab-mainmenu-extension-4.3.3.tgz: c031ca8d64ee64c39fde2e00027912c61ab60932acc8c1acc975a1969cf3c4ae jupyterlab-markdownviewer-4.3.3.tgz: af2b2c56ed85c81a503b4ea4ed7a4f63a4870b72644d4b67b4ce96e2f5061b4d jupyterlab-markdownviewer-extension-4.3.3.tgz: 030103003d5a296abd1f703c9e829deeaeed3ab314282fa06c819d354c4990c4 jupyterlab-markedparser-extension-4.3.3.tgz: c530c5e1f0317218bc8ffe0afa89a7a65c67caa445900f5b2d709d3232cd1fab jupyterlab-mathjax-extension-4.3.3.tgz: 710aaac627dddf2879f4bc8b5d62fd5333b04145f5dc89df08382b57dc6ad3f5 jupyterlab-mermaid-4.3.3.tgz: d93f882b6ac6595a542045d82eb8b29870d3916fac4cf07260ae9de5b41cff72 jupyterlab-mermaid-extension-4.3.3.tgz: f12affd1ae631e05d92e7872a89d0ba38fe3e057c0c6d12fa8256370ed111462 jupyterlab-metadataform-4.3.3.tgz: ac156368ac6669f513084a7cf7c95b331a8c26cfcbe14dc55ed87937ede4cee0 jupyterlab-metadataform-extension-4.3.3.tgz: 3dd8428c41688b174100d09a15e37c1a1c12502bbb7f5517bfba9070836f9ce2 jupyterlab-metapackage-4.3.3.tgz: 397df37ae93faf861f4398d4d4ee8e9f8e336a43674b6392b388eb321f29daa4 jupyterlab-nbconvert-css-4.3.3.tgz: 29bee302d9357089f018e92664d14782d914880bfd9bd92a8e3e79e2e8a5f887 jupyterlab-nbformat-4.3.3.tgz: cace366693a55c8eaee4b5de8a845dd1c419af42de59eb183ae4ab129487d1c2 jupyterlab-notebook-4.3.3.tgz: 3bd71893e8bceb1cbecf64efdf8a86b734024ba7f736d2484161b09f18638a35 jupyterlab-notebook-extension-4.3.3.tgz: efa494090e491f185cd49e066ffdacae06b7c24618b8fc20242d3eefd103121f jupyterlab-observables-5.3.3.tgz: d025a1cb3a99d7fe87736f32897dcdaf2a210e9ea93b9dcd7be9f42ac0451aae jupyterlab-outputarea-4.3.3.tgz: 3fb8c2abe144c514a227c478b27fb97e80b102b4a894cf9fe72a350cedf5a8af jupyterlab-pdf-extension-4.3.3.tgz: 622cfe87ce1983540987e20e4823bde220ba16cb9d7aa9dc3f8577b42da8e749 jupyterlab-pluginmanager-4.3.3.tgz: bcb1853bc3d1411eb19d56baaee06de666f30c17624ae3e939fe414ef4f6bd5d jupyterlab-pluginmanager-extension-4.3.3.tgz: 802c3c618347fdbc9bc975aec6041f55de2c7761327986d68308da5b15b3da6e jupyterlab-property-inspector-4.3.3.tgz: 164eae01ca6568529686033b2e4b31198e67e39cc093fb7b51c001c53589e2e3 jupyterlab-rendermime-4.3.3.tgz: c7182dc17cdf4d3dd240d9ac4d3b8e22059656b807e352781cd5974e83fa3845 jupyterlab-rendermime-extension-4.3.3.tgz: 878f8b923b270cfc0bf3362c290a3b2b897f44274b9d62cf7f70b844eb6dd638 jupyterlab-rendermime-interfaces-3.11.3.tgz: 1cb579dff35e6adb05e59a2155a28f9381dd28d2ba56d51a83df6bb096d351ff jupyterlab-running-4.3.3.tgz: b36df69a2ef7535fbd9da4a7e4e99abdf5a003203bdac91311f995c02d3ff657 jupyterlab-running-extension-4.3.3.tgz: 5626092bb2bf846b0b1519abc8d8717fd6f2cc0ecb9e1aabae9453b81dea4924 jupyterlab-services-7.3.3.tgz: b3fa667750ab75617e4f4bb8f65a75d61273bebf1f6fc937af05206a9c238cee jupyterlab-settingeditor-4.3.3.tgz: 6fe5314ea28a9921077df39576982fdb1fb0cbb65db57cb184ca95468ad1482e jupyterlab-settingeditor-extension-4.3.3.tgz: 7fa802a56f78ca21051b762aa1fc26c75e29b562eb0ba21e282d09528746c6ff jupyterlab-settingregistry-4.3.3.tgz: ada7f3b3aa732ec9706e8c1d2c6e719849b11d8f3b99bbf5ef623054cbf6b36c jupyterlab-shortcuts-extension-5.1.3.tgz: 6f7aafe56db73c85306d4bce9e1396b4c3b7e6d96fd9a9222652a53aeaa8d349 jupyterlab-statedb-4.3.3.tgz: fb9074e65a97d8e7237f2423b52043863612214d7beda82bf15b4c42195b16ce jupyterlab-statusbar-4.3.3.tgz: e9fe51711bc32565c1b3a8c5a8561a8b4de5d7628f4c2cad54ee5c5ed02f3f39 jupyterlab-statusbar-extension-4.3.3.tgz: 0de27a2fb9a1402c4114371fae94e23f2c53e5df0deb91acf26c6518d8d41363 jupyterlab-template-4.3.3.tgz: 9875b5d0899974866d3a261a0601590df04bd36ffdf4798026465e3ea606b417 jupyterlab-terminal-4.3.3.tgz: 3c5712464e01789fe49becdb01aa6ba39d1b2f2083f1e9af417006b82e3f1d51 jupyterlab-terminal-extension-4.3.3.tgz: 07dda237ffffe7a9461ed08e9ef5c109f5f63ce31cbb98a6dfa4864239249df3 jupyterlab-testing-4.3.3.tgz: 1c7d407607c09bac20108d0f09ae1d9ba51fd38af6005f952172bd656c6933fc jupyterlab-testutils-4.3.3.tgz: 841a53011bce2b1c8b7dd6cc6968444bdbf27b107ce726431bbf2afe340967b5 jupyterlab-theme-dark-extension-4.3.3.tgz: b95604ae21a1bfbecb39f6a080b30697aa27370f9bf3ee1534f482e4515b2492 jupyterlab-theme-dark-high-contrast-extension-4.3.3.tgz: ef02f74ca57f8b9c16392e6ff9fe1bf50a01f607cdb10724a4cb1cb0daca679d jupyterlab-theme-light-extension-4.3.3.tgz: 77a5e9e4cf7835531d121303ff6b61082483e825a8ee7ad2743c79dcb2003bbf jupyterlab-toc-6.3.3.tgz: 5b9d5088efa2ccf02c80f0bc3a722f0857bd7a5036d773eedda44058fa07e3f3 jupyterlab-toc-extension-6.3.3.tgz: a98290c7da433086a84a8072854513a6329cfb3ac3259440fe8cf2d7bb4a0b12 jupyterlab-tooltip-4.3.3.tgz: 3936dd3341d871d8886bc163c55291a7d34a1b37c0c7fd49cfea6cf34d5647d0 jupyterlab-tooltip-extension-4.3.3.tgz: 2bdb7e609defeb251c9c8145a5def69c9a080f9d046df32bb9200aed1103c02e jupyterlab-translation-4.3.3.tgz: d9e207a3951af4a2356e1291c0f85258816290745c2bb84d923234a5983ca9a4 jupyterlab-translation-extension-4.3.3.tgz: 02f4842e26afd8bd8d8d20c9b4238128d552f3e9f7e93ab4f46ca708dd525e79 jupyterlab-ui-components-4.3.3.tgz: a73c8be1de89b502420316043eb6aba6ec8d414e65a523b6778969658b8ce851 jupyterlab-ui-components-extension-4.3.3.tgz: 5c51c5eb2e972ec3b7e2d920aa3b60a63b4affea4dc935bb4081bdf10bf0df58 jupyterlab-vega5-extension-4.3.3.tgz: 604191f8769518923df086845527df5d3ccdb29d11de4d20b53ff63b00c9b2d6 jupyterlab-workspaces-4.3.3.tgz: a36a826872f7c50509412aebc5f6d9a9ca4638925d7c6b2cf6dbc036689d881a jupyterlab-workspaces-extension-4.3.3.tgz: af5c4893f54fb54b9c3ec3ccaba236cface303661d626844ac3d5b2e638427cf --- .bumpversion.cfg | 2 +- CHANGELOG.md | 29 +- builder/package.json | 2 +- buildutils/package.json | 2 +- buildutils/template/package.json | 4 +- dev_mode/package.json | 304 +-- 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 | 304 +-- jupyterlab/staging/yarn.lock | 2184 ++++++++-------- .../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 | 14 +- 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 | 24 +- packages/docmanager/package.json | 20 +- 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 | 22 +- 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 | 198 +- 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 | 24 +- packages/running/package.json | 10 +- .../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 +- .../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 +- packages/workspaces-extension/package.json | 22 +- packages/workspaces/package.json | 6 +- testutils/package.json | 12 +- yarn.lock | 2206 ++++++++--------- 130 files changed, 3640 insertions(+), 3615 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 77e3aef3cd9d..f14748da59d3 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4, 3, 2, "final", 0 +current_version = 4, 3, 3, "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 37275e7706dd..9c415c4205a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -393,6 +393,33 @@ To ease code migration to JupyterLab 4, developers should review the [migration +## 4.3.3 + +([Full Changelog](https://github.com/jupyterlab/jupyterlab/compare/v4.3.2...613396a4837586e67e7420155c6cad1d9c8903f1)) + +### Bugs fixed + +- Use `AsyncHTTPTransport` over `HTTPTransport` for `httpx` [#17058](https://github.com/jupyterlab/jupyterlab/pull/17058) ([@krassowski](https://github.com/krassowski)) +- Fix filebrowser name order [#17038](https://github.com/jupyterlab/jupyterlab/pull/17038) ([@Nriver](https://github.com/Nriver)) +- Remove unused CSS [#16968](https://github.com/jupyterlab/jupyterlab/pull/16968) ([@mgeier](https://github.com/mgeier)) +- Improve drag image styling [#16936](https://github.com/jupyterlab/jupyterlab/pull/16936) ([@JasonWeill](https://github.com/JasonWeill)) +- Fix newline handling in stream outputs [#17043](https://github.com/jupyterlab/jupyterlab/pull/17043) ([@davidbrochart](https://github.com/davidbrochart)) +- Reset resizeData after column adjustment to allow file dragging [#17047](https://github.com/jupyterlab/jupyterlab/pull/17047) ([@Darshan808](https://github.com/Darshan808)) +- Abort saving if a file cannot be saved [#16900](https://github.com/jupyterlab/jupyterlab/pull/16900) ([@JasonWeill](https://github.com/JasonWeill)) + +### Maintenance and upkeep improvements + +- Bump `nanoid` from 3.3.6 to to 3.3.8 [#17057](https://github.com/jupyterlab/jupyterlab/pull/17057) ([@krassowski](https://github.com/krassowski)) +- Restore bottom `httpx` version window [#17041](https://github.com/jupyterlab/jupyterlab/pull/17041) ([@bollwyvl](https://github.com/bollwyvl)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyterlab/jupyterlab/graphs/contributors?from=2024-12-03&to=2024-12-10&type=c)) + +[@JasonWeill](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3AJasonWeill+updated%3A2024-12-03..2024-12-10&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ajtpio+updated%3A2024-12-03..2024-12-10&type=Issues) | [@jupyterlab-probot](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ajupyterlab-probot+updated%3A2024-12-03..2024-12-10&type=Issues) | [@krassowski](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Akrassowski+updated%3A2024-12-03..2024-12-10&type=Issues) | [@meeseeksmachine](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ameeseeksmachine+updated%3A2024-12-03..2024-12-10&type=Issues) + + + ## 4.3.2 ([Full Changelog](https://github.com/jupyterlab/jupyterlab/compare/v4.3.1...a8c4b61ee0340cd1ea3a8bfa6db966440caac703)) @@ -426,8 +453,6 @@ To ease code migration to JupyterLab 4, developers should review the [migration [@claytonparnell](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Aclaytonparnell+updated%3A2024-11-16..2024-12-03&type=Issues) | [@Darshan808](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3ADarshan808+updated%3A2024-11-16..2024-12-03&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ajtpio+updated%3A2024-11-16..2024-12-03&type=Issues) | [@jupyterlab-probot](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ajupyterlab-probot+updated%3A2024-11-16..2024-12-03&type=Issues) | [@krassowski](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Akrassowski+updated%3A2024-11-16..2024-12-03&type=Issues) | [@lumberbot-app](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Alumberbot-app+updated%3A2024-11-16..2024-12-03&type=Issues) | [@meeseeksmachine](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ameeseeksmachine+updated%3A2024-11-16..2024-12-03&type=Issues) | [@RRosio](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3ARRosio+updated%3A2024-11-16..2024-12-03&type=Issues) - - ## 4.3.1 ([Full Changelog](https://github.com/jupyterlab/jupyterlab/compare/v4.3.0...6d8e2f0c1db3fd776498c72d95f56e3c49218fa2)) diff --git a/builder/package.json b/builder/package.json index 8cb7a8a55b35..9141483554b3 100644 --- a/builder/package.json +++ b/builder/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/builder", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Extension Builder", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { diff --git a/buildutils/package.json b/buildutils/package.json index 5b7b14e1a40e..5a5a5b4d2bf6 100644 --- a/buildutils/package.json +++ b/buildutils/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/buildutils", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Build Utilities", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { diff --git a/buildutils/template/package.json b/buildutils/template/package.json index 71034333053e..5e848e485239 100644 --- a/buildutils/template/package.json +++ b/buildutils/template/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/template", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Package Template", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,7 +37,7 @@ "watch": "tsc -b --watch" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 87bed087f3c0..ec3017235ba2 100644 --- a/dev_mode/package.json +++ b/dev_mode/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/application-top", - "version": "4.3.2", + "version": "4.3.3", "private": true, "license": "BSD-3-Clause", "scripts": { @@ -23,104 +23,104 @@ "@jupyter/react-components": "^0.16.6", "@jupyter/web-components": "^0.16.6", "@jupyter/ydoc": "^3.0.0-a3", - "@jupyterlab/application": "~4.3.2", - "@jupyterlab/application-extension": "~4.3.2", - "@jupyterlab/apputils": "~4.4.2", - "@jupyterlab/apputils-extension": "~4.3.2", - "@jupyterlab/attachments": "~4.3.2", - "@jupyterlab/cell-toolbar": "~4.3.2", - "@jupyterlab/cell-toolbar-extension": "~4.3.2", - "@jupyterlab/cells": "~4.3.2", - "@jupyterlab/celltags-extension": "~4.3.2", - "@jupyterlab/codeeditor": "~4.3.2", - "@jupyterlab/codemirror": "~4.3.2", - "@jupyterlab/codemirror-extension": "~4.3.2", - "@jupyterlab/completer": "~4.3.2", - "@jupyterlab/completer-extension": "~4.3.2", - "@jupyterlab/console": "~4.3.2", - "@jupyterlab/console-extension": "~4.3.2", - "@jupyterlab/coreutils": "~6.3.2", - "@jupyterlab/csvviewer": "~4.3.2", - "@jupyterlab/csvviewer-extension": "~4.3.2", - "@jupyterlab/debugger": "~4.3.2", - "@jupyterlab/debugger-extension": "~4.3.2", - "@jupyterlab/docmanager": "~4.3.2", - "@jupyterlab/docmanager-extension": "~4.3.2", - "@jupyterlab/docregistry": "~4.3.2", - "@jupyterlab/documentsearch": "~4.3.2", - "@jupyterlab/documentsearch-extension": "~4.3.2", - "@jupyterlab/extensionmanager": "~4.3.2", - "@jupyterlab/extensionmanager-extension": "~4.3.2", - "@jupyterlab/filebrowser": "~4.3.2", - "@jupyterlab/filebrowser-extension": "~4.3.2", - "@jupyterlab/fileeditor": "~4.3.2", - "@jupyterlab/fileeditor-extension": "~4.3.2", - "@jupyterlab/help-extension": "~4.3.2", - "@jupyterlab/htmlviewer": "~4.3.2", - "@jupyterlab/htmlviewer-extension": "~4.3.2", - "@jupyterlab/hub-extension": "~4.3.2", - "@jupyterlab/imageviewer": "~4.3.2", - "@jupyterlab/imageviewer-extension": "~4.3.2", - "@jupyterlab/inspector": "~4.3.2", - "@jupyterlab/inspector-extension": "~4.3.2", - "@jupyterlab/javascript-extension": "~4.3.2", - "@jupyterlab/json-extension": "~4.3.2", - "@jupyterlab/launcher": "~4.3.2", - "@jupyterlab/launcher-extension": "~4.3.2", - "@jupyterlab/logconsole": "~4.3.2", - "@jupyterlab/logconsole-extension": "~4.3.2", - "@jupyterlab/lsp": "~4.3.2", - "@jupyterlab/lsp-extension": "~4.3.2", - "@jupyterlab/mainmenu": "~4.3.2", - "@jupyterlab/mainmenu-extension": "~4.3.2", - "@jupyterlab/markdownviewer": "~4.3.2", - "@jupyterlab/markdownviewer-extension": "~4.3.2", - "@jupyterlab/markedparser-extension": "~4.3.2", - "@jupyterlab/mathjax-extension": "~4.3.2", - "@jupyterlab/mermaid": "~4.3.2", - "@jupyterlab/mermaid-extension": "~4.3.2", - "@jupyterlab/metadataform": "~4.3.2", - "@jupyterlab/metadataform-extension": "~4.3.2", - "@jupyterlab/metapackage": "~4.3.2", - "@jupyterlab/nbconvert-css": "~4.3.2", - "@jupyterlab/nbformat": "~4.3.2", - "@jupyterlab/notebook": "~4.3.2", - "@jupyterlab/notebook-extension": "~4.3.2", - "@jupyterlab/observables": "~5.3.2", - "@jupyterlab/outputarea": "~4.3.2", - "@jupyterlab/pdf-extension": "~4.3.2", - "@jupyterlab/pluginmanager": "~4.3.2", - "@jupyterlab/pluginmanager-extension": "~4.3.2", - "@jupyterlab/property-inspector": "~4.3.2", - "@jupyterlab/rendermime": "~4.3.2", - "@jupyterlab/rendermime-extension": "~4.3.2", - "@jupyterlab/rendermime-interfaces": "~3.11.2", - "@jupyterlab/running": "~4.3.2", - "@jupyterlab/running-extension": "~4.3.2", - "@jupyterlab/services": "~7.3.2", - "@jupyterlab/settingeditor": "~4.3.2", - "@jupyterlab/settingeditor-extension": "~4.3.2", - "@jupyterlab/settingregistry": "~4.3.2", - "@jupyterlab/shortcuts-extension": "~5.1.2", - "@jupyterlab/statedb": "~4.3.2", - "@jupyterlab/statusbar": "~4.3.2", - "@jupyterlab/statusbar-extension": "~4.3.2", - "@jupyterlab/terminal": "~4.3.2", - "@jupyterlab/terminal-extension": "~4.3.2", - "@jupyterlab/theme-dark-extension": "~4.3.2", - "@jupyterlab/theme-dark-high-contrast-extension": "~4.3.2", - "@jupyterlab/theme-light-extension": "~4.3.2", - "@jupyterlab/toc": "~6.3.2", - "@jupyterlab/toc-extension": "~6.3.2", - "@jupyterlab/tooltip": "~4.3.2", - "@jupyterlab/tooltip-extension": "~4.3.2", - "@jupyterlab/translation": "~4.3.2", - "@jupyterlab/translation-extension": "~4.3.2", - "@jupyterlab/ui-components": "~4.3.2", - "@jupyterlab/ui-components-extension": "~4.3.2", - "@jupyterlab/vega5-extension": "~4.3.2", - "@jupyterlab/workspaces": "~4.3.2", - "@jupyterlab/workspaces-extension": "~4.3.2", + "@jupyterlab/application": "~4.3.3", + "@jupyterlab/application-extension": "~4.3.3", + "@jupyterlab/apputils": "~4.4.3", + "@jupyterlab/apputils-extension": "~4.3.3", + "@jupyterlab/attachments": "~4.3.3", + "@jupyterlab/cell-toolbar": "~4.3.3", + "@jupyterlab/cell-toolbar-extension": "~4.3.3", + "@jupyterlab/cells": "~4.3.3", + "@jupyterlab/celltags-extension": "~4.3.3", + "@jupyterlab/codeeditor": "~4.3.3", + "@jupyterlab/codemirror": "~4.3.3", + "@jupyterlab/codemirror-extension": "~4.3.3", + "@jupyterlab/completer": "~4.3.3", + "@jupyterlab/completer-extension": "~4.3.3", + "@jupyterlab/console": "~4.3.3", + "@jupyterlab/console-extension": "~4.3.3", + "@jupyterlab/coreutils": "~6.3.3", + "@jupyterlab/csvviewer": "~4.3.3", + "@jupyterlab/csvviewer-extension": "~4.3.3", + "@jupyterlab/debugger": "~4.3.3", + "@jupyterlab/debugger-extension": "~4.3.3", + "@jupyterlab/docmanager": "~4.3.3", + "@jupyterlab/docmanager-extension": "~4.3.3", + "@jupyterlab/docregistry": "~4.3.3", + "@jupyterlab/documentsearch": "~4.3.3", + "@jupyterlab/documentsearch-extension": "~4.3.3", + "@jupyterlab/extensionmanager": "~4.3.3", + "@jupyterlab/extensionmanager-extension": "~4.3.3", + "@jupyterlab/filebrowser": "~4.3.3", + "@jupyterlab/filebrowser-extension": "~4.3.3", + "@jupyterlab/fileeditor": "~4.3.3", + "@jupyterlab/fileeditor-extension": "~4.3.3", + "@jupyterlab/help-extension": "~4.3.3", + "@jupyterlab/htmlviewer": "~4.3.3", + "@jupyterlab/htmlviewer-extension": "~4.3.3", + "@jupyterlab/hub-extension": "~4.3.3", + "@jupyterlab/imageviewer": "~4.3.3", + "@jupyterlab/imageviewer-extension": "~4.3.3", + "@jupyterlab/inspector": "~4.3.3", + "@jupyterlab/inspector-extension": "~4.3.3", + "@jupyterlab/javascript-extension": "~4.3.3", + "@jupyterlab/json-extension": "~4.3.3", + "@jupyterlab/launcher": "~4.3.3", + "@jupyterlab/launcher-extension": "~4.3.3", + "@jupyterlab/logconsole": "~4.3.3", + "@jupyterlab/logconsole-extension": "~4.3.3", + "@jupyterlab/lsp": "~4.3.3", + "@jupyterlab/lsp-extension": "~4.3.3", + "@jupyterlab/mainmenu": "~4.3.3", + "@jupyterlab/mainmenu-extension": "~4.3.3", + "@jupyterlab/markdownviewer": "~4.3.3", + "@jupyterlab/markdownviewer-extension": "~4.3.3", + "@jupyterlab/markedparser-extension": "~4.3.3", + "@jupyterlab/mathjax-extension": "~4.3.3", + "@jupyterlab/mermaid": "~4.3.3", + "@jupyterlab/mermaid-extension": "~4.3.3", + "@jupyterlab/metadataform": "~4.3.3", + "@jupyterlab/metadataform-extension": "~4.3.3", + "@jupyterlab/metapackage": "~4.3.3", + "@jupyterlab/nbconvert-css": "~4.3.3", + "@jupyterlab/nbformat": "~4.3.3", + "@jupyterlab/notebook": "~4.3.3", + "@jupyterlab/notebook-extension": "~4.3.3", + "@jupyterlab/observables": "~5.3.3", + "@jupyterlab/outputarea": "~4.3.3", + "@jupyterlab/pdf-extension": "~4.3.3", + "@jupyterlab/pluginmanager": "~4.3.3", + "@jupyterlab/pluginmanager-extension": "~4.3.3", + "@jupyterlab/property-inspector": "~4.3.3", + "@jupyterlab/rendermime": "~4.3.3", + "@jupyterlab/rendermime-extension": "~4.3.3", + "@jupyterlab/rendermime-interfaces": "~3.11.3", + "@jupyterlab/running": "~4.3.3", + "@jupyterlab/running-extension": "~4.3.3", + "@jupyterlab/services": "~7.3.3", + "@jupyterlab/settingeditor": "~4.3.3", + "@jupyterlab/settingeditor-extension": "~4.3.3", + "@jupyterlab/settingregistry": "~4.3.3", + "@jupyterlab/shortcuts-extension": "~5.1.3", + "@jupyterlab/statedb": "~4.3.3", + "@jupyterlab/statusbar": "~4.3.3", + "@jupyterlab/statusbar-extension": "~4.3.3", + "@jupyterlab/terminal": "~4.3.3", + "@jupyterlab/terminal-extension": "~4.3.3", + "@jupyterlab/theme-dark-extension": "~4.3.3", + "@jupyterlab/theme-dark-high-contrast-extension": "~4.3.3", + "@jupyterlab/theme-light-extension": "~4.3.3", + "@jupyterlab/toc": "~6.3.3", + "@jupyterlab/toc-extension": "~6.3.3", + "@jupyterlab/tooltip": "~4.3.3", + "@jupyterlab/tooltip-extension": "~4.3.3", + "@jupyterlab/translation": "~4.3.3", + "@jupyterlab/translation-extension": "~4.3.3", + "@jupyterlab/ui-components": "~4.3.3", + "@jupyterlab/ui-components-extension": "~4.3.3", + "@jupyterlab/vega5-extension": "~4.3.3", + "@jupyterlab/workspaces": "~4.3.3", + "@jupyterlab/workspaces-extension": "~4.3.3", "@lezer/common": "^1.0.0", "@lezer/highlight": "^1.0.0", "@lumino/algorithm": "^2.0.0", @@ -145,60 +145,60 @@ "yjs": "^13.5.40" }, "dependencies": { - "@jupyterlab/application": "~4.3.2", - "@jupyterlab/application-extension": "~4.3.2", - "@jupyterlab/apputils-extension": "~4.3.2", - "@jupyterlab/cell-toolbar-extension": "~4.3.2", - "@jupyterlab/celltags-extension": "~4.3.2", - "@jupyterlab/codemirror-extension": "~4.3.2", - "@jupyterlab/completer-extension": "~4.3.2", - "@jupyterlab/console-extension": "~4.3.2", - "@jupyterlab/coreutils": "~6.3.2", - "@jupyterlab/csvviewer-extension": "~4.3.2", - "@jupyterlab/debugger-extension": "~4.3.2", - "@jupyterlab/docmanager-extension": "~4.3.2", - "@jupyterlab/documentsearch-extension": "~4.3.2", - "@jupyterlab/extensionmanager-extension": "~4.3.2", - "@jupyterlab/filebrowser-extension": "~4.3.2", - "@jupyterlab/fileeditor-extension": "~4.3.2", - "@jupyterlab/help-extension": "~4.3.2", - "@jupyterlab/htmlviewer-extension": "~4.3.2", - "@jupyterlab/hub-extension": "~4.3.2", - "@jupyterlab/imageviewer-extension": "~4.3.2", - "@jupyterlab/inspector-extension": "~4.3.2", - "@jupyterlab/javascript-extension": "~4.3.2", - "@jupyterlab/json-extension": "~4.3.2", - "@jupyterlab/launcher-extension": "~4.3.2", - "@jupyterlab/logconsole-extension": "~4.3.2", - "@jupyterlab/lsp-extension": "~4.3.2", - "@jupyterlab/mainmenu-extension": "~4.3.2", - "@jupyterlab/markdownviewer-extension": "~4.3.2", - "@jupyterlab/markedparser-extension": "~4.3.2", - "@jupyterlab/mathjax-extension": "~4.3.2", - "@jupyterlab/mermaid-extension": "~4.3.2", - "@jupyterlab/metadataform-extension": "~4.3.2", - "@jupyterlab/notebook-extension": "~4.3.2", - "@jupyterlab/pdf-extension": "~4.3.2", - "@jupyterlab/pluginmanager-extension": "~4.3.2", - "@jupyterlab/rendermime-extension": "~4.3.2", - "@jupyterlab/running-extension": "~4.3.2", - "@jupyterlab/settingeditor-extension": "~4.3.2", - "@jupyterlab/shortcuts-extension": "~5.1.2", - "@jupyterlab/statusbar-extension": "~4.3.2", - "@jupyterlab/terminal-extension": "~4.3.2", - "@jupyterlab/theme-dark-extension": "~4.3.2", - "@jupyterlab/theme-dark-high-contrast-extension": "~4.3.2", - "@jupyterlab/theme-light-extension": "~4.3.2", - "@jupyterlab/toc-extension": "~6.3.2", - "@jupyterlab/tooltip-extension": "~4.3.2", - "@jupyterlab/translation-extension": "~4.3.2", - "@jupyterlab/ui-components-extension": "~4.3.2", - "@jupyterlab/vega5-extension": "~4.3.2", - "@jupyterlab/workspaces-extension": "~4.3.2" + "@jupyterlab/application": "~4.3.3", + "@jupyterlab/application-extension": "~4.3.3", + "@jupyterlab/apputils-extension": "~4.3.3", + "@jupyterlab/cell-toolbar-extension": "~4.3.3", + "@jupyterlab/celltags-extension": "~4.3.3", + "@jupyterlab/codemirror-extension": "~4.3.3", + "@jupyterlab/completer-extension": "~4.3.3", + "@jupyterlab/console-extension": "~4.3.3", + "@jupyterlab/coreutils": "~6.3.3", + "@jupyterlab/csvviewer-extension": "~4.3.3", + "@jupyterlab/debugger-extension": "~4.3.3", + "@jupyterlab/docmanager-extension": "~4.3.3", + "@jupyterlab/documentsearch-extension": "~4.3.3", + "@jupyterlab/extensionmanager-extension": "~4.3.3", + "@jupyterlab/filebrowser-extension": "~4.3.3", + "@jupyterlab/fileeditor-extension": "~4.3.3", + "@jupyterlab/help-extension": "~4.3.3", + "@jupyterlab/htmlviewer-extension": "~4.3.3", + "@jupyterlab/hub-extension": "~4.3.3", + "@jupyterlab/imageviewer-extension": "~4.3.3", + "@jupyterlab/inspector-extension": "~4.3.3", + "@jupyterlab/javascript-extension": "~4.3.3", + "@jupyterlab/json-extension": "~4.3.3", + "@jupyterlab/launcher-extension": "~4.3.3", + "@jupyterlab/logconsole-extension": "~4.3.3", + "@jupyterlab/lsp-extension": "~4.3.3", + "@jupyterlab/mainmenu-extension": "~4.3.3", + "@jupyterlab/markdownviewer-extension": "~4.3.3", + "@jupyterlab/markedparser-extension": "~4.3.3", + "@jupyterlab/mathjax-extension": "~4.3.3", + "@jupyterlab/mermaid-extension": "~4.3.3", + "@jupyterlab/metadataform-extension": "~4.3.3", + "@jupyterlab/notebook-extension": "~4.3.3", + "@jupyterlab/pdf-extension": "~4.3.3", + "@jupyterlab/pluginmanager-extension": "~4.3.3", + "@jupyterlab/rendermime-extension": "~4.3.3", + "@jupyterlab/running-extension": "~4.3.3", + "@jupyterlab/settingeditor-extension": "~4.3.3", + "@jupyterlab/shortcuts-extension": "~5.1.3", + "@jupyterlab/statusbar-extension": "~4.3.3", + "@jupyterlab/terminal-extension": "~4.3.3", + "@jupyterlab/theme-dark-extension": "~4.3.3", + "@jupyterlab/theme-dark-high-contrast-extension": "~4.3.3", + "@jupyterlab/theme-light-extension": "~4.3.3", + "@jupyterlab/toc-extension": "~6.3.3", + "@jupyterlab/tooltip-extension": "~4.3.3", + "@jupyterlab/translation-extension": "~4.3.3", + "@jupyterlab/ui-components-extension": "~4.3.3", + "@jupyterlab/vega5-extension": "~4.3.3", + "@jupyterlab/workspaces-extension": "~4.3.3" }, "devDependencies": { - "@jupyterlab/builder": "^4.3.2", - "@jupyterlab/buildutils": "^4.3.2", + "@jupyterlab/builder": "^4.3.3", + "@jupyterlab/buildutils": "^4.3.3", "chokidar": "^3.4.0", "css-loader": "^6.7.1", "duplicate-package-checker-webpack-plugin": "^3.0.0", @@ -226,7 +226,7 @@ }, "jupyterlab": { "name": "JupyterLab", - "version": "4.3.2", + "version": "4.3.3", "extensions": { "@jupyterlab/application-extension": "", "@jupyterlab/apputils-extension": "", diff --git a/examples/app/package.json b/examples/app/package.json index 7f6e736ae667..cea9d78e88e5 100644 --- a/examples/app/package.json +++ b/examples/app/package.json @@ -1,45 +1,45 @@ { "name": "@jupyterlab/example-app", - "version": "4.3.2", + "version": "4.3.3", "private": true, "scripts": { "build": "webpack", "clean": "rimraf build" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/application-extension": "^4.3.2", - "@jupyterlab/apputils-extension": "^4.3.2", - "@jupyterlab/builder": "^4.3.2", - "@jupyterlab/celltags-extension": "^4.3.2", - "@jupyterlab/codemirror-extension": "^4.3.2", - "@jupyterlab/completer-extension": "^4.3.2", - "@jupyterlab/console-extension": "^4.3.2", - "@jupyterlab/csvviewer-extension": "^4.3.2", - "@jupyterlab/docmanager-extension": "^4.3.2", - "@jupyterlab/filebrowser-extension": "^4.3.2", - "@jupyterlab/fileeditor-extension": "^4.3.2", - "@jupyterlab/help-extension": "^4.3.2", - "@jupyterlab/imageviewer-extension": "^4.3.2", - "@jupyterlab/inspector-extension": "^4.3.2", - "@jupyterlab/launcher-extension": "^4.3.2", - "@jupyterlab/mainmenu-extension": "^4.3.2", - "@jupyterlab/markdownviewer-extension": "^4.3.2", - "@jupyterlab/mathjax-extension": "^4.3.2", - "@jupyterlab/metadataform-extension": "^4.3.2", - "@jupyterlab/notebook-extension": "^4.3.2", - "@jupyterlab/rendermime-extension": "^4.3.2", - "@jupyterlab/running-extension": "^4.3.2", - "@jupyterlab/settingeditor-extension": "^4.3.2", - "@jupyterlab/shortcuts-extension": "^5.1.2", - "@jupyterlab/statusbar-extension": "^4.3.2", - "@jupyterlab/theme-dark-extension": "^4.3.2", - "@jupyterlab/theme-light-extension": "^4.3.2", - "@jupyterlab/toc-extension": "^6.3.2", - "@jupyterlab/tooltip-extension": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/translation-extension": "^4.3.2", - "@jupyterlab/ui-components-extension": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/application-extension": "^4.3.3", + "@jupyterlab/apputils-extension": "^4.3.3", + "@jupyterlab/builder": "^4.3.3", + "@jupyterlab/celltags-extension": "^4.3.3", + "@jupyterlab/codemirror-extension": "^4.3.3", + "@jupyterlab/completer-extension": "^4.3.3", + "@jupyterlab/console-extension": "^4.3.3", + "@jupyterlab/csvviewer-extension": "^4.3.3", + "@jupyterlab/docmanager-extension": "^4.3.3", + "@jupyterlab/filebrowser-extension": "^4.3.3", + "@jupyterlab/fileeditor-extension": "^4.3.3", + "@jupyterlab/help-extension": "^4.3.3", + "@jupyterlab/imageviewer-extension": "^4.3.3", + "@jupyterlab/inspector-extension": "^4.3.3", + "@jupyterlab/launcher-extension": "^4.3.3", + "@jupyterlab/mainmenu-extension": "^4.3.3", + "@jupyterlab/markdownviewer-extension": "^4.3.3", + "@jupyterlab/mathjax-extension": "^4.3.3", + "@jupyterlab/metadataform-extension": "^4.3.3", + "@jupyterlab/notebook-extension": "^4.3.3", + "@jupyterlab/rendermime-extension": "^4.3.3", + "@jupyterlab/running-extension": "^4.3.3", + "@jupyterlab/settingeditor-extension": "^4.3.3", + "@jupyterlab/shortcuts-extension": "^5.1.3", + "@jupyterlab/statusbar-extension": "^4.3.3", + "@jupyterlab/theme-dark-extension": "^4.3.3", + "@jupyterlab/theme-light-extension": "^4.3.3", + "@jupyterlab/toc-extension": "^6.3.3", + "@jupyterlab/tooltip-extension": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/translation-extension": "^4.3.3", + "@jupyterlab/ui-components-extension": "^4.3.3", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/examples/cell/package.json b/examples/cell/package.json index d8eb047c0a46..3fe7cb48e289 100644 --- a/examples/cell/package.json +++ b/examples/cell/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-cell", - "version": "4.3.2", + "version": "4.3.3", "private": true, "scripts": { "build": "tsc -p src && webpack", @@ -9,16 +9,16 @@ "dependencies": { "@jupyter/web-components": "^0.16.6", "@jupyter/ydoc": "^3.0.0", - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/cells": "^4.3.2", - "@jupyterlab/codemirror": "^4.3.2", - "@jupyterlab/completer": "^4.3.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/rendermime": "^4.3.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/theme-light-extension": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/cells": "^4.3.3", + "@jupyterlab/codemirror": "^4.3.3", + "@jupyterlab/completer": "^4.3.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/rendermime": "^4.3.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/theme-light-extension": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/commands": "^2.3.1", "@lumino/widgets": "^2.5.0" }, diff --git a/examples/console/package.json b/examples/console/package.json index 29f3f0a3fa63..cff524071ffb 100644 --- a/examples/console/package.json +++ b/examples/console/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-console", - "version": "4.3.2", + "version": "4.3.3", "private": true, "scripts": { "build": "tsc -p src && webpack", @@ -9,14 +9,14 @@ "dependencies": { "@jupyter/web-components": "^0.16.6", "@jupyter/ydoc": "^3.0.0", - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/codemirror": "^4.3.2", - "@jupyterlab/console": "^4.3.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/rendermime": "^4.3.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/theme-light-extension": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/codemirror": "^4.3.3", + "@jupyterlab/console": "^4.3.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/rendermime": "^4.3.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/theme-light-extension": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", "@lumino/commands": "^2.3.1", "@lumino/widgets": "^2.5.0" }, diff --git a/examples/federated/core_package/package.json b/examples/federated/core_package/package.json index 66fc8f3c8600..b82496a79959 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.3.2", + "version": "3.3.3", "private": true, "scripts": { "build": "npm run clean && webpack", @@ -8,77 +8,77 @@ "watch": "npm run clean && webpack --watch" }, "resolutions": { - "@jupyterlab/application": "~4.3.2", - "@jupyterlab/application-extension": "~4.3.2", + "@jupyterlab/application": "~4.3.3", + "@jupyterlab/application-extension": "~4.3.3", "@jupyterlab/apputils": "~4.1.0-alpha.0", - "@jupyterlab/apputils-extension": "~4.3.2", + "@jupyterlab/apputils-extension": "~4.3.3", "@jupyterlab/attachments": "~4.1.0-alpha.0", "@jupyterlab/cells": "~4.1.0-alpha.0", - "@jupyterlab/celltags-extension": "~4.3.2", + "@jupyterlab/celltags-extension": "~4.3.3", "@jupyterlab/codeeditor": "~4.1.0-alpha.0", - "@jupyterlab/codemirror-extension": "~4.3.2", + "@jupyterlab/codemirror-extension": "~4.3.3", "@jupyterlab/completer": "~4.1.0-alpha.0", - "@jupyterlab/completer-extension": "~4.3.2", + "@jupyterlab/completer-extension": "~4.3.3", "@jupyterlab/console": "~4.1.0-alpha.0", - "@jupyterlab/console-extension": "~4.3.2", - "@jupyterlab/coreutils": "~6.3.2", - "@jupyterlab/csvviewer-extension": "~4.3.2", + "@jupyterlab/console-extension": "~4.3.3", + "@jupyterlab/coreutils": "~6.3.3", + "@jupyterlab/csvviewer-extension": "~4.3.3", "@jupyterlab/debugger": "~4.1.0-alpha.0", - "@jupyterlab/debugger-extension": "~4.3.2", + "@jupyterlab/debugger-extension": "~4.3.3", "@jupyterlab/docmanager": "~4.1.0-alpha.0", - "@jupyterlab/docmanager-extension": "~4.3.2", + "@jupyterlab/docmanager-extension": "~4.3.3", "@jupyterlab/documentsearch": "~4.1.0-alpha.0", - "@jupyterlab/documentsearch-extension": "~4.3.2", + "@jupyterlab/documentsearch-extension": "~4.3.3", "@jupyterlab/extensionmanager": "~4.1.0-alpha.0", - "@jupyterlab/extensionmanager-extension": "~4.3.2", + "@jupyterlab/extensionmanager-extension": "~4.3.3", "@jupyterlab/filebrowser": "~4.1.0-alpha.0", - "@jupyterlab/filebrowser-extension": "~4.3.2", + "@jupyterlab/filebrowser-extension": "~4.3.3", "@jupyterlab/fileeditor": "~4.1.0-alpha.0", - "@jupyterlab/fileeditor-extension": "~4.3.2", - "@jupyterlab/help-extension": "~4.3.2", - "@jupyterlab/htmlviewer-extension": "~4.3.2", - "@jupyterlab/hub-extension": "~4.3.2", + "@jupyterlab/fileeditor-extension": "~4.3.3", + "@jupyterlab/help-extension": "~4.3.3", + "@jupyterlab/htmlviewer-extension": "~4.3.3", + "@jupyterlab/hub-extension": "~4.3.3", "@jupyterlab/imageviewer": "~4.1.0-alpha.0", - "@jupyterlab/imageviewer-extension": "~4.3.2", + "@jupyterlab/imageviewer-extension": "~4.3.3", "@jupyterlab/inspector": "~4.1.0-alpha.0", - "@jupyterlab/inspector-extension": "~4.3.2", - "@jupyterlab/javascript-extension": "~4.3.2", - "@jupyterlab/json-extension": "~4.3.2", + "@jupyterlab/inspector-extension": "~4.3.3", + "@jupyterlab/javascript-extension": "~4.3.3", + "@jupyterlab/json-extension": "~4.3.3", "@jupyterlab/launcher": "~4.1.0-alpha.0", - "@jupyterlab/launcher-extension": "~4.3.2", + "@jupyterlab/launcher-extension": "~4.3.3", "@jupyterlab/logconsole": "~4.1.0-alpha.0", - "@jupyterlab/logconsole-extension": "~4.3.2", + "@jupyterlab/logconsole-extension": "~4.3.3", "@jupyterlab/lsp": "~4.1.0-alpha.0", - "@jupyterlab/lsp-extension": "~4.3.2", + "@jupyterlab/lsp-extension": "~4.3.3", "@jupyterlab/mainmenu": "~4.1.0-alpha.0", - "@jupyterlab/mainmenu-extension": "~4.3.2", + "@jupyterlab/mainmenu-extension": "~4.3.3", "@jupyterlab/markedparser-extension": "~4.1.0-alpha.0", - "@jupyterlab/mathjax-extension": "~4.3.2", + "@jupyterlab/mathjax-extension": "~4.3.3", "@jupyterlab/metadataform": "~4.1.0-alpha.0", - "@jupyterlab/metadataform-extension": "~4.3.2", + "@jupyterlab/metadataform-extension": "~4.3.3", "@jupyterlab/notebook": "~4.1.0-alpha.0", - "@jupyterlab/notebook-extension": "~4.3.2", - "@jupyterlab/pdf-extension": "~4.3.2", + "@jupyterlab/notebook-extension": "~4.3.3", + "@jupyterlab/pdf-extension": "~4.3.3", "@jupyterlab/rendermime": "~4.1.0-alpha.0", - "@jupyterlab/rendermime-extension": "~4.3.2", + "@jupyterlab/rendermime-extension": "~4.3.3", "@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.3.2", + "@jupyterlab/settingeditor-extension": "~4.3.3", "@jupyterlab/settingregistry": "~4.1.0-alpha.0", - "@jupyterlab/shortcuts-extension": "~5.1.2", + "@jupyterlab/shortcuts-extension": "~5.1.3", "@jupyterlab/statedb": "~4.1.0-alpha.0", "@jupyterlab/statusbar": "~4.1.0-alpha.0", - "@jupyterlab/statusbar-extension": "~4.3.2", - "@jupyterlab/theme-light-extension": "~4.3.2", - "@jupyterlab/toc-extension": "~6.3.2", + "@jupyterlab/statusbar-extension": "~4.3.3", + "@jupyterlab/theme-light-extension": "~4.3.3", + "@jupyterlab/toc-extension": "~6.3.3", "@jupyterlab/tooltip": "~4.1.0-alpha.0", - "@jupyterlab/tooltip-extension": "~4.3.2", - "@jupyterlab/translation": "~4.3.2", - "@jupyterlab/translation-extension": "~4.3.2", + "@jupyterlab/tooltip-extension": "~4.3.3", + "@jupyterlab/translation": "~4.3.3", + "@jupyterlab/translation-extension": "~4.3.3", "@jupyterlab/ui-components": "~4.1.0-alpha.0", - "@jupyterlab/ui-components-extension": "~4.3.2", - "@jupyterlab/vega5-extension": "~4.3.2", + "@jupyterlab/ui-components-extension": "~4.3.3", + "@jupyterlab/vega5-extension": "~4.3.3", "@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.3.2", - "@jupyterlab/application-extension": "^4.3.2", - "@jupyterlab/apputils-extension": "^4.3.2", - "@jupyterlab/celltags-extension": "^4.3.2", - "@jupyterlab/codemirror-extension": "^4.3.2", - "@jupyterlab/completer-extension": "^4.3.2", - "@jupyterlab/console-extension": "^4.3.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/csvviewer-extension": "^4.3.2", - "@jupyterlab/debugger-extension": "^4.3.2", - "@jupyterlab/docmanager-extension": "^4.3.2", - "@jupyterlab/documentsearch-extension": "^4.3.2", - "@jupyterlab/extensionmanager-extension": "^4.3.2", - "@jupyterlab/filebrowser-extension": "^4.3.2", - "@jupyterlab/fileeditor-extension": "^4.3.2", - "@jupyterlab/help-extension": "^4.3.2", - "@jupyterlab/htmlviewer-extension": "^4.3.2", - "@jupyterlab/hub-extension": "^4.3.2", - "@jupyterlab/imageviewer-extension": "^4.3.2", - "@jupyterlab/inspector-extension": "^4.3.2", - "@jupyterlab/javascript-extension": "^4.3.2", - "@jupyterlab/json-extension": "^4.3.2", - "@jupyterlab/launcher-extension": "^4.3.2", - "@jupyterlab/logconsole-extension": "^4.3.2", - "@jupyterlab/lsp-extension": "^4.3.2", - "@jupyterlab/mainmenu-extension": "^4.3.2", - "@jupyterlab/mathjax-extension": "^4.3.2", - "@jupyterlab/metadataform-extension": "^4.3.2", - "@jupyterlab/notebook-extension": "^4.3.2", - "@jupyterlab/pdf-extension": "^4.3.2", - "@jupyterlab/rendermime-extension": "^4.3.2", - "@jupyterlab/settingeditor-extension": "^4.3.2", - "@jupyterlab/shortcuts-extension": "^5.1.2", - "@jupyterlab/statusbar-extension": "^4.3.2", - "@jupyterlab/theme-light-extension": "^4.3.2", - "@jupyterlab/toc-extension": "^6.3.2", - "@jupyterlab/tooltip-extension": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/translation-extension": "^4.3.2", - "@jupyterlab/ui-components-extension": "^4.3.2", - "@jupyterlab/vega5-extension": "^4.3.2" + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/application-extension": "^4.3.3", + "@jupyterlab/apputils-extension": "^4.3.3", + "@jupyterlab/celltags-extension": "^4.3.3", + "@jupyterlab/codemirror-extension": "^4.3.3", + "@jupyterlab/completer-extension": "^4.3.3", + "@jupyterlab/console-extension": "^4.3.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/csvviewer-extension": "^4.3.3", + "@jupyterlab/debugger-extension": "^4.3.3", + "@jupyterlab/docmanager-extension": "^4.3.3", + "@jupyterlab/documentsearch-extension": "^4.3.3", + "@jupyterlab/extensionmanager-extension": "^4.3.3", + "@jupyterlab/filebrowser-extension": "^4.3.3", + "@jupyterlab/fileeditor-extension": "^4.3.3", + "@jupyterlab/help-extension": "^4.3.3", + "@jupyterlab/htmlviewer-extension": "^4.3.3", + "@jupyterlab/hub-extension": "^4.3.3", + "@jupyterlab/imageviewer-extension": "^4.3.3", + "@jupyterlab/inspector-extension": "^4.3.3", + "@jupyterlab/javascript-extension": "^4.3.3", + "@jupyterlab/json-extension": "^4.3.3", + "@jupyterlab/launcher-extension": "^4.3.3", + "@jupyterlab/logconsole-extension": "^4.3.3", + "@jupyterlab/lsp-extension": "^4.3.3", + "@jupyterlab/mainmenu-extension": "^4.3.3", + "@jupyterlab/mathjax-extension": "^4.3.3", + "@jupyterlab/metadataform-extension": "^4.3.3", + "@jupyterlab/notebook-extension": "^4.3.3", + "@jupyterlab/pdf-extension": "^4.3.3", + "@jupyterlab/rendermime-extension": "^4.3.3", + "@jupyterlab/settingeditor-extension": "^4.3.3", + "@jupyterlab/shortcuts-extension": "^5.1.3", + "@jupyterlab/statusbar-extension": "^4.3.3", + "@jupyterlab/theme-light-extension": "^4.3.3", + "@jupyterlab/toc-extension": "^6.3.3", + "@jupyterlab/tooltip-extension": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/translation-extension": "^4.3.3", + "@jupyterlab/ui-components-extension": "^4.3.3", + "@jupyterlab/vega5-extension": "^4.3.3" }, "devDependencies": { - "@jupyterlab/builder": "^4.3.2", + "@jupyterlab/builder": "^4.3.3", "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 e1a7e958612f..1bc88fc9e747 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.3.2", + "version": "3.3.3", "private": true, "main": "./index.js", "scripts": { @@ -8,13 +8,13 @@ "clean": "rimraf ../labextensions/@jupyterlab/example-federated-md" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/example-federated-middle": "^3.2.2", - "@jupyterlab/markdownviewer-extension": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/example-federated-middle": "^3.2.3", + "@jupyterlab/markdownviewer-extension": "^4.3.3", "@lumino/widgets": "^2.5.0" }, "devDependencies": { - "@jupyterlab/builder": "^4.3.2", + "@jupyterlab/builder": "^4.3.3", "rimraf": "~5.0.5" }, "jupyterlab": { diff --git a/examples/federated/middle_package/package.json b/examples/federated/middle_package/package.json index fbf5af6e0b4e..d05878ac52dc 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.2.2", + "version": "3.2.3", "private": true, "scripts": { "build": "npm run clean && build-labextension --core-path ../core_package .", @@ -10,7 +10,7 @@ "@lumino/coreutils": "^2.2.0" }, "devDependencies": { - "@jupyterlab/builder": "^4.3.2", + "@jupyterlab/builder": "^4.3.3", "rimraf": "~5.0.5" }, "publishConfig": { diff --git a/examples/federated/package.json b/examples/federated/package.json index 30a3e97dacfe..76b0d9a7c09f 100644 --- a/examples/federated/package.json +++ b/examples/federated/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-federated", - "version": "3.3.2", + "version": "3.3.3", "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 b9788292e316..2642a6f5208c 100644 --- a/examples/filebrowser/package.json +++ b/examples/filebrowser/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-filebrowser", - "version": "4.3.2", + "version": "4.3.3", "private": true, "scripts": { "build": "tsc -p src && webpack", @@ -8,18 +8,18 @@ }, "dependencies": { "@jupyter/web-components": "^0.16.6", - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/codemirror": "^4.3.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/docmanager": "^4.3.2", - "@jupyterlab/docregistry": "^4.3.2", - "@jupyterlab/filebrowser": "^4.3.2", - "@jupyterlab/fileeditor": "^4.3.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/theme-light-extension": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/codemirror": "^4.3.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/docmanager": "^4.3.3", + "@jupyterlab/docregistry": "^4.3.3", + "@jupyterlab/filebrowser": "^4.3.3", + "@jupyterlab/fileeditor": "^4.3.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/theme-light-extension": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/commands": "^2.3.1", "@lumino/widgets": "^2.5.0" }, diff --git a/examples/notebook/package.json b/examples/notebook/package.json index 27e3c93b5563..956caccada4b 100644 --- a/examples/notebook/package.json +++ b/examples/notebook/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-notebook", - "version": "4.3.2", + "version": "4.3.3", "private": true, "scripts": { "build": "tsc -p src && webpack", @@ -9,22 +9,22 @@ "dependencies": { "@jupyter/web-components": "^0.16.6", "@jupyter/ydoc": "^3.0.0", - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/codemirror": "^4.3.2", - "@jupyterlab/completer": "^4.3.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/docmanager": "^4.3.2", - "@jupyterlab/docregistry": "^4.3.2", - "@jupyterlab/documentsearch": "^4.3.2", - "@jupyterlab/markedparser-extension": "^4.3.2", - "@jupyterlab/mathjax-extension": "^4.3.2", - "@jupyterlab/notebook": "^4.3.2", - "@jupyterlab/rendermime": "^4.3.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/theme-light-extension": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/codemirror": "^4.3.3", + "@jupyterlab/completer": "^4.3.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/docmanager": "^4.3.3", + "@jupyterlab/docregistry": "^4.3.3", + "@jupyterlab/documentsearch": "^4.3.3", + "@jupyterlab/markedparser-extension": "^4.3.3", + "@jupyterlab/mathjax-extension": "^4.3.3", + "@jupyterlab/notebook": "^4.3.3", + "@jupyterlab/rendermime": "^4.3.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/theme-light-extension": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/commands": "^2.3.1", "@lumino/widgets": "^2.5.0" }, diff --git a/examples/terminal/package.json b/examples/terminal/package.json index 25dc0f20add8..31feb70993c4 100644 --- a/examples/terminal/package.json +++ b/examples/terminal/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-terminal", - "version": "4.3.2", + "version": "4.3.3", "private": true, "scripts": { "build": "tsc -p src && webpack", @@ -8,11 +8,11 @@ }, "dependencies": { "@jupyter/web-components": "^0.16.6", - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/terminal": "^4.3.2", - "@jupyterlab/theme-light-extension": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/terminal": "^4.3.3", + "@jupyterlab/theme-light-extension": "^4.3.3", "@lumino/widgets": "^2.5.0" }, "devDependencies": { diff --git a/galata/extension/package.json b/galata/extension/package.json index 5223319946a8..ad5ff0d1614c 100644 --- a/galata/extension/package.json +++ b/galata/extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/galata-extension", - "version": "5.3.2", + "version": "5.3.3", "private": true, "description": "JupyterLab UI Testing Framework Extension.", "keywords": [ @@ -32,20 +32,20 @@ "clean:lib": "rimraf ../lib/extension tsconfig.tsbuildinfo" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/cells": "^4.3.2", - "@jupyterlab/debugger": "^4.3.2", - "@jupyterlab/docmanager": "^4.3.2", - "@jupyterlab/nbformat": "^4.3.2", - "@jupyterlab/notebook": "^4.3.2", - "@jupyterlab/settingregistry": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/cells": "^4.3.3", + "@jupyterlab/debugger": "^4.3.3", + "@jupyterlab/docmanager": "^4.3.3", + "@jupyterlab/nbformat": "^4.3.3", + "@jupyterlab/notebook": "^4.3.3", + "@jupyterlab/settingregistry": "^4.3.3", "@lumino/algorithm": "^2.0.2", "@lumino/coreutils": "^2.2.0", "@lumino/signaling": "^2.1.3" }, "devDependencies": { - "@jupyterlab/builder": "^4.3.2", + "@jupyterlab/builder": "^4.3.3", "rimraf": "~5.0.5", "typescript": "~5.1.6" }, diff --git a/galata/package.json b/galata/package.json index 1ea7f8b16e4b..4e828f7ab42a 100644 --- a/galata/package.json +++ b/galata/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/galata", - "version": "5.3.2", + "version": "5.3.3", "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.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/debugger": "^4.3.2", - "@jupyterlab/docmanager": "^4.3.2", - "@jupyterlab/nbformat": "^4.3.2", - "@jupyterlab/notebook": "^4.3.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/settingregistry": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/debugger": "^4.3.3", + "@jupyterlab/docmanager": "^4.3.3", + "@jupyterlab/nbformat": "^4.3.3", + "@jupyterlab/notebook": "^4.3.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/settingregistry": "^4.3.3", "@lumino/coreutils": "^2.2.0", "@playwright/test": "^1.48.0", "@stdlib/stats": "~0.0.13", diff --git a/jupyterlab/_version.py b/jupyterlab/_version.py index cb4655bfbf64..61a4c0bfbf7c 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, 3, 2, "final", 0) +version_info = VersionInfo(4, 3, 3, "final", 0) _specifier_ = {"alpha": "a", "beta": "b", "candidate": "rc", "final": ""} diff --git a/jupyterlab/staging/package.json b/jupyterlab/staging/package.json index 47146faf2891..b0804edd8002 100644 --- a/jupyterlab/staging/package.json +++ b/jupyterlab/staging/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/application-top", - "version": "4.3.2", + "version": "4.3.3", "private": true, "license": "BSD-3-Clause", "scripts": { @@ -23,104 +23,104 @@ "@jupyter/react-components": "^0.16.6", "@jupyter/web-components": "^0.16.6", "@jupyter/ydoc": "^3.0.0-a3", - "@jupyterlab/application": "~4.3.2", - "@jupyterlab/application-extension": "~4.3.2", - "@jupyterlab/apputils": "~4.4.2", - "@jupyterlab/apputils-extension": "~4.3.2", - "@jupyterlab/attachments": "~4.3.2", - "@jupyterlab/cell-toolbar": "~4.3.2", - "@jupyterlab/cell-toolbar-extension": "~4.3.2", - "@jupyterlab/cells": "~4.3.2", - "@jupyterlab/celltags-extension": "~4.3.2", - "@jupyterlab/codeeditor": "~4.3.2", - "@jupyterlab/codemirror": "~4.3.2", - "@jupyterlab/codemirror-extension": "~4.3.2", - "@jupyterlab/completer": "~4.3.2", - "@jupyterlab/completer-extension": "~4.3.2", - "@jupyterlab/console": "~4.3.2", - "@jupyterlab/console-extension": "~4.3.2", - "@jupyterlab/coreutils": "~6.3.2", - "@jupyterlab/csvviewer": "~4.3.2", - "@jupyterlab/csvviewer-extension": "~4.3.2", - "@jupyterlab/debugger": "~4.3.2", - "@jupyterlab/debugger-extension": "~4.3.2", - "@jupyterlab/docmanager": "~4.3.2", - "@jupyterlab/docmanager-extension": "~4.3.2", - "@jupyterlab/docregistry": "~4.3.2", - "@jupyterlab/documentsearch": "~4.3.2", - "@jupyterlab/documentsearch-extension": "~4.3.2", - "@jupyterlab/extensionmanager": "~4.3.2", - "@jupyterlab/extensionmanager-extension": "~4.3.2", - "@jupyterlab/filebrowser": "~4.3.2", - "@jupyterlab/filebrowser-extension": "~4.3.2", - "@jupyterlab/fileeditor": "~4.3.2", - "@jupyterlab/fileeditor-extension": "~4.3.2", - "@jupyterlab/help-extension": "~4.3.2", - "@jupyterlab/htmlviewer": "~4.3.2", - "@jupyterlab/htmlviewer-extension": "~4.3.2", - "@jupyterlab/hub-extension": "~4.3.2", - "@jupyterlab/imageviewer": "~4.3.2", - "@jupyterlab/imageviewer-extension": "~4.3.2", - "@jupyterlab/inspector": "~4.3.2", - "@jupyterlab/inspector-extension": "~4.3.2", - "@jupyterlab/javascript-extension": "~4.3.2", - "@jupyterlab/json-extension": "~4.3.2", - "@jupyterlab/launcher": "~4.3.2", - "@jupyterlab/launcher-extension": "~4.3.2", - "@jupyterlab/logconsole": "~4.3.2", - "@jupyterlab/logconsole-extension": "~4.3.2", - "@jupyterlab/lsp": "~4.3.2", - "@jupyterlab/lsp-extension": "~4.3.2", - "@jupyterlab/mainmenu": "~4.3.2", - "@jupyterlab/mainmenu-extension": "~4.3.2", - "@jupyterlab/markdownviewer": "~4.3.2", - "@jupyterlab/markdownviewer-extension": "~4.3.2", - "@jupyterlab/markedparser-extension": "~4.3.2", - "@jupyterlab/mathjax-extension": "~4.3.2", - "@jupyterlab/mermaid": "~4.3.2", - "@jupyterlab/mermaid-extension": "~4.3.2", - "@jupyterlab/metadataform": "~4.3.2", - "@jupyterlab/metadataform-extension": "~4.3.2", - "@jupyterlab/metapackage": "~4.3.2", - "@jupyterlab/nbconvert-css": "~4.3.2", - "@jupyterlab/nbformat": "~4.3.2", - "@jupyterlab/notebook": "~4.3.2", - "@jupyterlab/notebook-extension": "~4.3.2", - "@jupyterlab/observables": "~5.3.2", - "@jupyterlab/outputarea": "~4.3.2", - "@jupyterlab/pdf-extension": "~4.3.2", - "@jupyterlab/pluginmanager": "~4.3.2", - "@jupyterlab/pluginmanager-extension": "~4.3.2", - "@jupyterlab/property-inspector": "~4.3.2", - "@jupyterlab/rendermime": "~4.3.2", - "@jupyterlab/rendermime-extension": "~4.3.2", - "@jupyterlab/rendermime-interfaces": "~3.11.2", - "@jupyterlab/running": "~4.3.2", - "@jupyterlab/running-extension": "~4.3.2", - "@jupyterlab/services": "~7.3.2", - "@jupyterlab/settingeditor": "~4.3.2", - "@jupyterlab/settingeditor-extension": "~4.3.2", - "@jupyterlab/settingregistry": "~4.3.2", - "@jupyterlab/shortcuts-extension": "~5.1.2", - "@jupyterlab/statedb": "~4.3.2", - "@jupyterlab/statusbar": "~4.3.2", - "@jupyterlab/statusbar-extension": "~4.3.2", - "@jupyterlab/terminal": "~4.3.2", - "@jupyterlab/terminal-extension": "~4.3.2", - "@jupyterlab/theme-dark-extension": "~4.3.2", - "@jupyterlab/theme-dark-high-contrast-extension": "~4.3.2", - "@jupyterlab/theme-light-extension": "~4.3.2", - "@jupyterlab/toc": "~6.3.2", - "@jupyterlab/toc-extension": "~6.3.2", - "@jupyterlab/tooltip": "~4.3.2", - "@jupyterlab/tooltip-extension": "~4.3.2", - "@jupyterlab/translation": "~4.3.2", - "@jupyterlab/translation-extension": "~4.3.2", - "@jupyterlab/ui-components": "~4.3.2", - "@jupyterlab/ui-components-extension": "~4.3.2", - "@jupyterlab/vega5-extension": "~4.3.2", - "@jupyterlab/workspaces": "~4.3.2", - "@jupyterlab/workspaces-extension": "~4.3.2", + "@jupyterlab/application": "~4.3.3", + "@jupyterlab/application-extension": "~4.3.3", + "@jupyterlab/apputils": "~4.4.3", + "@jupyterlab/apputils-extension": "~4.3.3", + "@jupyterlab/attachments": "~4.3.3", + "@jupyterlab/cell-toolbar": "~4.3.3", + "@jupyterlab/cell-toolbar-extension": "~4.3.3", + "@jupyterlab/cells": "~4.3.3", + "@jupyterlab/celltags-extension": "~4.3.3", + "@jupyterlab/codeeditor": "~4.3.3", + "@jupyterlab/codemirror": "~4.3.3", + "@jupyterlab/codemirror-extension": "~4.3.3", + "@jupyterlab/completer": "~4.3.3", + "@jupyterlab/completer-extension": "~4.3.3", + "@jupyterlab/console": "~4.3.3", + "@jupyterlab/console-extension": "~4.3.3", + "@jupyterlab/coreutils": "~6.3.3", + "@jupyterlab/csvviewer": "~4.3.3", + "@jupyterlab/csvviewer-extension": "~4.3.3", + "@jupyterlab/debugger": "~4.3.3", + "@jupyterlab/debugger-extension": "~4.3.3", + "@jupyterlab/docmanager": "~4.3.3", + "@jupyterlab/docmanager-extension": "~4.3.3", + "@jupyterlab/docregistry": "~4.3.3", + "@jupyterlab/documentsearch": "~4.3.3", + "@jupyterlab/documentsearch-extension": "~4.3.3", + "@jupyterlab/extensionmanager": "~4.3.3", + "@jupyterlab/extensionmanager-extension": "~4.3.3", + "@jupyterlab/filebrowser": "~4.3.3", + "@jupyterlab/filebrowser-extension": "~4.3.3", + "@jupyterlab/fileeditor": "~4.3.3", + "@jupyterlab/fileeditor-extension": "~4.3.3", + "@jupyterlab/help-extension": "~4.3.3", + "@jupyterlab/htmlviewer": "~4.3.3", + "@jupyterlab/htmlviewer-extension": "~4.3.3", + "@jupyterlab/hub-extension": "~4.3.3", + "@jupyterlab/imageviewer": "~4.3.3", + "@jupyterlab/imageviewer-extension": "~4.3.3", + "@jupyterlab/inspector": "~4.3.3", + "@jupyterlab/inspector-extension": "~4.3.3", + "@jupyterlab/javascript-extension": "~4.3.3", + "@jupyterlab/json-extension": "~4.3.3", + "@jupyterlab/launcher": "~4.3.3", + "@jupyterlab/launcher-extension": "~4.3.3", + "@jupyterlab/logconsole": "~4.3.3", + "@jupyterlab/logconsole-extension": "~4.3.3", + "@jupyterlab/lsp": "~4.3.3", + "@jupyterlab/lsp-extension": "~4.3.3", + "@jupyterlab/mainmenu": "~4.3.3", + "@jupyterlab/mainmenu-extension": "~4.3.3", + "@jupyterlab/markdownviewer": "~4.3.3", + "@jupyterlab/markdownviewer-extension": "~4.3.3", + "@jupyterlab/markedparser-extension": "~4.3.3", + "@jupyterlab/mathjax-extension": "~4.3.3", + "@jupyterlab/mermaid": "~4.3.3", + "@jupyterlab/mermaid-extension": "~4.3.3", + "@jupyterlab/metadataform": "~4.3.3", + "@jupyterlab/metadataform-extension": "~4.3.3", + "@jupyterlab/metapackage": "~4.3.3", + "@jupyterlab/nbconvert-css": "~4.3.3", + "@jupyterlab/nbformat": "~4.3.3", + "@jupyterlab/notebook": "~4.3.3", + "@jupyterlab/notebook-extension": "~4.3.3", + "@jupyterlab/observables": "~5.3.3", + "@jupyterlab/outputarea": "~4.3.3", + "@jupyterlab/pdf-extension": "~4.3.3", + "@jupyterlab/pluginmanager": "~4.3.3", + "@jupyterlab/pluginmanager-extension": "~4.3.3", + "@jupyterlab/property-inspector": "~4.3.3", + "@jupyterlab/rendermime": "~4.3.3", + "@jupyterlab/rendermime-extension": "~4.3.3", + "@jupyterlab/rendermime-interfaces": "~3.11.3", + "@jupyterlab/running": "~4.3.3", + "@jupyterlab/running-extension": "~4.3.3", + "@jupyterlab/services": "~7.3.3", + "@jupyterlab/settingeditor": "~4.3.3", + "@jupyterlab/settingeditor-extension": "~4.3.3", + "@jupyterlab/settingregistry": "~4.3.3", + "@jupyterlab/shortcuts-extension": "~5.1.3", + "@jupyterlab/statedb": "~4.3.3", + "@jupyterlab/statusbar": "~4.3.3", + "@jupyterlab/statusbar-extension": "~4.3.3", + "@jupyterlab/terminal": "~4.3.3", + "@jupyterlab/terminal-extension": "~4.3.3", + "@jupyterlab/theme-dark-extension": "~4.3.3", + "@jupyterlab/theme-dark-high-contrast-extension": "~4.3.3", + "@jupyterlab/theme-light-extension": "~4.3.3", + "@jupyterlab/toc": "~6.3.3", + "@jupyterlab/toc-extension": "~6.3.3", + "@jupyterlab/tooltip": "~4.3.3", + "@jupyterlab/tooltip-extension": "~4.3.3", + "@jupyterlab/translation": "~4.3.3", + "@jupyterlab/translation-extension": "~4.3.3", + "@jupyterlab/ui-components": "~4.3.3", + "@jupyterlab/ui-components-extension": "~4.3.3", + "@jupyterlab/vega5-extension": "~4.3.3", + "@jupyterlab/workspaces": "~4.3.3", + "@jupyterlab/workspaces-extension": "~4.3.3", "@lezer/common": "^1.0.0", "@lezer/highlight": "^1.0.0", "@lumino/algorithm": "^2.0.0", @@ -145,60 +145,60 @@ "yjs": "^13.5.40" }, "dependencies": { - "@jupyterlab/application": "~4.3.2", - "@jupyterlab/application-extension": "~4.3.2", - "@jupyterlab/apputils-extension": "~4.3.2", - "@jupyterlab/cell-toolbar-extension": "~4.3.2", - "@jupyterlab/celltags-extension": "~4.3.2", - "@jupyterlab/codemirror-extension": "~4.3.2", - "@jupyterlab/completer-extension": "~4.3.2", - "@jupyterlab/console-extension": "~4.3.2", - "@jupyterlab/coreutils": "~6.3.2", - "@jupyterlab/csvviewer-extension": "~4.3.2", - "@jupyterlab/debugger-extension": "~4.3.2", - "@jupyterlab/docmanager-extension": "~4.3.2", - "@jupyterlab/documentsearch-extension": "~4.3.2", - "@jupyterlab/extensionmanager-extension": "~4.3.2", - "@jupyterlab/filebrowser-extension": "~4.3.2", - "@jupyterlab/fileeditor-extension": "~4.3.2", - "@jupyterlab/help-extension": "~4.3.2", - "@jupyterlab/htmlviewer-extension": "~4.3.2", - "@jupyterlab/hub-extension": "~4.3.2", - "@jupyterlab/imageviewer-extension": "~4.3.2", - "@jupyterlab/inspector-extension": "~4.3.2", - "@jupyterlab/javascript-extension": "~4.3.2", - "@jupyterlab/json-extension": "~4.3.2", - "@jupyterlab/launcher-extension": "~4.3.2", - "@jupyterlab/logconsole-extension": "~4.3.2", - "@jupyterlab/lsp-extension": "~4.3.2", - "@jupyterlab/mainmenu-extension": "~4.3.2", - "@jupyterlab/markdownviewer-extension": "~4.3.2", - "@jupyterlab/markedparser-extension": "~4.3.2", - "@jupyterlab/mathjax-extension": "~4.3.2", - "@jupyterlab/mermaid-extension": "~4.3.2", - "@jupyterlab/metadataform-extension": "~4.3.2", - "@jupyterlab/notebook-extension": "~4.3.2", - "@jupyterlab/pdf-extension": "~4.3.2", - "@jupyterlab/pluginmanager-extension": "~4.3.2", - "@jupyterlab/rendermime-extension": "~4.3.2", - "@jupyterlab/running-extension": "~4.3.2", - "@jupyterlab/settingeditor-extension": "~4.3.2", - "@jupyterlab/shortcuts-extension": "~5.1.2", - "@jupyterlab/statusbar-extension": "~4.3.2", - "@jupyterlab/terminal-extension": "~4.3.2", - "@jupyterlab/theme-dark-extension": "~4.3.2", - "@jupyterlab/theme-dark-high-contrast-extension": "~4.3.2", - "@jupyterlab/theme-light-extension": "~4.3.2", - "@jupyterlab/toc-extension": "~6.3.2", - "@jupyterlab/tooltip-extension": "~4.3.2", - "@jupyterlab/translation-extension": "~4.3.2", - "@jupyterlab/ui-components-extension": "~4.3.2", - "@jupyterlab/vega5-extension": "~4.3.2", - "@jupyterlab/workspaces-extension": "~4.3.2" + "@jupyterlab/application": "~4.3.3", + "@jupyterlab/application-extension": "~4.3.3", + "@jupyterlab/apputils-extension": "~4.3.3", + "@jupyterlab/cell-toolbar-extension": "~4.3.3", + "@jupyterlab/celltags-extension": "~4.3.3", + "@jupyterlab/codemirror-extension": "~4.3.3", + "@jupyterlab/completer-extension": "~4.3.3", + "@jupyterlab/console-extension": "~4.3.3", + "@jupyterlab/coreutils": "~6.3.3", + "@jupyterlab/csvviewer-extension": "~4.3.3", + "@jupyterlab/debugger-extension": "~4.3.3", + "@jupyterlab/docmanager-extension": "~4.3.3", + "@jupyterlab/documentsearch-extension": "~4.3.3", + "@jupyterlab/extensionmanager-extension": "~4.3.3", + "@jupyterlab/filebrowser-extension": "~4.3.3", + "@jupyterlab/fileeditor-extension": "~4.3.3", + "@jupyterlab/help-extension": "~4.3.3", + "@jupyterlab/htmlviewer-extension": "~4.3.3", + "@jupyterlab/hub-extension": "~4.3.3", + "@jupyterlab/imageviewer-extension": "~4.3.3", + "@jupyterlab/inspector-extension": "~4.3.3", + "@jupyterlab/javascript-extension": "~4.3.3", + "@jupyterlab/json-extension": "~4.3.3", + "@jupyterlab/launcher-extension": "~4.3.3", + "@jupyterlab/logconsole-extension": "~4.3.3", + "@jupyterlab/lsp-extension": "~4.3.3", + "@jupyterlab/mainmenu-extension": "~4.3.3", + "@jupyterlab/markdownviewer-extension": "~4.3.3", + "@jupyterlab/markedparser-extension": "~4.3.3", + "@jupyterlab/mathjax-extension": "~4.3.3", + "@jupyterlab/mermaid-extension": "~4.3.3", + "@jupyterlab/metadataform-extension": "~4.3.3", + "@jupyterlab/notebook-extension": "~4.3.3", + "@jupyterlab/pdf-extension": "~4.3.3", + "@jupyterlab/pluginmanager-extension": "~4.3.3", + "@jupyterlab/rendermime-extension": "~4.3.3", + "@jupyterlab/running-extension": "~4.3.3", + "@jupyterlab/settingeditor-extension": "~4.3.3", + "@jupyterlab/shortcuts-extension": "~5.1.3", + "@jupyterlab/statusbar-extension": "~4.3.3", + "@jupyterlab/terminal-extension": "~4.3.3", + "@jupyterlab/theme-dark-extension": "~4.3.3", + "@jupyterlab/theme-dark-high-contrast-extension": "~4.3.3", + "@jupyterlab/theme-light-extension": "~4.3.3", + "@jupyterlab/toc-extension": "~6.3.3", + "@jupyterlab/tooltip-extension": "~4.3.3", + "@jupyterlab/translation-extension": "~4.3.3", + "@jupyterlab/ui-components-extension": "~4.3.3", + "@jupyterlab/vega5-extension": "~4.3.3", + "@jupyterlab/workspaces-extension": "~4.3.3" }, "devDependencies": { - "@jupyterlab/builder": "^4.3.2", - "@jupyterlab/buildutils": "^4.3.2", + "@jupyterlab/builder": "^4.3.3", + "@jupyterlab/buildutils": "^4.3.3", "chokidar": "^3.4.0", "css-loader": "^6.7.1", "duplicate-package-checker-webpack-plugin": "^3.0.0", @@ -226,7 +226,7 @@ }, "jupyterlab": { "name": "JupyterLab", - "version": "4.3.2", + "version": "4.3.3", "extensions": { "@jupyterlab/application-extension": "", "@jupyterlab/apputils-extension": "", diff --git a/jupyterlab/staging/yarn.lock b/jupyterlab/staging/yarn.lock index 743b2d0928b0..4bf66b70b534 100644 --- a/jupyterlab/staging/yarn.lock +++ b/jupyterlab/staging/yarn.lock @@ -411,26 +411,26 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/application-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/application-extension@npm:4.3.2" - dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/property-inspector": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/statusbar": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 +"@jupyterlab/application-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/application-extension@npm:4.3.3" + dependencies: + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/property-inspector": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/statusbar": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/widgets": ^2.5.0 react: ^18.2.0 - checksum: d6f97b42d97d7e92ac549ea442c5f5a34dc7b26085be402eab03a5503a7963dd0fac3f2612013ec3c2ac56ea2824d805f7e8786c4e0b7f8e43906922404146a4 + checksum: 67021d0a6f42f5aff4a9d47ebb200d6817207f5375e62d8993d5a51b8a86cdf3a0f4cf899d6e0219457d06da035202514936475b8d8ffe0e5dd69ccf2698503c languageName: node linkType: hard @@ -438,58 +438,58 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/application-top@workspace:." dependencies: - "@jupyterlab/application": ~4.3.2 - "@jupyterlab/application-extension": ~4.3.2 - "@jupyterlab/apputils-extension": ~4.3.2 - "@jupyterlab/builder": ^4.3.2 - "@jupyterlab/buildutils": ^4.3.2 - "@jupyterlab/cell-toolbar-extension": ~4.3.2 - "@jupyterlab/celltags-extension": ~4.3.2 - "@jupyterlab/codemirror-extension": ~4.3.2 - "@jupyterlab/completer-extension": ~4.3.2 - "@jupyterlab/console-extension": ~4.3.2 - "@jupyterlab/coreutils": ~6.3.2 - "@jupyterlab/csvviewer-extension": ~4.3.2 - "@jupyterlab/debugger-extension": ~4.3.2 - "@jupyterlab/docmanager-extension": ~4.3.2 - "@jupyterlab/documentsearch-extension": ~4.3.2 - "@jupyterlab/extensionmanager-extension": ~4.3.2 - "@jupyterlab/filebrowser-extension": ~4.3.2 - "@jupyterlab/fileeditor-extension": ~4.3.2 - "@jupyterlab/help-extension": ~4.3.2 - "@jupyterlab/htmlviewer-extension": ~4.3.2 - "@jupyterlab/hub-extension": ~4.3.2 - "@jupyterlab/imageviewer-extension": ~4.3.2 - "@jupyterlab/inspector-extension": ~4.3.2 - "@jupyterlab/javascript-extension": ~4.3.2 - "@jupyterlab/json-extension": ~4.3.2 - "@jupyterlab/launcher-extension": ~4.3.2 - "@jupyterlab/logconsole-extension": ~4.3.2 - "@jupyterlab/lsp-extension": ~4.3.2 - "@jupyterlab/mainmenu-extension": ~4.3.2 - "@jupyterlab/markdownviewer-extension": ~4.3.2 - "@jupyterlab/markedparser-extension": ~4.3.2 - "@jupyterlab/mathjax-extension": ~4.3.2 - "@jupyterlab/mermaid-extension": ~4.3.2 - "@jupyterlab/metadataform-extension": ~4.3.2 - "@jupyterlab/notebook-extension": ~4.3.2 - "@jupyterlab/pdf-extension": ~4.3.2 - "@jupyterlab/pluginmanager-extension": ~4.3.2 - "@jupyterlab/rendermime-extension": ~4.3.2 - "@jupyterlab/running-extension": ~4.3.2 - "@jupyterlab/settingeditor-extension": ~4.3.2 - "@jupyterlab/shortcuts-extension": ~5.1.2 - "@jupyterlab/statusbar-extension": ~4.3.2 - "@jupyterlab/terminal-extension": ~4.3.2 - "@jupyterlab/theme-dark-extension": ~4.3.2 - "@jupyterlab/theme-dark-high-contrast-extension": ~4.3.2 - "@jupyterlab/theme-light-extension": ~4.3.2 - "@jupyterlab/toc-extension": ~6.3.2 - "@jupyterlab/tooltip-extension": ~4.3.2 - "@jupyterlab/translation-extension": ~4.3.2 - "@jupyterlab/ui-components-extension": ~4.3.2 - "@jupyterlab/vega5-extension": ~4.3.2 - "@jupyterlab/workspaces-extension": ~4.3.2 + "@jupyterlab/application": ~4.3.3 + "@jupyterlab/application-extension": ~4.3.3 + "@jupyterlab/apputils-extension": ~4.3.3 + "@jupyterlab/builder": ^4.3.3 + "@jupyterlab/buildutils": ^4.3.3 + "@jupyterlab/cell-toolbar-extension": ~4.3.3 + "@jupyterlab/celltags-extension": ~4.3.3 + "@jupyterlab/codemirror-extension": ~4.3.3 + "@jupyterlab/completer-extension": ~4.3.3 + "@jupyterlab/console-extension": ~4.3.3 + "@jupyterlab/coreutils": ~6.3.3 + "@jupyterlab/csvviewer-extension": ~4.3.3 + "@jupyterlab/debugger-extension": ~4.3.3 + "@jupyterlab/docmanager-extension": ~4.3.3 + "@jupyterlab/documentsearch-extension": ~4.3.3 + "@jupyterlab/extensionmanager-extension": ~4.3.3 + "@jupyterlab/filebrowser-extension": ~4.3.3 + "@jupyterlab/fileeditor-extension": ~4.3.3 + "@jupyterlab/help-extension": ~4.3.3 + "@jupyterlab/htmlviewer-extension": ~4.3.3 + "@jupyterlab/hub-extension": ~4.3.3 + "@jupyterlab/imageviewer-extension": ~4.3.3 + "@jupyterlab/inspector-extension": ~4.3.3 + "@jupyterlab/javascript-extension": ~4.3.3 + "@jupyterlab/json-extension": ~4.3.3 + "@jupyterlab/launcher-extension": ~4.3.3 + "@jupyterlab/logconsole-extension": ~4.3.3 + "@jupyterlab/lsp-extension": ~4.3.3 + "@jupyterlab/mainmenu-extension": ~4.3.3 + "@jupyterlab/markdownviewer-extension": ~4.3.3 + "@jupyterlab/markedparser-extension": ~4.3.3 + "@jupyterlab/mathjax-extension": ~4.3.3 + "@jupyterlab/mermaid-extension": ~4.3.3 + "@jupyterlab/metadataform-extension": ~4.3.3 + "@jupyterlab/notebook-extension": ~4.3.3 + "@jupyterlab/pdf-extension": ~4.3.3 + "@jupyterlab/pluginmanager-extension": ~4.3.3 + "@jupyterlab/rendermime-extension": ~4.3.3 + "@jupyterlab/running-extension": ~4.3.3 + "@jupyterlab/settingeditor-extension": ~4.3.3 + "@jupyterlab/shortcuts-extension": ~5.1.3 + "@jupyterlab/statusbar-extension": ~4.3.3 + "@jupyterlab/terminal-extension": ~4.3.3 + "@jupyterlab/theme-dark-extension": ~4.3.3 + "@jupyterlab/theme-dark-high-contrast-extension": ~4.3.3 + "@jupyterlab/theme-light-extension": ~4.3.3 + "@jupyterlab/toc-extension": ~6.3.3 + "@jupyterlab/tooltip-extension": ~4.3.3 + "@jupyterlab/translation-extension": ~4.3.3 + "@jupyterlab/ui-components-extension": ~4.3.3 + "@jupyterlab/vega5-extension": ~4.3.3 + "@jupyterlab/workspaces-extension": ~4.3.3 chokidar: ^3.4.0 css-loader: ^6.7.1 duplicate-package-checker-webpack-plugin: ^3.0.0 @@ -514,20 +514,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/application@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/application@npm:4.3.2" +"@jupyterlab/application@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/application@npm:4.3.3" dependencies: "@fortawesome/fontawesome-free": ^5.12.0 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/application": ^2.4.1 "@lumino/commands": ^2.3.1 @@ -538,27 +538,27 @@ __metadata: "@lumino/properties": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.5.0 - checksum: b20b520c9a194dbef18cb4af2dca454bfc276da340445ba5093406e6b4e03e0b0c5bb86376779f2e94d0e3cceac515a6deb8009aa136240661c47c6522801fa0 - languageName: node - linkType: hard - -"@jupyterlab/apputils-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/apputils-extension@npm:4.3.2" - dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/mainmenu": ^4.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/statusbar": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 - "@jupyterlab/workspaces": ^4.3.2 + checksum: 9d0814ec523177fc34ca8feeb78012a62389226fc8fd522cee0e2cbdaa3be83c70ab5a73ba57d309a140b82a1bde8971c35c873902875816fb61f005901840f5 + languageName: node + linkType: hard + +"@jupyterlab/apputils-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/apputils-extension@npm:4.3.3" + dependencies: + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/mainmenu": ^4.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/statusbar": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 + "@jupyterlab/workspaces": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -569,23 +569,23 @@ __metadata: react: ^18.2.0 react-dom: ^18.2.0 react-toastify: ^9.0.8 - checksum: 5b93214dcfaae74d32ec86789ddb548002d649a3dbb03c68de4f993bc572b6b1ab487776c3238faff58b008cf79bda75c4e4dedb1c93bf29e35b5944d49685c6 + checksum: 7d8da06ae85ff2baff76158b6620eeee9153d922984a56714316ec4945cb7e78ace18863bd125f0a160243b493889821bfb10092a00fb2c1a8362a3bea527091 languageName: node linkType: hard -"@jupyterlab/apputils@npm:~4.4.2": - version: 4.4.2 - resolution: "@jupyterlab/apputils@npm:4.4.2" +"@jupyterlab/apputils@npm:~4.4.3": + version: 4.4.3 + resolution: "@jupyterlab/apputils@npm:4.4.3" dependencies: - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/statusbar": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/statusbar": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -598,27 +598,27 @@ __metadata: "@types/react": ^18.0.26 react: ^18.2.0 sanitize-html: ~2.12.1 - checksum: 9fbadf82e7b9ef889bb87a22e03bbe3910af19c10c0102e3231aaa28a0d704e7e4be7c8552b7ff1b7a1485aee089a89f6c0ba8ec3e4b5dd97e064ec365a2f270 + checksum: a45d7ccaa6311fd940218f3a8e7e795589718aca98f2b11401b4b282103bc126d12161e77dc078954d5dc5def381487558b356039b6b1bc99fbd195ea2740968 languageName: node linkType: hard -"@jupyterlab/attachments@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/attachments@npm:4.3.2" +"@jupyterlab/attachments@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/attachments@npm:4.3.3" dependencies: - "@jupyterlab/nbformat": ^4.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 + "@jupyterlab/nbformat": ^4.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 "@lumino/disposable": ^2.1.3 "@lumino/signaling": ^2.1.3 - checksum: c884852e961e28f7b6be923a744a45b5a36da850b1c767bf1bc3364b631791a54c370588aa130eab04a9e7462ff28b81aaa74e4a8665da53b451e9988bce5433 + checksum: dc7a56d634d6f45f91243d2b9198c47d762f2e209a1de8a212eb0057eb04ad199e09950187428ead6ff7cb88ae3e25309c23429d965dd2883eecc8c8876de305 languageName: node linkType: hard -"@jupyterlab/builder@npm:^4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/builder@npm:4.3.2" +"@jupyterlab/builder@npm:^4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/builder@npm:4.3.3" dependencies: "@lumino/algorithm": ^2.0.2 "@lumino/application": ^2.4.1 @@ -653,13 +653,13 @@ __metadata: worker-loader: ^3.0.2 bin: build-labextension: lib/build-labextension.js - checksum: 03295156a335e605b92982ebd1009711d85bab837147ab1b3e5faeca5e97102ba776af6c47e269c1069eb95fb0b84652014fa245f666c43d11aa37a2b51ec40d + checksum: d294979ef2b9a5ce6fe91fd64aef7023e05311a64a5b8e03955bd28bcf11999f1ecb796f35ed45467ad63d334c16d844049f49f2ed17c6f318cc1d4511fb0145 languageName: node linkType: hard -"@jupyterlab/buildutils@npm:^4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/buildutils@npm:4.3.2" +"@jupyterlab/buildutils@npm:^4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/buildutils@npm:4.3.3" dependencies: "@yarnpkg/core": ^4.0.3 "@yarnpkg/parsers": ^3.0.0 @@ -686,65 +686,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: a7785ac8a4c00c46258194dca098f82f8ada0b5fedf86c32187050be4aedffa302924698a0eda148bcefc9850b3e7b1ac906ad5b6d204a85a66e4d706394d1e9 + checksum: a1a53194643f901cb17d9825b9086681a633c838a9ed9f13e36aaaee0332572635216b8b97730f94d0ab1797a40068ba15cf9e319a11f332eac8039a0431a35b languageName: node linkType: hard -"@jupyterlab/cell-toolbar-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/cell-toolbar-extension@npm:4.3.2" +"@jupyterlab/cell-toolbar-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/cell-toolbar-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/cell-toolbar": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - checksum: 12cca170ecf37c5c0a55fa1d7877dc170f1a3264a7a83f1397765e491b9b527ee04d67aedf957c7d916051e7c45638e513a352a5ba125be7d053cb676c95d346 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/cell-toolbar": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + checksum: 5bd64976b72834fc730bc2461a05c98b80977d8fab01444025c2749bed0d0bc0771cd80b810db3d46d02c2bdd37080ea0d45816ed619c86033692e0396aa876b languageName: node linkType: hard -"@jupyterlab/cell-toolbar@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/cell-toolbar@npm:4.3.2" +"@jupyterlab/cell-toolbar@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/cell-toolbar@npm:4.3.3" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/cells": ^4.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/notebook": ^4.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/cells": ^4.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/notebook": ^4.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/disposable": ^2.1.3 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.5.0 - checksum: f4fde998905a26697e3d214310fa2f9b73eb04bbf721a35dd937f29b41c16e1dec429b49c64b911efb771b2e8e17b31af00a59ab5f918683ebf246bcb2bd58eb + checksum: 2080e55ba8c9146309378980a35a5f67c2ba1cbe99f64dfd8177a4b4131e88e033d0a6edfbff5837a9e8a205cc058e74aee08b9c3367b297b0ae64a1cfc86877 languageName: node linkType: hard -"@jupyterlab/cells@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/cells@npm:4.3.2" +"@jupyterlab/cells@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/cells@npm:4.3.3" dependencies: "@codemirror/state": ^6.4.1 "@codemirror/view": ^6.26.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/attachments": ^4.3.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/codemirror": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/documentsearch": ^4.3.2 - "@jupyterlab/filebrowser": ^4.3.2 - "@jupyterlab/nbformat": ^4.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/outputarea": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/toc": ^6.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/attachments": ^4.3.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/codemirror": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/documentsearch": ^4.3.3 + "@jupyterlab/filebrowser": ^4.3.3 + "@jupyterlab/nbformat": ^4.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/outputarea": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/toc": ^6.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/domutils": ^2.0.2 @@ -755,38 +755,38 @@ __metadata: "@lumino/virtualdom": ^2.0.2 "@lumino/widgets": ^2.5.0 react: ^18.2.0 - checksum: b911751edb7513f1a3bd76b64bef14086b0a0b23279d1e3e0716325b471d4ea0aecaf4ef3ae3ad938a6ae6ce2f241cb7c2f37439a033653c533b965194f6b619 + checksum: c64356798cd144bd0088fe757e548be17b5aedf6d67880495434f1ef802c078bb8d071bad3a7412c9225c4e4406314de06d3dfd3aa038b85b625a223bee2ec52 languageName: node linkType: hard -"@jupyterlab/celltags-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/celltags-extension@npm:4.3.2" +"@jupyterlab/celltags-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/celltags-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/notebook": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/notebook": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: 06dab732549197b5a73653e1c715f52188d3eaf75e1ee8465bd1a2641c4fa742926709bc64a0c2d004cc470321144d2449f8a88a18d64a830c6b9b09ee4b845e + checksum: bcbfc7ed3e5015cb7701c9dc49883d3961f8fa4771898365573e268d6dfbf1dee9e3c622254177a9cb10bfaf0bd30ab913c9e0de210430fee18ce184f69455bf languageName: node linkType: hard -"@jupyterlab/codeeditor@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/codeeditor@npm:4.3.2" +"@jupyterlab/codeeditor@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/codeeditor@npm:4.3.3" dependencies: "@codemirror/state": ^6.4.1 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/nbformat": ^4.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/statusbar": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/nbformat": ^4.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/statusbar": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/dragdrop": ^2.1.5 @@ -794,13 +794,13 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.5.0 react: ^18.2.0 - checksum: efc13c36797be1a7db2f3b7ea7bd41ad32fd39a52cccb829024396eb4826fbed008df957343fc639911815a81d9e0f4bbef6a8b98753ba31a1ac2f5209a5d149 + checksum: 7611f5973900a85b6488f96ae9b50da76418f0f3b64890c63c499a1276ef577d0d34c2cf3b507577ddb626ae5acee6a136650453be6345a8613ddedfe40843bd languageName: node linkType: hard -"@jupyterlab/codemirror-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/codemirror-extension@npm:4.3.2" +"@jupyterlab/codemirror-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/codemirror-extension@npm:4.3.3" dependencies: "@codemirror/commands": ^6.5.0 "@codemirror/lang-markdown": ^6.2.5 @@ -809,25 +809,25 @@ __metadata: "@codemirror/search": ^6.5.6 "@codemirror/view": ^6.26.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/codemirror": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/statusbar": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/codemirror": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/statusbar": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.5.0 "@rjsf/utils": ^5.13.4 "@rjsf/validator-ajv8": ^5.13.4 react: ^18.2.0 - checksum: 40329fb4b839b722995622c94c0db53a1ff508295a59be3b0c88aa7aae2b2242cca6c352591ff3e31e647c336d9429db01a2d9316cb282f3d210c39aa8ee6d30 + checksum: 714346fb0157953e895b6d742c6784cd97279aca46c5bccf40014ff1d2dbe536e97b564ede8d362c2b0d564258c7e0b94502e41c230b9091058fc81a7221028e languageName: node linkType: hard -"@jupyterlab/codemirror@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/codemirror@npm:4.3.2" +"@jupyterlab/codemirror@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/codemirror@npm:4.3.3" dependencies: "@codemirror/autocomplete": ^6.16.0 "@codemirror/commands": ^6.5.0 @@ -850,11 +850,11 @@ __metadata: "@codemirror/state": ^6.4.1 "@codemirror/view": ^6.26.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/documentsearch": ^4.3.2 - "@jupyterlab/nbformat": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/documentsearch": ^4.3.3 + "@jupyterlab/nbformat": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 "@lezer/common": ^1.2.1 "@lezer/generator": ^1.7.0 "@lezer/highlight": ^1.2.0 @@ -863,45 +863,45 @@ __metadata: "@lumino/disposable": ^2.1.3 "@lumino/signaling": ^2.1.3 yjs: ^13.5.40 - checksum: 10ed923131b3cab378ced2583b076ed6c1f244b6d333b05b9e8203157500f0b83f923241354cf5b6d5df9b631aaed15378a34f1d7f6e4427c8429782cc936933 + checksum: 18cb1485e08699ad444145dc96147c9385fcb2aa5bfc0438ff62b96bb99c6ddf47ed241948e1bd6e24d7a23ebe8093100c38e2260e71261d527ed7646ff18295 languageName: node linkType: hard -"@jupyterlab/completer-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/completer-extension@npm:4.3.2" +"@jupyterlab/completer-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/completer-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/completer": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/completer": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: 12235236e08c860785fdf2fc599725eaf2d09197b0f7a320e0fefd55e66f1ba839edc2446165479eafe92f8c90c099315baa348e123035b345a584419e8a2092 + checksum: 2d72f61d1066901ea8574d242a4eb483311b5199304fdc2bd84a6f7fd4da09d0be14515e75bcecebf11375d8044f6198af8e662db540960f501c9594fa8fdaf5 languageName: node linkType: hard -"@jupyterlab/completer@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/completer@npm:4.3.2" +"@jupyterlab/completer@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/completer@npm:4.3.3" dependencies: "@codemirror/state": ^6.4.1 "@codemirror/view": ^6.26.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/codemirror": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/codemirror": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -909,63 +909,63 @@ __metadata: "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.5.0 - checksum: e897a27dc76d946a39f033e8b9a6d9f9176f9f00e7ac810e04b6e421dc868ee3a74b121d15a73146f91b6cbb367f43ed06775163ef0aa1007970acc6ccc9f614 - languageName: node - linkType: hard - -"@jupyterlab/console-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/console-extension@npm:4.3.2" - dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/completer": ^4.3.2 - "@jupyterlab/console": ^4.3.2 - "@jupyterlab/filebrowser": ^4.3.2 - "@jupyterlab/launcher": ^4.3.2 - "@jupyterlab/mainmenu": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + checksum: 7905ae379679d6574040458e7f65a5749633d8e95563804651e89c3449b2dff5c1f86a9df33a220b0595f4a066b23028aad2b8178843ac7a602939d9dfae3894 + languageName: node + linkType: hard + +"@jupyterlab/console-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/console-extension@npm:4.3.3" + dependencies: + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/completer": ^4.3.3 + "@jupyterlab/console": ^4.3.3 + "@jupyterlab/filebrowser": ^4.3.3 + "@jupyterlab/launcher": ^4.3.3 + "@jupyterlab/mainmenu": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/properties": ^2.0.2 "@lumino/widgets": ^2.5.0 - checksum: d968976f88bfb7fdeb77b1036df9364fcba0d882bdbb62da42dd5053f3c379a10f68814a3966b95e91b1967853a3af77d64f063a585163effe2e70983673d782 + checksum: 64fb9b3f6bfae0faabbe2666abdef803c2bca979ac8ee4ede391809f9c866c30fb435f9f48fbc67e41df55a756764ee2889c0576b12bb6e9bfb32f021af1c33b languageName: node linkType: hard -"@jupyterlab/console@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/console@npm:4.3.2" +"@jupyterlab/console@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/console@npm:4.3.3" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/cells": ^4.3.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/nbformat": ^4.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/cells": ^4.3.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/nbformat": ^4.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/dragdrop": ^2.1.5 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.5.0 - checksum: 5551f8988334d05763325bda2d604b933eadb6653efa5fb9698979c285f8fbe9cadf79518b6f0ca2173817a440f82f1bf121f8057e6db22c332335484a059fc7 + checksum: 7958156b9761625c85bc57328b51dc87d180314b29023f494fde8fc6766141eed64db3b015854927c89b3df7add49dfaa49dffa3fef220c32f52ad352a0946d5 languageName: node linkType: hard -"@jupyterlab/coreutils@npm:~6.3.2": - version: 6.3.2 - resolution: "@jupyterlab/coreutils@npm:6.3.2" +"@jupyterlab/coreutils@npm:~6.3.3": + version: 6.3.3 + resolution: "@jupyterlab/coreutils@npm:6.3.3" dependencies: "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -973,94 +973,94 @@ __metadata: minimist: ~1.2.0 path-browserify: ^1.0.0 url-parse: ~1.5.4 - checksum: 83c9825dbec9bae5f4afe3bd507ff80d6dde9737fe76bbd41ec4965bcc2f0757e2a0b7500c53d513f85eb572276548a048e931fde619b369ab5027a35b3efd5b + checksum: c41f06000c17d5ab1c2805b9f3e8a733e7f6a7d127fbc8ddd7c6d7eca1cff069cc487aa1b46296a697ab2be0362afed914df8a78b5e4bce4890e2a1f7f932f81 languageName: node linkType: hard -"@jupyterlab/csvviewer-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/csvviewer-extension@npm:4.3.2" +"@jupyterlab/csvviewer-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/csvviewer-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/csvviewer": ^4.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/documentsearch": ^4.3.2 - "@jupyterlab/mainmenu": ^4.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/csvviewer": ^4.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/documentsearch": ^4.3.3 + "@jupyterlab/mainmenu": ^4.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 "@lumino/datagrid": ^2.4.1 "@lumino/widgets": ^2.5.0 - checksum: d42f6cc4ed165901671f7d731082c1e6f70e49ed6d841284fcf367878fea1eec895cd719564bc172a7af7fdaec04e96e564f59fe8d17a5babd4b43ab17fed7f2 + checksum: 54bc167b63c877588f8b95002332a3061403aafa5c6a63ce1c78b95350fa069bfc094fd24f8b0923934cdf928d7d9a41f4f67c78ca8b43ef48909651bbf95015 languageName: node linkType: hard -"@jupyterlab/csvviewer@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/csvviewer@npm:4.3.2" +"@jupyterlab/csvviewer@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/csvviewer@npm:4.3.3" dependencies: - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/datagrid": ^2.4.1 "@lumino/disposable": ^2.1.3 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.5.0 - checksum: ff809a2657b2dd03ecf8fd0aede98c0b75fe4dce4623454c0bd5acb46740627d539659794c15aca295d32746c73e74fdf2437c6b93c896e7fe0d785b63e0f042 - languageName: node - linkType: hard - -"@jupyterlab/debugger-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/debugger-extension@npm:4.3.2" - dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/cells": ^4.3.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/console": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/debugger": ^4.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/fileeditor": ^4.3.2 - "@jupyterlab/logconsole": ^4.3.2 - "@jupyterlab/notebook": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 + checksum: c12d7a22d4e049f113b68d75de1256b52337b1513e87faa3f92d85602fc3b9c7c8925c6512646c5a19a159b4ab0da7f252abdb3c9c7f6a92a48ff9d9ec8790b4 + languageName: node + linkType: hard + +"@jupyterlab/debugger-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/debugger-extension@npm:4.3.3" + dependencies: + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/cells": ^4.3.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/console": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/debugger": ^4.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/fileeditor": ^4.3.3 + "@jupyterlab/logconsole": ^4.3.3 + "@jupyterlab/notebook": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 "@lumino/commands": ^2.3.1 - checksum: e380e46d085125e1f21daaea947b6705a4deb6afcb1c498a055c4d0c19519b9d00238a5e265e692e10c806bdf8e8666ecdff89f2e283be22f61a8dda517fdd8f + checksum: 44b29b53b62f4e4fe6db4ffcde9ab1c3cc2afa0e43b4da0fb17c98f8d6b15f64ea100673ecacf7bc0cbe9079a38940db6be1f8f06b8961f940b366abcd165fce languageName: node linkType: hard -"@jupyterlab/debugger@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/debugger@npm:4.3.2" +"@jupyterlab/debugger@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/debugger@npm:4.3.3" dependencies: "@codemirror/state": ^6.4.1 "@codemirror/view": ^6.26.3 "@jupyter/react-components": ^0.16.6 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/cells": ^4.3.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/codemirror": ^4.3.2 - "@jupyterlab/console": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/fileeditor": ^4.3.2 - "@jupyterlab/notebook": ^4.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/cells": ^4.3.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/codemirror": ^4.3.3 + "@jupyterlab/console": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/fileeditor": ^4.3.3 + "@jupyterlab/notebook": ^4.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -1072,25 +1072,25 @@ __metadata: "@lumino/widgets": ^2.5.0 "@vscode/debugprotocol": ^1.51.0 react: ^18.2.0 - checksum: dbe01c3c197aa77980cb17f5edcdc87bff6a3ee7575501589198ee7a8ed70dd66c73b01d897dcda646763f82f217c5fdad430a9cc81e9ce770041ba8f94a847c + checksum: 2bbac93ec895dcb195892f836d9e141540e0a0a18c8c1874a4f35a8085267d88641c788b358aa2981295723878d038f3e90ea47b3def5136f9496902d0254fc4 languageName: node linkType: hard -"@jupyterlab/docmanager-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/docmanager-extension@npm:4.3.2" +"@jupyterlab/docmanager-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/docmanager-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docmanager": ^4.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/statusbar": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docmanager": ^4.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/statusbar": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -1098,22 +1098,22 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.5.0 react: ^18.2.0 - checksum: bb698e9955d2bff1219c8112bd60bef6c270e8893dec6b2d993fa345f4bd2ad9ce5b9d67d0935bc60323e1a571c9c9dc43a121f45ee7ed84808cf2564e6f37b6 + checksum: c9125ea32229c8c9131fa6d580b0ed1f89026f5e220926124e517cc4d1702d2dfa71cd7a3a45aa984407cb6f1a2ecd10df79eed4f3969ff29d417a600773ebcf languageName: node linkType: hard -"@jupyterlab/docmanager@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/docmanager@npm:4.3.2" +"@jupyterlab/docmanager@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/docmanager@npm:4.3.3" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/statusbar": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/statusbar": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -1123,24 +1123,24 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.5.0 react: ^18.2.0 - checksum: c19f6bba37a6a27dbe4bca6322c03d8bc4c85fd3b6e3c8a8862842550f7f90183056a70fc591be7c74990576f268ae6a27237b8dc5150ca77a3737bc4f7d3b1b + checksum: e3c4756587e816dcf54081f00c3367f37bb9c52e68af146002dea561a211ab5ebd2abefa3a32f52d5d50076bb6bec16c8f1e0bd565fd3672df8b11133108d087 languageName: node linkType: hard -"@jupyterlab/docregistry@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/docregistry@npm:4.3.2" +"@jupyterlab/docregistry@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/docregistry@npm:4.3.3" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -1149,32 +1149,32 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.5.0 react: ^18.2.0 - checksum: 4c094e228fd54550b5ee4b842ff1fac54062f7357b62ab783fcc7dbd3744549d6db4b0fb61deb8cac610303440da11465c507e831bbc616495dc1afde4778559 + checksum: 14b44c8ae0c1a5059da6786396f47dfc79160e2489db509c3d37a58e1aaf8b2648dfac44eafac3dfaaabcb114f6985f52c0085b663718d5cac4901492e138d14 languageName: node linkType: hard -"@jupyterlab/documentsearch-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/documentsearch-extension@npm:4.3.2" +"@jupyterlab/documentsearch-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/documentsearch-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/documentsearch": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/documentsearch": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 "@lumino/commands": ^2.3.1 "@lumino/widgets": ^2.5.0 - checksum: 62a80a4e8e38a245031c54413a9fb5a493305b7b1f289b4b2517b9c1411df24e625af8cfbe9276d7dc40663f58123d1c3b916a37075541a2ea6c5f4bda817d7b + checksum: a6f90021fa5bfc54cdbc9b864923ecbfc3ec3958fb42e010d0eac62db7b8c23753ab25bf153b47692565ac7a6d2943b6aaef74b7a1b7d1e8b7cc77c0583d80d4 languageName: node linkType: hard -"@jupyterlab/documentsearch@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/documentsearch@npm:4.3.2" +"@jupyterlab/documentsearch@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/documentsearch@npm:4.3.3" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -1183,79 +1183,79 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.5.0 react: ^18.2.0 - checksum: a3e99bbe093dcc71ea7f011dced8f2d5201f0c5190fed935b96c5a07eab5b499c78a5902bb982e8a35fbfce7f6acc189c942ef520dc5d516de24ad7cc8213286 + checksum: 69eb59154c7cbf8d4c4ab5abe16d0c91d3cde60eb642c84494079a3ce5f2559d62275fffacd144fe39e4fd740345619b4c84ded926cc1544e03c7901b05f490e languageName: node linkType: hard -"@jupyterlab/extensionmanager-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/extensionmanager-extension@npm:4.3.2" +"@jupyterlab/extensionmanager-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/extensionmanager-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/extensionmanager": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 - checksum: b452bdf5a67c05c0b47dbb4cefc9ceb66743e8331901779234974656283f99e75f73960ba198161cff03f4c9e33c79ce07d8d5eefb8306ed197c6ed131f8e87a + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/extensionmanager": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 + checksum: f4a4edc497cf6d5830f02fd913dd29399465505ef549c2288b0ff138f39342a1662e4a1dcf190b9c39b713d030fb1fbe863db2c861e03c3388d174da61523f05 languageName: node linkType: hard -"@jupyterlab/extensionmanager@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/extensionmanager@npm:4.3.2" +"@jupyterlab/extensionmanager@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/extensionmanager@npm:4.3.3" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/messaging": ^2.0.2 "@lumino/polling": ^2.1.3 "@lumino/widgets": ^2.5.0 react: ^18.2.0 react-paginate: ^6.3.2 semver: ^7.3.2 - checksum: c666f4bba8b15c3691b6c52faa02872b4fe4e5a33439a79c3e15f9b625ed3435e802207c72868e52e8099f4a46ac8cc53323b87edc585639bb8a3c2defa1beb7 - languageName: node - linkType: hard - -"@jupyterlab/filebrowser-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/filebrowser-extension@npm:4.3.2" - dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docmanager": ^4.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/filebrowser": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/statusbar": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + checksum: 3d4fd469d07d98129ef4d4be1f605e80e94d60cd28721c69ebdf0501e679b1be0c75d914f7d4f24023c450ab2fd64586532bdd6f88d8b2686b4785360b1e405f + languageName: node + linkType: hard + +"@jupyterlab/filebrowser-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/filebrowser-extension@npm:4.3.3" + dependencies: + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docmanager": ^4.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/filebrowser": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/statusbar": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/widgets": ^2.5.0 - checksum: a56fcd42c88bd5dcb9f423df8c7b7b34640bbf8eada8f5707873cd0c8d50766dde4a9a65b8f8784e6fb6407222b87f9722cce61883d2c1991fae718ab0f89bfd + checksum: fe6c35d0749842b422badedb9ce2202c149c22c5061ffdb1355472d71fe8cf46b11f6d744f498f0ccb08deeb5efca917d9d778e0a2c8e27ca706a473789e1224 languageName: node linkType: hard -"@jupyterlab/filebrowser@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/filebrowser@npm:4.3.2" +"@jupyterlab/filebrowser@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/filebrowser@npm:4.3.3" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docmanager": ^4.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/statusbar": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docmanager": ^4.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/statusbar": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -1267,221 +1267,221 @@ __metadata: "@lumino/virtualdom": ^2.0.2 "@lumino/widgets": ^2.5.0 react: ^18.2.0 - checksum: f1d889799bbb64f8b6cb3a03d0f2edec6dd4e602d9f5b2e7c4014afcad3f1c7145989f86a21fa7ee5c3c33165bb800e3f4a2e0e296c74af87e1bd0ae5fdeb4aa + checksum: 94b93fc9a790a4c07e7eed8045e542bbe328b5351ec10866147c74d4365fe88503ad1d6ba151026103b7bee4ec69a699ad15660e29beaf2235ec38c0fe68d7ca languageName: node linkType: hard -"@jupyterlab/fileeditor-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/fileeditor-extension@npm:4.3.2" +"@jupyterlab/fileeditor-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/fileeditor-extension@npm:4.3.3" dependencies: "@codemirror/commands": ^6.5.0 "@codemirror/search": ^6.5.6 - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/codemirror": ^4.3.2 - "@jupyterlab/completer": ^4.3.2 - "@jupyterlab/console": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/documentsearch": ^4.3.2 - "@jupyterlab/filebrowser": ^4.3.2 - "@jupyterlab/fileeditor": ^4.3.2 - "@jupyterlab/launcher": ^4.3.2 - "@jupyterlab/lsp": ^4.3.2 - "@jupyterlab/mainmenu": ^4.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/statusbar": ^4.3.2 - "@jupyterlab/toc": ^6.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/codemirror": ^4.3.3 + "@jupyterlab/completer": ^4.3.3 + "@jupyterlab/console": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/documentsearch": ^4.3.3 + "@jupyterlab/filebrowser": ^4.3.3 + "@jupyterlab/fileeditor": ^4.3.3 + "@jupyterlab/launcher": ^4.3.3 + "@jupyterlab/lsp": ^4.3.3 + "@jupyterlab/mainmenu": ^4.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/statusbar": ^4.3.3 + "@jupyterlab/toc": ^6.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.5.0 - checksum: 69870935300181ffbf58db3fefcc998d354086b982e83e55730daa190a25fc3a227908501f496bb02ea92eaf23052537e4cc0cd5faadd57d3db08e82de61c1ba + checksum: 1415b57846b8997feec90306973be23f6705833104ef96f2e233726c545d48020bc529a6949eb1ae9a6dbe06233afe9b4ee2a16197eed75aa051dc442befec0a languageName: node linkType: hard -"@jupyterlab/fileeditor@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/fileeditor@npm:4.3.2" +"@jupyterlab/fileeditor@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/fileeditor@npm:4.3.3" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/codemirror": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/documentsearch": ^4.3.2 - "@jupyterlab/lsp": ^4.3.2 - "@jupyterlab/statusbar": ^4.3.2 - "@jupyterlab/toc": ^6.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/codemirror": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/documentsearch": ^4.3.3 + "@jupyterlab/lsp": ^4.3.3 + "@jupyterlab/statusbar": ^4.3.3 + "@jupyterlab/toc": ^6.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/widgets": ^2.5.0 react: ^18.2.0 regexp-match-indices: ^1.0.2 - checksum: 329bc61194b73b034c0c2c29687ecf0075a227595be3c25ebcd78fcffca19350566ef353eabec286ff2e59778f585442b7378743c7440e58b56e4a6f86278820 + checksum: a59acd9ef8675467b36347737df6e71452cceab4d16708fa550649da20b1d9373ba4f9b13e55459ad9a8568b67a35808181e88fd94eba44ad86415fa5b788da6 languageName: node linkType: hard -"@jupyterlab/help-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/help-extension@npm:4.3.2" +"@jupyterlab/help-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/help-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/mainmenu": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/mainmenu": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/signaling": ^2.1.3 "@lumino/virtualdom": ^2.0.2 "@lumino/widgets": ^2.5.0 react: ^18.2.0 - checksum: a0424d980f56d4597585e66397ab82c044dcb7a45f725c6086a5fe2cfa8f7b79a1f1530128907d4ced3024152603c925a34282f532ac519ece9dfc5b340afcbd + checksum: fa9dc85a901fc43cb6ba9bbe28416734a82b928b7245d7cc837530612f7d28c1cdb55e97f277ff7be7d5fc76a224269b925ce923ad63831d2ea549de280c103c languageName: node linkType: hard -"@jupyterlab/htmlviewer-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/htmlviewer-extension@npm:4.3.2" +"@jupyterlab/htmlviewer-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/htmlviewer-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/htmlviewer": ^4.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 - checksum: ef07b5a8387b9a4ae49c2da61d4bd364f9b406244604003dfac70a5f7d61dc706c842d828f84e4a0e6b7b3e892da562392d8efcc57e34b553169b25ae84186ff + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/htmlviewer": ^4.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 + checksum: af086479b9514aa3643dcaeb37eca833cb52ce72cf8822f4989fa37af5c1eb2b86b27b22e82a72d639c25816698758ac82b902f0ff9db7ebf527d3776156370d languageName: node linkType: hard -"@jupyterlab/htmlviewer@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/htmlviewer@npm:4.3.2" +"@jupyterlab/htmlviewer@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/htmlviewer@npm:4.3.3" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.5.0 react: ^18.2.0 - checksum: cce82698ce1247ef26269ee203d88023cd65ac1af10c6b1972ccc5c636bd3b4a567d0fdd2d6311019c627b77d29c5ef1f8651d9cb347ce2729cd0dd971e95fc7 + checksum: 4618ec58cb074d76ee1d99475dc0c9ab839f87f172e3d512e3c04a06a9cbdda0bf826abd9e93ecba9ff4f22b9e2c4c0ff3872d6a94a7ecba68b44b9ddfbb5b63 languageName: node linkType: hard -"@jupyterlab/hub-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/hub-extension@npm:4.3.2" +"@jupyterlab/hub-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/hub-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/translation": ^4.3.2 - checksum: 4e6d1ca3837a100a84dd1c94c8351177cdd9aa36565666f0bb70893364fd94cdb1066c12820f9d0321f835c30ee41256e1714dac686b5bf78336dd87a2f22ae7 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/translation": ^4.3.3 + checksum: 90f7c0a02cd25272e6fb86588dfbeefe2279f7fa4fc628af5397fd1557cf2513ea8c3d2e2aa84917c2ab8520b7b8ced3534a2bcfcf098f0f8d963ef95fb7993a languageName: node linkType: hard -"@jupyterlab/imageviewer-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/imageviewer-extension@npm:4.3.2" +"@jupyterlab/imageviewer-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/imageviewer-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/imageviewer": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - checksum: 6624e3f1f1008cd7c625812317956729dabd3dcf7b5265fa1aa8cb977fe653a7fa9f944d57e39884f71921966564255e8d0ddde91e53bc02e6cf487a0146c7b9 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/imageviewer": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + checksum: 203d1b416cbca5ac3bdc88bd24d4b67e7d07c3e6d42db63ead730cd6c2b2a1fcf653a830ce4ee52d5e1adfbbf6fa025a8017f8b2cb225481f082348fd6bf2c4b languageName: node linkType: hard -"@jupyterlab/imageviewer@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/imageviewer@npm:4.3.2" +"@jupyterlab/imageviewer@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/imageviewer@npm:4.3.3" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docregistry": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docregistry": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/widgets": ^2.5.0 - checksum: a886430400007f5f4dbfe6c23475614f726407e1968425d17d8eed120f43fb897243949580c3140d65a5b739cc527be50d086d0fd5f7af3d0ed82ec912e1aae6 + checksum: 9d5ba69813ea47aa7fbb4ea048202da0bb1a3dd73aea99fc24f9f84a010004b2e71ccbba38c05dcda3d8775c489ca7c836c68cdadd2dd9649aa00e9baea22101 languageName: node linkType: hard -"@jupyterlab/inspector-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/inspector-extension@npm:4.3.2" +"@jupyterlab/inspector-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/inspector-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/console": ^4.3.2 - "@jupyterlab/inspector": ^4.3.2 - "@jupyterlab/launcher": ^4.3.2 - "@jupyterlab/notebook": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/console": ^4.3.3 + "@jupyterlab/inspector": ^4.3.3 + "@jupyterlab/launcher": ^4.3.3 + "@jupyterlab/notebook": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/widgets": ^2.5.0 - checksum: d5bb4dbca68e747cf4be806c4d46cc6ec1a8a97baace19e5a8626b10cee0566c2a09d49ce931d7c5e2c4c4e738a8f87b969dc7ad07732e51ec2bdf7da20e20b5 + checksum: abe3492d9a8ae0708a210aafb1b76f93249ad60c864e6454251246410502231d22cd3e6454dada1f8576c015b0bfa1e7b57dfe5dd07d7727ab5aeb0e5c23a2c7 languageName: node linkType: hard -"@jupyterlab/inspector@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/inspector@npm:4.3.2" +"@jupyterlab/inspector@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/inspector@npm:4.3.3" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/polling": ^2.1.3 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.5.0 - checksum: c2ebf5774fdc15a72e7184b7e8fd9725afdd4c388996e36b1f9d29efdf77ee0ff80bda744ed4b67d92f31e0607f44c338decf71512c7a1b379485be2e65599ea + checksum: f371974cb7701c52e890429bcf1942a64c8a5467d27bc889443d14203004a2b4ffa14a01fcb8ad5d3ee2baefb014c667f2f5f324307ea232133d2ff828f9c4dd languageName: node linkType: hard -"@jupyterlab/javascript-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/javascript-extension@npm:4.3.2" +"@jupyterlab/javascript-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/javascript-extension@npm:4.3.3" dependencies: - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 - checksum: 12592523324f03c4a266be50e37adde8764ba11731d8863d944fcb57ec620ee05db156651a9568a3c58e7fc89a3f7d3a65d7876bd5cfbf653a9a70047c7a5e57 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 + checksum: 243b418f948c7834a90ba393a08343951a58b4faab3d1505b2f7c0ac7416d11f758b842759e8ce02065a235e600e2e0d03faf777c5e0e53eee71ff8a5cf7d12d languageName: node linkType: hard -"@jupyterlab/json-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/json-extension@npm:4.3.2" +"@jupyterlab/json-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/json-extension@npm:4.3.3" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/codemirror": ^4.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/codemirror": ^4.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lezer/highlight": ^1.2.0 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 @@ -1491,34 +1491,34 @@ __metadata: react-highlight-words: ^0.20.0 react-json-tree: ^0.18.0 style-mod: ^4.0.0 - checksum: 2dcf2a69326a63de4d7dc1c0dbb42bcef6646751e04159d82d1e24d3f53db1193508da7222a2476e25c8c377114d129aeb6d9d64d09d73a7845b703b1b3a38f3 + checksum: 0d56393e2bdbd5e3fc4dc968296c7d722fb64a1760adf1ea45c7f249d81f8d8de77cf16e62b1faf1339eb6288e9ad462df64ef342fcbf47c05313f4cc686272d languageName: node linkType: hard -"@jupyterlab/launcher-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/launcher-extension@npm:4.3.2" +"@jupyterlab/launcher-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/launcher-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/filebrowser": ^4.3.2 - "@jupyterlab/launcher": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/filebrowser": ^4.3.3 + "@jupyterlab/launcher": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.5.0 - checksum: 7faea40a1a5cd6209d456d7d9d74c905beae617bd6faa621f4c20f41a24ad9785b022dd48f2532900e33f3fd017a89422baec059854af43d55bca6f1078e828c + checksum: 8d102a0036a7838a9df6c89cd068f77fd6514dca7235824688e2a5d6988bc68b97cd8f03467e62877f68b558861d3fa515198f8bb6009e5b06785ce8dae4abcf languageName: node linkType: hard -"@jupyterlab/launcher@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/launcher@npm:4.3.2" +"@jupyterlab/launcher@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/launcher@npm:4.3.3" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -1526,81 +1526,81 @@ __metadata: "@lumino/properties": ^2.0.2 "@lumino/widgets": ^2.5.0 react: ^18.2.0 - checksum: e95404319531e5136374bba364fdc4564d9c3503fd94562b7e333eaf605ae2facfd520fdc7d68007311809c8b75f5c6fab31d7c42e9141f08c8ac9d9c2665fba + checksum: d91ab6375b23b6cad8498d855008f9299353f8bc411793ed8242ab7a37f5e0ab9f6b4799d5931368a30d27bf612d88b4fc37a4b0cab44f2231754ea38d732787 languageName: node linkType: hard -"@jupyterlab/logconsole-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/logconsole-extension@npm:4.3.2" +"@jupyterlab/logconsole-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/logconsole-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/logconsole": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/statusbar": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/logconsole": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/statusbar": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.5.0 react: ^18.2.0 - checksum: c41fe52a0a9de1714efd5eb26bb6f582e659603f40782bef06e2fdc5941b40b981705b91781a1757e34915005565a0cfd5cc9a31e695c0dc1e7c90fdb54bd25c + checksum: 22901c4903775ddf69556d59e5629b6347f95525357e37d0c8dd3811dd59a6cfcabd4604e5382020145f5d6bf7ae7da1ab9e00fb59e7b256d0b691836fe2cd72 languageName: node linkType: hard -"@jupyterlab/logconsole@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/logconsole@npm:4.3.2" +"@jupyterlab/logconsole@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/logconsole@npm:4.3.3" dependencies: - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/nbformat": ^4.3.2 - "@jupyterlab/outputarea": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/nbformat": ^4.3.3 + "@jupyterlab/outputarea": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/translation": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.5.0 - checksum: 4710553002df0cbdcb93bf7b401edf38c7cd83ad59106269e47a9f98e303cd2e123421016f544f93125d323cad300b00cce7d3ba0a125066e174fe8cc8e4a67a + checksum: b54b095ad48319fefd18880e73e661dd2f6fc34c4f15783e15db16bbd30354b80cdb4a033f89b820e56debec08644c980a570f6f825ecedd1c9fc00b18bc3616 languageName: node linkType: hard -"@jupyterlab/lsp-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/lsp-extension@npm:4.3.2" +"@jupyterlab/lsp-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/lsp-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/lsp": ^4.3.2 - "@jupyterlab/running": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/lsp": ^4.3.3 + "@jupyterlab/running": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/polling": ^2.1.3 "@lumino/signaling": ^2.1.3 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: 52dc75795081d457ba61aa38e55b790bf891fab46d9c68efc49412c901d109aa84cdcea0c53dbb16ac8d90557142a2544c3c6117edc6827ee95b5a0a47c58efe + checksum: 65ee7af226de542eeb71cb8183ef7ff85d5c2056bcd551f1af980ade97cd4ed0875825a6d85eb16a94f2e0ebfa3a26309eb7f03e531ed9cc26223ac441de54ce languageName: node linkType: hard -"@jupyterlab/lsp@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/lsp@npm:4.3.2" +"@jupyterlab/lsp@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/lsp@npm:4.3.3" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/codemirror": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/codemirror": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/translation": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/signaling": ^2.1.3 @@ -1609,163 +1609,163 @@ __metadata: vscode-jsonrpc: ^6.0.0 vscode-languageserver-protocol: ^3.17.0 vscode-ws-jsonrpc: ~1.0.2 - checksum: 6f722516128e5c5952e4563f80d429209a4155aece84758e6f1090bdb08188034fd71c355edf98939aec4263c641cbd7697f77de0039eb9a484f4f1ddd38776d + checksum: 4928b2f0990682842d6c60c5ae876d1aa06ab954615db79b1186f26e978a25d816872f6f5b599ee5335bc65ca6af19b4d46fcf3ebc58b16007b83fc951184950 languageName: node linkType: hard -"@jupyterlab/mainmenu-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/mainmenu-extension@npm:4.3.2" +"@jupyterlab/mainmenu-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/mainmenu-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docmanager": ^4.3.2 - "@jupyterlab/filebrowser": ^4.3.2 - "@jupyterlab/mainmenu": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docmanager": ^4.3.3 + "@jupyterlab/filebrowser": ^4.3.3 + "@jupyterlab/mainmenu": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/messaging": ^2.0.2 "@lumino/widgets": ^2.5.0 - checksum: 00fcfe1d8e79c3cdae96543c06f29ff9eb4071177e8f332e9849a60c556811269c19049525c877e0c99152e9ee7d8391ca6c99a520bb70583eda2e56e4cd339f + checksum: 795abaa18b0ce64b63245e1b9fa753866a464bcc790a77096efbb05a8fe4647bd0a7067b9faaf7f754efccaaac1113466061b6c15736420a8cf9a6e8c326d012 languageName: node linkType: hard -"@jupyterlab/mainmenu@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/mainmenu@npm:4.3.2" +"@jupyterlab/mainmenu@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/mainmenu@npm:4.3.3" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.5.0 - checksum: 0aecedb30748fa7e9c9624a719202c07b2a813c8310b1295d51f14b9a74e1625964eb8f263665841492743dccf004972120cb945d412b32ab0cc9b77cfdad94d + checksum: 669709a7fdff792b997f1f533d18c1e391908065b4286aa72d36462381b0a646f1b8abe1a384435b9f6cf83d506732b98e9b9d71fee3d8023cecc82777d9a152 languageName: node linkType: hard -"@jupyterlab/markdownviewer-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/markdownviewer-extension@npm:4.3.2" +"@jupyterlab/markdownviewer-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/markdownviewer-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/markdownviewer": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/toc": ^6.3.2 - "@jupyterlab/translation": ^4.3.2 - checksum: bc0063da2670b1f5cd71c1e8e189e2b63dc57c2c1cc9e146ecc591060cd5b21fbcfc2b8b864ea4b6bb7fed583fc9094782b10bae4e5bad1c8ca586032223759e + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/markdownviewer": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/toc": ^6.3.3 + "@jupyterlab/translation": ^4.3.3 + checksum: dbd6ed2562b2142e414423531ec6e571103d0852b7a9622aab97a3bbee1303899d72a05af56780e3fbb20531ec86d7b783ffafbad08aa5e85dedbb3a5a85d938 languageName: node linkType: hard -"@jupyterlab/markdownviewer@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/markdownviewer@npm:4.3.2" +"@jupyterlab/markdownviewer@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/markdownviewer@npm:4.3.3" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/toc": ^6.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/toc": ^6.3.3 + "@jupyterlab/translation": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.5.0 - checksum: 34cb3efe3c28b07671175189bc7bc7052b96a04586c4dd14153ec4f63d476c9fa0be886aa9bbc42adcee9e17b821bea5c1a421d9b8d604e4b6d7f1637640effa + checksum: fe4a9970d87ed41dc8b91ef515fafc3a6ea31e8172384b6f6b204d075b332a1fed1ff53f223e0ca92c2590ece38db94c5396e17dcf39e632f11ef01a3a484495 languageName: node linkType: hard -"@jupyterlab/markedparser-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/markedparser-extension@npm:4.3.2" +"@jupyterlab/markedparser-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/markedparser-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/codemirror": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/mermaid": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/codemirror": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/mermaid": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 "@lumino/coreutils": ^2.2.0 marked: ^9.1.2 marked-gfm-heading-id: ^3.1.0 marked-mangle: ^1.1.4 - checksum: aed13853e9b39e2f7b86bb04a368402e0efbbd809d35f6a86e4de805d5a7ec319b358b931b94531ae4933f9ae3ae5af8adf320e2b6e4d2ffc02a71a5dc351d1c + checksum: 928420915e4d458e4a5869fc1ed86f896ff2d154c8413fbe45097317d36dedc6e1cd29b32c51dab94c442290d6d09ba382f53e5b0ae55bf2f93067089676aa35 languageName: node linkType: hard -"@jupyterlab/mathjax-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/mathjax-extension@npm:4.3.2" +"@jupyterlab/mathjax-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/mathjax-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 "@lumino/coreutils": ^2.2.0 mathjax-full: ^3.2.2 - checksum: 925c4fe7d3f3a1791bb0b9cf73dafd9182100f7699e9de956248ceb3398a7d3abe651592d36c602331472965d4d8ee784888d6279042e36d1b7056dff3392a1b + checksum: f7459893b1560cb17647c9485f63c7b9374cc8746c5cb3e67e6f3663411fe5590de6b2dddd9f7945c632b1317d249b2bfcd62af72b70501aa412dfd59edc764d languageName: node linkType: hard -"@jupyterlab/mermaid-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/mermaid-extension@npm:4.3.2" +"@jupyterlab/mermaid-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/mermaid-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/mermaid": ^4.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 - "@jupyterlab/translation": ^4.3.2 - checksum: 73f8d7feefcf00415a7ee7086bdf43389447dbaa46d0625cc5b22f17b7a7802d39dd357dd25113e1bdf83d768adb41b70e82954de3ba5b5bebaedd15d62aa2ca + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/mermaid": ^4.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 + "@jupyterlab/translation": ^4.3.3 + checksum: 40426f4f43138631118899f5e78356fa25a4ce65c169ad442e904ff649b9c1e9d53fe0ec188a2f4cb944681456758ed4077609b72204d6d523c5f57d145cfe06 languageName: node linkType: hard -"@jupyterlab/mermaid@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/mermaid@npm:4.3.2" +"@jupyterlab/mermaid@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/mermaid@npm:4.3.3" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.5.0 mermaid: ^10.7.0 - checksum: 76b6246d683558f0469c6251d1cdbd41b975ed851131a770558c44ad119644b7fa61b37bd8d6f5acc4b7bfbe6076546c808242bff3a64a62a78426512b40f062 + checksum: a54426b3b8d3700a12ad71ac5a8d638df19893332f8af70ee88e3ab40d96321c07b2d04d38305fd7db847dd95ff99046c354bcfe6781796e9d83802ac415a830 languageName: node linkType: hard -"@jupyterlab/metadataform-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/metadataform-extension@npm:4.3.2" +"@jupyterlab/metadataform-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/metadataform-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/metadataform": ^4.3.2 - "@jupyterlab/notebook": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/metadataform": ^4.3.3 + "@jupyterlab/notebook": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 - checksum: 690306d0e939eddac985f901d0a86bea727dfc78ac74b5c8e67450fe6ce7611b663530130a9f9c7eb9f5981ddfeb81ff935ab6a64b39ca40280aa5f85f4f73cf + checksum: f017854fd0a72aae17b890507658fd0c506bb3a51f371b41cf5e6dd5f082bf624a66868ed0b80020fd6e817910488322d4eaba74b253f736756bed3cca0fb2d5 languageName: node linkType: hard -"@jupyterlab/metadataform@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/metadataform@npm:4.3.2" +"@jupyterlab/metadataform@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/metadataform@npm:4.3.3" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/nbformat": ^4.3.2 - "@jupyterlab/notebook": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/nbformat": ^4.3.3 + "@jupyterlab/notebook": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/widgets": ^2.5.0 @@ -1773,53 +1773,53 @@ __metadata: "@rjsf/validator-ajv8": ^5.13.4 json-schema: ^0.4.0 react: ^18.2.0 - checksum: ce4df4e12d609b8e994e99c8b69ad85158e3ecdc559ab0a072c9b2145bff33ecc94dec9d16dd34e2e2dc4b4a66f7add99b2ededb89b594010d4b6ab71354e128 + checksum: 6ca5c6495d4d6d78002c94dad0147154025754a23f1dcae72b30ae3c541adeba0b0216630f966620daf495013545c6db4fc8960c85ed72a9ca9097b4bab13c4e languageName: node linkType: hard -"@jupyterlab/nbformat@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/nbformat@npm:4.3.2" +"@jupyterlab/nbformat@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/nbformat@npm:4.3.3" dependencies: "@lumino/coreutils": ^2.2.0 - checksum: f51d0920031c22283ebf697e377078ecda0eca2c1248d42a3075bca7f0c26fc4e746121527b8533d8718563ddd442dd627688f293790e243efc43dbf336cd62c + checksum: 2e96f688e356209284961a6421391312f58ddb6443ba42ed19838384d33fab0e5b877a956cc5620da9d7417c2cd852e9e225353b6ac45e246e2d546dfd6302c8 languageName: node linkType: hard -"@jupyterlab/notebook-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/notebook-extension@npm:4.3.2" +"@jupyterlab/notebook-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/notebook-extension@npm:4.3.3" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/cells": ^4.3.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/codemirror": ^4.3.2 - "@jupyterlab/completer": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docmanager": ^4.3.2 - "@jupyterlab/docmanager-extension": ^4.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/documentsearch": ^4.3.2 - "@jupyterlab/filebrowser": ^4.3.2 - "@jupyterlab/launcher": ^4.3.2 - "@jupyterlab/logconsole": ^4.3.2 - "@jupyterlab/lsp": ^4.3.2 - "@jupyterlab/mainmenu": ^4.3.2 - "@jupyterlab/metadataform": ^4.3.2 - "@jupyterlab/nbformat": ^4.3.2 - "@jupyterlab/notebook": ^4.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/property-inspector": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/statusbar": ^4.3.2 - "@jupyterlab/toc": ^6.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/cells": ^4.3.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/codemirror": ^4.3.3 + "@jupyterlab/completer": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docmanager": ^4.3.3 + "@jupyterlab/docmanager-extension": ^4.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/documentsearch": ^4.3.3 + "@jupyterlab/filebrowser": ^4.3.3 + "@jupyterlab/launcher": ^4.3.3 + "@jupyterlab/logconsole": ^4.3.3 + "@jupyterlab/lsp": ^4.3.3 + "@jupyterlab/mainmenu": ^4.3.3 + "@jupyterlab/metadataform": ^4.3.3 + "@jupyterlab/nbformat": ^4.3.3 + "@jupyterlab/notebook": ^4.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/property-inspector": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/statusbar": ^4.3.3 + "@jupyterlab/toc": ^6.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -1829,32 +1829,32 @@ __metadata: "@lumino/widgets": ^2.5.0 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: 9701bc82a649ada79cb160a38198e181f929332fabe8ef4e44279c92a84e73426abe8926cfc175edf8407d7fc1b1e0457177f74dcc8494e8404ffde1f8d9b385 + checksum: 516cbaf78990b26585bc29384d33814597163a0e29121affe9a347ddbb21fc56962970618a700ede7e2a6a56a9662299b281e8d99a14e440fda2ad98900115f5 languageName: node linkType: hard -"@jupyterlab/notebook@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/notebook@npm:4.3.2" +"@jupyterlab/notebook@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/notebook@npm:4.3.3" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/cells": ^4.3.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/codemirror": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/documentsearch": ^4.3.2 - "@jupyterlab/lsp": ^4.3.2 - "@jupyterlab/nbformat": ^4.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/statusbar": ^4.3.2 - "@jupyterlab/toc": ^6.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/cells": ^4.3.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/codemirror": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/documentsearch": ^4.3.3 + "@jupyterlab/lsp": ^4.3.3 + "@jupyterlab/nbformat": ^4.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/statusbar": ^4.3.3 + "@jupyterlab/toc": ^6.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -1867,34 +1867,34 @@ __metadata: "@lumino/virtualdom": ^2.0.2 "@lumino/widgets": ^2.5.0 react: ^18.2.0 - checksum: 70d22963f20209c3130f8d04715fd395a671b357afc513cdfd700e4f5d8a37012f32fa5fbd863f927ff357da5ef88ededfd14d471293db599c7696158e703044 + checksum: 89e9bab09c102a0b12cf29b432873561a35c607998365de5bc027a20345c30e5928229d2c8a3fc69e7c6fc0440339b0ac33a783ab5711dce93fba69f2cb20146 languageName: node linkType: hard -"@jupyterlab/observables@npm:~5.3.2": - version: 5.3.2 - resolution: "@jupyterlab/observables@npm:5.3.2" +"@jupyterlab/observables@npm:~5.3.3": + version: 5.3.3 + resolution: "@jupyterlab/observables@npm:5.3.3" dependencies: "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 - checksum: 2aca1eacfb7e207dd9c855bab00c3997ecd1d915bda22bd0cefb53eb0560aa40bcf9688229a671eac49ca4041eccf946954a8811ad9173ade0175e31a38847bb + checksum: 951234b84556523d83c67ba7f5d5109a5ff4da9adc2329137e218974e2e7b0e4392b69a642005e5805108d9080d0c4c0233b1d35429d2acd7dc3d7191dddb8bc languageName: node linkType: hard -"@jupyterlab/outputarea@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/outputarea@npm:4.3.2" +"@jupyterlab/outputarea@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/outputarea@npm:4.3.3" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/nbformat": ^4.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/nbformat": ^4.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/translation": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -1902,146 +1902,146 @@ __metadata: "@lumino/properties": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.5.0 - checksum: 15c03b9b0ca47116f039658ee00a13318a52d9b240c1aacfcdd3515d819ced75d4026e815a1c1269b28c463522bdcd310a49589735a17849d1091c2df982445c + checksum: 45c7a4c8509ab718c2055e128b4030a9e89b42af775e50a82340f5f255c0369ac3a0d79e8185640bc2add55b738cda893532806bfac163b50ff683662cf06526 languageName: node linkType: hard -"@jupyterlab/pdf-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/pdf-extension@npm:4.3.2" +"@jupyterlab/pdf-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/pdf-extension@npm:4.3.3" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.11.2 + "@jupyterlab/rendermime-interfaces": ^3.11.3 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/widgets": ^2.5.0 - checksum: d4cc4701fa787a155c413e77ff51088c4fcc2a325d1e4f06f4049a06fa8fdfa613e4219cddc00f58a0e25f365f80b2d83307d874269fdc4e7c5eb952aea204af + checksum: 6faffa1c0d9e08544f10d25703efda371d060576d6e84d5a255f058d428d3237db72cd009d7ec5a9de6b1ed477f1aee5edb5e26dc9d52414b0dde3e775853b58 languageName: node linkType: hard -"@jupyterlab/pluginmanager-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/pluginmanager-extension@npm:4.3.2" +"@jupyterlab/pluginmanager-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/pluginmanager-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/pluginmanager": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/pluginmanager": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 - checksum: 06985338a08d7e620b545e9019a50be5a40b40e6d68c162509de5be782c0cd3b77b58bd8b4b5608a398757ab02a7f956ba892740b0e84d1118192befae636172 + checksum: 478e6947d0bd71a1a91b3a551e3e30a21716568661feabdac6e440dffbded0b38d8f806bd08ab0edcd9bd4afa5955c76ce651c2d9f4df79f7c254f56d2a56dca languageName: node linkType: hard -"@jupyterlab/pluginmanager@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/pluginmanager@npm:4.3.2" +"@jupyterlab/pluginmanager@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/pluginmanager@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.5.0 react: ^18.2.0 - checksum: 953bbcee4436c8c3b7c9bb80acfc0b29641036e0426d72fb8711d1820e47daf2ba6727d94f7c075a2987826dc7fbe2f2ed4ca819aaab89a8a792dfdd3c1f8774 + checksum: 884b008633c62508d2731708857dab221cfa65c0a5911ecddd76ccdb4088c966712c3d1ed2c4135e59844f4f127257a011e0e3d34a06fb1afc64bbb16ff89251 languageName: node linkType: hard -"@jupyterlab/property-inspector@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/property-inspector@npm:4.3.2" +"@jupyterlab/property-inspector@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/property-inspector@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.5.0 react: ^18.2.0 - checksum: 8e0be342c2fd9ab4d2c189a25059b7fecab25f6a7a8e997715ccca0c0aaa4840a7cac08ff8cee6f85dd7c50eae65803e51842033d494b73480a714adcac6e2cb + checksum: ec036573fa77f4233bc84c110fabe6cfbafa97dba689d27a1e900bfafaca1e869aeebce2fd2d129525f7157999fc3cee41a2eb1d9ce251636230cb4320a9c8c1 languageName: node linkType: hard -"@jupyterlab/rendermime-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/rendermime-extension@npm:4.3.2" +"@jupyterlab/rendermime-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/rendermime-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/docmanager": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - checksum: b438a1a1ccf20b8c34b911b6a2d61c9884f966239e8552a1316df31441772bd25473a0ac91a963c310885fa80b8c55f9fcad3f88427a925159fa0fb2077f6421 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/docmanager": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + checksum: 080dcc0ac49a55be907b518bc206a3aa8b65d0223fd46a94fa20451bcbf177d2a98f584b310b136246f2fd023f7af4cf72804d02f8114d479055b4d4f8fa0427 languageName: node linkType: hard -"@jupyterlab/rendermime-interfaces@npm:~3.11.2": - version: 3.11.2 - resolution: "@jupyterlab/rendermime-interfaces@npm:3.11.2" +"@jupyterlab/rendermime-interfaces@npm:~3.11.3": + version: 3.11.3 + resolution: "@jupyterlab/rendermime-interfaces@npm:3.11.3" dependencies: "@lumino/coreutils": ^1.11.0 || ^2.2.0 "@lumino/widgets": ^1.37.2 || ^2.5.0 - checksum: e29cca8885e2ea5cb11d45c89a0a9756b3b462ad69720351a271c285a09d95477d0c1b8e78b3a20d2b2f4fe25bce9e0bb35a314132e18b008f679733e2a0ee3a + checksum: a4a4d73d08a4c9fcef39c345dc463f07a9736d241fc6bb4d1eecfc7780f784a39dce77f9e8c9552f51dde9602d4ce20430558aad5f53eb83245197fed2307f10 languageName: node linkType: hard -"@jupyterlab/rendermime@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/rendermime@npm:4.3.2" +"@jupyterlab/rendermime@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/rendermime@npm:4.3.3" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/nbformat": ^4.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/nbformat": ^4.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/translation": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.5.0 lodash.escape: ^4.0.1 - checksum: 52e9c211ef1c655b54b751e92474d6f3a0cf0322e7be1a1599f69263bd89a5529eac2f4a9e7429c6a7e39b9c152da1aea8b497a20ad409b9c4113150e32a75aa + checksum: 8e40cc9e4ca6cecc3451cdbb460bfa075be5b43993b5511e9ebde101f246522fe6823272cdff4a2d5ef2b23d7b18a0e3a00471c4aa9c7b2487de45b4621e4497 languageName: node linkType: hard -"@jupyterlab/running-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/running-extension@npm:4.3.2" +"@jupyterlab/running-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/running-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docmanager": ^4.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 - "@jupyterlab/running": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docmanager": ^4.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 + "@jupyterlab/running": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/commands": ^2.3.1 "@lumino/polling": ^2.1.3 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.5.0 react: ^18.2.0 - checksum: 638045cf7a10f44ce0e659acc4cdeacc7bb524809143d6cfe4d3e206fd35031a60ab6316f2d30ddc1b40622e0668cc9f7ec784762a6ab7b89be4c1c4c55fe899 + checksum: fe70ac8c51dac5d2c306bb8fc909db4a4d55386ae8998bf1f5e830d511e1509179bd12ecbde345b7d47c6d0a042ad60e36e6ff3bd64a62e84d85b09ddadd4e73 languageName: node linkType: hard -"@jupyterlab/running@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/running@npm:4.3.2" +"@jupyterlab/running@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/running@npm:4.3.3" dependencies: "@jupyter/react-components": ^0.16.6 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/domutils": ^2.0.2 @@ -2049,61 +2049,61 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.5.0 react: ^18.2.0 - checksum: 184e738569d6432b292df89c078f89f2254d46c08f7263cf083f13fd788a45e20cf2908f1e55cf36cc0e97ce2ef7a65d19a500ce8f146c8301284c00e65962eb + checksum: 0bd0b7ea29a67ffc16e893b9a48502b1cfa8e548a3f7f1fb7c076187cbe6ac703515b64838358e23fa1ddd868f5dabd48f8b933d93b45e24a2d71f31573395b2 languageName: node linkType: hard -"@jupyterlab/services@npm:~7.3.2": - version: 7.3.2 - resolution: "@jupyterlab/services@npm:7.3.2" +"@jupyterlab/services@npm:~7.3.3": + version: 7.3.3 + resolution: "@jupyterlab/services@npm:7.3.3" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/nbformat": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/statedb": ^4.3.2 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/nbformat": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/statedb": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/polling": ^2.1.3 "@lumino/properties": ^2.0.2 "@lumino/signaling": ^2.1.3 ws: ^8.11.0 - checksum: a8c79bdadbce4ebd242830a762de7e4afe91870cb2835233381d9c923312e824b58e904661a4ef652c0b4d43f51ee25c117cfc62d697d67f652498b69b48f529 + checksum: db7177c6db930a674543a2a2b1095c5f76edac0120dfa24243e231d89a07b2243a62d4691b9ecde834958dca9c3b671a6548b121af50d702e21722df3c5b547f languageName: node linkType: hard -"@jupyterlab/settingeditor-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/settingeditor-extension@npm:4.3.2" +"@jupyterlab/settingeditor-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/settingeditor-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/pluginmanager": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/settingeditor": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/pluginmanager": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/settingeditor": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/disposable": ^2.1.3 - checksum: d3c696b439da4a3ff31e98053fabf4f3ac0232c6747fe655155c88b37b76dbcac167980049e0837592f808573da149d8574f560757622fc888462bbc59cb19f5 + checksum: 06667ade86ee82578be7f720ff33f922ba4e8df62dce906bb9569d6f7e0b8d5493886b2d4927941901177547d39bbfcbcb239f2857e6d28a29eb81490419ff04 languageName: node linkType: hard -"@jupyterlab/settingeditor@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/settingeditor@npm:4.3.2" +"@jupyterlab/settingeditor@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/settingeditor@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/inspector": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/inspector": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -2117,16 +2117,16 @@ __metadata: "@rjsf/validator-ajv8": ^5.13.4 json-schema: ^0.4.0 react: ^18.2.0 - checksum: ee374de7b0b30de500fe1821376aeccdb951beaff178e95f27bee43984517ec2c687d0ab6cf240ca3d489098f3e39378ce624b64e9e81dce70766da73c97a3ae + checksum: 9bd81e8560f4cbcc344a878bb580545a1f4f2d2444b0df8f564aaf63b16c4d950d78e9badfa53727bef23050041ea61b8221d0cfc406c81ed198a166eae0c9cc languageName: node linkType: hard -"@jupyterlab/settingregistry@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/settingregistry@npm:4.3.2" +"@jupyterlab/settingregistry@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/settingregistry@npm:4.3.3" dependencies: - "@jupyterlab/nbformat": ^4.3.2 - "@jupyterlab/statedb": ^4.3.2 + "@jupyterlab/nbformat": ^4.3.3 + "@jupyterlab/statedb": ^4.3.3 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -2136,18 +2136,18 @@ __metadata: json5: ^2.2.3 peerDependencies: react: ">=16" - checksum: 4c2ab20a7cb090db0a3fee6335f782bda037ee03acacaf082083032a519e3d4c40044ddcfffa71d316817a3d74858cb9f46bf48d53444d5d7374fb8808a5d21e + checksum: 98d6f6ac6d41114e687c1a887c28171651e7c5ecceb5a989e5e8c55afb20685beaee6ad652c0104092f4516f3fe9e5711208fb6e11a66fbf389fb08ac811f877 languageName: node linkType: hard -"@jupyterlab/shortcuts-extension@npm:~5.1.2": - version: 5.1.2 - resolution: "@jupyterlab/shortcuts-extension@npm:5.1.2" +"@jupyterlab/shortcuts-extension@npm:~5.1.3": + version: 5.1.3 + resolution: "@jupyterlab/shortcuts-extension@npm:5.1.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -2156,41 +2156,41 @@ __metadata: "@lumino/keyboard": ^2.0.2 "@lumino/signaling": ^2.1.3 react: ^18.2.0 - checksum: 997cb727bbae00d0993f92ed7e810ed52d51003f287e67d22cd1f80ab19c11b059a259a43bf237d7bd24a7a644c76e97e5c70a57f7d337c0595517243d1a2959 + checksum: e463aaf1ba4b60d8e37acd7f81caa8c89f0fc56c7edcfe239640b0717ccbcd08a2ef8c89d2ee63669d1e8aba51ee7c69756a87587c190d8f44729c28c9244539 languageName: node linkType: hard -"@jupyterlab/statedb@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/statedb@npm:4.3.2" +"@jupyterlab/statedb@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/statedb@npm:4.3.3" dependencies: "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/properties": ^2.0.2 "@lumino/signaling": ^2.1.3 - checksum: a3cebd716be2e124c009820b3d39b8c5c0a83ae56c9fdfb4312bfb63d265d3ab135bd9d9532a619daff7d711e62042d242f48c5b58abf9cc5dbf3a2aaf2c673f + checksum: 611ae29772fc704877737ad1031ebcf5fd1d1af976e07103de26fed90fcb120329b1a28d02c8c79fa35be161db415daf62116c3b358174fdc2e24f23bb553870 languageName: node linkType: hard -"@jupyterlab/statusbar-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/statusbar-extension@npm:4.3.2" +"@jupyterlab/statusbar-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/statusbar-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/statusbar": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - checksum: 49d092d3775360903459469e9b524d0b4450607e9340fcdbb0af74b9fc2e4436e9e67dbff2ab97e4d0c06b792487586dc28235e1f5a1b7f212d185335cdabca4 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/statusbar": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + checksum: ec7ddb3c13f9d88a1d4ff5b72e68aae8a1e984768f830bb912ac727c4a8f8b7acca3d16fa49e0fb1e58b2e65b15b01be3f763395eff0b8f32533bcc42088684c languageName: node linkType: hard -"@jupyterlab/statusbar@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/statusbar@npm:4.3.2" +"@jupyterlab/statusbar@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/statusbar@npm:4.3.3" dependencies: - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -2198,36 +2198,36 @@ __metadata: "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.5.0 react: ^18.2.0 - checksum: 68c9b3c238197d1745e052a77489576b642f303266d6228eb0a71555888c6192107f59eaa6c2668c8e60459fd6155f19efcdb88f40040df2460c29ec10588c68 + checksum: a0bf2697dc1764c556864c9688324fbb2ca19bb4bd8f7579f3aa35ed87cf19ac0966b969d6922ced266b3253fa6d2545a1421f187e0c48fafa48991f984258cf languageName: node linkType: hard -"@jupyterlab/terminal-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/terminal-extension@npm:4.3.2" +"@jupyterlab/terminal-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/terminal-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/launcher": ^4.3.2 - "@jupyterlab/mainmenu": ^4.3.2 - "@jupyterlab/running": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/terminal": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/launcher": ^4.3.3 + "@jupyterlab/mainmenu": ^4.3.3 + "@jupyterlab/running": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/terminal": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/widgets": ^2.5.0 - checksum: fe9c9e9115325a7809d1c92148c4f906b55de58d6aef6d6f7c5c6c2c9b34b599281265b8d6285c68930c0a924daff2858b966db9762b6ab7af471b33bc8528c4 + checksum: 54fb64f797b654cd4268ef3d65694ee968ae1d4ed4d07d35416c14de6151354c4245f7839bdb424cf9177580c43bd64bdf852fe35c99d2b796d9566fb8e5fe19 languageName: node linkType: hard -"@jupyterlab/terminal@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/terminal@npm:4.3.2" +"@jupyterlab/terminal@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/terminal@npm:4.3.3" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/translation": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/domutils": ^2.0.2 "@lumino/messaging": ^2.0.2 @@ -2237,161 +2237,161 @@ __metadata: "@xterm/addon-web-links": ~0.11.0 "@xterm/addon-webgl": ~0.18.0 "@xterm/xterm": ~5.5.0 - checksum: dd8763b22873e43823e901d5cb7585a093f9c25a95b350bfcb8b5fb201a3909458585b98e8a5d2702c484d297c9ba5a8b2048e81774c329f60a1537c1d9a6418 + checksum: 853930169ae2385163e227095685d76420c33469c63452791773162c79c09eeb90d7d37dfa46e857245dd3d08fc2bbe230b6d23f934b65dbc6c46c6dd3c2f2a3 languageName: node linkType: hard -"@jupyterlab/theme-dark-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/theme-dark-extension@npm:4.3.2" +"@jupyterlab/theme-dark-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/theme-dark-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/translation": ^4.3.2 - checksum: de42aa7782b943f650663cf47189263137e181115cf54a42cfb57b5147c7bb979dd81546cee7cb8999835ca1ef2291737351107229e28b7ec3e698466cb85809 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/translation": ^4.3.3 + checksum: 9be90970fdf6a4f147d6913e2b78ad66d0eecfb21a81603de9cb611bd5659100f9224c23ca90e2dcb1cb01419c6d59474e6ad556099fd4310d5de7da40a2cc06 languageName: node linkType: hard -"@jupyterlab/theme-dark-high-contrast-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/theme-dark-high-contrast-extension@npm:4.3.2" +"@jupyterlab/theme-dark-high-contrast-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/theme-dark-high-contrast-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/translation": ^4.3.2 - checksum: 884f784d466f394b0d20b38b6251a6f6fbc57594f911069db709adf3ccbdd895d5858450bd9bb61fc6534fe3746a6753fcc1c0fc2633ab82023a2a182e073e73 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/translation": ^4.3.3 + checksum: 17b821ab7367fb386855a431e708961414f9d38929654f9cc9e005260ef048b7ef7fea0c9ae8ea9b841aee5335f542ab7d18e474d941a1068de932fa2bca8721 languageName: node linkType: hard -"@jupyterlab/theme-light-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/theme-light-extension@npm:4.3.2" +"@jupyterlab/theme-light-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/theme-light-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/translation": ^4.3.2 - checksum: b7fa031a47cef1fc2e2d0f1044d9b0369fbc60177e186016650869e5e60d143e9923b3308f0398899657fdfab152f99fe701a47ec5a2a0246d611e80d45d9a0b + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/translation": ^4.3.3 + checksum: 32c02091131d188424233e617a2f162b69b11b5bee8cbb15ebfda926b7b90444721494a6feb6250881f46468fdb44fcd370162f8799287202d49e409ff139b70 languageName: node linkType: hard -"@jupyterlab/toc-extension@npm:~6.3.2": - version: 6.3.2 - resolution: "@jupyterlab/toc-extension@npm:6.3.2" +"@jupyterlab/toc-extension@npm:~6.3.3": + version: 6.3.3 + resolution: "@jupyterlab/toc-extension@npm:6.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/toc": ^6.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 - checksum: b17f2a73b73f7c02bc0df87f59ef656b5d5c299a74d91cf900fce18c4f67f177c9ea243a1f4fe7eb56771fd5700a2c84f737c01f6be22821ac6fbe814fa3795f + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/toc": ^6.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 + checksum: 08e7baabfaa5d48852c2f25b77b1bedfc2b95de362b2bc010aed8328c49072744b068e8eac820c6a3684fb728d653edbbfd135442da96e9ebf4a262c052ad61d languageName: node linkType: hard -"@jupyterlab/toc@npm:~6.3.2": - version: 6.3.2 - resolution: "@jupyterlab/toc@npm:6.3.2" +"@jupyterlab/toc@npm:~6.3.3": + version: 6.3.3 + resolution: "@jupyterlab/toc@npm:6.3.3" dependencies: "@jupyter/react-components": ^0.16.6 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.5.0 react: ^18.2.0 - checksum: 1c845c1027fb22bed50576d48d1d9eb86ba7b5b7ff4e54249f5ccd43d95475789822f1dda9d7efe703cafefe20afdda91fe0f52ee622c568186258539f1286c9 + checksum: a99ebcc69a0477a0313af942b0cfba6d96b612a48efc682fee66297a609ff6ea068612a356e8e1bef49a1b73237ff6d6c30023a35dc3bb78f5ba2b694f047d74 languageName: node linkType: hard -"@jupyterlab/tooltip-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/tooltip-extension@npm:4.3.2" +"@jupyterlab/tooltip-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/tooltip-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/console": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/fileeditor": ^4.3.2 - "@jupyterlab/notebook": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/tooltip": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/console": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/fileeditor": ^4.3.3 + "@jupyterlab/notebook": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/tooltip": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.5.0 - checksum: 24299af8340bc0db1da57cf95c79157a5eeb6f97f90eeca4c3e55df9b2a70d8138aacc2e7d6a57210b0635ffc705b258a72d3479b971503318c56cafbc242166 + checksum: 66c86cf585a55f34dc58e600f4f812ff63da694b8c84b75bf23c72a074cc9925643ccee81844faa66faabb531181f6e00a106e27321d1639f04de3666f7d10c3 languageName: node linkType: hard -"@jupyterlab/tooltip@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/tooltip@npm:4.3.2" +"@jupyterlab/tooltip@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/tooltip@npm:4.3.3" dependencies: - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/widgets": ^2.5.0 - checksum: a9e66570e01da546460bfbc0376484e14ae6ecd4a69a73a40569defa9f43226f6744c3b9342eb12be9877be7e4b8c0bea417976b69e5fca374a02549eb66955a + checksum: 76657bfe2062df17d88943f3212c596fcae9dfc6109610d84c65d6e99f9ca44c13f494ff2b9171597bdaf7df336fe92aef7a616c1c2a57ea94f961fa286e69b2 languageName: node linkType: hard -"@jupyterlab/translation-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/translation-extension@npm:4.3.2" +"@jupyterlab/translation-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/translation-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/mainmenu": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - checksum: c87b4977ff32d1dfc2685f71ba36c55b44c25457a6a8d9eb7f64b8eee7244cd44550570bb5a897b5d41535c134a0fcda1fdc77f8470e93db283d2c3ec4996ce7 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/mainmenu": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + checksum: cc81a76325d7aef439b6b5059584e4bf64dee94ab4800ab4fee228b2232b8a5ec38c9d599e6307adadbfda2f60082ca96bc1043cb04e781be4f85e8a5af94426 languageName: node linkType: hard -"@jupyterlab/translation@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/translation@npm:4.3.2" +"@jupyterlab/translation@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/translation@npm:4.3.3" dependencies: - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/statedb": ^4.3.2 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/statedb": ^4.3.3 "@lumino/coreutils": ^2.2.0 - checksum: 04c6561a44501b11063eb56929dd24d0899e07fb0d1cd45c8bcfb697c08ce9619be42b9c69ee60bff612a6ed3dff2525211f118f03d5709a6bd8cf256a0f3f8c + checksum: 26b82d7b40715e93b718b671d91dbf0820db84f3743048ff37745fc7036495ed3697593f851b20650ed0ae0a099eea14196231a9c3775062def723a1a8b2c772 languageName: node linkType: hard -"@jupyterlab/ui-components-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/ui-components-extension@npm:4.3.2" +"@jupyterlab/ui-components-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/ui-components-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 - checksum: e3793ce03e3d656494845640e047ead3c49b8665fe08a2b0cc7bc8b016db83c971b100316fb4505908070ce83fae87db99f78c4e3030491e38007c651f9cab42 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 + checksum: b1b30aecf4ecf2977280478ebaa8f44c9cb465cbfe88d823ae4918aa91d773e29bdd2bb2133dd9a2ce476d01570cf270c2b9566ccf063ed6b1596502cd30be24 languageName: node linkType: hard -"@jupyterlab/ui-components@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/ui-components@npm:4.3.2" +"@jupyterlab/ui-components@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/ui-components@npm:4.3.3" dependencies: "@jupyter/react-components": ^0.16.6 "@jupyter/web-components": ^0.16.6 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 + "@jupyterlab/translation": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -2409,52 +2409,52 @@ __metadata: typestyle: ^2.0.4 peerDependencies: react: ^18.2.0 - checksum: dd87bdb1d478418c737876e816af788736ed4d92e3ebca956251f5edc221c286810f4b502583a8bf2e0dcba19c9942b87469c3319f2d7586f40f13545d5b1d3d + checksum: 5c967c09b3c6b7ab1c996b0e91c199f59819610b386e0170afdde95f518991049b8c6a073e0966babb6074d44d298dda1a79ef7dfd0226ea0bf4a70efa5d17b9 languageName: node linkType: hard -"@jupyterlab/vega5-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/vega5-extension@npm:4.3.2" +"@jupyterlab/vega5-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/vega5-extension@npm:4.3.3" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.11.2 + "@jupyterlab/rendermime-interfaces": ^3.11.3 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.5.0 vega: ^5.20.0 vega-embed: ^6.2.1 vega-lite: ^5.6.1-next.1 - checksum: 21af86a1c999da0e1bba136df7f10381b53ebec3566cad9bebf39b5949e361617ad20d9f4d35af0efbf976751a20ff2405a6c8d8a6da72a23b5ced5a69c2da57 + checksum: 29715e4efbec9227179d131772b8ec3ecdf0f3ba3526c0c0a9ba534674868dc7137a57d3976bebbd2992331d85352ea01fdbff3e404c039faa25d896ab0f7e59 languageName: node linkType: hard -"@jupyterlab/workspaces-extension@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/workspaces-extension@npm:4.3.2" +"@jupyterlab/workspaces-extension@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/workspaces-extension@npm:4.3.3" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/filebrowser": ^4.3.2 - "@jupyterlab/running": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 - "@jupyterlab/workspaces": ^4.3.2 - checksum: 1cd185b1a4b81da44f1127ab086b4faa1d7c0c9c4f83d31fd8e386fdcf808b681e551a5e602b61824fa8070ff357180064805259a19bb392a3093f1ce706c395 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/filebrowser": ^4.3.3 + "@jupyterlab/running": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 + "@jupyterlab/workspaces": ^4.3.3 + checksum: b11e8d87d440c72a4b334b915853aae5cf44333f1b2263565590b3a80b71d1d1f750c2d3983bab4de5d69cc839c3cb49d814d14ba82b43d7ef81040b9d674295 languageName: node linkType: hard -"@jupyterlab/workspaces@npm:~4.3.2": - version: 4.3.2 - resolution: "@jupyterlab/workspaces@npm:4.3.2" +"@jupyterlab/workspaces@npm:~4.3.3": + version: 4.3.3 + resolution: "@jupyterlab/workspaces@npm:4.3.3" dependencies: - "@jupyterlab/services": ^7.3.2 + "@jupyterlab/services": ^7.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/polling": ^2.1.3 "@lumino/signaling": ^2.1.3 - checksum: 8d539f6570829e74ae8beaeddb1851649f280514e56a87f6f47a7c54b01d892b8d97b88d919625be3edfc5104d7333997fa4b27e64dbcac651e1ce9be7002d6e + checksum: 9ffc472c12bcac2e97014ea31207cbb89a711b623e8e5373d1afb70fc1f238756add1b6750dfe1d27454bd334cc3b07a3d33578754111992bb02e35b3926bdd5 languageName: node linkType: hard @@ -8114,11 +8114,11 @@ __metadata: linkType: hard "nanoid@npm:^3.3.6": - version: 3.3.6 - resolution: "nanoid@npm:3.3.6" + version: 3.3.8 + resolution: "nanoid@npm:3.3.8" bin: nanoid: bin/nanoid.cjs - checksum: 7d0eda657002738aa5206107bd0580aead6c95c460ef1bdd0b1a87a9c7ae6277ac2e9b945306aaa5b32c6dcb7feaf462d0f552e7f8b5718abfc6ead5c94a71b3 + checksum: dfe0adbc0c77e9655b550c333075f51bb28cfc7568afbf3237249904f9c86c9aaaed1f113f0fddddba75673ee31c758c30c43d4414f014a52a7a626efc5958c9 languageName: node linkType: hard diff --git a/jupyterlab/tests/mock_packages/extension/package.json b/jupyterlab/tests/mock_packages/extension/package.json index 7ae4dc3cee5b..bbb33094b0ef 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.3.2", + "version": "4.3.3", "private": true, "dependencies": { - "@jupyterlab/launcher": "^4.3.2" + "@jupyterlab/launcher": "^4.3.3" }, "devDependencies": { - "@jupyterlab/builder": "^4.3.2" + "@jupyterlab/builder": "^4.3.3" }, "jupyterlab": { "extension": true, diff --git a/jupyterlab/tests/mock_packages/interop/consumer/package.json b/jupyterlab/tests/mock_packages/interop/consumer/package.json index 2a44ad4ebd74..5217527a805a 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.3.2", + "version": "4.3.3", "private": true, "dependencies": { - "@jupyterlab/mock-token": "^4.3.2" + "@jupyterlab/mock-token": "^4.3.3" }, "devDependencies": { - "@jupyterlab/builder": "^4.3.2" + "@jupyterlab/builder": "^4.3.3" }, "jupyterlab": { "extension": true, diff --git a/jupyterlab/tests/mock_packages/interop/provider/package.json b/jupyterlab/tests/mock_packages/interop/provider/package.json index 89afdfcf21ab..bbb731320d13 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.3.2", + "version": "4.3.3", "private": true, "dependencies": { - "@jupyterlab/mock-token": "^4.3.2" + "@jupyterlab/mock-token": "^4.3.3" }, "devDependencies": { - "@jupyterlab/builder": "^4.3.2" + "@jupyterlab/builder": "^4.3.3" }, "jupyterlab": { "extension": true diff --git a/jupyterlab/tests/mock_packages/interop/token/package.json b/jupyterlab/tests/mock_packages/interop/token/package.json index f6f652b5fce4..15b57f8d0981 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.3.2", + "version": "4.3.3", "private": true, "dependencies": { "@lumino/coreutils": "^2.2.0" diff --git a/packages/application-extension/package.json b/packages/application-extension/package.json index 4c63fc0e3423..c9f83c2c72b2 100644 --- a/packages/application-extension/package.json +++ b/packages/application-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/application-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Application Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,15 +37,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/property-inspector": "^4.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/statedb": "^4.3.2", - "@jupyterlab/statusbar": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/property-inspector": "^4.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/statedb": "^4.3.3", + "@jupyterlab/statusbar": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/algorithm": "^2.0.2", "@lumino/commands": "^2.3.1", "@lumino/coreutils": "^2.2.0", diff --git a/packages/application/package.json b/packages/application/package.json index 9dfda72c383f..6015616a75bd 100644 --- a/packages/application/package.json +++ b/packages/application/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/application", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Application", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,15 +42,15 @@ }, "dependencies": { "@fortawesome/fontawesome-free": "^5.12.0", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/docregistry": "^4.3.2", - "@jupyterlab/rendermime": "^4.3.2", - "@jupyterlab/rendermime-interfaces": "^3.11.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/statedb": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/docregistry": "^4.3.3", + "@jupyterlab/rendermime": "^4.3.3", + "@jupyterlab/rendermime-interfaces": "^3.11.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/statedb": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/algorithm": "^2.0.2", "@lumino/application": "^2.4.1", "@lumino/commands": "^2.3.1", @@ -63,7 +63,7 @@ "@lumino/widgets": "^2.5.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 3904d7d93b64..f82d774e8063 100644 --- a/packages/apputils-extension/package.json +++ b/packages/apputils-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/apputils-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Application Utilities Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,19 +37,19 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/docregistry": "^4.3.2", - "@jupyterlab/mainmenu": "^4.3.2", - "@jupyterlab/rendermime-interfaces": "^3.11.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/statedb": "^4.3.2", - "@jupyterlab/statusbar": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", - "@jupyterlab/workspaces": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/docregistry": "^4.3.3", + "@jupyterlab/mainmenu": "^4.3.3", + "@jupyterlab/rendermime-interfaces": "^3.11.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/statedb": "^4.3.3", + "@jupyterlab/statusbar": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", + "@jupyterlab/workspaces": "^4.3.3", "@lumino/algorithm": "^2.0.2", "@lumino/commands": "^2.3.1", "@lumino/coreutils": "^2.2.0", diff --git a/packages/apputils/package.json b/packages/apputils/package.json index d6f337a3d689..c67d4a9f5555 100644 --- a/packages/apputils/package.json +++ b/packages/apputils/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/apputils", - "version": "4.4.2", + "version": "4.4.3", "description": "JupyterLab - Application Utilities", "keywords": [ "jupyter", @@ -44,15 +44,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/observables": "^5.3.2", - "@jupyterlab/rendermime-interfaces": "^3.11.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/statedb": "^4.3.2", - "@jupyterlab/statusbar": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/observables": "^5.3.3", + "@jupyterlab/rendermime-interfaces": "^3.11.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/statedb": "^4.3.3", + "@jupyterlab/statusbar": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/algorithm": "^2.0.2", "@lumino/commands": "^2.3.1", "@lumino/coreutils": "^2.2.0", @@ -67,7 +67,7 @@ "sanitize-html": "~2.12.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@types/jest": "^29.2.0", "@types/sanitize-html": "^2.11.0", "jest": "^29.2.0", diff --git a/packages/attachments/package.json b/packages/attachments/package.json index 54b51caee5a1..094cbc8904e3 100644 --- a/packages/attachments/package.json +++ b/packages/attachments/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/attachments", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Notebook Cell Attachments", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -36,10 +36,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/nbformat": "^4.3.2", - "@jupyterlab/observables": "^5.3.2", - "@jupyterlab/rendermime": "^4.3.2", - "@jupyterlab/rendermime-interfaces": "^3.11.2", + "@jupyterlab/nbformat": "^4.3.3", + "@jupyterlab/observables": "^5.3.3", + "@jupyterlab/rendermime": "^4.3.3", + "@jupyterlab/rendermime-interfaces": "^3.11.3", "@lumino/disposable": "^2.1.3", "@lumino/signaling": "^2.1.3" }, diff --git a/packages/cell-toolbar-extension/package.json b/packages/cell-toolbar-extension/package.json index 6dc269c67be2..2d163cbc5e4a 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.3.2", + "version": "4.3.3", "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.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/cell-toolbar": "^4.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/translation": "^4.3.2" + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/cell-toolbar": "^4.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/translation": "^4.3.3" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/cell-toolbar/package.json b/packages/cell-toolbar/package.json index f1b3e8b01a61..9a0eded3d64a 100644 --- a/packages/cell-toolbar/package.json +++ b/packages/cell-toolbar/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/cell-toolbar", - "version": "4.3.2", + "version": "4.3.3", "description": "Contextual cell toolbar adapted from jlab-enhanced-cell-toolbar", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,12 +41,12 @@ }, "dependencies": { "@jupyter/ydoc": "^3.0.0", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/cells": "^4.3.2", - "@jupyterlab/docregistry": "^4.3.2", - "@jupyterlab/notebook": "^4.3.2", - "@jupyterlab/observables": "^5.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/cells": "^4.3.3", + "@jupyterlab/docregistry": "^4.3.3", + "@jupyterlab/notebook": "^4.3.3", + "@jupyterlab/observables": "^5.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/algorithm": "^2.0.2", "@lumino/commands": "^2.3.1", "@lumino/disposable": "^2.1.3", @@ -54,7 +54,7 @@ "@lumino/widgets": "^2.5.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 3c865b10c2a5..d6de37d545d7 100644 --- a/packages/cells/package.json +++ b/packages/cells/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/cells", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Notebook Cells", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -45,21 +45,21 @@ "@codemirror/state": "^6.4.1", "@codemirror/view": "^6.26.3", "@jupyter/ydoc": "^3.0.0", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/attachments": "^4.3.2", - "@jupyterlab/codeeditor": "^4.3.2", - "@jupyterlab/codemirror": "^4.3.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/documentsearch": "^4.3.2", - "@jupyterlab/filebrowser": "^4.3.2", - "@jupyterlab/nbformat": "^4.3.2", - "@jupyterlab/observables": "^5.3.2", - "@jupyterlab/outputarea": "^4.3.2", - "@jupyterlab/rendermime": "^4.3.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/toc": "^6.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/attachments": "^4.3.3", + "@jupyterlab/codeeditor": "^4.3.3", + "@jupyterlab/codemirror": "^4.3.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/documentsearch": "^4.3.3", + "@jupyterlab/filebrowser": "^4.3.3", + "@jupyterlab/nbformat": "^4.3.3", + "@jupyterlab/observables": "^5.3.3", + "@jupyterlab/outputarea": "^4.3.3", + "@jupyterlab/rendermime": "^4.3.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/toc": "^6.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/algorithm": "^2.0.2", "@lumino/coreutils": "^2.2.0", "@lumino/domutils": "^2.0.2", @@ -72,7 +72,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 a638bb743232..6e19c67c1526 100644 --- a/packages/celltags-extension/package.json +++ b/packages/celltags-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/celltags-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "An extension for manipulating tags in cell metadata", "keywords": [ "jupyter", @@ -40,10 +40,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/notebook": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/notebook": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/algorithm": "^2.0.2", "@rjsf/utils": "^5.13.4", "react": "^18.2.0" diff --git a/packages/codeeditor/package.json b/packages/codeeditor/package.json index d937607276ee..9ad59ae7adac 100644 --- a/packages/codeeditor/package.json +++ b/packages/codeeditor/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/codeeditor", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Abstract Code Editor", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -43,13 +43,13 @@ "dependencies": { "@codemirror/state": "^6.4.1", "@jupyter/ydoc": "^3.0.0", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/nbformat": "^4.3.2", - "@jupyterlab/observables": "^5.3.2", - "@jupyterlab/statusbar": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/nbformat": "^4.3.3", + "@jupyterlab/observables": "^5.3.3", + "@jupyterlab/statusbar": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/coreutils": "^2.2.0", "@lumino/disposable": "^2.1.3", "@lumino/dragdrop": "^2.1.5", @@ -59,7 +59,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 e19862f5c00b..9f263bed02a7 100644 --- a/packages/codemirror-extension/package.json +++ b/packages/codemirror-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/codemirror-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - CodeMirror Provider Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -44,13 +44,13 @@ "@codemirror/search": "^6.5.6", "@codemirror/view": "^6.26.3", "@jupyter/ydoc": "^3.0.0", - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/codeeditor": "^4.3.2", - "@jupyterlab/codemirror": "^4.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/statusbar": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/codeeditor": "^4.3.3", + "@jupyterlab/codemirror": "^4.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/statusbar": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/coreutils": "^2.2.0", "@lumino/widgets": "^2.5.0", "@rjsf/utils": "^5.13.4", diff --git a/packages/codemirror/package.json b/packages/codemirror/package.json index 8792258fa2f4..64f4d87f38e9 100644 --- a/packages/codemirror/package.json +++ b/packages/codemirror/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/codemirror", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - CodeMirror Editor Provider", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -58,11 +58,11 @@ "@codemirror/state": "^6.4.1", "@codemirror/view": "^6.26.3", "@jupyter/ydoc": "^3.0.0", - "@jupyterlab/codeeditor": "^4.3.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/documentsearch": "^4.3.2", - "@jupyterlab/nbformat": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", + "@jupyterlab/codeeditor": "^4.3.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/documentsearch": "^4.3.3", + "@jupyterlab/nbformat": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", "@lezer/common": "^1.2.1", "@lezer/generator": "^1.7.0", "@lezer/highlight": "^1.2.0", @@ -73,7 +73,7 @@ "yjs": "^13.5.40" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@lezer/generator": "^1.7.0", "@lezer/lr": "^1.4.0", "@types/jest": "^29.2.0", diff --git a/packages/completer-extension/package.json b/packages/completer-extension/package.json index d778f91179e5..986947cd9264 100644 --- a/packages/completer-extension/package.json +++ b/packages/completer-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/completer-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Completer Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,12 +37,12 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/codeeditor": "^4.3.2", - "@jupyterlab/completer": "^4.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/codeeditor": "^4.3.3", + "@jupyterlab/completer": "^4.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/commands": "^2.3.1", "@lumino/coreutils": "^2.2.0", "@rjsf/utils": "^5.13.4", diff --git a/packages/completer/package.json b/packages/completer/package.json index f3fce98f06cf..a3816545108c 100644 --- a/packages/completer/package.json +++ b/packages/completer/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/completer", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Completer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -48,16 +48,16 @@ "@codemirror/state": "^6.4.1", "@codemirror/view": "^6.26.3", "@jupyter/ydoc": "^3.0.0", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/codeeditor": "^4.3.2", - "@jupyterlab/codemirror": "^4.3.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/rendermime": "^4.3.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/statedb": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/codeeditor": "^4.3.3", + "@jupyterlab/codemirror": "^4.3.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/rendermime": "^4.3.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/statedb": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/algorithm": "^2.0.2", "@lumino/coreutils": "^2.2.0", "@lumino/disposable": "^2.1.3", @@ -67,7 +67,7 @@ "@lumino/widgets": "^2.5.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 2973a8952c57..4293ce663d67 100644 --- a/packages/console-extension/package.json +++ b/packages/console-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/console-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Code Console Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,18 +37,18 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/codeeditor": "^4.3.2", - "@jupyterlab/completer": "^4.3.2", - "@jupyterlab/console": "^4.3.2", - "@jupyterlab/filebrowser": "^4.3.2", - "@jupyterlab/launcher": "^4.3.2", - "@jupyterlab/mainmenu": "^4.3.2", - "@jupyterlab/rendermime": "^4.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/codeeditor": "^4.3.3", + "@jupyterlab/completer": "^4.3.3", + "@jupyterlab/console": "^4.3.3", + "@jupyterlab/filebrowser": "^4.3.3", + "@jupyterlab/launcher": "^4.3.3", + "@jupyterlab/mainmenu": "^4.3.3", + "@jupyterlab/rendermime": "^4.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/algorithm": "^2.0.2", "@lumino/coreutils": "^2.2.0", "@lumino/disposable": "^2.1.3", diff --git a/packages/console/package.json b/packages/console/package.json index 38ac4deb9b3a..4aafc7926fde 100644 --- a/packages/console/package.json +++ b/packages/console/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/console", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Code Console", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -43,16 +43,16 @@ }, "dependencies": { "@jupyter/ydoc": "^3.0.0", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/cells": "^4.3.2", - "@jupyterlab/codeeditor": "^4.3.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/nbformat": "^4.3.2", - "@jupyterlab/observables": "^5.3.2", - "@jupyterlab/rendermime": "^4.3.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/cells": "^4.3.3", + "@jupyterlab/codeeditor": "^4.3.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/nbformat": "^4.3.3", + "@jupyterlab/observables": "^5.3.3", + "@jupyterlab/rendermime": "^4.3.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/coreutils": "^2.2.0", "@lumino/disposable": "^2.1.3", "@lumino/dragdrop": "^2.1.5", @@ -61,8 +61,8 @@ "@lumino/widgets": "^2.5.0" }, "devDependencies": { - "@jupyterlab/codemirror": "^4.3.2", - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/codemirror": "^4.3.3", + "@jupyterlab/testing": "^4.3.3", "@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 d0a4238dbe93..b62011acb0d3 100644 --- a/packages/coreutils/package.json +++ b/packages/coreutils/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/coreutils", - "version": "6.3.2", + "version": "6.3.3", "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 cd05fe2feecc..77b07c366b99 100644 --- a/packages/csvviewer-extension/package.json +++ b/packages/csvviewer-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/csvviewer-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - CSV Widget Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,15 +37,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/csvviewer": "^4.3.2", - "@jupyterlab/docregistry": "^4.3.2", - "@jupyterlab/documentsearch": "^4.3.2", - "@jupyterlab/mainmenu": "^4.3.2", - "@jupyterlab/observables": "^5.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/csvviewer": "^4.3.3", + "@jupyterlab/docregistry": "^4.3.3", + "@jupyterlab/documentsearch": "^4.3.3", + "@jupyterlab/mainmenu": "^4.3.3", + "@jupyterlab/observables": "^5.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", "@lumino/datagrid": "^2.4.1", "@lumino/widgets": "^2.5.0" }, diff --git a/packages/csvviewer/package.json b/packages/csvviewer/package.json index 785f6d8a62b7..92809f52646b 100644 --- a/packages/csvviewer/package.json +++ b/packages/csvviewer/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/csvviewer", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - CSV Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,10 +41,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/docregistry": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/docregistry": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/coreutils": "^2.2.0", "@lumino/datagrid": "^2.4.1", "@lumino/disposable": "^2.1.3", @@ -53,7 +53,7 @@ "@lumino/widgets": "^2.5.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@types/jest": "^29.2.0", "csv-spectrum": "^1.0.0", "jest": "^29.2.0", diff --git a/packages/debugger-extension/package.json b/packages/debugger-extension/package.json index 5d954a66845e..fdbf375e69d9 100644 --- a/packages/debugger-extension/package.json +++ b/packages/debugger-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/debugger-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Debugger Extension", "keywords": [ "jupyter", @@ -43,25 +43,25 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/cells": "^4.3.2", - "@jupyterlab/codeeditor": "^4.3.2", - "@jupyterlab/console": "^4.3.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/debugger": "^4.3.2", - "@jupyterlab/docregistry": "^4.3.2", - "@jupyterlab/fileeditor": "^4.3.2", - "@jupyterlab/logconsole": "^4.3.2", - "@jupyterlab/notebook": "^4.3.2", - "@jupyterlab/rendermime": "^4.3.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/cells": "^4.3.3", + "@jupyterlab/codeeditor": "^4.3.3", + "@jupyterlab/console": "^4.3.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/debugger": "^4.3.3", + "@jupyterlab/docregistry": "^4.3.3", + "@jupyterlab/fileeditor": "^4.3.3", + "@jupyterlab/logconsole": "^4.3.3", + "@jupyterlab/notebook": "^4.3.3", + "@jupyterlab/rendermime": "^4.3.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", "@lumino/commands": "^2.3.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 9cafcaf18b3f..473fb61e1353 100644 --- a/packages/debugger/package.json +++ b/packages/debugger/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/debugger", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Debugger Extension", "keywords": [ "jupyter", @@ -52,21 +52,21 @@ "@codemirror/view": "^6.26.3", "@jupyter/react-components": "^0.16.6", "@jupyter/ydoc": "^3.0.0", - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/cells": "^4.3.2", - "@jupyterlab/codeeditor": "^4.3.2", - "@jupyterlab/codemirror": "^4.3.2", - "@jupyterlab/console": "^4.3.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/docregistry": "^4.3.2", - "@jupyterlab/fileeditor": "^4.3.2", - "@jupyterlab/notebook": "^4.3.2", - "@jupyterlab/observables": "^5.3.2", - "@jupyterlab/rendermime": "^4.3.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/cells": "^4.3.3", + "@jupyterlab/codeeditor": "^4.3.3", + "@jupyterlab/codemirror": "^4.3.3", + "@jupyterlab/console": "^4.3.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/docregistry": "^4.3.3", + "@jupyterlab/fileeditor": "^4.3.3", + "@jupyterlab/notebook": "^4.3.3", + "@jupyterlab/observables": "^5.3.3", + "@jupyterlab/rendermime": "^4.3.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/algorithm": "^2.0.2", "@lumino/commands": "^2.3.1", "@lumino/coreutils": "^2.2.0", @@ -80,7 +80,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@types/jest": "^29.2.0", "jest": "^29.2.0", "jest-canvas-mock": "^2.5.2", diff --git a/packages/docmanager-extension/package.json b/packages/docmanager-extension/package.json index b18406085e63..4ab2090604f0 100644 --- a/packages/docmanager-extension/package.json +++ b/packages/docmanager-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/docmanager-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Document Manager Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,17 +37,17 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/docmanager": "^4.3.2", - "@jupyterlab/docregistry": "^4.3.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/statedb": "^4.3.2", - "@jupyterlab/statusbar": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/docmanager": "^4.3.3", + "@jupyterlab/docregistry": "^4.3.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/statedb": "^4.3.3", + "@jupyterlab/statusbar": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/algorithm": "^2.0.2", "@lumino/commands": "^2.3.1", "@lumino/coreutils": "^2.2.0", diff --git a/packages/docmanager/package.json b/packages/docmanager/package.json index 9c57b3981f6d..875c58dbe6f8 100644 --- a/packages/docmanager/package.json +++ b/packages/docmanager/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/docmanager", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Document Manager", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,14 +41,14 @@ "watch": "npm run test -- --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/docregistry": "^4.3.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/statedb": "^4.3.2", - "@jupyterlab/statusbar": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/docregistry": "^4.3.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/statedb": "^4.3.3", + "@jupyterlab/statusbar": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/algorithm": "^2.0.2", "@lumino/coreutils": "^2.2.0", "@lumino/disposable": "^2.1.3", @@ -60,7 +60,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 23e9c670ed66..d71d81dfe31d 100644 --- a/packages/docregistry/package.json +++ b/packages/docregistry/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/docregistry", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Document Registry", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,15 +42,15 @@ }, "dependencies": { "@jupyter/ydoc": "^3.0.0", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/codeeditor": "^4.3.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/observables": "^5.3.2", - "@jupyterlab/rendermime": "^4.3.2", - "@jupyterlab/rendermime-interfaces": "^3.11.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/codeeditor": "^4.3.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/observables": "^5.3.3", + "@jupyterlab/rendermime": "^4.3.3", + "@jupyterlab/rendermime-interfaces": "^3.11.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/algorithm": "^2.0.2", "@lumino/coreutils": "^2.2.0", "@lumino/disposable": "^2.1.3", @@ -61,7 +61,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 95d1cb9ec5b6..69efcaca4093 100644 --- a/packages/documentsearch-extension/package.json +++ b/packages/documentsearch-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/documentsearch-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Document Search Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -34,11 +34,11 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/documentsearch": "^4.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/documentsearch": "^4.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", "@lumino/commands": "^2.3.1", "@lumino/widgets": "^2.5.0" }, diff --git a/packages/documentsearch/package.json b/packages/documentsearch/package.json index 7bab89e89065..fa9caf3e4291 100644 --- a/packages/documentsearch/package.json +++ b/packages/documentsearch/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/documentsearch", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Document Search", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,9 +38,9 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/commands": "^2.3.1", "@lumino/coreutils": "^2.2.0", "@lumino/disposable": "^2.1.3", @@ -51,7 +51,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 56ecf0d239a0..ee723bef57cc 100644 --- a/packages/extensionmanager-extension/package.json +++ b/packages/extensionmanager-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/extensionmanager-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Extension Manager Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,12 +38,12 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/extensionmanager": "^4.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2" + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/extensionmanager": "^4.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/extensionmanager/package.json b/packages/extensionmanager/package.json index 9f0b499c3496..90a6c172ec22 100644 --- a/packages/extensionmanager/package.json +++ b/packages/extensionmanager/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/extensionmanager", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Extension Manager", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -36,11 +36,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/messaging": "^2.0.2", "@lumino/polling": "^2.1.3", "@lumino/widgets": "^2.5.0", diff --git a/packages/filebrowser-extension/package.json b/packages/filebrowser-extension/package.json index c1346ea7eaef..a8d214630846 100644 --- a/packages/filebrowser-extension/package.json +++ b/packages/filebrowser-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/filebrowser-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Filebrowser Widget Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,18 +37,18 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/docmanager": "^4.3.2", - "@jupyterlab/docregistry": "^4.3.2", - "@jupyterlab/filebrowser": "^4.3.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/statedb": "^4.3.2", - "@jupyterlab/statusbar": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/docmanager": "^4.3.3", + "@jupyterlab/docregistry": "^4.3.3", + "@jupyterlab/filebrowser": "^4.3.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/statedb": "^4.3.3", + "@jupyterlab/statusbar": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/algorithm": "^2.0.2", "@lumino/commands": "^2.3.1", "@lumino/widgets": "^2.5.0" diff --git a/packages/filebrowser/package.json b/packages/filebrowser/package.json index aab5dd3d7da8..9e3b367c2f09 100644 --- a/packages/filebrowser/package.json +++ b/packages/filebrowser/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/filebrowser", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - FileBrowser Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,15 +41,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/docmanager": "^4.3.2", - "@jupyterlab/docregistry": "^4.3.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/statedb": "^4.3.2", - "@jupyterlab/statusbar": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/docmanager": "^4.3.3", + "@jupyterlab/docregistry": "^4.3.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/statedb": "^4.3.3", + "@jupyterlab/statusbar": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/algorithm": "^2.0.2", "@lumino/coreutils": "^2.2.0", "@lumino/disposable": "^2.1.3", @@ -63,7 +63,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 eff06d06b038..4331f5bd9f47 100644 --- a/packages/fileeditor-extension/package.json +++ b/packages/fileeditor-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/fileeditor-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Editor Widget Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -39,28 +39,28 @@ "dependencies": { "@codemirror/commands": "^6.5.0", "@codemirror/search": "^6.5.6", - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/codeeditor": "^4.3.2", - "@jupyterlab/codemirror": "^4.3.2", - "@jupyterlab/completer": "^4.3.2", - "@jupyterlab/console": "^4.3.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/docregistry": "^4.3.2", - "@jupyterlab/documentsearch": "^4.3.2", - "@jupyterlab/filebrowser": "^4.3.2", - "@jupyterlab/fileeditor": "^4.3.2", - "@jupyterlab/launcher": "^4.3.2", - "@jupyterlab/lsp": "^4.3.2", - "@jupyterlab/mainmenu": "^4.3.2", - "@jupyterlab/observables": "^5.3.2", - "@jupyterlab/rendermime-interfaces": "^3.11.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/statusbar": "^4.3.2", - "@jupyterlab/toc": "^6.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/codeeditor": "^4.3.3", + "@jupyterlab/codemirror": "^4.3.3", + "@jupyterlab/completer": "^4.3.3", + "@jupyterlab/console": "^4.3.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/docregistry": "^4.3.3", + "@jupyterlab/documentsearch": "^4.3.3", + "@jupyterlab/filebrowser": "^4.3.3", + "@jupyterlab/fileeditor": "^4.3.3", + "@jupyterlab/launcher": "^4.3.3", + "@jupyterlab/lsp": "^4.3.3", + "@jupyterlab/mainmenu": "^4.3.3", + "@jupyterlab/observables": "^5.3.3", + "@jupyterlab/rendermime-interfaces": "^3.11.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/statusbar": "^4.3.3", + "@jupyterlab/toc": "^6.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/algorithm": "^2.0.2", "@lumino/commands": "^2.3.1", "@lumino/coreutils": "^2.2.0", diff --git a/packages/fileeditor/package.json b/packages/fileeditor/package.json index d0c902f26229..e24583e2447d 100644 --- a/packages/fileeditor/package.json +++ b/packages/fileeditor/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/fileeditor", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Editor Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -40,17 +40,17 @@ }, "dependencies": { "@jupyter/ydoc": "^3.0.0", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/codeeditor": "^4.3.2", - "@jupyterlab/codemirror": "^4.3.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/docregistry": "^4.3.2", - "@jupyterlab/documentsearch": "^4.3.2", - "@jupyterlab/lsp": "^4.3.2", - "@jupyterlab/statusbar": "^4.3.2", - "@jupyterlab/toc": "^6.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/codeeditor": "^4.3.3", + "@jupyterlab/codemirror": "^4.3.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/docregistry": "^4.3.3", + "@jupyterlab/documentsearch": "^4.3.3", + "@jupyterlab/lsp": "^4.3.3", + "@jupyterlab/statusbar": "^4.3.3", + "@jupyterlab/toc": "^6.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/commands": "^2.3.1", "@lumino/coreutils": "^2.2.0", "@lumino/messaging": "^2.0.2", @@ -59,7 +59,7 @@ "regexp-match-indices": "^1.0.2" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 aa34d91d22c5..6d8e0823db06 100644 --- a/packages/help-extension/package.json +++ b/packages/help-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/help-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Help Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,13 +37,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/mainmenu": "^4.3.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/mainmenu": "^4.3.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/coreutils": "^2.2.0", "@lumino/signaling": "^2.1.3", "@lumino/virtualdom": "^2.0.2", diff --git a/packages/htmlviewer-extension/package.json b/packages/htmlviewer-extension/package.json index 6e61b4e24ba8..3ca87a5152c9 100644 --- a/packages/htmlviewer-extension/package.json +++ b/packages/htmlviewer-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/htmlviewer-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab extension to render HTML files", "keywords": [ "jupyter", @@ -35,14 +35,14 @@ "watch": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/docregistry": "^4.3.2", - "@jupyterlab/htmlviewer": "^4.3.2", - "@jupyterlab/observables": "^5.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2" + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/docregistry": "^4.3.3", + "@jupyterlab/htmlviewer": "^4.3.3", + "@jupyterlab/observables": "^5.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/htmlviewer/package.json b/packages/htmlviewer/package.json index 66f4614cce33..4ac237557144 100644 --- a/packages/htmlviewer/package.json +++ b/packages/htmlviewer/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/htmlviewer", - "version": "4.3.2", + "version": "4.3.3", "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.4.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/docregistry": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/docregistry": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/coreutils": "^2.2.0", "@lumino/signaling": "^2.1.3", "@lumino/widgets": "^2.5.0", diff --git a/packages/hub-extension/package.json b/packages/hub-extension/package.json index 2b96ec2d5d2b..4637e15f49ab 100644 --- a/packages/hub-extension/package.json +++ b/packages/hub-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/hub-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab integration for JupyterHub", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -39,11 +39,11 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/translation": "^4.3.2" + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/translation": "^4.3.3" }, "devDependencies": { "@types/jest": "^29.2.0", diff --git a/packages/imageviewer-extension/package.json b/packages/imageviewer-extension/package.json index 9607ca26c225..ae1730164cee 100644 --- a/packages/imageviewer-extension/package.json +++ b/packages/imageviewer-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/imageviewer-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Image Widget Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,11 +37,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/docregistry": "^4.3.2", - "@jupyterlab/imageviewer": "^4.3.2", - "@jupyterlab/translation": "^4.3.2" + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/docregistry": "^4.3.3", + "@jupyterlab/imageviewer": "^4.3.3", + "@jupyterlab/translation": "^4.3.3" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/imageviewer/package.json b/packages/imageviewer/package.json index 31390758ac2b..aaaab881ed6e 100644 --- a/packages/imageviewer/package.json +++ b/packages/imageviewer/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/imageviewer", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Image Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,15 +41,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/docregistry": "^4.3.2", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/docregistry": "^4.3.3", "@lumino/coreutils": "^2.2.0", "@lumino/messaging": "^2.0.2", "@lumino/widgets": "^2.5.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 cd3fbe9ff0c6..4329e34ccebe 100644 --- a/packages/inspector-extension/package.json +++ b/packages/inspector-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/inspector-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Code Inspector Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,14 +37,14 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/console": "^4.3.2", - "@jupyterlab/inspector": "^4.3.2", - "@jupyterlab/launcher": "^4.3.2", - "@jupyterlab/notebook": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/console": "^4.3.3", + "@jupyterlab/inspector": "^4.3.3", + "@jupyterlab/launcher": "^4.3.3", + "@jupyterlab/notebook": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/widgets": "^2.5.0" }, "devDependencies": { diff --git a/packages/inspector/package.json b/packages/inspector/package.json index cb40edde0530..95c7e9b0a4c8 100644 --- a/packages/inspector/package.json +++ b/packages/inspector/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/inspector", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Code Inspector", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,13 +41,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/codeeditor": "^4.3.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/rendermime": "^4.3.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/statedb": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/codeeditor": "^4.3.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/rendermime": "^4.3.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/statedb": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", "@lumino/coreutils": "^2.2.0", "@lumino/disposable": "^2.1.3", "@lumino/polling": "^2.1.3", @@ -55,7 +55,7 @@ "@lumino/widgets": "^2.5.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 64e38f2dfb24..60b8cc669905 100644 --- a/packages/javascript-extension/package.json +++ b/packages/javascript-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/javascript-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Javascript Renderer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -32,8 +32,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/rendermime": "^4.3.2", - "@jupyterlab/rendermime-interfaces": "^3.11.2" + "@jupyterlab/rendermime": "^4.3.3", + "@jupyterlab/rendermime-interfaces": "^3.11.3" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/json-extension/package.json b/packages/json-extension/package.json index 0e8d03606e02..afc42c19bdb8 100644 --- a/packages/json-extension/package.json +++ b/packages/json-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/json-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - JSON Renderer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -32,11 +32,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/codemirror": "^4.3.2", - "@jupyterlab/rendermime-interfaces": "^3.11.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/codemirror": "^4.3.3", + "@jupyterlab/rendermime-interfaces": "^3.11.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lezer/highlight": "^1.2.0", "@lumino/coreutils": "^2.2.0", "@lumino/messaging": "^2.0.2", diff --git a/packages/launcher-extension/package.json b/packages/launcher-extension/package.json index 964eda5e0426..16a2c9ac383f 100644 --- a/packages/launcher-extension/package.json +++ b/packages/launcher-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/launcher-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Launcher Page Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,12 +37,12 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/filebrowser": "^4.3.2", - "@jupyterlab/launcher": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/filebrowser": "^4.3.3", + "@jupyterlab/launcher": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/algorithm": "^2.0.2", "@lumino/coreutils": "^2.2.0", "@lumino/widgets": "^2.5.0" diff --git a/packages/launcher/package.json b/packages/launcher/package.json index c408365202b8..919f513c6c70 100644 --- a/packages/launcher/package.json +++ b/packages/launcher/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/launcher", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Launcher Panel", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -36,9 +36,9 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/algorithm": "^2.0.2", "@lumino/commands": "^2.3.1", "@lumino/coreutils": "^2.2.0", diff --git a/packages/logconsole-extension/package.json b/packages/logconsole-extension/package.json index 2e6dfa6fe856..9a0e6885e1be 100644 --- a/packages/logconsole-extension/package.json +++ b/packages/logconsole-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/logconsole-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Log Console Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -34,15 +34,15 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/logconsole": "^4.3.2", - "@jupyterlab/rendermime": "^4.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/statusbar": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/logconsole": "^4.3.3", + "@jupyterlab/rendermime": "^4.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/statusbar": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/coreutils": "^2.2.0", "@lumino/signaling": "^2.1.3", "@lumino/widgets": "^2.5.0", diff --git a/packages/logconsole/package.json b/packages/logconsole/package.json index dff9c7b3335a..b48587cb4651 100644 --- a/packages/logconsole/package.json +++ b/packages/logconsole/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/logconsole", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Log Console", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,12 +38,12 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/nbformat": "^4.3.2", - "@jupyterlab/outputarea": "^4.3.2", - "@jupyterlab/rendermime": "^4.3.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/translation": "^4.3.2", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/nbformat": "^4.3.3", + "@jupyterlab/outputarea": "^4.3.3", + "@jupyterlab/rendermime": "^4.3.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/translation": "^4.3.3", "@lumino/coreutils": "^2.2.0", "@lumino/disposable": "^2.1.3", "@lumino/messaging": "^2.0.2", @@ -51,7 +51,7 @@ "@lumino/widgets": "^2.5.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 ea4679ac3cab..37f26a6abb74 100644 --- a/packages/lsp-extension/package.json +++ b/packages/lsp-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/lsp-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -36,13 +36,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/lsp": "^4.3.2", - "@jupyterlab/running": "^4.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/lsp": "^4.3.3", + "@jupyterlab/running": "^4.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/coreutils": "^2.2.0", "@lumino/polling": "^2.1.3", "@lumino/signaling": "^2.1.3", diff --git a/packages/lsp/package.json b/packages/lsp/package.json index d497270bb15b..33f177bf7afb 100644 --- a/packages/lsp/package.json +++ b/packages/lsp/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/lsp", - "version": "4.3.2", + "version": "4.3.3", "description": "", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,13 +41,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/codeeditor": "^4.3.2", - "@jupyterlab/codemirror": "^4.3.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/docregistry": "^4.3.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/translation": "^4.3.2", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/codeeditor": "^4.3.3", + "@jupyterlab/codemirror": "^4.3.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/docregistry": "^4.3.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/translation": "^4.3.3", "@lumino/coreutils": "^2.2.0", "@lumino/disposable": "^2.1.3", "@lumino/signaling": "^2.1.3", @@ -58,7 +58,7 @@ "vscode-ws-jsonrpc": "~1.0.2" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 b4e4dd41754c..4367dc77dce7 100644 --- a/packages/mainmenu-extension/package.json +++ b/packages/mainmenu-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mainmenu-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Main Menu Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,16 +37,16 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/docmanager": "^4.3.2", - "@jupyterlab/filebrowser": "^4.3.2", - "@jupyterlab/mainmenu": "^4.3.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/docmanager": "^4.3.3", + "@jupyterlab/filebrowser": "^4.3.3", + "@jupyterlab/mainmenu": "^4.3.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/algorithm": "^2.0.2", "@lumino/coreutils": "^2.2.0", "@lumino/disposable": "^2.1.3", diff --git a/packages/mainmenu/package.json b/packages/mainmenu/package.json index b847ca2bacba..2c55b1e5b6c9 100644 --- a/packages/mainmenu/package.json +++ b/packages/mainmenu/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mainmenu", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Main Menu", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,16 +41,16 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/algorithm": "^2.0.2", "@lumino/commands": "^2.3.1", "@lumino/coreutils": "^2.2.0", "@lumino/widgets": "^2.5.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 98d548421fd9..799b01544c27 100644 --- a/packages/markdownviewer-extension/package.json +++ b/packages/markdownviewer-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/markdownviewer-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Markdown Renderer Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,14 +37,14 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/markdownviewer": "^4.3.2", - "@jupyterlab/rendermime": "^4.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/toc": "^6.3.2", - "@jupyterlab/translation": "^4.3.2" + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/markdownviewer": "^4.3.3", + "@jupyterlab/rendermime": "^4.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/toc": "^6.3.3", + "@jupyterlab/translation": "^4.3.3" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/markdownviewer/package.json b/packages/markdownviewer/package.json index 541cf9952d09..63e1f0700091 100644 --- a/packages/markdownviewer/package.json +++ b/packages/markdownviewer/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/markdownviewer", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Markdown viewer Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -36,12 +36,12 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/docregistry": "^4.3.2", - "@jupyterlab/rendermime": "^4.3.2", - "@jupyterlab/toc": "^6.3.2", - "@jupyterlab/translation": "^4.3.2", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/docregistry": "^4.3.3", + "@jupyterlab/rendermime": "^4.3.3", + "@jupyterlab/toc": "^6.3.3", + "@jupyterlab/translation": "^4.3.3", "@lumino/coreutils": "^2.2.0", "@lumino/messaging": "^2.0.2", "@lumino/signaling": "^2.1.3", diff --git a/packages/markedparser-extension/package.json b/packages/markedparser-extension/package.json index 5cd0958db6e9..016065b06e9b 100644 --- a/packages/markedparser-extension/package.json +++ b/packages/markedparser-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/markedparser-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Markdown parser provider", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -35,11 +35,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/codemirror": "^4.3.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/mermaid": "^4.3.2", - "@jupyterlab/rendermime": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/codemirror": "^4.3.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/mermaid": "^4.3.3", + "@jupyterlab/rendermime": "^4.3.3", "@lumino/coreutils": "^2.2.0", "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 73acf66b3749..b429142bb6fe 100644 --- a/packages/mathjax-extension/package.json +++ b/packages/mathjax-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mathjax-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "A JupyterLab extension providing MathJax Typesetting", "keywords": [ "jupyter", @@ -43,8 +43,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/rendermime": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/rendermime": "^4.3.3", "@lumino/coreutils": "^2.2.0", "mathjax-full": "^3.2.2" }, diff --git a/packages/mermaid-extension/package.json b/packages/mermaid-extension/package.json index b4407e77d8c6..38d8604ee60b 100644 --- a/packages/mermaid-extension/package.json +++ b/packages/mermaid-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mermaid-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Mermaid Viewer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -36,11 +36,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/mermaid": "^4.3.2", - "@jupyterlab/rendermime-interfaces": "^3.11.2", - "@jupyterlab/translation": "^4.3.2" + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/mermaid": "^4.3.3", + "@jupyterlab/rendermime-interfaces": "^3.11.3", + "@jupyterlab/translation": "^4.3.3" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/mermaid/package.json b/packages/mermaid/package.json index 3a2f913006bf..8864b71f667d 100644 --- a/packages/mermaid/package.json +++ b/packages/mermaid/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mermaid", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Mermaid Renderer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,9 +41,9 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/rendermime-interfaces": "^3.11.2", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/rendermime-interfaces": "^3.11.3", "@lumino/coreutils": "^2.2.0", "@lumino/widgets": "^2.5.0", "mermaid": "^10.7.0" diff --git a/packages/metadataform-extension/package.json b/packages/metadataform-extension/package.json index 91e268bac645..6de8aa18cc70 100644 --- a/packages/metadataform-extension/package.json +++ b/packages/metadataform-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/metadataform-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "A helper to build form for metadata", "keywords": [ "jupyter", @@ -39,12 +39,12 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/metadataform": "^4.3.2", - "@jupyterlab/notebook": "^4.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/metadataform": "^4.3.3", + "@jupyterlab/notebook": "^4.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/coreutils": "^2.2.0" }, "devDependencies": { diff --git a/packages/metadataform/package.json b/packages/metadataform/package.json index 16a408c63175..84acf0361a4a 100644 --- a/packages/metadataform/package.json +++ b/packages/metadataform/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/metadataform", - "version": "4.3.2", + "version": "4.3.3", "description": "A helper to build form for metadata", "keywords": [ "jupyter", @@ -45,12 +45,12 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/nbformat": "^4.3.2", - "@jupyterlab/notebook": "^4.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/nbformat": "^4.3.3", + "@jupyterlab/notebook": "^4.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/coreutils": "^2.2.0", "@lumino/messaging": "^2.0.2", "@lumino/widgets": "^2.5.0", @@ -60,7 +60,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 1f8daaf93024..aa1bd0b55805 100644 --- a/packages/metapackage/package.json +++ b/packages/metapackage/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/metapackage", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Meta Package. All of the packages used by the core JupyterLab application", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -36,106 +36,106 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/application-extension": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/apputils-extension": "^4.3.2", - "@jupyterlab/attachments": "^4.3.2", - "@jupyterlab/cell-toolbar": "^4.3.2", - "@jupyterlab/cell-toolbar-extension": "^4.3.2", - "@jupyterlab/cells": "^4.3.2", - "@jupyterlab/celltags-extension": "^4.3.2", - "@jupyterlab/codeeditor": "^4.3.2", - "@jupyterlab/codemirror": "^4.3.2", - "@jupyterlab/codemirror-extension": "^4.3.2", - "@jupyterlab/completer": "^4.3.2", - "@jupyterlab/completer-extension": "^4.3.2", - "@jupyterlab/console": "^4.3.2", - "@jupyterlab/console-extension": "^4.3.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/csvviewer": "^4.3.2", - "@jupyterlab/csvviewer-extension": "^4.3.2", - "@jupyterlab/debugger": "^4.3.2", - "@jupyterlab/debugger-extension": "^4.3.2", - "@jupyterlab/docmanager": "^4.3.2", - "@jupyterlab/docmanager-extension": "^4.3.2", - "@jupyterlab/docregistry": "^4.3.2", - "@jupyterlab/documentsearch": "^4.3.2", - "@jupyterlab/documentsearch-extension": "^4.3.2", - "@jupyterlab/extensionmanager": "^4.3.2", - "@jupyterlab/extensionmanager-extension": "^4.3.2", - "@jupyterlab/filebrowser": "^4.3.2", - "@jupyterlab/filebrowser-extension": "^4.3.2", - "@jupyterlab/fileeditor": "^4.3.2", - "@jupyterlab/fileeditor-extension": "^4.3.2", - "@jupyterlab/help-extension": "^4.3.2", - "@jupyterlab/htmlviewer": "^4.3.2", - "@jupyterlab/htmlviewer-extension": "^4.3.2", - "@jupyterlab/hub-extension": "^4.3.2", - "@jupyterlab/imageviewer": "^4.3.2", - "@jupyterlab/imageviewer-extension": "^4.3.2", - "@jupyterlab/inspector": "^4.3.2", - "@jupyterlab/inspector-extension": "^4.3.2", - "@jupyterlab/javascript-extension": "^4.3.2", - "@jupyterlab/json-extension": "^4.3.2", - "@jupyterlab/launcher": "^4.3.2", - "@jupyterlab/launcher-extension": "^4.3.2", - "@jupyterlab/logconsole": "^4.3.2", - "@jupyterlab/logconsole-extension": "^4.3.2", - "@jupyterlab/lsp": "^4.3.2", - "@jupyterlab/lsp-extension": "^4.3.2", - "@jupyterlab/mainmenu": "^4.3.2", - "@jupyterlab/mainmenu-extension": "^4.3.2", - "@jupyterlab/markdownviewer": "^4.3.2", - "@jupyterlab/markdownviewer-extension": "^4.3.2", - "@jupyterlab/markedparser-extension": "^4.3.2", - "@jupyterlab/mathjax-extension": "^4.3.2", - "@jupyterlab/mermaid": "^4.3.2", - "@jupyterlab/mermaid-extension": "^4.3.2", - "@jupyterlab/metadataform": "^4.3.2", - "@jupyterlab/metadataform-extension": "^4.3.2", - "@jupyterlab/nbconvert-css": "^4.3.2", - "@jupyterlab/nbformat": "^4.3.2", - "@jupyterlab/notebook": "^4.3.2", - "@jupyterlab/notebook-extension": "^4.3.2", - "@jupyterlab/observables": "^5.3.2", - "@jupyterlab/outputarea": "^4.3.2", - "@jupyterlab/pdf-extension": "^4.3.2", - "@jupyterlab/pluginmanager": "^4.3.2", - "@jupyterlab/pluginmanager-extension": "^4.3.2", - "@jupyterlab/property-inspector": "^4.3.2", - "@jupyterlab/rendermime": "^4.3.2", - "@jupyterlab/rendermime-extension": "^4.3.2", - "@jupyterlab/rendermime-interfaces": "^3.11.2", - "@jupyterlab/running": "^4.3.2", - "@jupyterlab/running-extension": "^4.3.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/settingeditor": "^4.3.2", - "@jupyterlab/settingeditor-extension": "^4.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/shortcuts-extension": "^5.1.2", - "@jupyterlab/statedb": "^4.3.2", - "@jupyterlab/statusbar": "^4.3.2", - "@jupyterlab/statusbar-extension": "^4.3.2", - "@jupyterlab/terminal": "^4.3.2", - "@jupyterlab/terminal-extension": "^4.3.2", - "@jupyterlab/theme-dark-extension": "^4.3.2", - "@jupyterlab/theme-dark-high-contrast-extension": "^4.3.2", - "@jupyterlab/theme-light-extension": "^4.3.2", - "@jupyterlab/toc": "^6.3.2", - "@jupyterlab/toc-extension": "^6.3.2", - "@jupyterlab/tooltip": "^4.3.2", - "@jupyterlab/tooltip-extension": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/translation-extension": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", - "@jupyterlab/ui-components-extension": "^4.3.2", - "@jupyterlab/vega5-extension": "^4.3.2", - "@jupyterlab/workspaces": "^4.3.2", - "@jupyterlab/workspaces-extension": "^4.3.2" + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/application-extension": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/apputils-extension": "^4.3.3", + "@jupyterlab/attachments": "^4.3.3", + "@jupyterlab/cell-toolbar": "^4.3.3", + "@jupyterlab/cell-toolbar-extension": "^4.3.3", + "@jupyterlab/cells": "^4.3.3", + "@jupyterlab/celltags-extension": "^4.3.3", + "@jupyterlab/codeeditor": "^4.3.3", + "@jupyterlab/codemirror": "^4.3.3", + "@jupyterlab/codemirror-extension": "^4.3.3", + "@jupyterlab/completer": "^4.3.3", + "@jupyterlab/completer-extension": "^4.3.3", + "@jupyterlab/console": "^4.3.3", + "@jupyterlab/console-extension": "^4.3.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/csvviewer": "^4.3.3", + "@jupyterlab/csvviewer-extension": "^4.3.3", + "@jupyterlab/debugger": "^4.3.3", + "@jupyterlab/debugger-extension": "^4.3.3", + "@jupyterlab/docmanager": "^4.3.3", + "@jupyterlab/docmanager-extension": "^4.3.3", + "@jupyterlab/docregistry": "^4.3.3", + "@jupyterlab/documentsearch": "^4.3.3", + "@jupyterlab/documentsearch-extension": "^4.3.3", + "@jupyterlab/extensionmanager": "^4.3.3", + "@jupyterlab/extensionmanager-extension": "^4.3.3", + "@jupyterlab/filebrowser": "^4.3.3", + "@jupyterlab/filebrowser-extension": "^4.3.3", + "@jupyterlab/fileeditor": "^4.3.3", + "@jupyterlab/fileeditor-extension": "^4.3.3", + "@jupyterlab/help-extension": "^4.3.3", + "@jupyterlab/htmlviewer": "^4.3.3", + "@jupyterlab/htmlviewer-extension": "^4.3.3", + "@jupyterlab/hub-extension": "^4.3.3", + "@jupyterlab/imageviewer": "^4.3.3", + "@jupyterlab/imageviewer-extension": "^4.3.3", + "@jupyterlab/inspector": "^4.3.3", + "@jupyterlab/inspector-extension": "^4.3.3", + "@jupyterlab/javascript-extension": "^4.3.3", + "@jupyterlab/json-extension": "^4.3.3", + "@jupyterlab/launcher": "^4.3.3", + "@jupyterlab/launcher-extension": "^4.3.3", + "@jupyterlab/logconsole": "^4.3.3", + "@jupyterlab/logconsole-extension": "^4.3.3", + "@jupyterlab/lsp": "^4.3.3", + "@jupyterlab/lsp-extension": "^4.3.3", + "@jupyterlab/mainmenu": "^4.3.3", + "@jupyterlab/mainmenu-extension": "^4.3.3", + "@jupyterlab/markdownviewer": "^4.3.3", + "@jupyterlab/markdownviewer-extension": "^4.3.3", + "@jupyterlab/markedparser-extension": "^4.3.3", + "@jupyterlab/mathjax-extension": "^4.3.3", + "@jupyterlab/mermaid": "^4.3.3", + "@jupyterlab/mermaid-extension": "^4.3.3", + "@jupyterlab/metadataform": "^4.3.3", + "@jupyterlab/metadataform-extension": "^4.3.3", + "@jupyterlab/nbconvert-css": "^4.3.3", + "@jupyterlab/nbformat": "^4.3.3", + "@jupyterlab/notebook": "^4.3.3", + "@jupyterlab/notebook-extension": "^4.3.3", + "@jupyterlab/observables": "^5.3.3", + "@jupyterlab/outputarea": "^4.3.3", + "@jupyterlab/pdf-extension": "^4.3.3", + "@jupyterlab/pluginmanager": "^4.3.3", + "@jupyterlab/pluginmanager-extension": "^4.3.3", + "@jupyterlab/property-inspector": "^4.3.3", + "@jupyterlab/rendermime": "^4.3.3", + "@jupyterlab/rendermime-extension": "^4.3.3", + "@jupyterlab/rendermime-interfaces": "^3.11.3", + "@jupyterlab/running": "^4.3.3", + "@jupyterlab/running-extension": "^4.3.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/settingeditor": "^4.3.3", + "@jupyterlab/settingeditor-extension": "^4.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/shortcuts-extension": "^5.1.3", + "@jupyterlab/statedb": "^4.3.3", + "@jupyterlab/statusbar": "^4.3.3", + "@jupyterlab/statusbar-extension": "^4.3.3", + "@jupyterlab/terminal": "^4.3.3", + "@jupyterlab/terminal-extension": "^4.3.3", + "@jupyterlab/theme-dark-extension": "^4.3.3", + "@jupyterlab/theme-dark-high-contrast-extension": "^4.3.3", + "@jupyterlab/theme-light-extension": "^4.3.3", + "@jupyterlab/toc": "^6.3.3", + "@jupyterlab/toc-extension": "^6.3.3", + "@jupyterlab/tooltip": "^4.3.3", + "@jupyterlab/tooltip-extension": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/translation-extension": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", + "@jupyterlab/ui-components-extension": "^4.3.3", + "@jupyterlab/vega5-extension": "^4.3.3", + "@jupyterlab/workspaces": "^4.3.3", + "@jupyterlab/workspaces-extension": "^4.3.3" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 fd3e3a592304..90fb4477907b 100644 --- a/packages/nbconvert-css/package.json +++ b/packages/nbconvert-css/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/nbconvert-css", - "version": "4.3.2", + "version": "4.3.3", "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.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/cells": "^4.3.2", - "@jupyterlab/codemirror": "^4.3.2", - "@jupyterlab/notebook": "^4.3.2", - "@jupyterlab/outputarea": "^4.3.2", - "@jupyterlab/rendermime": "^4.3.2" + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/cells": "^4.3.3", + "@jupyterlab/codemirror": "^4.3.3", + "@jupyterlab/notebook": "^4.3.3", + "@jupyterlab/outputarea": "^4.3.3", + "@jupyterlab/rendermime": "^4.3.3" }, "devDependencies": { "css-loader": "^6.7.1", diff --git a/packages/nbformat/package.json b/packages/nbformat/package.json index 328b33e427f5..1d935b05763a 100644 --- a/packages/nbformat/package.json +++ b/packages/nbformat/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/nbformat", - "version": "4.3.2", + "version": "4.3.3", "description": "Notebook format interfaces", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -40,7 +40,7 @@ "@lumino/coreutils": "^2.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 a5143c3e5393..89d8407349d3 100644 --- a/packages/notebook-extension/package.json +++ b/packages/notebook-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/notebook-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Notebook Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,35 +37,35 @@ }, "dependencies": { "@jupyter/ydoc": "^3.0.0", - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/cells": "^4.3.2", - "@jupyterlab/codeeditor": "^4.3.2", - "@jupyterlab/codemirror": "^4.3.2", - "@jupyterlab/completer": "^4.3.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/docmanager": "^4.3.2", - "@jupyterlab/docmanager-extension": "^4.3.2", - "@jupyterlab/docregistry": "^4.3.2", - "@jupyterlab/documentsearch": "^4.3.2", - "@jupyterlab/filebrowser": "^4.3.2", - "@jupyterlab/launcher": "^4.3.2", - "@jupyterlab/logconsole": "^4.3.2", - "@jupyterlab/lsp": "^4.3.2", - "@jupyterlab/mainmenu": "^4.3.2", - "@jupyterlab/metadataform": "^4.3.2", - "@jupyterlab/nbformat": "^4.3.2", - "@jupyterlab/notebook": "^4.3.2", - "@jupyterlab/observables": "^5.3.2", - "@jupyterlab/property-inspector": "^4.3.2", - "@jupyterlab/rendermime": "^4.3.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/statedb": "^4.3.2", - "@jupyterlab/statusbar": "^4.3.2", - "@jupyterlab/toc": "^6.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/cells": "^4.3.3", + "@jupyterlab/codeeditor": "^4.3.3", + "@jupyterlab/codemirror": "^4.3.3", + "@jupyterlab/completer": "^4.3.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/docmanager": "^4.3.3", + "@jupyterlab/docmanager-extension": "^4.3.3", + "@jupyterlab/docregistry": "^4.3.3", + "@jupyterlab/documentsearch": "^4.3.3", + "@jupyterlab/filebrowser": "^4.3.3", + "@jupyterlab/launcher": "^4.3.3", + "@jupyterlab/logconsole": "^4.3.3", + "@jupyterlab/lsp": "^4.3.3", + "@jupyterlab/mainmenu": "^4.3.3", + "@jupyterlab/metadataform": "^4.3.3", + "@jupyterlab/nbformat": "^4.3.3", + "@jupyterlab/notebook": "^4.3.3", + "@jupyterlab/observables": "^5.3.3", + "@jupyterlab/property-inspector": "^4.3.3", + "@jupyterlab/rendermime": "^4.3.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/statedb": "^4.3.3", + "@jupyterlab/statusbar": "^4.3.3", + "@jupyterlab/toc": "^6.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/algorithm": "^2.0.2", "@lumino/commands": "^2.3.1", "@lumino/coreutils": "^2.2.0", diff --git a/packages/notebook/package.json b/packages/notebook/package.json index 8504d82979a5..3b6ef5526d5e 100644 --- a/packages/notebook/package.json +++ b/packages/notebook/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/notebook", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Notebook", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,23 +41,23 @@ }, "dependencies": { "@jupyter/ydoc": "^3.0.0", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/cells": "^4.3.2", - "@jupyterlab/codeeditor": "^4.3.2", - "@jupyterlab/codemirror": "^4.3.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/docregistry": "^4.3.2", - "@jupyterlab/documentsearch": "^4.3.2", - "@jupyterlab/lsp": "^4.3.2", - "@jupyterlab/nbformat": "^4.3.2", - "@jupyterlab/observables": "^5.3.2", - "@jupyterlab/rendermime": "^4.3.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/statusbar": "^4.3.2", - "@jupyterlab/toc": "^6.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/cells": "^4.3.3", + "@jupyterlab/codeeditor": "^4.3.3", + "@jupyterlab/codemirror": "^4.3.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/docregistry": "^4.3.3", + "@jupyterlab/documentsearch": "^4.3.3", + "@jupyterlab/lsp": "^4.3.3", + "@jupyterlab/nbformat": "^4.3.3", + "@jupyterlab/observables": "^5.3.3", + "@jupyterlab/rendermime": "^4.3.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/statusbar": "^4.3.3", + "@jupyterlab/toc": "^6.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/algorithm": "^2.0.2", "@lumino/coreutils": "^2.2.0", "@lumino/disposable": "^2.1.3", @@ -72,7 +72,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 71edfdf85b9a..0db0699c2451 100644 --- a/packages/observables/package.json +++ b/packages/observables/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/observables", - "version": "5.3.2", + "version": "5.3.3", "description": "Data structures which may be observed for changes.", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -43,7 +43,7 @@ "@lumino/signaling": "^2.1.3" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 78531bc9e2d3..1b4cc381e407 100644 --- a/packages/outputarea/package.json +++ b/packages/outputarea/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/outputarea", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Notebook Output Area", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,13 +41,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/nbformat": "^4.3.2", - "@jupyterlab/observables": "^5.3.2", - "@jupyterlab/rendermime": "^4.3.2", - "@jupyterlab/rendermime-interfaces": "^3.11.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/translation": "^4.3.2", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/nbformat": "^4.3.3", + "@jupyterlab/observables": "^5.3.3", + "@jupyterlab/rendermime": "^4.3.3", + "@jupyterlab/rendermime-interfaces": "^3.11.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/translation": "^4.3.3", "@lumino/algorithm": "^2.0.2", "@lumino/coreutils": "^2.2.0", "@lumino/disposable": "^2.1.3", @@ -57,7 +57,7 @@ "@lumino/widgets": "^2.5.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 7d03603ba1b3..a13ad2d0de24 100644 --- a/packages/pdf-extension/package.json +++ b/packages/pdf-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/pdf-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - PDF Viewer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -36,7 +36,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/rendermime-interfaces": "^3.11.2", + "@jupyterlab/rendermime-interfaces": "^3.11.3", "@lumino/coreutils": "^2.2.0", "@lumino/disposable": "^2.1.3", "@lumino/widgets": "^2.5.0" diff --git a/packages/pluginmanager-extension/package.json b/packages/pluginmanager-extension/package.json index 4bda7b7bd647..d4e8296dd224 100644 --- a/packages/pluginmanager-extension/package.json +++ b/packages/pluginmanager-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/pluginmanager-extension", - "version": "4.3.2", + "version": "4.3.3", "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.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/pluginmanager": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/pluginmanager": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/coreutils": "^2.2.0" }, "devDependencies": { diff --git a/packages/pluginmanager/package.json b/packages/pluginmanager/package.json index b4c67cd5e8dd..93e5653bef1f 100644 --- a/packages/pluginmanager/package.json +++ b/packages/pluginmanager/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/pluginmanager", - "version": "4.3.2", + "version": "4.3.3", "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.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/coreutils": "^2.2.0", "@lumino/signaling": "^2.1.3", "@lumino/widgets": "^2.5.0", "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 288a7c0889cb..949471c6a878 100644 --- a/packages/property-inspector/package.json +++ b/packages/property-inspector/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/property-inspector", - "version": "4.3.2", + "version": "4.3.3", "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.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/coreutils": "^2.2.0", "@lumino/disposable": "^2.1.3", "@lumino/signaling": "^2.1.3", diff --git a/packages/rendermime-extension/package.json b/packages/rendermime-extension/package.json index 8bac0b748162..d86b793d4845 100644 --- a/packages/rendermime-extension/package.json +++ b/packages/rendermime-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/rendermime-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "A rendermime extension for JupyterLab", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -33,11 +33,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/docmanager": "^4.3.2", - "@jupyterlab/rendermime": "^4.3.2", - "@jupyterlab/translation": "^4.3.2" + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/docmanager": "^4.3.3", + "@jupyterlab/rendermime": "^4.3.3", + "@jupyterlab/translation": "^4.3.3" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/rendermime-interfaces/package.json b/packages/rendermime-interfaces/package.json index 4881d27226eb..d79af1be40a4 100644 --- a/packages/rendermime-interfaces/package.json +++ b/packages/rendermime-interfaces/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/rendermime-interfaces", - "version": "3.11.2", + "version": "3.11.3", "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 792f013dcc9c..f6d1a0323eae 100644 --- a/packages/rendermime/package.json +++ b/packages/rendermime/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/rendermime", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - RenderMime", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,13 +41,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/nbformat": "^4.3.2", - "@jupyterlab/observables": "^5.3.2", - "@jupyterlab/rendermime-interfaces": "^3.11.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/translation": "^4.3.2", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/nbformat": "^4.3.3", + "@jupyterlab/observables": "^5.3.3", + "@jupyterlab/rendermime-interfaces": "^3.11.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/translation": "^4.3.3", "@lumino/coreutils": "^2.2.0", "@lumino/messaging": "^2.0.2", "@lumino/signaling": "^2.1.3", @@ -55,7 +55,7 @@ "lodash.escape": "^4.0.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 15b456763cca..6c1088cc27a7 100644 --- a/packages/running-extension/package.json +++ b/packages/running-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/running-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Running Sessions Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,17 +37,17 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/docmanager": "^4.3.2", - "@jupyterlab/docregistry": "^4.3.2", - "@jupyterlab/rendermime-interfaces": "^3.11.2", - "@jupyterlab/running": "^4.3.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/statedb": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/docmanager": "^4.3.3", + "@jupyterlab/docregistry": "^4.3.3", + "@jupyterlab/rendermime-interfaces": "^3.11.3", + "@jupyterlab/running": "^4.3.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/statedb": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/commands": "^2.3.1", "@lumino/polling": "^2.1.3", "@lumino/signaling": "^2.1.3", diff --git a/packages/running/package.json b/packages/running/package.json index 24c8f8ee107b..92c501d9a38e 100644 --- a/packages/running/package.json +++ b/packages/running/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/running", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Running Sessions Panel", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,10 +37,10 @@ }, "dependencies": { "@jupyter/react-components": "^0.16.6", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/statedb": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/statedb": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/coreutils": "^2.2.0", "@lumino/disposable": "^2.1.3", "@lumino/domutils": "^2.0.2", diff --git a/packages/services/examples/browser/package.json b/packages/services/examples/browser/package.json index 3597db6da3c4..0ee8cd7119fe 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.3.2", + "version": "4.3.3", "private": true, "files": [ "lib/*.{d.ts,js,js.map}" @@ -10,8 +10,8 @@ "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo" }, "dependencies": { - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/services": "^7.3.2", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/services": "^7.3.3", "@lumino/coreutils": "^2.2.0" }, "devDependencies": { diff --git a/packages/services/examples/node/package.json b/packages/services/examples/node/package.json index d70650cfb07d..b3137fb75ff9 100644 --- a/packages/services/examples/node/package.json +++ b/packages/services/examples/node/package.json @@ -1,13 +1,13 @@ { "name": "node-example", - "version": "4.3.2", + "version": "4.3.3", "private": true, "scripts": { "clean": "rimraf node_modules", "update": "rimraf node_modules/@jupyterlab/services && npm install" }, "dependencies": { - "@jupyterlab/services": "^7.3.2", + "@jupyterlab/services": "^7.3.3", "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 a37a7760c50b..e1613eda7cdb 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.3.2", + "version": "4.3.3", "private": true, "sideEffects": [ "style/*" @@ -16,10 +16,10 @@ "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo" }, "dependencies": { - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/outputarea": "^4.3.2", - "@jupyterlab/rendermime": "^4.3.2", - "@jupyterlab/services": "^7.3.2" + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/outputarea": "^4.3.3", + "@jupyterlab/rendermime": "^4.3.3", + "@jupyterlab/services": "^7.3.3" }, "devDependencies": { "css-loader": "^6.7.1", diff --git a/packages/services/package.json b/packages/services/package.json index 81023f8a7814..0bed7c5fe70b 100644 --- a/packages/services/package.json +++ b/packages/services/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/services", - "version": "7.3.2", + "version": "7.3.3", "description": "Client APIs for the Jupyter services REST APIs", "keywords": [ "jupyter", @@ -46,10 +46,10 @@ }, "dependencies": { "@jupyter/ydoc": "^3.0.0", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/nbformat": "^4.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/statedb": "^4.3.2", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/nbformat": "^4.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/statedb": "^4.3.3", "@lumino/coreutils": "^2.2.0", "@lumino/disposable": "^2.1.3", "@lumino/polling": "^2.1.3", @@ -58,7 +58,7 @@ "ws": "^8.11.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 89ae64afb89c..8d590ac1100e 100644 --- a/packages/settingeditor-extension/package.json +++ b/packages/settingeditor-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/settingeditor-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Setting Editor Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,16 +37,16 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/codeeditor": "^4.3.2", - "@jupyterlab/pluginmanager": "^4.3.2", - "@jupyterlab/rendermime": "^4.3.2", - "@jupyterlab/settingeditor": "^4.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/statedb": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/codeeditor": "^4.3.3", + "@jupyterlab/pluginmanager": "^4.3.3", + "@jupyterlab/rendermime": "^4.3.3", + "@jupyterlab/settingeditor": "^4.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/statedb": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/disposable": "^2.1.3" }, "devDependencies": { diff --git a/packages/settingeditor/package.json b/packages/settingeditor/package.json index beed8c62c1c5..67133c617fe2 100644 --- a/packages/settingeditor/package.json +++ b/packages/settingeditor/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/settingeditor", - "version": "4.3.2", + "version": "4.3.3", "description": "The JupyterLab default setting editor interface", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,15 +41,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/codeeditor": "^4.3.2", - "@jupyterlab/inspector": "^4.3.2", - "@jupyterlab/rendermime": "^4.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/statedb": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/codeeditor": "^4.3.3", + "@jupyterlab/inspector": "^4.3.3", + "@jupyterlab/rendermime": "^4.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/statedb": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/algorithm": "^2.0.2", "@lumino/commands": "^2.3.1", "@lumino/coreutils": "^2.2.0", @@ -65,7 +65,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 a567cbd74a44..50de0d9c0f5f 100644 --- a/packages/settingregistry/package.json +++ b/packages/settingregistry/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/settingregistry", - "version": "4.3.2", + "version": "4.3.3", "description": "Settings registry for Jupyterlab", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -36,8 +36,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/nbformat": "^4.3.2", - "@jupyterlab/statedb": "^4.3.2", + "@jupyterlab/nbformat": "^4.3.3", + "@jupyterlab/statedb": "^4.3.3", "@lumino/commands": "^2.3.1", "@lumino/coreutils": "^2.2.0", "@lumino/disposable": "^2.1.3", @@ -47,7 +47,7 @@ "json5": "^2.2.3" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 c880dfb3a0b5..2f13e9672993 100644 --- a/packages/shortcuts-extension/package.json +++ b/packages/shortcuts-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/shortcuts-extension", - "version": "5.1.2", + "version": "5.1.3", "description": "JupyterLab - Shortcuts Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -40,10 +40,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/algorithm": "^2.0.2", "@lumino/commands": "^2.3.1", "@lumino/coreutils": "^2.2.0", @@ -54,7 +54,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 917d4aad73f5..a85821275b6c 100644 --- a/packages/statedb/package.json +++ b/packages/statedb/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/statedb", - "version": "4.3.2", + "version": "4.3.3", "description": "Package for managing state in Jupyterlab", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,7 +42,7 @@ "@lumino/signaling": "^2.1.3" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 585875801ba1..8b5f4f2f196d 100644 --- a/packages/statusbar-extension/package.json +++ b/packages/statusbar-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/statusbar-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Statusbar Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -36,11 +36,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/statusbar": "^4.3.2", - "@jupyterlab/translation": "^4.3.2" + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/statusbar": "^4.3.3", + "@jupyterlab/translation": "^4.3.3" }, "devDependencies": { "@types/react": "^18.0.26", diff --git a/packages/statusbar/package.json b/packages/statusbar/package.json index fd8d5a6f7264..097b015fac3c 100644 --- a/packages/statusbar/package.json +++ b/packages/statusbar/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/statusbar", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab statusbar package.", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -36,7 +36,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/algorithm": "^2.0.2", "@lumino/coreutils": "^2.2.0", "@lumino/disposable": "^2.1.3", @@ -46,7 +46,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 ab2f78a2362a..0423d301ce8d 100644 --- a/packages/terminal-extension/package.json +++ b/packages/terminal-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/terminal-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Terminal Emulator Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,16 +37,16 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/launcher": "^4.3.2", - "@jupyterlab/mainmenu": "^4.3.2", - "@jupyterlab/running": "^4.3.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/terminal": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/launcher": "^4.3.3", + "@jupyterlab/mainmenu": "^4.3.3", + "@jupyterlab/running": "^4.3.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/terminal": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/widgets": "^2.5.0" }, "devDependencies": { diff --git a/packages/terminal/package.json b/packages/terminal/package.json index 3967faad3885..8f2a964d459f 100644 --- a/packages/terminal/package.json +++ b/packages/terminal/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/terminal", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Terminal Emulator Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,9 +41,9 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/translation": "^4.3.2", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/translation": "^4.3.3", "@lumino/coreutils": "^2.2.0", "@lumino/domutils": "^2.0.2", "@lumino/messaging": "^2.0.2", @@ -55,7 +55,7 @@ "@xterm/xterm": "~5.5.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@types/jest": "^29.2.0", "jest": "^29.2.0", "jest-canvas-mock": "^2.5.2", diff --git a/packages/testing/package.json b/packages/testing/package.json index 739129a1789e..4579a1b4a40d 100644 --- a/packages/testing/package.json +++ b/packages/testing/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/testing", - "version": "4.3.2", + "version": "4.3.3", "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.3.2", + "@jupyterlab/coreutils": "^6.3.3", "@lumino/coreutils": "^2.2.0", "@lumino/signaling": "^2.1.3", "deepmerge": "^4.2.2", diff --git a/packages/theme-dark-extension/package.json b/packages/theme-dark-extension/package.json index 291a2a6f7f16..339b4031901a 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.3.2", + "version": "4.3.3", "description": "JupyterLab - Default Dark Theme", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -32,9 +32,9 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/translation": "^4.3.2" + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/translation": "^4.3.3" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/theme-dark-high-contrast-extension/package.json b/packages/theme-dark-high-contrast-extension/package.json index 1f29a3b1c9d0..30e25aeb9a07 100644 --- a/packages/theme-dark-high-contrast-extension/package.json +++ b/packages/theme-dark-high-contrast-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/theme-dark-high-contrast-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Dark High Contrast Theme", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -32,9 +32,9 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/translation": "^4.3.2" + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/translation": "^4.3.3" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/theme-light-extension/package.json b/packages/theme-light-extension/package.json index ebeaf2942dda..7270f45985b2 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.3.2", + "version": "4.3.3", "description": "JupyterLab - Default Light Theme", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -32,9 +32,9 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/translation": "^4.3.2" + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/translation": "^4.3.3" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/toc-extension/package.json b/packages/toc-extension/package.json index 26f37542242d..7a25a160d69a 100644 --- a/packages/toc-extension/package.json +++ b/packages/toc-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/toc-extension", - "version": "6.3.2", + "version": "6.3.3", "description": "JupyterLab - Table of Contents widget extension", "keywords": [ "jupyter", @@ -40,11 +40,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/toc": "^6.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2" + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/toc": "^6.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/toc/package.json b/packages/toc/package.json index 271cee61bc99..addadd52b61b 100644 --- a/packages/toc/package.json +++ b/packages/toc/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/toc", - "version": "6.3.2", + "version": "6.3.3", "description": "JupyterLab - Table of Contents widget", "keywords": [ "jupyterlab" @@ -41,14 +41,14 @@ }, "dependencies": { "@jupyter/react-components": "^0.16.6", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/docregistry": "^4.3.2", - "@jupyterlab/observables": "^5.3.2", - "@jupyterlab/rendermime": "^4.3.2", - "@jupyterlab/rendermime-interfaces": "^3.11.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/docregistry": "^4.3.3", + "@jupyterlab/observables": "^5.3.3", + "@jupyterlab/rendermime": "^4.3.3", + "@jupyterlab/rendermime-interfaces": "^3.11.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/coreutils": "^2.2.0", "@lumino/disposable": "^2.1.3", "@lumino/messaging": "^2.0.2", @@ -57,7 +57,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 535ca74b198d..cc5f9e58cc8e 100644 --- a/packages/tooltip-extension/package.json +++ b/packages/tooltip-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/tooltip-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Tooltip Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,16 +37,16 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/codeeditor": "^4.3.2", - "@jupyterlab/console": "^4.3.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/fileeditor": "^4.3.2", - "@jupyterlab/notebook": "^4.3.2", - "@jupyterlab/rendermime": "^4.3.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/tooltip": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/codeeditor": "^4.3.3", + "@jupyterlab/console": "^4.3.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/fileeditor": "^4.3.3", + "@jupyterlab/notebook": "^4.3.3", + "@jupyterlab/rendermime": "^4.3.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/tooltip": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", "@lumino/algorithm": "^2.0.2", "@lumino/coreutils": "^2.2.0", "@lumino/widgets": "^2.5.0" diff --git a/packages/tooltip/package.json b/packages/tooltip/package.json index 986b7f2d62f6..a8d5d3cd0805 100644 --- a/packages/tooltip/package.json +++ b/packages/tooltip/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/tooltip", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Tooltip Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -36,10 +36,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/codeeditor": "^4.3.2", - "@jupyterlab/rendermime": "^4.3.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/codeeditor": "^4.3.3", + "@jupyterlab/rendermime": "^4.3.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/coreutils": "^2.2.0", "@lumino/messaging": "^2.0.2", "@lumino/widgets": "^2.5.0" diff --git a/packages/translation-extension/package.json b/packages/translation-extension/package.json index 5601e059f90d..42bc49d2958e 100644 --- a/packages/translation-extension/package.json +++ b/packages/translation-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/translation-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Translation services", "keywords": [ "jupyter", @@ -37,11 +37,11 @@ "watch": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/mainmenu": "^4.3.2", - "@jupyterlab/settingregistry": "^4.3.2", - "@jupyterlab/translation": "^4.3.2" + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/mainmenu": "^4.3.3", + "@jupyterlab/settingregistry": "^4.3.3", + "@jupyterlab/translation": "^4.3.3" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/translation/package.json b/packages/translation/package.json index eb55306fff85..d76753f3e9f3 100644 --- a/packages/translation/package.json +++ b/packages/translation/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/translation", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Translation services", "keywords": [ "jupyter", @@ -37,14 +37,14 @@ "watch": "tsc -w" }, "dependencies": { - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/rendermime-interfaces": "^3.11.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/statedb": "^4.3.2", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/rendermime-interfaces": "^3.11.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/statedb": "^4.3.3", "@lumino/coreutils": "^2.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 b02efff9de55..086c1c0063c8 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.3.2", + "version": "4.3.3", "description": "JupyterLab - UI component plugins", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -32,8 +32,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2" + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3" }, "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 80f057dea1c3..e9f5c3a80771 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.3.2", + "version": "4.3.3", "private": true, "style": "style/index.css", "scripts": { @@ -9,11 +9,11 @@ "watch": "webpack --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/observables": "^5.3.2", - "@jupyterlab/theme-light-extension": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/observables": "^5.3.3", + "@jupyterlab/theme-light-extension": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", "@lumino/messaging": "^2.0.2", "@lumino/widgets": "^2.5.0" }, diff --git a/packages/ui-components/package.json b/packages/ui-components/package.json index b3d2e04f6627..16486a6b1b54 100644 --- a/packages/ui-components/package.json +++ b/packages/ui-components/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/ui-components", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - UI components written in React", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -42,10 +42,10 @@ "dependencies": { "@jupyter/react-components": "^0.16.6", "@jupyter/web-components": "^0.16.6", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/observables": "^5.3.2", - "@jupyterlab/rendermime-interfaces": "^3.11.2", - "@jupyterlab/translation": "^4.3.2", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/observables": "^5.3.3", + "@jupyterlab/rendermime-interfaces": "^3.11.3", + "@jupyterlab/translation": "^4.3.3", "@lumino/algorithm": "^2.0.2", "@lumino/commands": "^2.3.1", "@lumino/coreutils": "^2.2.0", @@ -63,7 +63,7 @@ "typestyle": "^2.0.4" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@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 eb5d2362eccc..15b0cb942f68 100644 --- a/packages/vega5-extension/package.json +++ b/packages/vega5-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/vega5-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Vega 5 and Vega-Lite 5 Mime Renderer Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,7 +37,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/rendermime-interfaces": "^3.11.2", + "@jupyterlab/rendermime-interfaces": "^3.11.3", "@lumino/coreutils": "^2.2.0", "@lumino/widgets": "^2.5.0", "vega": "^5.20.0", @@ -45,7 +45,7 @@ "vega-lite": "^5.6.1-next.1" }, "devDependencies": { - "@jupyterlab/testutils": "^4.3.2", + "@jupyterlab/testutils": "^4.3.3", "@types/jest": "^29.2.0", "@types/webpack-env": "^1.18.0", "jest": "^29.2.0", diff --git a/packages/workspaces-extension/package.json b/packages/workspaces-extension/package.json index 0546c37ccac0..dc8bf92c2744 100644 --- a/packages/workspaces-extension/package.json +++ b/packages/workspaces-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/workspaces-extension", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab Extension providing UI for workspace management", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -35,16 +35,16 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/coreutils": "^6.3.2", - "@jupyterlab/filebrowser": "^4.3.2", - "@jupyterlab/running": "^4.3.2", - "@jupyterlab/services": "^7.3.2", - "@jupyterlab/statedb": "^4.3.2", - "@jupyterlab/translation": "^4.3.2", - "@jupyterlab/ui-components": "^4.3.2", - "@jupyterlab/workspaces": "^4.3.2" + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/coreutils": "^6.3.3", + "@jupyterlab/filebrowser": "^4.3.3", + "@jupyterlab/running": "^4.3.3", + "@jupyterlab/services": "^7.3.3", + "@jupyterlab/statedb": "^4.3.3", + "@jupyterlab/translation": "^4.3.3", + "@jupyterlab/ui-components": "^4.3.3", + "@jupyterlab/workspaces": "^4.3.3" }, "devDependencies": { "@types/jest": "^29.2.0", diff --git a/packages/workspaces/package.json b/packages/workspaces/package.json index cb3ecbba84d2..b8bcd1114374 100644 --- a/packages/workspaces/package.json +++ b/packages/workspaces/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/workspaces", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab workspaces management", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,14 +38,14 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/services": "^7.3.2", + "@jupyterlab/services": "^7.3.3", "@lumino/coreutils": "^2.2.0", "@lumino/disposable": "^2.1.3", "@lumino/polling": "^2.1.3", "@lumino/signaling": "^2.1.3" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.2", + "@jupyterlab/testing": "^4.3.3", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/testutils/package.json b/testutils/package.json index 4417ca30dc41..5012efc0e68b 100644 --- a/testutils/package.json +++ b/testutils/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/testutils", - "version": "4.3.2", + "version": "4.3.3", "description": "JupyterLab - Test Utilities", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -31,11 +31,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.2", - "@jupyterlab/apputils": "^4.4.2", - "@jupyterlab/notebook": "^4.3.2", - "@jupyterlab/rendermime": "^4.3.2", - "@jupyterlab/testing": "^4.3.2" + "@jupyterlab/application": "^4.3.3", + "@jupyterlab/apputils": "^4.4.3", + "@jupyterlab/notebook": "^4.3.3", + "@jupyterlab/rendermime": "^4.3.3", + "@jupyterlab/testing": "^4.3.3" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/yarn.lock b/yarn.lock index 874fdf746ca3..10847bc4ca20 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2088,19 +2088,19 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/application-extension@^4.3.2, @jupyterlab/application-extension@workspace:packages/application-extension, @jupyterlab/application-extension@~4.3.2": +"@jupyterlab/application-extension@^4.3.3, @jupyterlab/application-extension@workspace:packages/application-extension, @jupyterlab/application-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/application-extension@workspace:packages/application-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/property-inspector": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/statusbar": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/property-inspector": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/statusbar": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -2116,58 +2116,58 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/application-top@workspace:dev_mode" dependencies: - "@jupyterlab/application": ~4.3.2 - "@jupyterlab/application-extension": ~4.3.2 - "@jupyterlab/apputils-extension": ~4.3.2 - "@jupyterlab/builder": ^4.3.2 - "@jupyterlab/buildutils": ^4.3.2 - "@jupyterlab/cell-toolbar-extension": ~4.3.2 - "@jupyterlab/celltags-extension": ~4.3.2 - "@jupyterlab/codemirror-extension": ~4.3.2 - "@jupyterlab/completer-extension": ~4.3.2 - "@jupyterlab/console-extension": ~4.3.2 - "@jupyterlab/coreutils": ~6.3.2 - "@jupyterlab/csvviewer-extension": ~4.3.2 - "@jupyterlab/debugger-extension": ~4.3.2 - "@jupyterlab/docmanager-extension": ~4.3.2 - "@jupyterlab/documentsearch-extension": ~4.3.2 - "@jupyterlab/extensionmanager-extension": ~4.3.2 - "@jupyterlab/filebrowser-extension": ~4.3.2 - "@jupyterlab/fileeditor-extension": ~4.3.2 - "@jupyterlab/help-extension": ~4.3.2 - "@jupyterlab/htmlviewer-extension": ~4.3.2 - "@jupyterlab/hub-extension": ~4.3.2 - "@jupyterlab/imageviewer-extension": ~4.3.2 - "@jupyterlab/inspector-extension": ~4.3.2 - "@jupyterlab/javascript-extension": ~4.3.2 - "@jupyterlab/json-extension": ~4.3.2 - "@jupyterlab/launcher-extension": ~4.3.2 - "@jupyterlab/logconsole-extension": ~4.3.2 - "@jupyterlab/lsp-extension": ~4.3.2 - "@jupyterlab/mainmenu-extension": ~4.3.2 - "@jupyterlab/markdownviewer-extension": ~4.3.2 - "@jupyterlab/markedparser-extension": ~4.3.2 - "@jupyterlab/mathjax-extension": ~4.3.2 - "@jupyterlab/mermaid-extension": ~4.3.2 - "@jupyterlab/metadataform-extension": ~4.3.2 - "@jupyterlab/notebook-extension": ~4.3.2 - "@jupyterlab/pdf-extension": ~4.3.2 - "@jupyterlab/pluginmanager-extension": ~4.3.2 - "@jupyterlab/rendermime-extension": ~4.3.2 - "@jupyterlab/running-extension": ~4.3.2 - "@jupyterlab/settingeditor-extension": ~4.3.2 - "@jupyterlab/shortcuts-extension": ~5.1.2 - "@jupyterlab/statusbar-extension": ~4.3.2 - "@jupyterlab/terminal-extension": ~4.3.2 - "@jupyterlab/theme-dark-extension": ~4.3.2 - "@jupyterlab/theme-dark-high-contrast-extension": ~4.3.2 - "@jupyterlab/theme-light-extension": ~4.3.2 - "@jupyterlab/toc-extension": ~6.3.2 - "@jupyterlab/tooltip-extension": ~4.3.2 - "@jupyterlab/translation-extension": ~4.3.2 - "@jupyterlab/ui-components-extension": ~4.3.2 - "@jupyterlab/vega5-extension": ~4.3.2 - "@jupyterlab/workspaces-extension": ~4.3.2 + "@jupyterlab/application": ~4.3.3 + "@jupyterlab/application-extension": ~4.3.3 + "@jupyterlab/apputils-extension": ~4.3.3 + "@jupyterlab/builder": ^4.3.3 + "@jupyterlab/buildutils": ^4.3.3 + "@jupyterlab/cell-toolbar-extension": ~4.3.3 + "@jupyterlab/celltags-extension": ~4.3.3 + "@jupyterlab/codemirror-extension": ~4.3.3 + "@jupyterlab/completer-extension": ~4.3.3 + "@jupyterlab/console-extension": ~4.3.3 + "@jupyterlab/coreutils": ~6.3.3 + "@jupyterlab/csvviewer-extension": ~4.3.3 + "@jupyterlab/debugger-extension": ~4.3.3 + "@jupyterlab/docmanager-extension": ~4.3.3 + "@jupyterlab/documentsearch-extension": ~4.3.3 + "@jupyterlab/extensionmanager-extension": ~4.3.3 + "@jupyterlab/filebrowser-extension": ~4.3.3 + "@jupyterlab/fileeditor-extension": ~4.3.3 + "@jupyterlab/help-extension": ~4.3.3 + "@jupyterlab/htmlviewer-extension": ~4.3.3 + "@jupyterlab/hub-extension": ~4.3.3 + "@jupyterlab/imageviewer-extension": ~4.3.3 + "@jupyterlab/inspector-extension": ~4.3.3 + "@jupyterlab/javascript-extension": ~4.3.3 + "@jupyterlab/json-extension": ~4.3.3 + "@jupyterlab/launcher-extension": ~4.3.3 + "@jupyterlab/logconsole-extension": ~4.3.3 + "@jupyterlab/lsp-extension": ~4.3.3 + "@jupyterlab/mainmenu-extension": ~4.3.3 + "@jupyterlab/markdownviewer-extension": ~4.3.3 + "@jupyterlab/markedparser-extension": ~4.3.3 + "@jupyterlab/mathjax-extension": ~4.3.3 + "@jupyterlab/mermaid-extension": ~4.3.3 + "@jupyterlab/metadataform-extension": ~4.3.3 + "@jupyterlab/notebook-extension": ~4.3.3 + "@jupyterlab/pdf-extension": ~4.3.3 + "@jupyterlab/pluginmanager-extension": ~4.3.3 + "@jupyterlab/rendermime-extension": ~4.3.3 + "@jupyterlab/running-extension": ~4.3.3 + "@jupyterlab/settingeditor-extension": ~4.3.3 + "@jupyterlab/shortcuts-extension": ~5.1.3 + "@jupyterlab/statusbar-extension": ~4.3.3 + "@jupyterlab/terminal-extension": ~4.3.3 + "@jupyterlab/theme-dark-extension": ~4.3.3 + "@jupyterlab/theme-dark-high-contrast-extension": ~4.3.3 + "@jupyterlab/theme-light-extension": ~4.3.3 + "@jupyterlab/toc-extension": ~6.3.3 + "@jupyterlab/tooltip-extension": ~4.3.3 + "@jupyterlab/translation-extension": ~4.3.3 + "@jupyterlab/ui-components-extension": ~4.3.3 + "@jupyterlab/vega5-extension": ~4.3.3 + "@jupyterlab/workspaces-extension": ~4.3.3 chokidar: ^3.4.0 css-loader: ^6.7.1 duplicate-package-checker-webpack-plugin: ^3.0.0 @@ -2192,21 +2192,21 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/application@^4.3.2, @jupyterlab/application@workspace:packages/application, @jupyterlab/application@~4.3.2": +"@jupyterlab/application@^4.3.3, @jupyterlab/application@workspace:packages/application, @jupyterlab/application@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/application@workspace:packages/application" dependencies: "@fortawesome/fontawesome-free": ^5.12.0 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/application": ^2.4.1 "@lumino/commands": ^2.3.1 @@ -2224,23 +2224,23 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/apputils-extension@^4.3.2, @jupyterlab/apputils-extension@workspace:packages/apputils-extension, @jupyterlab/apputils-extension@~4.3.2": +"@jupyterlab/apputils-extension@^4.3.3, @jupyterlab/apputils-extension@workspace:packages/apputils-extension, @jupyterlab/apputils-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/apputils-extension@workspace:packages/apputils-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/mainmenu": ^4.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/statusbar": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 - "@jupyterlab/workspaces": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/mainmenu": ^4.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/statusbar": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 + "@jupyterlab/workspaces": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -2256,20 +2256,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/apputils@^4.4.2, @jupyterlab/apputils@workspace:packages/apputils": +"@jupyterlab/apputils@^4.4.3, @jupyterlab/apputils@workspace:packages/apputils": version: 0.0.0-use.local resolution: "@jupyterlab/apputils@workspace:packages/apputils" dependencies: - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/statusbar": ^4.3.2 - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/statusbar": ^4.3.3 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -2290,14 +2290,14 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/attachments@^4.3.2, @jupyterlab/attachments@workspace:packages/attachments": +"@jupyterlab/attachments@^4.3.3, @jupyterlab/attachments@workspace:packages/attachments": version: 0.0.0-use.local resolution: "@jupyterlab/attachments@workspace:packages/attachments" dependencies: - "@jupyterlab/nbformat": ^4.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 + "@jupyterlab/nbformat": ^4.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 "@lumino/disposable": ^2.1.3 "@lumino/signaling": ^2.1.3 rimraf: ~5.0.5 @@ -2305,7 +2305,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/builder@^4.3.2, @jupyterlab/builder@workspace:builder": +"@jupyterlab/builder@^4.3.3, @jupyterlab/builder@workspace:builder": version: 0.0.0-use.local resolution: "@jupyterlab/builder@workspace:builder" dependencies: @@ -2351,7 +2351,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/buildutils@^4.3.2, @jupyterlab/buildutils@workspace:buildutils": +"@jupyterlab/buildutils@^4.3.3, @jupyterlab/buildutils@workspace:buildutils": version: 0.0.0-use.local resolution: "@jupyterlab/buildutils@workspace:buildutils" dependencies: @@ -2390,32 +2390,32 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/cell-toolbar-extension@^4.3.2, @jupyterlab/cell-toolbar-extension@workspace:packages/cell-toolbar-extension, @jupyterlab/cell-toolbar-extension@~4.3.2": +"@jupyterlab/cell-toolbar-extension@^4.3.3, @jupyterlab/cell-toolbar-extension@workspace:packages/cell-toolbar-extension, @jupyterlab/cell-toolbar-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/cell-toolbar-extension@workspace:packages/cell-toolbar-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/cell-toolbar": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/cell-toolbar": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/cell-toolbar@^4.3.2, @jupyterlab/cell-toolbar@workspace:packages/cell-toolbar": +"@jupyterlab/cell-toolbar@^4.3.3, @jupyterlab/cell-toolbar@workspace:packages/cell-toolbar": version: 0.0.0-use.local resolution: "@jupyterlab/cell-toolbar@workspace:packages/cell-toolbar" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/cells": ^4.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/notebook": ^4.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/cells": ^4.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/notebook": ^4.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/disposable": ^2.1.3 @@ -2428,29 +2428,29 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/cells@^4.3.2, @jupyterlab/cells@workspace:packages/cells": +"@jupyterlab/cells@^4.3.3, @jupyterlab/cells@workspace:packages/cells": version: 0.0.0-use.local resolution: "@jupyterlab/cells@workspace:packages/cells" dependencies: "@codemirror/state": ^6.4.1 "@codemirror/view": ^6.26.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/attachments": ^4.3.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/codemirror": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/documentsearch": ^4.3.2 - "@jupyterlab/filebrowser": ^4.3.2 - "@jupyterlab/nbformat": ^4.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/outputarea": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/toc": ^6.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/attachments": ^4.3.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/codemirror": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/documentsearch": ^4.3.3 + "@jupyterlab/filebrowser": ^4.3.3 + "@jupyterlab/nbformat": ^4.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/outputarea": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/toc": ^6.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/domutils": ^2.0.2 @@ -2469,14 +2469,14 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/celltags-extension@^4.3.2, @jupyterlab/celltags-extension@workspace:packages/celltags-extension, @jupyterlab/celltags-extension@~4.3.2": +"@jupyterlab/celltags-extension@^4.3.3, @jupyterlab/celltags-extension@workspace:packages/celltags-extension, @jupyterlab/celltags-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/celltags-extension@workspace:packages/celltags-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/notebook": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/notebook": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@rjsf/utils": ^5.13.4 react: ^18.2.0 @@ -2485,20 +2485,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/codeeditor@^4.3.2, @jupyterlab/codeeditor@workspace:packages/codeeditor": +"@jupyterlab/codeeditor@^4.3.3, @jupyterlab/codeeditor@workspace:packages/codeeditor": version: 0.0.0-use.local resolution: "@jupyterlab/codeeditor@workspace:packages/codeeditor" dependencies: "@codemirror/state": ^6.4.1 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/nbformat": ^4.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/statusbar": ^4.3.2 - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/nbformat": ^4.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/statusbar": ^4.3.3 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/dragdrop": ^2.1.5 @@ -2513,7 +2513,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/codemirror-extension@^4.3.2, @jupyterlab/codemirror-extension@workspace:packages/codemirror-extension, @jupyterlab/codemirror-extension@~4.3.2": +"@jupyterlab/codemirror-extension@^4.3.3, @jupyterlab/codemirror-extension@workspace:packages/codemirror-extension, @jupyterlab/codemirror-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/codemirror-extension@workspace:packages/codemirror-extension" dependencies: @@ -2524,13 +2524,13 @@ __metadata: "@codemirror/search": ^6.5.6 "@codemirror/view": ^6.26.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/codemirror": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/statusbar": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/codemirror": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/statusbar": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.5.0 "@rjsf/utils": ^5.13.4 @@ -2542,7 +2542,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/codemirror@^4.3.2, @jupyterlab/codemirror@workspace:packages/codemirror": +"@jupyterlab/codemirror@^4.3.3, @jupyterlab/codemirror@workspace:packages/codemirror": version: 0.0.0-use.local resolution: "@jupyterlab/codemirror@workspace:packages/codemirror" dependencies: @@ -2567,12 +2567,12 @@ __metadata: "@codemirror/state": ^6.4.1 "@codemirror/view": ^6.26.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/documentsearch": ^4.3.2 - "@jupyterlab/nbformat": ^4.3.2 - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/documentsearch": ^4.3.3 + "@jupyterlab/nbformat": ^4.3.3 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 "@lezer/common": ^1.2.1 "@lezer/generator": ^1.7.0 "@lezer/highlight": ^1.2.0 @@ -2589,16 +2589,16 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/completer-extension@^4.3.2, @jupyterlab/completer-extension@workspace:packages/completer-extension, @jupyterlab/completer-extension@~4.3.2": +"@jupyterlab/completer-extension@^4.3.3, @jupyterlab/completer-extension@workspace:packages/completer-extension, @jupyterlab/completer-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/completer-extension@workspace:packages/completer-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/completer": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/completer": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@rjsf/utils": ^5.13.4 @@ -2608,24 +2608,24 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/completer@^4.3.2, @jupyterlab/completer@workspace:packages/completer": +"@jupyterlab/completer@^4.3.3, @jupyterlab/completer@workspace:packages/completer": version: 0.0.0-use.local resolution: "@jupyterlab/completer@workspace:packages/completer" dependencies: "@codemirror/state": ^6.4.1 "@codemirror/view": ^6.26.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/codemirror": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/codemirror": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -2640,22 +2640,22 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/console-extension@^4.3.2, @jupyterlab/console-extension@workspace:packages/console-extension, @jupyterlab/console-extension@~4.3.2": +"@jupyterlab/console-extension@^4.3.3, @jupyterlab/console-extension@workspace:packages/console-extension, @jupyterlab/console-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/console-extension@workspace:packages/console-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/completer": ^4.3.2 - "@jupyterlab/console": ^4.3.2 - "@jupyterlab/filebrowser": ^4.3.2 - "@jupyterlab/launcher": ^4.3.2 - "@jupyterlab/mainmenu": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/completer": ^4.3.3 + "@jupyterlab/console": ^4.3.3 + "@jupyterlab/filebrowser": ^4.3.3 + "@jupyterlab/launcher": ^4.3.3 + "@jupyterlab/mainmenu": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -2666,23 +2666,23 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/console@^4.3.2, @jupyterlab/console@workspace:packages/console": +"@jupyterlab/console@^4.3.3, @jupyterlab/console@workspace:packages/console": version: 0.0.0-use.local resolution: "@jupyterlab/console@workspace:packages/console" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/cells": ^4.3.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/codemirror": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/nbformat": ^4.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/cells": ^4.3.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/codemirror": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/nbformat": ^4.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/dragdrop": ^2.1.5 @@ -2696,7 +2696,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/coreutils@^6.3.2, @jupyterlab/coreutils@workspace:packages/coreutils, @jupyterlab/coreutils@~6.3.2": +"@jupyterlab/coreutils@^6.3.3, @jupyterlab/coreutils@workspace:packages/coreutils, @jupyterlab/coreutils@~6.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/coreutils@workspace:packages/coreutils" dependencies: @@ -2720,19 +2720,19 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/csvviewer-extension@^4.3.2, @jupyterlab/csvviewer-extension@workspace:packages/csvviewer-extension, @jupyterlab/csvviewer-extension@~4.3.2": +"@jupyterlab/csvviewer-extension@^4.3.3, @jupyterlab/csvviewer-extension@workspace:packages/csvviewer-extension, @jupyterlab/csvviewer-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/csvviewer-extension@workspace:packages/csvviewer-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/csvviewer": ^4.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/documentsearch": ^4.3.2 - "@jupyterlab/mainmenu": ^4.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/csvviewer": ^4.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/documentsearch": ^4.3.3 + "@jupyterlab/mainmenu": ^4.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 "@lumino/datagrid": ^2.4.1 "@lumino/widgets": ^2.5.0 rimraf: ~5.0.5 @@ -2740,15 +2740,15 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/csvviewer@^4.3.2, @jupyterlab/csvviewer@workspace:packages/csvviewer": +"@jupyterlab/csvviewer@^4.3.3, @jupyterlab/csvviewer@workspace:packages/csvviewer": version: 0.0.0-use.local resolution: "@jupyterlab/csvviewer@workspace:packages/csvviewer" dependencies: - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/datagrid": ^2.4.1 "@lumino/disposable": ^2.1.3 @@ -2764,26 +2764,26 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/debugger-extension@^4.3.2, @jupyterlab/debugger-extension@workspace:packages/debugger-extension, @jupyterlab/debugger-extension@~4.3.2": +"@jupyterlab/debugger-extension@^4.3.3, @jupyterlab/debugger-extension@workspace:packages/debugger-extension, @jupyterlab/debugger-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/debugger-extension@workspace:packages/debugger-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/cells": ^4.3.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/console": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/debugger": ^4.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/fileeditor": ^4.3.2 - "@jupyterlab/logconsole": ^4.3.2 - "@jupyterlab/notebook": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/cells": ^4.3.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/console": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/debugger": ^4.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/fileeditor": ^4.3.3 + "@jupyterlab/logconsole": ^4.3.3 + "@jupyterlab/notebook": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 "@lumino/commands": ^2.3.1 "@types/jest": ^29.2.0 "@types/react-dom": ^18.0.9 @@ -2792,7 +2792,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/debugger@^4.3.2, @jupyterlab/debugger@workspace:packages/debugger": +"@jupyterlab/debugger@^4.3.3, @jupyterlab/debugger@workspace:packages/debugger": version: 0.0.0-use.local resolution: "@jupyterlab/debugger@workspace:packages/debugger" dependencies: @@ -2800,22 +2800,22 @@ __metadata: "@codemirror/view": ^6.26.3 "@jupyter/react-components": ^0.16.6 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/cells": ^4.3.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/codemirror": ^4.3.2 - "@jupyterlab/console": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/fileeditor": ^4.3.2 - "@jupyterlab/notebook": ^4.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/cells": ^4.3.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/codemirror": ^4.3.3 + "@jupyterlab/console": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/fileeditor": ^4.3.3 + "@jupyterlab/notebook": ^4.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -2835,21 +2835,21 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/docmanager-extension@^4.3.2, @jupyterlab/docmanager-extension@workspace:packages/docmanager-extension, @jupyterlab/docmanager-extension@~4.3.2": +"@jupyterlab/docmanager-extension@^4.3.3, @jupyterlab/docmanager-extension@workspace:packages/docmanager-extension, @jupyterlab/docmanager-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/docmanager-extension@workspace:packages/docmanager-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docmanager": ^4.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/statusbar": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docmanager": ^4.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/statusbar": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -2862,19 +2862,19 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/docmanager@^4.3.2, @jupyterlab/docmanager@workspace:packages/docmanager": +"@jupyterlab/docmanager@^4.3.3, @jupyterlab/docmanager@workspace:packages/docmanager": version: 0.0.0-use.local resolution: "@jupyterlab/docmanager@workspace:packages/docmanager" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/statusbar": ^4.3.2 - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/statusbar": ^4.3.3 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -2891,21 +2891,21 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/docregistry@^4.3.2, @jupyterlab/docregistry@workspace:packages/docregistry": +"@jupyterlab/docregistry@^4.3.3, @jupyterlab/docregistry@workspace:packages/docregistry": version: 0.0.0-use.local resolution: "@jupyterlab/docregistry@workspace:packages/docregistry" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -2921,15 +2921,15 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/documentsearch-extension@^4.3.2, @jupyterlab/documentsearch-extension@workspace:packages/documentsearch-extension, @jupyterlab/documentsearch-extension@~4.3.2": +"@jupyterlab/documentsearch-extension@^4.3.3, @jupyterlab/documentsearch-extension@workspace:packages/documentsearch-extension, @jupyterlab/documentsearch-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/documentsearch-extension@workspace:packages/documentsearch-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/documentsearch": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/documentsearch": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 "@lumino/commands": ^2.3.1 "@lumino/widgets": ^2.5.0 rimraf: ~5.0.5 @@ -2937,14 +2937,14 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/documentsearch@^4.3.2, @jupyterlab/documentsearch@workspace:packages/documentsearch": +"@jupyterlab/documentsearch@^4.3.3, @jupyterlab/documentsearch@workspace:packages/documentsearch": version: 0.0.0-use.local resolution: "@jupyterlab/documentsearch@workspace:packages/documentsearch" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -2964,39 +2964,39 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/example-app@workspace:examples/app" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/application-extension": ^4.3.2 - "@jupyterlab/apputils-extension": ^4.3.2 - "@jupyterlab/builder": ^4.3.2 - "@jupyterlab/celltags-extension": ^4.3.2 - "@jupyterlab/codemirror-extension": ^4.3.2 - "@jupyterlab/completer-extension": ^4.3.2 - "@jupyterlab/console-extension": ^4.3.2 - "@jupyterlab/csvviewer-extension": ^4.3.2 - "@jupyterlab/docmanager-extension": ^4.3.2 - "@jupyterlab/filebrowser-extension": ^4.3.2 - "@jupyterlab/fileeditor-extension": ^4.3.2 - "@jupyterlab/help-extension": ^4.3.2 - "@jupyterlab/imageviewer-extension": ^4.3.2 - "@jupyterlab/inspector-extension": ^4.3.2 - "@jupyterlab/launcher-extension": ^4.3.2 - "@jupyterlab/mainmenu-extension": ^4.3.2 - "@jupyterlab/markdownviewer-extension": ^4.3.2 - "@jupyterlab/mathjax-extension": ^4.3.2 - "@jupyterlab/metadataform-extension": ^4.3.2 - "@jupyterlab/notebook-extension": ^4.3.2 - "@jupyterlab/rendermime-extension": ^4.3.2 - "@jupyterlab/running-extension": ^4.3.2 - "@jupyterlab/settingeditor-extension": ^4.3.2 - "@jupyterlab/shortcuts-extension": ^5.1.2 - "@jupyterlab/statusbar-extension": ^4.3.2 - "@jupyterlab/theme-dark-extension": ^4.3.2 - "@jupyterlab/theme-light-extension": ^4.3.2 - "@jupyterlab/toc-extension": ^6.3.2 - "@jupyterlab/tooltip-extension": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/translation-extension": ^4.3.2 - "@jupyterlab/ui-components-extension": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/application-extension": ^4.3.3 + "@jupyterlab/apputils-extension": ^4.3.3 + "@jupyterlab/builder": ^4.3.3 + "@jupyterlab/celltags-extension": ^4.3.3 + "@jupyterlab/codemirror-extension": ^4.3.3 + "@jupyterlab/completer-extension": ^4.3.3 + "@jupyterlab/console-extension": ^4.3.3 + "@jupyterlab/csvviewer-extension": ^4.3.3 + "@jupyterlab/docmanager-extension": ^4.3.3 + "@jupyterlab/filebrowser-extension": ^4.3.3 + "@jupyterlab/fileeditor-extension": ^4.3.3 + "@jupyterlab/help-extension": ^4.3.3 + "@jupyterlab/imageviewer-extension": ^4.3.3 + "@jupyterlab/inspector-extension": ^4.3.3 + "@jupyterlab/launcher-extension": ^4.3.3 + "@jupyterlab/mainmenu-extension": ^4.3.3 + "@jupyterlab/markdownviewer-extension": ^4.3.3 + "@jupyterlab/mathjax-extension": ^4.3.3 + "@jupyterlab/metadataform-extension": ^4.3.3 + "@jupyterlab/notebook-extension": ^4.3.3 + "@jupyterlab/rendermime-extension": ^4.3.3 + "@jupyterlab/running-extension": ^4.3.3 + "@jupyterlab/settingeditor-extension": ^4.3.3 + "@jupyterlab/shortcuts-extension": ^5.1.3 + "@jupyterlab/statusbar-extension": ^4.3.3 + "@jupyterlab/theme-dark-extension": ^4.3.3 + "@jupyterlab/theme-light-extension": ^4.3.3 + "@jupyterlab/toc-extension": ^6.3.3 + "@jupyterlab/tooltip-extension": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/translation-extension": ^4.3.3 + "@jupyterlab/ui-components-extension": ^4.3.3 css-loader: ^6.7.1 fs-extra: ^10.1.0 glob: ~7.1.6 @@ -3017,16 +3017,16 @@ __metadata: dependencies: "@jupyter/web-components": ^0.16.6 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/cells": ^4.3.2 - "@jupyterlab/codemirror": ^4.3.2 - "@jupyterlab/completer": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/theme-light-extension": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/cells": ^4.3.3 + "@jupyterlab/codemirror": ^4.3.3 + "@jupyterlab/completer": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/theme-light-extension": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/commands": ^2.3.1 "@lumino/widgets": ^2.5.0 css-loader: ^6.7.1 @@ -3046,14 +3046,14 @@ __metadata: dependencies: "@jupyter/web-components": ^0.16.6 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/codemirror": ^4.3.2 - "@jupyterlab/console": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/theme-light-extension": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/codemirror": ^4.3.3 + "@jupyterlab/console": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/theme-light-extension": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 "@lumino/commands": ^2.3.1 "@lumino/widgets": ^2.5.0 css-loader: ^6.7.1 @@ -3070,48 +3070,48 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/example-federated-core@workspace:examples/federated/core_package" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/application-extension": ^4.3.2 - "@jupyterlab/apputils-extension": ^4.3.2 - "@jupyterlab/builder": ^4.3.2 - "@jupyterlab/celltags-extension": ^4.3.2 - "@jupyterlab/codemirror-extension": ^4.3.2 - "@jupyterlab/completer-extension": ^4.3.2 - "@jupyterlab/console-extension": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/csvviewer-extension": ^4.3.2 - "@jupyterlab/debugger-extension": ^4.3.2 - "@jupyterlab/docmanager-extension": ^4.3.2 - "@jupyterlab/documentsearch-extension": ^4.3.2 - "@jupyterlab/extensionmanager-extension": ^4.3.2 - "@jupyterlab/filebrowser-extension": ^4.3.2 - "@jupyterlab/fileeditor-extension": ^4.3.2 - "@jupyterlab/help-extension": ^4.3.2 - "@jupyterlab/htmlviewer-extension": ^4.3.2 - "@jupyterlab/hub-extension": ^4.3.2 - "@jupyterlab/imageviewer-extension": ^4.3.2 - "@jupyterlab/inspector-extension": ^4.3.2 - "@jupyterlab/javascript-extension": ^4.3.2 - "@jupyterlab/json-extension": ^4.3.2 - "@jupyterlab/launcher-extension": ^4.3.2 - "@jupyterlab/logconsole-extension": ^4.3.2 - "@jupyterlab/lsp-extension": ^4.3.2 - "@jupyterlab/mainmenu-extension": ^4.3.2 - "@jupyterlab/mathjax-extension": ^4.3.2 - "@jupyterlab/metadataform-extension": ^4.3.2 - "@jupyterlab/notebook-extension": ^4.3.2 - "@jupyterlab/pdf-extension": ^4.3.2 - "@jupyterlab/rendermime-extension": ^4.3.2 - "@jupyterlab/settingeditor-extension": ^4.3.2 - "@jupyterlab/shortcuts-extension": ^5.1.2 - "@jupyterlab/statusbar-extension": ^4.3.2 - "@jupyterlab/theme-light-extension": ^4.3.2 - "@jupyterlab/toc-extension": ^6.3.2 - "@jupyterlab/tooltip-extension": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/translation-extension": ^4.3.2 - "@jupyterlab/ui-components-extension": ^4.3.2 - "@jupyterlab/vega5-extension": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/application-extension": ^4.3.3 + "@jupyterlab/apputils-extension": ^4.3.3 + "@jupyterlab/builder": ^4.3.3 + "@jupyterlab/celltags-extension": ^4.3.3 + "@jupyterlab/codemirror-extension": ^4.3.3 + "@jupyterlab/completer-extension": ^4.3.3 + "@jupyterlab/console-extension": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/csvviewer-extension": ^4.3.3 + "@jupyterlab/debugger-extension": ^4.3.3 + "@jupyterlab/docmanager-extension": ^4.3.3 + "@jupyterlab/documentsearch-extension": ^4.3.3 + "@jupyterlab/extensionmanager-extension": ^4.3.3 + "@jupyterlab/filebrowser-extension": ^4.3.3 + "@jupyterlab/fileeditor-extension": ^4.3.3 + "@jupyterlab/help-extension": ^4.3.3 + "@jupyterlab/htmlviewer-extension": ^4.3.3 + "@jupyterlab/hub-extension": ^4.3.3 + "@jupyterlab/imageviewer-extension": ^4.3.3 + "@jupyterlab/inspector-extension": ^4.3.3 + "@jupyterlab/javascript-extension": ^4.3.3 + "@jupyterlab/json-extension": ^4.3.3 + "@jupyterlab/launcher-extension": ^4.3.3 + "@jupyterlab/logconsole-extension": ^4.3.3 + "@jupyterlab/lsp-extension": ^4.3.3 + "@jupyterlab/mainmenu-extension": ^4.3.3 + "@jupyterlab/mathjax-extension": ^4.3.3 + "@jupyterlab/metadataform-extension": ^4.3.3 + "@jupyterlab/notebook-extension": ^4.3.3 + "@jupyterlab/pdf-extension": ^4.3.3 + "@jupyterlab/rendermime-extension": ^4.3.3 + "@jupyterlab/settingeditor-extension": ^4.3.3 + "@jupyterlab/shortcuts-extension": ^5.1.3 + "@jupyterlab/statusbar-extension": ^4.3.3 + "@jupyterlab/theme-light-extension": ^4.3.3 + "@jupyterlab/toc-extension": ^6.3.3 + "@jupyterlab/tooltip-extension": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/translation-extension": ^4.3.3 + "@jupyterlab/ui-components-extension": ^4.3.3 + "@jupyterlab/vega5-extension": ^4.3.3 copy-webpack-plugin: ^11.0.0 css-loader: ^6.7.1 fs-extra: ^10.1.0 @@ -3131,20 +3131,20 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/example-federated-md@workspace:examples/federated/md_package" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/builder": ^4.3.2 - "@jupyterlab/example-federated-middle": ^3.2.2 - "@jupyterlab/markdownviewer-extension": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/builder": ^4.3.3 + "@jupyterlab/example-federated-middle": ^3.2.3 + "@jupyterlab/markdownviewer-extension": ^4.3.3 "@lumino/widgets": ^2.5.0 rimraf: ~5.0.5 languageName: unknown linkType: soft -"@jupyterlab/example-federated-middle@^3.2.2, @jupyterlab/example-federated-middle@workspace:examples/federated/middle_package": +"@jupyterlab/example-federated-middle@^3.2.3, @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.3.2 + "@jupyterlab/builder": ^4.3.3 "@lumino/coreutils": ^2.2.0 rimraf: ~5.0.5 languageName: unknown @@ -3161,18 +3161,18 @@ __metadata: resolution: "@jupyterlab/example-filebrowser@workspace:examples/filebrowser" dependencies: "@jupyter/web-components": ^0.16.6 - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/codemirror": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docmanager": ^4.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/filebrowser": ^4.3.2 - "@jupyterlab/fileeditor": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/theme-light-extension": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/codemirror": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docmanager": ^4.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/filebrowser": ^4.3.3 + "@jupyterlab/fileeditor": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/theme-light-extension": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/commands": ^2.3.1 "@lumino/widgets": ^2.5.0 css-loader: ^6.7.1 @@ -3192,22 +3192,22 @@ __metadata: dependencies: "@jupyter/web-components": ^0.16.6 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/codemirror": ^4.3.2 - "@jupyterlab/completer": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docmanager": ^4.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/documentsearch": ^4.3.2 - "@jupyterlab/markedparser-extension": ^4.3.2 - "@jupyterlab/mathjax-extension": ^4.3.2 - "@jupyterlab/notebook": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/theme-light-extension": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/codemirror": ^4.3.3 + "@jupyterlab/completer": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docmanager": ^4.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/documentsearch": ^4.3.3 + "@jupyterlab/markedparser-extension": ^4.3.3 + "@jupyterlab/mathjax-extension": ^4.3.3 + "@jupyterlab/notebook": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/theme-light-extension": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/commands": ^2.3.1 "@lumino/widgets": ^2.5.0 css-loader: ^6.7.1 @@ -3225,8 +3225,8 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/example-services-browser@workspace:packages/services/examples/browser" dependencies: - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/services": ^7.3.2 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/services": ^7.3.3 "@lumino/coreutils": ^2.2.0 rimraf: ~5.0.5 typescript: ~5.1.6 @@ -3239,10 +3239,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.3.2 - "@jupyterlab/outputarea": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/services": ^7.3.2 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/outputarea": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/services": ^7.3.3 css-loader: ^6.7.1 rimraf: ~5.0.5 style-loader: ~3.3.1 @@ -3256,11 +3256,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.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/theme-light-extension": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/theme-light-extension": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/messaging": ^2.0.2 "@lumino/widgets": ^2.5.0 css-loader: ^6.7.1 @@ -3279,11 +3279,11 @@ __metadata: resolution: "@jupyterlab/example-terminal@workspace:examples/terminal" dependencies: "@jupyter/web-components": ^0.16.6 - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/terminal": ^4.3.2 - "@jupyterlab/theme-light-extension": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/terminal": ^4.3.3 + "@jupyterlab/theme-light-extension": ^4.3.3 "@lumino/widgets": ^2.5.0 css-loader: ^6.7.1 mini-css-extract-plugin: ^2.7.0 @@ -3296,30 +3296,30 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/extensionmanager-extension@^4.3.2, @jupyterlab/extensionmanager-extension@workspace:packages/extensionmanager-extension, @jupyterlab/extensionmanager-extension@~4.3.2": +"@jupyterlab/extensionmanager-extension@^4.3.3, @jupyterlab/extensionmanager-extension@workspace:packages/extensionmanager-extension, @jupyterlab/extensionmanager-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/extensionmanager-extension@workspace:packages/extensionmanager-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/extensionmanager": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/extensionmanager": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/extensionmanager@^4.3.2, @jupyterlab/extensionmanager@workspace:packages/extensionmanager": +"@jupyterlab/extensionmanager@^4.3.3, @jupyterlab/extensionmanager@workspace:packages/extensionmanager": version: 0.0.0-use.local resolution: "@jupyterlab/extensionmanager@workspace:packages/extensionmanager" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/messaging": ^2.0.2 "@lumino/polling": ^2.1.3 "@lumino/widgets": ^2.5.0 @@ -3335,22 +3335,22 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/filebrowser-extension@^4.3.2, @jupyterlab/filebrowser-extension@workspace:packages/filebrowser-extension, @jupyterlab/filebrowser-extension@~4.3.2": +"@jupyterlab/filebrowser-extension@^4.3.3, @jupyterlab/filebrowser-extension@workspace:packages/filebrowser-extension, @jupyterlab/filebrowser-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/filebrowser-extension@workspace:packages/filebrowser-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docmanager": ^4.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/filebrowser": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/statusbar": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docmanager": ^4.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/filebrowser": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/statusbar": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/widgets": ^2.5.0 @@ -3359,20 +3359,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/filebrowser@^4.3.2, @jupyterlab/filebrowser@workspace:packages/filebrowser": +"@jupyterlab/filebrowser@^4.3.3, @jupyterlab/filebrowser@workspace:packages/filebrowser": version: 0.0.0-use.local resolution: "@jupyterlab/filebrowser@workspace:packages/filebrowser" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docmanager": ^4.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/statusbar": ^4.3.2 - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docmanager": ^4.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/statusbar": ^4.3.3 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -3391,34 +3391,34 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/fileeditor-extension@^4.3.2, @jupyterlab/fileeditor-extension@workspace:packages/fileeditor-extension, @jupyterlab/fileeditor-extension@~4.3.2": +"@jupyterlab/fileeditor-extension@^4.3.3, @jupyterlab/fileeditor-extension@workspace:packages/fileeditor-extension, @jupyterlab/fileeditor-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/fileeditor-extension@workspace:packages/fileeditor-extension" dependencies: "@codemirror/commands": ^6.5.0 "@codemirror/search": ^6.5.6 - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/codemirror": ^4.3.2 - "@jupyterlab/completer": ^4.3.2 - "@jupyterlab/console": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/documentsearch": ^4.3.2 - "@jupyterlab/filebrowser": ^4.3.2 - "@jupyterlab/fileeditor": ^4.3.2 - "@jupyterlab/launcher": ^4.3.2 - "@jupyterlab/lsp": ^4.3.2 - "@jupyterlab/mainmenu": ^4.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/statusbar": ^4.3.2 - "@jupyterlab/toc": ^6.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/codemirror": ^4.3.3 + "@jupyterlab/completer": ^4.3.3 + "@jupyterlab/console": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/documentsearch": ^4.3.3 + "@jupyterlab/filebrowser": ^4.3.3 + "@jupyterlab/fileeditor": ^4.3.3 + "@jupyterlab/launcher": ^4.3.3 + "@jupyterlab/lsp": ^4.3.3 + "@jupyterlab/mainmenu": ^4.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/statusbar": ^4.3.3 + "@jupyterlab/toc": ^6.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -3428,23 +3428,23 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/fileeditor@^4.3.2, @jupyterlab/fileeditor@workspace:packages/fileeditor": +"@jupyterlab/fileeditor@^4.3.3, @jupyterlab/fileeditor@workspace:packages/fileeditor": version: 0.0.0-use.local resolution: "@jupyterlab/fileeditor@workspace:packages/fileeditor" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/codemirror": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/documentsearch": ^4.3.2 - "@jupyterlab/lsp": ^4.3.2 - "@jupyterlab/statusbar": ^4.3.2 - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/toc": ^6.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/codemirror": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/documentsearch": ^4.3.3 + "@jupyterlab/lsp": ^4.3.3 + "@jupyterlab/statusbar": ^4.3.3 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/toc": ^6.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 @@ -3462,15 +3462,15 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/galata-extension@workspace:galata/extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/builder": ^4.3.2 - "@jupyterlab/cells": ^4.3.2 - "@jupyterlab/debugger": ^4.3.2 - "@jupyterlab/docmanager": ^4.3.2 - "@jupyterlab/nbformat": ^4.3.2 - "@jupyterlab/notebook": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/builder": ^4.3.3 + "@jupyterlab/cells": ^4.3.3 + "@jupyterlab/debugger": ^4.3.3 + "@jupyterlab/docmanager": ^4.3.3 + "@jupyterlab/nbformat": ^4.3.3 + "@jupyterlab/notebook": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/signaling": ^2.1.3 @@ -3483,15 +3483,15 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/galata@workspace:galata" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/debugger": ^4.3.2 - "@jupyterlab/docmanager": ^4.3.2 - "@jupyterlab/nbformat": ^4.3.2 - "@jupyterlab/notebook": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/settingregistry": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/debugger": ^4.3.3 + "@jupyterlab/docmanager": ^4.3.3 + "@jupyterlab/nbformat": ^4.3.3 + "@jupyterlab/notebook": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/settingregistry": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@playwright/test": ^1.48.0 "@stdlib/stats": ~0.0.13 @@ -3507,17 +3507,17 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/help-extension@^4.3.2, @jupyterlab/help-extension@workspace:packages/help-extension, @jupyterlab/help-extension@~4.3.2": +"@jupyterlab/help-extension@^4.3.3, @jupyterlab/help-extension@workspace:packages/help-extension, @jupyterlab/help-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/help-extension@workspace:packages/help-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/mainmenu": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/mainmenu": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/signaling": ^2.1.3 "@lumino/virtualdom": ^2.0.2 @@ -3528,32 +3528,32 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/htmlviewer-extension@^4.3.2, @jupyterlab/htmlviewer-extension@workspace:packages/htmlviewer-extension, @jupyterlab/htmlviewer-extension@~4.3.2": +"@jupyterlab/htmlviewer-extension@^4.3.3, @jupyterlab/htmlviewer-extension@workspace:packages/htmlviewer-extension, @jupyterlab/htmlviewer-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/htmlviewer-extension@workspace:packages/htmlviewer-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/htmlviewer": ^4.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/htmlviewer": ^4.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/htmlviewer@^4.3.2, @jupyterlab/htmlviewer@workspace:packages/htmlviewer": +"@jupyterlab/htmlviewer@^4.3.3, @jupyterlab/htmlviewer@workspace:packages/htmlviewer": version: 0.0.0-use.local resolution: "@jupyterlab/htmlviewer@workspace:packages/htmlviewer" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.5.0 @@ -3563,15 +3563,15 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/hub-extension@^4.3.2, @jupyterlab/hub-extension@workspace:packages/hub-extension, @jupyterlab/hub-extension@~4.3.2": +"@jupyterlab/hub-extension@^4.3.3, @jupyterlab/hub-extension@workspace:packages/hub-extension, @jupyterlab/hub-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/hub-extension@workspace:packages/hub-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/translation": ^4.3.3 "@types/jest": ^29.2.0 jest: ^29.2.0 rimraf: ~5.0.5 @@ -3579,28 +3579,28 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/imageviewer-extension@^4.3.2, @jupyterlab/imageviewer-extension@workspace:packages/imageviewer-extension, @jupyterlab/imageviewer-extension@~4.3.2": +"@jupyterlab/imageviewer-extension@^4.3.3, @jupyterlab/imageviewer-extension@workspace:packages/imageviewer-extension, @jupyterlab/imageviewer-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/imageviewer-extension@workspace:packages/imageviewer-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/imageviewer": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/imageviewer": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/imageviewer@^4.3.2, @jupyterlab/imageviewer@workspace:packages/imageviewer": +"@jupyterlab/imageviewer@^4.3.3, @jupyterlab/imageviewer@workspace:packages/imageviewer": version: 0.0.0-use.local resolution: "@jupyterlab/imageviewer@workspace:packages/imageviewer" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/testing": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/testing": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/widgets": ^2.5.0 @@ -3611,36 +3611,36 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/inspector-extension@^4.3.2, @jupyterlab/inspector-extension@workspace:packages/inspector-extension, @jupyterlab/inspector-extension@~4.3.2": +"@jupyterlab/inspector-extension@^4.3.3, @jupyterlab/inspector-extension@workspace:packages/inspector-extension, @jupyterlab/inspector-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/inspector-extension@workspace:packages/inspector-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/console": ^4.3.2 - "@jupyterlab/inspector": ^4.3.2 - "@jupyterlab/launcher": ^4.3.2 - "@jupyterlab/notebook": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/console": ^4.3.3 + "@jupyterlab/inspector": ^4.3.3 + "@jupyterlab/launcher": ^4.3.3 + "@jupyterlab/notebook": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/widgets": ^2.5.0 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/inspector@^4.3.2, @jupyterlab/inspector@workspace:packages/inspector": +"@jupyterlab/inspector@^4.3.3, @jupyterlab/inspector@workspace:packages/inspector": version: 0.0.0-use.local resolution: "@jupyterlab/inspector@workspace:packages/inspector" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/polling": ^2.1.3 @@ -3653,26 +3653,26 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/javascript-extension@^4.3.2, @jupyterlab/javascript-extension@workspace:packages/javascript-extension, @jupyterlab/javascript-extension@~4.3.2": +"@jupyterlab/javascript-extension@^4.3.3, @jupyterlab/javascript-extension@workspace:packages/javascript-extension, @jupyterlab/javascript-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/javascript-extension@workspace:packages/javascript-extension" dependencies: - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/json-extension@^4.3.2, @jupyterlab/json-extension@workspace:packages/json-extension, @jupyterlab/json-extension@~4.3.2": +"@jupyterlab/json-extension@^4.3.3, @jupyterlab/json-extension@workspace:packages/json-extension, @jupyterlab/json-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/json-extension@workspace:packages/json-extension" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/codemirror": ^4.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/codemirror": ^4.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lezer/highlight": ^1.2.0 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 @@ -3690,16 +3690,16 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/launcher-extension@^4.3.2, @jupyterlab/launcher-extension@workspace:packages/launcher-extension, @jupyterlab/launcher-extension@~4.3.2": +"@jupyterlab/launcher-extension@^4.3.3, @jupyterlab/launcher-extension@workspace:packages/launcher-extension, @jupyterlab/launcher-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/launcher-extension@workspace:packages/launcher-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/filebrowser": ^4.3.2 - "@jupyterlab/launcher": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/filebrowser": ^4.3.3 + "@jupyterlab/launcher": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.5.0 @@ -3708,13 +3708,13 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/launcher@^4.3.2, @jupyterlab/launcher@workspace:packages/launcher": +"@jupyterlab/launcher@^4.3.3, @jupyterlab/launcher@workspace:packages/launcher": version: 0.0.0-use.local resolution: "@jupyterlab/launcher@workspace:packages/launcher" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -3728,19 +3728,19 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/logconsole-extension@^4.3.2, @jupyterlab/logconsole-extension@workspace:packages/logconsole-extension, @jupyterlab/logconsole-extension@~4.3.2": +"@jupyterlab/logconsole-extension@^4.3.3, @jupyterlab/logconsole-extension@workspace:packages/logconsole-extension, @jupyterlab/logconsole-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/logconsole-extension@workspace:packages/logconsole-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/logconsole": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/statusbar": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/logconsole": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/statusbar": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.5.0 @@ -3750,17 +3750,17 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/logconsole@^4.3.2, @jupyterlab/logconsole@workspace:packages/logconsole": +"@jupyterlab/logconsole@^4.3.3, @jupyterlab/logconsole@workspace:packages/logconsole": version: 0.0.0-use.local resolution: "@jupyterlab/logconsole@workspace:packages/logconsole" dependencies: - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/nbformat": ^4.3.2 - "@jupyterlab/outputarea": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/nbformat": ^4.3.3 + "@jupyterlab/outputarea": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/messaging": ^2.0.2 @@ -3773,17 +3773,17 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/lsp-extension@^4.3.2, @jupyterlab/lsp-extension@workspace:packages/lsp-extension, @jupyterlab/lsp-extension@~4.3.2": +"@jupyterlab/lsp-extension@^4.3.3, @jupyterlab/lsp-extension@workspace:packages/lsp-extension, @jupyterlab/lsp-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/lsp-extension@workspace:packages/lsp-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/lsp": ^4.3.2 - "@jupyterlab/running": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/lsp": ^4.3.3 + "@jupyterlab/running": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/polling": ^2.1.3 "@lumino/signaling": ^2.1.3 @@ -3794,18 +3794,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/lsp@^4.3.2, @jupyterlab/lsp@workspace:packages/lsp": +"@jupyterlab/lsp@^4.3.3, @jupyterlab/lsp@workspace:packages/lsp": version: 0.0.0-use.local resolution: "@jupyterlab/lsp@workspace:packages/lsp" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/codemirror": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/codemirror": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/signaling": ^2.1.3 @@ -3823,20 +3823,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/mainmenu-extension@^4.3.2, @jupyterlab/mainmenu-extension@workspace:packages/mainmenu-extension, @jupyterlab/mainmenu-extension@~4.3.2": +"@jupyterlab/mainmenu-extension@^4.3.3, @jupyterlab/mainmenu-extension@workspace:packages/mainmenu-extension, @jupyterlab/mainmenu-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/mainmenu-extension@workspace:packages/mainmenu-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docmanager": ^4.3.2 - "@jupyterlab/filebrowser": ^4.3.2 - "@jupyterlab/mainmenu": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docmanager": ^4.3.3 + "@jupyterlab/filebrowser": ^4.3.3 + "@jupyterlab/mainmenu": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -3847,14 +3847,14 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/mainmenu@^4.3.2, @jupyterlab/mainmenu@workspace:packages/mainmenu": +"@jupyterlab/mainmenu@^4.3.3, @jupyterlab/mainmenu@workspace:packages/mainmenu": version: 0.0.0-use.local resolution: "@jupyterlab/mainmenu@workspace:packages/mainmenu" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -3866,33 +3866,33 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/markdownviewer-extension@^4.3.2, @jupyterlab/markdownviewer-extension@workspace:packages/markdownviewer-extension, @jupyterlab/markdownviewer-extension@~4.3.2": +"@jupyterlab/markdownviewer-extension@^4.3.3, @jupyterlab/markdownviewer-extension@workspace:packages/markdownviewer-extension, @jupyterlab/markdownviewer-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/markdownviewer-extension@workspace:packages/markdownviewer-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/markdownviewer": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/toc": ^6.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/markdownviewer": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/toc": ^6.3.3 + "@jupyterlab/translation": ^4.3.3 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/markdownviewer@^4.3.2, @jupyterlab/markdownviewer@workspace:packages/markdownviewer": +"@jupyterlab/markdownviewer@^4.3.3, @jupyterlab/markdownviewer@workspace:packages/markdownviewer": version: 0.0.0-use.local resolution: "@jupyterlab/markdownviewer@workspace:packages/markdownviewer" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/toc": ^6.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/toc": ^6.3.3 + "@jupyterlab/translation": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 @@ -3902,15 +3902,15 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/markedparser-extension@^4.3.2, @jupyterlab/markedparser-extension@workspace:packages/markedparser-extension, @jupyterlab/markedparser-extension@~4.3.2": +"@jupyterlab/markedparser-extension@^4.3.3, @jupyterlab/markedparser-extension@workspace:packages/markedparser-extension, @jupyterlab/markedparser-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/markedparser-extension@workspace:packages/markedparser-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/codemirror": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/mermaid": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/codemirror": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/mermaid": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@types/d3": ^7.4.0 "@types/dompurify": ^2.4.0 @@ -3922,12 +3922,12 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/mathjax-extension@^4.3.2, @jupyterlab/mathjax-extension@workspace:packages/mathjax-extension, @jupyterlab/mathjax-extension@~4.3.2": +"@jupyterlab/mathjax-extension@^4.3.3, @jupyterlab/mathjax-extension@workspace:packages/mathjax-extension, @jupyterlab/mathjax-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/mathjax-extension@workspace:packages/mathjax-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 "@lumino/coreutils": ^2.2.0 mathjax-full: ^3.2.2 rimraf: ~5.0.5 @@ -3935,27 +3935,27 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/mermaid-extension@^4.3.2, @jupyterlab/mermaid-extension@workspace:packages/mermaid-extension, @jupyterlab/mermaid-extension@~4.3.2": +"@jupyterlab/mermaid-extension@^4.3.3, @jupyterlab/mermaid-extension@workspace:packages/mermaid-extension, @jupyterlab/mermaid-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/mermaid-extension@workspace:packages/mermaid-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/mermaid": ^4.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/mermaid": ^4.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 + "@jupyterlab/translation": ^4.3.3 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/mermaid@^4.3.2, @jupyterlab/mermaid@workspace:packages/mermaid": +"@jupyterlab/mermaid@^4.3.3, @jupyterlab/mermaid@workspace:packages/mermaid": version: 0.0.0-use.local resolution: "@jupyterlab/mermaid@workspace:packages/mermaid" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.5.0 "@types/jest": ^29.2.0 @@ -3966,33 +3966,33 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/metadataform-extension@^4.3.2, @jupyterlab/metadataform-extension@workspace:packages/metadataform-extension, @jupyterlab/metadataform-extension@~4.3.2": +"@jupyterlab/metadataform-extension@^4.3.3, @jupyterlab/metadataform-extension@workspace:packages/metadataform-extension, @jupyterlab/metadataform-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/metadataform-extension@workspace:packages/metadataform-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/metadataform": ^4.3.2 - "@jupyterlab/notebook": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/metadataform": ^4.3.3 + "@jupyterlab/notebook": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/metadataform@^4.3.2, @jupyterlab/metadataform@workspace:packages/metadataform": +"@jupyterlab/metadataform@^4.3.3, @jupyterlab/metadataform@workspace:packages/metadataform": version: 0.0.0-use.local resolution: "@jupyterlab/metadataform@workspace:packages/metadataform" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/nbformat": ^4.3.2 - "@jupyterlab/notebook": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/nbformat": ^4.3.3 + "@jupyterlab/notebook": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/widgets": ^2.5.0 @@ -4012,104 +4012,104 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/metapackage@workspace:packages/metapackage" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/application-extension": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/apputils-extension": ^4.3.2 - "@jupyterlab/attachments": ^4.3.2 - "@jupyterlab/cell-toolbar": ^4.3.2 - "@jupyterlab/cell-toolbar-extension": ^4.3.2 - "@jupyterlab/cells": ^4.3.2 - "@jupyterlab/celltags-extension": ^4.3.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/codemirror": ^4.3.2 - "@jupyterlab/codemirror-extension": ^4.3.2 - "@jupyterlab/completer": ^4.3.2 - "@jupyterlab/completer-extension": ^4.3.2 - "@jupyterlab/console": ^4.3.2 - "@jupyterlab/console-extension": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/csvviewer": ^4.3.2 - "@jupyterlab/csvviewer-extension": ^4.3.2 - "@jupyterlab/debugger": ^4.3.2 - "@jupyterlab/debugger-extension": ^4.3.2 - "@jupyterlab/docmanager": ^4.3.2 - "@jupyterlab/docmanager-extension": ^4.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/documentsearch": ^4.3.2 - "@jupyterlab/documentsearch-extension": ^4.3.2 - "@jupyterlab/extensionmanager": ^4.3.2 - "@jupyterlab/extensionmanager-extension": ^4.3.2 - "@jupyterlab/filebrowser": ^4.3.2 - "@jupyterlab/filebrowser-extension": ^4.3.2 - "@jupyterlab/fileeditor": ^4.3.2 - "@jupyterlab/fileeditor-extension": ^4.3.2 - "@jupyterlab/help-extension": ^4.3.2 - "@jupyterlab/htmlviewer": ^4.3.2 - "@jupyterlab/htmlviewer-extension": ^4.3.2 - "@jupyterlab/hub-extension": ^4.3.2 - "@jupyterlab/imageviewer": ^4.3.2 - "@jupyterlab/imageviewer-extension": ^4.3.2 - "@jupyterlab/inspector": ^4.3.2 - "@jupyterlab/inspector-extension": ^4.3.2 - "@jupyterlab/javascript-extension": ^4.3.2 - "@jupyterlab/json-extension": ^4.3.2 - "@jupyterlab/launcher": ^4.3.2 - "@jupyterlab/launcher-extension": ^4.3.2 - "@jupyterlab/logconsole": ^4.3.2 - "@jupyterlab/logconsole-extension": ^4.3.2 - "@jupyterlab/lsp": ^4.3.2 - "@jupyterlab/lsp-extension": ^4.3.2 - "@jupyterlab/mainmenu": ^4.3.2 - "@jupyterlab/mainmenu-extension": ^4.3.2 - "@jupyterlab/markdownviewer": ^4.3.2 - "@jupyterlab/markdownviewer-extension": ^4.3.2 - "@jupyterlab/markedparser-extension": ^4.3.2 - "@jupyterlab/mathjax-extension": ^4.3.2 - "@jupyterlab/mermaid": ^4.3.2 - "@jupyterlab/mermaid-extension": ^4.3.2 - "@jupyterlab/metadataform": ^4.3.2 - "@jupyterlab/metadataform-extension": ^4.3.2 - "@jupyterlab/nbconvert-css": ^4.3.2 - "@jupyterlab/nbformat": ^4.3.2 - "@jupyterlab/notebook": ^4.3.2 - "@jupyterlab/notebook-extension": ^4.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/outputarea": ^4.3.2 - "@jupyterlab/pdf-extension": ^4.3.2 - "@jupyterlab/pluginmanager": ^4.3.2 - "@jupyterlab/pluginmanager-extension": ^4.3.2 - "@jupyterlab/property-inspector": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/rendermime-extension": ^4.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 - "@jupyterlab/running": ^4.3.2 - "@jupyterlab/running-extension": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/settingeditor": ^4.3.2 - "@jupyterlab/settingeditor-extension": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/shortcuts-extension": ^5.1.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/statusbar": ^4.3.2 - "@jupyterlab/statusbar-extension": ^4.3.2 - "@jupyterlab/terminal": ^4.3.2 - "@jupyterlab/terminal-extension": ^4.3.2 - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/theme-dark-extension": ^4.3.2 - "@jupyterlab/theme-dark-high-contrast-extension": ^4.3.2 - "@jupyterlab/theme-light-extension": ^4.3.2 - "@jupyterlab/toc": ^6.3.2 - "@jupyterlab/toc-extension": ^6.3.2 - "@jupyterlab/tooltip": ^4.3.2 - "@jupyterlab/tooltip-extension": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/translation-extension": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 - "@jupyterlab/ui-components-extension": ^4.3.2 - "@jupyterlab/vega5-extension": ^4.3.2 - "@jupyterlab/workspaces": ^4.3.2 - "@jupyterlab/workspaces-extension": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/application-extension": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/apputils-extension": ^4.3.3 + "@jupyterlab/attachments": ^4.3.3 + "@jupyterlab/cell-toolbar": ^4.3.3 + "@jupyterlab/cell-toolbar-extension": ^4.3.3 + "@jupyterlab/cells": ^4.3.3 + "@jupyterlab/celltags-extension": ^4.3.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/codemirror": ^4.3.3 + "@jupyterlab/codemirror-extension": ^4.3.3 + "@jupyterlab/completer": ^4.3.3 + "@jupyterlab/completer-extension": ^4.3.3 + "@jupyterlab/console": ^4.3.3 + "@jupyterlab/console-extension": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/csvviewer": ^4.3.3 + "@jupyterlab/csvviewer-extension": ^4.3.3 + "@jupyterlab/debugger": ^4.3.3 + "@jupyterlab/debugger-extension": ^4.3.3 + "@jupyterlab/docmanager": ^4.3.3 + "@jupyterlab/docmanager-extension": ^4.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/documentsearch": ^4.3.3 + "@jupyterlab/documentsearch-extension": ^4.3.3 + "@jupyterlab/extensionmanager": ^4.3.3 + "@jupyterlab/extensionmanager-extension": ^4.3.3 + "@jupyterlab/filebrowser": ^4.3.3 + "@jupyterlab/filebrowser-extension": ^4.3.3 + "@jupyterlab/fileeditor": ^4.3.3 + "@jupyterlab/fileeditor-extension": ^4.3.3 + "@jupyterlab/help-extension": ^4.3.3 + "@jupyterlab/htmlviewer": ^4.3.3 + "@jupyterlab/htmlviewer-extension": ^4.3.3 + "@jupyterlab/hub-extension": ^4.3.3 + "@jupyterlab/imageviewer": ^4.3.3 + "@jupyterlab/imageviewer-extension": ^4.3.3 + "@jupyterlab/inspector": ^4.3.3 + "@jupyterlab/inspector-extension": ^4.3.3 + "@jupyterlab/javascript-extension": ^4.3.3 + "@jupyterlab/json-extension": ^4.3.3 + "@jupyterlab/launcher": ^4.3.3 + "@jupyterlab/launcher-extension": ^4.3.3 + "@jupyterlab/logconsole": ^4.3.3 + "@jupyterlab/logconsole-extension": ^4.3.3 + "@jupyterlab/lsp": ^4.3.3 + "@jupyterlab/lsp-extension": ^4.3.3 + "@jupyterlab/mainmenu": ^4.3.3 + "@jupyterlab/mainmenu-extension": ^4.3.3 + "@jupyterlab/markdownviewer": ^4.3.3 + "@jupyterlab/markdownviewer-extension": ^4.3.3 + "@jupyterlab/markedparser-extension": ^4.3.3 + "@jupyterlab/mathjax-extension": ^4.3.3 + "@jupyterlab/mermaid": ^4.3.3 + "@jupyterlab/mermaid-extension": ^4.3.3 + "@jupyterlab/metadataform": ^4.3.3 + "@jupyterlab/metadataform-extension": ^4.3.3 + "@jupyterlab/nbconvert-css": ^4.3.3 + "@jupyterlab/nbformat": ^4.3.3 + "@jupyterlab/notebook": ^4.3.3 + "@jupyterlab/notebook-extension": ^4.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/outputarea": ^4.3.3 + "@jupyterlab/pdf-extension": ^4.3.3 + "@jupyterlab/pluginmanager": ^4.3.3 + "@jupyterlab/pluginmanager-extension": ^4.3.3 + "@jupyterlab/property-inspector": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/rendermime-extension": ^4.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 + "@jupyterlab/running": ^4.3.3 + "@jupyterlab/running-extension": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/settingeditor": ^4.3.3 + "@jupyterlab/settingeditor-extension": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/shortcuts-extension": ^5.1.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/statusbar": ^4.3.3 + "@jupyterlab/statusbar-extension": ^4.3.3 + "@jupyterlab/terminal": ^4.3.3 + "@jupyterlab/terminal-extension": ^4.3.3 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/theme-dark-extension": ^4.3.3 + "@jupyterlab/theme-dark-high-contrast-extension": ^4.3.3 + "@jupyterlab/theme-light-extension": ^4.3.3 + "@jupyterlab/toc": ^6.3.3 + "@jupyterlab/toc-extension": ^6.3.3 + "@jupyterlab/tooltip": ^4.3.3 + "@jupyterlab/tooltip-extension": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/translation-extension": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 + "@jupyterlab/ui-components-extension": ^4.3.3 + "@jupyterlab/vega5-extension": ^4.3.3 + "@jupyterlab/workspaces": ^4.3.3 + "@jupyterlab/workspaces-extension": ^4.3.3 "@types/jest": ^29.2.0 fs-extra: ^10.1.0 jest: ^29.2.0 @@ -4123,8 +4123,8 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/mock-consumer@workspace:jupyterlab/tests/mock_packages/interop/consumer" dependencies: - "@jupyterlab/builder": ^4.3.2 - "@jupyterlab/mock-token": ^4.3.2 + "@jupyterlab/builder": ^4.3.3 + "@jupyterlab/mock-token": ^4.3.3 languageName: unknown linkType: soft @@ -4132,8 +4132,8 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/mock-extension@workspace:jupyterlab/tests/mock_packages/extension" dependencies: - "@jupyterlab/builder": ^4.3.2 - "@jupyterlab/launcher": ^4.3.2 + "@jupyterlab/builder": ^4.3.3 + "@jupyterlab/launcher": ^4.3.3 languageName: unknown linkType: soft @@ -4141,12 +4141,12 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/mock-provider@workspace:jupyterlab/tests/mock_packages/interop/provider" dependencies: - "@jupyterlab/builder": ^4.3.2 - "@jupyterlab/mock-token": ^4.3.2 + "@jupyterlab/builder": ^4.3.3 + "@jupyterlab/mock-token": ^4.3.3 languageName: unknown linkType: soft -"@jupyterlab/mock-token@^4.3.2, @jupyterlab/mock-token@workspace:jupyterlab/tests/mock_packages/interop/token": +"@jupyterlab/mock-token@^4.3.3, @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: @@ -4154,17 +4154,17 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/nbconvert-css@^4.3.2, @jupyterlab/nbconvert-css@workspace:packages/nbconvert-css": +"@jupyterlab/nbconvert-css@^4.3.3, @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.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/cells": ^4.3.2 - "@jupyterlab/codemirror": ^4.3.2 - "@jupyterlab/notebook": ^4.3.2 - "@jupyterlab/outputarea": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/cells": ^4.3.3 + "@jupyterlab/codemirror": ^4.3.3 + "@jupyterlab/notebook": ^4.3.3 + "@jupyterlab/outputarea": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 css-loader: ^6.7.1 mini-css-extract-plugin: ^2.7.0 null-loader: ^4.0.0 @@ -4174,11 +4174,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/nbformat@^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@^4.3.2, @jupyterlab/nbformat@workspace:packages/nbformat": +"@jupyterlab/nbformat@^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@^4.3.3, @jupyterlab/nbformat@workspace:packages/nbformat": version: 0.0.0-use.local resolution: "@jupyterlab/nbformat@workspace:packages/nbformat" dependencies: - "@jupyterlab/testing": ^4.3.2 + "@jupyterlab/testing": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@types/jest": ^29.2.0 jest: ^29.2.0 @@ -4187,40 +4187,40 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/notebook-extension@^4.3.2, @jupyterlab/notebook-extension@workspace:packages/notebook-extension, @jupyterlab/notebook-extension@~4.3.2": +"@jupyterlab/notebook-extension@^4.3.3, @jupyterlab/notebook-extension@workspace:packages/notebook-extension, @jupyterlab/notebook-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/notebook-extension@workspace:packages/notebook-extension" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/cells": ^4.3.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/codemirror": ^4.3.2 - "@jupyterlab/completer": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docmanager": ^4.3.2 - "@jupyterlab/docmanager-extension": ^4.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/documentsearch": ^4.3.2 - "@jupyterlab/filebrowser": ^4.3.2 - "@jupyterlab/launcher": ^4.3.2 - "@jupyterlab/logconsole": ^4.3.2 - "@jupyterlab/lsp": ^4.3.2 - "@jupyterlab/mainmenu": ^4.3.2 - "@jupyterlab/metadataform": ^4.3.2 - "@jupyterlab/nbformat": ^4.3.2 - "@jupyterlab/notebook": ^4.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/property-inspector": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/statusbar": ^4.3.2 - "@jupyterlab/toc": ^6.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/cells": ^4.3.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/codemirror": ^4.3.3 + "@jupyterlab/completer": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docmanager": ^4.3.3 + "@jupyterlab/docmanager-extension": ^4.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/documentsearch": ^4.3.3 + "@jupyterlab/filebrowser": ^4.3.3 + "@jupyterlab/launcher": ^4.3.3 + "@jupyterlab/logconsole": ^4.3.3 + "@jupyterlab/lsp": ^4.3.3 + "@jupyterlab/mainmenu": ^4.3.3 + "@jupyterlab/metadataform": ^4.3.3 + "@jupyterlab/nbformat": ^4.3.3 + "@jupyterlab/notebook": ^4.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/property-inspector": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/statusbar": ^4.3.3 + "@jupyterlab/toc": ^6.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -4235,29 +4235,29 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/notebook@^4.3.2, @jupyterlab/notebook@workspace:packages/notebook": +"@jupyterlab/notebook@^4.3.3, @jupyterlab/notebook@workspace:packages/notebook": version: 0.0.0-use.local resolution: "@jupyterlab/notebook@workspace:packages/notebook" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/cells": ^4.3.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/codemirror": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/documentsearch": ^4.3.2 - "@jupyterlab/lsp": ^4.3.2 - "@jupyterlab/nbformat": ^4.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/statusbar": ^4.3.2 - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/toc": ^6.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/cells": ^4.3.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/codemirror": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/documentsearch": ^4.3.3 + "@jupyterlab/lsp": ^4.3.3 + "@jupyterlab/nbformat": ^4.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/statusbar": ^4.3.3 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/toc": ^6.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -4277,11 +4277,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/observables@^5.3.2, @jupyterlab/observables@workspace:packages/observables": +"@jupyterlab/observables@^5.3.3, @jupyterlab/observables@workspace:packages/observables": version: 0.0.0-use.local resolution: "@jupyterlab/observables@workspace:packages/observables" dependencies: - "@jupyterlab/testing": ^4.3.2 + "@jupyterlab/testing": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -4294,18 +4294,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/outputarea@^4.3.2, @jupyterlab/outputarea@workspace:packages/outputarea": +"@jupyterlab/outputarea@^4.3.3, @jupyterlab/outputarea@workspace:packages/outputarea": version: 0.0.0-use.local resolution: "@jupyterlab/outputarea@workspace:packages/outputarea" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/nbformat": ^4.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/nbformat": ^4.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -4320,11 +4320,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/pdf-extension@^4.3.2, @jupyterlab/pdf-extension@workspace:packages/pdf-extension, @jupyterlab/pdf-extension@~4.3.2": +"@jupyterlab/pdf-extension@^4.3.3, @jupyterlab/pdf-extension@workspace:packages/pdf-extension, @jupyterlab/pdf-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/pdf-extension@workspace:packages/pdf-extension" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.11.2 + "@jupyterlab/rendermime-interfaces": ^3.11.3 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/widgets": ^2.5.0 @@ -4333,32 +4333,32 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/pluginmanager-extension@^4.3.2, @jupyterlab/pluginmanager-extension@workspace:packages/pluginmanager-extension, @jupyterlab/pluginmanager-extension@~4.3.2": +"@jupyterlab/pluginmanager-extension@^4.3.3, @jupyterlab/pluginmanager-extension@workspace:packages/pluginmanager-extension, @jupyterlab/pluginmanager-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/pluginmanager-extension@workspace:packages/pluginmanager-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/pluginmanager": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/pluginmanager": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/pluginmanager@^4.3.2, @jupyterlab/pluginmanager@workspace:packages/pluginmanager": +"@jupyterlab/pluginmanager@^4.3.3, @jupyterlab/pluginmanager@workspace:packages/pluginmanager": version: 0.0.0-use.local resolution: "@jupyterlab/pluginmanager@workspace:packages/pluginmanager" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.5.0 @@ -4370,13 +4370,13 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/property-inspector@^4.3.2, @jupyterlab/property-inspector@workspace:packages/property-inspector": +"@jupyterlab/property-inspector@^4.3.3, @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.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/signaling": ^2.1.3 @@ -4388,21 +4388,21 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/rendermime-extension@^4.3.2, @jupyterlab/rendermime-extension@workspace:packages/rendermime-extension, @jupyterlab/rendermime-extension@~4.3.2": +"@jupyterlab/rendermime-extension@^4.3.3, @jupyterlab/rendermime-extension@workspace:packages/rendermime-extension, @jupyterlab/rendermime-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/rendermime-extension@workspace:packages/rendermime-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/docmanager": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/docmanager": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/rendermime-interfaces@^3.11.2, @jupyterlab/rendermime-interfaces@workspace:packages/rendermime-interfaces": +"@jupyterlab/rendermime-interfaces@^3.11.3, @jupyterlab/rendermime-interfaces@workspace:packages/rendermime-interfaces": version: 0.0.0-use.local resolution: "@jupyterlab/rendermime-interfaces@workspace:packages/rendermime-interfaces" dependencies: @@ -4413,18 +4413,18 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/rendermime@^4.3.2, @jupyterlab/rendermime@workspace:packages/rendermime": +"@jupyterlab/rendermime@^4.3.3, @jupyterlab/rendermime@workspace:packages/rendermime": version: 0.0.0-use.local resolution: "@jupyterlab/rendermime@workspace:packages/rendermime" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/nbformat": ^4.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/nbformat": ^4.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 @@ -4463,21 +4463,21 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/running-extension@^4.3.2, @jupyterlab/running-extension@workspace:packages/running-extension, @jupyterlab/running-extension@~4.3.2": +"@jupyterlab/running-extension@^4.3.3, @jupyterlab/running-extension@workspace:packages/running-extension, @jupyterlab/running-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/running-extension@workspace:packages/running-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docmanager": ^4.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 - "@jupyterlab/running": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docmanager": ^4.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 + "@jupyterlab/running": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/commands": ^2.3.1 "@lumino/polling": ^2.1.3 "@lumino/signaling": ^2.1.3 @@ -4488,15 +4488,15 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/running@^4.3.2, @jupyterlab/running@workspace:packages/running": +"@jupyterlab/running@^4.3.3, @jupyterlab/running@workspace:packages/running": version: 0.0.0-use.local resolution: "@jupyterlab/running@workspace:packages/running" dependencies: "@jupyter/react-components": ^0.16.6 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/domutils": ^2.0.2 @@ -4509,16 +4509,16 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/services@^7.3.2, @jupyterlab/services@workspace:packages/services": +"@jupyterlab/services@^7.3.3, @jupyterlab/services@workspace:packages/services": version: 0.0.0-use.local resolution: "@jupyterlab/services@workspace:packages/services" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/nbformat": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/testing": ^4.3.2 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/nbformat": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/testing": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/polling": ^2.1.3 @@ -4535,40 +4535,40 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/settingeditor-extension@^4.3.2, @jupyterlab/settingeditor-extension@workspace:packages/settingeditor-extension, @jupyterlab/settingeditor-extension@~4.3.2": +"@jupyterlab/settingeditor-extension@^4.3.3, @jupyterlab/settingeditor-extension@workspace:packages/settingeditor-extension, @jupyterlab/settingeditor-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/settingeditor-extension@workspace:packages/settingeditor-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/pluginmanager": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/settingeditor": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/pluginmanager": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/settingeditor": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/disposable": ^2.1.3 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/settingeditor@^4.3.2, @jupyterlab/settingeditor@workspace:packages/settingeditor": +"@jupyterlab/settingeditor@^4.3.3, @jupyterlab/settingeditor@workspace:packages/settingeditor": version: 0.0.0-use.local resolution: "@jupyterlab/settingeditor@workspace:packages/settingeditor" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/inspector": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/inspector": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -4593,13 +4593,13 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/settingregistry@^4.3.2, @jupyterlab/settingregistry@workspace:packages/settingregistry": +"@jupyterlab/settingregistry@^4.3.3, @jupyterlab/settingregistry@workspace:packages/settingregistry": version: 0.0.0-use.local resolution: "@jupyterlab/settingregistry@workspace:packages/settingregistry" dependencies: - "@jupyterlab/nbformat": ^4.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/testing": ^4.3.2 + "@jupyterlab/nbformat": ^4.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/testing": ^4.3.3 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -4616,15 +4616,15 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/shortcuts-extension@^5.1.2, @jupyterlab/shortcuts-extension@workspace:packages/shortcuts-extension, @jupyterlab/shortcuts-extension@~5.1.2": +"@jupyterlab/shortcuts-extension@^5.1.3, @jupyterlab/shortcuts-extension@workspace:packages/shortcuts-extension, @jupyterlab/shortcuts-extension@~5.1.3": version: 0.0.0-use.local resolution: "@jupyterlab/shortcuts-extension@workspace:packages/shortcuts-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -4640,11 +4640,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/statedb@^4.3.2, @jupyterlab/statedb@workspace:packages/statedb": +"@jupyterlab/statedb@^4.3.3, @jupyterlab/statedb@workspace:packages/statedb": version: 0.0.0-use.local resolution: "@jupyterlab/statedb@workspace:packages/statedb" dependencies: - "@jupyterlab/testing": ^4.3.2 + "@jupyterlab/testing": ^4.3.3 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -4657,15 +4657,15 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/statusbar-extension@^4.3.2, @jupyterlab/statusbar-extension@workspace:packages/statusbar-extension, @jupyterlab/statusbar-extension@~4.3.2": +"@jupyterlab/statusbar-extension@^4.3.3, @jupyterlab/statusbar-extension@workspace:packages/statusbar-extension, @jupyterlab/statusbar-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/statusbar-extension@workspace:packages/statusbar-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/statusbar": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/statusbar": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 "@types/react": ^18.0.26 "@types/react-dom": ^18.0.9 rimraf: ~5.0.5 @@ -4673,12 +4673,12 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/statusbar@^4.3.2, @jupyterlab/statusbar@workspace:packages/statusbar": +"@jupyterlab/statusbar@^4.3.3, @jupyterlab/statusbar@workspace:packages/statusbar": version: 0.0.0-use.local resolution: "@jupyterlab/statusbar@workspace:packages/statusbar" dependencies: - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 @@ -4697,27 +4697,27 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyterlab/template@workspace:buildutils/template" dependencies: - "@jupyterlab/testing": ^4.3.2 + "@jupyterlab/testing": ^4.3.3 "@types/jest": ^29.2.0 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/terminal-extension@^4.3.2, @jupyterlab/terminal-extension@workspace:packages/terminal-extension, @jupyterlab/terminal-extension@~4.3.2": +"@jupyterlab/terminal-extension@^4.3.3, @jupyterlab/terminal-extension@workspace:packages/terminal-extension, @jupyterlab/terminal-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/terminal-extension@workspace:packages/terminal-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/launcher": ^4.3.2 - "@jupyterlab/mainmenu": ^4.3.2 - "@jupyterlab/running": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/terminal": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/launcher": ^4.3.3 + "@jupyterlab/mainmenu": ^4.3.3 + "@jupyterlab/running": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/terminal": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/widgets": ^2.5.0 "@types/webpack-env": ^1.18.0 rimraf: ~5.0.5 @@ -4725,14 +4725,14 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/terminal@^4.3.2, @jupyterlab/terminal@workspace:packages/terminal": +"@jupyterlab/terminal@^4.3.3, @jupyterlab/terminal@workspace:packages/terminal": version: 0.0.0-use.local resolution: "@jupyterlab/terminal@workspace:packages/terminal" dependencies: - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/domutils": ^2.0.2 "@lumino/messaging": ^2.0.2 @@ -4750,13 +4750,13 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/testing@^4.3.2, @jupyterlab/testing@workspace:packages/testing": +"@jupyterlab/testing@^4.3.3, @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.3.2 + "@jupyterlab/coreutils": ^6.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/signaling": ^2.1.3 "@types/jest": ^29.2.0 @@ -4776,84 +4776,84 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/testutils@^4.3.2, @jupyterlab/testutils@workspace:testutils": +"@jupyterlab/testutils@^4.3.3, @jupyterlab/testutils@workspace:testutils": version: 0.0.0-use.local resolution: "@jupyterlab/testutils@workspace:testutils" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/notebook": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/testing": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/notebook": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/testing": ^4.3.3 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/theme-dark-extension@^4.3.2, @jupyterlab/theme-dark-extension@workspace:packages/theme-dark-extension, @jupyterlab/theme-dark-extension@~4.3.2": +"@jupyterlab/theme-dark-extension@^4.3.3, @jupyterlab/theme-dark-extension@workspace:packages/theme-dark-extension, @jupyterlab/theme-dark-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/theme-dark-extension@workspace:packages/theme-dark-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/translation": ^4.3.3 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/theme-dark-high-contrast-extension@^4.3.2, @jupyterlab/theme-dark-high-contrast-extension@workspace:packages/theme-dark-high-contrast-extension, @jupyterlab/theme-dark-high-contrast-extension@~4.3.2": +"@jupyterlab/theme-dark-high-contrast-extension@^4.3.3, @jupyterlab/theme-dark-high-contrast-extension@workspace:packages/theme-dark-high-contrast-extension, @jupyterlab/theme-dark-high-contrast-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/theme-dark-high-contrast-extension@workspace:packages/theme-dark-high-contrast-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/translation": ^4.3.3 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/theme-light-extension@^4.3.2, @jupyterlab/theme-light-extension@workspace:packages/theme-light-extension, @jupyterlab/theme-light-extension@~4.3.2": +"@jupyterlab/theme-light-extension@^4.3.3, @jupyterlab/theme-light-extension@workspace:packages/theme-light-extension, @jupyterlab/theme-light-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/theme-light-extension@workspace:packages/theme-light-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/translation": ^4.3.3 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/toc-extension@^6.3.2, @jupyterlab/toc-extension@workspace:packages/toc-extension, @jupyterlab/toc-extension@~6.3.2": +"@jupyterlab/toc-extension@^6.3.3, @jupyterlab/toc-extension@workspace:packages/toc-extension, @jupyterlab/toc-extension@~6.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/toc-extension@workspace:packages/toc-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/toc": ^6.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/toc": ^6.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/toc@^6.3.2, @jupyterlab/toc@workspace:packages/toc": +"@jupyterlab/toc@^6.3.3, @jupyterlab/toc@workspace:packages/toc": version: 0.0.0-use.local resolution: "@jupyterlab/toc@workspace:packages/toc" dependencies: "@jupyter/react-components": ^0.16.6 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/docregistry": ^4.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/docregistry": ^4.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/messaging": ^2.0.2 @@ -4868,20 +4868,20 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/tooltip-extension@^4.3.2, @jupyterlab/tooltip-extension@workspace:packages/tooltip-extension, @jupyterlab/tooltip-extension@~4.3.2": +"@jupyterlab/tooltip-extension@^4.3.3, @jupyterlab/tooltip-extension@workspace:packages/tooltip-extension, @jupyterlab/tooltip-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/tooltip-extension@workspace:packages/tooltip-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/console": ^4.3.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/fileeditor": ^4.3.2 - "@jupyterlab/notebook": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/tooltip": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/console": ^4.3.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/fileeditor": ^4.3.3 + "@jupyterlab/notebook": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/tooltip": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.5.0 @@ -4890,14 +4890,14 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/tooltip@^4.3.2, @jupyterlab/tooltip@workspace:packages/tooltip": +"@jupyterlab/tooltip@^4.3.3, @jupyterlab/tooltip@workspace:packages/tooltip": version: 0.0.0-use.local resolution: "@jupyterlab/tooltip@workspace:packages/tooltip" dependencies: - "@jupyterlab/codeeditor": ^4.3.2 - "@jupyterlab/rendermime": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/codeeditor": ^4.3.3 + "@jupyterlab/rendermime": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/ui-components": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/widgets": ^2.5.0 @@ -4906,29 +4906,29 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/translation-extension@^4.3.2, @jupyterlab/translation-extension@workspace:packages/translation-extension, @jupyterlab/translation-extension@~4.3.2": +"@jupyterlab/translation-extension@^4.3.3, @jupyterlab/translation-extension@workspace:packages/translation-extension, @jupyterlab/translation-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/translation-extension@workspace:packages/translation-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/mainmenu": ^4.3.2 - "@jupyterlab/settingregistry": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/mainmenu": ^4.3.3 + "@jupyterlab/settingregistry": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/translation@^4.3.2, @jupyterlab/translation@workspace:packages/translation": +"@jupyterlab/translation@^4.3.3, @jupyterlab/translation@workspace:packages/translation": version: 0.0.0-use.local resolution: "@jupyterlab/translation@workspace:packages/translation" dependencies: - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/testing": ^4.3.2 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/testing": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@types/jest": ^29.2.0 jest: ^29.2.0 @@ -4937,28 +4937,28 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/ui-components-extension@^4.3.2, @jupyterlab/ui-components-extension@workspace:packages/ui-components-extension, @jupyterlab/ui-components-extension@~4.3.2": +"@jupyterlab/ui-components-extension@^4.3.3, @jupyterlab/ui-components-extension@workspace:packages/ui-components-extension, @jupyterlab/ui-components-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/ui-components-extension@workspace:packages/ui-components-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/ui-components@^4.3.2, @jupyterlab/ui-components@workspace:packages/ui-components": +"@jupyterlab/ui-components@^4.3.3, @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.16.6 "@jupyter/web-components": ^0.16.6 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/observables": ^5.3.2 - "@jupyterlab/rendermime-interfaces": ^3.11.2 - "@jupyterlab/testing": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/observables": ^5.3.3 + "@jupyterlab/rendermime-interfaces": ^3.11.3 + "@jupyterlab/testing": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 @@ -4985,12 +4985,12 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/vega5-extension@^4.3.2, @jupyterlab/vega5-extension@workspace:packages/vega5-extension, @jupyterlab/vega5-extension@~4.3.2": +"@jupyterlab/vega5-extension@^4.3.3, @jupyterlab/vega5-extension@workspace:packages/vega5-extension, @jupyterlab/vega5-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/vega5-extension@workspace:packages/vega5-extension" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.11.2 - "@jupyterlab/testutils": ^4.3.2 + "@jupyterlab/rendermime-interfaces": ^3.11.3 + "@jupyterlab/testutils": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.5.0 "@types/jest": ^29.2.0 @@ -5005,32 +5005,32 @@ __metadata: languageName: unknown linkType: soft -"@jupyterlab/workspaces-extension@^4.3.2, @jupyterlab/workspaces-extension@workspace:packages/workspaces-extension, @jupyterlab/workspaces-extension@~4.3.2": +"@jupyterlab/workspaces-extension@^4.3.3, @jupyterlab/workspaces-extension@workspace:packages/workspaces-extension, @jupyterlab/workspaces-extension@~4.3.3": version: 0.0.0-use.local resolution: "@jupyterlab/workspaces-extension@workspace:packages/workspaces-extension" dependencies: - "@jupyterlab/application": ^4.3.2 - "@jupyterlab/apputils": ^4.4.2 - "@jupyterlab/coreutils": ^6.3.2 - "@jupyterlab/filebrowser": ^4.3.2 - "@jupyterlab/running": ^4.3.2 - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/statedb": ^4.3.2 - "@jupyterlab/translation": ^4.3.2 - "@jupyterlab/ui-components": ^4.3.2 - "@jupyterlab/workspaces": ^4.3.2 + "@jupyterlab/application": ^4.3.3 + "@jupyterlab/apputils": ^4.4.3 + "@jupyterlab/coreutils": ^6.3.3 + "@jupyterlab/filebrowser": ^4.3.3 + "@jupyterlab/running": ^4.3.3 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/statedb": ^4.3.3 + "@jupyterlab/translation": ^4.3.3 + "@jupyterlab/ui-components": ^4.3.3 + "@jupyterlab/workspaces": ^4.3.3 "@types/jest": ^29.2.0 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/workspaces@^4.3.2, @jupyterlab/workspaces@workspace:packages/workspaces": +"@jupyterlab/workspaces@^4.3.3, @jupyterlab/workspaces@workspace:packages/workspaces": version: 0.0.0-use.local resolution: "@jupyterlab/workspaces@workspace:packages/workspaces" dependencies: - "@jupyterlab/services": ^7.3.2 - "@jupyterlab/testing": ^4.3.2 + "@jupyterlab/services": ^7.3.3 + "@jupyterlab/testing": ^4.3.3 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/polling": ^2.1.3 @@ -16125,7 +16125,7 @@ __metadata: version: 0.0.0-use.local resolution: "node-example@workspace:packages/services/examples/node" dependencies: - "@jupyterlab/services": ^7.3.2 + "@jupyterlab/services": ^7.3.3 rimraf: ~5.0.5 ws: ^8.11.0 languageName: unknown From ee8a17c4d474021c78a3b65f4adf0e1e4a777fab Mon Sep 17 00:00:00 2001 From: "Lumberbot (aka Jack)" <39504233+meeseeksmachine@users.noreply.github.com> Date: Tue, 10 Dec 2024 07:19:19 -0800 Subject: [PATCH 11/11] Backport PR #17065: Fix contrast for unselected search matches in Dark High Contrast theme (#17069) 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> --- packages/theme-dark-high-contrast-extension/style/variables.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/theme-dark-high-contrast-extension/style/variables.css b/packages/theme-dark-high-contrast-extension/style/variables.css index e3283ab067a0..ff3200f48e37 100644 --- a/packages/theme-dark-high-contrast-extension/style/variables.css +++ b/packages/theme-dark-high-contrast-extension/style/variables.css @@ -393,7 +393,7 @@ all of MD as it is not optimized for dense, information rich UIs. --jp-search-unselected-match-background-color: var( --jp-inverse-layout-color0 ); - --jp-search-unselected-match-color: var(--jp-ui-inverse-font-color0); + --jp-search-unselected-match-color: black; /* scrollbar related styles. Supports every browser except Edge. */