pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/www/py-jupyterlab
Module Name: pkgsrc
Committed By: adam
Date: Sat Jul 20 19:21:29 UTC 2024
Modified Files:
pkgsrc/www/py-jupyterlab: Makefile PLIST distinfo
Log Message:
py-jupyterlab: updated to 4.2.4
v4.2
Workspaces UI
It is now possible to switch and manage [workspaces](https://jupyterlab.readthedocs.io/en/stable/user/workspaces.html) from within JupyterLab.
<img alt="A context menu opened over the sidebar with workspaces list. The menu has options to manage the workspace over which it was opened - clone, rename, reset, delete, export, and import."
src="https://raw.githubusercontent.com/jupyterlab/jupyterlab/4.2.x/docs/source/getting_started/changelog_assets/4.2-workspaces-sidebar.png" class="jp-screenshot">
Recently opened/closed files
The [jupyterlab-recents](https://github.com/jupyterlab-contrib/jupyterlab-recents) extension was integrated into JupyterLab.
Users are now able to:
- re-open recently used files from the main menu:
<img alt="An 'Open Recent' sub-menu in the 'File' menu allowing to re-open recently used files"
src="https://raw.githubusercontent.com/jupyterlab/jupyterlab/4.2.x/docs/source/getting_started/changelog_assets/4.2-recent-submenu.png" class="jp-screenshot">
- re-open recently closed files from the sidebar:
<img alt="A new 'Recently Closed' section in the 'Running' sidebar"
src="https://raw.githubusercontent.com/jupyterlab/jupyterlab/4.2.x/docs/source/getting_started/changelog_assets/4.2-recent-sidebar.png" class="jp-screenshot">
- quickly jump to open tabs/recently closed files by using a new searchable modal dialog (press <kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>A</kbd> to open the dialog, or click on the \[↗\] icon in the
sidebar):
<img alt="A modal dialog for quickly jumping to open/closed files"
src="https://raw.githubusercontent.com/jupyterlab/jupyterlab/4.2.x/docs/source/getting_started/changelog_assets/4.2-recent-modal.png" class="jp-screenshot">
Full notebook windowing mode by default
Notebooks in the `full` windowing mode only render the visible cells, significantly improving the performance of the application. One limitation of `full` mode is that the search function in your
browser may produce false negatives; using the [JupyterLab search function](https://jupyterlab.readthedocs.io/en/stable/user/interface.html#searching) is recommended. To revert to the behaviour from
JupyterLab 4.1, go to Settings → Settings Editor → Notebook, scroll to "Windowing mode", and choose `defer`.
Improved Shortcuts Editor
Among the numerous improvements and bug fixes for the keyboard shortcuts editor:
- it is now possible to remove the default shortcuts,
- shortcuts are correctly sorted when using a language pack,
- shortcuts with different arguments are now correctly displayed as individual entries.
<img alt="A context menu opened over a keybinding in the Keyboard Shortcuts setting panel within the Settings widget"
src="https://raw.githubusercontent.com/jupyterlab/jupyterlab/4.2.x/docs/source/getting_started/changelog_assets/4.2-delete-shortcut.png" class="jp-screenshot">
Dark high contrast theme
A new theme, JupyterLab Dark High Contrast, which is intended to benefit users with the need for higher contrast, following the WCAG AAA accessibility standard for color contrast.
To select this theme, from the menu bar, choose Settings → Theme → JupyterLab Dark High Contrast. Please provide feedback and suggestions on further improvements to this theme.
<img alt="A dark high contrast theme" src="https://raw.githubusercontent.com/jupyterlab/jupyterlab/4.2.x/docs/source/getting_started/changelog_assets/4.2-dark-high-contrast.png" class="jp-screenshot">
Keyboard shortcuts improvements
Following feedback from users, implementation of certain shortcuts was moved from the CodeMirror editor to JupyterLab shortcut system, allowing for better integration:
- the shortcut for deleting a line was restored to <kbd>Ctrl</kbd>+<kbd>D</kbd> as in JupyterLab 3.x; the shortcut for extending (multi-cursor) selection was remapped to
<kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>D</kbd>. The <kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>K</kbd> shortcut can also be used for deleting lines for compatibility with other editors.
- the shortcuts for toggling line comments (by default <kbd>Ctrl</kbd>+<kbd>/</kbd>) and block comments (by default <kbd>Alt</kbd>+<kbd>A</kbd>) can be customized in the Shortcuts Editor, enabling
users of non-US keyboards to adjust the keybinding to one optimal on their keyboard layout. Please note that the block comment only works in languages which have a dedicated block comment syntax
defined in the CodeMirror language data (e.g. C, JavaScript, but not Python). The line comment shortcut can be also used to comment out multiple lines.
To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 pkgsrc/www/py-jupyterlab/Makefile
cvs rdiff -u -r1.8 -r1.9 pkgsrc/www/py-jupyterlab/PLIST
cvs rdiff -u -r1.7 -r1.8 pkgsrc/www/py-jupyterlab/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/www/py-jupyterlab/Makefile
diff -u pkgsrc/www/py-jupyterlab/Makefile:1.10 pkgsrc/www/py-jupyterlab/Makefile:1.11
--- pkgsrc/www/py-jupyterlab/Makefile:1.10 Mon Feb 5 13:33:20 2024
+++ pkgsrc/www/py-jupyterlab/Makefile Sat Jul 20 19:21:29 2024
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.10 2024/02/05 13:33:20 adam Exp $
+# $NetBSD: Makefile,v 1.11 2024/07/20 19:21:29 adam Exp $
-DISTNAME= jupyterlab-4.0.12
+DISTNAME= jupyterlab-4.2.4
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= www python
MASTER_SITES= ${MASTER_SITE_PYPI:=j/jupyterlab/}
@@ -10,10 +10,11 @@ HOMEPAGE= https://github.com/jupyterlab/
COMMENT= Next-generation user interface for Project Jupyter
LICENSE= modified-bsd
-TOOL_DEPENDS+= ${PYPKGPREFIX}-hatchling>=1.5:../../devel/py-hatchling
+TOOL_DEPENDS+= ${PYPKGPREFIX}-hatchling>=1.21.1:../../devel/py-hatchling
TOOL_DEPENDS+= ${PYPKGPREFIX}-hatch-jupyter-builder>=0.3.2:../../devel/py-hatch-jupyter-builder
DEPENDS+= ${PYPKGPREFIX}-async-lru>=1.0.0:../../devel/py-async-lru
-DEPENDS+= ${PYPKGPREFIX}-ipykernel-[0-9]*:../../devel/py-ipykernel
+DEPENDS+= ${PYPKGPREFIX}-httpx>=0.25.0:../../www/py-httpx
+DEPENDS+= ${PYPKGPREFIX}-ipykernel>=6.5.0:../../devel/py-ipykernel
DEPENDS+= ${PYPKGPREFIX}-jinja2>=3.0.3:../../textproc/py-jinja2
DEPENDS+= ${PYPKGPREFIX}-jupyter-lsp>=2.0.0:../../www/py-jupyter-lsp
DEPENDS+= ${PYPKGPREFIX}-jupyter_core-[0-9]*:../../devel/py-jupyter_core
@@ -21,6 +22,7 @@ DEPENDS+= ${PYPKGPREFIX}-jupyter_server>
DEPENDS+= ${PYPKGPREFIX}-jupyterlab-server>=2.19.0:../../www/py-jupyterlab-server
DEPENDS+= ${PYPKGPREFIX}-notebook_shim>=0.2:../../www/py-notebook_shim
DEPENDS+= ${PYPKGPREFIX}-packaging-[0-9]*:../../devel/py-packaging
+DEPENDS+= ${PYPKGPREFIX}-setuptools>=40.1.0:../../devel/py-setuptools
DEPENDS+= ${PYPKGPREFIX}-tornado>=6.2.0:../../www/py-tornado
DEPENDS+= ${PYPKGPREFIX}-traitlets-[0-9]*:../../devel/py-traitlets
@@ -28,14 +30,11 @@ USE_LANGUAGES= # none
CHECK_INTERPRETER_SKIP+= ${PYSITELIB}/jupyterlab/staging/yarn.js
-PYTHON_VERSIONS_INCOMPATIBLE= 27 38
+PYTHON_VERSIONS_INCOMPATIBLE= 27 38 39
.include "../../lang/python/pyversion.mk"
-.if ${PYTHON_VERSION} < 310
-DEPENDS+= ${PYPKGPREFIX}-importlib-metadata>=4.8.3:../../devel/py-importlib-metadata
-.endif
.if ${PYTHON_VERSION} < 311
-DEPENDS+= ${PYPKGPREFIX}-tomli-[0-9]*:../../textproc/py-tomli
+DEPENDS+= ${PYPKGPREFIX}-tomli>=1.2.2:../../textproc/py-tomli
.endif
post-install:
Index: pkgsrc/www/py-jupyterlab/PLIST
diff -u pkgsrc/www/py-jupyterlab/PLIST:1.8 pkgsrc/www/py-jupyterlab/PLIST:1.9
--- pkgsrc/www/py-jupyterlab/PLIST:1.8 Mon Feb 5 13:33:20 2024
+++ pkgsrc/www/py-jupyterlab/PLIST Sat Jul 20 19:21:29 2024
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.8 2024/02/05 13:33:20 adam Exp $
+@comment $NetBSD: PLIST,v 1.9 2024/07/20 19:21:29 adam Exp $
bin/jlpm-${PYVERSSUFFIX}
bin/jupyter-lab-${PYVERSSUFFIX}
bin/jupyter-labextension-${PYVERSSUFFIX}
@@ -49,8 +49,8 @@ ${PYSITELIB}/jupyterlab/federated_labext
${PYSITELIB}/jupyterlab/federated_labextensions.pyo
${PYSITELIB}/jupyterlab/galata/@jupyterlab/galata-extension/build_log.json
${PYSITELIB}/jupyterlab/galata/@jupyterlab/galata-extension/package.json
-${PYSITELIB}/jupyterlab/galata/@jupyterlab/galata-extension/static/lib_extension_index_js.6258249575a3de76958a.js
-${PYSITELIB}/jupyterlab/galata/@jupyterlab/galata-extension/static/remoteEntry.b8fefd648959729a91e4.js
+${PYSITELIB}/jupyterlab/galata/@jupyterlab/galata-extension/static/lib_extension_index_js.193465adc9aa81a6b29f.js
+${PYSITELIB}/jupyterlab/galata/@jupyterlab/galata-extension/static/remoteEntry.e585e4ff6f6790df6e1f.js
${PYSITELIB}/jupyterlab/galata/@jupyterlab/galata-extension/static/style.js
${PYSITELIB}/jupyterlab/galata/__init__.py
${PYSITELIB}/jupyterlab/galata/__init__.pyc
@@ -70,6 +70,9 @@ ${PYSITELIB}/jupyterlab/handlers/error_h
${PYSITELIB}/jupyterlab/handlers/extension_manager_handler.py
${PYSITELIB}/jupyterlab/handlers/extension_manager_handler.pyc
${PYSITELIB}/jupyterlab/handlers/extension_manager_handler.pyo
+${PYSITELIB}/jupyterlab/handlers/plugin_manager_handler.py
+${PYSITELIB}/jupyterlab/handlers/plugin_manager_handler.pyc
+${PYSITELIB}/jupyterlab/handlers/plugin_manager_handler.pyo
${PYSITELIB}/jupyterlab/jlpmapp.py
${PYSITELIB}/jupyterlab/jlpmapp.pyc
${PYSITELIB}/jupyterlab/jlpmapp.pyo
@@ -99,13 +102,13 @@ ${PYSITELIB}/jupyterlab/schemas/@jupyter
${PYSITELIB}/jupyterlab/schemas/@jupyterlab/apputils-extension/sanitizer.json
${PYSITELIB}/jupyterlab/schemas/@jupyterlab/apputils-extension/themes.json
${PYSITELIB}/jupyterlab/schemas/@jupyterlab/apputils-extension/utilityCommands.json
-${PYSITELIB}/jupyterlab/schemas/@jupyterlab/apputils-extension/workspaces.json
${PYSITELIB}/jupyterlab/schemas/@jupyterlab/cell-toolbar-extension/package.json.orig
${PYSITELIB}/jupyterlab/schemas/@jupyterlab/cell-toolbar-extension/plugin.json
${PYSITELIB}/jupyterlab/schemas/@jupyterlab/celltags-extension/package.json.orig
${PYSITELIB}/jupyterlab/schemas/@jupyterlab/celltags-extension/plugin.json
${PYSITELIB}/jupyterlab/schemas/@jupyterlab/codemirror-extension/package.json.orig
${PYSITELIB}/jupyterlab/schemas/@jupyterlab/codemirror-extension/plugin.json
+${PYSITELIB}/jupyterlab/schemas/@jupyterlab/completer-extension/inline-completer.json
${PYSITELIB}/jupyterlab/schemas/@jupyterlab/completer-extension/manager.json
${PYSITELIB}/jupyterlab/schemas/@jupyterlab/completer-extension/package.json.orig
${PYSITELIB}/jupyterlab/schemas/@jupyterlab/console-extension/completer.json
@@ -186,6 +189,9 @@ ${PYSITELIB}/jupyterlab/schemas/@jupyter
${PYSITELIB}/jupyterlab/schemas/@jupyterlab/tooltip-extension/package.json.orig
${PYSITELIB}/jupyterlab/schemas/@jupyterlab/translation-extension/package.json.orig
${PYSITELIB}/jupyterlab/schemas/@jupyterlab/translation-extension/plugin.json
+${PYSITELIB}/jupyterlab/schemas/@jupyterlab/workspaces-extension/menu.json
+${PYSITELIB}/jupyterlab/schemas/@jupyterlab/workspaces-extension/package.json.orig
+${PYSITELIB}/jupyterlab/schemas/@jupyterlab/workspaces-extension/sidebar.json
${PYSITELIB}/jupyterlab/semver.py
${PYSITELIB}/jupyterlab/semver.pyc
${PYSITELIB}/jupyterlab/semver.pyo
@@ -207,15 +213,14 @@ ${PYSITELIB}/jupyterlab/staging/webpack.
${PYSITELIB}/jupyterlab/staging/webpack.prod.release.config.js
${PYSITELIB}/jupyterlab/staging/yarn.js
${PYSITELIB}/jupyterlab/staging/yarn.lock
-${PYSITELIB}/jupyterlab/static/1036.0d1f109c3d842497fd51.js
-${PYSITELIB}/jupyterlab/static/1036.0d1f109c3d842497fd51.js.LICENSE.txt
+${PYSITELIB}/jupyterlab/static/1036.b7aaba381aaa04073a6b.js
+${PYSITELIB}/jupyterlab/static/1036.b7aaba381aaa04073a6b.js.LICENSE.txt
${PYSITELIB}/jupyterlab/static/1085.0b67f0736d85ec41fdd4.js
${PYSITELIB}/jupyterlab/static/1142.d5442a459b18907c1f91.js
+${PYSITELIB}/jupyterlab/static/1166.08f9e1fd722f61c9b69c.js
${PYSITELIB}/jupyterlab/static/1168.0a95b9c93afe61ceb527.js
${PYSITELIB}/jupyterlab/static/1294.9d27be1098bc8abebe3f.js
-${PYSITELIB}/jupyterlab/static/141.f110448d494068ebcc87.js
-${PYSITELIB}/jupyterlab/static/141.f110448d494068ebcc87.js.LICENSE.txt
-${PYSITELIB}/jupyterlab/static/1410.e2302ff5f564d6e596bb.js
+${PYSITELIB}/jupyterlab/static/1410.d8f5e39e1e01d696d2ab.js
${PYSITELIB}/jupyterlab/static/1420.e8486ed074346bc629ca.js
${PYSITELIB}/jupyterlab/static/1448.c391061d8a8344f9d177.js
${PYSITELIB}/jupyterlab/static/1452.4cc17f31511d1f9c6052.js
@@ -224,55 +229,64 @@ ${PYSITELIB}/jupyterlab/static/1550.0937
${PYSITELIB}/jupyterlab/static/1581.e988a625b879002dcc04.js
${PYSITELIB}/jupyterlab/static/1581.e988a625b879002dcc04.js.LICENSE.txt
${PYSITELIB}/jupyterlab/static/1608.61240f3db67d3d952790.js
+${PYSITELIB}/jupyterlab/static/1610.5f9622f4a515447f78fe.js
+${PYSITELIB}/jupyterlab/static/1610.5f9622f4a515447f78fe.js.LICENSE.txt
${PYSITELIB}/jupyterlab/static/1716.a6bbe1ae8a1986a73623.js
+${PYSITELIB}/jupyterlab/static/1760.9a71f4501e9bbaa4c4d8.js
${PYSITELIB}/jupyterlab/static/1776.4f9305d35480467b23c9.js
${PYSITELIB}/jupyterlab/static/1861.4fc7b4afe2b09eb6b5c0.js
${PYSITELIB}/jupyterlab/static/1903.3b452e8ec30e57dbaba5.js
+${PYSITELIB}/jupyterlab/static/1917.05d73322caab1f77e3bf.js
+${PYSITELIB}/jupyterlab/static/1929.96e62233aa6f2a8363d4.js
${PYSITELIB}/jupyterlab/static/1945.0fbbfe93a4aedd91875c.js
${PYSITELIB}/jupyterlab/static/1954.07d96e4020ed6e543d25.js
${PYSITELIB}/jupyterlab/static/1993.f8c5682f95ffa75cbaf6.js
${PYSITELIB}/jupyterlab/static/1cb1c39ea642f26a4dfe.woff
${PYSITELIB}/jupyterlab/static/2039.aa079dac5c520f93b234.js
${PYSITELIB}/jupyterlab/static/2090.abc86741318f76c3d726.js
-${PYSITELIB}/jupyterlab/static/2091.600b1c32af186f6405f9.js
-${PYSITELIB}/jupyterlab/static/2104.296346db0067b4883fbf.js
+${PYSITELIB}/jupyterlab/static/2091.0ad2070604beb93b34c5.js
+${PYSITELIB}/jupyterlab/static/2102.ff1893c4bd1104a1f57d.js
+${PYSITELIB}/jupyterlab/static/2104.96885e414ee656615c2b.js
${PYSITELIB}/jupyterlab/static/2145.be9ec610f29703694fcf.js
${PYSITELIB}/jupyterlab/static/2254.55c69210925ec9b28dd9.js
+${PYSITELIB}/jupyterlab/static/226.5dc3528c008170b37b21.js
${PYSITELIB}/jupyterlab/static/2295.cda0f7182bf2a1a03c5a.js
-${PYSITELIB}/jupyterlab/static/2320.04abae549b19363c2fdd.js
${PYSITELIB}/jupyterlab/static/2363.6eef078cb37c32d7fbc3.js
${PYSITELIB}/jupyterlab/static/2459.9f9cb02561de1bec73ff.js
-${PYSITELIB}/jupyterlab/static/2473.cb9caf61d1e34a747cc0.js
${PYSITELIB}/jupyterlab/static/2485.dab750ed66209df61fe1.js
-${PYSITELIB}/jupyterlab/static/2617.9c299e26785f7646cb39.js
+${PYSITELIB}/jupyterlab/static/2551.b07d561a12360c38c589.js
+${PYSITELIB}/jupyterlab/static/2579.b19edefeb9ee4daed4bd.js
+${PYSITELIB}/jupyterlab/static/2584.e4b860ab848de94978cf.js
${PYSITELIB}/jupyterlab/static/2646.0864fb63d7ab1ed16893.js
+${PYSITELIB}/jupyterlab/static/2655.fcbbd5bb5fa95cd120da.js
${PYSITELIB}/jupyterlab/static/26683bf201fb258a2237.woff
-${PYSITELIB}/jupyterlab/static/2800.680b1fa0a4c66c69bb1e.js
+${PYSITELIB}/jupyterlab/static/2727.6925b8cf1c5363f40138.js
+${PYSITELIB}/jupyterlab/static/2755.696bab6bdca0d9a78131.js
+${PYSITELIB}/jupyterlab/static/2800.8acae2f2fef55d2ccdf2.js
${PYSITELIB}/jupyterlab/static/2857.27a6e85f5c4c092ab8a2.js
${PYSITELIB}/jupyterlab/static/2909.e190307f7f84c7691068.js
-${PYSITELIB}/jupyterlab/static/292.3f7844a129f16ec1ffbc.js
${PYSITELIB}/jupyterlab/static/2929.b88233153dbf33f40b29.js
${PYSITELIB}/jupyterlab/static/2953.92ff8f12bad6ee06859c.js
${PYSITELIB}/jupyterlab/static/2990.ea15322a41d3f133989b.js
-${PYSITELIB}/jupyterlab/static/2995.9791e1071c5f095421bf.js
+${PYSITELIB}/jupyterlab/static/2995.334184c36a45c82ad564.js
${PYSITELIB}/jupyterlab/static/3056.8a73f6aacd8ca45f84f9.js
${PYSITELIB}/jupyterlab/static/30e889b58cbc51adfbb0.woff
${PYSITELIB}/jupyterlab/static/3123.85cea4be2e2ed3f9654f.js
-${PYSITELIB}/jupyterlab/static/3127.75e12687687a3de3b59d.js
${PYSITELIB}/jupyterlab/static/32792104b5ef69eded90.woff
${PYSITELIB}/jupyterlab/static/3306.8bdc49ad1a7ca593a838.js
-${PYSITELIB}/jupyterlab/static/3308.b85a46b26730c1cd5395.js
+${PYSITELIB}/jupyterlab/static/3308.764d71af7e591cdb1345.js
${PYSITELIB}/jupyterlab/static/3520.3495b98946de6960ace8.js
${PYSITELIB}/jupyterlab/static/3528.3b5ef5f31d460b5fcd01.js
-${PYSITELIB}/jupyterlab/static/3547.bd90e90bfe79911486e8.js
+${PYSITELIB}/jupyterlab/static/3547.2a00f51cd14b6060c5d6.js
${PYSITELIB}/jupyterlab/static/3549.24f2fe646d8128bc9db0.js
${PYSITELIB}/jupyterlab/static/355254db9ca10a09a3b5.woff
${PYSITELIB}/jupyterlab/static/3601.5c17c015d71b69ddcab3.js
${PYSITELIB}/jupyterlab/static/36e0d72d8a7afc696a3e.woff
+${PYSITELIB}/jupyterlab/static/3711.150292a21fd47be1c05f.js
${PYSITELIB}/jupyterlab/static/3724.a4657dc16be2ffc49282.js
${PYSITELIB}/jupyterlab/static/373c04fd2418f5c77eea.eot
${PYSITELIB}/jupyterlab/static/378.6d0f0fc4c8a2eb80ac43.js
-${PYSITELIB}/jupyterlab/static/3783.93d5366ab28a19e1f0f9.js
+${PYSITELIB}/jupyterlab/static/3783.36bf783a511cc87997c0.js
${PYSITELIB}/jupyterlab/static/3807.08a8fd824036c30b3746.js
${PYSITELIB}/jupyterlab/static/383.db345dbeef5ef774e50c.js
${PYSITELIB}/jupyterlab/static/3871.ba96e5b53bb16df56618.js
@@ -286,128 +300,161 @@ ${PYSITELIB}/jupyterlab/static/3f6d3488c
${PYSITELIB}/jupyterlab/static/4008.86acbefff6de679f77b5.js
${PYSITELIB}/jupyterlab/static/4008.86acbefff6de679f77b5.js.LICENSE.txt
${PYSITELIB}/jupyterlab/static/4017.096a74a538e031b6d346.js
-${PYSITELIB}/jupyterlab/static/4043.aa012978c41d1d1b2f14.js
+${PYSITELIB}/jupyterlab/static/4043.c57e85faf640ba37b87c.js
+${PYSITELIB}/jupyterlab/static/406.81906f96059e31e907a2.js
+${PYSITELIB}/jupyterlab/static/4086.3087c0abed5ca45b823b.js
+${PYSITELIB}/jupyterlab/static/4136.4b9f72f85f49f979ebb8.js
+${PYSITELIB}/jupyterlab/static/4136.4b9f72f85f49f979ebb8.js.LICENSE.txt
${PYSITELIB}/jupyterlab/static/4139.303ee7374c742287be85.js
${PYSITELIB}/jupyterlab/static/4155.5a8d6736017097028d78.js
+${PYSITELIB}/jupyterlab/static/4244.3d69bbe0937f69ca1f80.js
${PYSITELIB}/jupyterlab/static/4283.f6092d8b7f2e53118d1b.js
${PYSITELIB}/jupyterlab/static/4291.e5d8997127541f75fdaf.js
-${PYSITELIB}/jupyterlab/static/4405.43dab120fea32f30bbb9.js
+${PYSITELIB}/jupyterlab/static/4405.196dd63db3761b4bb7fe.js
${PYSITELIB}/jupyterlab/static/4419.93938494f456cd76a7e3.js
${PYSITELIB}/jupyterlab/static/4452.2f8819684b96ecff5231.js
+${PYSITELIB}/jupyterlab/static/4457.0add5dec58939a80e2c3.js
+${PYSITELIB}/jupyterlab/static/4503.5f41fcfefb7e83b6190e.js
${PYSITELIB}/jupyterlab/static/4519.6b784d052db42e93eff2.js
-${PYSITELIB}/jupyterlab/static/4523.87224ea442d42316dda0.js
${PYSITELIB}/jupyterlab/static/4562.72444a09f5f092646490.js
${PYSITELIB}/jupyterlab/static/4591.428531724f49fe824ffa.js
${PYSITELIB}/jupyterlab/static/46.fb119c5e5b1e0c72a00f.js
${PYSITELIB}/jupyterlab/static/4743.d4e9658ea25301e15a94.js
+${PYSITELIB}/jupyterlab/static/4765.093b4f8b3cee1251db8d.js
${PYSITELIB}/jupyterlab/static/481e39042508ae313a60.woff
${PYSITELIB}/jupyterlab/static/4878.73004381601237a3ef9c.js
-${PYSITELIB}/jupyterlab/static/49.7233f68f95d10b85a83e.js
-${PYSITELIB}/jupyterlab/static/4986.a497cdda4b7152902568.js
+${PYSITELIB}/jupyterlab/static/49.43ad810fe0adbd6be564.js
+${PYSITELIB}/jupyterlab/static/4912.4371d46fb589b52e231b.js
+${PYSITELIB}/jupyterlab/static/4912.4371d46fb589b52e231b.js.LICENSE.txt
+${PYSITELIB}/jupyterlab/static/4986.c819184e09e1e15ef06b.js
${PYSITELIB}/jupyterlab/static/5041.cdc120bda0a0dec4cfc2.js
+${PYSITELIB}/jupyterlab/static/5083.4926253681abafa806f9.js
${PYSITELIB}/jupyterlab/static/5157.9c77dc27a251d4135876.js
-${PYSITELIB}/jupyterlab/static/5201.8866042bae350659528a.js
+${PYSITELIB}/jupyterlab/static/5201.26a6f909d5e2eaa4ada3.js
${PYSITELIB}/jupyterlab/static/5203.c002d40ac647dc6e1d61.js
+${PYSITELIB}/jupyterlab/static/526.601d8ddd8347cd7790b9.js
${PYSITELIB}/jupyterlab/static/5331.0cd3f010bb08983ec3fd.js
${PYSITELIB}/jupyterlab/static/5440.2541fcda12b661665148.js
${PYSITELIB}/jupyterlab/static/5521.ce4a0274596e0325374c.js
${PYSITELIB}/jupyterlab/static/5746.e4434ef2027bcc5ed0c9.js
+${PYSITELIB}/jupyterlab/static/5794.3cb2bcd1a3e23d0c084e.js
${PYSITELIB}/jupyterlab/static/581.2b878ed37172aced15b5.js
${PYSITELIB}/jupyterlab/static/5881.3946238aa4afdcf4f964.js
${PYSITELIB}/jupyterlab/static/5959.a6b1fd3b03d3649ea8b1.js
${PYSITELIB}/jupyterlab/static/5cda41563a095bd70c78.woff
+${PYSITELIB}/jupyterlab/static/6001.963601fcecb8b4c1d1f1.js
${PYSITELIB}/jupyterlab/static/6059.d83e7323b2ee1aa16009.js
${PYSITELIB}/jupyterlab/static/6163.f5b51a9f0df4846ba40f.js
+${PYSITELIB}/jupyterlab/static/6177.a4ddefac453fccec8424.js
${PYSITELIB}/jupyterlab/static/6207.a8079c8d8a61039dd530.js
${PYSITELIB}/jupyterlab/static/6243.2efd673d1304c43b7b78.js
${PYSITELIB}/jupyterlab/static/6267.1def2916929e185ab9fc.js
${PYSITELIB}/jupyterlab/static/6359.4b994bfd6b1dea2d6fe3.js
+${PYSITELIB}/jupyterlab/static/6436.8d9ba427de4ab1053871.js
${PYSITELIB}/jupyterlab/static/6443.e6b52d3732b3e8513a71.js
-${PYSITELIB}/jupyterlab/static/6532.bb7137729a2d6d4e6ddf.js
+${PYSITELIB}/jupyterlab/static/6515.a5aa4805a430ec3278da.js
+${PYSITELIB}/jupyterlab/static/6532.598324868e83c4cbe4e4.js
${PYSITELIB}/jupyterlab/static/6560.f42276a0b1b92aea515b.js
${PYSITELIB}/jupyterlab/static/6595.6a1d7e1abbf186dd119b.js
${PYSITELIB}/jupyterlab/static/6686.3c518aa6e5f9785fb486.js
+${PYSITELIB}/jupyterlab/static/6770.fd7084bb2f4b7622401d.js
+${PYSITELIB}/jupyterlab/static/6778.345e6ac9818e30317310.js
${PYSITELIB}/jupyterlab/static/6815.0b699f0c162a24b0dbe3.js
-${PYSITELIB}/jupyterlab/static/6888.9d3914817f3290827a64.js
+${PYSITELIB}/jupyterlab/static/6888.f71353e198bce9c2f409.js
+${PYSITELIB}/jupyterlab/static/6898.742a7062fa979fb68a80.js
${PYSITELIB}/jupyterlab/static/7080.1330328bb6f46b4da81e.js
${PYSITELIB}/jupyterlab/static/7112.d5120c85ebd17620dda0.js
+${PYSITELIB}/jupyterlab/static/7161.353c3ab960df72e6f1ea.js
${PYSITELIB}/jupyterlab/static/7173.e28f63dbd553818e07d3.js
+${PYSITELIB}/jupyterlab/static/7178.5f3dd740449b44efad2d.js
+${PYSITELIB}/jupyterlab/static/7178.5f3dd740449b44efad2d.js.LICENSE.txt
${PYSITELIB}/jupyterlab/static/721921bab0d001ebff02.woff
${PYSITELIB}/jupyterlab/static/7245.c0cae8787dcd00b991b7.js
+${PYSITELIB}/jupyterlab/static/7272.72081c10e0f645b0631a.js
${PYSITELIB}/jupyterlab/static/7294.badf85a3180703d63f62.js
${PYSITELIB}/jupyterlab/static/7294.badf85a3180703d63f62.js.LICENSE.txt
${PYSITELIB}/jupyterlab/static/72bc573386dd1d48c5bb.woff
+${PYSITELIB}/jupyterlab/static/7313.2eb639f3c8d8c2f4d0cf.js
+${PYSITELIB}/jupyterlab/static/7313.2eb639f3c8d8c2f4d0cf.js.LICENSE.txt
${PYSITELIB}/jupyterlab/static/7317.af8a7da0f881a22752c1.js
-${PYSITELIB}/jupyterlab/static/7318.397bf8e913e825b2be27.js
+${PYSITELIB}/jupyterlab/static/7318.f5a0db6dd94488328be5.js
${PYSITELIB}/jupyterlab/static/7363.abe8e31a91e113753bae.js
${PYSITELIB}/jupyterlab/static/7384.60351e008d8f687e8fcc.js
${PYSITELIB}/jupyterlab/static/7390.8253478b90f756692702.js
+${PYSITELIB}/jupyterlab/static/7426.c83966ccc62601d391bd.js
+${PYSITELIB}/jupyterlab/static/7426.c83966ccc62601d391bd.js.LICENSE.txt
${PYSITELIB}/jupyterlab/static/745.85516a9bb83bcd94d00d.js
-${PYSITELIB}/jupyterlab/static/7451.c0257dbfdd320e2c21f5.js
-${PYSITELIB}/jupyterlab/static/7451.c0257dbfdd320e2c21f5.js.LICENSE.txt
+${PYSITELIB}/jupyterlab/static/7451.83570817c6d63281cc22.js
+${PYSITELIB}/jupyterlab/static/7451.83570817c6d63281cc22.js.LICENSE.txt
${PYSITELIB}/jupyterlab/static/7472.58ba8647a489d019c2ef.js
${PYSITELIB}/jupyterlab/static/7473.5012397d10d3b945ecaa.js
${PYSITELIB}/jupyterlab/static/7508.b902347f820c70cd386a.js
-${PYSITELIB}/jupyterlab/static/7511.b381a696cf806983c654.js
-${PYSITELIB}/jupyterlab/static/7517.f3e5d420f4af90d442dd.js
+${PYSITELIB}/jupyterlab/static/7629.1f295461ebf56a48c197.js
${PYSITELIB}/jupyterlab/static/7669.343e259c4c8269479f5b.js
${PYSITELIB}/jupyterlab/static/7702.c479c69f7a532f7b3fd5.js
${PYSITELIB}/jupyterlab/static/7730.7e3a9fb140d2d55a51fc.js
${PYSITELIB}/jupyterlab/static/7731.26db150e967313b7a7e2.js
+${PYSITELIB}/jupyterlab/static/7734.b08c15e9f538f44d0f52.js
${PYSITELIB}/jupyterlab/static/7763.19a095394000f9ef62bd.js
${PYSITELIB}/jupyterlab/static/7763.19a095394000f9ef62bd.js.LICENSE.txt
${PYSITELIB}/jupyterlab/static/7775.3e0dee729369fe3d5008.js
-${PYSITELIB}/jupyterlab/static/7823.817687f13e9a6781fdd3.js
+${PYSITELIB}/jupyterlab/static/7823.f3c8154418bc214dc89a.js
${PYSITELIB}/jupyterlab/static/7827.e36d073d947bf02a05e3.js
${PYSITELIB}/jupyterlab/static/7848.e83aa4b90ae87209abb8.js
${PYSITELIB}/jupyterlab/static/786.8a99ee7dbd7bd0eb9dce.js
${PYSITELIB}/jupyterlab/static/7877.a4c46a784149533b91d4.js
${PYSITELIB}/jupyterlab/static/7887.128a155df5d25e88c0ce.js
-${PYSITELIB}/jupyterlab/static/795.47ab66037ef33f808f09.js
+${PYSITELIB}/jupyterlab/static/7946.7fe46d47492e459b7cb5.js
+${PYSITELIB}/jupyterlab/static/795.c780bf11bb08527e3c84.js
${PYSITELIB}/jupyterlab/static/79d088064beb3826054f.eot
${PYSITELIB}/jupyterlab/static/8002.25f64485372af5158c83.js
${PYSITELIB}/jupyterlab/static/8010.1cf8237e9def8404f355.js
${PYSITELIB}/jupyterlab/static/8012.40cb006f0c180ebafa91.js
-${PYSITELIB}/jupyterlab/static/812.063be439e3d9e318bdbd.js
+${PYSITELIB}/jupyterlab/static/812.3a74e2e4952e06d0ef62.js
+${PYSITELIB}/jupyterlab/static/8152.5baac73844a065f34284.js
+${PYSITELIB}/jupyterlab/static/8267.01bec3949b651535e6f5.js
${PYSITELIB}/jupyterlab/static/8285.1eac7b7582569be1c3a8.js
-${PYSITELIB}/jupyterlab/static/830.8ddf7d2d91f66a8e4d36.js
-${PYSITELIB}/jupyterlab/static/8302.4c190e10b00fe083570e.js
+${PYSITELIB}/jupyterlab/static/8302.5c5e5a2da7fe74b12a1d.js
${PYSITELIB}/jupyterlab/static/8319.80fcbc832e1eb20b71e7.js
+${PYSITELIB}/jupyterlab/static/8322.288af285dac9cb9a8800.js
${PYSITELIB}/jupyterlab/static/8347.573b699e3590729bfa8a.js
${PYSITELIB}/jupyterlab/static/8405.154ba4b17a2dec22a355.js
+${PYSITELIB}/jupyterlab/static/8462.74d5f5afd4f9d7825eed.js
${PYSITELIB}/jupyterlab/static/8493.fc635229db38e6fc6aa2.js
${PYSITELIB}/jupyterlab/static/8498.27a245b23921914bf5c2.js
${PYSITELIB}/jupyterlab/static/8512.1af96655287fd124877b.js
${PYSITELIB}/jupyterlab/static/8678.dcd3dab9025b13eb9be8.js
${PYSITELIB}/jupyterlab/static/870673df72e70f87c91a.woff
${PYSITELIB}/jupyterlab/static/8710.5fc5ecb762fb4494db02.js
-${PYSITELIB}/jupyterlab/static/8768.4a80caab00174c50eb10.js
-${PYSITELIB}/jupyterlab/static/8768.4a80caab00174c50eb10.js.LICENSE.txt
-${PYSITELIB}/jupyterlab/static/8771.327a202178f82f3b15b8.js
+${PYSITELIB}/jupyterlab/static/8738.782816e9072ac38762b4.js
+${PYSITELIB}/jupyterlab/static/8771.ac4c870ed77005ec8e34.js
${PYSITELIB}/jupyterlab/static/8787.4d36d28dcf94bf59cbfe.js
${PYSITELIB}/jupyterlab/static/8805.0f14a91b024b59c039a7.js
+${PYSITELIB}/jupyterlab/static/881.972f79365eed0f77378e.js
${PYSITELIB}/jupyterlab/static/8823.2ff947bcd96cc0723058.js
${PYSITELIB}/jupyterlab/static/8875.88988caaba1e33edad5b.js
${PYSITELIB}/jupyterlab/static/88b98cad3688915e50da.woff
${PYSITELIB}/jupyterlab/static/8ea8791754915a898a31.woff2
${PYSITELIB}/jupyterlab/static/8ea8dbb1b02e6f730f55.woff
-${PYSITELIB}/jupyterlab/static/9.0e0cba0ccc2a4b670600.js
-${PYSITELIB}/jupyterlab/static/9030.260bc05e28eccff70ae8.js
-${PYSITELIB}/jupyterlab/static/9041.df39043656c7233552e4.js
+${PYSITELIB}/jupyterlab/static/9.82c3bf54739d037b7bd1.js
+${PYSITELIB}/jupyterlab/static/9030.61b135ed4411056792ab.js
+${PYSITELIB}/jupyterlab/static/9041.d439f3e9bdd4ea5a681b.js
${PYSITELIB}/jupyterlab/static/9055.bd710a8db8883a836b59.js
-${PYSITELIB}/jupyterlab/static/9065.5305259c65dfa1c99874.js
${PYSITELIB}/jupyterlab/static/9109.fa3ee74a5c0f378f4d51.js
${PYSITELIB}/jupyterlab/static/9192.db4337a516b7f38d1f89.js
${PYSITELIB}/jupyterlab/static/9222.1c2a8e69a2de57dd1984.js
${PYSITELIB}/jupyterlab/static/9230.58b8c42b730e1a56e69b.js
${PYSITELIB}/jupyterlab/static/9265.bc2b66a4502cdfcfc14f.js
+${PYSITELIB}/jupyterlab/static/9361.099bff2c17312c0441b8.js
${PYSITELIB}/jupyterlab/static/9362.823dcfac216f8057452d.js
+${PYSITELIB}/jupyterlab/static/9395.b59dceae72715c9f885c.js
${PYSITELIB}/jupyterlab/static/9409.34c33ed11e2d6f318480.js
-${PYSITELIB}/jupyterlab/static/942.93c8de61ea9ea08ec097.js
-${PYSITELIB}/jupyterlab/static/9421.022dc7b4e9a2c80c32c2.js
+${PYSITELIB}/jupyterlab/static/942.68bd92fc10c9f9d7004f.js
+${PYSITELIB}/jupyterlab/static/9440.04751e25c9cde059ff37.js
${PYSITELIB}/jupyterlab/static/9445.fe5e9e5b728de8d15873.js
+${PYSITELIB}/jupyterlab/static/9545.f0f7a2959bdd17ee3448.js
${PYSITELIB}/jupyterlab/static/9621.9cbfa52c42927bb398b4.js
-${PYSITELIB}/jupyterlab/static/9653.d93c93e084cd5e93cd2d.js
+${PYSITELIB}/jupyterlab/static/9653.52cac2cc6fb3dc3bf28a.js
${PYSITELIB}/jupyterlab/static/9674eb1bd55047179038.svg
${PYSITELIB}/jupyterlab/static/9738.c0234a1f7f6ac262f560.js
${PYSITELIB}/jupyterlab/static/9747.6dd327f4928c6989ea8a.js
@@ -415,6 +462,7 @@ ${PYSITELIB}/jupyterlab/static/9747.6dd3
${PYSITELIB}/jupyterlab/static/9826.406d2a71dc45995bc549.js
${PYSITELIB}/jupyterlab/static/9826.406d2a71dc45995bc549.js.LICENSE.txt
${PYSITELIB}/jupyterlab/static/9834b82ad26e2a37583d.woff2
+${PYSITELIB}/jupyterlab/static/9984.6ba5355e0d5487d5ac63.js
${PYSITELIB}/jupyterlab/static/a009bea404f7a500ded4.woff
${PYSITELIB}/jupyterlab/static/a3b9817780214caf01e8.svg
${PYSITELIB}/jupyterlab/static/af04542b29eaac04550a.woff
@@ -435,8 +483,8 @@ ${PYSITELIB}/jupyterlab/static/f9217f668
${PYSITELIB}/jupyterlab/static/fc6ddf5df402b263cfb1.woff
${PYSITELIB}/jupyterlab/static/index.html
${PYSITELIB}/jupyterlab/static/index.out.js
-${PYSITELIB}/jupyterlab/static/jlab_core.826ed748f0a8a70a419e.js
-${PYSITELIB}/jupyterlab/static/main.7bc3df3894cb324b8f85.js
+${PYSITELIB}/jupyterlab/static/jlab_core.e5c4c4689689f1651d98.js
+${PYSITELIB}/jupyterlab/static/main.cce1c6d9a919936183e5.js
${PYSITELIB}/jupyterlab/static/package.json
${PYSITELIB}/jupyterlab/static/style.js
${PYSITELIB}/jupyterlab/static/third-party-licenses.json
@@ -527,6 +575,9 @@ ${PYSITELIB}/jupyterlab/tests/test_app.p
${PYSITELIB}/jupyterlab/tests/test_build_api.py
${PYSITELIB}/jupyterlab/tests/test_build_api.pyc
${PYSITELIB}/jupyterlab/tests/test_build_api.pyo
+${PYSITELIB}/jupyterlab/tests/test_custom_css_handler.py
+${PYSITELIB}/jupyterlab/tests/test_custom_css_handler.pyc
+${PYSITELIB}/jupyterlab/tests/test_custom_css_handler.pyo
${PYSITELIB}/jupyterlab/tests/test_extensions.py
${PYSITELIB}/jupyterlab/tests/test_extensions.pyc
${PYSITELIB}/jupyterlab/tests/test_extensions.pyo
@@ -538,6 +589,8 @@ ${PYSITELIB}/jupyterlab/tests/test_regis
${PYSITELIB}/jupyterlab/tests/test_registry.pyo
${PYSITELIB}/jupyterlab/themes/@jupyterlab/theme-dark-extension/index.css
${PYSITELIB}/jupyterlab/themes/@jupyterlab/theme-dark-extension/index.js
+${PYSITELIB}/jupyterlab/themes/@jupyterlab/theme-dark-high-contrast-extension/index.css
+${PYSITELIB}/jupyterlab/themes/@jupyterlab/theme-dark-high-contrast-extension/index.js
${PYSITELIB}/jupyterlab/themes/@jupyterlab/theme-light-extension/index.css
${PYSITELIB}/jupyterlab/themes/@jupyterlab/theme-light-extension/index.js
${PYSITELIB}/jupyterlab/upgrade_extension.py
@@ -561,13 +614,13 @@ share/jupyter/lab/schemas/@jupyterlab/ap
share/jupyter/lab/schemas/@jupyterlab/apputils-extension/sanitizer.json
share/jupyter/lab/schemas/@jupyterlab/apputils-extension/themes.json
share/jupyter/lab/schemas/@jupyterlab/apputils-extension/utilityCommands.json
-share/jupyter/lab/schemas/@jupyterlab/apputils-extension/workspaces.json
share/jupyter/lab/schemas/@jupyterlab/cell-toolbar-extension/package.json.orig
share/jupyter/lab/schemas/@jupyterlab/cell-toolbar-extension/plugin.json
share/jupyter/lab/schemas/@jupyterlab/celltags-extension/package.json.orig
share/jupyter/lab/schemas/@jupyterlab/celltags-extension/plugin.json
share/jupyter/lab/schemas/@jupyterlab/codemirror-extension/package.json.orig
share/jupyter/lab/schemas/@jupyterlab/codemirror-extension/plugin.json
+share/jupyter/lab/schemas/@jupyterlab/completer-extension/inline-completer.json
share/jupyter/lab/schemas/@jupyterlab/completer-extension/manager.json
share/jupyter/lab/schemas/@jupyterlab/completer-extension/package.json.orig
share/jupyter/lab/schemas/@jupyterlab/console-extension/completer.json
@@ -648,15 +701,17 @@ share/jupyter/lab/schemas/@jupyterlab/to
share/jupyter/lab/schemas/@jupyterlab/tooltip-extension/package.json.orig
share/jupyter/lab/schemas/@jupyterlab/translation-extension/package.json.orig
share/jupyter/lab/schemas/@jupyterlab/translation-extension/plugin.json
-share/jupyter/lab/static/1036.0d1f109c3d842497fd51.js
-share/jupyter/lab/static/1036.0d1f109c3d842497fd51.js.LICENSE.txt
+share/jupyter/lab/schemas/@jupyterlab/workspaces-extension/menu.json
+share/jupyter/lab/schemas/@jupyterlab/workspaces-extension/package.json.orig
+share/jupyter/lab/schemas/@jupyterlab/workspaces-extension/sidebar.json
+share/jupyter/lab/static/1036.b7aaba381aaa04073a6b.js
+share/jupyter/lab/static/1036.b7aaba381aaa04073a6b.js.LICENSE.txt
share/jupyter/lab/static/1085.0b67f0736d85ec41fdd4.js
share/jupyter/lab/static/1142.d5442a459b18907c1f91.js
+share/jupyter/lab/static/1166.08f9e1fd722f61c9b69c.js
share/jupyter/lab/static/1168.0a95b9c93afe61ceb527.js
share/jupyter/lab/static/1294.9d27be1098bc8abebe3f.js
-share/jupyter/lab/static/141.f110448d494068ebcc87.js
-share/jupyter/lab/static/141.f110448d494068ebcc87.js.LICENSE.txt
-share/jupyter/lab/static/1410.e2302ff5f564d6e596bb.js
+share/jupyter/lab/static/1410.d8f5e39e1e01d696d2ab.js
share/jupyter/lab/static/1420.e8486ed074346bc629ca.js
share/jupyter/lab/static/1448.c391061d8a8344f9d177.js
share/jupyter/lab/static/1452.4cc17f31511d1f9c6052.js
@@ -665,55 +720,64 @@ share/jupyter/lab/static/1550.09375e869b
share/jupyter/lab/static/1581.e988a625b879002dcc04.js
share/jupyter/lab/static/1581.e988a625b879002dcc04.js.LICENSE.txt
share/jupyter/lab/static/1608.61240f3db67d3d952790.js
+share/jupyter/lab/static/1610.5f9622f4a515447f78fe.js
+share/jupyter/lab/static/1610.5f9622f4a515447f78fe.js.LICENSE.txt
share/jupyter/lab/static/1716.a6bbe1ae8a1986a73623.js
+share/jupyter/lab/static/1760.9a71f4501e9bbaa4c4d8.js
share/jupyter/lab/static/1776.4f9305d35480467b23c9.js
share/jupyter/lab/static/1861.4fc7b4afe2b09eb6b5c0.js
share/jupyter/lab/static/1903.3b452e8ec30e57dbaba5.js
+share/jupyter/lab/static/1917.05d73322caab1f77e3bf.js
+share/jupyter/lab/static/1929.96e62233aa6f2a8363d4.js
share/jupyter/lab/static/1945.0fbbfe93a4aedd91875c.js
share/jupyter/lab/static/1954.07d96e4020ed6e543d25.js
share/jupyter/lab/static/1993.f8c5682f95ffa75cbaf6.js
share/jupyter/lab/static/1cb1c39ea642f26a4dfe.woff
share/jupyter/lab/static/2039.aa079dac5c520f93b234.js
share/jupyter/lab/static/2090.abc86741318f76c3d726.js
-share/jupyter/lab/static/2091.600b1c32af186f6405f9.js
-share/jupyter/lab/static/2104.296346db0067b4883fbf.js
+share/jupyter/lab/static/2091.0ad2070604beb93b34c5.js
+share/jupyter/lab/static/2102.ff1893c4bd1104a1f57d.js
+share/jupyter/lab/static/2104.96885e414ee656615c2b.js
share/jupyter/lab/static/2145.be9ec610f29703694fcf.js
share/jupyter/lab/static/2254.55c69210925ec9b28dd9.js
+share/jupyter/lab/static/226.5dc3528c008170b37b21.js
share/jupyter/lab/static/2295.cda0f7182bf2a1a03c5a.js
-share/jupyter/lab/static/2320.04abae549b19363c2fdd.js
share/jupyter/lab/static/2363.6eef078cb37c32d7fbc3.js
share/jupyter/lab/static/2459.9f9cb02561de1bec73ff.js
-share/jupyter/lab/static/2473.cb9caf61d1e34a747cc0.js
share/jupyter/lab/static/2485.dab750ed66209df61fe1.js
-share/jupyter/lab/static/2617.9c299e26785f7646cb39.js
+share/jupyter/lab/static/2551.b07d561a12360c38c589.js
+share/jupyter/lab/static/2579.b19edefeb9ee4daed4bd.js
+share/jupyter/lab/static/2584.e4b860ab848de94978cf.js
share/jupyter/lab/static/2646.0864fb63d7ab1ed16893.js
+share/jupyter/lab/static/2655.fcbbd5bb5fa95cd120da.js
share/jupyter/lab/static/26683bf201fb258a2237.woff
-share/jupyter/lab/static/2800.680b1fa0a4c66c69bb1e.js
+share/jupyter/lab/static/2727.6925b8cf1c5363f40138.js
+share/jupyter/lab/static/2755.696bab6bdca0d9a78131.js
+share/jupyter/lab/static/2800.8acae2f2fef55d2ccdf2.js
share/jupyter/lab/static/2857.27a6e85f5c4c092ab8a2.js
share/jupyter/lab/static/2909.e190307f7f84c7691068.js
-share/jupyter/lab/static/292.3f7844a129f16ec1ffbc.js
share/jupyter/lab/static/2929.b88233153dbf33f40b29.js
share/jupyter/lab/static/2953.92ff8f12bad6ee06859c.js
share/jupyter/lab/static/2990.ea15322a41d3f133989b.js
-share/jupyter/lab/static/2995.9791e1071c5f095421bf.js
+share/jupyter/lab/static/2995.334184c36a45c82ad564.js
share/jupyter/lab/static/3056.8a73f6aacd8ca45f84f9.js
share/jupyter/lab/static/30e889b58cbc51adfbb0.woff
share/jupyter/lab/static/3123.85cea4be2e2ed3f9654f.js
-share/jupyter/lab/static/3127.75e12687687a3de3b59d.js
share/jupyter/lab/static/32792104b5ef69eded90.woff
share/jupyter/lab/static/3306.8bdc49ad1a7ca593a838.js
-share/jupyter/lab/static/3308.b85a46b26730c1cd5395.js
+share/jupyter/lab/static/3308.764d71af7e591cdb1345.js
share/jupyter/lab/static/3520.3495b98946de6960ace8.js
share/jupyter/lab/static/3528.3b5ef5f31d460b5fcd01.js
-share/jupyter/lab/static/3547.bd90e90bfe79911486e8.js
+share/jupyter/lab/static/3547.2a00f51cd14b6060c5d6.js
share/jupyter/lab/static/3549.24f2fe646d8128bc9db0.js
share/jupyter/lab/static/355254db9ca10a09a3b5.woff
share/jupyter/lab/static/3601.5c17c015d71b69ddcab3.js
share/jupyter/lab/static/36e0d72d8a7afc696a3e.woff
+share/jupyter/lab/static/3711.150292a21fd47be1c05f.js
share/jupyter/lab/static/3724.a4657dc16be2ffc49282.js
share/jupyter/lab/static/373c04fd2418f5c77eea.eot
share/jupyter/lab/static/378.6d0f0fc4c8a2eb80ac43.js
-share/jupyter/lab/static/3783.93d5366ab28a19e1f0f9.js
+share/jupyter/lab/static/3783.36bf783a511cc87997c0.js
share/jupyter/lab/static/3807.08a8fd824036c30b3746.js
share/jupyter/lab/static/383.db345dbeef5ef774e50c.js
share/jupyter/lab/static/3871.ba96e5b53bb16df56618.js
@@ -727,128 +791,161 @@ share/jupyter/lab/static/3f6d3488cf65374
share/jupyter/lab/static/4008.86acbefff6de679f77b5.js
share/jupyter/lab/static/4008.86acbefff6de679f77b5.js.LICENSE.txt
share/jupyter/lab/static/4017.096a74a538e031b6d346.js
-share/jupyter/lab/static/4043.aa012978c41d1d1b2f14.js
+share/jupyter/lab/static/4043.c57e85faf640ba37b87c.js
+share/jupyter/lab/static/406.81906f96059e31e907a2.js
+share/jupyter/lab/static/4086.3087c0abed5ca45b823b.js
+share/jupyter/lab/static/4136.4b9f72f85f49f979ebb8.js
+share/jupyter/lab/static/4136.4b9f72f85f49f979ebb8.js.LICENSE.txt
share/jupyter/lab/static/4139.303ee7374c742287be85.js
share/jupyter/lab/static/4155.5a8d6736017097028d78.js
+share/jupyter/lab/static/4244.3d69bbe0937f69ca1f80.js
share/jupyter/lab/static/4283.f6092d8b7f2e53118d1b.js
share/jupyter/lab/static/4291.e5d8997127541f75fdaf.js
-share/jupyter/lab/static/4405.43dab120fea32f30bbb9.js
+share/jupyter/lab/static/4405.196dd63db3761b4bb7fe.js
share/jupyter/lab/static/4419.93938494f456cd76a7e3.js
share/jupyter/lab/static/4452.2f8819684b96ecff5231.js
+share/jupyter/lab/static/4457.0add5dec58939a80e2c3.js
+share/jupyter/lab/static/4503.5f41fcfefb7e83b6190e.js
share/jupyter/lab/static/4519.6b784d052db42e93eff2.js
-share/jupyter/lab/static/4523.87224ea442d42316dda0.js
share/jupyter/lab/static/4562.72444a09f5f092646490.js
share/jupyter/lab/static/4591.428531724f49fe824ffa.js
share/jupyter/lab/static/46.fb119c5e5b1e0c72a00f.js
share/jupyter/lab/static/4743.d4e9658ea25301e15a94.js
+share/jupyter/lab/static/4765.093b4f8b3cee1251db8d.js
share/jupyter/lab/static/481e39042508ae313a60.woff
share/jupyter/lab/static/4878.73004381601237a3ef9c.js
-share/jupyter/lab/static/49.7233f68f95d10b85a83e.js
-share/jupyter/lab/static/4986.a497cdda4b7152902568.js
+share/jupyter/lab/static/49.43ad810fe0adbd6be564.js
+share/jupyter/lab/static/4912.4371d46fb589b52e231b.js
+share/jupyter/lab/static/4912.4371d46fb589b52e231b.js.LICENSE.txt
+share/jupyter/lab/static/4986.c819184e09e1e15ef06b.js
share/jupyter/lab/static/5041.cdc120bda0a0dec4cfc2.js
+share/jupyter/lab/static/5083.4926253681abafa806f9.js
share/jupyter/lab/static/5157.9c77dc27a251d4135876.js
-share/jupyter/lab/static/5201.8866042bae350659528a.js
+share/jupyter/lab/static/5201.26a6f909d5e2eaa4ada3.js
share/jupyter/lab/static/5203.c002d40ac647dc6e1d61.js
+share/jupyter/lab/static/526.601d8ddd8347cd7790b9.js
share/jupyter/lab/static/5331.0cd3f010bb08983ec3fd.js
share/jupyter/lab/static/5440.2541fcda12b661665148.js
share/jupyter/lab/static/5521.ce4a0274596e0325374c.js
share/jupyter/lab/static/5746.e4434ef2027bcc5ed0c9.js
+share/jupyter/lab/static/5794.3cb2bcd1a3e23d0c084e.js
share/jupyter/lab/static/581.2b878ed37172aced15b5.js
share/jupyter/lab/static/5881.3946238aa4afdcf4f964.js
share/jupyter/lab/static/5959.a6b1fd3b03d3649ea8b1.js
share/jupyter/lab/static/5cda41563a095bd70c78.woff
+share/jupyter/lab/static/6001.963601fcecb8b4c1d1f1.js
share/jupyter/lab/static/6059.d83e7323b2ee1aa16009.js
share/jupyter/lab/static/6163.f5b51a9f0df4846ba40f.js
+share/jupyter/lab/static/6177.a4ddefac453fccec8424.js
share/jupyter/lab/static/6207.a8079c8d8a61039dd530.js
share/jupyter/lab/static/6243.2efd673d1304c43b7b78.js
share/jupyter/lab/static/6267.1def2916929e185ab9fc.js
share/jupyter/lab/static/6359.4b994bfd6b1dea2d6fe3.js
+share/jupyter/lab/static/6436.8d9ba427de4ab1053871.js
share/jupyter/lab/static/6443.e6b52d3732b3e8513a71.js
-share/jupyter/lab/static/6532.bb7137729a2d6d4e6ddf.js
+share/jupyter/lab/static/6515.a5aa4805a430ec3278da.js
+share/jupyter/lab/static/6532.598324868e83c4cbe4e4.js
share/jupyter/lab/static/6560.f42276a0b1b92aea515b.js
share/jupyter/lab/static/6595.6a1d7e1abbf186dd119b.js
share/jupyter/lab/static/6686.3c518aa6e5f9785fb486.js
+share/jupyter/lab/static/6770.fd7084bb2f4b7622401d.js
+share/jupyter/lab/static/6778.345e6ac9818e30317310.js
share/jupyter/lab/static/6815.0b699f0c162a24b0dbe3.js
-share/jupyter/lab/static/6888.9d3914817f3290827a64.js
+share/jupyter/lab/static/6888.f71353e198bce9c2f409.js
+share/jupyter/lab/static/6898.742a7062fa979fb68a80.js
share/jupyter/lab/static/7080.1330328bb6f46b4da81e.js
share/jupyter/lab/static/7112.d5120c85ebd17620dda0.js
+share/jupyter/lab/static/7161.353c3ab960df72e6f1ea.js
share/jupyter/lab/static/7173.e28f63dbd553818e07d3.js
+share/jupyter/lab/static/7178.5f3dd740449b44efad2d.js
+share/jupyter/lab/static/7178.5f3dd740449b44efad2d.js.LICENSE.txt
share/jupyter/lab/static/721921bab0d001ebff02.woff
share/jupyter/lab/static/7245.c0cae8787dcd00b991b7.js
+share/jupyter/lab/static/7272.72081c10e0f645b0631a.js
share/jupyter/lab/static/7294.badf85a3180703d63f62.js
share/jupyter/lab/static/7294.badf85a3180703d63f62.js.LICENSE.txt
share/jupyter/lab/static/72bc573386dd1d48c5bb.woff
+share/jupyter/lab/static/7313.2eb639f3c8d8c2f4d0cf.js
+share/jupyter/lab/static/7313.2eb639f3c8d8c2f4d0cf.js.LICENSE.txt
share/jupyter/lab/static/7317.af8a7da0f881a22752c1.js
-share/jupyter/lab/static/7318.397bf8e913e825b2be27.js
+share/jupyter/lab/static/7318.f5a0db6dd94488328be5.js
share/jupyter/lab/static/7363.abe8e31a91e113753bae.js
share/jupyter/lab/static/7384.60351e008d8f687e8fcc.js
share/jupyter/lab/static/7390.8253478b90f756692702.js
+share/jupyter/lab/static/7426.c83966ccc62601d391bd.js
+share/jupyter/lab/static/7426.c83966ccc62601d391bd.js.LICENSE.txt
share/jupyter/lab/static/745.85516a9bb83bcd94d00d.js
-share/jupyter/lab/static/7451.c0257dbfdd320e2c21f5.js
-share/jupyter/lab/static/7451.c0257dbfdd320e2c21f5.js.LICENSE.txt
+share/jupyter/lab/static/7451.83570817c6d63281cc22.js
+share/jupyter/lab/static/7451.83570817c6d63281cc22.js.LICENSE.txt
share/jupyter/lab/static/7472.58ba8647a489d019c2ef.js
share/jupyter/lab/static/7473.5012397d10d3b945ecaa.js
share/jupyter/lab/static/7508.b902347f820c70cd386a.js
-share/jupyter/lab/static/7511.b381a696cf806983c654.js
-share/jupyter/lab/static/7517.f3e5d420f4af90d442dd.js
+share/jupyter/lab/static/7629.1f295461ebf56a48c197.js
share/jupyter/lab/static/7669.343e259c4c8269479f5b.js
share/jupyter/lab/static/7702.c479c69f7a532f7b3fd5.js
share/jupyter/lab/static/7730.7e3a9fb140d2d55a51fc.js
share/jupyter/lab/static/7731.26db150e967313b7a7e2.js
+share/jupyter/lab/static/7734.b08c15e9f538f44d0f52.js
share/jupyter/lab/static/7763.19a095394000f9ef62bd.js
share/jupyter/lab/static/7763.19a095394000f9ef62bd.js.LICENSE.txt
share/jupyter/lab/static/7775.3e0dee729369fe3d5008.js
-share/jupyter/lab/static/7823.817687f13e9a6781fdd3.js
+share/jupyter/lab/static/7823.f3c8154418bc214dc89a.js
share/jupyter/lab/static/7827.e36d073d947bf02a05e3.js
share/jupyter/lab/static/7848.e83aa4b90ae87209abb8.js
share/jupyter/lab/static/786.8a99ee7dbd7bd0eb9dce.js
share/jupyter/lab/static/7877.a4c46a784149533b91d4.js
share/jupyter/lab/static/7887.128a155df5d25e88c0ce.js
-share/jupyter/lab/static/795.47ab66037ef33f808f09.js
+share/jupyter/lab/static/7946.7fe46d47492e459b7cb5.js
+share/jupyter/lab/static/795.c780bf11bb08527e3c84.js
share/jupyter/lab/static/79d088064beb3826054f.eot
share/jupyter/lab/static/8002.25f64485372af5158c83.js
share/jupyter/lab/static/8010.1cf8237e9def8404f355.js
share/jupyter/lab/static/8012.40cb006f0c180ebafa91.js
-share/jupyter/lab/static/812.063be439e3d9e318bdbd.js
+share/jupyter/lab/static/812.3a74e2e4952e06d0ef62.js
+share/jupyter/lab/static/8152.5baac73844a065f34284.js
+share/jupyter/lab/static/8267.01bec3949b651535e6f5.js
share/jupyter/lab/static/8285.1eac7b7582569be1c3a8.js
-share/jupyter/lab/static/830.8ddf7d2d91f66a8e4d36.js
-share/jupyter/lab/static/8302.4c190e10b00fe083570e.js
+share/jupyter/lab/static/8302.5c5e5a2da7fe74b12a1d.js
share/jupyter/lab/static/8319.80fcbc832e1eb20b71e7.js
+share/jupyter/lab/static/8322.288af285dac9cb9a8800.js
share/jupyter/lab/static/8347.573b699e3590729bfa8a.js
share/jupyter/lab/static/8405.154ba4b17a2dec22a355.js
+share/jupyter/lab/static/8462.74d5f5afd4f9d7825eed.js
share/jupyter/lab/static/8493.fc635229db38e6fc6aa2.js
share/jupyter/lab/static/8498.27a245b23921914bf5c2.js
share/jupyter/lab/static/8512.1af96655287fd124877b.js
share/jupyter/lab/static/8678.dcd3dab9025b13eb9be8.js
share/jupyter/lab/static/870673df72e70f87c91a.woff
share/jupyter/lab/static/8710.5fc5ecb762fb4494db02.js
-share/jupyter/lab/static/8768.4a80caab00174c50eb10.js
-share/jupyter/lab/static/8768.4a80caab00174c50eb10.js.LICENSE.txt
-share/jupyter/lab/static/8771.327a202178f82f3b15b8.js
+share/jupyter/lab/static/8738.782816e9072ac38762b4.js
+share/jupyter/lab/static/8771.ac4c870ed77005ec8e34.js
share/jupyter/lab/static/8787.4d36d28dcf94bf59cbfe.js
share/jupyter/lab/static/8805.0f14a91b024b59c039a7.js
+share/jupyter/lab/static/881.972f79365eed0f77378e.js
share/jupyter/lab/static/8823.2ff947bcd96cc0723058.js
share/jupyter/lab/static/8875.88988caaba1e33edad5b.js
share/jupyter/lab/static/88b98cad3688915e50da.woff
share/jupyter/lab/static/8ea8791754915a898a31.woff2
share/jupyter/lab/static/8ea8dbb1b02e6f730f55.woff
-share/jupyter/lab/static/9.0e0cba0ccc2a4b670600.js
-share/jupyter/lab/static/9030.260bc05e28eccff70ae8.js
-share/jupyter/lab/static/9041.df39043656c7233552e4.js
+share/jupyter/lab/static/9.82c3bf54739d037b7bd1.js
+share/jupyter/lab/static/9030.61b135ed4411056792ab.js
+share/jupyter/lab/static/9041.d439f3e9bdd4ea5a681b.js
share/jupyter/lab/static/9055.bd710a8db8883a836b59.js
-share/jupyter/lab/static/9065.5305259c65dfa1c99874.js
share/jupyter/lab/static/9109.fa3ee74a5c0f378f4d51.js
share/jupyter/lab/static/9192.db4337a516b7f38d1f89.js
share/jupyter/lab/static/9222.1c2a8e69a2de57dd1984.js
share/jupyter/lab/static/9230.58b8c42b730e1a56e69b.js
share/jupyter/lab/static/9265.bc2b66a4502cdfcfc14f.js
+share/jupyter/lab/static/9361.099bff2c17312c0441b8.js
share/jupyter/lab/static/9362.823dcfac216f8057452d.js
+share/jupyter/lab/static/9395.b59dceae72715c9f885c.js
share/jupyter/lab/static/9409.34c33ed11e2d6f318480.js
-share/jupyter/lab/static/942.93c8de61ea9ea08ec097.js
-share/jupyter/lab/static/9421.022dc7b4e9a2c80c32c2.js
+share/jupyter/lab/static/942.68bd92fc10c9f9d7004f.js
+share/jupyter/lab/static/9440.04751e25c9cde059ff37.js
share/jupyter/lab/static/9445.fe5e9e5b728de8d15873.js
+share/jupyter/lab/static/9545.f0f7a2959bdd17ee3448.js
share/jupyter/lab/static/9621.9cbfa52c42927bb398b4.js
-share/jupyter/lab/static/9653.d93c93e084cd5e93cd2d.js
+share/jupyter/lab/static/9653.52cac2cc6fb3dc3bf28a.js
share/jupyter/lab/static/9674eb1bd55047179038.svg
share/jupyter/lab/static/9738.c0234a1f7f6ac262f560.js
share/jupyter/lab/static/9747.6dd327f4928c6989ea8a.js
@@ -856,6 +953,7 @@ share/jupyter/lab/static/9747.6dd327f492
share/jupyter/lab/static/9826.406d2a71dc45995bc549.js
share/jupyter/lab/static/9826.406d2a71dc45995bc549.js.LICENSE.txt
share/jupyter/lab/static/9834b82ad26e2a37583d.woff2
+share/jupyter/lab/static/9984.6ba5355e0d5487d5ac63.js
share/jupyter/lab/static/a009bea404f7a500ded4.woff
share/jupyter/lab/static/a3b9817780214caf01e8.svg
share/jupyter/lab/static/af04542b29eaac04550a.woff
@@ -876,12 +974,14 @@ share/jupyter/lab/static/f9217f66874b0c0
share/jupyter/lab/static/fc6ddf5df402b263cfb1.woff
share/jupyter/lab/static/index.html
share/jupyter/lab/static/index.out.js
-share/jupyter/lab/static/jlab_core.826ed748f0a8a70a419e.js
-share/jupyter/lab/static/main.7bc3df3894cb324b8f85.js
+share/jupyter/lab/static/jlab_core.e5c4c4689689f1651d98.js
+share/jupyter/lab/static/main.cce1c6d9a919936183e5.js
share/jupyter/lab/static/package.json
share/jupyter/lab/static/style.js
share/jupyter/lab/static/third-party-licenses.json
share/jupyter/lab/themes/@jupyterlab/theme-dark-extension/index.css
share/jupyter/lab/themes/@jupyterlab/theme-dark-extension/index.js
+share/jupyter/lab/themes/@jupyterlab/theme-dark-high-contrast-extension/index.css
+share/jupyter/lab/themes/@jupyterlab/theme-dark-high-contrast-extension/index.js
share/jupyter/lab/themes/@jupyterlab/theme-light-extension/index.css
share/jupyter/lab/themes/@jupyterlab/theme-light-extension/index.js
Index: pkgsrc/www/py-jupyterlab/distinfo
diff -u pkgsrc/www/py-jupyterlab/distinfo:1.7 pkgsrc/www/py-jupyterlab/distinfo:1.8
--- pkgsrc/www/py-jupyterlab/distinfo:1.7 Mon Feb 5 13:33:20 2024
+++ pkgsrc/www/py-jupyterlab/distinfo Sat Jul 20 19:21:29 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.7 2024/02/05 13:33:20 adam Exp $
+$NetBSD: distinfo,v 1.8 2024/07/20 19:21:29 adam Exp $
-BLAKE2s (jupyterlab-4.0.12.tar.gz) = d50e2ed218399e0844c27e1c3b3a3381bd02e7f26625ad568dd142487101f40c
-SHA512 (jupyterlab-4.0.12.tar.gz) = 2a84d2d2e6c64e8fa469b7c5b144b364743d2def1c278aff13e5a9380aca0075b49b31370fed368df951208014a0737380966ab6171a13ff07246ad2b4eca996
-Size (jupyterlab-4.0.12.tar.gz) = 18352336 bytes
+BLAKE2s (jupyterlab-4.2.4.tar.gz) = 94ec2b45116c3e7de054b5bffa036e6adf202c3d33641d0fb201a9942b6eae7c
+SHA512 (jupyterlab-4.2.4.tar.gz) = 2327c7d7b63185c9e1a90acfcac4b31224835601ed8e0bb545077e0c68f6cbb612af884fef288b7e28245b83a035542590cbd721b0f9e44af27bb4aa8a00acab
+Size (jupyterlab-4.2.4.tar.gz) = 21506914 bytes
Home |
Main Index |
Thread Index |
Old Index