From 2a5577c3d7f01bea343054478d51b461160f6580 Mon Sep 17 00:00:00 2001 From: "Lumberbot (aka Jack)" <39504233+meeseeksmachine@users.noreply.github.com> Date: Mon, 2 Dec 2024 13:25:51 -0800 Subject: [PATCH 1/5] Backport PR #17000: Fix disappearing cells (heal offsets after updating estimated sizes) (#17025) 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> --- .../test/jupyterlab/windowed-notebook.test.ts | 49 +++++++++++++++++++ packages/notebook/src/windowing.ts | 2 +- .../src/components/windowedlist.ts | 9 +++- 3 files changed, 57 insertions(+), 3 deletions(-) diff --git a/galata/test/jupyterlab/windowed-notebook.test.ts b/galata/test/jupyterlab/windowed-notebook.test.ts index 19835e65aac5..cde2d69e0a97 100644 --- a/galata/test/jupyterlab/windowed-notebook.test.ts +++ b/galata/test/jupyterlab/windowed-notebook.test.ts @@ -398,6 +398,55 @@ test('should remove all cells including hidden outputs artifacts', async ({ expect(found).toEqual(false); }); +test('should display cells below on scrolling after inserting a cell on top', async ({ + page, + tmpPath +}) => { + // Regression test against "disappearing cells" issue: + // https://github.com/jupyterlab/jupyterlab/issues/16978 + await page.notebook.openByPath(`${tmpPath}/${fileName}`); + + const notebook = await page.notebook.getNotebookInPanelLocator()!; + const firstCell = notebook.locator('.jp-Cell[data-windowed-list-index="1"]'); + const lastCell = notebook.locator('.jp-Cell[data-windowed-list-index="18"]'); + await firstCell.waitFor(); + + const bbox = await notebook.boundingBox(); + await page.mouse.move(bbox!.x, bbox!.y); + + // Needs to be two separate mouse wheel events. + await page.mouse.wheel(0, 3000); + await page.mouse.wheel(0, 3000); + + // Scroll down to reveal last cell to ensure these all items have been measured... + await Promise.all([ + firstCell.waitFor({ state: 'hidden' }), + lastCell.waitFor() + ]); + + await page.mouse.wheel(0, -3000); + await page.mouse.wheel(0, -3000); + + // ...then scroll back up and select first cell. + await Promise.all([ + lastCell.waitFor({ state: 'hidden' }), + firstCell.waitFor() + ]); + await page.notebook.selectCells(0); + + // Insert cell below. + await page.keyboard.press('b'); + await page.mouse.wheel(0, 3000); + await page.mouse.wheel(0, 3000); + + // Scroll down again. + await Promise.all([ + firstCell.waitFor({ state: 'hidden' }), + lastCell.waitFor() + ]); + await expect(lastCell).toBeVisible(); +}); + test('should center on next cell after rendering markdown cell and advancing', async ({ page, tmpPath diff --git a/packages/notebook/src/windowing.ts b/packages/notebook/src/windowing.ts index 4b7204f9b88a..8d11d204ecbf 100644 --- a/packages/notebook/src/windowing.ts +++ b/packages/notebook/src/windowing.ts @@ -58,7 +58,7 @@ export class NotebookViewModel extends WindowedListModel { const nLines = model.sharedModel.getSource().split('\n').length; let outputsLines = 0; - if (model instanceof CodeCellModel) { + if (model instanceof CodeCellModel && !model.isDisposed) { for (let outputIdx = 0; outputIdx < model.outputs.length; outputIdx++) { const output = model.outputs.get(outputIdx); const data = output.data['text/plain']; diff --git a/packages/ui-components/src/components/windowedlist.ts b/packages/ui-components/src/components/windowedlist.ts index 782cb6ba3f86..bdfdb839c9b5 100644 --- a/packages/ui-components/src/components/windowedlist.ts +++ b/packages/ui-components/src/components/windowedlist.ts @@ -663,8 +663,13 @@ export abstract class WindowedListModel implements WindowedList.IModel { offset += size; } - - this._measuredAllUntilIndex = index; + // Because the loop above updates estimated sizes, + // we need to fix (heal) offsets of the remaining items. + for (let i = index + 1; i < this._widgetSizers.length; i++) { + const sizer = this._widgetSizers[i]; + const previous = this._widgetSizers[i - 1]; + sizer.offset = previous.offset + previous.size; + } } for (let i = 0; i <= this._measuredAllUntilIndex; i++) { From 21bdfee0a89891b2dbf620aaaa4beba60cbdabd6 Mon Sep 17 00:00:00 2001 From: "Lumberbot (aka Jack)" <39504233+meeseeksmachine@users.noreply.github.com> Date: Tue, 3 Dec 2024 02:28:16 -0800 Subject: [PATCH 2/5] Backport PR #17005: Fixing missed first keystroke on Ctrl+F (#17029) Co-authored-by: Vishnutheep B --- galata/test/jupyterlab/notebook-search.test.ts | 10 ++++++++++ packages/documentsearch/src/searchmodel.ts | 9 ++------- packages/documentsearch/src/searchview.tsx | 11 ++++++++++- packages/documentsearch/test/searchmodel.spec.ts | 5 ----- 4 files changed, 22 insertions(+), 13 deletions(-) diff --git a/galata/test/jupyterlab/notebook-search.test.ts b/galata/test/jupyterlab/notebook-search.test.ts index 45521fd4aac2..de0b76a7a0f5 100644 --- a/galata/test/jupyterlab/notebook-search.test.ts +++ b/galata/test/jupyterlab/notebook-search.test.ts @@ -67,6 +67,16 @@ test.describe('Notebook Search', () => { await expect(page.locator('[placeholder="Find"]')).toHaveValue('1234'); }); + test('Consecutive searches in the search box', async ({ page }) => { + await page.keyboard.press('Control+f'); + + await page.fill('[placeholder="Find"]', 'jupyter'); + await page.keyboard.press('Control+f'); + await page.locator('[placeholder="Find"]').pressSequentially('jupyter'); + + await expect(page.locator('[placeholder="Find"]')).toHaveValue('jupyter'); + }); + test('RegExp parsing failure', async ({ page }) => { await page.keyboard.press('Control+f'); diff --git a/packages/documentsearch/src/searchmodel.ts b/packages/documentsearch/src/searchmodel.ts index 6b12c790091c..af9353695d1e 100644 --- a/packages/documentsearch/src/searchmodel.ts +++ b/packages/documentsearch/src/searchmodel.ts @@ -104,13 +104,8 @@ export class SearchDocumentModel return this._initialQuery; } set initialQuery(v: string) { - if (v) { - // Usually the value comes from user selection (set by search provider). - this._initialQuery = v; - } else { - // If user selection is empty, we fall back to most recent value (if any). - this._initialQuery = this._searchExpression; - } + // The value comes from user selection (set by search provider). + this._initialQuery = v; } /** diff --git a/packages/documentsearch/src/searchview.tsx b/packages/documentsearch/src/searchview.tsx index 39909578c40f..7fd8cbf67b9e 100644 --- a/packages/documentsearch/src/searchview.tsx +++ b/packages/documentsearch/src/searchview.tsx @@ -64,6 +64,7 @@ interface ISearchInputProps { onChange: (e: React.ChangeEvent) => void; autoFocus: boolean; autoUpdate: boolean; + lastSearchText?: string; } /** @@ -128,7 +129,7 @@ function SearchInput(props: ISearchInputProps): JSX.Element { tabIndex={0} ref={props.inputRef} title={props.title} - defaultValue={props.initialValue} + defaultValue={props.initialValue || props.lastSearchText} autoFocus={props.autoFocus} > @@ -146,6 +147,7 @@ interface ISearchEntryProps { useRegex: boolean; wholeWords: boolean; initialSearchText: string; + lastSearchText: string; translator?: ITranslator; } @@ -175,6 +177,7 @@ function SearchEntry(props: ISearchEntryProps): JSX.Element { onKeyDown={e => props.onKeydown(e)} inputRef={props.inputRef} initialValue={props.initialSearchText} + lastSearchText={props.lastSearchText} title={trans.__('Find')} autoFocus={true} autoUpdate={true} @@ -470,6 +473,10 @@ interface ISearchOverlayProps { * The text in the search entry */ initialSearchText: string; + /** + * The last searched query used to prepopulate the search field when the widget is reopened. + */ + lastSearchText: string; /** * Search input reference. */ @@ -728,6 +735,7 @@ class SearchOverlay extends React.Component { this._onSearchChange(e) } initialSearchText={this.props.initialSearchText} + lastSearchText={this.props.lastSearchText} translator={this.translator} /> {filterToggle} @@ -913,6 +921,7 @@ export class SearchDocumentView extends VDomRenderer { replaceOptionsSupport={this.model.replaceOptionsSupport} replaceText={this.model.replaceText} initialSearchText={this.model.initialQuery} + lastSearchText={this.model.searchExpression} searchInputRef={ this._searchInput as React.RefObject } diff --git a/packages/documentsearch/test/searchmodel.spec.ts b/packages/documentsearch/test/searchmodel.spec.ts index 94f67eeb6d50..b8651fc1a6c7 100644 --- a/packages/documentsearch/test/searchmodel.spec.ts +++ b/packages/documentsearch/test/searchmodel.spec.ts @@ -109,11 +109,6 @@ describe('documentsearch/searchmodel', () => { model.initialQuery = 'externally-set-query'; expect(model.initialQuery).toEqual('externally-set-query'); }); - it('should fallback to previous search expression on empty value in setter', () => { - model.searchExpression = 'search-expression'; - model.initialQuery = ''; - expect(model.initialQuery).toEqual('search-expression'); - }); it('should remember last query', async () => { model.initialQuery = 'query'; expect(model.initialQuery).toEqual('query'); From b0010902b7e1c2e093e9a76fc64923a55989d8e6 Mon Sep 17 00:00:00 2001 From: "Lumberbot (aka Jack)" <39504233+meeseeksmachine@users.noreply.github.com> Date: Tue, 3 Dec 2024 08:11:56 -0800 Subject: [PATCH 3/5] Backport PR #17022: Improve performance of rendering stdout/stderr (#17030) 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/rendermime/src/renderers.ts | 27 +++++++++++--- packages/rendermime/test/factories.spec.ts | 42 ++++++++++++++++++++++ 2 files changed, 65 insertions(+), 4 deletions(-) diff --git a/packages/rendermime/src/renderers.ts b/packages/rendermime/src/renderers.ts index 65c2a31331b5..b608c723fdd0 100644 --- a/packages/rendermime/src/renderers.ts +++ b/packages/rendermime/src/renderers.ts @@ -796,6 +796,19 @@ export function renderText(options: renderText.IRenderOptions): Promise { return Promise.resolve(undefined); } +/** + * Sanitize HTML out using native browser sanitizer. + * + * Compared to the `ISanitizer.sanitize` this does not allow to selectively + * allow to keep certain tags but escapes everything; on the other hand + * it is much faster as it uses platform-optimized code. + */ +function nativeSanitize(source: string): string { + const el = document.createElement('span'); + el.textContent = source; + return el.innerHTML; +} + /** * Render the textual representation into a host node. * @@ -808,10 +821,16 @@ function renderTextual( // Unpack the options. const { host, sanitizer, source } = options; - // Create the HTML content. - const content = sanitizer.sanitize(Private.ansiSpan(source), { - allowedTags: ['span'] - }); + const ansiPrefixRe = /\x1b/; // eslint-disable-line no-control-regex + const hasAnsiPrefix = ansiPrefixRe.test(source); + + // Create the HTML content: + // If no ANSI codes are present use a fast path for escaping. + const content = hasAnsiPrefix + ? sanitizer.sanitize(Private.ansiSpan(source), { + allowedTags: ['span'] + }) + : nativeSanitize(source); // Set the sanitized content for the host node. const pre = document.createElement('pre'); diff --git a/packages/rendermime/test/factories.spec.ts b/packages/rendermime/test/factories.spec.ts index d9d3db2463e2..0cb732a2578c 100644 --- a/packages/rendermime/test/factories.spec.ts +++ b/packages/rendermime/test/factories.spec.ts @@ -630,6 +630,48 @@ describe('rendermime/factories', () => { expect(end - start).toBeLessThan(timeout); }); + it('should use a fast path when no ANSI codes are present', async () => { + const mimeType = 'application/vnd.jupyter.stderr'; + + const ansiEscape = '\x1b[01;41;32mtext\x1b[00m'; + const notAnsiEscape = '\x1a[01;41;32mtext\x1a[00m'; + + // We cannot just compare times here because: + // a) tests are run in jsdom thus "native" sanitizer is not much faster + // b) `Private.ansiSpan` has much higher cost when ANSI escapes are present + + const testSource = ''; + const spy = jest.spyOn(sanitizer, 'sanitize'); + + // Initialize slow path scenario + let model = createModel(mimeType, testSource + ansiEscape); + let w = errorRendererFactory.createRenderer({ mimeType, ...options }); + expect(spy).toHaveBeenCalledTimes(0); + + // Test slow path + await w.renderModel(model); + // Sanitizer.sanitize should have been called + expect(spy).toHaveBeenCalledTimes(1); + + const escapedSlow = w.node.querySelector('pre')!.innerHTML; + + // Initialize fast path scenario. + model = createModel(mimeType, testSource + notAnsiEscape); + w = errorRendererFactory.createRenderer({ mimeType, ...options }); + + // Test fast path + await w.renderModel(model); + // Sanitizer.sanitize should not have been called + expect(spy).toHaveBeenCalledTimes(1); + + const escapedFast = w.node.querySelector('pre')!.innerHTML; + + // Disregarding the suffix the escaped code should be the same. + expect(escapedFast.slice(0, testSource.length)).toEqual( + escapedSlow.slice(0, testSource.length) + ); + }); + it.each([ ['arrives in a new line', 'www.example.com', '\n a new line of text'], ['arrives after a new line', 'www.example.com\n', 'a new line of text'], From a8c4b61ee0340cd1ea3a8bfa6db966440caac703 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Krassowski?= <5832902+krassowski@users.noreply.github.com> Date: Tue, 3 Dec 2024 17:05:05 +0000 Subject: [PATCH 4/5] Bump required setuptools to `40.8.0` (#17032) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 969ccf094db3..82695229e95b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -47,7 +47,7 @@ dependencies = [ "jupyterlab_server>=2.27.1,<3", "notebook_shim>=0.2", "packaging", - "setuptools>=40.1.0", + "setuptools>=40.8.0", "tomli>=1.2.2;python_version<\"3.11\"", "tornado>=6.2.0", "traitlets", From 9c557f019ac7852814f60f3887076aaf85bd08c8 Mon Sep 17 00:00:00 2001 From: krassowski Date: Tue, 3 Dec 2024 18:39:21 +0000 Subject: [PATCH 5/5] [ci skip] Publish 4.3.2 SHA256 hashes: jupyterlab-4.3.2-py3-none-any.whl: e87100cbab8b886ff7a4f325c856100ba6fdfe916162a85409daf0e707e19d1d jupyterlab-4.3.2.tar.gz: 3c0a6882dbddcc0a7bfdd5e2236f351b2b263e48780236e6996c2aca13ac5b22 jupyterlab-application-4.3.2.tgz: bc2b8269988fccd04e5318b4589c525387e5590cae5cbb0aff45a6a288d71d5e jupyterlab-application-extension-4.3.2.tgz: 0ac40568ca50571caf708f91b56c1c794d229f2c8ae81d6f7e8a908a8ed7a5aa jupyterlab-apputils-4.4.2.tgz: de792a29f79c24fa07e43a3c40a26a1744802f5060dbf45b0ef6a8ff4eab27fc jupyterlab-apputils-extension-4.3.2.tgz: de6d03f9f50e540c789081b1d08db25d4fe03bd20673be948c441a008bdd0dcf jupyterlab-attachments-4.3.2.tgz: 29c36305f537aa0f8756e789921fc42abb324537c816a32909d6d98d1851bb40 jupyterlab-builder-4.3.2.tgz: 3ac29b54180dcaa5e8af75d2df61bcdab0adee2405d3b75be671662d661339cc jupyterlab-buildutils-4.3.2.tgz: 6873b5dc1a7a9533ee698bdd304296ebabedb3e4b055d017cf9f7e5832cba3c7 jupyterlab-cell-toolbar-4.3.2.tgz: acea47944d2c2fa088087baf8c180f95b2c66d9a0c3f78595bd09f1cb0ebd1d6 jupyterlab-cell-toolbar-extension-4.3.2.tgz: 741c2a5353d0c79bbaa0e9c149fafdf5e4fd25e8d0cda807c1b1bf825c9331df jupyterlab-cells-4.3.2.tgz: aeaeaa60ab6992b1c1c9bc54bdcf05229ecf203a55e513bb3731f03120591b46 jupyterlab-celltags-extension-4.3.2.tgz: 67f736d5a4fdf1d892db65919f0f3f2674a74c833cc30273c7da529406728152 jupyterlab-codeeditor-4.3.2.tgz: 021bad5ea8792c6542e0ebd89161ceab8a441f3a91269509c3e282b3def40c15 jupyterlab-codemirror-4.3.2.tgz: 3629ccd61746020f669dec2f5f089d34e2e66f000f77df4074930787a268219a jupyterlab-codemirror-extension-4.3.2.tgz: e4393faad1d3ef2965ec7379aa06ac1c975cd1294eb006d37cedf35760ccc1a7 jupyterlab-completer-4.3.2.tgz: 8a067348625593127048480a25b2e71a4b2d293594c5323de604d00347154df9 jupyterlab-completer-extension-4.3.2.tgz: b6dde83cc4c392af4bcd322b0ed4af704fc89b2b7ddc2a61145146b991a3018c jupyterlab-console-4.3.2.tgz: 70b7465962bc7396db90f2b656555ee8c7411af3685892851e9799b6d3dd3e36 jupyterlab-console-extension-4.3.2.tgz: 711fb0843aacfc5c19e1c199caf6cc22ec492435ed91397d6f4971e5fd079020 jupyterlab-coreutils-6.3.2.tgz: f712daaacd5e55aa77d6398c30ec42f76f2172868276bf7c040e9aebae8bd207 jupyterlab-csvviewer-4.3.2.tgz: 061fd78dd7d54945c9101cef13d28863a235199169b227eb3bfcfc0485b9dc4e jupyterlab-csvviewer-extension-4.3.2.tgz: 3ab130fedf56d706fc9d4b8191bb9c831211fb734801dfa874a89e722d5cf1f1 jupyterlab-debugger-4.3.2.tgz: e892a18c14345a39d3e5f97f538e3042d730940371093c32a0320c319d7834f4 jupyterlab-debugger-extension-4.3.2.tgz: f4dded1a28abde10cd95d4fbc80c5d482dfbfad02706346bd34414a85cacf34e jupyterlab-docmanager-4.3.2.tgz: 3db9ebc704efc456e27aae89997fcf1b8c921ad7b6748a8bb03d822860f8721f jupyterlab-docmanager-extension-4.3.2.tgz: 39130a9628798ff9af1482e4f5605e625979cb19d9df95ae5e2aa7d060aac0e0 jupyterlab-docregistry-4.3.2.tgz: 8f9e1addf4a9bf0426748bc1b3a2970e89dcf1177a9475e2801b14c191d10740 jupyterlab-documentsearch-4.3.2.tgz: f9aa226cd36c084c11125bd0e0e8f9cde286a94a58fffff44aabd79d710bfa63 jupyterlab-documentsearch-extension-4.3.2.tgz: 438b48f9368f5572db6f545058c58b4c22f730ed2bb46ce3f94eb48bcd94c6e3 jupyterlab-extensionmanager-4.3.2.tgz: 8afc6eb98d86255e94cba8407e472956971c85a47539cbab5c2e01ca1a0bdb46 jupyterlab-extensionmanager-extension-4.3.2.tgz: c98f383f6073532b1b722618b0c7a2e4530f84c3213af357c1dbdc4e5cb69d8a jupyterlab-filebrowser-4.3.2.tgz: b55b13f48729db9624eb891e6ee10db846d1662dcccf6c93683e1841d30c3a96 jupyterlab-filebrowser-extension-4.3.2.tgz: 9e0f0b2817379a16393d11994e02a51f06b33f0384ee14d62999c1cf17f824cc jupyterlab-fileeditor-4.3.2.tgz: b575e882f4c5f9635cf9d859ac72ddc099350d6aac8f490232b88e480d62123c jupyterlab-fileeditor-extension-4.3.2.tgz: 76d07a921c9465717812376f1124c13f72839e122737203538e767991542e1e9 jupyterlab-galata-5.3.2.tgz: 40acd86f92bf593e73636c7586b189c12e181d1d9ca81947807b79325e8396fe jupyterlab-help-extension-4.3.2.tgz: 622bebafef10ebd6af6a3edc20f932c8a160916e0942bf22819fe10f1d6faf0a jupyterlab-htmlviewer-4.3.2.tgz: 30159ac1107ad638cce58440d8e7a53fc23d0562d99dbcc7a1bbe8f8c4f94905 jupyterlab-htmlviewer-extension-4.3.2.tgz: 313abc282cb3f0169e289a9e4a9eabcec1affc73efe29a202e1b3b8b86983eec jupyterlab-hub-extension-4.3.2.tgz: 0340e7546e6688102f57b813c663614cd97a78eb042d81c81dddeaceaba4af30 jupyterlab-imageviewer-4.3.2.tgz: af8afbc4b67907c4a06023cd54af8231b7f29b071fe21386ae51e6b820390be0 jupyterlab-imageviewer-extension-4.3.2.tgz: e4a9c35f08ab544de9fd27409361df7e11916192503d988e0ed7df22a7a80bf6 jupyterlab-inspector-4.3.2.tgz: f4554614c565cb285cb3084f141f9443841188d62d767ec76f98eedd07ad78d9 jupyterlab-inspector-extension-4.3.2.tgz: 49f51fd3aa4520e533bade48dab8cb7bb3e92d18c995e52b3dc9275abe3f7a8f jupyterlab-javascript-extension-4.3.2.tgz: 6f98dafc00edb42c924021f0edee24d115e741770840b62eae233667318d10a8 jupyterlab-json-extension-4.3.2.tgz: 9092d3b01c9228aa83849a1d69581f3a23e7ee001a1bc71d79d356eafc05027b jupyterlab-launcher-4.3.2.tgz: ada29039e286130508fe8388071ea4210884b12667774877dc16fd78d613aef1 jupyterlab-launcher-extension-4.3.2.tgz: 0f4730e5f92eb2dec42600fa8db1d7318dc71b088d7d026eb560c37cf6350e1d jupyterlab-logconsole-4.3.2.tgz: 08a5b6e61d936a6b1dba9b43259fae1808c4bb235554dffab8716ded7c0b2f07 jupyterlab-logconsole-extension-4.3.2.tgz: 895c6eb9ef67e33a2d0e58e771be54df22ae41621d2df349f5134208d2e1b6d7 jupyterlab-lsp-4.3.2.tgz: 8bb3e212d6da0c2931f67eb843a6f3ef42000daf6f7d1d0840fdf113040520ac jupyterlab-lsp-extension-4.3.2.tgz: e43e3fbeac5d02c070ffd41d168aa68668ab9144902ee982a0efd96819fecfc1 jupyterlab-mainmenu-4.3.2.tgz: e44927bb442d9252bfe0cef9d6cc3e78b288cc94cbcb9cb393c12433797ab535 jupyterlab-mainmenu-extension-4.3.2.tgz: 3878330c5ca4272d37b0dc6811823423f9c27d43641c7d47d2fd5bf5b93eb810 jupyterlab-markdownviewer-4.3.2.tgz: c9b6581dbd2fe972802b41f6d1506ff14c724b17bcdb121c2cbd30b0cab0dc64 jupyterlab-markdownviewer-extension-4.3.2.tgz: 8fcaac43c168f5593f5603265e7c3652604df8670332a47be92f282eb23c45b9 jupyterlab-markedparser-extension-4.3.2.tgz: c80873297205dbdb07341525d0d2ffa48ef59bd6f971941b45b35c3527395632 jupyterlab-mathjax-extension-4.3.2.tgz: ec4cad4e6544c243823cb04edf68c4c89701e840a4e548b102191b0899e9f577 jupyterlab-mermaid-4.3.2.tgz: 1b84571f91a4490b117357576a19f390fafce39e6ecb6616f3618f8c34d88924 jupyterlab-mermaid-extension-4.3.2.tgz: d088e722a4da990b1099998e33347ae2e9c19fc156254c38c0f752f48b0fbbb2 jupyterlab-metadataform-4.3.2.tgz: 73fd87466e0a69f306972e88847599499ae7e0d92c463d754e264fd96bdc0e85 jupyterlab-metadataform-extension-4.3.2.tgz: 9a3b48612ed33e28691f3445c8eb73e29032b45f5eddbd9ec76752eb544b032d jupyterlab-metapackage-4.3.2.tgz: 1697943e4ae1b03405f1578f9c5aee2098cf4cd8da26cb873f1549a9330d0f6b jupyterlab-nbconvert-css-4.3.2.tgz: 47acb538a6071818020c36cd5075a84f2ab2a35a7fe0603824aa796d9536cdb5 jupyterlab-nbformat-4.3.2.tgz: ea89dd4a0f3210d2c76800642b13e3e4a49d7602350768d2383c3a9026cdb52e jupyterlab-notebook-4.3.2.tgz: e456d42f76a3ae06a38eff9eae926ffb24688e6ee92537423a24102108251288 jupyterlab-notebook-extension-4.3.2.tgz: 5517e82861acb409567cd7ab9ebc6d787cb10fcbca7ba716a5fd270b2d0b1129 jupyterlab-observables-5.3.2.tgz: 810bff034e9954762d04d04414af719a2bd3788b3e20bf7be1b0cf387fe26f22 jupyterlab-outputarea-4.3.2.tgz: be48bf1607550628e4433c3f8a437078ea75eb1543923c1ea7e1c7df1b3cdbc3 jupyterlab-pdf-extension-4.3.2.tgz: c527ba88a21da7cf57e34747444e2d46cf041a6e7af6816e711aa847f0167b76 jupyterlab-pluginmanager-4.3.2.tgz: ad37089b5cb78fac3de55b885a3426eb0a150eb5623f795bb9a96573de26c10b jupyterlab-pluginmanager-extension-4.3.2.tgz: 6ca400cd7c412298dc82b63ac528f8ae8b4d1506e7a671b03216a53b29f590dd jupyterlab-property-inspector-4.3.2.tgz: e1097a5ea5302801d2f5f1b76e261cfa2b56c96c18fcc8c316a3c5dfe0189006 jupyterlab-rendermime-4.3.2.tgz: 7cfdfc0ae27ee34809bdfbf8eb93e40cd96ce3964d491a9e25fadddd514c003d jupyterlab-rendermime-extension-4.3.2.tgz: 2332e2cf049949e34c9e60d16a5774366bcb28be32f24d26a5f92c6e91c9e7ef jupyterlab-rendermime-interfaces-3.11.2.tgz: 00cd0a8c6a62f4164289d363efbd7df133c5941cbb55dc828aed802d3620dc96 jupyterlab-running-4.3.2.tgz: d1b4796f30b4bc407243bcfebe18b1c498e6130003c1df353d219fe1de52e5b4 jupyterlab-running-extension-4.3.2.tgz: e90496eee40cd3879fd983d34d66b7a154a14ea78c67bb553efa756a7bbd5967 jupyterlab-services-7.3.2.tgz: 80645b9c87b6904b0b5f981e6d2e4cc5c35c1e0f358d10cd0c8c76b912ffd2a9 jupyterlab-settingeditor-4.3.2.tgz: 4320914812f6429760d19b1a88eae252b273c1a0d2c8799d12c3cd25a2062fce jupyterlab-settingeditor-extension-4.3.2.tgz: bd9810f1784a368f053ad80b628ccef04f8981208ad93e4ef11c7f199b9e0997 jupyterlab-settingregistry-4.3.2.tgz: 8ed0c11242e66d700e47a36ce4b3fc66574e2285c8b5b3efdaf1569d4b098d37 jupyterlab-shortcuts-extension-5.1.2.tgz: 51ec79fd1ed72e22caf851d812fcdb3da2149e86d0e2114de8d3611064a1d1a4 jupyterlab-statedb-4.3.2.tgz: e680210c01d378eec70cd04cc234ae06f1117d199bb17a4708484ef6f0fa1f56 jupyterlab-statusbar-4.3.2.tgz: 23275ff69d5128fa162894f7d6b0843e3e448a05a96ff99c29a4f3003eacbb26 jupyterlab-statusbar-extension-4.3.2.tgz: 840984344e18c2b2f5a9c1ce5031ed8553f22c3f13273862ad02591cbe9f0e39 jupyterlab-template-4.3.2.tgz: bed7b885858e411ed953921be7f30f7d9d46e8a5f745ef8c66ec3ecbfcb5fe0f jupyterlab-terminal-4.3.2.tgz: bd042bc853abcd3b6f9311224225242a0505bb2f0ff767e22090baa964308514 jupyterlab-terminal-extension-4.3.2.tgz: 03009a797d8bf56d56016b0b401f1f0afdd15e2b32428f37c32c119148c4c180 jupyterlab-testing-4.3.2.tgz: b25bf85b5fb31f915fb5fab68ce14ae0111d0e79a2b1d4153de690b1bfa75ae5 jupyterlab-testutils-4.3.2.tgz: d5ff8f3922955b0845e8647dee9f6f27baa5c331195012ce9cea1458d77a1365 jupyterlab-theme-dark-extension-4.3.2.tgz: e0b6451c4802eae9ca441c239419a66bb305bb92b25a4909c691470e65f4ce45 jupyterlab-theme-dark-high-contrast-extension-4.3.2.tgz: bca6e4abe8782d08dcb00622d64a5757e5cb93eafd87a71ffaa0e6b8f31dbd4d jupyterlab-theme-light-extension-4.3.2.tgz: 5766e8de0b1e504c8a1386a1ae77835e602c130722561e0c5bf0abbc8d5b1740 jupyterlab-toc-6.3.2.tgz: cc988bed9db170167afcb5113887a191ac7a7bc937b8bfd0960085825ea0cad8 jupyterlab-toc-extension-6.3.2.tgz: 6ccfcdcf02dc4324f81056f732470de6bc86c92338fc01d101ce0404c7fe37ae jupyterlab-tooltip-4.3.2.tgz: cb88db5ce6f722e2ee4cb771344466b422a595bcc251d1ea6809cb1f724fdded jupyterlab-tooltip-extension-4.3.2.tgz: 6179d0e797204d485d797eac887caca7e5abc560c208d2dced3fcab8948abc48 jupyterlab-translation-4.3.2.tgz: 8853ff3af6cf87086d83143ec87c2942d57afd9cd987aa3be79bafd9254d4b86 jupyterlab-translation-extension-4.3.2.tgz: 1fdd7311ff5bd381e9c5d43e652aac1c5c98e1a909addc221241be5469804fa4 jupyterlab-ui-components-4.3.2.tgz: fa318f6e31d0c93f37f0e632e8ee0950b83842497f5faa782987556a960c21da jupyterlab-ui-components-extension-4.3.2.tgz: 3b7628a498bb02ac1317fe778547d132977590dd06ff4501db1362f12339bbfc jupyterlab-vega5-extension-4.3.2.tgz: bd8fff8a608efca2a3dc25c8ab7ba024535a89b97bf4faf5a928b18a1b575e9b jupyterlab-workspaces-4.3.2.tgz: da73bbfdee69516755feea21237c2184c93d444252f7c2420887afb9466e505a jupyterlab-workspaces-extension-4.3.2.tgz: 0b66992933b432359c3f843de3fa2312295e39b966f464df5f84510f71cd0d61 --- .bumpversion.cfg | 2 +- CHANGELOG.md | 37 +- 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 | 2230 ++++++++--------- .../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, 3671 insertions(+), 3638 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index b30ffb9aee28..77e3aef3cd9d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4, 3, 1, "final", 0 +current_version = 4, 3, 2, "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 73f34d5a4176..37275e7706dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -393,6 +393,41 @@ To ease code migration to JupyterLab 4, developers should review the [migration +## 4.3.2 + +([Full Changelog](https://github.com/jupyterlab/jupyterlab/compare/v4.3.1...a8c4b61ee0340cd1ea3a8bfa6db966440caac703)) + +### Bugs fixed + +- Improve performance of rendering stdout/stderr [#17022](https://github.com/jupyterlab/jupyterlab/pull/17022) ([@krassowski](https://github.com/krassowski)) +- Fixing missed first keystroke on Ctrl+F [#17005](https://github.com/jupyterlab/jupyterlab/pull/17005) ([@itsmevichu](https://github.com/itsmevichu)) +- Fix disappearing cells (heal offsets after updating estimated sizes) [#17000](https://github.com/jupyterlab/jupyterlab/pull/17000) ([@krassowski](https://github.com/krassowski)) +- Fix regression in standard error rendering performance [#16975](https://github.com/jupyterlab/jupyterlab/pull/16975) ([@krassowski](https://github.com/krassowski)) +- Fix handling of carriage return in output streams [#16999](https://github.com/jupyterlab/jupyterlab/pull/16999) ([@davidbrochart](https://github.com/davidbrochart)) +- Fix emission of `FileBrowserModel.onFileChanged` for drives (including `RTC:`) [#16988](https://github.com/jupyterlab/jupyterlab/pull/16988) ([@davidbrochart](https://github.com/davidbrochart)) +- Drag image prompt styling [#16972](https://github.com/jupyterlab/jupyterlab/pull/16972) ([@JasonWeill](https://github.com/JasonWeill)) +- Restore viewport `min-height` when not windowing [#16979](https://github.com/jupyterlab/jupyterlab/pull/16979) ([@brichet](https://github.com/brichet)) + +### Maintenance and upkeep improvements + +- Bump required setuptools to `40.8.0` [#17032](https://github.com/jupyterlab/jupyterlab/pull/17032) ([@krassowski](https://github.com/krassowski)) +- Fix extension manager failure with new `httpx` versions, bump `httpx` to `v0.28.0` [#17013](https://github.com/jupyterlab/jupyterlab/pull/17013) ([@davidbrochart](https://github.com/davidbrochart)) +- Pin Python version for visual regression testing to 3.11 [#16989](https://github.com/jupyterlab/jupyterlab/pull/16989) ([@krassowski](https://github.com/krassowski)) +- Reconfigure 4.3.x branch [#16970](https://github.com/jupyterlab/jupyterlab/pull/16970) ([@krassowski](https://github.com/krassowski)) + +### Documentation improvements + +- Add forgotten bracket in code sample [#16998](https://github.com/jupyterlab/jupyterlab/pull/16998) ([@cmarmo](https://github.com/cmarmo)) +- Reconfigure 4.3.x branch [#16970](https://github.com/jupyterlab/jupyterlab/pull/16970) ([@krassowski](https://github.com/krassowski)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyterlab/jupyterlab/graphs/contributors?from=2024-11-16&to=2024-12-03&type=c)) + +[@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)) @@ -422,8 +457,6 @@ To ease code migration to JupyterLab 4, developers should review the [migration [@Darshan808](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3ADarshan808+updated%3A2024-10-30..2024-11-16&type=Issues) | [@JasonWeill](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3AJasonWeill+updated%3A2024-10-30..2024-11-16&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ajtpio+updated%3A2024-10-30..2024-11-16&type=Issues) | [@jupyterlab-probot](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ajupyterlab-probot+updated%3A2024-10-30..2024-11-16&type=Issues) | [@kellyrowland](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Akellyrowland+updated%3A2024-10-30..2024-11-16&type=Issues) | [@krassowski](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Akrassowski+updated%3A2024-10-30..2024-11-16&type=Issues) | [@kuraga](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Akuraga+updated%3A2024-10-30..2024-11-16&type=Issues) | [@meeseeksmachine](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab+involves%3Ameeseeksmachine+updated%3A2024-10-30..2024-11-16&type=Issues) - - ## 4.3.0 ([Full Changelog](https://github.com/jupyterlab/jupyterlab/compare/v4.2.0...9181514dfe6f83b81a86e107f37d4a9554d8d743)) diff --git a/builder/package.json b/builder/package.json index 4b32011e80b7..8cb7a8a55b35 100644 --- a/builder/package.json +++ b/builder/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/builder", - "version": "4.3.1", + "version": "4.3.2", "description": "JupyterLab - Extension Builder", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { diff --git a/buildutils/package.json b/buildutils/package.json index ae31e3737cf8..5b7b14e1a40e 100644 --- a/buildutils/package.json +++ b/buildutils/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/buildutils", - "version": "4.3.1", + "version": "4.3.2", "description": "JupyterLab - Build Utilities", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { diff --git a/buildutils/template/package.json b/buildutils/template/package.json index 16b86a66459c..71034333053e 100644 --- a/buildutils/template/package.json +++ b/buildutils/template/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/template", - "version": "4.3.1", + "version": "4.3.2", "description": "JupyterLab - Package Template", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,7 +37,7 @@ "watch": "tsc -b --watch" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.1", + "@jupyterlab/testing": "^4.3.2", "@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 cbd81ac3a653..87bed087f3c0 100644 --- a/dev_mode/package.json +++ b/dev_mode/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/application-top", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/application-extension": "~4.3.1", - "@jupyterlab/apputils": "~4.4.1", - "@jupyterlab/apputils-extension": "~4.3.1", - "@jupyterlab/attachments": "~4.3.1", - "@jupyterlab/cell-toolbar": "~4.3.1", - "@jupyterlab/cell-toolbar-extension": "~4.3.1", - "@jupyterlab/cells": "~4.3.1", - "@jupyterlab/celltags-extension": "~4.3.1", - "@jupyterlab/codeeditor": "~4.3.1", - "@jupyterlab/codemirror": "~4.3.1", - "@jupyterlab/codemirror-extension": "~4.3.1", - "@jupyterlab/completer": "~4.3.1", - "@jupyterlab/completer-extension": "~4.3.1", - "@jupyterlab/console": "~4.3.1", - "@jupyterlab/console-extension": "~4.3.1", - "@jupyterlab/coreutils": "~6.3.1", - "@jupyterlab/csvviewer": "~4.3.1", - "@jupyterlab/csvviewer-extension": "~4.3.1", - "@jupyterlab/debugger": "~4.3.1", - "@jupyterlab/debugger-extension": "~4.3.1", - "@jupyterlab/docmanager": "~4.3.1", - "@jupyterlab/docmanager-extension": "~4.3.1", - "@jupyterlab/docregistry": "~4.3.1", - "@jupyterlab/documentsearch": "~4.3.1", - "@jupyterlab/documentsearch-extension": "~4.3.1", - "@jupyterlab/extensionmanager": "~4.3.1", - "@jupyterlab/extensionmanager-extension": "~4.3.1", - "@jupyterlab/filebrowser": "~4.3.1", - "@jupyterlab/filebrowser-extension": "~4.3.1", - "@jupyterlab/fileeditor": "~4.3.1", - "@jupyterlab/fileeditor-extension": "~4.3.1", - "@jupyterlab/help-extension": "~4.3.1", - "@jupyterlab/htmlviewer": "~4.3.1", - "@jupyterlab/htmlviewer-extension": "~4.3.1", - "@jupyterlab/hub-extension": "~4.3.1", - "@jupyterlab/imageviewer": "~4.3.1", - "@jupyterlab/imageviewer-extension": "~4.3.1", - "@jupyterlab/inspector": "~4.3.1", - "@jupyterlab/inspector-extension": "~4.3.1", - "@jupyterlab/javascript-extension": "~4.3.1", - "@jupyterlab/json-extension": "~4.3.1", - "@jupyterlab/launcher": "~4.3.1", - "@jupyterlab/launcher-extension": "~4.3.1", - "@jupyterlab/logconsole": "~4.3.1", - "@jupyterlab/logconsole-extension": "~4.3.1", - "@jupyterlab/lsp": "~4.3.1", - "@jupyterlab/lsp-extension": "~4.3.1", - "@jupyterlab/mainmenu": "~4.3.1", - "@jupyterlab/mainmenu-extension": "~4.3.1", - "@jupyterlab/markdownviewer": "~4.3.1", - "@jupyterlab/markdownviewer-extension": "~4.3.1", - "@jupyterlab/markedparser-extension": "~4.3.1", - "@jupyterlab/mathjax-extension": "~4.3.1", - "@jupyterlab/mermaid": "~4.3.1", - "@jupyterlab/mermaid-extension": "~4.3.1", - "@jupyterlab/metadataform": "~4.3.1", - "@jupyterlab/metadataform-extension": "~4.3.1", - "@jupyterlab/metapackage": "~4.3.1", - "@jupyterlab/nbconvert-css": "~4.3.1", - "@jupyterlab/nbformat": "~4.3.1", - "@jupyterlab/notebook": "~4.3.1", - "@jupyterlab/notebook-extension": "~4.3.1", - "@jupyterlab/observables": "~5.3.1", - "@jupyterlab/outputarea": "~4.3.1", - "@jupyterlab/pdf-extension": "~4.3.1", - "@jupyterlab/pluginmanager": "~4.3.1", - "@jupyterlab/pluginmanager-extension": "~4.3.1", - "@jupyterlab/property-inspector": "~4.3.1", - "@jupyterlab/rendermime": "~4.3.1", - "@jupyterlab/rendermime-extension": "~4.3.1", - "@jupyterlab/rendermime-interfaces": "~3.11.1", - "@jupyterlab/running": "~4.3.1", - "@jupyterlab/running-extension": "~4.3.1", - "@jupyterlab/services": "~7.3.1", - "@jupyterlab/settingeditor": "~4.3.1", - "@jupyterlab/settingeditor-extension": "~4.3.1", - "@jupyterlab/settingregistry": "~4.3.1", - "@jupyterlab/shortcuts-extension": "~5.1.1", - "@jupyterlab/statedb": "~4.3.1", - "@jupyterlab/statusbar": "~4.3.1", - "@jupyterlab/statusbar-extension": "~4.3.1", - "@jupyterlab/terminal": "~4.3.1", - "@jupyterlab/terminal-extension": "~4.3.1", - "@jupyterlab/theme-dark-extension": "~4.3.1", - "@jupyterlab/theme-dark-high-contrast-extension": "~4.3.1", - "@jupyterlab/theme-light-extension": "~4.3.1", - "@jupyterlab/toc": "~6.3.1", - "@jupyterlab/toc-extension": "~6.3.1", - "@jupyterlab/tooltip": "~4.3.1", - "@jupyterlab/tooltip-extension": "~4.3.1", - "@jupyterlab/translation": "~4.3.1", - "@jupyterlab/translation-extension": "~4.3.1", - "@jupyterlab/ui-components": "~4.3.1", - "@jupyterlab/ui-components-extension": "~4.3.1", - "@jupyterlab/vega5-extension": "~4.3.1", - "@jupyterlab/workspaces": "~4.3.1", - "@jupyterlab/workspaces-extension": "~4.3.1", + "@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", "@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.1", - "@jupyterlab/application-extension": "~4.3.1", - "@jupyterlab/apputils-extension": "~4.3.1", - "@jupyterlab/cell-toolbar-extension": "~4.3.1", - "@jupyterlab/celltags-extension": "~4.3.1", - "@jupyterlab/codemirror-extension": "~4.3.1", - "@jupyterlab/completer-extension": "~4.3.1", - "@jupyterlab/console-extension": "~4.3.1", - "@jupyterlab/coreutils": "~6.3.1", - "@jupyterlab/csvviewer-extension": "~4.3.1", - "@jupyterlab/debugger-extension": "~4.3.1", - "@jupyterlab/docmanager-extension": "~4.3.1", - "@jupyterlab/documentsearch-extension": "~4.3.1", - "@jupyterlab/extensionmanager-extension": "~4.3.1", - "@jupyterlab/filebrowser-extension": "~4.3.1", - "@jupyterlab/fileeditor-extension": "~4.3.1", - "@jupyterlab/help-extension": "~4.3.1", - "@jupyterlab/htmlviewer-extension": "~4.3.1", - "@jupyterlab/hub-extension": "~4.3.1", - "@jupyterlab/imageviewer-extension": "~4.3.1", - "@jupyterlab/inspector-extension": "~4.3.1", - "@jupyterlab/javascript-extension": "~4.3.1", - "@jupyterlab/json-extension": "~4.3.1", - "@jupyterlab/launcher-extension": "~4.3.1", - "@jupyterlab/logconsole-extension": "~4.3.1", - "@jupyterlab/lsp-extension": "~4.3.1", - "@jupyterlab/mainmenu-extension": "~4.3.1", - "@jupyterlab/markdownviewer-extension": "~4.3.1", - "@jupyterlab/markedparser-extension": "~4.3.1", - "@jupyterlab/mathjax-extension": "~4.3.1", - "@jupyterlab/mermaid-extension": "~4.3.1", - "@jupyterlab/metadataform-extension": "~4.3.1", - "@jupyterlab/notebook-extension": "~4.3.1", - "@jupyterlab/pdf-extension": "~4.3.1", - "@jupyterlab/pluginmanager-extension": "~4.3.1", - "@jupyterlab/rendermime-extension": "~4.3.1", - "@jupyterlab/running-extension": "~4.3.1", - "@jupyterlab/settingeditor-extension": "~4.3.1", - "@jupyterlab/shortcuts-extension": "~5.1.1", - "@jupyterlab/statusbar-extension": "~4.3.1", - "@jupyterlab/terminal-extension": "~4.3.1", - "@jupyterlab/theme-dark-extension": "~4.3.1", - "@jupyterlab/theme-dark-high-contrast-extension": "~4.3.1", - "@jupyterlab/theme-light-extension": "~4.3.1", - "@jupyterlab/toc-extension": "~6.3.1", - "@jupyterlab/tooltip-extension": "~4.3.1", - "@jupyterlab/translation-extension": "~4.3.1", - "@jupyterlab/ui-components-extension": "~4.3.1", - "@jupyterlab/vega5-extension": "~4.3.1", - "@jupyterlab/workspaces-extension": "~4.3.1" + "@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" }, "devDependencies": { - "@jupyterlab/builder": "^4.3.1", - "@jupyterlab/buildutils": "^4.3.1", + "@jupyterlab/builder": "^4.3.2", + "@jupyterlab/buildutils": "^4.3.2", "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.1", + "version": "4.3.2", "extensions": { "@jupyterlab/application-extension": "", "@jupyterlab/apputils-extension": "", diff --git a/examples/app/package.json b/examples/app/package.json index 4cd0d8321750..7f6e736ae667 100644 --- a/examples/app/package.json +++ b/examples/app/package.json @@ -1,45 +1,45 @@ { "name": "@jupyterlab/example-app", - "version": "4.3.1", + "version": "4.3.2", "private": true, "scripts": { "build": "webpack", "clean": "rimraf build" }, "dependencies": { - "@jupyterlab/application": "^4.3.1", - "@jupyterlab/application-extension": "^4.3.1", - "@jupyterlab/apputils-extension": "^4.3.1", - "@jupyterlab/builder": "^4.3.1", - "@jupyterlab/celltags-extension": "^4.3.1", - "@jupyterlab/codemirror-extension": "^4.3.1", - "@jupyterlab/completer-extension": "^4.3.1", - "@jupyterlab/console-extension": "^4.3.1", - "@jupyterlab/csvviewer-extension": "^4.3.1", - "@jupyterlab/docmanager-extension": "^4.3.1", - "@jupyterlab/filebrowser-extension": "^4.3.1", - "@jupyterlab/fileeditor-extension": "^4.3.1", - "@jupyterlab/help-extension": "^4.3.1", - "@jupyterlab/imageviewer-extension": "^4.3.1", - "@jupyterlab/inspector-extension": "^4.3.1", - "@jupyterlab/launcher-extension": "^4.3.1", - "@jupyterlab/mainmenu-extension": "^4.3.1", - "@jupyterlab/markdownviewer-extension": "^4.3.1", - "@jupyterlab/mathjax-extension": "^4.3.1", - "@jupyterlab/metadataform-extension": "^4.3.1", - "@jupyterlab/notebook-extension": "^4.3.1", - "@jupyterlab/rendermime-extension": "^4.3.1", - "@jupyterlab/running-extension": "^4.3.1", - "@jupyterlab/settingeditor-extension": "^4.3.1", - "@jupyterlab/shortcuts-extension": "^5.1.1", - "@jupyterlab/statusbar-extension": "^4.3.1", - "@jupyterlab/theme-dark-extension": "^4.3.1", - "@jupyterlab/theme-light-extension": "^4.3.1", - "@jupyterlab/toc-extension": "^6.3.1", - "@jupyterlab/tooltip-extension": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/translation-extension": "^4.3.1", - "@jupyterlab/ui-components-extension": "^4.3.1", + "@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", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/examples/cell/package.json b/examples/cell/package.json index be43aa767516..d8eb047c0a46 100644 --- a/examples/cell/package.json +++ b/examples/cell/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-cell", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/cells": "^4.3.1", - "@jupyterlab/codemirror": "^4.3.1", - "@jupyterlab/completer": "^4.3.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/rendermime": "^4.3.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/theme-light-extension": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@lumino/commands": "^2.3.1", "@lumino/widgets": "^2.5.0" }, diff --git a/examples/console/package.json b/examples/console/package.json index 1df89ee111c1..29f3f0a3fa63 100644 --- a/examples/console/package.json +++ b/examples/console/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-console", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/codemirror": "^4.3.1", - "@jupyterlab/console": "^4.3.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/rendermime": "^4.3.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/theme-light-extension": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", + "@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", "@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 281d8a9f5d1e..66fc8f3c8600 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.1", + "version": "3.3.2", "private": true, "scripts": { "build": "npm run clean && webpack", @@ -8,77 +8,77 @@ "watch": "npm run clean && webpack --watch" }, "resolutions": { - "@jupyterlab/application": "~4.3.1", - "@jupyterlab/application-extension": "~4.3.1", + "@jupyterlab/application": "~4.3.2", + "@jupyterlab/application-extension": "~4.3.2", "@jupyterlab/apputils": "~4.1.0-alpha.0", - "@jupyterlab/apputils-extension": "~4.3.1", + "@jupyterlab/apputils-extension": "~4.3.2", "@jupyterlab/attachments": "~4.1.0-alpha.0", "@jupyterlab/cells": "~4.1.0-alpha.0", - "@jupyterlab/celltags-extension": "~4.3.1", + "@jupyterlab/celltags-extension": "~4.3.2", "@jupyterlab/codeeditor": "~4.1.0-alpha.0", - "@jupyterlab/codemirror-extension": "~4.3.1", + "@jupyterlab/codemirror-extension": "~4.3.2", "@jupyterlab/completer": "~4.1.0-alpha.0", - "@jupyterlab/completer-extension": "~4.3.1", + "@jupyterlab/completer-extension": "~4.3.2", "@jupyterlab/console": "~4.1.0-alpha.0", - "@jupyterlab/console-extension": "~4.3.1", - "@jupyterlab/coreutils": "~6.3.1", - "@jupyterlab/csvviewer-extension": "~4.3.1", + "@jupyterlab/console-extension": "~4.3.2", + "@jupyterlab/coreutils": "~6.3.2", + "@jupyterlab/csvviewer-extension": "~4.3.2", "@jupyterlab/debugger": "~4.1.0-alpha.0", - "@jupyterlab/debugger-extension": "~4.3.1", + "@jupyterlab/debugger-extension": "~4.3.2", "@jupyterlab/docmanager": "~4.1.0-alpha.0", - "@jupyterlab/docmanager-extension": "~4.3.1", + "@jupyterlab/docmanager-extension": "~4.3.2", "@jupyterlab/documentsearch": "~4.1.0-alpha.0", - "@jupyterlab/documentsearch-extension": "~4.3.1", + "@jupyterlab/documentsearch-extension": "~4.3.2", "@jupyterlab/extensionmanager": "~4.1.0-alpha.0", - "@jupyterlab/extensionmanager-extension": "~4.3.1", + "@jupyterlab/extensionmanager-extension": "~4.3.2", "@jupyterlab/filebrowser": "~4.1.0-alpha.0", - "@jupyterlab/filebrowser-extension": "~4.3.1", + "@jupyterlab/filebrowser-extension": "~4.3.2", "@jupyterlab/fileeditor": "~4.1.0-alpha.0", - "@jupyterlab/fileeditor-extension": "~4.3.1", - "@jupyterlab/help-extension": "~4.3.1", - "@jupyterlab/htmlviewer-extension": "~4.3.1", - "@jupyterlab/hub-extension": "~4.3.1", + "@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": "~4.1.0-alpha.0", - "@jupyterlab/imageviewer-extension": "~4.3.1", + "@jupyterlab/imageviewer-extension": "~4.3.2", "@jupyterlab/inspector": "~4.1.0-alpha.0", - "@jupyterlab/inspector-extension": "~4.3.1", - "@jupyterlab/javascript-extension": "~4.3.1", - "@jupyterlab/json-extension": "~4.3.1", + "@jupyterlab/inspector-extension": "~4.3.2", + "@jupyterlab/javascript-extension": "~4.3.2", + "@jupyterlab/json-extension": "~4.3.2", "@jupyterlab/launcher": "~4.1.0-alpha.0", - "@jupyterlab/launcher-extension": "~4.3.1", + "@jupyterlab/launcher-extension": "~4.3.2", "@jupyterlab/logconsole": "~4.1.0-alpha.0", - "@jupyterlab/logconsole-extension": "~4.3.1", + "@jupyterlab/logconsole-extension": "~4.3.2", "@jupyterlab/lsp": "~4.1.0-alpha.0", - "@jupyterlab/lsp-extension": "~4.3.1", + "@jupyterlab/lsp-extension": "~4.3.2", "@jupyterlab/mainmenu": "~4.1.0-alpha.0", - "@jupyterlab/mainmenu-extension": "~4.3.1", + "@jupyterlab/mainmenu-extension": "~4.3.2", "@jupyterlab/markedparser-extension": "~4.1.0-alpha.0", - "@jupyterlab/mathjax-extension": "~4.3.1", + "@jupyterlab/mathjax-extension": "~4.3.2", "@jupyterlab/metadataform": "~4.1.0-alpha.0", - "@jupyterlab/metadataform-extension": "~4.3.1", + "@jupyterlab/metadataform-extension": "~4.3.2", "@jupyterlab/notebook": "~4.1.0-alpha.0", - "@jupyterlab/notebook-extension": "~4.3.1", - "@jupyterlab/pdf-extension": "~4.3.1", + "@jupyterlab/notebook-extension": "~4.3.2", + "@jupyterlab/pdf-extension": "~4.3.2", "@jupyterlab/rendermime": "~4.1.0-alpha.0", - "@jupyterlab/rendermime-extension": "~4.3.1", + "@jupyterlab/rendermime-extension": "~4.3.2", "@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.1", + "@jupyterlab/settingeditor-extension": "~4.3.2", "@jupyterlab/settingregistry": "~4.1.0-alpha.0", - "@jupyterlab/shortcuts-extension": "~5.1.1", + "@jupyterlab/shortcuts-extension": "~5.1.2", "@jupyterlab/statedb": "~4.1.0-alpha.0", "@jupyterlab/statusbar": "~4.1.0-alpha.0", - "@jupyterlab/statusbar-extension": "~4.3.1", - "@jupyterlab/theme-light-extension": "~4.3.1", - "@jupyterlab/toc-extension": "~6.3.1", + "@jupyterlab/statusbar-extension": "~4.3.2", + "@jupyterlab/theme-light-extension": "~4.3.2", + "@jupyterlab/toc-extension": "~6.3.2", "@jupyterlab/tooltip": "~4.1.0-alpha.0", - "@jupyterlab/tooltip-extension": "~4.3.1", - "@jupyterlab/translation": "~4.3.1", - "@jupyterlab/translation-extension": "~4.3.1", + "@jupyterlab/tooltip-extension": "~4.3.2", + "@jupyterlab/translation": "~4.3.2", + "@jupyterlab/translation-extension": "~4.3.2", "@jupyterlab/ui-components": "~4.1.0-alpha.0", - "@jupyterlab/ui-components-extension": "~4.3.1", - "@jupyterlab/vega5-extension": "~4.3.1", + "@jupyterlab/ui-components-extension": "~4.3.2", + "@jupyterlab/vega5-extension": "~4.3.2", "@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.1", - "@jupyterlab/application-extension": "^4.3.1", - "@jupyterlab/apputils-extension": "^4.3.1", - "@jupyterlab/celltags-extension": "^4.3.1", - "@jupyterlab/codemirror-extension": "^4.3.1", - "@jupyterlab/completer-extension": "^4.3.1", - "@jupyterlab/console-extension": "^4.3.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/csvviewer-extension": "^4.3.1", - "@jupyterlab/debugger-extension": "^4.3.1", - "@jupyterlab/docmanager-extension": "^4.3.1", - "@jupyterlab/documentsearch-extension": "^4.3.1", - "@jupyterlab/extensionmanager-extension": "^4.3.1", - "@jupyterlab/filebrowser-extension": "^4.3.1", - "@jupyterlab/fileeditor-extension": "^4.3.1", - "@jupyterlab/help-extension": "^4.3.1", - "@jupyterlab/htmlviewer-extension": "^4.3.1", - "@jupyterlab/hub-extension": "^4.3.1", - "@jupyterlab/imageviewer-extension": "^4.3.1", - "@jupyterlab/inspector-extension": "^4.3.1", - "@jupyterlab/javascript-extension": "^4.3.1", - "@jupyterlab/json-extension": "^4.3.1", - "@jupyterlab/launcher-extension": "^4.3.1", - "@jupyterlab/logconsole-extension": "^4.3.1", - "@jupyterlab/lsp-extension": "^4.3.1", - "@jupyterlab/mainmenu-extension": "^4.3.1", - "@jupyterlab/mathjax-extension": "^4.3.1", - "@jupyterlab/metadataform-extension": "^4.3.1", - "@jupyterlab/notebook-extension": "^4.3.1", - "@jupyterlab/pdf-extension": "^4.3.1", - "@jupyterlab/rendermime-extension": "^4.3.1", - "@jupyterlab/settingeditor-extension": "^4.3.1", - "@jupyterlab/shortcuts-extension": "^5.1.1", - "@jupyterlab/statusbar-extension": "^4.3.1", - "@jupyterlab/theme-light-extension": "^4.3.1", - "@jupyterlab/toc-extension": "^6.3.1", - "@jupyterlab/tooltip-extension": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/translation-extension": "^4.3.1", - "@jupyterlab/ui-components-extension": "^4.3.1", - "@jupyterlab/vega5-extension": "^4.3.1" + "@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" }, "devDependencies": { - "@jupyterlab/builder": "^4.3.1", + "@jupyterlab/builder": "^4.3.2", "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 cbc4c425b4c8..e1a7e958612f 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.1", + "version": "3.3.2", "private": true, "main": "./index.js", "scripts": { @@ -8,13 +8,13 @@ "clean": "rimraf ../labextensions/@jupyterlab/example-federated-md" }, "dependencies": { - "@jupyterlab/application": "^4.3.1", - "@jupyterlab/example-federated-middle": "^3.2.1", - "@jupyterlab/markdownviewer-extension": "^4.3.1", + "@jupyterlab/application": "^4.3.2", + "@jupyterlab/example-federated-middle": "^3.2.2", + "@jupyterlab/markdownviewer-extension": "^4.3.2", "@lumino/widgets": "^2.5.0" }, "devDependencies": { - "@jupyterlab/builder": "^4.3.1", + "@jupyterlab/builder": "^4.3.2", "rimraf": "~5.0.5" }, "jupyterlab": { diff --git a/examples/federated/middle_package/package.json b/examples/federated/middle_package/package.json index b849304d6858..fbf5af6e0b4e 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.1", + "version": "3.2.2", "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.1", + "@jupyterlab/builder": "^4.3.2", "rimraf": "~5.0.5" }, "publishConfig": { diff --git a/examples/federated/package.json b/examples/federated/package.json index 001b3766cbb2..30a3e97dacfe 100644 --- a/examples/federated/package.json +++ b/examples/federated/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-federated", - "version": "3.3.1", + "version": "3.3.2", "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 4af4164ba324..b9788292e316 100644 --- a/examples/filebrowser/package.json +++ b/examples/filebrowser/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-filebrowser", - "version": "4.3.1", + "version": "4.3.2", "private": true, "scripts": { "build": "tsc -p src && webpack", @@ -8,18 +8,18 @@ }, "dependencies": { "@jupyter/web-components": "^0.16.6", - "@jupyterlab/application": "^4.3.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/codemirror": "^4.3.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/docmanager": "^4.3.1", - "@jupyterlab/docregistry": "^4.3.1", - "@jupyterlab/filebrowser": "^4.3.1", - "@jupyterlab/fileeditor": "^4.3.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/theme-light-extension": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@lumino/commands": "^2.3.1", "@lumino/widgets": "^2.5.0" }, diff --git a/examples/notebook/package.json b/examples/notebook/package.json index ffc42a209472..27e3c93b5563 100644 --- a/examples/notebook/package.json +++ b/examples/notebook/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-notebook", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/codemirror": "^4.3.1", - "@jupyterlab/completer": "^4.3.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/docmanager": "^4.3.1", - "@jupyterlab/docregistry": "^4.3.1", - "@jupyterlab/documentsearch": "^4.3.1", - "@jupyterlab/markedparser-extension": "^4.3.1", - "@jupyterlab/mathjax-extension": "^4.3.1", - "@jupyterlab/notebook": "^4.3.1", - "@jupyterlab/rendermime": "^4.3.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/theme-light-extension": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@lumino/commands": "^2.3.1", "@lumino/widgets": "^2.5.0" }, diff --git a/examples/terminal/package.json b/examples/terminal/package.json index cb6616b56aea..25dc0f20add8 100644 --- a/examples/terminal/package.json +++ b/examples/terminal/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/example-terminal", - "version": "4.3.1", + "version": "4.3.2", "private": true, "scripts": { "build": "tsc -p src && webpack", @@ -8,11 +8,11 @@ }, "dependencies": { "@jupyter/web-components": "^0.16.6", - "@jupyterlab/application": "^4.3.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/terminal": "^4.3.1", - "@jupyterlab/theme-light-extension": "^4.3.1", + "@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", "@lumino/widgets": "^2.5.0" }, "devDependencies": { diff --git a/galata/extension/package.json b/galata/extension/package.json index 0f2985dc7a26..5223319946a8 100644 --- a/galata/extension/package.json +++ b/galata/extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/galata-extension", - "version": "5.3.1", + "version": "5.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/cells": "^4.3.1", - "@jupyterlab/debugger": "^4.3.1", - "@jupyterlab/docmanager": "^4.3.1", - "@jupyterlab/nbformat": "^4.3.1", - "@jupyterlab/notebook": "^4.3.1", - "@jupyterlab/settingregistry": "^4.3.1", + "@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", "@lumino/algorithm": "^2.0.2", "@lumino/coreutils": "^2.2.0", "@lumino/signaling": "^2.1.3" }, "devDependencies": { - "@jupyterlab/builder": "^4.3.1", + "@jupyterlab/builder": "^4.3.2", "rimraf": "~5.0.5", "typescript": "~5.1.6" }, diff --git a/galata/package.json b/galata/package.json index 3b551b6be8e9..1ea7f8b16e4b 100644 --- a/galata/package.json +++ b/galata/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/galata", - "version": "5.3.1", + "version": "5.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/debugger": "^4.3.1", - "@jupyterlab/docmanager": "^4.3.1", - "@jupyterlab/nbformat": "^4.3.1", - "@jupyterlab/notebook": "^4.3.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/settingregistry": "^4.3.1", + "@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", "@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 a476edfb84b1..cb4655bfbf64 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, 1, "final", 0) +version_info = VersionInfo(4, 3, 2, "final", 0) _specifier_ = {"alpha": "a", "beta": "b", "candidate": "rc", "final": ""} diff --git a/jupyterlab/staging/package.json b/jupyterlab/staging/package.json index 6125e4e45d19..47146faf2891 100644 --- a/jupyterlab/staging/package.json +++ b/jupyterlab/staging/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/application-top", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/application-extension": "~4.3.1", - "@jupyterlab/apputils": "~4.4.1", - "@jupyterlab/apputils-extension": "~4.3.1", - "@jupyterlab/attachments": "~4.3.1", - "@jupyterlab/cell-toolbar": "~4.3.1", - "@jupyterlab/cell-toolbar-extension": "~4.3.1", - "@jupyterlab/cells": "~4.3.1", - "@jupyterlab/celltags-extension": "~4.3.1", - "@jupyterlab/codeeditor": "~4.3.1", - "@jupyterlab/codemirror": "~4.3.1", - "@jupyterlab/codemirror-extension": "~4.3.1", - "@jupyterlab/completer": "~4.3.1", - "@jupyterlab/completer-extension": "~4.3.1", - "@jupyterlab/console": "~4.3.1", - "@jupyterlab/console-extension": "~4.3.1", - "@jupyterlab/coreutils": "~6.3.1", - "@jupyterlab/csvviewer": "~4.3.1", - "@jupyterlab/csvviewer-extension": "~4.3.1", - "@jupyterlab/debugger": "~4.3.1", - "@jupyterlab/debugger-extension": "~4.3.1", - "@jupyterlab/docmanager": "~4.3.1", - "@jupyterlab/docmanager-extension": "~4.3.1", - "@jupyterlab/docregistry": "~4.3.1", - "@jupyterlab/documentsearch": "~4.3.1", - "@jupyterlab/documentsearch-extension": "~4.3.1", - "@jupyterlab/extensionmanager": "~4.3.1", - "@jupyterlab/extensionmanager-extension": "~4.3.1", - "@jupyterlab/filebrowser": "~4.3.1", - "@jupyterlab/filebrowser-extension": "~4.3.1", - "@jupyterlab/fileeditor": "~4.3.1", - "@jupyterlab/fileeditor-extension": "~4.3.1", - "@jupyterlab/help-extension": "~4.3.1", - "@jupyterlab/htmlviewer": "~4.3.1", - "@jupyterlab/htmlviewer-extension": "~4.3.1", - "@jupyterlab/hub-extension": "~4.3.1", - "@jupyterlab/imageviewer": "~4.3.1", - "@jupyterlab/imageviewer-extension": "~4.3.1", - "@jupyterlab/inspector": "~4.3.1", - "@jupyterlab/inspector-extension": "~4.3.1", - "@jupyterlab/javascript-extension": "~4.3.1", - "@jupyterlab/json-extension": "~4.3.1", - "@jupyterlab/launcher": "~4.3.1", - "@jupyterlab/launcher-extension": "~4.3.1", - "@jupyterlab/logconsole": "~4.3.1", - "@jupyterlab/logconsole-extension": "~4.3.1", - "@jupyterlab/lsp": "~4.3.1", - "@jupyterlab/lsp-extension": "~4.3.1", - "@jupyterlab/mainmenu": "~4.3.1", - "@jupyterlab/mainmenu-extension": "~4.3.1", - "@jupyterlab/markdownviewer": "~4.3.1", - "@jupyterlab/markdownviewer-extension": "~4.3.1", - "@jupyterlab/markedparser-extension": "~4.3.1", - "@jupyterlab/mathjax-extension": "~4.3.1", - "@jupyterlab/mermaid": "~4.3.1", - "@jupyterlab/mermaid-extension": "~4.3.1", - "@jupyterlab/metadataform": "~4.3.1", - "@jupyterlab/metadataform-extension": "~4.3.1", - "@jupyterlab/metapackage": "~4.3.1", - "@jupyterlab/nbconvert-css": "~4.3.1", - "@jupyterlab/nbformat": "~4.3.1", - "@jupyterlab/notebook": "~4.3.1", - "@jupyterlab/notebook-extension": "~4.3.1", - "@jupyterlab/observables": "~5.3.1", - "@jupyterlab/outputarea": "~4.3.1", - "@jupyterlab/pdf-extension": "~4.3.1", - "@jupyterlab/pluginmanager": "~4.3.1", - "@jupyterlab/pluginmanager-extension": "~4.3.1", - "@jupyterlab/property-inspector": "~4.3.1", - "@jupyterlab/rendermime": "~4.3.1", - "@jupyterlab/rendermime-extension": "~4.3.1", - "@jupyterlab/rendermime-interfaces": "~3.11.1", - "@jupyterlab/running": "~4.3.1", - "@jupyterlab/running-extension": "~4.3.1", - "@jupyterlab/services": "~7.3.1", - "@jupyterlab/settingeditor": "~4.3.1", - "@jupyterlab/settingeditor-extension": "~4.3.1", - "@jupyterlab/settingregistry": "~4.3.1", - "@jupyterlab/shortcuts-extension": "~5.1.1", - "@jupyterlab/statedb": "~4.3.1", - "@jupyterlab/statusbar": "~4.3.1", - "@jupyterlab/statusbar-extension": "~4.3.1", - "@jupyterlab/terminal": "~4.3.1", - "@jupyterlab/terminal-extension": "~4.3.1", - "@jupyterlab/theme-dark-extension": "~4.3.1", - "@jupyterlab/theme-dark-high-contrast-extension": "~4.3.1", - "@jupyterlab/theme-light-extension": "~4.3.1", - "@jupyterlab/toc": "~6.3.1", - "@jupyterlab/toc-extension": "~6.3.1", - "@jupyterlab/tooltip": "~4.3.1", - "@jupyterlab/tooltip-extension": "~4.3.1", - "@jupyterlab/translation": "~4.3.1", - "@jupyterlab/translation-extension": "~4.3.1", - "@jupyterlab/ui-components": "~4.3.1", - "@jupyterlab/ui-components-extension": "~4.3.1", - "@jupyterlab/vega5-extension": "~4.3.1", - "@jupyterlab/workspaces": "~4.3.1", - "@jupyterlab/workspaces-extension": "~4.3.1", + "@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", "@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.1", - "@jupyterlab/application-extension": "~4.3.1", - "@jupyterlab/apputils-extension": "~4.3.1", - "@jupyterlab/cell-toolbar-extension": "~4.3.1", - "@jupyterlab/celltags-extension": "~4.3.1", - "@jupyterlab/codemirror-extension": "~4.3.1", - "@jupyterlab/completer-extension": "~4.3.1", - "@jupyterlab/console-extension": "~4.3.1", - "@jupyterlab/coreutils": "~6.3.1", - "@jupyterlab/csvviewer-extension": "~4.3.1", - "@jupyterlab/debugger-extension": "~4.3.1", - "@jupyterlab/docmanager-extension": "~4.3.1", - "@jupyterlab/documentsearch-extension": "~4.3.1", - "@jupyterlab/extensionmanager-extension": "~4.3.1", - "@jupyterlab/filebrowser-extension": "~4.3.1", - "@jupyterlab/fileeditor-extension": "~4.3.1", - "@jupyterlab/help-extension": "~4.3.1", - "@jupyterlab/htmlviewer-extension": "~4.3.1", - "@jupyterlab/hub-extension": "~4.3.1", - "@jupyterlab/imageviewer-extension": "~4.3.1", - "@jupyterlab/inspector-extension": "~4.3.1", - "@jupyterlab/javascript-extension": "~4.3.1", - "@jupyterlab/json-extension": "~4.3.1", - "@jupyterlab/launcher-extension": "~4.3.1", - "@jupyterlab/logconsole-extension": "~4.3.1", - "@jupyterlab/lsp-extension": "~4.3.1", - "@jupyterlab/mainmenu-extension": "~4.3.1", - "@jupyterlab/markdownviewer-extension": "~4.3.1", - "@jupyterlab/markedparser-extension": "~4.3.1", - "@jupyterlab/mathjax-extension": "~4.3.1", - "@jupyterlab/mermaid-extension": "~4.3.1", - "@jupyterlab/metadataform-extension": "~4.3.1", - "@jupyterlab/notebook-extension": "~4.3.1", - "@jupyterlab/pdf-extension": "~4.3.1", - "@jupyterlab/pluginmanager-extension": "~4.3.1", - "@jupyterlab/rendermime-extension": "~4.3.1", - "@jupyterlab/running-extension": "~4.3.1", - "@jupyterlab/settingeditor-extension": "~4.3.1", - "@jupyterlab/shortcuts-extension": "~5.1.1", - "@jupyterlab/statusbar-extension": "~4.3.1", - "@jupyterlab/terminal-extension": "~4.3.1", - "@jupyterlab/theme-dark-extension": "~4.3.1", - "@jupyterlab/theme-dark-high-contrast-extension": "~4.3.1", - "@jupyterlab/theme-light-extension": "~4.3.1", - "@jupyterlab/toc-extension": "~6.3.1", - "@jupyterlab/tooltip-extension": "~4.3.1", - "@jupyterlab/translation-extension": "~4.3.1", - "@jupyterlab/ui-components-extension": "~4.3.1", - "@jupyterlab/vega5-extension": "~4.3.1", - "@jupyterlab/workspaces-extension": "~4.3.1" + "@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" }, "devDependencies": { - "@jupyterlab/builder": "^4.3.1", - "@jupyterlab/buildutils": "^4.3.1", + "@jupyterlab/builder": "^4.3.2", + "@jupyterlab/buildutils": "^4.3.2", "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.1", + "version": "4.3.2", "extensions": { "@jupyterlab/application-extension": "", "@jupyterlab/apputils-extension": "", diff --git a/jupyterlab/staging/yarn.lock b/jupyterlab/staging/yarn.lock index 03a559cb0e3b..743b2d0928b0 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.1": - version: 4.3.1 - resolution: "@jupyterlab/application-extension@npm:4.3.1" - dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/property-inspector": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/statusbar": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 +"@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 "@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: 8ab265df741371136f8708f04bf50dff33e14f710d0a95d04d51eab3cb9335b894a24a9f297c6c16145d641bd3872e3ef171832a30f360fedf0f5deef903c34e + checksum: d6f97b42d97d7e92ac549ea442c5f5a34dc7b26085be402eab03a5503a7963dd0fac3f2612013ec3c2ac56ea2824d805f7e8786c4e0b7f8e43906922404146a4 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.1 - "@jupyterlab/application-extension": ~4.3.1 - "@jupyterlab/apputils-extension": ~4.3.1 - "@jupyterlab/builder": ^4.3.1 - "@jupyterlab/buildutils": ^4.3.1 - "@jupyterlab/cell-toolbar-extension": ~4.3.1 - "@jupyterlab/celltags-extension": ~4.3.1 - "@jupyterlab/codemirror-extension": ~4.3.1 - "@jupyterlab/completer-extension": ~4.3.1 - "@jupyterlab/console-extension": ~4.3.1 - "@jupyterlab/coreutils": ~6.3.1 - "@jupyterlab/csvviewer-extension": ~4.3.1 - "@jupyterlab/debugger-extension": ~4.3.1 - "@jupyterlab/docmanager-extension": ~4.3.1 - "@jupyterlab/documentsearch-extension": ~4.3.1 - "@jupyterlab/extensionmanager-extension": ~4.3.1 - "@jupyterlab/filebrowser-extension": ~4.3.1 - "@jupyterlab/fileeditor-extension": ~4.3.1 - "@jupyterlab/help-extension": ~4.3.1 - "@jupyterlab/htmlviewer-extension": ~4.3.1 - "@jupyterlab/hub-extension": ~4.3.1 - "@jupyterlab/imageviewer-extension": ~4.3.1 - "@jupyterlab/inspector-extension": ~4.3.1 - "@jupyterlab/javascript-extension": ~4.3.1 - "@jupyterlab/json-extension": ~4.3.1 - "@jupyterlab/launcher-extension": ~4.3.1 - "@jupyterlab/logconsole-extension": ~4.3.1 - "@jupyterlab/lsp-extension": ~4.3.1 - "@jupyterlab/mainmenu-extension": ~4.3.1 - "@jupyterlab/markdownviewer-extension": ~4.3.1 - "@jupyterlab/markedparser-extension": ~4.3.1 - "@jupyterlab/mathjax-extension": ~4.3.1 - "@jupyterlab/mermaid-extension": ~4.3.1 - "@jupyterlab/metadataform-extension": ~4.3.1 - "@jupyterlab/notebook-extension": ~4.3.1 - "@jupyterlab/pdf-extension": ~4.3.1 - "@jupyterlab/pluginmanager-extension": ~4.3.1 - "@jupyterlab/rendermime-extension": ~4.3.1 - "@jupyterlab/running-extension": ~4.3.1 - "@jupyterlab/settingeditor-extension": ~4.3.1 - "@jupyterlab/shortcuts-extension": ~5.1.1 - "@jupyterlab/statusbar-extension": ~4.3.1 - "@jupyterlab/terminal-extension": ~4.3.1 - "@jupyterlab/theme-dark-extension": ~4.3.1 - "@jupyterlab/theme-dark-high-contrast-extension": ~4.3.1 - "@jupyterlab/theme-light-extension": ~4.3.1 - "@jupyterlab/toc-extension": ~6.3.1 - "@jupyterlab/tooltip-extension": ~4.3.1 - "@jupyterlab/translation-extension": ~4.3.1 - "@jupyterlab/ui-components-extension": ~4.3.1 - "@jupyterlab/vega5-extension": ~4.3.1 - "@jupyterlab/workspaces-extension": ~4.3.1 + "@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 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.1": - version: 4.3.1 - resolution: "@jupyterlab/application@npm:4.3.1" +"@jupyterlab/application@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/application@npm:4.3.2" dependencies: "@fortawesome/fontawesome-free": ^5.12.0 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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: f5893a67c6f15ca23b7a4c6e027fab324a9405cf83741f6324a3d5c8c15c2c0c869c8a1f752026eb9c58b4256ffe5081bad177d64161d2e84c9e86e0eb14476a - languageName: node - linkType: hard - -"@jupyterlab/apputils-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/apputils-extension@npm:4.3.1" - dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/mainmenu": ^4.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/statusbar": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 - "@jupyterlab/workspaces": ^4.3.1 + 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 "@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: 4b3fd88b718663987feb0515b590d8e72a073c1176286ecafd9add2a2b026b885701752831a4173ffa2eeacab0942027d109deda73cd50870af4a014865a0f70 + checksum: 5b93214dcfaae74d32ec86789ddb548002d649a3dbb03c68de4f993bc572b6b1ab487776c3238faff58b008cf79bda75c4e4dedb1c93bf29e35b5944d49685c6 languageName: node linkType: hard -"@jupyterlab/apputils@npm:~4.4.1": - version: 4.4.1 - resolution: "@jupyterlab/apputils@npm:4.4.1" - dependencies: - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/statusbar": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 +"@jupyterlab/apputils@npm:~4.4.2": + version: 4.4.2 + resolution: "@jupyterlab/apputils@npm:4.4.2" + 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 "@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: bcb91a90540003e1a89bae2c3187e15b655c0ecf8ef11bf82146cdbdad2f25589c76660520b2bb6625eec00502dbe271be263994b8ee3b0259c3f96690f14325 + checksum: 9fbadf82e7b9ef889bb87a22e03bbe3910af19c10c0102e3231aaa28a0d704e7e4be7c8552b7ff1b7a1485aee089a89f6c0ba8ec3e4b5dd97e064ec365a2f270 languageName: node linkType: hard -"@jupyterlab/attachments@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/attachments@npm:4.3.1" +"@jupyterlab/attachments@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/attachments@npm:4.3.2" dependencies: - "@jupyterlab/nbformat": ^4.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 + "@jupyterlab/nbformat": ^4.3.2 + "@jupyterlab/observables": ^5.3.2 + "@jupyterlab/rendermime": ^4.3.2 + "@jupyterlab/rendermime-interfaces": ^3.11.2 "@lumino/disposable": ^2.1.3 "@lumino/signaling": ^2.1.3 - checksum: c373823651cb0b5dec3e267c604df834a4744c868ffc96f1de060a49e80787816923e5b09dddc9fe752f2d6386129a583eb83877443e336e84824a887e1ae03e + checksum: c884852e961e28f7b6be923a744a45b5a36da850b1c767bf1bc3364b631791a54c370588aa130eab04a9e7462ff28b81aaa74e4a8665da53b451e9988bce5433 languageName: node linkType: hard -"@jupyterlab/builder@npm:^4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/builder@npm:4.3.1" +"@jupyterlab/builder@npm:^4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/builder@npm:4.3.2" 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: 8d2726e3e808732964facf9dcc6d0fcc01854c336d0b4f5ef5357ee78ef6941947b98bed78f94cdc9c8c14da4cda9f1057dddce46fd9db3ea0bbc0e6eb4f119c + checksum: 03295156a335e605b92982ebd1009711d85bab837147ab1b3e5faeca5e97102ba776af6c47e269c1069eb95fb0b84652014fa245f666c43d11aa37a2b51ec40d languageName: node linkType: hard -"@jupyterlab/buildutils@npm:^4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/buildutils@npm:4.3.1" +"@jupyterlab/buildutils@npm:^4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/buildutils@npm:4.3.2" 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: c4504e2a040f7774597993b9ea83e821009d96a9b9b69d2cf41bc46a3a4bc8ee72cd67f022fec41d6fe5d5a421d6ced4e95df5f7ff4b2175effde21225de7cab + checksum: a7785ac8a4c00c46258194dca098f82f8ada0b5fedf86c32187050be4aedffa302924698a0eda148bcefc9850b3e7b1ac906ad5b6d204a85a66e4d706394d1e9 languageName: node linkType: hard -"@jupyterlab/cell-toolbar-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/cell-toolbar-extension@npm:4.3.1" +"@jupyterlab/cell-toolbar-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/cell-toolbar-extension@npm:4.3.2" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/cell-toolbar": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - checksum: 199453068685d579819477b969305b8848a72dd24ab23a152ede34a20fecfed9c706139b008671566f24a861859b8b7a45ac69757b70a918778e2c4033db3753 + "@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 languageName: node linkType: hard -"@jupyterlab/cell-toolbar@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/cell-toolbar@npm:4.3.1" +"@jupyterlab/cell-toolbar@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/cell-toolbar@npm:4.3.2" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/cells": ^4.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/notebook": ^4.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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: a5589e6b5d34b5e6806622083fc5e9c8c1422b54fa308e3d6ef0dac717f262de23b9d4654892012e27d8bdcc02ee5aec8c5c47db705d9b1638cf41be952247f7 + checksum: f4fde998905a26697e3d214310fa2f9b73eb04bbf721a35dd937f29b41c16e1dec429b49c64b911efb771b2e8e17b31af00a59ab5f918683ebf246bcb2bd58eb languageName: node linkType: hard -"@jupyterlab/cells@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/cells@npm:4.3.1" +"@jupyterlab/cells@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/cells@npm:4.3.2" dependencies: "@codemirror/state": ^6.4.1 "@codemirror/view": ^6.26.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/attachments": ^4.3.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/codemirror": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/documentsearch": ^4.3.1 - "@jupyterlab/filebrowser": ^4.3.1 - "@jupyterlab/nbformat": ^4.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/outputarea": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/toc": ^6.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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: bcb3da3315d1b91dadd8697f49f50ce7a05a6e6290e5caa3029db3d9fb90e60bf51b5b94907ead92d52b96b8bf44778ed9f5b7fef44280a9d16ea56144119885 + checksum: b911751edb7513f1a3bd76b64bef14086b0a0b23279d1e3e0716325b471d4ea0aecaf4ef3ae3ad938a6ae6ce2f241cb7c2f37439a033653c533b965194f6b619 languageName: node linkType: hard -"@jupyterlab/celltags-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/celltags-extension@npm:4.3.1" +"@jupyterlab/celltags-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/celltags-extension@npm:4.3.2" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/notebook": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@jupyterlab/application": ^4.3.2 + "@jupyterlab/notebook": ^4.3.2 + "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/ui-components": ^4.3.2 "@lumino/algorithm": ^2.0.2 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: dd7c01a3a9d7dc2bec98c169eb956ca2ca7c043eae0c71c63150894f1fbca2cf820a5cadf7d4e3e1f9f97ec7b676ae881171041aac1414c689d450f35e3a5932 + checksum: 06dab732549197b5a73653e1c715f52188d3eaf75e1ee8465bd1a2641c4fa742926709bc64a0c2d004cc470321144d2449f8a88a18d64a830c6b9b09ee4b845e languageName: node linkType: hard -"@jupyterlab/codeeditor@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/codeeditor@npm:4.3.1" +"@jupyterlab/codeeditor@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/codeeditor@npm:4.3.2" dependencies: "@codemirror/state": ^6.4.1 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/nbformat": ^4.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/statusbar": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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: d71158530cd53da4b853460236206d574c97020ec92e3dbec76469a2d81ce68eea3620c0bbba77226fe145356e48f54fdf78bcf768c2c6220d718b99d15484ae + checksum: efc13c36797be1a7db2f3b7ea7bd41ad32fd39a52cccb829024396eb4826fbed008df957343fc639911815a81d9e0f4bbef6a8b98753ba31a1ac2f5209a5d149 languageName: node linkType: hard -"@jupyterlab/codemirror-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/codemirror-extension@npm:4.3.1" +"@jupyterlab/codemirror-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/codemirror-extension@npm:4.3.2" 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.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/codemirror": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/statusbar": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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: e85e991b404485962fd6eafc5379017d48a9b08e6436d4c90911c28a40af77ba768716fc67bf1faefa6ec1ef63472e5614567f47ad326be4621d164f0cf7da2e + checksum: 40329fb4b839b722995622c94c0db53a1ff508295a59be3b0c88aa7aae2b2242cca6c352591ff3e31e647c336d9429db01a2d9316cb282f3d210c39aa8ee6d30 languageName: node linkType: hard -"@jupyterlab/codemirror@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/codemirror@npm:4.3.1" +"@jupyterlab/codemirror@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/codemirror@npm:4.3.2" 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.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/documentsearch": ^4.3.1 - "@jupyterlab/nbformat": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 + "@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 "@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: db35ec00b518b54f5600ad2182fb9c3a76a49ec9029242116b93c87a8431333ab04a7e827269e606d68c127435fc2bd7415d7885db344006628b5c60c0ab162a + checksum: 10ed923131b3cab378ced2583b076ed6c1f244b6d333b05b9e8203157500f0b83f923241354cf5b6d5df9b631aaed15378a34f1d7f6e4427c8429782cc936933 languageName: node linkType: hard -"@jupyterlab/completer-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/completer-extension@npm:4.3.1" - dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/completer": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 +"@jupyterlab/completer-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/completer-extension@npm:4.3.2" + 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 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@rjsf/utils": ^5.13.4 react: ^18.2.0 - checksum: 95868b042ff0118b137f2a04199c5a2a809b9b34ff85fc2566766205906187e7bc133bce907cbb59c13957d1dcc35b02c97ab8dc911361614882295342569a45 + checksum: 12235236e08c860785fdf2fc599725eaf2d09197b0f7a320e0fefd55e66f1ba839edc2446165479eafe92f8c90c099315baa348e123035b345a584419e8a2092 languageName: node linkType: hard -"@jupyterlab/completer@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/completer@npm:4.3.1" +"@jupyterlab/completer@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/completer@npm:4.3.2" dependencies: "@codemirror/state": ^6.4.1 "@codemirror/view": ^6.26.3 "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/codemirror": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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: 58c924ab27a3acf50a44868a5b237aece99a8ff140ec6ef37fdc12857d202378a302ed4d6d5059c2e790145a8bd3e8a2dd12e55b06f4c5afba49b29a37e07750 - languageName: node - linkType: hard - -"@jupyterlab/console-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/console-extension@npm:4.3.1" - dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/completer": ^4.3.1 - "@jupyterlab/console": ^4.3.1 - "@jupyterlab/filebrowser": ^4.3.1 - "@jupyterlab/launcher": ^4.3.1 - "@jupyterlab/mainmenu": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + 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 "@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: a3f3452ae87ba9a7dd6b777a3957e2e505590ca77a20728482a7c7c83533385113b2260ce35d1bd345df6418604bf419b3e08d9ef22742d48624f73f3ef18944 + checksum: d968976f88bfb7fdeb77b1036df9364fcba0d882bdbb62da42dd5053f3c379a10f68814a3966b95e91b1967853a3af77d64f063a585163effe2e70983673d782 languageName: node linkType: hard -"@jupyterlab/console@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/console@npm:4.3.1" +"@jupyterlab/console@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/console@npm:4.3.2" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/cells": ^4.3.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/nbformat": ^4.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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: 9515875a1f91cb63e8b3c2f59e61ae3f6f8277032cf70bed2260c57d840a13431f2e8b9917d58a7cc285f2108526a621c483b27952ddca58214b92637949a2c0 + checksum: 5551f8988334d05763325bda2d604b933eadb6653efa5fb9698979c285f8fbe9cadf79518b6f0ca2173817a440f82f1bf121f8057e6db22c332335484a059fc7 languageName: node linkType: hard -"@jupyterlab/coreutils@npm:~6.3.1": - version: 6.3.1 - resolution: "@jupyterlab/coreutils@npm:6.3.1" +"@jupyterlab/coreutils@npm:~6.3.2": + version: 6.3.2 + resolution: "@jupyterlab/coreutils@npm:6.3.2" 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: 9de967c43379d5c888981f60e1fda42b243f327ba86653bdbba2f4c1add733676a1963bda8f4a21a010ad095bf5ddd188a1000b3e81e140a4d75ee26c1048de7 + checksum: 83c9825dbec9bae5f4afe3bd507ff80d6dde9737fe76bbd41ec4965bcc2f0757e2a0b7500c53d513f85eb572276548a048e931fde619b369ab5027a35b3efd5b languageName: node linkType: hard -"@jupyterlab/csvviewer-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/csvviewer-extension@npm:4.3.1" - dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/csvviewer": ^4.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/documentsearch": ^4.3.1 - "@jupyterlab/mainmenu": ^4.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 +"@jupyterlab/csvviewer-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/csvviewer-extension@npm:4.3.2" + 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 "@lumino/datagrid": ^2.4.1 "@lumino/widgets": ^2.5.0 - checksum: 5f4866a2fa9d7538138afbe8bea61ab17edf0b374255cfcda26b284e44ed17e2efe9498c1fdda6565533a8db2683826b2051c1cd107db0ad34e4e55e26cc69d6 + checksum: d42f6cc4ed165901671f7d731082c1e6f70e49ed6d841284fcf367878fea1eec895cd719564bc172a7af7fdaec04e96e564f59fe8d17a5babd4b43ab17fed7f2 languageName: node linkType: hard -"@jupyterlab/csvviewer@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/csvviewer@npm:4.3.1" +"@jupyterlab/csvviewer@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/csvviewer@npm:4.3.2" dependencies: - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@jupyterlab/coreutils": ^6.3.2 + "@jupyterlab/docregistry": ^4.3.2 + "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/ui-components": ^4.3.2 "@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: 0749f45bc605d57a1b6c11b570a4d52a24766b2a2fbf9b8da277b789c9d33794ff70eba0b5fee99a143713ea57979c09870f084561fdbd093608617fdb861d6d - languageName: node - linkType: hard - -"@jupyterlab/debugger-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/debugger-extension@npm:4.3.1" - dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/cells": ^4.3.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/console": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/debugger": ^4.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/fileeditor": ^4.3.1 - "@jupyterlab/logconsole": ^4.3.1 - "@jupyterlab/notebook": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 + 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 "@lumino/commands": ^2.3.1 - checksum: 50d48258473bd216cd20f7ca738aa9f9eefe852c6f4ada34a9fbc79a64e364ad8f4ed24aafdd30b91bf3dc29a64cbd9e4ba318904bd7ba28437a05586902a09b + checksum: e380e46d085125e1f21daaea947b6705a4deb6afcb1c498a055c4d0c19519b9d00238a5e265e692e10c806bdf8e8666ecdff89f2e283be22f61a8dda517fdd8f languageName: node linkType: hard -"@jupyterlab/debugger@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/debugger@npm:4.3.1" +"@jupyterlab/debugger@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/debugger@npm:4.3.2" 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.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/cells": ^4.3.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/codemirror": ^4.3.1 - "@jupyterlab/console": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/fileeditor": ^4.3.1 - "@jupyterlab/notebook": ^4.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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: 7514495d6fa4d4d9e7b194091a5ad48fd311b644b8ece3a83d3e5a2f1131513b77b1be926661cf4c1ba887620ba60d9d95baeeb4d290ce6a56bf5d7c33d63569 + checksum: dbe01c3c197aa77980cb17f5edcdc87bff6a3ee7575501589198ee7a8ed70dd66c73b01d897dcda646763f82f217c5fdad430a9cc81e9ce770041ba8f94a847c languageName: node linkType: hard -"@jupyterlab/docmanager-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/docmanager-extension@npm:4.3.1" - dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docmanager": ^4.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/statusbar": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 +"@jupyterlab/docmanager-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/docmanager-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/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 "@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: c38f38e9cb117db2c9dd3f44b978083fa49edec9221e6f80913b637985f63c1828f1658cbfc16e6017046aff8753917eaadba774e9a571579e838b2545b5a600 + checksum: bb698e9955d2bff1219c8112bd60bef6c270e8893dec6b2d993fa345f4bd2ad9ce5b9d67d0935bc60323e1a571c9c9dc43a121f45ee7ed84808cf2564e6f37b6 languageName: node linkType: hard -"@jupyterlab/docmanager@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/docmanager@npm:4.3.1" - dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/statusbar": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 +"@jupyterlab/docmanager@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/docmanager@npm:4.3.2" + 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 "@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: eb0fb801872a1253fd4173b94b46e3e517703e5a8dcb874a477353050556d4aca48c88664a8de9e068a68c49139abe8236691e6eda3835a96599bda707a0f8a1 + checksum: c19f6bba37a6a27dbe4bca6322c03d8bc4c85fd3b6e3c8a8862842550f7f90183056a70fc591be7c74990576f268ae6a27237b8dc5150ca77a3737bc4f7d3b1b languageName: node linkType: hard -"@jupyterlab/docregistry@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/docregistry@npm:4.3.1" +"@jupyterlab/docregistry@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/docregistry@npm:4.3.2" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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: b5462d864015f40b3a7c712c95969b345cde588b118cdc62fbd6dbf753d7decaf99888969490a0df06e96fb27286f0fa2ca06ea4065f2e9e94093d07c0586d71 + checksum: 4c094e228fd54550b5ee4b842ff1fac54062f7357b62ab783fcc7dbd3744549d6db4b0fb61deb8cac610303440da11465c507e831bbc616495dc1afde4778559 languageName: node linkType: hard -"@jupyterlab/documentsearch-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/documentsearch-extension@npm:4.3.1" +"@jupyterlab/documentsearch-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/documentsearch-extension@npm:4.3.2" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/documentsearch": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 + "@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 "@lumino/commands": ^2.3.1 "@lumino/widgets": ^2.5.0 - checksum: b412bfaf7622c0db65405bc328e30c72e19a55eaf14d237cd582ff011b11da84354fbbd6c3b1d385de046e8f99df82b4528ea992df75b1baccdd004254a12ab7 + checksum: 62a80a4e8e38a245031c54413a9fb5a493305b7b1f289b4b2517b9c1411df24e625af8cfbe9276d7dc40663f58123d1c3b916a37075541a2ea6c5f4bda817d7b languageName: node linkType: hard -"@jupyterlab/documentsearch@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/documentsearch@npm:4.3.1" +"@jupyterlab/documentsearch@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/documentsearch@npm:4.3.2" dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@jupyterlab/apputils": ^4.4.2 + "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/ui-components": ^4.3.2 "@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: 95f0e3b028c4f4a34a0f01080e76f1eb1cc7fecff52881f5120c494e8d1395ef3025be796973c34cf919dc6ddebd7908babc78e2ac2ac01aa085b095b760cc2d + checksum: a3e99bbe093dcc71ea7f011dced8f2d5201f0c5190fed935b96c5a07eab5b499c78a5902bb982e8a35fbfce7f6acc189c942ef520dc5d516de24ad7cc8213286 languageName: node linkType: hard -"@jupyterlab/extensionmanager-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/extensionmanager-extension@npm:4.3.1" +"@jupyterlab/extensionmanager-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/extensionmanager-extension@npm:4.3.2" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/extensionmanager": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 - checksum: 00d78c1fb0887772e8fe40871a7d5402d63e1f59e1fc1cf18bb192f40c5d7829580c9fb0714963a9be01a9a00afde51f9ea32f54228aea979c0a9e65dca102ce + "@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 languageName: node linkType: hard -"@jupyterlab/extensionmanager@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/extensionmanager@npm:4.3.1" +"@jupyterlab/extensionmanager@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/extensionmanager@npm:4.3.2" dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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: 3cb6e420de4ff9218878660251fa17f30561a3f88fd69d51389d42968c2dbe95f978972af670bf18ee239ffd0a6cf59f3a1c02201190b64d891cb776495da279 - languageName: node - linkType: hard - -"@jupyterlab/filebrowser-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/filebrowser-extension@npm:4.3.1" - dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docmanager": ^4.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/filebrowser": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/statusbar": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + 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 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/widgets": ^2.5.0 - checksum: 11809b8ec379e54ecc552519e77a11fc0f22333320365738e16ea25ff86cc44e21d9215f395bd889048ade62f9c6c571d6ace6969c2dd785ee7ab8ff6e4e85aa + checksum: a56fcd42c88bd5dcb9f423df8c7b7b34640bbf8eada8f5707873cd0c8d50766dde4a9a65b8f8784e6fb6407222b87f9722cce61883d2c1991fae718ab0f89bfd languageName: node linkType: hard -"@jupyterlab/filebrowser@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/filebrowser@npm:4.3.1" - dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docmanager": ^4.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/statusbar": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 +"@jupyterlab/filebrowser@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/filebrowser@npm:4.3.2" + 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 "@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: c9cfc581b5ec72288a52933027a3b86faed0871b6961a55fc7c60726d92f4ac3a74e874005d212ccbde863e8ef96423a2491d66371a75e49cb5ed9b45e911f1f + checksum: f1d889799bbb64f8b6cb3a03d0f2edec6dd4e602d9f5b2e7c4014afcad3f1c7145989f86a21fa7ee5c3c33165bb800e3f4a2e0e296c74af87e1bd0ae5fdeb4aa languageName: node linkType: hard -"@jupyterlab/fileeditor-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/fileeditor-extension@npm:4.3.1" +"@jupyterlab/fileeditor-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/fileeditor-extension@npm:4.3.2" dependencies: "@codemirror/commands": ^6.5.0 "@codemirror/search": ^6.5.6 - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/codemirror": ^4.3.1 - "@jupyterlab/completer": ^4.3.1 - "@jupyterlab/console": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/documentsearch": ^4.3.1 - "@jupyterlab/filebrowser": ^4.3.1 - "@jupyterlab/fileeditor": ^4.3.1 - "@jupyterlab/launcher": ^4.3.1 - "@jupyterlab/lsp": ^4.3.1 - "@jupyterlab/mainmenu": ^4.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/statusbar": ^4.3.1 - "@jupyterlab/toc": ^6.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.5.0 - checksum: 2182d596c060915c3868ea206ac85e0affd7ad3b23b8189f9a233f125387b2cc1cd57b918f32893bedd2a8ad1c21ea3abdfe70d73a808225d14a49bd9a2e6a50 + checksum: 69870935300181ffbf58db3fefcc998d354086b982e83e55730daa190a25fc3a227908501f496bb02ea92eaf23052537e4cc0cd5faadd57d3db08e82de61c1ba languageName: node linkType: hard -"@jupyterlab/fileeditor@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/fileeditor@npm:4.3.1" +"@jupyterlab/fileeditor@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/fileeditor@npm:4.3.2" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/codemirror": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/documentsearch": ^4.3.1 - "@jupyterlab/lsp": ^4.3.1 - "@jupyterlab/statusbar": ^4.3.1 - "@jupyterlab/toc": ^6.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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: e617fb01d15a5d31caaf7861fecceb4cf1303da45977d8f278c3f055f940b7e677b3b8750330a55f770236d55a56f9eadd729e0e79b61c85407c4a78a1caf4c4 + checksum: 329bc61194b73b034c0c2c29687ecf0075a227595be3c25ebcd78fcffca19350566ef353eabec286ff2e59778f585442b7378743c7440e58b56e4a6f86278820 languageName: node linkType: hard -"@jupyterlab/help-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/help-extension@npm:4.3.1" - dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/mainmenu": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 +"@jupyterlab/help-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/help-extension@npm:4.3.2" + 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 "@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: 5b6425446c71aea749b7d4935652fe5208624a10eccd83460eff0d1b4f905120f724084b874b1dd5802b259e779a9cba3675c6555eeb6aba346ff00a741cad04 + checksum: a0424d980f56d4597585e66397ab82c044dcb7a45f725c6086a5fe2cfa8f7b79a1f1530128907d4ced3024152603c925a34282f532ac519ece9dfc5b340afcbd languageName: node linkType: hard -"@jupyterlab/htmlviewer-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/htmlviewer-extension@npm:4.3.1" +"@jupyterlab/htmlviewer-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/htmlviewer-extension@npm:4.3.2" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/htmlviewer": ^4.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 - checksum: 4fe89e77d6c367740e6c09fbe087d20212a390f11a0899551c3af64bb89c28d1adde72b5a56242f721e08b304107ef0ebf381ce723aa435e0c79f38fc1908e79 + "@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 languageName: node linkType: hard -"@jupyterlab/htmlviewer@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/htmlviewer@npm:4.3.1" +"@jupyterlab/htmlviewer@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/htmlviewer@npm:4.3.2" dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@lumino/coreutils": ^2.2.0 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.5.0 react: ^18.2.0 - checksum: 86d58d14806527d1e447d2f4851bb5aac6aed40e68d849153862b7628923a8d51061062677df421c63ac2b22fafaaa5bf4502660d842bc0625a152297db40101 + checksum: cce82698ce1247ef26269ee203d88023cd65ac1af10c6b1972ccc5c636bd3b4a567d0fdd2d6311019c627b77d29c5ef1f8651d9cb347ce2729cd0dd971e95fc7 languageName: node linkType: hard -"@jupyterlab/hub-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/hub-extension@npm:4.3.1" +"@jupyterlab/hub-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/hub-extension@npm:4.3.2" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/translation": ^4.3.1 - checksum: 766dfb029f9945ee8e174725161d16488b04de73d6958f66a5450b18009e0ab7a19a460392910493004156663bf432a8086d90aa94b6dd733369f1587d0488d0 + "@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 languageName: node linkType: hard -"@jupyterlab/imageviewer-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/imageviewer-extension@npm:4.3.1" +"@jupyterlab/imageviewer-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/imageviewer-extension@npm:4.3.2" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/imageviewer": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - checksum: b935c3096b7f667bd70b4e57fb0ab4f05d12bc8755f5b3181641e392c26061620e2301f55318cb36a779655b76b2f756c329659f7f086be9e583c547b7cf44e2 + "@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 languageName: node linkType: hard -"@jupyterlab/imageviewer@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/imageviewer@npm:4.3.1" +"@jupyterlab/imageviewer@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/imageviewer@npm:4.3.2" dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docregistry": ^4.3.1 + "@jupyterlab/apputils": ^4.4.2 + "@jupyterlab/coreutils": ^6.3.2 + "@jupyterlab/docregistry": ^4.3.2 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/widgets": ^2.5.0 - checksum: a1a3f1e5443800b2b32b1956fcce033070a1d163d4a023394c03f17bcc45eec5c0cc3b53775b170c0b979306f0e5aae7deb9eba90ad6fc7678cd3b38d85f2fa5 + checksum: a886430400007f5f4dbfe6c23475614f726407e1968425d17d8eed120f43fb897243949580c3140d65a5b739cc527be50d086d0fd5f7af3d0ed82ec912e1aae6 languageName: node linkType: hard -"@jupyterlab/inspector-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/inspector-extension@npm:4.3.1" - dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/console": ^4.3.1 - "@jupyterlab/inspector": ^4.3.1 - "@jupyterlab/launcher": ^4.3.1 - "@jupyterlab/notebook": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 +"@jupyterlab/inspector-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/inspector-extension@npm:4.3.2" + 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 "@lumino/widgets": ^2.5.0 - checksum: 494b9af49d150817dff0c8b80a16878f54ac09d508960560edec4ac4b5bb2c346ac5c1fccfbd9642be4571f46176491befbb487fbc40704de712d9583ed38214 + checksum: d5bb4dbca68e747cf4be806c4d46cc6ec1a8a97baace19e5a8626b10cee0566c2a09d49ce931d7c5e2c4c4e738a8f87b969dc7ad07732e51ec2bdf7da20e20b5 languageName: node linkType: hard -"@jupyterlab/inspector@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/inspector@npm:4.3.1" - dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 +"@jupyterlab/inspector@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/inspector@npm:4.3.2" + 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 "@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: 4654987b4a3f02576f0cdc03f633723677ea2ba62e017b24302644dfb186f5bf34d2bd0cd4c179f9cec922e993c7047177ba1404828619c95211cd9a4b258b7d + checksum: c2ebf5774fdc15a72e7184b7e8fd9725afdd4c388996e36b1f9d29efdf77ee0ff80bda744ed4b67d92f31e0607f44c338decf71512c7a1b379485be2e65599ea languageName: node linkType: hard -"@jupyterlab/javascript-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/javascript-extension@npm:4.3.1" +"@jupyterlab/javascript-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/javascript-extension@npm:4.3.2" dependencies: - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 - checksum: f144a6d515c04e3efd42f641585ee40eab846269fe5948b67ddeb8e94fad673e491c77f348ebadfabdd61f875cb26084a38c08d585ca23f18b4fa10375d19a46 + "@jupyterlab/rendermime": ^4.3.2 + "@jupyterlab/rendermime-interfaces": ^3.11.2 + checksum: 12592523324f03c4a266be50e37adde8764ba11731d8863d944fcb57ec620ee05db156651a9568a3c58e7fc89a3f7d3a65d7876bd5cfbf653a9a70047c7a5e57 languageName: node linkType: hard -"@jupyterlab/json-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/json-extension@npm:4.3.1" +"@jupyterlab/json-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/json-extension@npm:4.3.2" dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/codemirror": ^4.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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: f30325009527e3a549ea7a9335efe09a248122abd0b8d4b2ad189c1e159f101efd3cf2e8b41f960b93621380529fefe09100cae320403225834051407344c7dc + checksum: 2dcf2a69326a63de4d7dc1c0dbb42bcef6646751e04159d82d1e24d3f53db1193508da7222a2476e25c8c377114d129aeb6d9d64d09d73a7845b703b1b3a38f3 languageName: node linkType: hard -"@jupyterlab/launcher-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/launcher-extension@npm:4.3.1" - dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/filebrowser": ^4.3.1 - "@jupyterlab/launcher": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 +"@jupyterlab/launcher-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/launcher-extension@npm:4.3.2" + 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 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.5.0 - checksum: 325c70a84f4255bf7b8525d196fecd4834836857ebf7dbf686e113951582ed093db197c91fdaab48399fedf2e5d79eb15aaf6b2b65cb208220269a6b95ab0c34 + checksum: 7faea40a1a5cd6209d456d7d9d74c905beae617bd6faa621f4c20f41a24ad9785b022dd48f2532900e33f3fd017a89422baec059854af43d55bca6f1078e828c languageName: node linkType: hard -"@jupyterlab/launcher@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/launcher@npm:4.3.1" +"@jupyterlab/launcher@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/launcher@npm:4.3.2" dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@jupyterlab/apputils": ^4.4.2 + "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/ui-components": ^4.3.2 "@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: 94f58f6cfcd635778879791ed8072af53fc04340335e8d80f1222d4206114c6cbe4228da3e4d781b4017ae881b8bf508a3543b564b1f8519d7e44aaee7fa97f2 + checksum: e95404319531e5136374bba364fdc4564d9c3503fd94562b7e333eaf605ae2facfd520fdc7d68007311809c8b75f5c6fab31d7c42e9141f08c8ac9d9c2665fba languageName: node linkType: hard -"@jupyterlab/logconsole-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/logconsole-extension@npm:4.3.1" - dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/logconsole": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/statusbar": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 +"@jupyterlab/logconsole-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/logconsole-extension@npm:4.3.2" + 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 "@lumino/coreutils": ^2.2.0 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.5.0 react: ^18.2.0 - checksum: d0858a90e97dfc3c4ae88a8483eeed3b68de3cc539c7d50b3b49262c4011e8c5e226e7a93bf1d2be8ab9bf03546808d15df01cfa411621e7296c74dbe0ad1c7b + checksum: c41fe52a0a9de1714efd5eb26bb6f582e659603f40782bef06e2fdc5941b40b981705b91781a1757e34915005565a0cfd5cc9a31e695c0dc1e7c90fdb54bd25c languageName: node linkType: hard -"@jupyterlab/logconsole@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/logconsole@npm:4.3.1" - dependencies: - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/nbformat": ^4.3.1 - "@jupyterlab/outputarea": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/translation": ^4.3.1 +"@jupyterlab/logconsole@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/logconsole@npm:4.3.2" + 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 "@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: 817b1d83f66d85db058219dd20b7d47381163c73c55feab104b254a9da8a39be5ffa567ff49f83da96d38d9f4797d09df20e480eb6cce6bed90bce7553687619 + checksum: 4710553002df0cbdcb93bf7b401edf38c7cd83ad59106269e47a9f98e303cd2e123421016f544f93125d323cad300b00cce7d3ba0a125066e174fe8cc8e4a67a languageName: node linkType: hard -"@jupyterlab/lsp-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/lsp-extension@npm:4.3.1" - dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/lsp": ^4.3.1 - "@jupyterlab/running": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 +"@jupyterlab/lsp-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/lsp-extension@npm:4.3.2" + 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 "@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: 5d60f530a6f5291a076d1627664be29843114f34ec8bf0f889212440a28dbb6c1260051fe211dbfc4d577449cd19f932d02a33f8db994a6e3698d5d94eb78e70 + checksum: 52dc75795081d457ba61aa38e55b790bf891fab46d9c68efc49412c901d109aa84cdcea0c53dbb16ac8d90557142a2544c3c6117edc6827ee95b5a0a47c58efe languageName: node linkType: hard -"@jupyterlab/lsp@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/lsp@npm:4.3.1" - dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/codemirror": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/translation": ^4.3.1 +"@jupyterlab/lsp@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/lsp@npm:4.3.2" + 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 "@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: 9602bb05b18fbea44796917b63e7392ecaab2c1cef4f28ef7dc8a9dcc91bd686cfd1abb1b250cda8fdc864c577aa0157ec9aefb0d977a085c663a41937507636 + checksum: 6f722516128e5c5952e4563f80d429209a4155aece84758e6f1090bdb08188034fd71c355edf98939aec4263c641cbd7697f77de0039eb9a484f4f1ddd38776d languageName: node linkType: hard -"@jupyterlab/mainmenu-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/mainmenu-extension@npm:4.3.1" - dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docmanager": ^4.3.1 - "@jupyterlab/filebrowser": ^4.3.1 - "@jupyterlab/mainmenu": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 +"@jupyterlab/mainmenu-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/mainmenu-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/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 "@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: e4499fd56d0f77412a901087f6c9001ea05843f925cd86936ffa08097b429e2eb6758a73f6eb94f1ba0473a8b7bad95943aee6500003816fd0ea62d9c8a4512a + checksum: 00fcfe1d8e79c3cdae96543c06f29ff9eb4071177e8f332e9849a60c556811269c19049525c877e0c99152e9ee7d8391ca6c99a520bb70583eda2e56e4cd339f languageName: node linkType: hard -"@jupyterlab/mainmenu@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/mainmenu@npm:4.3.1" +"@jupyterlab/mainmenu@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/mainmenu@npm:4.3.2" dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@jupyterlab/apputils": ^4.4.2 + "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/ui-components": ^4.3.2 "@lumino/algorithm": ^2.0.2 "@lumino/commands": ^2.3.1 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.5.0 - checksum: 6ba3218a2a31c6cffc9c6da4c751c45c40db1251525affd531d776928af23458d320b57c08329f4cd9a100bd792270b4bef4412e84ee9e0989ad0679055dec6e + checksum: 0aecedb30748fa7e9c9624a719202c07b2a813c8310b1295d51f14b9a74e1625964eb8f263665841492743dccf004972120cb945d412b32ab0cc9b77cfdad94d languageName: node linkType: hard -"@jupyterlab/markdownviewer-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/markdownviewer-extension@npm:4.3.1" +"@jupyterlab/markdownviewer-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/markdownviewer-extension@npm:4.3.2" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/markdownviewer": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/toc": ^6.3.1 - "@jupyterlab/translation": ^4.3.1 - checksum: 2e6110ba437922911ae1143ecab373b9ae4a7758160879051ab627061b97e19f456df82cd9010b617f0186ff070694705f670ec485bae9b6cf08a4457f580f32 + "@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 languageName: node linkType: hard -"@jupyterlab/markdownviewer@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/markdownviewer@npm:4.3.1" - dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/toc": ^6.3.1 - "@jupyterlab/translation": ^4.3.1 +"@jupyterlab/markdownviewer@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/markdownviewer@npm:4.3.2" + 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 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.5.0 - checksum: a81c9d6b99967866981f0872b4d89b618bf7319790cdbf3916ab174b72a2a8afced40d70acf869e4542ff13121658cbfbd7e0f66407ad0318a73e887a63e001f + checksum: 34cb3efe3c28b07671175189bc7bc7052b96a04586c4dd14153ec4f63d476c9fa0be886aa9bbc42adcee9e17b821bea5c1a421d9b8d604e4b6d7f1637640effa languageName: node linkType: hard -"@jupyterlab/markedparser-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/markedparser-extension@npm:4.3.1" +"@jupyterlab/markedparser-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/markedparser-extension@npm:4.3.2" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/codemirror": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/mermaid": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 + "@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 "@lumino/coreutils": ^2.2.0 marked: ^9.1.2 marked-gfm-heading-id: ^3.1.0 marked-mangle: ^1.1.4 - checksum: 10533582f1edf330bd081e17c68e8a23fa5358ec9583d43a61bd43f39a8bdd0e4a70f2e110d9726074a030e0d038e7ed914a8cff237381e4de2c26f7b315cd13 + checksum: aed13853e9b39e2f7b86bb04a368402e0efbbd809d35f6a86e4de805d5a7ec319b358b931b94531ae4933f9ae3ae5af8adf320e2b6e4d2ffc02a71a5dc351d1c languageName: node linkType: hard -"@jupyterlab/mathjax-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/mathjax-extension@npm:4.3.1" +"@jupyterlab/mathjax-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/mathjax-extension@npm:4.3.2" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 + "@jupyterlab/application": ^4.3.2 + "@jupyterlab/rendermime": ^4.3.2 "@lumino/coreutils": ^2.2.0 mathjax-full: ^3.2.2 - checksum: 55eac436d6a12ad8301b0a24e904587c52029b95e16dc0c194042fd4efa66de407c97aa1d3294cbcb55e4a91992eaa9a65c18f121a494924f01fab97916e7e49 + checksum: 925c4fe7d3f3a1791bb0b9cf73dafd9182100f7699e9de956248ceb3398a7d3abe651592d36c602331472965d4d8ee784888d6279042e36d1b7056dff3392a1b languageName: node linkType: hard -"@jupyterlab/mermaid-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/mermaid-extension@npm:4.3.1" +"@jupyterlab/mermaid-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/mermaid-extension@npm:4.3.2" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/mermaid": ^4.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 - "@jupyterlab/translation": ^4.3.1 - checksum: a5ff428456773c60b9154fb7de1dc3d9b4c020b8715099e70660eadcd78ff089210abcc052ac0300d1641669ab10bd274b8eb67a20695749038a82c5ddda1330 + "@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 languageName: node linkType: hard -"@jupyterlab/mermaid@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/mermaid@npm:4.3.1" +"@jupyterlab/mermaid@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/mermaid@npm:4.3.2" dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 + "@jupyterlab/apputils": ^4.4.2 + "@jupyterlab/coreutils": ^6.3.2 + "@jupyterlab/rendermime-interfaces": ^3.11.2 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.5.0 mermaid: ^10.7.0 - checksum: 8772b99edda58ffec5245cf43472b1fabfed484dc9d2a3277a470f5d2ebbffde5017c345235ce57a00da5580d9de97719e9b12495137799c0c4271e64c24d47d + checksum: 76b6246d683558f0469c6251d1cdbd41b975ed851131a770558c44ad119644b7fa61b37bd8d6f5acc4b7bfbe6076546c808242bff3a64a62a78426512b40f062 languageName: node linkType: hard -"@jupyterlab/metadataform-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/metadataform-extension@npm:4.3.1" - dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/metadataform": ^4.3.1 - "@jupyterlab/notebook": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 +"@jupyterlab/metadataform-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/metadataform-extension@npm:4.3.2" + 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 "@lumino/coreutils": ^2.2.0 - checksum: 24b68ae54b91a6b095a245a213e355e39aebfdc4b7533fb3eb6eac532297d254911e8848ee07d7cb2e1f177bc1e9984510d61acd00aefb44906a1d159066e89f + checksum: 690306d0e939eddac985f901d0a86bea727dfc78ac74b5c8e67450fe6ce7611b663530130a9f9c7eb9f5981ddfeb81ff935ab6a64b39ca40280aa5f85f4f73cf languageName: node linkType: hard -"@jupyterlab/metadataform@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/metadataform@npm:4.3.1" - dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/nbformat": ^4.3.1 - "@jupyterlab/notebook": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 +"@jupyterlab/metadataform@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/metadataform@npm:4.3.2" + 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 "@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: c09a766eaa9fa854e327df7fc2a57972081bac1b3c5a43212659b1a9e731b8f59809d163ccf5bdf25ceeb8c1a9042c1f714614bcd4899d182cb857f81d7f680b + checksum: ce4df4e12d609b8e994e99c8b69ad85158e3ecdc559ab0a072c9b2145bff33ecc94dec9d16dd34e2e2dc4b4a66f7add99b2ededb89b594010d4b6ab71354e128 languageName: node linkType: hard -"@jupyterlab/nbformat@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/nbformat@npm:4.3.1" +"@jupyterlab/nbformat@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/nbformat@npm:4.3.2" dependencies: "@lumino/coreutils": ^2.2.0 - checksum: 009ce5f41785e2367a86e1445e30d092c178070ea32e9344c71422dce14fef29810cfcbf4c90476f5634b19f6a117d85d1a7dd53debd61af0469b3c47dd92c8a + checksum: f51d0920031c22283ebf697e377078ecda0eca2c1248d42a3075bca7f0c26fc4e746121527b8533d8718563ddd442dd627688f293790e243efc43dbf336cd62c languageName: node linkType: hard -"@jupyterlab/notebook-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/notebook-extension@npm:4.3.1" +"@jupyterlab/notebook-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/notebook-extension@npm:4.3.2" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/cells": ^4.3.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/codemirror": ^4.3.1 - "@jupyterlab/completer": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docmanager": ^4.3.1 - "@jupyterlab/docmanager-extension": ^4.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/documentsearch": ^4.3.1 - "@jupyterlab/filebrowser": ^4.3.1 - "@jupyterlab/launcher": ^4.3.1 - "@jupyterlab/logconsole": ^4.3.1 - "@jupyterlab/lsp": ^4.3.1 - "@jupyterlab/mainmenu": ^4.3.1 - "@jupyterlab/metadataform": ^4.3.1 - "@jupyterlab/nbformat": ^4.3.1 - "@jupyterlab/notebook": ^4.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/property-inspector": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/statusbar": ^4.3.1 - "@jupyterlab/toc": ^6.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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: 3dfc9908f1ed50d8d6eb69b682ebb3254fbc990690350ec860216520c9846f0254728970e5e2fd815a3c84c7e9c2b941ee2343a81f186569d37050fe1a1abe8d + checksum: 9701bc82a649ada79cb160a38198e181f929332fabe8ef4e44279c92a84e73426abe8926cfc175edf8407d7fc1b1e0457177f74dcc8494e8404ffde1f8d9b385 languageName: node linkType: hard -"@jupyterlab/notebook@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/notebook@npm:4.3.1" +"@jupyterlab/notebook@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/notebook@npm:4.3.2" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/cells": ^4.3.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/codemirror": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/documentsearch": ^4.3.1 - "@jupyterlab/lsp": ^4.3.1 - "@jupyterlab/nbformat": ^4.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/statusbar": ^4.3.1 - "@jupyterlab/toc": ^6.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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: 4f208119e412492e2b732be316f1a60222d662401c099ecb6f5ec54e5926b66568936b1c91341bb5fcd699570db84ccc4e3fb0117f506f78234b563c54a5514e + checksum: 70d22963f20209c3130f8d04715fd395a671b357afc513cdfd700e4f5d8a37012f32fa5fbd863f927ff357da5ef88ededfd14d471293db599c7696158e703044 languageName: node linkType: hard -"@jupyterlab/observables@npm:~5.3.1": - version: 5.3.1 - resolution: "@jupyterlab/observables@npm:5.3.1" +"@jupyterlab/observables@npm:~5.3.2": + version: 5.3.2 + resolution: "@jupyterlab/observables@npm:5.3.2" 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: 2c15097088e06a4f12a9e94f8fb26baec7f9fe86188f9e7b6fb421c655b2acbb5cb95f3abb53b86bb417649523561268789393fa9da7b92fa70d2f123320241e + checksum: 2aca1eacfb7e207dd9c855bab00c3997ecd1d915bda22bd0cefb53eb0560aa40bcf9688229a671eac49ca4041eccf946954a8811ad9173ade0175e31a38847bb languageName: node linkType: hard -"@jupyterlab/outputarea@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/outputarea@npm:4.3.1" - dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/nbformat": ^4.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/translation": ^4.3.1 +"@jupyterlab/outputarea@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/outputarea@npm:4.3.2" + 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 "@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: 9bbbcd82148c68b63531f1b671229d0f4394afe3455afbc8808214d5d87b262a45a1f689dbcce0eaec1d6d2f012554e382adbc99824f9e36cce211b867454e4e + checksum: 15c03b9b0ca47116f039658ee00a13318a52d9b240c1aacfcdd3515d819ced75d4026e815a1c1269b28c463522bdcd310a49589735a17849d1091c2df982445c languageName: node linkType: hard -"@jupyterlab/pdf-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/pdf-extension@npm:4.3.1" +"@jupyterlab/pdf-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/pdf-extension@npm:4.3.2" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.11.1 + "@jupyterlab/rendermime-interfaces": ^3.11.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/widgets": ^2.5.0 - checksum: 6fee3e5e1014ae35d8b9ba9782f38431edc0fdbb48c8be639e1dc593e140692589246f8f3d0cca225b09893a1b623d37a950051c3c75ef30bd24911caa9ed40d + checksum: d4cc4701fa787a155c413e77ff51088c4fcc2a325d1e4f06f4049a06fa8fdfa613e4219cddc00f58a0e25f365f80b2d83307d874269fdc4e7c5eb952aea204af languageName: node linkType: hard -"@jupyterlab/pluginmanager-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/pluginmanager-extension@npm:4.3.1" +"@jupyterlab/pluginmanager-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/pluginmanager-extension@npm:4.3.2" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/pluginmanager": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@lumino/coreutils": ^2.2.0 - checksum: 3e307fbb1a35431a1ec60b571bb48c28191e8499c42624cbc4ed15d98063ea8909a3af4e9a8f34a34e1779d3a12bd2c9293bbd7b82b8900b7371b5b511b7fe86 + checksum: 06985338a08d7e620b545e9019a50be5a40b40e6d68c162509de5be782c0cd3b77b58bd8b4b5608a398757ab02a7f956ba892740b0e84d1118192befae636172 languageName: node linkType: hard -"@jupyterlab/pluginmanager@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/pluginmanager@npm:4.3.1" - dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 +"@jupyterlab/pluginmanager@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/pluginmanager@npm:4.3.2" + 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 "@lumino/coreutils": ^2.2.0 "@lumino/signaling": ^2.1.3 "@lumino/widgets": ^2.5.0 react: ^18.2.0 - checksum: cf9860c289f94d253e2448c7f65780ed3ede72926c28309fb716f838df9d37f17588cf4391d9d0e2e7cd6e550c351b45bb6b4a118f667bfeff0ea5fb19b0beda + checksum: 953bbcee4436c8c3b7c9bb80acfc0b29641036e0426d72fb8711d1820e47daf2ba6727d94f7c075a2987826dc7fbe2f2ed4ca819aaab89a8a792dfdd3c1f8774 languageName: node linkType: hard -"@jupyterlab/property-inspector@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/property-inspector@npm:4.3.1" +"@jupyterlab/property-inspector@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/property-inspector@npm:4.3.2" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@jupyterlab/application": ^4.3.2 + "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/ui-components": ^4.3.2 "@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: 51cfbab9fd9b27c121f365f0e98ba2c317300ee35d6b29e615a3cd5d1fb24a17c7d00e6cdf2350d25d7ad7e364bf06f4e0dc3190248e0d567a9371f48e50eb27 + checksum: 8e0be342c2fd9ab4d2c189a25059b7fecab25f6a7a8e997715ccca0c0aaa4840a7cac08ff8cee6f85dd7c50eae65803e51842033d494b73480a714adcac6e2cb languageName: node linkType: hard -"@jupyterlab/rendermime-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/rendermime-extension@npm:4.3.1" +"@jupyterlab/rendermime-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/rendermime-extension@npm:4.3.2" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/docmanager": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - checksum: 074a509cb18f5b1bc390191dffbc8e3c01b2c750e4fec374fbbb0c7e21349b5a7d6de7bc921881b7a17b8142c23faf41a3e5736e192ba37bd133ad3bb075675e + "@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 languageName: node linkType: hard -"@jupyterlab/rendermime-interfaces@npm:~3.11.1": - version: 3.11.1 - resolution: "@jupyterlab/rendermime-interfaces@npm:3.11.1" +"@jupyterlab/rendermime-interfaces@npm:~3.11.2": + version: 3.11.2 + resolution: "@jupyterlab/rendermime-interfaces@npm:3.11.2" dependencies: "@lumino/coreutils": ^1.11.0 || ^2.2.0 "@lumino/widgets": ^1.37.2 || ^2.5.0 - checksum: 296e3f4ebcdd760ebf503b6c9467a2f56ed6e19108c7f319a90cff32e0585b0a5147c982bc79a573fe1920e3bc4c6183d8d4e939659ed857baa2b12587061c57 + checksum: e29cca8885e2ea5cb11d45c89a0a9756b3b462ad69720351a271c285a09d95477d0c1b8e78b3a20d2b2f4fe25bce9e0bb35a314132e18b008f679733e2a0ee3a languageName: node linkType: hard -"@jupyterlab/rendermime@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/rendermime@npm:4.3.1" - dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/nbformat": ^4.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/translation": ^4.3.1 +"@jupyterlab/rendermime@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/rendermime@npm:4.3.2" + 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 "@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: 8ded08cbed91d983289f20e21d05d555888f3e19a83e6cbc8f4d72748345dfec1017de63da1644f82368f2a591eac6dae15aa6197b295e4242f5d84965566791 + checksum: 52e9c211ef1c655b54b751e92474d6f3a0cf0322e7be1a1599f69263bd89a5529eac2f4a9e7429c6a7e39b9c152da1aea8b497a20ad409b9c4113150e32a75aa languageName: node linkType: hard -"@jupyterlab/running-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/running-extension@npm:4.3.1" - dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docmanager": ^4.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 - "@jupyterlab/running": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 +"@jupyterlab/running-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/running-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/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 "@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: 9fc30c8995a0396d4e5f323e6cc725197fccdf8642c283975b42142a23eec35db5d7b6f1c825e1f40caf74840d9675e4339c4a7eba494f83823e246b328381f0 + checksum: 638045cf7a10f44ce0e659acc4cdeacc7bb524809143d6cfe4d3e206fd35031a60ab6316f2d30ddc1b40622e0668cc9f7ec784762a6ab7b89be4c1c4c55fe899 languageName: node linkType: hard -"@jupyterlab/running@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/running@npm:4.3.1" +"@jupyterlab/running@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/running@npm:4.3.2" dependencies: "@jupyter/react-components": ^0.16.6 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@jupyterlab/apputils": ^4.4.2 + "@jupyterlab/statedb": ^4.3.2 + "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/ui-components": ^4.3.2 "@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: 4653d6ae582db9e43b78fd4086835fc00b5db6b702799d54fd9d72de64cb61496fd26c391da53b0b0d3448d9bc53a5d161ee958a437d558ff8f5669fe3005576 + checksum: 184e738569d6432b292df89c078f89f2254d46c08f7263cf083f13fd788a45e20cf2908f1e55cf36cc0e97ce2ef7a65d19a500ce8f146c8301284c00e65962eb languageName: node linkType: hard -"@jupyterlab/services@npm:~7.3.1": - version: 7.3.1 - resolution: "@jupyterlab/services@npm:7.3.1" +"@jupyterlab/services@npm:~7.3.2": + version: 7.3.2 + resolution: "@jupyterlab/services@npm:7.3.2" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/nbformat": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/statedb": ^4.3.1 + "@jupyterlab/coreutils": ^6.3.2 + "@jupyterlab/nbformat": ^4.3.2 + "@jupyterlab/settingregistry": ^4.3.2 + "@jupyterlab/statedb": ^4.3.2 "@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: d1d80fa50254fa0f5a8a7565355b57f24d1db19d414727688a6dc2c879a24812d7d660e585ab0188c0923689283195eb3070a850bb2c26c449da624db006c839 + checksum: a8c79bdadbce4ebd242830a762de7e4afe91870cb2835233381d9c923312e824b58e904661a4ef652c0b4d43f51ee25c117cfc62d697d67f652498b69b48f529 languageName: node linkType: hard -"@jupyterlab/settingeditor-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/settingeditor-extension@npm:4.3.1" - dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/pluginmanager": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/settingeditor": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 +"@jupyterlab/settingeditor-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/settingeditor-extension@npm:4.3.2" + 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 "@lumino/disposable": ^2.1.3 - checksum: 5ca499bf6bff1c4ee798958e2f4268fce623fd12e119b4fe232439802ac2236d0fce6636f3c1faf84ad382090ff096341b054ea5a3202020244079f755152eb6 + checksum: d3c696b439da4a3ff31e98053fabf4f3ac0232c6747fe655155c88b37b76dbcac167980049e0837592f808573da149d8574f560757622fc888462bbc59cb19f5 languageName: node linkType: hard -"@jupyterlab/settingeditor@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/settingeditor@npm:4.3.1" - dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/inspector": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 +"@jupyterlab/settingeditor@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/settingeditor@npm:4.3.2" + 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 "@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: 1b16bc2cba460daa6a630741cee8b342044ecfa42dca5eb087a99aa2655efbd61893abed7586ec132ec85f8dd3132c64ceab8a14d0f1bac2184f46a5dc240a0b + checksum: ee374de7b0b30de500fe1821376aeccdb951beaff178e95f27bee43984517ec2c687d0ab6cf240ca3d489098f3e39378ce624b64e9e81dce70766da73c97a3ae languageName: node linkType: hard -"@jupyterlab/settingregistry@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/settingregistry@npm:4.3.1" +"@jupyterlab/settingregistry@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/settingregistry@npm:4.3.2" dependencies: - "@jupyterlab/nbformat": ^4.3.1 - "@jupyterlab/statedb": ^4.3.1 + "@jupyterlab/nbformat": ^4.3.2 + "@jupyterlab/statedb": ^4.3.2 "@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: c4f8fcedba9c524004fe919129242cdcbe1661ce7e71c2eb8bfe131ebe6e625367e1c05866b7326046599e4a7668bc07e303e526d87b960846d72457ea4defbd + checksum: 4c2ab20a7cb090db0a3fee6335f782bda037ee03acacaf082083032a519e3d4c40044ddcfffa71d316817a3d74858cb9f46bf48d53444d5d7374fb8808a5d21e languageName: node linkType: hard -"@jupyterlab/shortcuts-extension@npm:~5.1.1": - version: 5.1.1 - resolution: "@jupyterlab/shortcuts-extension@npm:5.1.1" +"@jupyterlab/shortcuts-extension@npm:~5.1.2": + version: 5.1.2 + resolution: "@jupyterlab/shortcuts-extension@npm:5.1.2" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@jupyterlab/application": ^4.3.2 + "@jupyterlab/settingregistry": ^4.3.2 + "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/ui-components": ^4.3.2 "@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: 23836ca8dad19a903e7c25b90a770e150cc17dfbb3a9f4730d67e340d3ff2cd31bcf40480f89386b656d67f2482f3a64213b73a1d50844b300004afc6aeb561a + checksum: 997cb727bbae00d0993f92ed7e810ed52d51003f287e67d22cd1f80ab19c11b059a259a43bf237d7bd24a7a644c76e97e5c70a57f7d337c0595517243d1a2959 languageName: node linkType: hard -"@jupyterlab/statedb@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/statedb@npm:4.3.1" +"@jupyterlab/statedb@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/statedb@npm:4.3.2" 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: 781798f6107bcf1caae1f6f7714583145deba95d8c4a10a5a3adeabd6351f1505af60ae2a5b18d7698ba9584c68241c700209e6be48c4b625fd2c5d12254f726 + checksum: a3cebd716be2e124c009820b3d39b8c5c0a83ae56c9fdfb4312bfb63d265d3ab135bd9d9532a619daff7d711e62042d242f48c5b58abf9cc5dbf3a2aaf2c673f languageName: node linkType: hard -"@jupyterlab/statusbar-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/statusbar-extension@npm:4.3.1" +"@jupyterlab/statusbar-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/statusbar-extension@npm:4.3.2" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/statusbar": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - checksum: 3c130b6c305ad42145a7fecd4ceee38a1d77d16dfdb7069ba7054bced7f7bc31fed9edb4d3a028a0f08d976f7c99db866da2bd8c1429e3fa70e888a8cf7c6b63 + "@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 languageName: node linkType: hard -"@jupyterlab/statusbar@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/statusbar@npm:4.3.1" +"@jupyterlab/statusbar@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/statusbar@npm:4.3.2" dependencies: - "@jupyterlab/ui-components": ^4.3.1 + "@jupyterlab/ui-components": ^4.3.2 "@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: 75edb4de39051c29bc37ec36379f42ae1ce711648a775202582860f70146872efdec8ea6cb08fea556adc7a10ee1533b29bdebf4acde5696aa5bacefae71eaa2 + checksum: 68c9b3c238197d1745e052a77489576b642f303266d6228eb0a71555888c6192107f59eaa6c2668c8e60459fd6155f19efcdb88f40040df2460c29ec10588c68 languageName: node linkType: hard -"@jupyterlab/terminal-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/terminal-extension@npm:4.3.1" - dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/launcher": ^4.3.1 - "@jupyterlab/mainmenu": ^4.3.1 - "@jupyterlab/running": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/terminal": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 +"@jupyterlab/terminal-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/terminal-extension@npm:4.3.2" + 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 "@lumino/widgets": ^2.5.0 - checksum: 77cc3232fd835d338525e645efacdc17a190dc6c30f4a7984d040dd9b87781c86e49ab59766b899fcd72066128b174482222dde4976f1e5501ac28fcf62427d7 + checksum: fe9c9e9115325a7809d1c92148c4f906b55de58d6aef6d6f7c5c6c2c9b34b599281265b8d6285c68930c0a924daff2858b966db9762b6ab7af471b33bc8528c4 languageName: node linkType: hard -"@jupyterlab/terminal@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/terminal@npm:4.3.1" +"@jupyterlab/terminal@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/terminal@npm:4.3.2" dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/translation": ^4.3.1 + "@jupyterlab/apputils": ^4.4.2 + "@jupyterlab/services": ^7.3.2 + "@jupyterlab/translation": ^4.3.2 "@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: 20a0d42d9fb2a51ada4ca276cc2478df7804b2678632ca422c1331a13dd6225e6864172254984fa0f65b1b40c0ed2b65405e61e212b4f6b15be30ceabd3992a0 + checksum: dd8763b22873e43823e901d5cb7585a093f9c25a95b350bfcb8b5fb201a3909458585b98e8a5d2702c484d297c9ba5a8b2048e81774c329f60a1537c1d9a6418 languageName: node linkType: hard -"@jupyterlab/theme-dark-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/theme-dark-extension@npm:4.3.1" +"@jupyterlab/theme-dark-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/theme-dark-extension@npm:4.3.2" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/translation": ^4.3.1 - checksum: 977d722d7e8ada45bbd275942a8cfefa7970071e05368eed885dd07fd36e9419b580216d638e07a2e60d4d82bd75258c496d66a7019702e6e58a7fb7cc89a2f0 + "@jupyterlab/application": ^4.3.2 + "@jupyterlab/apputils": ^4.4.2 + "@jupyterlab/translation": ^4.3.2 + checksum: de42aa7782b943f650663cf47189263137e181115cf54a42cfb57b5147c7bb979dd81546cee7cb8999835ca1ef2291737351107229e28b7ec3e698466cb85809 languageName: node linkType: hard -"@jupyterlab/theme-dark-high-contrast-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/theme-dark-high-contrast-extension@npm:4.3.1" +"@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" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/translation": ^4.3.1 - checksum: d6d072d7f8d3be16d4223a000865eb1bd6edcbc591c1170218fcfa2911390e1ce038e7a2ac7d4791e58735fe6a8dfb83ba203fcf5505b1673702d2c514767e06 + "@jupyterlab/application": ^4.3.2 + "@jupyterlab/apputils": ^4.4.2 + "@jupyterlab/translation": ^4.3.2 + checksum: 884f784d466f394b0d20b38b6251a6f6fbc57594f911069db709adf3ccbdd895d5858450bd9bb61fc6534fe3746a6753fcc1c0fc2633ab82023a2a182e073e73 languageName: node linkType: hard -"@jupyterlab/theme-light-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/theme-light-extension@npm:4.3.1" +"@jupyterlab/theme-light-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/theme-light-extension@npm:4.3.2" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/translation": ^4.3.1 - checksum: 75075ddfce5f53f58d33ee63ff769bac2da90d350a5c2b52f672d6ac5553588ed16feb2ef249f0b97edd147257a632356019c4571840cfad46386385a2250631 + "@jupyterlab/application": ^4.3.2 + "@jupyterlab/apputils": ^4.4.2 + "@jupyterlab/translation": ^4.3.2 + checksum: b7fa031a47cef1fc2e2d0f1044d9b0369fbc60177e186016650869e5e60d143e9923b3308f0398899657fdfab152f99fe701a47ec5a2a0246d611e80d45d9a0b languageName: node linkType: hard -"@jupyterlab/toc-extension@npm:~6.3.1": - version: 6.3.1 - resolution: "@jupyterlab/toc-extension@npm:6.3.1" +"@jupyterlab/toc-extension@npm:~6.3.2": + version: 6.3.2 + resolution: "@jupyterlab/toc-extension@npm:6.3.2" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/toc": ^6.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 - checksum: 87c13466b8af23b7662c3291a14779019a7482518718c52782deaeb547f7510266cbf1f013f27a49ece2f09988f7ebd57582fa0cd316a493d4e4efff51995398 + "@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 languageName: node linkType: hard -"@jupyterlab/toc@npm:~6.3.1": - version: 6.3.1 - resolution: "@jupyterlab/toc@npm:6.3.1" +"@jupyterlab/toc@npm:~6.3.2": + version: 6.3.2 + resolution: "@jupyterlab/toc@npm:6.3.2" dependencies: "@jupyter/react-components": ^0.16.6 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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: dfa1edf4b5afbc2fefde9cf2914e335fa70443729183e2e1af69a0983e1411f8f152b81677c74f67866d38ee20b6e1af2eab281f32b4f8cdee4fa550e5c98e98 + checksum: 1c845c1027fb22bed50576d48d1d9eb86ba7b5b7ff4e54249f5ccd43d95475789822f1dda9d7efe703cafefe20afdda91fe0f52ee622c568186258539f1286c9 languageName: node linkType: hard -"@jupyterlab/tooltip-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/tooltip-extension@npm:4.3.1" - dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/console": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/fileeditor": ^4.3.1 - "@jupyterlab/notebook": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/tooltip": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 +"@jupyterlab/tooltip-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/tooltip-extension@npm:4.3.2" + 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 "@lumino/algorithm": ^2.0.2 "@lumino/coreutils": ^2.2.0 "@lumino/widgets": ^2.5.0 - checksum: 4176a7f93e417ed40e841c0a9e025640c1703d84ae352e56720d0ce52d02aa3bcad9ad89b203c1eb936935c46d33c2a4cc898e2cbd451d44e8d50ad74b57b900 + checksum: 24299af8340bc0db1da57cf95c79157a5eeb6f97f90eeca4c3e55df9b2a70d8138aacc2e7d6a57210b0635ffc705b258a72d3479b971503318c56cafbc242166 languageName: node linkType: hard -"@jupyterlab/tooltip@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/tooltip@npm:4.3.1" +"@jupyterlab/tooltip@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/tooltip@npm:4.3.2" dependencies: - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@jupyterlab/codeeditor": ^4.3.2 + "@jupyterlab/rendermime": ^4.3.2 + "@jupyterlab/services": ^7.3.2 + "@jupyterlab/ui-components": ^4.3.2 "@lumino/coreutils": ^2.2.0 "@lumino/messaging": ^2.0.2 "@lumino/widgets": ^2.5.0 - checksum: b13dfc7ec8e905b853dde2c1264fc58d3bccd2de2a4124b454fc83139069acec7681bf87c65f71ab83da98e7b06af541cd5fbf70c8ebce28332a3cd1a4c1f50f + checksum: a9e66570e01da546460bfbc0376484e14ae6ecd4a69a73a40569defa9f43226f6744c3b9342eb12be9877be7e4b8c0bea417976b69e5fca374a02549eb66955a languageName: node linkType: hard -"@jupyterlab/translation-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/translation-extension@npm:4.3.1" +"@jupyterlab/translation-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/translation-extension@npm:4.3.2" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/mainmenu": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - checksum: 86abfa31611b2c99707a8cdcd811aaec940119713a7cf64ca34365d616fc85a4327aaad4925727de4a2d629e48d98e3db317badd55b6579e24c994ac25c90730 + "@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 languageName: node linkType: hard -"@jupyterlab/translation@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/translation@npm:4.3.1" +"@jupyterlab/translation@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/translation@npm:4.3.2" dependencies: - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/statedb": ^4.3.1 + "@jupyterlab/coreutils": ^6.3.2 + "@jupyterlab/rendermime-interfaces": ^3.11.2 + "@jupyterlab/services": ^7.3.2 + "@jupyterlab/statedb": ^4.3.2 "@lumino/coreutils": ^2.2.0 - checksum: ecd63f816784ef6feffecdaa85903dba9f49cf65b5e5b9c664bb115a4dcb163d3701a56b4199dafb5c5eed986074ccd1da87a92450e11af5dbea99c66e662874 + checksum: 04c6561a44501b11063eb56929dd24d0899e07fb0d1cd45c8bcfb697c08ce9619be42b9c69ee60bff612a6ed3dff2525211f118f03d5709a6bd8cf256a0f3f8c languageName: node linkType: hard -"@jupyterlab/ui-components-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/ui-components-extension@npm:4.3.1" +"@jupyterlab/ui-components-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/ui-components-extension@npm:4.3.2" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 - checksum: 1b09496c9159187d2d5ef4d2b2d282d84644237924878ee74f5bad94823303b814d3e3b281758ea7fff683b6e41eb2cf1cf8c26531cb62711804dfa97308d776 + "@jupyterlab/application": ^4.3.2 + "@jupyterlab/ui-components": ^4.3.2 + checksum: e3793ce03e3d656494845640e047ead3c49b8665fe08a2b0cc7bc8b016db83c971b100316fb4505908070ce83fae87db99f78c4e3030491e38007c651f9cab42 languageName: node linkType: hard -"@jupyterlab/ui-components@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/ui-components@npm:4.3.1" +"@jupyterlab/ui-components@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/ui-components@npm:4.3.2" dependencies: "@jupyter/react-components": ^0.16.6 "@jupyter/web-components": ^0.16.6 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 - "@jupyterlab/translation": ^4.3.1 + "@jupyterlab/coreutils": ^6.3.2 + "@jupyterlab/observables": ^5.3.2 + "@jupyterlab/rendermime-interfaces": ^3.11.2 + "@jupyterlab/translation": ^4.3.2 "@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: 8a9cb38b5e62cc3ca6feab3db3444b99ee9a436859358f0c67bb61518a9827c5e4daff008536e99cbd4d34c0086633d07e3212a79a83ab794c98f0243a9bdabf + checksum: dd87bdb1d478418c737876e816af788736ed4d92e3ebca956251f5edc221c286810f4b502583a8bf2e0dcba19c9942b87469c3319f2d7586f40f13545d5b1d3d languageName: node linkType: hard -"@jupyterlab/vega5-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/vega5-extension@npm:4.3.1" +"@jupyterlab/vega5-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/vega5-extension@npm:4.3.2" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.11.1 + "@jupyterlab/rendermime-interfaces": ^3.11.2 "@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: 98d2a841259d7d2ab1f6b185ba27b13e90c1e732aa2c27f3a4a10ac19c48edeb2ab0de73f7e16e0fc1fe1dd9d98c7d6bb57d83c1c72cb2dcf529750d7368c933 + checksum: 21af86a1c999da0e1bba136df7f10381b53ebec3566cad9bebf39b5949e361617ad20d9f4d35af0efbf976751a20ff2405a6c8d8a6da72a23b5ced5a69c2da57 languageName: node linkType: hard -"@jupyterlab/workspaces-extension@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/workspaces-extension@npm:4.3.1" +"@jupyterlab/workspaces-extension@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/workspaces-extension@npm:4.3.2" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/filebrowser": ^4.3.1 - "@jupyterlab/running": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 - "@jupyterlab/workspaces": ^4.3.1 - checksum: f19c0855352d3b82d117460ed342a97b3c02c68963b0e66da1ac8b1ba2b28571abb3460bfec07b5e3c39d31e8bf47cdaed9ebf45b131aabab9f894ead1e05471 + "@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 languageName: node linkType: hard -"@jupyterlab/workspaces@npm:~4.3.1": - version: 4.3.1 - resolution: "@jupyterlab/workspaces@npm:4.3.1" +"@jupyterlab/workspaces@npm:~4.3.2": + version: 4.3.2 + resolution: "@jupyterlab/workspaces@npm:4.3.2" dependencies: - "@jupyterlab/services": ^7.3.1 + "@jupyterlab/services": ^7.3.2 "@lumino/coreutils": ^2.2.0 "@lumino/disposable": ^2.1.3 "@lumino/polling": ^2.1.3 "@lumino/signaling": ^2.1.3 - checksum: a5de7eddf9910923580f3385e0452aaf0036a4000ffbcb9e30b2d979b44943f892696d3a72fc5bd198700bc22919b6ababbf6f91f67e3f0cc34f52d857602750 + checksum: 8d539f6570829e74ae8beaeddb1851649f280514e56a87f6f47a7c54b01d892b8d97b88d919625be3edfc5104d7333997fa4b27e64dbcac651e1ce9be7002d6e languageName: node linkType: hard diff --git a/jupyterlab/tests/mock_packages/extension/package.json b/jupyterlab/tests/mock_packages/extension/package.json index 2f9603947a98..7ae4dc3cee5b 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.1", + "version": "4.3.2", "private": true, "dependencies": { - "@jupyterlab/launcher": "^4.3.1" + "@jupyterlab/launcher": "^4.3.2" }, "devDependencies": { - "@jupyterlab/builder": "^4.3.1" + "@jupyterlab/builder": "^4.3.2" }, "jupyterlab": { "extension": true, diff --git a/jupyterlab/tests/mock_packages/interop/consumer/package.json b/jupyterlab/tests/mock_packages/interop/consumer/package.json index 972634b889c3..2a44ad4ebd74 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.1", + "version": "4.3.2", "private": true, "dependencies": { - "@jupyterlab/mock-token": "^4.3.1" + "@jupyterlab/mock-token": "^4.3.2" }, "devDependencies": { - "@jupyterlab/builder": "^4.3.1" + "@jupyterlab/builder": "^4.3.2" }, "jupyterlab": { "extension": true, diff --git a/jupyterlab/tests/mock_packages/interop/provider/package.json b/jupyterlab/tests/mock_packages/interop/provider/package.json index b31b618a3299..89afdfcf21ab 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.1", + "version": "4.3.2", "private": true, "dependencies": { - "@jupyterlab/mock-token": "^4.3.1" + "@jupyterlab/mock-token": "^4.3.2" }, "devDependencies": { - "@jupyterlab/builder": "^4.3.1" + "@jupyterlab/builder": "^4.3.2" }, "jupyterlab": { "extension": true diff --git a/jupyterlab/tests/mock_packages/interop/token/package.json b/jupyterlab/tests/mock_packages/interop/token/package.json index cc079aec9eec..f6f652b5fce4 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.1", + "version": "4.3.2", "private": true, "dependencies": { "@lumino/coreutils": "^2.2.0" diff --git a/packages/application-extension/package.json b/packages/application-extension/package.json index da40231235c6..4c63fc0e3423 100644 --- a/packages/application-extension/package.json +++ b/packages/application-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/application-extension", - "version": "4.3.1", + "version": "4.3.2", "description": "JupyterLab - Application Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,15 +37,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/property-inspector": "^4.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/statedb": "^4.3.1", - "@jupyterlab/statusbar": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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 5729ae30f1c5..9dfda72c383f 100644 --- a/packages/application/package.json +++ b/packages/application/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/application", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/docregistry": "^4.3.1", - "@jupyterlab/rendermime": "^4.3.1", - "@jupyterlab/rendermime-interfaces": "^3.11.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/statedb": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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.1", + "@jupyterlab/testing": "^4.3.2", "@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 a034c15f7432..3904d7d93b64 100644 --- a/packages/apputils-extension/package.json +++ b/packages/apputils-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/apputils-extension", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/docregistry": "^4.3.1", - "@jupyterlab/mainmenu": "^4.3.1", - "@jupyterlab/rendermime-interfaces": "^3.11.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/statedb": "^4.3.1", - "@jupyterlab/statusbar": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", - "@jupyterlab/workspaces": "^4.3.1", + "@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", "@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 a18299fec952..d6f337a3d689 100644 --- a/packages/apputils/package.json +++ b/packages/apputils/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/apputils", - "version": "4.4.1", + "version": "4.4.2", "description": "JupyterLab - Application Utilities", "keywords": [ "jupyter", @@ -44,15 +44,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/observables": "^5.3.1", - "@jupyterlab/rendermime-interfaces": "^3.11.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/statedb": "^4.3.1", - "@jupyterlab/statusbar": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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.1", + "@jupyterlab/testing": "^4.3.2", "@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 0dcc0e2a41a2..54b51caee5a1 100644 --- a/packages/attachments/package.json +++ b/packages/attachments/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/attachments", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/observables": "^5.3.1", - "@jupyterlab/rendermime": "^4.3.1", - "@jupyterlab/rendermime-interfaces": "^3.11.1", + "@jupyterlab/nbformat": "^4.3.2", + "@jupyterlab/observables": "^5.3.2", + "@jupyterlab/rendermime": "^4.3.2", + "@jupyterlab/rendermime-interfaces": "^3.11.2", "@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 69cb323e4d03..6dc269c67be2 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.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/cell-toolbar": "^4.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/translation": "^4.3.1" + "@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" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/cell-toolbar/package.json b/packages/cell-toolbar/package.json index 582d6c186358..f1b3e8b01a61 100644 --- a/packages/cell-toolbar/package.json +++ b/packages/cell-toolbar/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/cell-toolbar", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/cells": "^4.3.1", - "@jupyterlab/docregistry": "^4.3.1", - "@jupyterlab/notebook": "^4.3.1", - "@jupyterlab/observables": "^5.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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.1", + "@jupyterlab/testing": "^4.3.2", "@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 9f24e386e32a..3c865b10c2a5 100644 --- a/packages/cells/package.json +++ b/packages/cells/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/cells", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/attachments": "^4.3.1", - "@jupyterlab/codeeditor": "^4.3.1", - "@jupyterlab/codemirror": "^4.3.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/documentsearch": "^4.3.1", - "@jupyterlab/filebrowser": "^4.3.1", - "@jupyterlab/nbformat": "^4.3.1", - "@jupyterlab/observables": "^5.3.1", - "@jupyterlab/outputarea": "^4.3.1", - "@jupyterlab/rendermime": "^4.3.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/toc": "^6.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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.1", + "@jupyterlab/testing": "^4.3.2", "@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 847263bd85f6..a638bb743232 100644 --- a/packages/celltags-extension/package.json +++ b/packages/celltags-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/celltags-extension", - "version": "4.3.1", + "version": "4.3.2", "description": "An extension for manipulating tags in cell metadata", "keywords": [ "jupyter", @@ -40,10 +40,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.1", - "@jupyterlab/notebook": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@jupyterlab/application": "^4.3.2", + "@jupyterlab/notebook": "^4.3.2", + "@jupyterlab/translation": "^4.3.2", + "@jupyterlab/ui-components": "^4.3.2", "@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 a3759b493ee0..d937607276ee 100644 --- a/packages/codeeditor/package.json +++ b/packages/codeeditor/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/codeeditor", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/nbformat": "^4.3.1", - "@jupyterlab/observables": "^5.3.1", - "@jupyterlab/statusbar": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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.1", + "@jupyterlab/testing": "^4.3.2", "@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 a77e93cd220d..e19862f5c00b 100644 --- a/packages/codemirror-extension/package.json +++ b/packages/codemirror-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/codemirror-extension", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/codeeditor": "^4.3.1", - "@jupyterlab/codemirror": "^4.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/statusbar": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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 a1c7ef6081ed..8792258fa2f4 100644 --- a/packages/codemirror/package.json +++ b/packages/codemirror/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/codemirror", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/documentsearch": "^4.3.1", - "@jupyterlab/nbformat": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", + "@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", "@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.1", + "@jupyterlab/testing": "^4.3.2", "@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 1645f2155731..d778f91179e5 100644 --- a/packages/completer-extension/package.json +++ b/packages/completer-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/completer-extension", - "version": "4.3.1", + "version": "4.3.2", "description": "JupyterLab - Completer Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,12 +37,12 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.1", - "@jupyterlab/codeeditor": "^4.3.1", - "@jupyterlab/completer": "^4.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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 a1ca3494c5c6..f3fce98f06cf 100644 --- a/packages/completer/package.json +++ b/packages/completer/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/completer", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/codeeditor": "^4.3.1", - "@jupyterlab/codemirror": "^4.3.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/rendermime": "^4.3.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/statedb": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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.1", + "@jupyterlab/testing": "^4.3.2", "@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 7c1c69c5ca7d..2973a8952c57 100644 --- a/packages/console-extension/package.json +++ b/packages/console-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/console-extension", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/codeeditor": "^4.3.1", - "@jupyterlab/completer": "^4.3.1", - "@jupyterlab/console": "^4.3.1", - "@jupyterlab/filebrowser": "^4.3.1", - "@jupyterlab/launcher": "^4.3.1", - "@jupyterlab/mainmenu": "^4.3.1", - "@jupyterlab/rendermime": "^4.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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 56140e946a45..38ac4deb9b3a 100644 --- a/packages/console/package.json +++ b/packages/console/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/console", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/cells": "^4.3.1", - "@jupyterlab/codeeditor": "^4.3.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/nbformat": "^4.3.1", - "@jupyterlab/observables": "^5.3.1", - "@jupyterlab/rendermime": "^4.3.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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.1", - "@jupyterlab/testing": "^4.3.1", + "@jupyterlab/codemirror": "^4.3.2", + "@jupyterlab/testing": "^4.3.2", "@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 3595853483a2..d0a4238dbe93 100644 --- a/packages/coreutils/package.json +++ b/packages/coreutils/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/coreutils", - "version": "6.3.1", + "version": "6.3.2", "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 b08b0906e509..cd05fe2feecc 100644 --- a/packages/csvviewer-extension/package.json +++ b/packages/csvviewer-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/csvviewer-extension", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/csvviewer": "^4.3.1", - "@jupyterlab/docregistry": "^4.3.1", - "@jupyterlab/documentsearch": "^4.3.1", - "@jupyterlab/mainmenu": "^4.3.1", - "@jupyterlab/observables": "^5.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", + "@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", "@lumino/datagrid": "^2.4.1", "@lumino/widgets": "^2.5.0" }, diff --git a/packages/csvviewer/package.json b/packages/csvviewer/package.json index 278901d27a1c..785f6d8a62b7 100644 --- a/packages/csvviewer/package.json +++ b/packages/csvviewer/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/csvviewer", - "version": "4.3.1", + "version": "4.3.2", "description": "JupyterLab - CSV Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,10 +41,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/docregistry": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@jupyterlab/coreutils": "^6.3.2", + "@jupyterlab/docregistry": "^4.3.2", + "@jupyterlab/translation": "^4.3.2", + "@jupyterlab/ui-components": "^4.3.2", "@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.1", + "@jupyterlab/testing": "^4.3.2", "@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 0e1bb883e84c..5d954a66845e 100644 --- a/packages/debugger-extension/package.json +++ b/packages/debugger-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/debugger-extension", - "version": "4.3.1", + "version": "4.3.2", "description": "JupyterLab - Debugger Extension", "keywords": [ "jupyter", @@ -43,25 +43,25 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/cells": "^4.3.1", - "@jupyterlab/codeeditor": "^4.3.1", - "@jupyterlab/console": "^4.3.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/debugger": "^4.3.1", - "@jupyterlab/docregistry": "^4.3.1", - "@jupyterlab/fileeditor": "^4.3.1", - "@jupyterlab/logconsole": "^4.3.1", - "@jupyterlab/notebook": "^4.3.1", - "@jupyterlab/rendermime": "^4.3.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", + "@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", "@lumino/commands": "^2.3.1" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.1", + "@jupyterlab/testing": "^4.3.2", "@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 9bb01bae726a..9cafcaf18b3f 100644 --- a/packages/debugger/package.json +++ b/packages/debugger/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/debugger", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/cells": "^4.3.1", - "@jupyterlab/codeeditor": "^4.3.1", - "@jupyterlab/codemirror": "^4.3.1", - "@jupyterlab/console": "^4.3.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/docregistry": "^4.3.1", - "@jupyterlab/fileeditor": "^4.3.1", - "@jupyterlab/notebook": "^4.3.1", - "@jupyterlab/observables": "^5.3.1", - "@jupyterlab/rendermime": "^4.3.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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.1", + "@jupyterlab/testing": "^4.3.2", "@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 8559a4db6893..b18406085e63 100644 --- a/packages/docmanager-extension/package.json +++ b/packages/docmanager-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/docmanager-extension", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/docmanager": "^4.3.1", - "@jupyterlab/docregistry": "^4.3.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/statedb": "^4.3.1", - "@jupyterlab/statusbar": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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 60aa46f6e3ba..9c57b3981f6d 100644 --- a/packages/docmanager/package.json +++ b/packages/docmanager/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/docmanager", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/docregistry": "^4.3.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/statedb": "^4.3.1", - "@jupyterlab/statusbar": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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.1", + "@jupyterlab/testing": "^4.3.2", "@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 fbdbaec3ccf3..23e9c670ed66 100644 --- a/packages/docregistry/package.json +++ b/packages/docregistry/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/docregistry", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/codeeditor": "^4.3.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/observables": "^5.3.1", - "@jupyterlab/rendermime": "^4.3.1", - "@jupyterlab/rendermime-interfaces": "^3.11.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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.1", + "@jupyterlab/testing": "^4.3.2", "@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 1114d351c428..95d1cb9ec5b6 100644 --- a/packages/documentsearch-extension/package.json +++ b/packages/documentsearch-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/documentsearch-extension", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/documentsearch": "^4.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", + "@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", "@lumino/commands": "^2.3.1", "@lumino/widgets": "^2.5.0" }, diff --git a/packages/documentsearch/package.json b/packages/documentsearch/package.json index 4370021b228e..7bab89e89065 100644 --- a/packages/documentsearch/package.json +++ b/packages/documentsearch/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/documentsearch", - "version": "4.3.1", + "version": "4.3.2", "description": "JupyterLab - Document Search", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,9 +38,9 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@jupyterlab/apputils": "^4.4.2", + "@jupyterlab/translation": "^4.3.2", + "@jupyterlab/ui-components": "^4.3.2", "@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.1", + "@jupyterlab/testing": "^4.3.2", "@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 891e74406388..56ecf0d239a0 100644 --- a/packages/extensionmanager-extension/package.json +++ b/packages/extensionmanager-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/extensionmanager-extension", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/extensionmanager": "^4.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1" + "@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" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/extensionmanager/package.json b/packages/extensionmanager/package.json index 3dd846c4aeaf..9f0b499c3496 100644 --- a/packages/extensionmanager/package.json +++ b/packages/extensionmanager/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/extensionmanager", - "version": "4.3.1", + "version": "4.3.2", "description": "JupyterLab - Extension Manager", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -36,11 +36,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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 5e44b94c1f1c..c1346ea7eaef 100644 --- a/packages/filebrowser-extension/package.json +++ b/packages/filebrowser-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/filebrowser-extension", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/docmanager": "^4.3.1", - "@jupyterlab/docregistry": "^4.3.1", - "@jupyterlab/filebrowser": "^4.3.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/statedb": "^4.3.1", - "@jupyterlab/statusbar": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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 bfefbcf3dcc0..aab5dd3d7da8 100644 --- a/packages/filebrowser/package.json +++ b/packages/filebrowser/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/filebrowser", - "version": "4.3.1", + "version": "4.3.2", "description": "JupyterLab - FileBrowser Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,15 +41,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/docmanager": "^4.3.1", - "@jupyterlab/docregistry": "^4.3.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/statedb": "^4.3.1", - "@jupyterlab/statusbar": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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.1", + "@jupyterlab/testing": "^4.3.2", "@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 c04f8f519e1a..eff06d06b038 100644 --- a/packages/fileeditor-extension/package.json +++ b/packages/fileeditor-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/fileeditor-extension", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/codeeditor": "^4.3.1", - "@jupyterlab/codemirror": "^4.3.1", - "@jupyterlab/completer": "^4.3.1", - "@jupyterlab/console": "^4.3.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/docregistry": "^4.3.1", - "@jupyterlab/documentsearch": "^4.3.1", - "@jupyterlab/filebrowser": "^4.3.1", - "@jupyterlab/fileeditor": "^4.3.1", - "@jupyterlab/launcher": "^4.3.1", - "@jupyterlab/lsp": "^4.3.1", - "@jupyterlab/mainmenu": "^4.3.1", - "@jupyterlab/observables": "^5.3.1", - "@jupyterlab/rendermime-interfaces": "^3.11.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/statusbar": "^4.3.1", - "@jupyterlab/toc": "^6.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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 4de097f8e7f6..d0c902f26229 100644 --- a/packages/fileeditor/package.json +++ b/packages/fileeditor/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/fileeditor", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/codeeditor": "^4.3.1", - "@jupyterlab/codemirror": "^4.3.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/docregistry": "^4.3.1", - "@jupyterlab/documentsearch": "^4.3.1", - "@jupyterlab/lsp": "^4.3.1", - "@jupyterlab/statusbar": "^4.3.1", - "@jupyterlab/toc": "^6.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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.1", + "@jupyterlab/testing": "^4.3.2", "@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 b0d5aa27a981..aa34d91d22c5 100644 --- a/packages/help-extension/package.json +++ b/packages/help-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/help-extension", - "version": "4.3.1", + "version": "4.3.2", "description": "JupyterLab - Help Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,13 +37,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/mainmenu": "^4.3.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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 6e1bdbe9450d..6e61b4e24ba8 100644 --- a/packages/htmlviewer-extension/package.json +++ b/packages/htmlviewer-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/htmlviewer-extension", - "version": "4.3.1", + "version": "4.3.2", "description": "JupyterLab extension to render HTML files", "keywords": [ "jupyter", @@ -35,14 +35,14 @@ "watch": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "^4.3.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/docregistry": "^4.3.1", - "@jupyterlab/htmlviewer": "^4.3.1", - "@jupyterlab/observables": "^5.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1" + "@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" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/htmlviewer/package.json b/packages/htmlviewer/package.json index 53ea483657bc..66f4614cce33 100644 --- a/packages/htmlviewer/package.json +++ b/packages/htmlviewer/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/htmlviewer", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/docregistry": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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 9c8d2e294352..2b96ec2d5d2b 100644 --- a/packages/hub-extension/package.json +++ b/packages/hub-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/hub-extension", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/translation": "^4.3.1" + "@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" }, "devDependencies": { "@types/jest": "^29.2.0", diff --git a/packages/imageviewer-extension/package.json b/packages/imageviewer-extension/package.json index cbbc8ef92ed5..9607ca26c225 100644 --- a/packages/imageviewer-extension/package.json +++ b/packages/imageviewer-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/imageviewer-extension", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/docregistry": "^4.3.1", - "@jupyterlab/imageviewer": "^4.3.1", - "@jupyterlab/translation": "^4.3.1" + "@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" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/imageviewer/package.json b/packages/imageviewer/package.json index a406ec45f3a5..31390758ac2b 100644 --- a/packages/imageviewer/package.json +++ b/packages/imageviewer/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/imageviewer", - "version": "4.3.1", + "version": "4.3.2", "description": "JupyterLab - Image Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,15 +41,15 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/docregistry": "^4.3.1", + "@jupyterlab/apputils": "^4.4.2", + "@jupyterlab/coreutils": "^6.3.2", + "@jupyterlab/docregistry": "^4.3.2", "@lumino/coreutils": "^2.2.0", "@lumino/messaging": "^2.0.2", "@lumino/widgets": "^2.5.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.1", + "@jupyterlab/testing": "^4.3.2", "@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 5e0f8d68c1b2..cd3fbe9ff0c6 100644 --- a/packages/inspector-extension/package.json +++ b/packages/inspector-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/inspector-extension", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/console": "^4.3.1", - "@jupyterlab/inspector": "^4.3.1", - "@jupyterlab/launcher": "^4.3.1", - "@jupyterlab/notebook": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@lumino/widgets": "^2.5.0" }, "devDependencies": { diff --git a/packages/inspector/package.json b/packages/inspector/package.json index 5b8f621992ae..cb40edde0530 100644 --- a/packages/inspector/package.json +++ b/packages/inspector/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/inspector", - "version": "4.3.1", + "version": "4.3.2", "description": "JupyterLab - Code Inspector", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,13 +41,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/codeeditor": "^4.3.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/rendermime": "^4.3.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/statedb": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", + "@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", "@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.1", + "@jupyterlab/testing": "^4.3.2", "@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 8657fca68977..64e38f2dfb24 100644 --- a/packages/javascript-extension/package.json +++ b/packages/javascript-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/javascript-extension", - "version": "4.3.1", + "version": "4.3.2", "description": "JupyterLab - Javascript Renderer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -32,8 +32,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/rendermime": "^4.3.1", - "@jupyterlab/rendermime-interfaces": "^3.11.1" + "@jupyterlab/rendermime": "^4.3.2", + "@jupyterlab/rendermime-interfaces": "^3.11.2" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/json-extension/package.json b/packages/json-extension/package.json index 48e90f189587..0e8d03606e02 100644 --- a/packages/json-extension/package.json +++ b/packages/json-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/json-extension", - "version": "4.3.1", + "version": "4.3.2", "description": "JupyterLab - JSON Renderer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -32,11 +32,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/codemirror": "^4.3.1", - "@jupyterlab/rendermime-interfaces": "^3.11.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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 3844fa2b0830..964eda5e0426 100644 --- a/packages/launcher-extension/package.json +++ b/packages/launcher-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/launcher-extension", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/filebrowser": "^4.3.1", - "@jupyterlab/launcher": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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 5fc08cf2a585..c408365202b8 100644 --- a/packages/launcher/package.json +++ b/packages/launcher/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/launcher", - "version": "4.3.1", + "version": "4.3.2", "description": "JupyterLab - Launcher Panel", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -36,9 +36,9 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@jupyterlab/apputils": "^4.4.2", + "@jupyterlab/translation": "^4.3.2", + "@jupyterlab/ui-components": "^4.3.2", "@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 d27e11d73a26..2e6dfa6fe856 100644 --- a/packages/logconsole-extension/package.json +++ b/packages/logconsole-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/logconsole-extension", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/logconsole": "^4.3.1", - "@jupyterlab/rendermime": "^4.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/statusbar": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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 895ed4b670fe..dff9c7b3335a 100644 --- a/packages/logconsole/package.json +++ b/packages/logconsole/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/logconsole", - "version": "4.3.1", + "version": "4.3.2", "description": "JupyterLab - Log Console", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,12 +38,12 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/nbformat": "^4.3.1", - "@jupyterlab/outputarea": "^4.3.1", - "@jupyterlab/rendermime": "^4.3.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/translation": "^4.3.1", + "@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", "@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.1", + "@jupyterlab/testing": "^4.3.2", "@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 e469b0672e7b..ea4679ac3cab 100644 --- a/packages/lsp-extension/package.json +++ b/packages/lsp-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/lsp-extension", - "version": "4.3.1", + "version": "4.3.2", "description": "", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -36,13 +36,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/lsp": "^4.3.1", - "@jupyterlab/running": "^4.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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 c58452765efc..d497270bb15b 100644 --- a/packages/lsp/package.json +++ b/packages/lsp/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/lsp", - "version": "4.3.1", + "version": "4.3.2", "description": "", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,13 +41,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/codeeditor": "^4.3.1", - "@jupyterlab/codemirror": "^4.3.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/docregistry": "^4.3.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/translation": "^4.3.1", + "@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", "@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.1", + "@jupyterlab/testing": "^4.3.2", "@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 e1a3a0879127..b4e4dd41754c 100644 --- a/packages/mainmenu-extension/package.json +++ b/packages/mainmenu-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mainmenu-extension", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/docmanager": "^4.3.1", - "@jupyterlab/filebrowser": "^4.3.1", - "@jupyterlab/mainmenu": "^4.3.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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 8784070ae47c..b847ca2bacba 100644 --- a/packages/mainmenu/package.json +++ b/packages/mainmenu/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mainmenu", - "version": "4.3.1", + "version": "4.3.2", "description": "JupyterLab - Main Menu", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,16 +41,16 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@jupyterlab/apputils": "^4.4.2", + "@jupyterlab/translation": "^4.3.2", + "@jupyterlab/ui-components": "^4.3.2", "@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.1", + "@jupyterlab/testing": "^4.3.2", "@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 29e6108f1400..98d548421fd9 100644 --- a/packages/markdownviewer-extension/package.json +++ b/packages/markdownviewer-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/markdownviewer-extension", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/markdownviewer": "^4.3.1", - "@jupyterlab/rendermime": "^4.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/toc": "^6.3.1", - "@jupyterlab/translation": "^4.3.1" + "@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" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/markdownviewer/package.json b/packages/markdownviewer/package.json index 0145abe53faa..541cf9952d09 100644 --- a/packages/markdownviewer/package.json +++ b/packages/markdownviewer/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/markdownviewer", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/docregistry": "^4.3.1", - "@jupyterlab/rendermime": "^4.3.1", - "@jupyterlab/toc": "^6.3.1", - "@jupyterlab/translation": "^4.3.1", + "@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", "@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 2a5a75d46b01..5cd0958db6e9 100644 --- a/packages/markedparser-extension/package.json +++ b/packages/markedparser-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/markedparser-extension", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/codemirror": "^4.3.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/mermaid": "^4.3.1", - "@jupyterlab/rendermime": "^4.3.1", + "@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", "@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 f2227bd7de18..73acf66b3749 100644 --- a/packages/mathjax-extension/package.json +++ b/packages/mathjax-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mathjax-extension", - "version": "4.3.1", + "version": "4.3.2", "description": "A JupyterLab extension providing MathJax Typesetting", "keywords": [ "jupyter", @@ -43,8 +43,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.1", - "@jupyterlab/rendermime": "^4.3.1", + "@jupyterlab/application": "^4.3.2", + "@jupyterlab/rendermime": "^4.3.2", "@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 5d1c178d914c..b4407e77d8c6 100644 --- a/packages/mermaid-extension/package.json +++ b/packages/mermaid-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mermaid-extension", - "version": "4.3.1", + "version": "4.3.2", "description": "JupyterLab - Mermaid Viewer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -36,11 +36,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/mermaid": "^4.3.1", - "@jupyterlab/rendermime-interfaces": "^3.11.1", - "@jupyterlab/translation": "^4.3.1" + "@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" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/mermaid/package.json b/packages/mermaid/package.json index 311b2092a541..3a2f913006bf 100644 --- a/packages/mermaid/package.json +++ b/packages/mermaid/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/mermaid", - "version": "4.3.1", + "version": "4.3.2", "description": "JupyterLab - Mermaid Renderer", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,9 +41,9 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/rendermime-interfaces": "^3.11.1", + "@jupyterlab/apputils": "^4.4.2", + "@jupyterlab/coreutils": "^6.3.2", + "@jupyterlab/rendermime-interfaces": "^3.11.2", "@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 a942a586f566..91e268bac645 100644 --- a/packages/metadataform-extension/package.json +++ b/packages/metadataform-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/metadataform-extension", - "version": "4.3.1", + "version": "4.3.2", "description": "A helper to build form for metadata", "keywords": [ "jupyter", @@ -39,12 +39,12 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/application": "^4.3.1", - "@jupyterlab/metadataform": "^4.3.1", - "@jupyterlab/notebook": "^4.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@lumino/coreutils": "^2.2.0" }, "devDependencies": { diff --git a/packages/metadataform/package.json b/packages/metadataform/package.json index efe20bbcba70..16a408c63175 100644 --- a/packages/metadataform/package.json +++ b/packages/metadataform/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/metadataform", - "version": "4.3.1", + "version": "4.3.2", "description": "A helper to build form for metadata", "keywords": [ "jupyter", @@ -45,12 +45,12 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/nbformat": "^4.3.1", - "@jupyterlab/notebook": "^4.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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.1", + "@jupyterlab/testing": "^4.3.2", "@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 16f9f017bb6c..1f8daaf93024 100644 --- a/packages/metapackage/package.json +++ b/packages/metapackage/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/metapackage", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/application-extension": "^4.3.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/apputils-extension": "^4.3.1", - "@jupyterlab/attachments": "^4.3.1", - "@jupyterlab/cell-toolbar": "^4.3.1", - "@jupyterlab/cell-toolbar-extension": "^4.3.1", - "@jupyterlab/cells": "^4.3.1", - "@jupyterlab/celltags-extension": "^4.3.1", - "@jupyterlab/codeeditor": "^4.3.1", - "@jupyterlab/codemirror": "^4.3.1", - "@jupyterlab/codemirror-extension": "^4.3.1", - "@jupyterlab/completer": "^4.3.1", - "@jupyterlab/completer-extension": "^4.3.1", - "@jupyterlab/console": "^4.3.1", - "@jupyterlab/console-extension": "^4.3.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/csvviewer": "^4.3.1", - "@jupyterlab/csvviewer-extension": "^4.3.1", - "@jupyterlab/debugger": "^4.3.1", - "@jupyterlab/debugger-extension": "^4.3.1", - "@jupyterlab/docmanager": "^4.3.1", - "@jupyterlab/docmanager-extension": "^4.3.1", - "@jupyterlab/docregistry": "^4.3.1", - "@jupyterlab/documentsearch": "^4.3.1", - "@jupyterlab/documentsearch-extension": "^4.3.1", - "@jupyterlab/extensionmanager": "^4.3.1", - "@jupyterlab/extensionmanager-extension": "^4.3.1", - "@jupyterlab/filebrowser": "^4.3.1", - "@jupyterlab/filebrowser-extension": "^4.3.1", - "@jupyterlab/fileeditor": "^4.3.1", - "@jupyterlab/fileeditor-extension": "^4.3.1", - "@jupyterlab/help-extension": "^4.3.1", - "@jupyterlab/htmlviewer": "^4.3.1", - "@jupyterlab/htmlviewer-extension": "^4.3.1", - "@jupyterlab/hub-extension": "^4.3.1", - "@jupyterlab/imageviewer": "^4.3.1", - "@jupyterlab/imageviewer-extension": "^4.3.1", - "@jupyterlab/inspector": "^4.3.1", - "@jupyterlab/inspector-extension": "^4.3.1", - "@jupyterlab/javascript-extension": "^4.3.1", - "@jupyterlab/json-extension": "^4.3.1", - "@jupyterlab/launcher": "^4.3.1", - "@jupyterlab/launcher-extension": "^4.3.1", - "@jupyterlab/logconsole": "^4.3.1", - "@jupyterlab/logconsole-extension": "^4.3.1", - "@jupyterlab/lsp": "^4.3.1", - "@jupyterlab/lsp-extension": "^4.3.1", - "@jupyterlab/mainmenu": "^4.3.1", - "@jupyterlab/mainmenu-extension": "^4.3.1", - "@jupyterlab/markdownviewer": "^4.3.1", - "@jupyterlab/markdownviewer-extension": "^4.3.1", - "@jupyterlab/markedparser-extension": "^4.3.1", - "@jupyterlab/mathjax-extension": "^4.3.1", - "@jupyterlab/mermaid": "^4.3.1", - "@jupyterlab/mermaid-extension": "^4.3.1", - "@jupyterlab/metadataform": "^4.3.1", - "@jupyterlab/metadataform-extension": "^4.3.1", - "@jupyterlab/nbconvert-css": "^4.3.1", - "@jupyterlab/nbformat": "^4.3.1", - "@jupyterlab/notebook": "^4.3.1", - "@jupyterlab/notebook-extension": "^4.3.1", - "@jupyterlab/observables": "^5.3.1", - "@jupyterlab/outputarea": "^4.3.1", - "@jupyterlab/pdf-extension": "^4.3.1", - "@jupyterlab/pluginmanager": "^4.3.1", - "@jupyterlab/pluginmanager-extension": "^4.3.1", - "@jupyterlab/property-inspector": "^4.3.1", - "@jupyterlab/rendermime": "^4.3.1", - "@jupyterlab/rendermime-extension": "^4.3.1", - "@jupyterlab/rendermime-interfaces": "^3.11.1", - "@jupyterlab/running": "^4.3.1", - "@jupyterlab/running-extension": "^4.3.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/settingeditor": "^4.3.1", - "@jupyterlab/settingeditor-extension": "^4.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/shortcuts-extension": "^5.1.1", - "@jupyterlab/statedb": "^4.3.1", - "@jupyterlab/statusbar": "^4.3.1", - "@jupyterlab/statusbar-extension": "^4.3.1", - "@jupyterlab/terminal": "^4.3.1", - "@jupyterlab/terminal-extension": "^4.3.1", - "@jupyterlab/theme-dark-extension": "^4.3.1", - "@jupyterlab/theme-dark-high-contrast-extension": "^4.3.1", - "@jupyterlab/theme-light-extension": "^4.3.1", - "@jupyterlab/toc": "^6.3.1", - "@jupyterlab/toc-extension": "^6.3.1", - "@jupyterlab/tooltip": "^4.3.1", - "@jupyterlab/tooltip-extension": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/translation-extension": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", - "@jupyterlab/ui-components-extension": "^4.3.1", - "@jupyterlab/vega5-extension": "^4.3.1", - "@jupyterlab/workspaces": "^4.3.1", - "@jupyterlab/workspaces-extension": "^4.3.1" + "@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" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.1", + "@jupyterlab/testing": "^4.3.2", "@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 f6c6a9f5953f..fd3e3a592304 100644 --- a/packages/nbconvert-css/package.json +++ b/packages/nbconvert-css/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/nbconvert-css", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/cells": "^4.3.1", - "@jupyterlab/codemirror": "^4.3.1", - "@jupyterlab/notebook": "^4.3.1", - "@jupyterlab/outputarea": "^4.3.1", - "@jupyterlab/rendermime": "^4.3.1" + "@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" }, "devDependencies": { "css-loader": "^6.7.1", diff --git a/packages/nbformat/package.json b/packages/nbformat/package.json index f1034c1bc02a..328b33e427f5 100644 --- a/packages/nbformat/package.json +++ b/packages/nbformat/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/nbformat", - "version": "4.3.1", + "version": "4.3.2", "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.1", + "@jupyterlab/testing": "^4.3.2", "@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 4c604a4e6e7f..a5143c3e5393 100644 --- a/packages/notebook-extension/package.json +++ b/packages/notebook-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/notebook-extension", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/cells": "^4.3.1", - "@jupyterlab/codeeditor": "^4.3.1", - "@jupyterlab/codemirror": "^4.3.1", - "@jupyterlab/completer": "^4.3.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/docmanager": "^4.3.1", - "@jupyterlab/docmanager-extension": "^4.3.1", - "@jupyterlab/docregistry": "^4.3.1", - "@jupyterlab/documentsearch": "^4.3.1", - "@jupyterlab/filebrowser": "^4.3.1", - "@jupyterlab/launcher": "^4.3.1", - "@jupyterlab/logconsole": "^4.3.1", - "@jupyterlab/lsp": "^4.3.1", - "@jupyterlab/mainmenu": "^4.3.1", - "@jupyterlab/metadataform": "^4.3.1", - "@jupyterlab/nbformat": "^4.3.1", - "@jupyterlab/notebook": "^4.3.1", - "@jupyterlab/observables": "^5.3.1", - "@jupyterlab/property-inspector": "^4.3.1", - "@jupyterlab/rendermime": "^4.3.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/statedb": "^4.3.1", - "@jupyterlab/statusbar": "^4.3.1", - "@jupyterlab/toc": "^6.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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 e932e967c8de..8504d82979a5 100644 --- a/packages/notebook/package.json +++ b/packages/notebook/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/notebook", - "version": "4.3.1", + "version": "4.3.2", "description": "JupyterLab - Notebook", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,23 +41,23 @@ }, "dependencies": { "@jupyter/ydoc": "^3.0.0", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/cells": "^4.3.1", - "@jupyterlab/codeeditor": "^4.3.1", - "@jupyterlab/codemirror": "^4.3.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/docregistry": "^4.3.1", - "@jupyterlab/documentsearch": "^4.3.1", - "@jupyterlab/lsp": "^4.3.1", - "@jupyterlab/nbformat": "^4.3.1", - "@jupyterlab/observables": "^5.3.1", - "@jupyterlab/rendermime": "^4.3.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/statusbar": "^4.3.1", - "@jupyterlab/toc": "^6.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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.1", + "@jupyterlab/testing": "^4.3.2", "@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 5809367f462a..71edfdf85b9a 100644 --- a/packages/observables/package.json +++ b/packages/observables/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/observables", - "version": "5.3.1", + "version": "5.3.2", "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.1", + "@jupyterlab/testing": "^4.3.2", "@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 3882a5398b9d..78531bc9e2d3 100644 --- a/packages/outputarea/package.json +++ b/packages/outputarea/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/outputarea", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/nbformat": "^4.3.1", - "@jupyterlab/observables": "^5.3.1", - "@jupyterlab/rendermime": "^4.3.1", - "@jupyterlab/rendermime-interfaces": "^3.11.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/translation": "^4.3.1", + "@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", "@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.1", + "@jupyterlab/testing": "^4.3.2", "@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 b4cdeb171eab..7d03603ba1b3 100644 --- a/packages/pdf-extension/package.json +++ b/packages/pdf-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/pdf-extension", - "version": "4.3.1", + "version": "4.3.2", "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.1", + "@jupyterlab/rendermime-interfaces": "^3.11.2", "@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 ac7ff18f5781..4bda7b7bd647 100644 --- a/packages/pluginmanager-extension/package.json +++ b/packages/pluginmanager-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/pluginmanager-extension", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/pluginmanager": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@lumino/coreutils": "^2.2.0" }, "devDependencies": { diff --git a/packages/pluginmanager/package.json b/packages/pluginmanager/package.json index 07ecf10abe0c..b4c67cd5e8dd 100644 --- a/packages/pluginmanager/package.json +++ b/packages/pluginmanager/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/pluginmanager", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@lumino/coreutils": "^2.2.0", "@lumino/signaling": "^2.1.3", "@lumino/widgets": "^2.5.0", "react": "^18.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.1", + "@jupyterlab/testing": "^4.3.2", "@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 6c92443af4c9..288a7c0889cb 100644 --- a/packages/property-inspector/package.json +++ b/packages/property-inspector/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/property-inspector", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@jupyterlab/application": "^4.3.2", + "@jupyterlab/translation": "^4.3.2", + "@jupyterlab/ui-components": "^4.3.2", "@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 8e3b7a56dd73..8bac0b748162 100644 --- a/packages/rendermime-extension/package.json +++ b/packages/rendermime-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/rendermime-extension", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/docmanager": "^4.3.1", - "@jupyterlab/rendermime": "^4.3.1", - "@jupyterlab/translation": "^4.3.1" + "@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" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/rendermime-interfaces/package.json b/packages/rendermime-interfaces/package.json index bb8dc69430e0..4881d27226eb 100644 --- a/packages/rendermime-interfaces/package.json +++ b/packages/rendermime-interfaces/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/rendermime-interfaces", - "version": "3.11.1", + "version": "3.11.2", "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 f0599a7609d8..792f013dcc9c 100644 --- a/packages/rendermime/package.json +++ b/packages/rendermime/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/rendermime", - "version": "4.3.1", + "version": "4.3.2", "description": "JupyterLab - RenderMime", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -41,13 +41,13 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/nbformat": "^4.3.1", - "@jupyterlab/observables": "^5.3.1", - "@jupyterlab/rendermime-interfaces": "^3.11.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/translation": "^4.3.1", + "@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", "@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.1", + "@jupyterlab/testing": "^4.3.2", "@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 7f67d155753c..15b456763cca 100644 --- a/packages/running-extension/package.json +++ b/packages/running-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/running-extension", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/docmanager": "^4.3.1", - "@jupyterlab/docregistry": "^4.3.1", - "@jupyterlab/rendermime-interfaces": "^3.11.1", - "@jupyterlab/running": "^4.3.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/statedb": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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 cb48c732a53d..24c8f8ee107b 100644 --- a/packages/running/package.json +++ b/packages/running/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/running", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/statedb": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@jupyterlab/apputils": "^4.4.2", + "@jupyterlab/statedb": "^4.3.2", + "@jupyterlab/translation": "^4.3.2", + "@jupyterlab/ui-components": "^4.3.2", "@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 b42f1e025610..3597db6da3c4 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.1", + "version": "4.3.2", "private": true, "files": [ "lib/*.{d.ts,js,js.map}" @@ -10,8 +10,8 @@ "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo" }, "dependencies": { - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/services": "^7.3.1", + "@jupyterlab/coreutils": "^6.3.2", + "@jupyterlab/services": "^7.3.2", "@lumino/coreutils": "^2.2.0" }, "devDependencies": { diff --git a/packages/services/examples/node/package.json b/packages/services/examples/node/package.json index f53284b94e29..d70650cfb07d 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.1", + "version": "4.3.2", "private": true, "scripts": { "clean": "rimraf node_modules", "update": "rimraf node_modules/@jupyterlab/services && npm install" }, "dependencies": { - "@jupyterlab/services": "^7.3.1", + "@jupyterlab/services": "^7.3.2", "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 ef38ed7c7144..a37a7760c50b 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.1", + "version": "4.3.2", "private": true, "sideEffects": [ "style/*" @@ -16,10 +16,10 @@ "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo" }, "dependencies": { - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/outputarea": "^4.3.1", - "@jupyterlab/rendermime": "^4.3.1", - "@jupyterlab/services": "^7.3.1" + "@jupyterlab/coreutils": "^6.3.2", + "@jupyterlab/outputarea": "^4.3.2", + "@jupyterlab/rendermime": "^4.3.2", + "@jupyterlab/services": "^7.3.2" }, "devDependencies": { "css-loader": "^6.7.1", diff --git a/packages/services/package.json b/packages/services/package.json index 192803a959a4..81023f8a7814 100644 --- a/packages/services/package.json +++ b/packages/services/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/services", - "version": "7.3.1", + "version": "7.3.2", "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.1", - "@jupyterlab/nbformat": "^4.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/statedb": "^4.3.1", + "@jupyterlab/coreutils": "^6.3.2", + "@jupyterlab/nbformat": "^4.3.2", + "@jupyterlab/settingregistry": "^4.3.2", + "@jupyterlab/statedb": "^4.3.2", "@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.1", + "@jupyterlab/testing": "^4.3.2", "@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 824670e3a298..89ae64afb89c 100644 --- a/packages/settingeditor-extension/package.json +++ b/packages/settingeditor-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/settingeditor-extension", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/codeeditor": "^4.3.1", - "@jupyterlab/pluginmanager": "^4.3.1", - "@jupyterlab/rendermime": "^4.3.1", - "@jupyterlab/settingeditor": "^4.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/statedb": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@lumino/disposable": "^2.1.3" }, "devDependencies": { diff --git a/packages/settingeditor/package.json b/packages/settingeditor/package.json index 6544c116f993..beed8c62c1c5 100644 --- a/packages/settingeditor/package.json +++ b/packages/settingeditor/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/settingeditor", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/codeeditor": "^4.3.1", - "@jupyterlab/inspector": "^4.3.1", - "@jupyterlab/rendermime": "^4.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/statedb": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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.1", + "@jupyterlab/testing": "^4.3.2", "@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 154871cf12e1..a567cbd74a44 100644 --- a/packages/settingregistry/package.json +++ b/packages/settingregistry/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/settingregistry", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/statedb": "^4.3.1", + "@jupyterlab/nbformat": "^4.3.2", + "@jupyterlab/statedb": "^4.3.2", "@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.1", + "@jupyterlab/testing": "^4.3.2", "@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 f68b801d2236..c880dfb3a0b5 100644 --- a/packages/shortcuts-extension/package.json +++ b/packages/shortcuts-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/shortcuts-extension", - "version": "5.1.1", + "version": "5.1.2", "description": "JupyterLab - Shortcuts Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -40,10 +40,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@jupyterlab/application": "^4.3.2", + "@jupyterlab/settingregistry": "^4.3.2", + "@jupyterlab/translation": "^4.3.2", + "@jupyterlab/ui-components": "^4.3.2", "@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.1", + "@jupyterlab/testing": "^4.3.2", "@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 5a9c08a3e92b..917d4aad73f5 100644 --- a/packages/statedb/package.json +++ b/packages/statedb/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/statedb", - "version": "4.3.1", + "version": "4.3.2", "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.1", + "@jupyterlab/testing": "^4.3.2", "@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 6733fdd9c28d..585875801ba1 100644 --- a/packages/statusbar-extension/package.json +++ b/packages/statusbar-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/statusbar-extension", - "version": "4.3.1", + "version": "4.3.2", "description": "JupyterLab - Statusbar Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -36,11 +36,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/statusbar": "^4.3.1", - "@jupyterlab/translation": "^4.3.1" + "@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" }, "devDependencies": { "@types/react": "^18.0.26", diff --git a/packages/statusbar/package.json b/packages/statusbar/package.json index 5d2a287e76e4..fd8d5a6f7264 100644 --- a/packages/statusbar/package.json +++ b/packages/statusbar/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/statusbar", - "version": "4.3.1", + "version": "4.3.2", "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.1", + "@jupyterlab/ui-components": "^4.3.2", "@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.1", + "@jupyterlab/testing": "^4.3.2", "@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 dbaebc3db038..ab2f78a2362a 100644 --- a/packages/terminal-extension/package.json +++ b/packages/terminal-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/terminal-extension", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/launcher": "^4.3.1", - "@jupyterlab/mainmenu": "^4.3.1", - "@jupyterlab/running": "^4.3.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/terminal": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@lumino/widgets": "^2.5.0" }, "devDependencies": { diff --git a/packages/terminal/package.json b/packages/terminal/package.json index 5c2f73b8dc4e..3967faad3885 100644 --- a/packages/terminal/package.json +++ b/packages/terminal/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/terminal", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/translation": "^4.3.1", + "@jupyterlab/apputils": "^4.4.2", + "@jupyterlab/services": "^7.3.2", + "@jupyterlab/translation": "^4.3.2", "@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.1", + "@jupyterlab/testing": "^4.3.2", "@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 48392e9c63dc..739129a1789e 100644 --- a/packages/testing/package.json +++ b/packages/testing/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/testing", - "version": "4.3.1", + "version": "4.3.2", "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.1", + "@jupyterlab/coreutils": "^6.3.2", "@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 b6b31372b42e..291a2a6f7f16 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.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/translation": "^4.3.1" + "@jupyterlab/application": "^4.3.2", + "@jupyterlab/apputils": "^4.4.2", + "@jupyterlab/translation": "^4.3.2" }, "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 02275d355a37..1f29a3b1c9d0 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.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/translation": "^4.3.1" + "@jupyterlab/application": "^4.3.2", + "@jupyterlab/apputils": "^4.4.2", + "@jupyterlab/translation": "^4.3.2" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/theme-light-extension/package.json b/packages/theme-light-extension/package.json index d2e3147a22fb..ebeaf2942dda 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.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/translation": "^4.3.1" + "@jupyterlab/application": "^4.3.2", + "@jupyterlab/apputils": "^4.4.2", + "@jupyterlab/translation": "^4.3.2" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/toc-extension/package.json b/packages/toc-extension/package.json index f8bf02291156..26f37542242d 100644 --- a/packages/toc-extension/package.json +++ b/packages/toc-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/toc-extension", - "version": "6.3.1", + "version": "6.3.2", "description": "JupyterLab - Table of Contents widget extension", "keywords": [ "jupyter", @@ -40,11 +40,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/toc": "^6.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1" + "@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" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/toc/package.json b/packages/toc/package.json index c5f617d7442e..271cee61bc99 100644 --- a/packages/toc/package.json +++ b/packages/toc/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/toc", - "version": "6.3.1", + "version": "6.3.2", "description": "JupyterLab - Table of Contents widget", "keywords": [ "jupyterlab" @@ -41,14 +41,14 @@ }, "dependencies": { "@jupyter/react-components": "^0.16.6", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/docregistry": "^4.3.1", - "@jupyterlab/observables": "^5.3.1", - "@jupyterlab/rendermime": "^4.3.1", - "@jupyterlab/rendermime-interfaces": "^3.11.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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.1", + "@jupyterlab/testing": "^4.3.2", "@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 7c25b272276c..535ca74b198d 100644 --- a/packages/tooltip-extension/package.json +++ b/packages/tooltip-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/tooltip-extension", - "version": "4.3.1", + "version": "4.3.2", "description": "JupyterLab - Tooltip Extension", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -37,16 +37,16 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.1", - "@jupyterlab/codeeditor": "^4.3.1", - "@jupyterlab/console": "^4.3.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/fileeditor": "^4.3.1", - "@jupyterlab/notebook": "^4.3.1", - "@jupyterlab/rendermime": "^4.3.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/tooltip": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", + "@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", "@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 a11e8ed8544f..986b7f2d62f6 100644 --- a/packages/tooltip/package.json +++ b/packages/tooltip/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/tooltip", - "version": "4.3.1", + "version": "4.3.2", "description": "JupyterLab - Tooltip Widget", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -36,10 +36,10 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/codeeditor": "^4.3.1", - "@jupyterlab/rendermime": "^4.3.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@jupyterlab/codeeditor": "^4.3.2", + "@jupyterlab/rendermime": "^4.3.2", + "@jupyterlab/services": "^7.3.2", + "@jupyterlab/ui-components": "^4.3.2", "@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 a0d2303bed9d..5601e059f90d 100644 --- a/packages/translation-extension/package.json +++ b/packages/translation-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/translation-extension", - "version": "4.3.1", + "version": "4.3.2", "description": "JupyterLab - Translation services", "keywords": [ "jupyter", @@ -37,11 +37,11 @@ "watch": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "^4.3.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/mainmenu": "^4.3.1", - "@jupyterlab/settingregistry": "^4.3.1", - "@jupyterlab/translation": "^4.3.1" + "@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" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/packages/translation/package.json b/packages/translation/package.json index 0084567a96cd..eb55306fff85 100644 --- a/packages/translation/package.json +++ b/packages/translation/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/translation", - "version": "4.3.1", + "version": "4.3.2", "description": "JupyterLab - Translation services", "keywords": [ "jupyter", @@ -37,14 +37,14 @@ "watch": "tsc -w" }, "dependencies": { - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/rendermime-interfaces": "^3.11.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/statedb": "^4.3.1", + "@jupyterlab/coreutils": "^6.3.2", + "@jupyterlab/rendermime-interfaces": "^3.11.2", + "@jupyterlab/services": "^7.3.2", + "@jupyterlab/statedb": "^4.3.2", "@lumino/coreutils": "^2.2.0" }, "devDependencies": { - "@jupyterlab/testing": "^4.3.1", + "@jupyterlab/testing": "^4.3.2", "@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 f4f1ec2eb3e1..b02efff9de55 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.1", + "version": "4.3.2", "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.1", - "@jupyterlab/ui-components": "^4.3.1" + "@jupyterlab/application": "^4.3.2", + "@jupyterlab/ui-components": "^4.3.2" }, "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 5e512d095bb9..80f057dea1c3 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.1", + "version": "4.3.2", "private": true, "style": "style/index.css", "scripts": { @@ -9,11 +9,11 @@ "watch": "webpack --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/observables": "^5.3.1", - "@jupyterlab/theme-light-extension": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", + "@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", "@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 e94e65997c1a..b3d2e04f6627 100644 --- a/packages/ui-components/package.json +++ b/packages/ui-components/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/ui-components", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/observables": "^5.3.1", - "@jupyterlab/rendermime-interfaces": "^3.11.1", - "@jupyterlab/translation": "^4.3.1", + "@jupyterlab/coreutils": "^6.3.2", + "@jupyterlab/observables": "^5.3.2", + "@jupyterlab/rendermime-interfaces": "^3.11.2", + "@jupyterlab/translation": "^4.3.2", "@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.1", + "@jupyterlab/testing": "^4.3.2", "@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 752f61dd736a..eb5d2362eccc 100644 --- a/packages/vega5-extension/package.json +++ b/packages/vega5-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/vega5-extension", - "version": "4.3.1", + "version": "4.3.2", "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.1", + "@jupyterlab/rendermime-interfaces": "^3.11.2", "@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.1", + "@jupyterlab/testutils": "^4.3.2", "@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 287c22bc6235..0546c37ccac0 100644 --- a/packages/workspaces-extension/package.json +++ b/packages/workspaces-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/workspaces-extension", - "version": "4.3.1", + "version": "4.3.2", "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.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/coreutils": "^6.3.1", - "@jupyterlab/filebrowser": "^4.3.1", - "@jupyterlab/running": "^4.3.1", - "@jupyterlab/services": "^7.3.1", - "@jupyterlab/statedb": "^4.3.1", - "@jupyterlab/translation": "^4.3.1", - "@jupyterlab/ui-components": "^4.3.1", - "@jupyterlab/workspaces": "^4.3.1" + "@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" }, "devDependencies": { "@types/jest": "^29.2.0", diff --git a/packages/workspaces/package.json b/packages/workspaces/package.json index aa2c66d5a2ab..cb3ecbba84d2 100644 --- a/packages/workspaces/package.json +++ b/packages/workspaces/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/workspaces", - "version": "4.3.1", + "version": "4.3.2", "description": "JupyterLab workspaces management", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -38,14 +38,14 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/services": "^7.3.1", + "@jupyterlab/services": "^7.3.2", "@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.1", + "@jupyterlab/testing": "^4.3.2", "@types/jest": "^29.2.0", "jest": "^29.2.0", "rimraf": "~5.0.5", diff --git a/testutils/package.json b/testutils/package.json index ddef1c20c51e..4417ca30dc41 100644 --- a/testutils/package.json +++ b/testutils/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/testutils", - "version": "4.3.1", + "version": "4.3.2", "description": "JupyterLab - Test Utilities", "homepage": "https://github.com/jupyterlab/jupyterlab", "bugs": { @@ -31,11 +31,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyterlab/application": "^4.3.1", - "@jupyterlab/apputils": "^4.4.1", - "@jupyterlab/notebook": "^4.3.1", - "@jupyterlab/rendermime": "^4.3.1", - "@jupyterlab/testing": "^4.3.1" + "@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" }, "devDependencies": { "rimraf": "~5.0.5", diff --git a/yarn.lock b/yarn.lock index 20c235b150f6..f14cd0fe1aff 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2088,19 +2088,19 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/application-extension@^4.3.1, @jupyterlab/application-extension@workspace:packages/application-extension, @jupyterlab/application-extension@~4.3.1": +"@jupyterlab/application-extension@^4.3.2, @jupyterlab/application-extension@workspace:packages/application-extension, @jupyterlab/application-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/application-extension@workspace:packages/application-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/property-inspector": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/statusbar": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1 - "@jupyterlab/application-extension": ~4.3.1 - "@jupyterlab/apputils-extension": ~4.3.1 - "@jupyterlab/builder": ^4.3.1 - "@jupyterlab/buildutils": ^4.3.1 - "@jupyterlab/cell-toolbar-extension": ~4.3.1 - "@jupyterlab/celltags-extension": ~4.3.1 - "@jupyterlab/codemirror-extension": ~4.3.1 - "@jupyterlab/completer-extension": ~4.3.1 - "@jupyterlab/console-extension": ~4.3.1 - "@jupyterlab/coreutils": ~6.3.1 - "@jupyterlab/csvviewer-extension": ~4.3.1 - "@jupyterlab/debugger-extension": ~4.3.1 - "@jupyterlab/docmanager-extension": ~4.3.1 - "@jupyterlab/documentsearch-extension": ~4.3.1 - "@jupyterlab/extensionmanager-extension": ~4.3.1 - "@jupyterlab/filebrowser-extension": ~4.3.1 - "@jupyterlab/fileeditor-extension": ~4.3.1 - "@jupyterlab/help-extension": ~4.3.1 - "@jupyterlab/htmlviewer-extension": ~4.3.1 - "@jupyterlab/hub-extension": ~4.3.1 - "@jupyterlab/imageviewer-extension": ~4.3.1 - "@jupyterlab/inspector-extension": ~4.3.1 - "@jupyterlab/javascript-extension": ~4.3.1 - "@jupyterlab/json-extension": ~4.3.1 - "@jupyterlab/launcher-extension": ~4.3.1 - "@jupyterlab/logconsole-extension": ~4.3.1 - "@jupyterlab/lsp-extension": ~4.3.1 - "@jupyterlab/mainmenu-extension": ~4.3.1 - "@jupyterlab/markdownviewer-extension": ~4.3.1 - "@jupyterlab/markedparser-extension": ~4.3.1 - "@jupyterlab/mathjax-extension": ~4.3.1 - "@jupyterlab/mermaid-extension": ~4.3.1 - "@jupyterlab/metadataform-extension": ~4.3.1 - "@jupyterlab/notebook-extension": ~4.3.1 - "@jupyterlab/pdf-extension": ~4.3.1 - "@jupyterlab/pluginmanager-extension": ~4.3.1 - "@jupyterlab/rendermime-extension": ~4.3.1 - "@jupyterlab/running-extension": ~4.3.1 - "@jupyterlab/settingeditor-extension": ~4.3.1 - "@jupyterlab/shortcuts-extension": ~5.1.1 - "@jupyterlab/statusbar-extension": ~4.3.1 - "@jupyterlab/terminal-extension": ~4.3.1 - "@jupyterlab/theme-dark-extension": ~4.3.1 - "@jupyterlab/theme-dark-high-contrast-extension": ~4.3.1 - "@jupyterlab/theme-light-extension": ~4.3.1 - "@jupyterlab/toc-extension": ~6.3.1 - "@jupyterlab/tooltip-extension": ~4.3.1 - "@jupyterlab/translation-extension": ~4.3.1 - "@jupyterlab/ui-components-extension": ~4.3.1 - "@jupyterlab/vega5-extension": ~4.3.1 - "@jupyterlab/workspaces-extension": ~4.3.1 + "@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 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.1, @jupyterlab/application@workspace:packages/application, @jupyterlab/application@~4.3.1": +"@jupyterlab/application@^4.3.2, @jupyterlab/application@workspace:packages/application, @jupyterlab/application@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/application@workspace:packages/application" dependencies: "@fortawesome/fontawesome-free": ^5.12.0 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/apputils-extension@workspace:packages/apputils-extension, @jupyterlab/apputils-extension@~4.3.1": +"@jupyterlab/apputils-extension@^4.3.2, @jupyterlab/apputils-extension@workspace:packages/apputils-extension, @jupyterlab/apputils-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/apputils-extension@workspace:packages/apputils-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/mainmenu": ^4.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/statusbar": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 - "@jupyterlab/workspaces": ^4.3.1 + "@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 "@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.1, @jupyterlab/apputils@workspace:packages/apputils": +"@jupyterlab/apputils@^4.4.2, @jupyterlab/apputils@workspace:packages/apputils": version: 0.0.0-use.local resolution: "@jupyterlab/apputils@workspace:packages/apputils" dependencies: - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/statusbar": ^4.3.1 - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/attachments@workspace:packages/attachments": +"@jupyterlab/attachments@^4.3.2, @jupyterlab/attachments@workspace:packages/attachments": version: 0.0.0-use.local resolution: "@jupyterlab/attachments@workspace:packages/attachments" dependencies: - "@jupyterlab/nbformat": ^4.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 + "@jupyterlab/nbformat": ^4.3.2 + "@jupyterlab/observables": ^5.3.2 + "@jupyterlab/rendermime": ^4.3.2 + "@jupyterlab/rendermime-interfaces": ^3.11.2 "@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.1, @jupyterlab/builder@workspace:builder": +"@jupyterlab/builder@^4.3.2, @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.1, @jupyterlab/buildutils@workspace:buildutils": +"@jupyterlab/buildutils@^4.3.2, @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.1, @jupyterlab/cell-toolbar-extension@workspace:packages/cell-toolbar-extension, @jupyterlab/cell-toolbar-extension@~4.3.1": +"@jupyterlab/cell-toolbar-extension@^4.3.2, @jupyterlab/cell-toolbar-extension@workspace:packages/cell-toolbar-extension, @jupyterlab/cell-toolbar-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/cell-toolbar-extension@workspace:packages/cell-toolbar-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/cell-toolbar": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 + "@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 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/cell-toolbar@^4.3.1, @jupyterlab/cell-toolbar@workspace:packages/cell-toolbar": +"@jupyterlab/cell-toolbar@^4.3.2, @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.1 - "@jupyterlab/cells": ^4.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/notebook": ^4.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/cells@workspace:packages/cells": +"@jupyterlab/cells@^4.3.2, @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.1 - "@jupyterlab/attachments": ^4.3.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/codemirror": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/documentsearch": ^4.3.1 - "@jupyterlab/filebrowser": ^4.3.1 - "@jupyterlab/nbformat": ^4.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/outputarea": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/toc": ^6.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/celltags-extension@workspace:packages/celltags-extension, @jupyterlab/celltags-extension@~4.3.1": +"@jupyterlab/celltags-extension@^4.3.2, @jupyterlab/celltags-extension@workspace:packages/celltags-extension, @jupyterlab/celltags-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/celltags-extension@workspace:packages/celltags-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/notebook": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@jupyterlab/application": ^4.3.2 + "@jupyterlab/notebook": ^4.3.2 + "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/ui-components": ^4.3.2 "@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.1, @jupyterlab/codeeditor@workspace:packages/codeeditor": +"@jupyterlab/codeeditor@^4.3.2, @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.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/nbformat": ^4.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/statusbar": ^4.3.1 - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/codemirror-extension@workspace:packages/codemirror-extension, @jupyterlab/codemirror-extension@~4.3.1": +"@jupyterlab/codemirror-extension@^4.3.2, @jupyterlab/codemirror-extension@workspace:packages/codemirror-extension, @jupyterlab/codemirror-extension@~4.3.2": 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.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/codemirror": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/statusbar": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/codemirror@workspace:packages/codemirror": +"@jupyterlab/codemirror@^4.3.2, @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.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/documentsearch": ^4.3.1 - "@jupyterlab/nbformat": ^4.3.1 - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 + "@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 "@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.1, @jupyterlab/completer-extension@workspace:packages/completer-extension, @jupyterlab/completer-extension@~4.3.1": +"@jupyterlab/completer-extension@^4.3.2, @jupyterlab/completer-extension@workspace:packages/completer-extension, @jupyterlab/completer-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/completer-extension@workspace:packages/completer-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/completer": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/completer@workspace:packages/completer": +"@jupyterlab/completer@^4.3.2, @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.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/codemirror": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/console-extension@workspace:packages/console-extension, @jupyterlab/console-extension@~4.3.1": +"@jupyterlab/console-extension@^4.3.2, @jupyterlab/console-extension@workspace:packages/console-extension, @jupyterlab/console-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/console-extension@workspace:packages/console-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/completer": ^4.3.1 - "@jupyterlab/console": ^4.3.1 - "@jupyterlab/filebrowser": ^4.3.1 - "@jupyterlab/launcher": ^4.3.1 - "@jupyterlab/mainmenu": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/console@workspace:packages/console": +"@jupyterlab/console@^4.3.2, @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.1 - "@jupyterlab/cells": ^4.3.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/codemirror": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/nbformat": ^4.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/coreutils@workspace:packages/coreutils, @jupyterlab/coreutils@~6.3.1": +"@jupyterlab/coreutils@^6.3.2, @jupyterlab/coreutils@workspace:packages/coreutils, @jupyterlab/coreutils@~6.3.2": 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.1, @jupyterlab/csvviewer-extension@workspace:packages/csvviewer-extension, @jupyterlab/csvviewer-extension@~4.3.1": +"@jupyterlab/csvviewer-extension@^4.3.2, @jupyterlab/csvviewer-extension@workspace:packages/csvviewer-extension, @jupyterlab/csvviewer-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/csvviewer-extension@workspace:packages/csvviewer-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/csvviewer": ^4.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/documentsearch": ^4.3.1 - "@jupyterlab/mainmenu": ^4.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 + "@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 "@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.1, @jupyterlab/csvviewer@workspace:packages/csvviewer": +"@jupyterlab/csvviewer@^4.3.2, @jupyterlab/csvviewer@workspace:packages/csvviewer": version: 0.0.0-use.local resolution: "@jupyterlab/csvviewer@workspace:packages/csvviewer" dependencies: - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/debugger-extension@workspace:packages/debugger-extension, @jupyterlab/debugger-extension@~4.3.1": +"@jupyterlab/debugger-extension@^4.3.2, @jupyterlab/debugger-extension@workspace:packages/debugger-extension, @jupyterlab/debugger-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/debugger-extension@workspace:packages/debugger-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/cells": ^4.3.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/console": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/debugger": ^4.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/fileeditor": ^4.3.1 - "@jupyterlab/logconsole": ^4.3.1 - "@jupyterlab/notebook": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 + "@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 "@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.1, @jupyterlab/debugger@workspace:packages/debugger": +"@jupyterlab/debugger@^4.3.2, @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.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/cells": ^4.3.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/codemirror": ^4.3.1 - "@jupyterlab/console": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/fileeditor": ^4.3.1 - "@jupyterlab/notebook": ^4.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/docmanager-extension@workspace:packages/docmanager-extension, @jupyterlab/docmanager-extension@~4.3.1": +"@jupyterlab/docmanager-extension@^4.3.2, @jupyterlab/docmanager-extension@workspace:packages/docmanager-extension, @jupyterlab/docmanager-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/docmanager-extension@workspace:packages/docmanager-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docmanager": ^4.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/statusbar": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/docmanager@workspace:packages/docmanager": +"@jupyterlab/docmanager@^4.3.2, @jupyterlab/docmanager@workspace:packages/docmanager": version: 0.0.0-use.local resolution: "@jupyterlab/docmanager@workspace:packages/docmanager" dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/statusbar": ^4.3.1 - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/docregistry@workspace:packages/docregistry": +"@jupyterlab/docregistry@^4.3.2, @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.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/documentsearch-extension@workspace:packages/documentsearch-extension, @jupyterlab/documentsearch-extension@~4.3.1": +"@jupyterlab/documentsearch-extension@^4.3.2, @jupyterlab/documentsearch-extension@workspace:packages/documentsearch-extension, @jupyterlab/documentsearch-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/documentsearch-extension@workspace:packages/documentsearch-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/documentsearch": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 + "@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 "@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.1, @jupyterlab/documentsearch@workspace:packages/documentsearch": +"@jupyterlab/documentsearch@^4.3.2, @jupyterlab/documentsearch@workspace:packages/documentsearch": version: 0.0.0-use.local resolution: "@jupyterlab/documentsearch@workspace:packages/documentsearch" dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@jupyterlab/apputils": ^4.4.2 + "@jupyterlab/testing": ^4.3.2 + "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/ui-components": ^4.3.2 "@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.1 - "@jupyterlab/application-extension": ^4.3.1 - "@jupyterlab/apputils-extension": ^4.3.1 - "@jupyterlab/builder": ^4.3.1 - "@jupyterlab/celltags-extension": ^4.3.1 - "@jupyterlab/codemirror-extension": ^4.3.1 - "@jupyterlab/completer-extension": ^4.3.1 - "@jupyterlab/console-extension": ^4.3.1 - "@jupyterlab/csvviewer-extension": ^4.3.1 - "@jupyterlab/docmanager-extension": ^4.3.1 - "@jupyterlab/filebrowser-extension": ^4.3.1 - "@jupyterlab/fileeditor-extension": ^4.3.1 - "@jupyterlab/help-extension": ^4.3.1 - "@jupyterlab/imageviewer-extension": ^4.3.1 - "@jupyterlab/inspector-extension": ^4.3.1 - "@jupyterlab/launcher-extension": ^4.3.1 - "@jupyterlab/mainmenu-extension": ^4.3.1 - "@jupyterlab/markdownviewer-extension": ^4.3.1 - "@jupyterlab/mathjax-extension": ^4.3.1 - "@jupyterlab/metadataform-extension": ^4.3.1 - "@jupyterlab/notebook-extension": ^4.3.1 - "@jupyterlab/rendermime-extension": ^4.3.1 - "@jupyterlab/running-extension": ^4.3.1 - "@jupyterlab/settingeditor-extension": ^4.3.1 - "@jupyterlab/shortcuts-extension": ^5.1.1 - "@jupyterlab/statusbar-extension": ^4.3.1 - "@jupyterlab/theme-dark-extension": ^4.3.1 - "@jupyterlab/theme-light-extension": ^4.3.1 - "@jupyterlab/toc-extension": ^6.3.1 - "@jupyterlab/tooltip-extension": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/translation-extension": ^4.3.1 - "@jupyterlab/ui-components-extension": ^4.3.1 + "@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 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.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/cells": ^4.3.1 - "@jupyterlab/codemirror": ^4.3.1 - "@jupyterlab/completer": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/theme-light-extension": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1 - "@jupyterlab/codemirror": ^4.3.1 - "@jupyterlab/console": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/theme-light-extension": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 + "@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 "@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.1 - "@jupyterlab/application-extension": ^4.3.1 - "@jupyterlab/apputils-extension": ^4.3.1 - "@jupyterlab/builder": ^4.3.1 - "@jupyterlab/celltags-extension": ^4.3.1 - "@jupyterlab/codemirror-extension": ^4.3.1 - "@jupyterlab/completer-extension": ^4.3.1 - "@jupyterlab/console-extension": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/csvviewer-extension": ^4.3.1 - "@jupyterlab/debugger-extension": ^4.3.1 - "@jupyterlab/docmanager-extension": ^4.3.1 - "@jupyterlab/documentsearch-extension": ^4.3.1 - "@jupyterlab/extensionmanager-extension": ^4.3.1 - "@jupyterlab/filebrowser-extension": ^4.3.1 - "@jupyterlab/fileeditor-extension": ^4.3.1 - "@jupyterlab/help-extension": ^4.3.1 - "@jupyterlab/htmlviewer-extension": ^4.3.1 - "@jupyterlab/hub-extension": ^4.3.1 - "@jupyterlab/imageviewer-extension": ^4.3.1 - "@jupyterlab/inspector-extension": ^4.3.1 - "@jupyterlab/javascript-extension": ^4.3.1 - "@jupyterlab/json-extension": ^4.3.1 - "@jupyterlab/launcher-extension": ^4.3.1 - "@jupyterlab/logconsole-extension": ^4.3.1 - "@jupyterlab/lsp-extension": ^4.3.1 - "@jupyterlab/mainmenu-extension": ^4.3.1 - "@jupyterlab/mathjax-extension": ^4.3.1 - "@jupyterlab/metadataform-extension": ^4.3.1 - "@jupyterlab/notebook-extension": ^4.3.1 - "@jupyterlab/pdf-extension": ^4.3.1 - "@jupyterlab/rendermime-extension": ^4.3.1 - "@jupyterlab/settingeditor-extension": ^4.3.1 - "@jupyterlab/shortcuts-extension": ^5.1.1 - "@jupyterlab/statusbar-extension": ^4.3.1 - "@jupyterlab/theme-light-extension": ^4.3.1 - "@jupyterlab/toc-extension": ^6.3.1 - "@jupyterlab/tooltip-extension": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/translation-extension": ^4.3.1 - "@jupyterlab/ui-components-extension": ^4.3.1 - "@jupyterlab/vega5-extension": ^4.3.1 + "@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 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.1 - "@jupyterlab/builder": ^4.3.1 - "@jupyterlab/example-federated-middle": ^3.2.1 - "@jupyterlab/markdownviewer-extension": ^4.3.1 + "@jupyterlab/application": ^4.3.2 + "@jupyterlab/builder": ^4.3.2 + "@jupyterlab/example-federated-middle": ^3.2.2 + "@jupyterlab/markdownviewer-extension": ^4.3.2 "@lumino/widgets": ^2.5.0 rimraf: ~5.0.5 languageName: unknown linkType: soft -"@jupyterlab/example-federated-middle@^3.2.1, @jupyterlab/example-federated-middle@workspace:examples/federated/middle_package": +"@jupyterlab/example-federated-middle@^3.2.2, @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.1 + "@jupyterlab/builder": ^4.3.2 "@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.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/codemirror": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docmanager": ^4.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/filebrowser": ^4.3.1 - "@jupyterlab/fileeditor": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/theme-light-extension": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/codemirror": ^4.3.1 - "@jupyterlab/completer": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docmanager": ^4.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/documentsearch": ^4.3.1 - "@jupyterlab/markedparser-extension": ^4.3.1 - "@jupyterlab/mathjax-extension": ^4.3.1 - "@jupyterlab/notebook": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/theme-light-extension": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1 - "@jupyterlab/services": ^7.3.1 + "@jupyterlab/coreutils": ^6.3.2 + "@jupyterlab/services": ^7.3.2 "@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.1 - "@jupyterlab/outputarea": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/services": ^7.3.1 + "@jupyterlab/coreutils": ^6.3.2 + "@jupyterlab/outputarea": ^4.3.2 + "@jupyterlab/rendermime": ^4.3.2 + "@jupyterlab/services": ^7.3.2 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.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/theme-light-extension": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/terminal": ^4.3.1 - "@jupyterlab/theme-light-extension": ^4.3.1 + "@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 "@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.1, @jupyterlab/extensionmanager-extension@workspace:packages/extensionmanager-extension, @jupyterlab/extensionmanager-extension@~4.3.1": +"@jupyterlab/extensionmanager-extension@^4.3.2, @jupyterlab/extensionmanager-extension@workspace:packages/extensionmanager-extension, @jupyterlab/extensionmanager-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/extensionmanager-extension@workspace:packages/extensionmanager-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/extensionmanager": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/extensionmanager@^4.3.1, @jupyterlab/extensionmanager@workspace:packages/extensionmanager": +"@jupyterlab/extensionmanager@^4.3.2, @jupyterlab/extensionmanager@workspace:packages/extensionmanager": version: 0.0.0-use.local resolution: "@jupyterlab/extensionmanager@workspace:packages/extensionmanager" dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/filebrowser-extension@workspace:packages/filebrowser-extension, @jupyterlab/filebrowser-extension@~4.3.1": +"@jupyterlab/filebrowser-extension@^4.3.2, @jupyterlab/filebrowser-extension@workspace:packages/filebrowser-extension, @jupyterlab/filebrowser-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/filebrowser-extension@workspace:packages/filebrowser-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docmanager": ^4.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/filebrowser": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/statusbar": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/filebrowser@workspace:packages/filebrowser": +"@jupyterlab/filebrowser@^4.3.2, @jupyterlab/filebrowser@workspace:packages/filebrowser": version: 0.0.0-use.local resolution: "@jupyterlab/filebrowser@workspace:packages/filebrowser" dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docmanager": ^4.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/statusbar": ^4.3.1 - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/fileeditor-extension@workspace:packages/fileeditor-extension, @jupyterlab/fileeditor-extension@~4.3.1": +"@jupyterlab/fileeditor-extension@^4.3.2, @jupyterlab/fileeditor-extension@workspace:packages/fileeditor-extension, @jupyterlab/fileeditor-extension@~4.3.2": 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.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/codemirror": ^4.3.1 - "@jupyterlab/completer": ^4.3.1 - "@jupyterlab/console": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/documentsearch": ^4.3.1 - "@jupyterlab/filebrowser": ^4.3.1 - "@jupyterlab/fileeditor": ^4.3.1 - "@jupyterlab/launcher": ^4.3.1 - "@jupyterlab/lsp": ^4.3.1 - "@jupyterlab/mainmenu": ^4.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/statusbar": ^4.3.1 - "@jupyterlab/toc": ^6.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/fileeditor@workspace:packages/fileeditor": +"@jupyterlab/fileeditor@^4.3.2, @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.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/codemirror": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/documentsearch": ^4.3.1 - "@jupyterlab/lsp": ^4.3.1 - "@jupyterlab/statusbar": ^4.3.1 - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/toc": ^6.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/builder": ^4.3.1 - "@jupyterlab/cells": ^4.3.1 - "@jupyterlab/debugger": ^4.3.1 - "@jupyterlab/docmanager": ^4.3.1 - "@jupyterlab/nbformat": ^4.3.1 - "@jupyterlab/notebook": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 + "@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 "@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.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/debugger": ^4.3.1 - "@jupyterlab/docmanager": ^4.3.1 - "@jupyterlab/nbformat": ^4.3.1 - "@jupyterlab/notebook": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/settingregistry": ^4.3.1 + "@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 "@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.1, @jupyterlab/help-extension@workspace:packages/help-extension, @jupyterlab/help-extension@~4.3.1": +"@jupyterlab/help-extension@^4.3.2, @jupyterlab/help-extension@workspace:packages/help-extension, @jupyterlab/help-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/help-extension@workspace:packages/help-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/mainmenu": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/htmlviewer-extension@workspace:packages/htmlviewer-extension, @jupyterlab/htmlviewer-extension@~4.3.1": +"@jupyterlab/htmlviewer-extension@^4.3.2, @jupyterlab/htmlviewer-extension@workspace:packages/htmlviewer-extension, @jupyterlab/htmlviewer-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/htmlviewer-extension@workspace:packages/htmlviewer-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/htmlviewer": ^4.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/htmlviewer@^4.3.1, @jupyterlab/htmlviewer@workspace:packages/htmlviewer": +"@jupyterlab/htmlviewer@^4.3.2, @jupyterlab/htmlviewer@workspace:packages/htmlviewer": version: 0.0.0-use.local resolution: "@jupyterlab/htmlviewer@workspace:packages/htmlviewer" dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/hub-extension@workspace:packages/hub-extension, @jupyterlab/hub-extension@~4.3.1": +"@jupyterlab/hub-extension@^4.3.2, @jupyterlab/hub-extension@workspace:packages/hub-extension, @jupyterlab/hub-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/hub-extension@workspace:packages/hub-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/translation": ^4.3.1 + "@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 "@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.1, @jupyterlab/imageviewer-extension@workspace:packages/imageviewer-extension, @jupyterlab/imageviewer-extension@~4.3.1": +"@jupyterlab/imageviewer-extension@^4.3.2, @jupyterlab/imageviewer-extension@workspace:packages/imageviewer-extension, @jupyterlab/imageviewer-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/imageviewer-extension@workspace:packages/imageviewer-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/imageviewer": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 + "@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 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/imageviewer@^4.3.1, @jupyterlab/imageviewer@workspace:packages/imageviewer": +"@jupyterlab/imageviewer@^4.3.2, @jupyterlab/imageviewer@workspace:packages/imageviewer": version: 0.0.0-use.local resolution: "@jupyterlab/imageviewer@workspace:packages/imageviewer" dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/testing": ^4.3.1 + "@jupyterlab/apputils": ^4.4.2 + "@jupyterlab/coreutils": ^6.3.2 + "@jupyterlab/docregistry": ^4.3.2 + "@jupyterlab/testing": ^4.3.2 "@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.1, @jupyterlab/inspector-extension@workspace:packages/inspector-extension, @jupyterlab/inspector-extension@~4.3.1": +"@jupyterlab/inspector-extension@^4.3.2, @jupyterlab/inspector-extension@workspace:packages/inspector-extension, @jupyterlab/inspector-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/inspector-extension@workspace:packages/inspector-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/console": ^4.3.1 - "@jupyterlab/inspector": ^4.3.1 - "@jupyterlab/launcher": ^4.3.1 - "@jupyterlab/notebook": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@lumino/widgets": ^2.5.0 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/inspector@^4.3.1, @jupyterlab/inspector@workspace:packages/inspector": +"@jupyterlab/inspector@^4.3.2, @jupyterlab/inspector@workspace:packages/inspector": version: 0.0.0-use.local resolution: "@jupyterlab/inspector@workspace:packages/inspector" dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 + "@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 "@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.1, @jupyterlab/javascript-extension@workspace:packages/javascript-extension, @jupyterlab/javascript-extension@~4.3.1": +"@jupyterlab/javascript-extension@^4.3.2, @jupyterlab/javascript-extension@workspace:packages/javascript-extension, @jupyterlab/javascript-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/javascript-extension@workspace:packages/javascript-extension" dependencies: - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 + "@jupyterlab/rendermime": ^4.3.2 + "@jupyterlab/rendermime-interfaces": ^3.11.2 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/json-extension@^4.3.1, @jupyterlab/json-extension@workspace:packages/json-extension, @jupyterlab/json-extension@~4.3.1": +"@jupyterlab/json-extension@^4.3.2, @jupyterlab/json-extension@workspace:packages/json-extension, @jupyterlab/json-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/json-extension@workspace:packages/json-extension" dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/codemirror": ^4.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/launcher-extension@workspace:packages/launcher-extension, @jupyterlab/launcher-extension@~4.3.1": +"@jupyterlab/launcher-extension@^4.3.2, @jupyterlab/launcher-extension@workspace:packages/launcher-extension, @jupyterlab/launcher-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/launcher-extension@workspace:packages/launcher-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/filebrowser": ^4.3.1 - "@jupyterlab/launcher": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/launcher@workspace:packages/launcher": +"@jupyterlab/launcher@^4.3.2, @jupyterlab/launcher@workspace:packages/launcher": version: 0.0.0-use.local resolution: "@jupyterlab/launcher@workspace:packages/launcher" dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@jupyterlab/apputils": ^4.4.2 + "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/ui-components": ^4.3.2 "@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.1, @jupyterlab/logconsole-extension@workspace:packages/logconsole-extension, @jupyterlab/logconsole-extension@~4.3.1": +"@jupyterlab/logconsole-extension@^4.3.2, @jupyterlab/logconsole-extension@workspace:packages/logconsole-extension, @jupyterlab/logconsole-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/logconsole-extension@workspace:packages/logconsole-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/logconsole": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/statusbar": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/logconsole@workspace:packages/logconsole": +"@jupyterlab/logconsole@^4.3.2, @jupyterlab/logconsole@workspace:packages/logconsole": version: 0.0.0-use.local resolution: "@jupyterlab/logconsole@workspace:packages/logconsole" dependencies: - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/nbformat": ^4.3.1 - "@jupyterlab/outputarea": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 + "@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 "@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.1, @jupyterlab/lsp-extension@workspace:packages/lsp-extension, @jupyterlab/lsp-extension@~4.3.1": +"@jupyterlab/lsp-extension@^4.3.2, @jupyterlab/lsp-extension@workspace:packages/lsp-extension, @jupyterlab/lsp-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/lsp-extension@workspace:packages/lsp-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/lsp": ^4.3.1 - "@jupyterlab/running": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/lsp@workspace:packages/lsp": +"@jupyterlab/lsp@^4.3.2, @jupyterlab/lsp@workspace:packages/lsp": version: 0.0.0-use.local resolution: "@jupyterlab/lsp@workspace:packages/lsp" dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/codemirror": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 + "@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 "@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.1, @jupyterlab/mainmenu-extension@workspace:packages/mainmenu-extension, @jupyterlab/mainmenu-extension@~4.3.1": +"@jupyterlab/mainmenu-extension@^4.3.2, @jupyterlab/mainmenu-extension@workspace:packages/mainmenu-extension, @jupyterlab/mainmenu-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/mainmenu-extension@workspace:packages/mainmenu-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docmanager": ^4.3.1 - "@jupyterlab/filebrowser": ^4.3.1 - "@jupyterlab/mainmenu": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/mainmenu@workspace:packages/mainmenu": +"@jupyterlab/mainmenu@^4.3.2, @jupyterlab/mainmenu@workspace:packages/mainmenu": version: 0.0.0-use.local resolution: "@jupyterlab/mainmenu@workspace:packages/mainmenu" dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@jupyterlab/apputils": ^4.4.2 + "@jupyterlab/testing": ^4.3.2 + "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/ui-components": ^4.3.2 "@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.1, @jupyterlab/markdownviewer-extension@workspace:packages/markdownviewer-extension, @jupyterlab/markdownviewer-extension@~4.3.1": +"@jupyterlab/markdownviewer-extension@^4.3.2, @jupyterlab/markdownviewer-extension@workspace:packages/markdownviewer-extension, @jupyterlab/markdownviewer-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/markdownviewer-extension@workspace:packages/markdownviewer-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/markdownviewer": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/toc": ^6.3.1 - "@jupyterlab/translation": ^4.3.1 + "@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 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/markdownviewer@^4.3.1, @jupyterlab/markdownviewer@workspace:packages/markdownviewer": +"@jupyterlab/markdownviewer@^4.3.2, @jupyterlab/markdownviewer@workspace:packages/markdownviewer": version: 0.0.0-use.local resolution: "@jupyterlab/markdownviewer@workspace:packages/markdownviewer" dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/toc": ^6.3.1 - "@jupyterlab/translation": ^4.3.1 + "@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 "@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.1, @jupyterlab/markedparser-extension@workspace:packages/markedparser-extension, @jupyterlab/markedparser-extension@~4.3.1": +"@jupyterlab/markedparser-extension@^4.3.2, @jupyterlab/markedparser-extension@workspace:packages/markedparser-extension, @jupyterlab/markedparser-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/markedparser-extension@workspace:packages/markedparser-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/codemirror": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/mermaid": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 + "@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 "@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.1, @jupyterlab/mathjax-extension@workspace:packages/mathjax-extension, @jupyterlab/mathjax-extension@~4.3.1": +"@jupyterlab/mathjax-extension@^4.3.2, @jupyterlab/mathjax-extension@workspace:packages/mathjax-extension, @jupyterlab/mathjax-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/mathjax-extension@workspace:packages/mathjax-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 + "@jupyterlab/application": ^4.3.2 + "@jupyterlab/rendermime": ^4.3.2 "@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.1, @jupyterlab/mermaid-extension@workspace:packages/mermaid-extension, @jupyterlab/mermaid-extension@~4.3.1": +"@jupyterlab/mermaid-extension@^4.3.2, @jupyterlab/mermaid-extension@workspace:packages/mermaid-extension, @jupyterlab/mermaid-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/mermaid-extension@workspace:packages/mermaid-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/mermaid": ^4.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 - "@jupyterlab/translation": ^4.3.1 + "@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 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/mermaid@^4.3.1, @jupyterlab/mermaid@workspace:packages/mermaid": +"@jupyterlab/mermaid@^4.3.2, @jupyterlab/mermaid@workspace:packages/mermaid": version: 0.0.0-use.local resolution: "@jupyterlab/mermaid@workspace:packages/mermaid" dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 + "@jupyterlab/apputils": ^4.4.2 + "@jupyterlab/coreutils": ^6.3.2 + "@jupyterlab/rendermime-interfaces": ^3.11.2 "@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.1, @jupyterlab/metadataform-extension@workspace:packages/metadataform-extension, @jupyterlab/metadataform-extension@~4.3.1": +"@jupyterlab/metadataform-extension@^4.3.2, @jupyterlab/metadataform-extension@workspace:packages/metadataform-extension, @jupyterlab/metadataform-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/metadataform-extension@workspace:packages/metadataform-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/metadataform": ^4.3.1 - "@jupyterlab/notebook": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@lumino/coreutils": ^2.2.0 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/metadataform@^4.3.1, @jupyterlab/metadataform@workspace:packages/metadataform": +"@jupyterlab/metadataform@^4.3.2, @jupyterlab/metadataform@workspace:packages/metadataform": version: 0.0.0-use.local resolution: "@jupyterlab/metadataform@workspace:packages/metadataform" dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/nbformat": ^4.3.1 - "@jupyterlab/notebook": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1 - "@jupyterlab/application-extension": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/apputils-extension": ^4.3.1 - "@jupyterlab/attachments": ^4.3.1 - "@jupyterlab/cell-toolbar": ^4.3.1 - "@jupyterlab/cell-toolbar-extension": ^4.3.1 - "@jupyterlab/cells": ^4.3.1 - "@jupyterlab/celltags-extension": ^4.3.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/codemirror": ^4.3.1 - "@jupyterlab/codemirror-extension": ^4.3.1 - "@jupyterlab/completer": ^4.3.1 - "@jupyterlab/completer-extension": ^4.3.1 - "@jupyterlab/console": ^4.3.1 - "@jupyterlab/console-extension": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/csvviewer": ^4.3.1 - "@jupyterlab/csvviewer-extension": ^4.3.1 - "@jupyterlab/debugger": ^4.3.1 - "@jupyterlab/debugger-extension": ^4.3.1 - "@jupyterlab/docmanager": ^4.3.1 - "@jupyterlab/docmanager-extension": ^4.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/documentsearch": ^4.3.1 - "@jupyterlab/documentsearch-extension": ^4.3.1 - "@jupyterlab/extensionmanager": ^4.3.1 - "@jupyterlab/extensionmanager-extension": ^4.3.1 - "@jupyterlab/filebrowser": ^4.3.1 - "@jupyterlab/filebrowser-extension": ^4.3.1 - "@jupyterlab/fileeditor": ^4.3.1 - "@jupyterlab/fileeditor-extension": ^4.3.1 - "@jupyterlab/help-extension": ^4.3.1 - "@jupyterlab/htmlviewer": ^4.3.1 - "@jupyterlab/htmlviewer-extension": ^4.3.1 - "@jupyterlab/hub-extension": ^4.3.1 - "@jupyterlab/imageviewer": ^4.3.1 - "@jupyterlab/imageviewer-extension": ^4.3.1 - "@jupyterlab/inspector": ^4.3.1 - "@jupyterlab/inspector-extension": ^4.3.1 - "@jupyterlab/javascript-extension": ^4.3.1 - "@jupyterlab/json-extension": ^4.3.1 - "@jupyterlab/launcher": ^4.3.1 - "@jupyterlab/launcher-extension": ^4.3.1 - "@jupyterlab/logconsole": ^4.3.1 - "@jupyterlab/logconsole-extension": ^4.3.1 - "@jupyterlab/lsp": ^4.3.1 - "@jupyterlab/lsp-extension": ^4.3.1 - "@jupyterlab/mainmenu": ^4.3.1 - "@jupyterlab/mainmenu-extension": ^4.3.1 - "@jupyterlab/markdownviewer": ^4.3.1 - "@jupyterlab/markdownviewer-extension": ^4.3.1 - "@jupyterlab/markedparser-extension": ^4.3.1 - "@jupyterlab/mathjax-extension": ^4.3.1 - "@jupyterlab/mermaid": ^4.3.1 - "@jupyterlab/mermaid-extension": ^4.3.1 - "@jupyterlab/metadataform": ^4.3.1 - "@jupyterlab/metadataform-extension": ^4.3.1 - "@jupyterlab/nbconvert-css": ^4.3.1 - "@jupyterlab/nbformat": ^4.3.1 - "@jupyterlab/notebook": ^4.3.1 - "@jupyterlab/notebook-extension": ^4.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/outputarea": ^4.3.1 - "@jupyterlab/pdf-extension": ^4.3.1 - "@jupyterlab/pluginmanager": ^4.3.1 - "@jupyterlab/pluginmanager-extension": ^4.3.1 - "@jupyterlab/property-inspector": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/rendermime-extension": ^4.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 - "@jupyterlab/running": ^4.3.1 - "@jupyterlab/running-extension": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/settingeditor": ^4.3.1 - "@jupyterlab/settingeditor-extension": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/shortcuts-extension": ^5.1.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/statusbar": ^4.3.1 - "@jupyterlab/statusbar-extension": ^4.3.1 - "@jupyterlab/terminal": ^4.3.1 - "@jupyterlab/terminal-extension": ^4.3.1 - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/theme-dark-extension": ^4.3.1 - "@jupyterlab/theme-dark-high-contrast-extension": ^4.3.1 - "@jupyterlab/theme-light-extension": ^4.3.1 - "@jupyterlab/toc": ^6.3.1 - "@jupyterlab/toc-extension": ^6.3.1 - "@jupyterlab/tooltip": ^4.3.1 - "@jupyterlab/tooltip-extension": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/translation-extension": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 - "@jupyterlab/ui-components-extension": ^4.3.1 - "@jupyterlab/vega5-extension": ^4.3.1 - "@jupyterlab/workspaces": ^4.3.1 - "@jupyterlab/workspaces-extension": ^4.3.1 + "@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 "@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.1 - "@jupyterlab/mock-token": ^4.3.1 + "@jupyterlab/builder": ^4.3.2 + "@jupyterlab/mock-token": ^4.3.2 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.1 - "@jupyterlab/launcher": ^4.3.1 + "@jupyterlab/builder": ^4.3.2 + "@jupyterlab/launcher": ^4.3.2 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.1 - "@jupyterlab/mock-token": ^4.3.1 + "@jupyterlab/builder": ^4.3.2 + "@jupyterlab/mock-token": ^4.3.2 languageName: unknown linkType: soft -"@jupyterlab/mock-token@^4.3.1, @jupyterlab/mock-token@workspace:jupyterlab/tests/mock_packages/interop/token": +"@jupyterlab/mock-token@^4.3.2, @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.1, @jupyterlab/nbconvert-css@workspace:packages/nbconvert-css": +"@jupyterlab/nbconvert-css@^4.3.2, @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.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/cells": ^4.3.1 - "@jupyterlab/codemirror": ^4.3.1 - "@jupyterlab/notebook": ^4.3.1 - "@jupyterlab/outputarea": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 + "@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 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.1, @jupyterlab/nbformat@workspace:packages/nbformat": +"@jupyterlab/nbformat@^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@^4.3.2, @jupyterlab/nbformat@workspace:packages/nbformat": version: 0.0.0-use.local resolution: "@jupyterlab/nbformat@workspace:packages/nbformat" dependencies: - "@jupyterlab/testing": ^4.3.1 + "@jupyterlab/testing": ^4.3.2 "@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.1, @jupyterlab/notebook-extension@workspace:packages/notebook-extension, @jupyterlab/notebook-extension@~4.3.1": +"@jupyterlab/notebook-extension@^4.3.2, @jupyterlab/notebook-extension@workspace:packages/notebook-extension, @jupyterlab/notebook-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/notebook-extension@workspace:packages/notebook-extension" dependencies: "@jupyter/ydoc": ^3.0.0 - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/cells": ^4.3.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/codemirror": ^4.3.1 - "@jupyterlab/completer": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docmanager": ^4.3.1 - "@jupyterlab/docmanager-extension": ^4.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/documentsearch": ^4.3.1 - "@jupyterlab/filebrowser": ^4.3.1 - "@jupyterlab/launcher": ^4.3.1 - "@jupyterlab/logconsole": ^4.3.1 - "@jupyterlab/lsp": ^4.3.1 - "@jupyterlab/mainmenu": ^4.3.1 - "@jupyterlab/metadataform": ^4.3.1 - "@jupyterlab/nbformat": ^4.3.1 - "@jupyterlab/notebook": ^4.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/property-inspector": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/statusbar": ^4.3.1 - "@jupyterlab/toc": ^6.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/notebook@workspace:packages/notebook": +"@jupyterlab/notebook@^4.3.2, @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.1 - "@jupyterlab/cells": ^4.3.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/codemirror": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/documentsearch": ^4.3.1 - "@jupyterlab/lsp": ^4.3.1 - "@jupyterlab/nbformat": ^4.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/statusbar": ^4.3.1 - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/toc": ^6.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/observables@workspace:packages/observables": +"@jupyterlab/observables@^5.3.2, @jupyterlab/observables@workspace:packages/observables": version: 0.0.0-use.local resolution: "@jupyterlab/observables@workspace:packages/observables" dependencies: - "@jupyterlab/testing": ^4.3.1 + "@jupyterlab/testing": ^4.3.2 "@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.1, @jupyterlab/outputarea@workspace:packages/outputarea": +"@jupyterlab/outputarea@^4.3.2, @jupyterlab/outputarea@workspace:packages/outputarea": version: 0.0.0-use.local resolution: "@jupyterlab/outputarea@workspace:packages/outputarea" dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/nbformat": ^4.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 + "@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 "@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.1, @jupyterlab/pdf-extension@workspace:packages/pdf-extension, @jupyterlab/pdf-extension@~4.3.1": +"@jupyterlab/pdf-extension@^4.3.2, @jupyterlab/pdf-extension@workspace:packages/pdf-extension, @jupyterlab/pdf-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/pdf-extension@workspace:packages/pdf-extension" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.11.1 + "@jupyterlab/rendermime-interfaces": ^3.11.2 "@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.1, @jupyterlab/pluginmanager-extension@workspace:packages/pluginmanager-extension, @jupyterlab/pluginmanager-extension@~4.3.1": +"@jupyterlab/pluginmanager-extension@^4.3.2, @jupyterlab/pluginmanager-extension@workspace:packages/pluginmanager-extension, @jupyterlab/pluginmanager-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/pluginmanager-extension@workspace:packages/pluginmanager-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/pluginmanager": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@lumino/coreutils": ^2.2.0 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/pluginmanager@^4.3.1, @jupyterlab/pluginmanager@workspace:packages/pluginmanager": +"@jupyterlab/pluginmanager@^4.3.2, @jupyterlab/pluginmanager@workspace:packages/pluginmanager": version: 0.0.0-use.local resolution: "@jupyterlab/pluginmanager@workspace:packages/pluginmanager" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/property-inspector@workspace:packages/property-inspector": +"@jupyterlab/property-inspector@^4.3.2, @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.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@jupyterlab/application": ^4.3.2 + "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/ui-components": ^4.3.2 "@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.1, @jupyterlab/rendermime-extension@workspace:packages/rendermime-extension, @jupyterlab/rendermime-extension@~4.3.1": +"@jupyterlab/rendermime-extension@^4.3.2, @jupyterlab/rendermime-extension@workspace:packages/rendermime-extension, @jupyterlab/rendermime-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/rendermime-extension@workspace:packages/rendermime-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/docmanager": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 + "@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 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/rendermime-interfaces@^3.11.1, @jupyterlab/rendermime-interfaces@workspace:packages/rendermime-interfaces": +"@jupyterlab/rendermime-interfaces@^3.11.2, @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.1, @jupyterlab/rendermime@workspace:packages/rendermime": +"@jupyterlab/rendermime@^4.3.2, @jupyterlab/rendermime@workspace:packages/rendermime": version: 0.0.0-use.local resolution: "@jupyterlab/rendermime@workspace:packages/rendermime" dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/nbformat": ^4.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 + "@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 "@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.1, @jupyterlab/running-extension@workspace:packages/running-extension, @jupyterlab/running-extension@~4.3.1": +"@jupyterlab/running-extension@^4.3.2, @jupyterlab/running-extension@workspace:packages/running-extension, @jupyterlab/running-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/running-extension@workspace:packages/running-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docmanager": ^4.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 - "@jupyterlab/running": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/running@workspace:packages/running": +"@jupyterlab/running@^4.3.2, @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.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@jupyterlab/apputils": ^4.4.2 + "@jupyterlab/statedb": ^4.3.2 + "@jupyterlab/translation": ^4.3.2 + "@jupyterlab/ui-components": ^4.3.2 "@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.1, @jupyterlab/services@workspace:packages/services": +"@jupyterlab/services@^7.3.2, @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.1 - "@jupyterlab/nbformat": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/testing": ^4.3.1 + "@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 "@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.1, @jupyterlab/settingeditor-extension@workspace:packages/settingeditor-extension, @jupyterlab/settingeditor-extension@~4.3.1": +"@jupyterlab/settingeditor-extension@^4.3.2, @jupyterlab/settingeditor-extension@workspace:packages/settingeditor-extension, @jupyterlab/settingeditor-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/settingeditor-extension@workspace:packages/settingeditor-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/pluginmanager": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/settingeditor": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@lumino/disposable": ^2.1.3 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/settingeditor@^4.3.1, @jupyterlab/settingeditor@workspace:packages/settingeditor": +"@jupyterlab/settingeditor@^4.3.2, @jupyterlab/settingeditor@workspace:packages/settingeditor": version: 0.0.0-use.local resolution: "@jupyterlab/settingeditor@workspace:packages/settingeditor" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/inspector": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/settingregistry@workspace:packages/settingregistry": +"@jupyterlab/settingregistry@^4.3.2, @jupyterlab/settingregistry@workspace:packages/settingregistry": version: 0.0.0-use.local resolution: "@jupyterlab/settingregistry@workspace:packages/settingregistry" dependencies: - "@jupyterlab/nbformat": ^4.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/testing": ^4.3.1 + "@jupyterlab/nbformat": ^4.3.2 + "@jupyterlab/statedb": ^4.3.2 + "@jupyterlab/testing": ^4.3.2 "@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.1, @jupyterlab/shortcuts-extension@workspace:packages/shortcuts-extension, @jupyterlab/shortcuts-extension@~5.1.1": +"@jupyterlab/shortcuts-extension@^5.1.2, @jupyterlab/shortcuts-extension@workspace:packages/shortcuts-extension, @jupyterlab/shortcuts-extension@~5.1.2": version: 0.0.0-use.local resolution: "@jupyterlab/shortcuts-extension@workspace:packages/shortcuts-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/statedb@workspace:packages/statedb": +"@jupyterlab/statedb@^4.3.2, @jupyterlab/statedb@workspace:packages/statedb": version: 0.0.0-use.local resolution: "@jupyterlab/statedb@workspace:packages/statedb" dependencies: - "@jupyterlab/testing": ^4.3.1 + "@jupyterlab/testing": ^4.3.2 "@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.1, @jupyterlab/statusbar-extension@workspace:packages/statusbar-extension, @jupyterlab/statusbar-extension@~4.3.1": +"@jupyterlab/statusbar-extension@^4.3.2, @jupyterlab/statusbar-extension@workspace:packages/statusbar-extension, @jupyterlab/statusbar-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/statusbar-extension@workspace:packages/statusbar-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/statusbar": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 + "@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 "@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.1, @jupyterlab/statusbar@workspace:packages/statusbar": +"@jupyterlab/statusbar@^4.3.2, @jupyterlab/statusbar@workspace:packages/statusbar": version: 0.0.0-use.local resolution: "@jupyterlab/statusbar@workspace:packages/statusbar" dependencies: - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@jupyterlab/testing": ^4.3.2 + "@jupyterlab/ui-components": ^4.3.2 "@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.1 + "@jupyterlab/testing": ^4.3.2 "@types/jest": ^29.2.0 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/terminal-extension@^4.3.1, @jupyterlab/terminal-extension@workspace:packages/terminal-extension, @jupyterlab/terminal-extension@~4.3.1": +"@jupyterlab/terminal-extension@^4.3.2, @jupyterlab/terminal-extension@workspace:packages/terminal-extension, @jupyterlab/terminal-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/terminal-extension@workspace:packages/terminal-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/launcher": ^4.3.1 - "@jupyterlab/mainmenu": ^4.3.1 - "@jupyterlab/running": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/terminal": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/terminal@workspace:packages/terminal": +"@jupyterlab/terminal@^4.3.2, @jupyterlab/terminal@workspace:packages/terminal": version: 0.0.0-use.local resolution: "@jupyterlab/terminal@workspace:packages/terminal" dependencies: - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 + "@jupyterlab/apputils": ^4.4.2 + "@jupyterlab/services": ^7.3.2 + "@jupyterlab/testing": ^4.3.2 + "@jupyterlab/translation": ^4.3.2 "@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.1, @jupyterlab/testing@workspace:packages/testing": +"@jupyterlab/testing@^4.3.2, @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.1 + "@jupyterlab/coreutils": ^6.3.2 "@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.1, @jupyterlab/testutils@workspace:testutils": +"@jupyterlab/testutils@^4.3.2, @jupyterlab/testutils@workspace:testutils": version: 0.0.0-use.local resolution: "@jupyterlab/testutils@workspace:testutils" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/notebook": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/testing": ^4.3.1 + "@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 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/theme-dark-extension@^4.3.1, @jupyterlab/theme-dark-extension@workspace:packages/theme-dark-extension, @jupyterlab/theme-dark-extension@~4.3.1": +"@jupyterlab/theme-dark-extension@^4.3.2, @jupyterlab/theme-dark-extension@workspace:packages/theme-dark-extension, @jupyterlab/theme-dark-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/theme-dark-extension@workspace:packages/theme-dark-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/translation": ^4.3.1 + "@jupyterlab/application": ^4.3.2 + "@jupyterlab/apputils": ^4.4.2 + "@jupyterlab/translation": ^4.3.2 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/theme-dark-high-contrast-extension@^4.3.1, @jupyterlab/theme-dark-high-contrast-extension@workspace:packages/theme-dark-high-contrast-extension, @jupyterlab/theme-dark-high-contrast-extension@~4.3.1": +"@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": 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.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/translation": ^4.3.1 + "@jupyterlab/application": ^4.3.2 + "@jupyterlab/apputils": ^4.4.2 + "@jupyterlab/translation": ^4.3.2 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/theme-light-extension@^4.3.1, @jupyterlab/theme-light-extension@workspace:packages/theme-light-extension, @jupyterlab/theme-light-extension@~4.3.1": +"@jupyterlab/theme-light-extension@^4.3.2, @jupyterlab/theme-light-extension@workspace:packages/theme-light-extension, @jupyterlab/theme-light-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/theme-light-extension@workspace:packages/theme-light-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/translation": ^4.3.1 + "@jupyterlab/application": ^4.3.2 + "@jupyterlab/apputils": ^4.4.2 + "@jupyterlab/translation": ^4.3.2 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/toc-extension@^6.3.1, @jupyterlab/toc-extension@workspace:packages/toc-extension, @jupyterlab/toc-extension@~6.3.1": +"@jupyterlab/toc-extension@^6.3.2, @jupyterlab/toc-extension@workspace:packages/toc-extension, @jupyterlab/toc-extension@~6.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/toc-extension@workspace:packages/toc-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/toc": ^6.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/toc@^6.3.1, @jupyterlab/toc@workspace:packages/toc": +"@jupyterlab/toc@^6.3.2, @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.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/docregistry": ^4.3.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@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 "@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.1, @jupyterlab/tooltip-extension@workspace:packages/tooltip-extension, @jupyterlab/tooltip-extension@~4.3.1": +"@jupyterlab/tooltip-extension@^4.3.2, @jupyterlab/tooltip-extension@workspace:packages/tooltip-extension, @jupyterlab/tooltip-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/tooltip-extension@workspace:packages/tooltip-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/console": ^4.3.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/fileeditor": ^4.3.1 - "@jupyterlab/notebook": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/tooltip": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 + "@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 "@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.1, @jupyterlab/tooltip@workspace:packages/tooltip": +"@jupyterlab/tooltip@^4.3.2, @jupyterlab/tooltip@workspace:packages/tooltip": version: 0.0.0-use.local resolution: "@jupyterlab/tooltip@workspace:packages/tooltip" dependencies: - "@jupyterlab/codeeditor": ^4.3.1 - "@jupyterlab/rendermime": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@jupyterlab/codeeditor": ^4.3.2 + "@jupyterlab/rendermime": ^4.3.2 + "@jupyterlab/services": ^7.3.2 + "@jupyterlab/ui-components": ^4.3.2 "@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.1, @jupyterlab/translation-extension@workspace:packages/translation-extension, @jupyterlab/translation-extension@~4.3.1": +"@jupyterlab/translation-extension@^4.3.2, @jupyterlab/translation-extension@workspace:packages/translation-extension, @jupyterlab/translation-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/translation-extension@workspace:packages/translation-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/mainmenu": ^4.3.1 - "@jupyterlab/settingregistry": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 + "@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 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/translation@^4.3.1, @jupyterlab/translation@workspace:packages/translation": +"@jupyterlab/translation@^4.3.2, @jupyterlab/translation@workspace:packages/translation": version: 0.0.0-use.local resolution: "@jupyterlab/translation@workspace:packages/translation" dependencies: - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/testing": ^4.3.1 + "@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 "@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.1, @jupyterlab/ui-components-extension@workspace:packages/ui-components-extension, @jupyterlab/ui-components-extension@~4.3.1": +"@jupyterlab/ui-components-extension@^4.3.2, @jupyterlab/ui-components-extension@workspace:packages/ui-components-extension, @jupyterlab/ui-components-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/ui-components-extension@workspace:packages/ui-components-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 + "@jupyterlab/application": ^4.3.2 + "@jupyterlab/ui-components": ^4.3.2 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/ui-components@^4.3.1, @jupyterlab/ui-components@workspace:packages/ui-components": +"@jupyterlab/ui-components@^4.3.2, @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.1 - "@jupyterlab/observables": ^5.3.1 - "@jupyterlab/rendermime-interfaces": ^3.11.1 - "@jupyterlab/testing": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 + "@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 "@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.1, @jupyterlab/vega5-extension@workspace:packages/vega5-extension, @jupyterlab/vega5-extension@~4.3.1": +"@jupyterlab/vega5-extension@^4.3.2, @jupyterlab/vega5-extension@workspace:packages/vega5-extension, @jupyterlab/vega5-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/vega5-extension@workspace:packages/vega5-extension" dependencies: - "@jupyterlab/rendermime-interfaces": ^3.11.1 - "@jupyterlab/testutils": ^4.3.1 + "@jupyterlab/rendermime-interfaces": ^3.11.2 + "@jupyterlab/testutils": ^4.3.2 "@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.1, @jupyterlab/workspaces-extension@workspace:packages/workspaces-extension, @jupyterlab/workspaces-extension@~4.3.1": +"@jupyterlab/workspaces-extension@^4.3.2, @jupyterlab/workspaces-extension@workspace:packages/workspaces-extension, @jupyterlab/workspaces-extension@~4.3.2": version: 0.0.0-use.local resolution: "@jupyterlab/workspaces-extension@workspace:packages/workspaces-extension" dependencies: - "@jupyterlab/application": ^4.3.1 - "@jupyterlab/apputils": ^4.4.1 - "@jupyterlab/coreutils": ^6.3.1 - "@jupyterlab/filebrowser": ^4.3.1 - "@jupyterlab/running": ^4.3.1 - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/statedb": ^4.3.1 - "@jupyterlab/translation": ^4.3.1 - "@jupyterlab/ui-components": ^4.3.1 - "@jupyterlab/workspaces": ^4.3.1 + "@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 "@types/jest": ^29.2.0 rimraf: ~5.0.5 typescript: ~5.1.6 languageName: unknown linkType: soft -"@jupyterlab/workspaces@^4.3.1, @jupyterlab/workspaces@workspace:packages/workspaces": +"@jupyterlab/workspaces@^4.3.2, @jupyterlab/workspaces@workspace:packages/workspaces": version: 0.0.0-use.local resolution: "@jupyterlab/workspaces@workspace:packages/workspaces" dependencies: - "@jupyterlab/services": ^7.3.1 - "@jupyterlab/testing": ^4.3.1 + "@jupyterlab/services": ^7.3.2 + "@jupyterlab/testing": ^4.3.2 "@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.1 + "@jupyterlab/services": ^7.3.2 rimraf: ~5.0.5 ws: ^8.11.0 languageName: unknown