jupyterlab 4.0.0rc0__tar.gz → 4.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1257) hide show
  1. jupyterlab-4.0.1/CHANGELOG.md +6283 -0
  2. jupyterlab-4.0.1/PKG-INFO +298 -0
  3. jupyterlab-4.0.1/README.md +180 -0
  4. jupyterlab-4.0.1/RELEASE.md +479 -0
  5. jupyterlab-4.0.1/buildapi.py +38 -0
  6. jupyterlab-4.0.1/docs/scripts/graph-dependencies.js +88 -0
  7. jupyterlab-4.0.1/docs/source/_static/switcher.json +57 -0
  8. jupyterlab-4.0.1/docs/source/conf.py +427 -0
  9. jupyterlab-4.0.1/docs/source/developer/components.rst +68 -0
  10. jupyterlab-4.0.1/docs/source/developer/contributing.rst +1138 -0
  11. jupyterlab-4.0.1/docs/source/developer/css.rst +253 -0
  12. jupyterlab-4.0.1/docs/source/developer/performance.rst +96 -0
  13. jupyterlab-4.0.1/docs/source/developer/repo.rst +133 -0
  14. jupyterlab-4.0.1/docs/source/extension/extension_dev.rst +798 -0
  15. jupyterlab-4.0.1/docs/source/extension/extension_migration.rst +886 -0
  16. jupyterlab-4.0.1/docs/source/extension/extension_tutorial.rst +1114 -0
  17. jupyterlab-4.0.1/docs/source/getting_started/faq.rst +68 -0
  18. jupyterlab-4.0.1/docs/source/getting_started/installation.rst +203 -0
  19. jupyterlab-4.0.1/docs/source/getting_started/starting.rst +45 -0
  20. jupyterlab-4.0.1/docs/source/user/announcements.rst +65 -0
  21. jupyterlab-4.0.1/docs/source/user/commands.rst +62 -0
  22. jupyterlab-4.0.1/docs/source/user/directories.rst +318 -0
  23. jupyterlab-4.0.1/docs/source/user/interface_customization.rst +315 -0
  24. jupyterlab-4.0.1/docs/source/user/toc.rst +87 -0
  25. jupyterlab-4.0.1/galata/README.md +666 -0
  26. jupyterlab-4.0.1/galata/extension/package.json +56 -0
  27. jupyterlab-4.0.1/galata/extension/src/global.ts +751 -0
  28. jupyterlab-4.0.1/galata/package.json +74 -0
  29. jupyterlab-4.0.1/galata/src/galata.ts +1035 -0
  30. jupyterlab-4.0.1/galata/src/helpers/notebook.ts +1244 -0
  31. jupyterlab-4.0.1/galata/test/documentation/customization.test.ts-snapshots/customized-menu-bar-documentation-linux.png +0 -0
  32. jupyterlab-4.0.1/galata/test/documentation/customization.test.ts-snapshots/customized-terminal-position-single-documentation-linux.png +0 -0
  33. jupyterlab-4.0.1/galata/test/documentation/customization.test.ts-snapshots/default-menu-bar-documentation-linux.png +0 -0
  34. jupyterlab-4.0.1/galata/test/documentation/customization.test.ts-snapshots/default-terminal-position-single-documentation-linux.png +0 -0
  35. jupyterlab-4.0.1/galata/test/documentation/extension_manager.test.ts-snapshots/extensions-default-documentation-linux.png +0 -0
  36. jupyterlab-4.0.1/galata/test/documentation/extension_manager.test.ts-snapshots/extensions-disabled-documentation-linux.png +0 -0
  37. jupyterlab-4.0.1/galata/test/documentation/extension_manager.test.ts-snapshots/extensions-enabled-documentation-linux.png +0 -0
  38. jupyterlab-4.0.1/galata/test/documentation/extension_manager.test.ts-snapshots/extensions-search-documentation-linux.png +0 -0
  39. jupyterlab-4.0.1/galata/test/documentation/general.test.ts +777 -0
  40. jupyterlab-4.0.1/galata/test/documentation/general.test.ts-snapshots/file-formats-html-display-documentation-linux.png +0 -0
  41. jupyterlab-4.0.1/galata/test/documentation/general.test.ts-snapshots/interface-jupyterlab-documentation-linux.png +0 -0
  42. jupyterlab-4.0.1/galata/test/documentation/general.test.ts-snapshots/interface-left-documentation-linux.png +0 -0
  43. jupyterlab-4.0.1/galata/test/documentation/general.test.ts-snapshots/interface-tabs-menu-documentation-linux.png +0 -0
  44. jupyterlab-4.0.1/galata/test/documentation/general.test.ts-snapshots/shortcuts-help-documentation-linux.png +0 -0
  45. jupyterlab-4.0.1/galata/test/documentation/general.test.ts-snapshots/terminal-layout-documentation-linux.png +0 -0
  46. jupyterlab-4.0.1/galata/test/documentation/internationalization.test.ts-snapshots/language-chinese-documentation-linux.png +0 -0
  47. jupyterlab-4.0.1/galata/test/jupyterlab/announcements.test.ts +250 -0
  48. jupyterlab-4.0.1/galata/test/jupyterlab/completer.test.ts-snapshots/completer-console-jupyterlab-linux.png +0 -0
  49. jupyterlab-4.0.1/galata/test/jupyterlab/general.test.ts-snapshots/dark-theme-jupyterlab-linux.png +0 -0
  50. jupyterlab-4.0.1/galata/test/jupyterlab/general.test.ts-snapshots/launch-jupyterlab-linux.png +0 -0
  51. jupyterlab-4.0.1/galata/test/jupyterlab/general.test.ts-snapshots/simple-mode-jupyterlab-linux.png +0 -0
  52. jupyterlab-4.0.1/galata/test/jupyterlab/kernel.test.ts +140 -0
  53. jupyterlab-4.0.1/galata/test/jupyterlab/notebook-create.test.ts-snapshots/run-cells-jupyterlab-linux.png +0 -0
  54. jupyterlab-4.0.1/galata/test/jupyterlab/notebook-edit.test.ts +169 -0
  55. jupyterlab-4.0.1/galata/test/jupyterlab/notebook-edit.test.ts-snapshots/move-cell-up-jupyterlab-linux.png +0 -0
  56. jupyterlab-4.0.1/galata/test/jupyterlab/notebook-markdown.test.ts-snapshots/do-not-highlight-standalone-dollar-jupyterlab-linux.png +0 -0
  57. jupyterlab-4.0.1/galata/test/jupyterlab/notebook-markdown.test.ts-snapshots/highlight-latex-jupyterlab-linux.png +0 -0
  58. jupyterlab-4.0.1/galata/test/jupyterlab/notebook-replace.test.ts-snapshots/replace-all-jupyterlab-linux.png +0 -0
  59. jupyterlab-4.0.1/galata/test/jupyterlab/notebook-replace.test.ts-snapshots/replace-in-cell-jupyterlab-linux.png +0 -0
  60. jupyterlab-4.0.1/galata/test/jupyterlab/notebook-run-vega.test.ts-snapshots/run-cells-dark-vega-jupyterlab-linux.png +0 -0
  61. jupyterlab-4.0.1/galata/test/jupyterlab/notebook-run-vega.test.ts-snapshots/run-cells-vega-jupyterlab-linux.png +0 -0
  62. jupyterlab-4.0.1/galata/test/jupyterlab/notebook-run.test.ts +82 -0
  63. jupyterlab-4.0.1/galata/test/jupyterlab/notebook-run.test.ts-snapshots/notebook-panel-0-jupyterlab-linux.png +0 -0
  64. jupyterlab-4.0.1/galata/test/jupyterlab/notebook-run.test.ts-snapshots/notebook-panel-1-jupyterlab-linux.png +0 -0
  65. jupyterlab-4.0.1/galata/test/jupyterlab/notebook-run.test.ts-snapshots/notebook-panel-2-jupyterlab-linux.png +0 -0
  66. jupyterlab-4.0.1/galata/test/jupyterlab/notebook-run.test.ts-snapshots/notebook-panel-3-jupyterlab-linux.png +0 -0
  67. jupyterlab-4.0.1/galata/test/jupyterlab/notebook-run.test.ts-snapshots/notebook-panel-4-jupyterlab-linux.png +0 -0
  68. jupyterlab-4.0.1/galata/test/jupyterlab/notebook-run.test.ts-snapshots/notebook-panel-5-jupyterlab-linux.png +0 -0
  69. jupyterlab-4.0.1/galata/test/jupyterlab/notebook-run.test.ts-snapshots/notebook-panel-7-jupyterlab-linux.png +0 -0
  70. jupyterlab-4.0.1/galata/test/jupyterlab/notebook-scroll.test.ts +57 -0
  71. jupyterlab-4.0.1/galata/test/jupyterlab/notebook-search.test.ts +537 -0
  72. jupyterlab-4.0.1/galata/test/jupyterlab/notebook-search.test.ts-snapshots/highlight-previous-element-jupyterlab-linux.png +0 -0
  73. jupyterlab-4.0.1/galata/test/jupyterlab/notebook-search.test.ts-snapshots/search-in-selected-cells-jupyterlab-linux.png +0 -0
  74. jupyterlab-4.0.1/galata/test/jupyterlab/notebook-search.test.ts-snapshots/search-in-selected-text-jupyterlab-linux.png +0 -0
  75. jupyterlab-4.0.1/galata/test/jupyterlab/notebook-search.test.ts-snapshots/search-in-two-selected-cells-jupyterlab-linux.png +0 -0
  76. jupyterlab-4.0.1/galata/test/jupyterlab/notebook-search.test.ts-snapshots/search-jupyterlab-linux.png +0 -0
  77. jupyterlab-4.0.1/galata/test/jupyterlab/notebook-search.test.ts-snapshots/search-on-deleted-cell-jupyterlab-linux.png +0 -0
  78. jupyterlab-4.0.1/galata/test/jupyterlab/notebook-search.test.ts-snapshots/search-on-new-cell-jupyterlab-linux.png +0 -0
  79. jupyterlab-4.0.1/galata/test/jupyterlab/notebook-toolbar.test.ts-snapshots/paste-cell-jupyterlab-linux.png +0 -0
  80. jupyterlab-4.0.1/galata/test/jupyterlab/notebooks/css_js_injection.ipynb +489 -0
  81. jupyterlab-4.0.1/galata/test/jupyterlab/notification.test.ts-snapshots/notification-accent-action-jupyterlab-linux.png +0 -0
  82. jupyterlab-4.0.1/galata/test/jupyterlab/notification.test.ts-snapshots/notification-center-jupyterlab-linux.png +0 -0
  83. jupyterlab-4.0.1/galata/test/jupyterlab/notification.test.ts-snapshots/notification-default-action-jupyterlab-linux.png +0 -0
  84. jupyterlab-4.0.1/galata/test/jupyterlab/notification.test.ts-snapshots/notification-default-jupyterlab-linux.png +0 -0
  85. jupyterlab-4.0.1/galata/test/jupyterlab/notification.test.ts-snapshots/notification-error-jupyterlab-linux.png +0 -0
  86. jupyterlab-4.0.1/galata/test/jupyterlab/notification.test.ts-snapshots/notification-in-progress-jupyterlab-linux.png +0 -0
  87. jupyterlab-4.0.1/galata/test/jupyterlab/notification.test.ts-snapshots/notification-info-jupyterlab-linux.png +0 -0
  88. jupyterlab-4.0.1/galata/test/jupyterlab/notification.test.ts-snapshots/notification-link-action-jupyterlab-linux.png +0 -0
  89. jupyterlab-4.0.1/galata/test/jupyterlab/notification.test.ts-snapshots/notification-success-jupyterlab-linux.png +0 -0
  90. jupyterlab-4.0.1/galata/test/jupyterlab/notification.test.ts-snapshots/notification-warn-action-jupyterlab-linux.png +0 -0
  91. jupyterlab-4.0.1/galata/test/jupyterlab/notification.test.ts-snapshots/notification-warning-jupyterlab-linux.png +0 -0
  92. jupyterlab-4.0.1/galata/test/jupyterlab/notification.test.ts-snapshots/notification-with-actions-jupyterlab-linux.png +0 -0
  93. jupyterlab-4.0.1/galata/test/jupyterlab/notification.test.ts-snapshots/text-content-notification-jupyterlab-linux.txt +1 -0
  94. jupyterlab-4.0.1/galata/test/jupyterlab/search.test.ts +96 -0
  95. jupyterlab-4.0.1/galata/test/jupyterlab/search.test.ts-snapshots/text-editor-search-from-selection-jupyterlab-linux.png +0 -0
  96. jupyterlab-4.0.1/galata/test/jupyterlab/settings.test.ts-snapshots/settings-plugin-list-jupyterlab-linux.png +0 -0
  97. jupyterlab-4.0.1/galata/test/jupyterlab/sidebars.test.ts-snapshots/filebrowser-right-jupyterlab-linux.png +0 -0
  98. jupyterlab-4.0.1/galata/test/jupyterlab/sidebars.test.ts-snapshots/opened-sidebar-extensionmanager-main-view-jupyterlab-linux.png +0 -0
  99. jupyterlab-4.0.1/galata/test/jupyterlab/sidebars.test.ts-snapshots/opened-sidebar-filebrowser-jupyterlab-linux.png +0 -0
  100. jupyterlab-4.0.1/galata/test/jupyterlab/windowed-notebook.test.ts +297 -0
  101. jupyterlab-4.0.1/galata/tsconfig.tsbuildinfo +1 -0
  102. jupyterlab-4.0.1/jupyterlab/_version.py +22 -0
  103. jupyterlab-4.0.1/jupyterlab/browser_check.py +209 -0
  104. jupyterlab-4.0.1/jupyterlab/commands.py +2455 -0
  105. jupyterlab-4.0.1/jupyterlab/federated_labextensions.py +483 -0
  106. jupyterlab-4.0.1/jupyterlab/galata/@jupyterlab/galata-extension/build_log.json +664 -0
  107. jupyterlab-4.0.1/jupyterlab/galata/@jupyterlab/galata-extension/package.json +60 -0
  108. jupyterlab-4.0.1/jupyterlab/galata/@jupyterlab/galata-extension/static/lib_extension_index_js.6258249575a3de76958a.js +696 -0
  109. jupyterlab-4.0.1/jupyterlab/galata/@jupyterlab/galata-extension/static/remoteEntry.d43d69ecb271ee14094a.js +547 -0
  110. jupyterlab-4.0.1/jupyterlab/handlers/announcements.py +296 -0
  111. jupyterlab-4.0.1/jupyterlab/jlpmapp.py +43 -0
  112. jupyterlab-4.0.1/jupyterlab/labextensions.py +534 -0
  113. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/application-extension/package.json.orig +70 -0
  114. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/apputils-extension/package.json.orig +78 -0
  115. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/cell-toolbar-extension/package.json.orig +55 -0
  116. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/celltags-extension/package.json.orig +63 -0
  117. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/codemirror-extension/package.json.orig +72 -0
  118. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/completer-extension/package.json.orig +62 -0
  119. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/console-extension/package.json.orig +72 -0
  120. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/csvviewer-extension/package.json.orig +66 -0
  121. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/debugger-extension/package.json.orig +79 -0
  122. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/docmanager-extension/package.json.orig +72 -0
  123. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/documentsearch-extension/package.json.orig +56 -0
  124. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/extensionmanager-extension/package.json.orig +62 -0
  125. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/filebrowser-extension/browser.json +237 -0
  126. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/filebrowser-extension/package.json.orig +70 -0
  127. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/fileeditor-extension/package.json.orig +83 -0
  128. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/help-extension/package.json.orig +67 -0
  129. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/htmlviewer-extension/package.json.orig +59 -0
  130. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/hub-extension/package.json.orig +55 -0
  131. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/imageviewer-extension/package.json.orig +60 -0
  132. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/inspector-extension/package.json.orig +64 -0
  133. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/launcher-extension/package.json.orig +64 -0
  134. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/logconsole-extension/package.json.orig +63 -0
  135. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/lsp-extension/package.json.orig +63 -0
  136. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/mainmenu-extension/package.json.orig +67 -0
  137. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/markdownviewer-extension/package.json.orig +63 -0
  138. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/mathjax-extension/package.json.orig +63 -0
  139. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/metadataform-extension/package.json.orig +62 -0
  140. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/notebook-extension/package.json.orig +93 -0
  141. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/notebook-extension/tracker.json +808 -0
  142. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/running-extension/package.json.orig +67 -0
  143. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/settingeditor-extension/package.json.orig +65 -0
  144. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/shortcuts-extension/package.json.orig +72 -0
  145. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/statusbar-extension/package.json.orig +61 -0
  146. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/terminal-extension/package.json.orig +67 -0
  147. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/toc-extension/package.json.orig +63 -0
  148. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/toc-extension/registry.json +72 -0
  149. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/tooltip-extension/package.json.orig +68 -0
  150. jupyterlab-4.0.1/jupyterlab/schemas/@jupyterlab/translation-extension/package.json.orig +60 -0
  151. jupyterlab-4.0.1/jupyterlab/staging/package.json +331 -0
  152. jupyterlab-4.0.1/jupyterlab/staging/yarn.lock +9901 -0
  153. jupyterlab-4.0.1/jupyterlab/static/1036.2da1476d9ad2d74b85f9.js +2 -0
  154. jupyterlab-4.0.1/jupyterlab/static/1085.0b67f0736d85ec41fdd4.js +1 -0
  155. jupyterlab-4.0.1/jupyterlab/static/1142.d5442a459b18907c1f91.js +1 -0
  156. jupyterlab-4.0.1/jupyterlab/static/1168.e4d38ba5d2b37479ba8a.js +1 -0
  157. jupyterlab-4.0.1/jupyterlab/static/1294.9d27be1098bc8abebe3f.js +1 -0
  158. jupyterlab-4.0.1/jupyterlab/static/141.f110448d494068ebcc87.js +2 -0
  159. jupyterlab-4.0.1/jupyterlab/static/1410.e2302ff5f564d6e596bb.js +1 -0
  160. jupyterlab-4.0.1/jupyterlab/static/1420.e8486ed074346bc629ca.js +1 -0
  161. jupyterlab-4.0.1/jupyterlab/static/1448.c391061d8a8344f9d177.js +1 -0
  162. jupyterlab-4.0.1/jupyterlab/static/1452.4cc17f31511d1f9c6052.js +1 -0
  163. jupyterlab-4.0.1/jupyterlab/static/1467.dcd89539f6477c1367af.js +1 -0
  164. jupyterlab-4.0.1/jupyterlab/static/1550.09375e869bc25429b07a.js +1 -0
  165. jupyterlab-4.0.1/jupyterlab/static/1581.3475afdf46cd8e95a405.js +8 -0
  166. jupyterlab-4.0.1/jupyterlab/static/1608.61240f3db67d3d952790.js +1 -0
  167. jupyterlab-4.0.1/jupyterlab/static/1716.a6bbe1ae8a1986a73623.js +1 -0
  168. jupyterlab-4.0.1/jupyterlab/static/1729.e1220dd45677c75828cc.js +1 -0
  169. jupyterlab-4.0.1/jupyterlab/static/1776.4f9305d35480467b23c9.js +1 -0
  170. jupyterlab-4.0.1/jupyterlab/static/1861.4fc7b4afe2b09eb6b5c0.js +1 -0
  171. jupyterlab-4.0.1/jupyterlab/static/1903.3b452e8ec30e57dbaba5.js +1 -0
  172. jupyterlab-4.0.1/jupyterlab/static/1945.0fbbfe93a4aedd91875c.js +1 -0
  173. jupyterlab-4.0.1/jupyterlab/static/1954.07d96e4020ed6e543d25.js +1 -0
  174. jupyterlab-4.0.1/jupyterlab/static/1993.f8c5682f95ffa75cbaf6.js +1 -0
  175. jupyterlab-4.0.1/jupyterlab/static/2039.aa079dac5c520f93b234.js +1 -0
  176. jupyterlab-4.0.1/jupyterlab/static/2090.abc86741318f76c3d726.js +1 -0
  177. jupyterlab-4.0.1/jupyterlab/static/2091.600b1c32af186f6405f9.js +1 -0
  178. jupyterlab-4.0.1/jupyterlab/static/2104.296346db0067b4883fbf.js +1 -0
  179. jupyterlab-4.0.1/jupyterlab/static/2145.be9ec610f29703694fcf.js +1 -0
  180. jupyterlab-4.0.1/jupyterlab/static/2254.55c69210925ec9b28dd9.js +1 -0
  181. jupyterlab-4.0.1/jupyterlab/static/2295.cda0f7182bf2a1a03c5a.js +1 -0
  182. jupyterlab-4.0.1/jupyterlab/static/2320.04abae549b19363c2fdd.js +1 -0
  183. jupyterlab-4.0.1/jupyterlab/static/2363.6eef078cb37c32d7fbc3.js +1 -0
  184. jupyterlab-4.0.1/jupyterlab/static/2459.9f9cb02561de1bec73ff.js +1 -0
  185. jupyterlab-4.0.1/jupyterlab/static/2485.dab750ed66209df61fe1.js +1 -0
  186. jupyterlab-4.0.1/jupyterlab/static/2617.9c299e26785f7646cb39.js +1 -0
  187. jupyterlab-4.0.1/jupyterlab/static/2646.0864fb63d7ab1ed16893.js +1 -0
  188. jupyterlab-4.0.1/jupyterlab/static/2800.680b1fa0a4c66c69bb1e.js +1 -0
  189. jupyterlab-4.0.1/jupyterlab/static/2857.27a6e85f5c4c092ab8a2.js +1 -0
  190. jupyterlab-4.0.1/jupyterlab/static/2909.e190307f7f84c7691068.js +1 -0
  191. jupyterlab-4.0.1/jupyterlab/static/292.3f7844a129f16ec1ffbc.js +1 -0
  192. jupyterlab-4.0.1/jupyterlab/static/2929.b88233153dbf33f40b29.js +1 -0
  193. jupyterlab-4.0.1/jupyterlab/static/2953.92ff8f12bad6ee06859c.js +1 -0
  194. jupyterlab-4.0.1/jupyterlab/static/2990.ea15322a41d3f133989b.js +1 -0
  195. jupyterlab-4.0.1/jupyterlab/static/2995.9791e1071c5f095421bf.js +1 -0
  196. jupyterlab-4.0.1/jupyterlab/static/3056.8a73f6aacd8ca45f84f9.js +1 -0
  197. jupyterlab-4.0.1/jupyterlab/static/3123.af7615a41e38261234b8.js +1 -0
  198. jupyterlab-4.0.1/jupyterlab/static/3127.75e12687687a3de3b59d.js +1 -0
  199. jupyterlab-4.0.1/jupyterlab/static/3306.8bdc49ad1a7ca593a838.js +1 -0
  200. jupyterlab-4.0.1/jupyterlab/static/3308.92a1e305c62cc91845b9.js +1 -0
  201. jupyterlab-4.0.1/jupyterlab/static/3520.3495b98946de6960ace8.js +1 -0
  202. jupyterlab-4.0.1/jupyterlab/static/3528.3b5ef5f31d460b5fcd01.js +1 -0
  203. jupyterlab-4.0.1/jupyterlab/static/3547.bd90e90bfe79911486e8.js +1 -0
  204. jupyterlab-4.0.1/jupyterlab/static/3549.24f2fe646d8128bc9db0.js +1 -0
  205. jupyterlab-4.0.1/jupyterlab/static/3601.5c17c015d71b69ddcab3.js +1 -0
  206. jupyterlab-4.0.1/jupyterlab/static/3724.a4657dc16be2ffc49282.js +1 -0
  207. jupyterlab-4.0.1/jupyterlab/static/378.6d0f0fc4c8a2eb80ac43.js +1 -0
  208. jupyterlab-4.0.1/jupyterlab/static/3783.6121fa44ad854b45accf.js +1 -0
  209. jupyterlab-4.0.1/jupyterlab/static/3807.08a8fd824036c30b3746.js +1 -0
  210. jupyterlab-4.0.1/jupyterlab/static/383.db345dbeef5ef774e50c.js +1 -0
  211. jupyterlab-4.0.1/jupyterlab/static/3871.ba96e5b53bb16df56618.js +1 -0
  212. jupyterlab-4.0.1/jupyterlab/static/3923.f29c06abdcb560130471.js +1 -0
  213. jupyterlab-4.0.1/jupyterlab/static/3935.905285b8e22c337968ed.js +2 -0
  214. jupyterlab-4.0.1/jupyterlab/static/3962.50786e3ed9a01329a4a0.js +1 -0
  215. jupyterlab-4.0.1/jupyterlab/static/4008.86acbefff6de679f77b5.js +2 -0
  216. jupyterlab-4.0.1/jupyterlab/static/4017.096a74a538e031b6d346.js +1 -0
  217. jupyterlab-4.0.1/jupyterlab/static/4043.aa012978c41d1d1b2f14.js +1 -0
  218. jupyterlab-4.0.1/jupyterlab/static/4139.303ee7374c742287be85.js +1 -0
  219. jupyterlab-4.0.1/jupyterlab/static/4155.5a8d6736017097028d78.js +1 -0
  220. jupyterlab-4.0.1/jupyterlab/static/4283.f6092d8b7f2e53118d1b.js +1 -0
  221. jupyterlab-4.0.1/jupyterlab/static/4291.e5d8997127541f75fdaf.js +1 -0
  222. jupyterlab-4.0.1/jupyterlab/static/4405.43dab120fea32f30bbb9.js +1 -0
  223. jupyterlab-4.0.1/jupyterlab/static/4419.93938494f456cd76a7e3.js +1 -0
  224. jupyterlab-4.0.1/jupyterlab/static/4452.2f8819684b96ecff5231.js +1 -0
  225. jupyterlab-4.0.1/jupyterlab/static/4519.6b784d052db42e93eff2.js +1 -0
  226. jupyterlab-4.0.1/jupyterlab/static/4523.87224ea442d42316dda0.js +1 -0
  227. jupyterlab-4.0.1/jupyterlab/static/4562.72444a09f5f092646490.js +1 -0
  228. jupyterlab-4.0.1/jupyterlab/static/4591.428531724f49fe824ffa.js +1 -0
  229. jupyterlab-4.0.1/jupyterlab/static/46.fb119c5e5b1e0c72a00f.js +1 -0
  230. jupyterlab-4.0.1/jupyterlab/static/4743.d4e9658ea25301e15a94.js +1 -0
  231. jupyterlab-4.0.1/jupyterlab/static/4878.73004381601237a3ef9c.js +1 -0
  232. jupyterlab-4.0.1/jupyterlab/static/49.7233f68f95d10b85a83e.js +1 -0
  233. jupyterlab-4.0.1/jupyterlab/static/4986.a497cdda4b7152902568.js +1 -0
  234. jupyterlab-4.0.1/jupyterlab/static/5041.cdc120bda0a0dec4cfc2.js +1 -0
  235. jupyterlab-4.0.1/jupyterlab/static/5157.9c77dc27a251d4135876.js +1 -0
  236. jupyterlab-4.0.1/jupyterlab/static/5201.8866042bae350659528a.js +1 -0
  237. jupyterlab-4.0.1/jupyterlab/static/5203.c002d40ac647dc6e1d61.js +1 -0
  238. jupyterlab-4.0.1/jupyterlab/static/5331.0cd3f010bb08983ec3fd.js +1 -0
  239. jupyterlab-4.0.1/jupyterlab/static/5440.2541fcda12b661665148.js +1 -0
  240. jupyterlab-4.0.1/jupyterlab/static/5521.ce4a0274596e0325374c.js +1 -0
  241. jupyterlab-4.0.1/jupyterlab/static/5746.e4434ef2027bcc5ed0c9.js +1 -0
  242. jupyterlab-4.0.1/jupyterlab/static/581.2b878ed37172aced15b5.js +1 -0
  243. jupyterlab-4.0.1/jupyterlab/static/5881.3946238aa4afdcf4f964.js +1 -0
  244. jupyterlab-4.0.1/jupyterlab/static/5959.a6b1fd3b03d3649ea8b1.js +1 -0
  245. jupyterlab-4.0.1/jupyterlab/static/6059.d83e7323b2ee1aa16009.js +1 -0
  246. jupyterlab-4.0.1/jupyterlab/static/6163.f5b51a9f0df4846ba40f.js +1 -0
  247. jupyterlab-4.0.1/jupyterlab/static/6207.a8079c8d8a61039dd530.js +1 -0
  248. jupyterlab-4.0.1/jupyterlab/static/6267.1def2916929e185ab9fc.js +1 -0
  249. jupyterlab-4.0.1/jupyterlab/static/6359.4b994bfd6b1dea2d6fe3.js +1 -0
  250. jupyterlab-4.0.1/jupyterlab/static/6443.e6b52d3732b3e8513a71.js +1 -0
  251. jupyterlab-4.0.1/jupyterlab/static/6532.bb7137729a2d6d4e6ddf.js +1 -0
  252. jupyterlab-4.0.1/jupyterlab/static/6560.f42276a0b1b92aea515b.js +1 -0
  253. jupyterlab-4.0.1/jupyterlab/static/6595.6a1d7e1abbf186dd119b.js +1 -0
  254. jupyterlab-4.0.1/jupyterlab/static/6686.3c518aa6e5f9785fb486.js +1 -0
  255. jupyterlab-4.0.1/jupyterlab/static/6815.0b699f0c162a24b0dbe3.js +1 -0
  256. jupyterlab-4.0.1/jupyterlab/static/6888.c8807f5159671b15c4f0.js +1 -0
  257. jupyterlab-4.0.1/jupyterlab/static/7080.1330328bb6f46b4da81e.js +1 -0
  258. jupyterlab-4.0.1/jupyterlab/static/7112.d5120c85ebd17620dda0.js +1 -0
  259. jupyterlab-4.0.1/jupyterlab/static/7173.e28f63dbd553818e07d3.js +1 -0
  260. jupyterlab-4.0.1/jupyterlab/static/7245.c0cae8787dcd00b991b7.js +1 -0
  261. jupyterlab-4.0.1/jupyterlab/static/7294.badf85a3180703d63f62.js +2 -0
  262. jupyterlab-4.0.1/jupyterlab/static/7317.af8a7da0f881a22752c1.js +1 -0
  263. jupyterlab-4.0.1/jupyterlab/static/7318.397bf8e913e825b2be27.js +1 -0
  264. jupyterlab-4.0.1/jupyterlab/static/7363.abe8e31a91e113753bae.js +1 -0
  265. jupyterlab-4.0.1/jupyterlab/static/7384.60351e008d8f687e8fcc.js +1 -0
  266. jupyterlab-4.0.1/jupyterlab/static/7390.8253478b90f756692702.js +1 -0
  267. jupyterlab-4.0.1/jupyterlab/static/745.85516a9bb83bcd94d00d.js +1 -0
  268. jupyterlab-4.0.1/jupyterlab/static/7451.c0257dbfdd320e2c21f5.js +2 -0
  269. jupyterlab-4.0.1/jupyterlab/static/7472.45937991b1d47dacce3e.js +1 -0
  270. jupyterlab-4.0.1/jupyterlab/static/7473.fbfbca73579a4ec8cd84.js +1 -0
  271. jupyterlab-4.0.1/jupyterlab/static/7508.b902347f820c70cd386a.js +1 -0
  272. jupyterlab-4.0.1/jupyterlab/static/7511.b381a696cf806983c654.js +1 -0
  273. jupyterlab-4.0.1/jupyterlab/static/7517.f3e5d420f4af90d442dd.js +1 -0
  274. jupyterlab-4.0.1/jupyterlab/static/7669.343e259c4c8269479f5b.js +1 -0
  275. jupyterlab-4.0.1/jupyterlab/static/7702.c479c69f7a532f7b3fd5.js +1 -0
  276. jupyterlab-4.0.1/jupyterlab/static/7731.26db150e967313b7a7e2.js +1 -0
  277. jupyterlab-4.0.1/jupyterlab/static/7763.19a095394000f9ef62bd.js +2 -0
  278. jupyterlab-4.0.1/jupyterlab/static/7775.3e0dee729369fe3d5008.js +1 -0
  279. jupyterlab-4.0.1/jupyterlab/static/7794.5137ecaaae1e59bf414d.js +1 -0
  280. jupyterlab-4.0.1/jupyterlab/static/7823.817687f13e9a6781fdd3.js +1 -0
  281. jupyterlab-4.0.1/jupyterlab/static/7827.e36d073d947bf02a05e3.js +1 -0
  282. jupyterlab-4.0.1/jupyterlab/static/7848.e83aa4b90ae87209abb8.js +1 -0
  283. jupyterlab-4.0.1/jupyterlab/static/786.8a99ee7dbd7bd0eb9dce.js +1 -0
  284. jupyterlab-4.0.1/jupyterlab/static/7877.a4c46a784149533b91d4.js +1 -0
  285. jupyterlab-4.0.1/jupyterlab/static/7887.128a155df5d25e88c0ce.js +1 -0
  286. jupyterlab-4.0.1/jupyterlab/static/795.47ab66037ef33f808f09.js +1 -0
  287. jupyterlab-4.0.1/jupyterlab/static/8002.25f64485372af5158c83.js +1 -0
  288. jupyterlab-4.0.1/jupyterlab/static/8010.1cf8237e9def8404f355.js +1 -0
  289. jupyterlab-4.0.1/jupyterlab/static/8012.40cb006f0c180ebafa91.js +1 -0
  290. jupyterlab-4.0.1/jupyterlab/static/812.ecc02d465feb9d9e08be.js +1 -0
  291. jupyterlab-4.0.1/jupyterlab/static/8285.1eac7b7582569be1c3a8.js +1 -0
  292. jupyterlab-4.0.1/jupyterlab/static/830.8ddf7d2d91f66a8e4d36.js +1 -0
  293. jupyterlab-4.0.1/jupyterlab/static/8302.d7b14073066059f3eeef.js +1 -0
  294. jupyterlab-4.0.1/jupyterlab/static/8319.80fcbc832e1eb20b71e7.js +1 -0
  295. jupyterlab-4.0.1/jupyterlab/static/8347.573b699e3590729bfa8a.js +1 -0
  296. jupyterlab-4.0.1/jupyterlab/static/8405.154ba4b17a2dec22a355.js +1 -0
  297. jupyterlab-4.0.1/jupyterlab/static/8493.fc635229db38e6fc6aa2.js +1 -0
  298. jupyterlab-4.0.1/jupyterlab/static/8498.27a245b23921914bf5c2.js +1 -0
  299. jupyterlab-4.0.1/jupyterlab/static/8512.1af96655287fd124877b.js +1 -0
  300. jupyterlab-4.0.1/jupyterlab/static/8678.dcd3dab9025b13eb9be8.js +1 -0
  301. jupyterlab-4.0.1/jupyterlab/static/8710.5fc5ecb762fb4494db02.js +1 -0
  302. jupyterlab-4.0.1/jupyterlab/static/8768.4a80caab00174c50eb10.js +2 -0
  303. jupyterlab-4.0.1/jupyterlab/static/8771.327a202178f82f3b15b8.js +1 -0
  304. jupyterlab-4.0.1/jupyterlab/static/8787.4d36d28dcf94bf59cbfe.js +1 -0
  305. jupyterlab-4.0.1/jupyterlab/static/8805.0f14a91b024b59c039a7.js +1 -0
  306. jupyterlab-4.0.1/jupyterlab/static/8823.2ff947bcd96cc0723058.js +1 -0
  307. jupyterlab-4.0.1/jupyterlab/static/8875.88988caaba1e33edad5b.js +1 -0
  308. jupyterlab-4.0.1/jupyterlab/static/9.0e0cba0ccc2a4b670600.js +1 -0
  309. jupyterlab-4.0.1/jupyterlab/static/9030.260bc05e28eccff70ae8.js +1 -0
  310. jupyterlab-4.0.1/jupyterlab/static/9041.df39043656c7233552e4.js +1 -0
  311. jupyterlab-4.0.1/jupyterlab/static/9055.bd710a8db8883a836b59.js +1 -0
  312. jupyterlab-4.0.1/jupyterlab/static/9065.5305259c65dfa1c99874.js +1 -0
  313. jupyterlab-4.0.1/jupyterlab/static/9109.fa3ee74a5c0f378f4d51.js +1 -0
  314. jupyterlab-4.0.1/jupyterlab/static/9192.db4337a516b7f38d1f89.js +1 -0
  315. jupyterlab-4.0.1/jupyterlab/static/9222.1c2a8e69a2de57dd1984.js +1 -0
  316. jupyterlab-4.0.1/jupyterlab/static/9230.58b8c42b730e1a56e69b.js +1 -0
  317. jupyterlab-4.0.1/jupyterlab/static/9265.bc2b66a4502cdfcfc14f.js +1 -0
  318. jupyterlab-4.0.1/jupyterlab/static/9362.823dcfac216f8057452d.js +1 -0
  319. jupyterlab-4.0.1/jupyterlab/static/9409.34c33ed11e2d6f318480.js +1 -0
  320. jupyterlab-4.0.1/jupyterlab/static/942.93c8de61ea9ea08ec097.js +1 -0
  321. jupyterlab-4.0.1/jupyterlab/static/9421.022dc7b4e9a2c80c32c2.js +1 -0
  322. jupyterlab-4.0.1/jupyterlab/static/9445.fe5e9e5b728de8d15873.js +1 -0
  323. jupyterlab-4.0.1/jupyterlab/static/9621.9cbfa52c42927bb398b4.js +1 -0
  324. jupyterlab-4.0.1/jupyterlab/static/9653.d93c93e084cd5e93cd2d.js +1 -0
  325. jupyterlab-4.0.1/jupyterlab/static/9738.c0234a1f7f6ac262f560.js +1 -0
  326. jupyterlab-4.0.1/jupyterlab/static/9747.6dd327f4928c6989ea8a.js +2 -0
  327. jupyterlab-4.0.1/jupyterlab/static/9826.406d2a71dc45995bc549.js +2 -0
  328. jupyterlab-4.0.1/jupyterlab/static/build_log.json +712 -0
  329. jupyterlab-4.0.1/jupyterlab/static/index.html +25 -0
  330. jupyterlab-4.0.1/jupyterlab/static/jlab_core.b473ae48d19e9025bb00.js +1 -0
  331. jupyterlab-4.0.1/jupyterlab/static/main.2e4496723a77dfd7088a.js +1 -0
  332. jupyterlab-4.0.1/jupyterlab/static/package.json +331 -0
  333. jupyterlab-4.0.1/jupyterlab/static/third-party-licenses.json +1762 -0
  334. jupyterlab-4.0.1/jupyterlab/tests/mock_packages/extension/package.json +17 -0
  335. jupyterlab-4.0.1/jupyterlab/tests/mock_packages/interop/consumer/package.json +20 -0
  336. jupyterlab-4.0.1/jupyterlab/tests/mock_packages/interop/provider/package.json +14 -0
  337. jupyterlab-4.0.1/jupyterlab/tests/mock_packages/interop/token/package.json +8 -0
  338. jupyterlab-4.0.1/jupyterlab/tests/test_announcements.py +231 -0
  339. jupyterlab-4.0.1/jupyterlab/tests/test_extensions.py +344 -0
  340. jupyterlab-4.0.1/jupyterlab/tests/test_jupyterlab.py +794 -0
  341. jupyterlab-4.0.1/jupyterlab/upgrade_extension.py +315 -0
  342. jupyterlab-4.0.1/package.json +134 -0
  343. jupyterlab-4.0.1/pyproject.toml +308 -0
  344. jupyterlab-4.0.0rc0/CHANGELOG.md +0 -8324
  345. jupyterlab-4.0.0rc0/PKG-INFO +0 -298
  346. jupyterlab-4.0.0rc0/README.md +0 -180
  347. jupyterlab-4.0.0rc0/RELEASE.md +0 -482
  348. jupyterlab-4.0.0rc0/buildapi.py +0 -38
  349. jupyterlab-4.0.0rc0/docs/scripts/graph-dependencies.js +0 -88
  350. jupyterlab-4.0.0rc0/docs/source/conf.py +0 -418
  351. jupyterlab-4.0.0rc0/docs/source/developer/components.rst +0 -68
  352. jupyterlab-4.0.0rc0/docs/source/developer/contributing.rst +0 -1131
  353. jupyterlab-4.0.0rc0/docs/source/developer/css.rst +0 -253
  354. jupyterlab-4.0.0rc0/docs/source/developer/performance.rst +0 -85
  355. jupyterlab-4.0.0rc0/docs/source/developer/repo.rst +0 -133
  356. jupyterlab-4.0.0rc0/docs/source/extension/extension_dev.rst +0 -798
  357. jupyterlab-4.0.0rc0/docs/source/extension/extension_migration.rst +0 -886
  358. jupyterlab-4.0.0rc0/docs/source/extension/extension_tutorial.rst +0 -1114
  359. jupyterlab-4.0.0rc0/docs/source/getting_started/faq.rst +0 -44
  360. jupyterlab-4.0.0rc0/docs/source/getting_started/installation.rst +0 -219
  361. jupyterlab-4.0.0rc0/docs/source/getting_started/starting.rst +0 -45
  362. jupyterlab-4.0.0rc0/docs/source/user/announcements.rst +0 -60
  363. jupyterlab-4.0.0rc0/docs/source/user/commands.rst +0 -49
  364. jupyterlab-4.0.0rc0/docs/source/user/directories.rst +0 -327
  365. jupyterlab-4.0.0rc0/docs/source/user/interface_customization.rst +0 -315
  366. jupyterlab-4.0.0rc0/docs/source/user/toc.rst +0 -86
  367. jupyterlab-4.0.0rc0/galata/README.md +0 -666
  368. jupyterlab-4.0.0rc0/galata/extension/package.json +0 -56
  369. jupyterlab-4.0.0rc0/galata/extension/src/global.ts +0 -754
  370. jupyterlab-4.0.0rc0/galata/package.json +0 -74
  371. jupyterlab-4.0.0rc0/galata/src/galata.ts +0 -1034
  372. jupyterlab-4.0.0rc0/galata/src/helpers/notebook.ts +0 -1217
  373. jupyterlab-4.0.0rc0/galata/test/documentation/customization.test.ts-snapshots/customized-menu-bar-documentation-linux.png +0 -0
  374. jupyterlab-4.0.0rc0/galata/test/documentation/customization.test.ts-snapshots/customized-terminal-position-single-documentation-linux.png +0 -0
  375. jupyterlab-4.0.0rc0/galata/test/documentation/customization.test.ts-snapshots/default-menu-bar-documentation-linux.png +0 -0
  376. jupyterlab-4.0.0rc0/galata/test/documentation/customization.test.ts-snapshots/default-terminal-position-single-documentation-linux.png +0 -0
  377. jupyterlab-4.0.0rc0/galata/test/documentation/extension_manager.test.ts-snapshots/extensions-default-documentation-linux.png +0 -0
  378. jupyterlab-4.0.0rc0/galata/test/documentation/extension_manager.test.ts-snapshots/extensions-disabled-documentation-linux.png +0 -0
  379. jupyterlab-4.0.0rc0/galata/test/documentation/extension_manager.test.ts-snapshots/extensions-enabled-documentation-linux.png +0 -0
  380. jupyterlab-4.0.0rc0/galata/test/documentation/extension_manager.test.ts-snapshots/extensions-search-documentation-linux.png +0 -0
  381. jupyterlab-4.0.0rc0/galata/test/documentation/general.test.ts +0 -774
  382. jupyterlab-4.0.0rc0/galata/test/documentation/general.test.ts-snapshots/file-formats-html-display-documentation-linux.png +0 -0
  383. jupyterlab-4.0.0rc0/galata/test/documentation/general.test.ts-snapshots/interface-jupyterlab-documentation-linux.png +0 -0
  384. jupyterlab-4.0.0rc0/galata/test/documentation/general.test.ts-snapshots/interface-left-documentation-linux.png +0 -0
  385. jupyterlab-4.0.0rc0/galata/test/documentation/general.test.ts-snapshots/interface-tabs-menu-documentation-linux.png +0 -0
  386. jupyterlab-4.0.0rc0/galata/test/documentation/general.test.ts-snapshots/shortcuts-help-documentation-linux.png +0 -0
  387. jupyterlab-4.0.0rc0/galata/test/documentation/general.test.ts-snapshots/terminal-layout-documentation-linux.png +0 -0
  388. jupyterlab-4.0.0rc0/galata/test/documentation/internationalization.test.ts-snapshots/language-chinese-documentation-linux.png +0 -0
  389. jupyterlab-4.0.0rc0/galata/test/jupyterlab/announcements.test.ts +0 -248
  390. jupyterlab-4.0.0rc0/galata/test/jupyterlab/completer.test.ts-snapshots/completer-console-jupyterlab-linux.png +0 -0
  391. jupyterlab-4.0.0rc0/galata/test/jupyterlab/general.test.ts-snapshots/dark-theme-jupyterlab-linux.png +0 -0
  392. jupyterlab-4.0.0rc0/galata/test/jupyterlab/general.test.ts-snapshots/launch-jupyterlab-linux.png +0 -0
  393. jupyterlab-4.0.0rc0/galata/test/jupyterlab/general.test.ts-snapshots/simple-mode-jupyterlab-linux.png +0 -0
  394. jupyterlab-4.0.0rc0/galata/test/jupyterlab/kernel.test.ts +0 -140
  395. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notebook-create.test.ts-snapshots/run-cells-jupyterlab-linux.png +0 -0
  396. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notebook-edit.test.ts +0 -168
  397. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notebook-edit.test.ts-snapshots/move-cell-up-jupyterlab-linux.png +0 -0
  398. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notebook-markdown.test.ts-snapshots/do-not-highlight-standalone-dollar-jupyterlab-linux.png +0 -0
  399. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notebook-markdown.test.ts-snapshots/highlight-latex-jupyterlab-linux.png +0 -0
  400. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notebook-replace.test.ts-snapshots/replace-all-jupyterlab-linux.png +0 -0
  401. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notebook-replace.test.ts-snapshots/replace-in-cell-jupyterlab-linux.png +0 -0
  402. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notebook-run-vega.test.ts-snapshots/run-cells-dark-vega-jupyterlab-linux.png +0 -0
  403. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notebook-run-vega.test.ts-snapshots/run-cells-vega-jupyterlab-linux.png +0 -0
  404. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notebook-run.test.ts +0 -82
  405. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notebook-scroll.test.ts +0 -48
  406. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notebook-search.test.ts +0 -480
  407. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notebook-search.test.ts-snapshots/highlight-previous-element-jupyterlab-linux.png +0 -0
  408. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notebook-search.test.ts-snapshots/search-in-selected-cells-jupyterlab-linux.png +0 -0
  409. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notebook-search.test.ts-snapshots/search-in-selected-text-jupyterlab-linux.png +0 -0
  410. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notebook-search.test.ts-snapshots/search-in-two-selected-cells-jupyterlab-linux.png +0 -0
  411. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notebook-search.test.ts-snapshots/search-jupyterlab-linux.png +0 -0
  412. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notebook-search.test.ts-snapshots/search-on-deleted-cell-jupyterlab-linux.png +0 -0
  413. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notebook-search.test.ts-snapshots/search-on-new-cell-jupyterlab-linux.png +0 -0
  414. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notebook-toolbar.test.ts-snapshots/paste-cell-jupyterlab-linux.png +0 -0
  415. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notification.test.ts-snapshots/notification-accent-action-jupyterlab-linux.png +0 -0
  416. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notification.test.ts-snapshots/notification-center-jupyterlab-linux.png +0 -0
  417. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notification.test.ts-snapshots/notification-default-action-jupyterlab-linux.png +0 -0
  418. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notification.test.ts-snapshots/notification-default-jupyterlab-linux.png +0 -0
  419. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notification.test.ts-snapshots/notification-error-jupyterlab-linux.png +0 -0
  420. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notification.test.ts-snapshots/notification-in-progress-jupyterlab-linux.png +0 -0
  421. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notification.test.ts-snapshots/notification-info-jupyterlab-linux.png +0 -0
  422. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notification.test.ts-snapshots/notification-link-action-jupyterlab-linux.png +0 -0
  423. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notification.test.ts-snapshots/notification-success-jupyterlab-linux.png +0 -0
  424. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notification.test.ts-snapshots/notification-warn-action-jupyterlab-linux.png +0 -0
  425. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notification.test.ts-snapshots/notification-warning-jupyterlab-linux.png +0 -0
  426. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notification.test.ts-snapshots/notification-with-actions-jupyterlab-linux.png +0 -0
  427. jupyterlab-4.0.0rc0/galata/test/jupyterlab/notification.test.ts-snapshots/text-content-notification-jupyterlab-linux.txt +0 -1
  428. jupyterlab-4.0.0rc0/galata/test/jupyterlab/search.test.ts +0 -59
  429. jupyterlab-4.0.0rc0/galata/test/jupyterlab/settings.test.ts-snapshots/settings-plugin-list-jupyterlab-linux.png +0 -0
  430. jupyterlab-4.0.0rc0/galata/test/jupyterlab/sidebars.test.ts-snapshots/filebrowser-right-jupyterlab-linux.png +0 -0
  431. jupyterlab-4.0.0rc0/galata/test/jupyterlab/sidebars.test.ts-snapshots/opened-sidebar-extensionmanager-main-view-jupyterlab-linux.png +0 -0
  432. jupyterlab-4.0.0rc0/galata/test/jupyterlab/sidebars.test.ts-snapshots/opened-sidebar-filebrowser-jupyterlab-linux.png +0 -0
  433. jupyterlab-4.0.0rc0/galata/test/jupyterlab/windowed-notebook.test.ts +0 -160
  434. jupyterlab-4.0.0rc0/galata/tsconfig.tsbuildinfo +0 -1
  435. jupyterlab-4.0.0rc0/jupyterlab/_version.py +0 -22
  436. jupyterlab-4.0.0rc0/jupyterlab/browser_check.py +0 -209
  437. jupyterlab-4.0.0rc0/jupyterlab/commands.py +0 -2456
  438. jupyterlab-4.0.0rc0/jupyterlab/federated_labextensions.py +0 -483
  439. jupyterlab-4.0.0rc0/jupyterlab/galata/@jupyterlab/galata-extension/build_log.json +0 -668
  440. jupyterlab-4.0.0rc0/jupyterlab/galata/@jupyterlab/galata-extension/package.json +0 -60
  441. jupyterlab-4.0.0rc0/jupyterlab/galata/@jupyterlab/galata-extension/static/lib_extension_index_js.ccd98d232ab9f83fe377.js +0 -698
  442. jupyterlab-4.0.0rc0/jupyterlab/galata/@jupyterlab/galata-extension/static/remoteEntry.87fecbe8092d74288b45.js +0 -547
  443. jupyterlab-4.0.0rc0/jupyterlab/handlers/announcements.py +0 -266
  444. jupyterlab-4.0.0rc0/jupyterlab/jlpmapp.py +0 -43
  445. jupyterlab-4.0.0rc0/jupyterlab/labextensions.py +0 -539
  446. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/application-extension/package.json.orig +0 -70
  447. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/apputils-extension/package.json.orig +0 -78
  448. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/cell-toolbar-extension/package.json.orig +0 -55
  449. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/celltags-extension/package.json.orig +0 -63
  450. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/codemirror-extension/package.json.orig +0 -69
  451. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/completer-extension/package.json.orig +0 -62
  452. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/console-extension/package.json.orig +0 -72
  453. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/csvviewer-extension/package.json.orig +0 -66
  454. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/debugger-extension/package.json.orig +0 -79
  455. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/docmanager-extension/package.json.orig +0 -72
  456. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/documentsearch-extension/package.json.orig +0 -56
  457. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/extensionmanager-extension/package.json.orig +0 -62
  458. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/filebrowser-extension/browser.json +0 -226
  459. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/filebrowser-extension/package.json.orig +0 -70
  460. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/fileeditor-extension/package.json.orig +0 -83
  461. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/help-extension/package.json.orig +0 -67
  462. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/htmlviewer-extension/package.json.orig +0 -59
  463. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/hub-extension/package.json.orig +0 -55
  464. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/imageviewer-extension/package.json.orig +0 -60
  465. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/inspector-extension/package.json.orig +0 -63
  466. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/launcher-extension/package.json.orig +0 -64
  467. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/logconsole-extension/package.json.orig +0 -64
  468. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/lsp-extension/package.json.orig +0 -63
  469. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/mainmenu-extension/package.json.orig +0 -67
  470. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/markdownviewer-extension/package.json.orig +0 -63
  471. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/mathjax-extension/package.json.orig +0 -63
  472. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/metadataform-extension/package.json.orig +0 -62
  473. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/notebook-extension/package.json.orig +0 -93
  474. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/notebook-extension/tracker.json +0 -808
  475. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/running-extension/package.json.orig +0 -67
  476. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/settingeditor-extension/package.json.orig +0 -65
  477. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/shortcuts-extension/package.json.orig +0 -72
  478. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/statusbar-extension/package.json.orig +0 -61
  479. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/terminal-extension/package.json.orig +0 -67
  480. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/toc-extension/package.json.orig +0 -63
  481. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/toc-extension/registry.json +0 -66
  482. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/tooltip-extension/package.json.orig +0 -68
  483. jupyterlab-4.0.0rc0/jupyterlab/schemas/@jupyterlab/translation-extension/package.json.orig +0 -60
  484. jupyterlab-4.0.0rc0/jupyterlab/staging/package.json +0 -333
  485. jupyterlab-4.0.0rc0/jupyterlab/staging/yarn.lock +0 -9968
  486. jupyterlab-4.0.0rc0/jupyterlab/static/1036.354e207003e2cf47aedd.js +0 -3
  487. jupyterlab-4.0.0rc0/jupyterlab/static/1085.36072613d5461d9bc753.js +0 -2
  488. jupyterlab-4.0.0rc0/jupyterlab/static/1142.228652acc76ea404048d.js +0 -2
  489. jupyterlab-4.0.0rc0/jupyterlab/static/1168.c35e323bbb862d702088.js +0 -2
  490. jupyterlab-4.0.0rc0/jupyterlab/static/1294.d1735230fc7e9a21e8ad.js +0 -2
  491. jupyterlab-4.0.0rc0/jupyterlab/static/141.cc5a6b71439fc84939d6.js +0 -3
  492. jupyterlab-4.0.0rc0/jupyterlab/static/1410.3c7674af70dc2687bc16.js +0 -2
  493. jupyterlab-4.0.0rc0/jupyterlab/static/1420.78e8c0a87a74a5c616ed.js +0 -2
  494. jupyterlab-4.0.0rc0/jupyterlab/static/1448.b12a8066ee2f6c65bbe7.js +0 -2
  495. jupyterlab-4.0.0rc0/jupyterlab/static/1452.40a07727b78492442421.js +0 -2
  496. jupyterlab-4.0.0rc0/jupyterlab/static/1467.3ee02202fa11332e5b99.js +0 -2
  497. jupyterlab-4.0.0rc0/jupyterlab/static/1550.373973a4651e6d0cf8b8.js +0 -2
  498. jupyterlab-4.0.0rc0/jupyterlab/static/1581.41bb01f5d4047061f002.js +0 -9
  499. jupyterlab-4.0.0rc0/jupyterlab/static/1608.cf6b65b59e4ff19b5622.js +0 -2
  500. jupyterlab-4.0.0rc0/jupyterlab/static/1716.9bf4d1620425b087fc9a.js +0 -2
  501. jupyterlab-4.0.0rc0/jupyterlab/static/1776.5218a3aec719d764977f.js +0 -2
  502. jupyterlab-4.0.0rc0/jupyterlab/static/1861.762ed9052ac12c338de6.js +0 -2
  503. jupyterlab-4.0.0rc0/jupyterlab/static/1903.73f4b592ee795a6b61ab.js +0 -2
  504. jupyterlab-4.0.0rc0/jupyterlab/static/1945.dd876fc4110972ab9979.js +0 -2
  505. jupyterlab-4.0.0rc0/jupyterlab/static/1954.8b80dffad1ab65f151b3.js +0 -2
  506. jupyterlab-4.0.0rc0/jupyterlab/static/1993.2f82b3bafd40aa9605d3.js +0 -2
  507. jupyterlab-4.0.0rc0/jupyterlab/static/2039.7b8fad64fe512bdd5632.js +0 -2
  508. jupyterlab-4.0.0rc0/jupyterlab/static/2090.7c57efa83d49c74accca.js +0 -2
  509. jupyterlab-4.0.0rc0/jupyterlab/static/2091.0c05f2a544c7ab069706.js +0 -2
  510. jupyterlab-4.0.0rc0/jupyterlab/static/2104.60b16a03f27190035834.js +0 -2
  511. jupyterlab-4.0.0rc0/jupyterlab/static/2145.2ed879d424a6ee02d531.js +0 -2
  512. jupyterlab-4.0.0rc0/jupyterlab/static/2254.e2a3fba0028e0c0ac3d1.js +0 -2
  513. jupyterlab-4.0.0rc0/jupyterlab/static/2256.2d5aa4958775ab49e938.js +0 -2
  514. jupyterlab-4.0.0rc0/jupyterlab/static/2295.cf513646f24b357692bc.js +0 -2
  515. jupyterlab-4.0.0rc0/jupyterlab/static/2320.24d37d8ae619f877e334.js +0 -2
  516. jupyterlab-4.0.0rc0/jupyterlab/static/2363.d86742077aed696694b9.js +0 -2
  517. jupyterlab-4.0.0rc0/jupyterlab/static/2459.33094feaa394e0b72837.js +0 -2
  518. jupyterlab-4.0.0rc0/jupyterlab/static/2485.2b62703ab935947006af.js +0 -2
  519. jupyterlab-4.0.0rc0/jupyterlab/static/2617.af93dca9ab5f243bf60e.js +0 -2
  520. jupyterlab-4.0.0rc0/jupyterlab/static/2646.7f21306af05485d0bc39.js +0 -2
  521. jupyterlab-4.0.0rc0/jupyterlab/static/2800.c2e6ab174418754a2e4c.js +0 -2
  522. jupyterlab-4.0.0rc0/jupyterlab/static/2857.008f1a1c91b1fa06999e.js +0 -2
  523. jupyterlab-4.0.0rc0/jupyterlab/static/2909.9a160a86a2172c389238.js +0 -2
  524. jupyterlab-4.0.0rc0/jupyterlab/static/292.7c2a7b3af0bd14d7f49e.js +0 -2
  525. jupyterlab-4.0.0rc0/jupyterlab/static/2929.686155e4d274cfa9cd32.js +0 -2
  526. jupyterlab-4.0.0rc0/jupyterlab/static/2953.9f98afe680e23dcfef6a.js +0 -2
  527. jupyterlab-4.0.0rc0/jupyterlab/static/2990.6dd42ddb50a872f3a914.js +0 -2
  528. jupyterlab-4.0.0rc0/jupyterlab/static/2995.960715f713d01070e5a7.js +0 -2
  529. jupyterlab-4.0.0rc0/jupyterlab/static/3056.7ac8b30ccd5aad42e0c7.js +0 -2
  530. jupyterlab-4.0.0rc0/jupyterlab/static/3123.1df15835a1681fb411f4.js +0 -2
  531. jupyterlab-4.0.0rc0/jupyterlab/static/3127.0bd0b2da7c02c81dc7d7.js +0 -2
  532. jupyterlab-4.0.0rc0/jupyterlab/static/3306.19d86a7230d467f0a01a.js +0 -2
  533. jupyterlab-4.0.0rc0/jupyterlab/static/3308.49c993cd8597acb46935.js +0 -2
  534. jupyterlab-4.0.0rc0/jupyterlab/static/3520.e6ebe4b53c7e9cd621de.js +0 -2
  535. jupyterlab-4.0.0rc0/jupyterlab/static/3528.43caccb0fad83efed270.js +0 -2
  536. jupyterlab-4.0.0rc0/jupyterlab/static/3547.5eb9946b637831e09baa.js +0 -2
  537. jupyterlab-4.0.0rc0/jupyterlab/static/3549.05e5283aa1815f6c0b86.js +0 -2
  538. jupyterlab-4.0.0rc0/jupyterlab/static/3601.92dd7c517619f0141013.js +0 -2
  539. jupyterlab-4.0.0rc0/jupyterlab/static/3724.a5c109f852173f94a7ca.js +0 -2
  540. jupyterlab-4.0.0rc0/jupyterlab/static/378.1bd75509552813ebea37.js +0 -2
  541. jupyterlab-4.0.0rc0/jupyterlab/static/3783.479981b69abd78facaab.js +0 -2
  542. jupyterlab-4.0.0rc0/jupyterlab/static/3807.33034141b48b767e6974.js +0 -2
  543. jupyterlab-4.0.0rc0/jupyterlab/static/383.9310b96567c194d431c6.js +0 -2
  544. jupyterlab-4.0.0rc0/jupyterlab/static/3871.df44ca1fd456387f9f2f.js +0 -2
  545. jupyterlab-4.0.0rc0/jupyterlab/static/3923.7ffdf2670160c7be7da5.js +0 -2
  546. jupyterlab-4.0.0rc0/jupyterlab/static/3935.200aeb85f6884cbd976d.js +0 -3
  547. jupyterlab-4.0.0rc0/jupyterlab/static/3962.68d34fc6c9af390e95f2.js +0 -2
  548. jupyterlab-4.0.0rc0/jupyterlab/static/4008.db9f2f6075d70700b7e5.js +0 -3
  549. jupyterlab-4.0.0rc0/jupyterlab/static/4017.7cf5c0f4ab2e2fe099f4.js +0 -2
  550. jupyterlab-4.0.0rc0/jupyterlab/static/4043.7d4235e5ef237743c246.js +0 -2
  551. jupyterlab-4.0.0rc0/jupyterlab/static/4139.640d2da69a839bbb23a1.js +0 -2
  552. jupyterlab-4.0.0rc0/jupyterlab/static/4155.784ca1752696680bf373.js +0 -2
  553. jupyterlab-4.0.0rc0/jupyterlab/static/4254.ce0aa290c389adf4431d.js +0 -2
  554. jupyterlab-4.0.0rc0/jupyterlab/static/4283.5ea107a9413cf350657d.js +0 -2
  555. jupyterlab-4.0.0rc0/jupyterlab/static/4291.8d8ac33138be53989c72.js +0 -2
  556. jupyterlab-4.0.0rc0/jupyterlab/static/4405.2a2632db9de9492d375b.js +0 -2
  557. jupyterlab-4.0.0rc0/jupyterlab/static/4419.8d7204ceb62af06d8422.js +0 -2
  558. jupyterlab-4.0.0rc0/jupyterlab/static/4452.e12b3923387884215888.js +0 -2
  559. jupyterlab-4.0.0rc0/jupyterlab/static/4519.38b6c4e1bfad86478cf2.js +0 -2
  560. jupyterlab-4.0.0rc0/jupyterlab/static/4523.05c42d7f3f3a98186a9e.js +0 -2
  561. jupyterlab-4.0.0rc0/jupyterlab/static/4562.29166c568a222122f128.js +0 -2
  562. jupyterlab-4.0.0rc0/jupyterlab/static/4591.314ddb1d18112749d6d0.js +0 -2
  563. jupyterlab-4.0.0rc0/jupyterlab/static/46.0fb036ed8ad4b2af0e5e.js +0 -2
  564. jupyterlab-4.0.0rc0/jupyterlab/static/4743.290178067fcbe2b935dd.js +0 -2
  565. jupyterlab-4.0.0rc0/jupyterlab/static/4878.9c8b7dff9f2aa987457d.js +0 -2
  566. jupyterlab-4.0.0rc0/jupyterlab/static/49.071d0529e16d40b6adec.js +0 -2
  567. jupyterlab-4.0.0rc0/jupyterlab/static/4986.c913e40a040441195fd6.js +0 -2
  568. jupyterlab-4.0.0rc0/jupyterlab/static/5041.8834f33c4d437bd3d845.js +0 -2
  569. jupyterlab-4.0.0rc0/jupyterlab/static/5157.30c39d9fdd6fa7da38e2.js +0 -2
  570. jupyterlab-4.0.0rc0/jupyterlab/static/5201.2f74ddb54baa49950553.js +0 -2
  571. jupyterlab-4.0.0rc0/jupyterlab/static/5203.d020c43293395b5d5c55.js +0 -2
  572. jupyterlab-4.0.0rc0/jupyterlab/static/5331.af889dce3fae12a95db2.js +0 -2
  573. jupyterlab-4.0.0rc0/jupyterlab/static/5440.da433a303f2c0f84c50a.js +0 -2
  574. jupyterlab-4.0.0rc0/jupyterlab/static/5521.f65521bcfb0c479b5fba.js +0 -2
  575. jupyterlab-4.0.0rc0/jupyterlab/static/5746.cf65a370da8f95dd84bf.js +0 -2
  576. jupyterlab-4.0.0rc0/jupyterlab/static/5787.ad586e233074edc4f3b3.js +0 -2
  577. jupyterlab-4.0.0rc0/jupyterlab/static/581.67a15269b8e899ea2588.js +0 -2
  578. jupyterlab-4.0.0rc0/jupyterlab/static/5881.c7ae1a260275cb511eda.js +0 -2
  579. jupyterlab-4.0.0rc0/jupyterlab/static/5959.41c3dbb934f7aa83e2af.js +0 -2
  580. jupyterlab-4.0.0rc0/jupyterlab/static/6059.8c34a203056f335cd3ef.js +0 -2
  581. jupyterlab-4.0.0rc0/jupyterlab/static/6163.231924d17191f1a9a738.js +0 -2
  582. jupyterlab-4.0.0rc0/jupyterlab/static/6207.814f707a6c65e513c435.js +0 -2
  583. jupyterlab-4.0.0rc0/jupyterlab/static/6243.4fc871a5a7ffb2e327b4.js +0 -2
  584. jupyterlab-4.0.0rc0/jupyterlab/static/6267.d266ae2f83d17cb51279.js +0 -2
  585. jupyterlab-4.0.0rc0/jupyterlab/static/6359.3b09504ed85bb3f71967.js +0 -2
  586. jupyterlab-4.0.0rc0/jupyterlab/static/6532.31ea041feb9581e651bc.js +0 -2
  587. jupyterlab-4.0.0rc0/jupyterlab/static/6560.ab0c7b6320959e28bb5f.js +0 -2
  588. jupyterlab-4.0.0rc0/jupyterlab/static/6595.abbc5e7c2fb4b02cd772.js +0 -2
  589. jupyterlab-4.0.0rc0/jupyterlab/static/6686.8b014a483f060b437bfc.js +0 -2
  590. jupyterlab-4.0.0rc0/jupyterlab/static/6815.c467fac9cf7db8d0e236.js +0 -2
  591. jupyterlab-4.0.0rc0/jupyterlab/static/6888.0baef0bee1ef2e6da6a8.js +0 -2
  592. jupyterlab-4.0.0rc0/jupyterlab/static/7080.0b3dcc246068147dc7a3.js +0 -2
  593. jupyterlab-4.0.0rc0/jupyterlab/static/7112.a59ee2cd442d601beeeb.js +0 -2
  594. jupyterlab-4.0.0rc0/jupyterlab/static/7173.f506f29f75a4ef3362ad.js +0 -2
  595. jupyterlab-4.0.0rc0/jupyterlab/static/7245.ba37c7df026eab813275.js +0 -2
  596. jupyterlab-4.0.0rc0/jupyterlab/static/7294.78897ca348581a9dae29.js +0 -3
  597. jupyterlab-4.0.0rc0/jupyterlab/static/7317.df1ecbfc7db0b063eedf.js +0 -2
  598. jupyterlab-4.0.0rc0/jupyterlab/static/7318.f2a3b81f6c31efdfa363.js +0 -2
  599. jupyterlab-4.0.0rc0/jupyterlab/static/7363.edc5172d0cfe93aa9ff3.js +0 -2
  600. jupyterlab-4.0.0rc0/jupyterlab/static/7384.22b1f6cee6ee941b69fe.js +0 -2
  601. jupyterlab-4.0.0rc0/jupyterlab/static/7390.d604ba379877ae7f0029.js +0 -2
  602. jupyterlab-4.0.0rc0/jupyterlab/static/745.bf57c40e3c4951b45c9e.js +0 -2
  603. jupyterlab-4.0.0rc0/jupyterlab/static/7451.e06be24e1fee9b2e4387.js +0 -3
  604. jupyterlab-4.0.0rc0/jupyterlab/static/7472.115a81eec3a2376bfaf2.js +0 -2
  605. jupyterlab-4.0.0rc0/jupyterlab/static/7473.5fbbbfa3ed0416571c91.js +0 -2
  606. jupyterlab-4.0.0rc0/jupyterlab/static/7508.5a5a9ab2d68fab440433.js +0 -2
  607. jupyterlab-4.0.0rc0/jupyterlab/static/7511.26a3826fcdb9c224c361.js +0 -2
  608. jupyterlab-4.0.0rc0/jupyterlab/static/7517.a4f4854bfeaa756429cf.js +0 -2
  609. jupyterlab-4.0.0rc0/jupyterlab/static/7669.8e939de0670f120fce13.js +0 -2
  610. jupyterlab-4.0.0rc0/jupyterlab/static/7702.d3ddc7062e198eb6e938.js +0 -2
  611. jupyterlab-4.0.0rc0/jupyterlab/static/7731.987cee17c2debd482054.js +0 -2
  612. jupyterlab-4.0.0rc0/jupyterlab/static/7763.bd770588e14bb53e5869.js +0 -3
  613. jupyterlab-4.0.0rc0/jupyterlab/static/7775.1c5a36f2fe2ca66870ae.js +0 -2
  614. jupyterlab-4.0.0rc0/jupyterlab/static/7823.94efbaadd84fc03f9d87.js +0 -2
  615. jupyterlab-4.0.0rc0/jupyterlab/static/7827.fee0cdeaf6e306bbef3d.js +0 -2
  616. jupyterlab-4.0.0rc0/jupyterlab/static/7848.e49d7a34ea52aebaf01b.js +0 -2
  617. jupyterlab-4.0.0rc0/jupyterlab/static/786.22fc9f86673713dce2db.js +0 -2
  618. jupyterlab-4.0.0rc0/jupyterlab/static/7887.313787ace9dbcea19b08.js +0 -2
  619. jupyterlab-4.0.0rc0/jupyterlab/static/795.f94649e166b50e0e5c10.js +0 -2
  620. jupyterlab-4.0.0rc0/jupyterlab/static/8002.0b0117f4610a941dfe76.js +0 -2
  621. jupyterlab-4.0.0rc0/jupyterlab/static/8010.563daf63304867c66dfb.js +0 -2
  622. jupyterlab-4.0.0rc0/jupyterlab/static/8012.29bb6d58445d67c859f8.js +0 -2
  623. jupyterlab-4.0.0rc0/jupyterlab/static/812.c69fe3769b4712f0b9f5.js +0 -2
  624. jupyterlab-4.0.0rc0/jupyterlab/static/8285.629ddf7ab87c4102aee2.js +0 -2
  625. jupyterlab-4.0.0rc0/jupyterlab/static/830.8410da9c86cd6835b3ea.js +0 -2
  626. jupyterlab-4.0.0rc0/jupyterlab/static/8302.9bdc30595ee6efdec06f.js +0 -2
  627. jupyterlab-4.0.0rc0/jupyterlab/static/8319.5820120f3fd5db7531d6.js +0 -2
  628. jupyterlab-4.0.0rc0/jupyterlab/static/8347.299c1a8fba5fd34992e6.js +0 -2
  629. jupyterlab-4.0.0rc0/jupyterlab/static/8405.97a74ca186f6f332afe3.js +0 -2
  630. jupyterlab-4.0.0rc0/jupyterlab/static/8493.e3975ff82548a415fac5.js +0 -2
  631. jupyterlab-4.0.0rc0/jupyterlab/static/8498.160275f2a073c621d541.js +0 -2
  632. jupyterlab-4.0.0rc0/jupyterlab/static/8512.611380c80959de8de429.js +0 -2
  633. jupyterlab-4.0.0rc0/jupyterlab/static/8678.52790d587ae31443289d.js +0 -2
  634. jupyterlab-4.0.0rc0/jupyterlab/static/8710.d0976e9e521791ab5b19.js +0 -2
  635. jupyterlab-4.0.0rc0/jupyterlab/static/8768.5535fe09cf33df5d9c17.js +0 -3
  636. jupyterlab-4.0.0rc0/jupyterlab/static/8771.3b0dc23ebcbc4556837f.js +0 -2
  637. jupyterlab-4.0.0rc0/jupyterlab/static/8787.94119f9e3846afa58ae0.js +0 -2
  638. jupyterlab-4.0.0rc0/jupyterlab/static/8805.52c5236ced15d35e3286.js +0 -2
  639. jupyterlab-4.0.0rc0/jupyterlab/static/8823.bff403d7f8fdfcc8e770.js +0 -2
  640. jupyterlab-4.0.0rc0/jupyterlab/static/8875.6688516ce1efdca10bd7.js +0 -2
  641. jupyterlab-4.0.0rc0/jupyterlab/static/9.4ddaa103c77581b57e6a.js +0 -2
  642. jupyterlab-4.0.0rc0/jupyterlab/static/9030.99bf746c9751360c4a42.js +0 -2
  643. jupyterlab-4.0.0rc0/jupyterlab/static/9041.95e5c457beaff3704105.js +0 -2
  644. jupyterlab-4.0.0rc0/jupyterlab/static/9055.3d9971cc90ec4423025c.js +0 -2
  645. jupyterlab-4.0.0rc0/jupyterlab/static/9065.f8132805e3d89360cc0c.js +0 -2
  646. jupyterlab-4.0.0rc0/jupyterlab/static/9109.fab4c4429f3212218a66.js +0 -2
  647. jupyterlab-4.0.0rc0/jupyterlab/static/9192.1a84f137ac27348644bf.js +0 -2
  648. jupyterlab-4.0.0rc0/jupyterlab/static/9222.f210f5553fdbc1bb5d74.js +0 -2
  649. jupyterlab-4.0.0rc0/jupyterlab/static/9230.8164b052f40aa0a50c85.js +0 -2
  650. jupyterlab-4.0.0rc0/jupyterlab/static/9265.f021a836a4f8c1e4f2f5.js +0 -2
  651. jupyterlab-4.0.0rc0/jupyterlab/static/9362.36daaf0799b79dc3e343.js +0 -2
  652. jupyterlab-4.0.0rc0/jupyterlab/static/9409.d6502e7a30f5163c83f6.js +0 -2
  653. jupyterlab-4.0.0rc0/jupyterlab/static/942.a09138c8d73a8526f131.js +0 -2
  654. jupyterlab-4.0.0rc0/jupyterlab/static/9421.1ef475b30b23aab2395f.js +0 -2
  655. jupyterlab-4.0.0rc0/jupyterlab/static/9445.a6d51ef124feeae99757.js +0 -2
  656. jupyterlab-4.0.0rc0/jupyterlab/static/9621.6cfa60443f1a9b01f07d.js +0 -2
  657. jupyterlab-4.0.0rc0/jupyterlab/static/9653.5fd270c9b26e8552a167.js +0 -2
  658. jupyterlab-4.0.0rc0/jupyterlab/static/9738.c078f05c0d7cb5bde4a9.js +0 -2
  659. jupyterlab-4.0.0rc0/jupyterlab/static/9747.56b3d4353668e791b7de.js +0 -3
  660. jupyterlab-4.0.0rc0/jupyterlab/static/9826.6ba3f316fdde1b6c4143.js +0 -3
  661. jupyterlab-4.0.0rc0/jupyterlab/static/build_log.json +0 -709
  662. jupyterlab-4.0.0rc0/jupyterlab/static/index.html +0 -25
  663. jupyterlab-4.0.0rc0/jupyterlab/static/jlab_core.cb8f6f33d28c0075407e.js +0 -2
  664. jupyterlab-4.0.0rc0/jupyterlab/static/main.632690eb4fc81609b400.js +0 -2
  665. jupyterlab-4.0.0rc0/jupyterlab/static/package.json +0 -333
  666. jupyterlab-4.0.0rc0/jupyterlab/static/third-party-licenses.json +0 -1762
  667. jupyterlab-4.0.0rc0/jupyterlab/tests/mock_packages/extension/package.json +0 -17
  668. jupyterlab-4.0.0rc0/jupyterlab/tests/mock_packages/interop/consumer/package.json +0 -20
  669. jupyterlab-4.0.0rc0/jupyterlab/tests/mock_packages/interop/provider/package.json +0 -14
  670. jupyterlab-4.0.0rc0/jupyterlab/tests/mock_packages/interop/token/package.json +0 -8
  671. jupyterlab-4.0.0rc0/jupyterlab/tests/test_announcements.py +0 -79
  672. jupyterlab-4.0.0rc0/jupyterlab/tests/test_extensions.py +0 -344
  673. jupyterlab-4.0.0rc0/jupyterlab/tests/test_jupyterlab.py +0 -794
  674. jupyterlab-4.0.0rc0/jupyterlab/upgrade_extension.py +0 -315
  675. jupyterlab-4.0.0rc0/package.json +0 -133
  676. jupyterlab-4.0.0rc0/pyproject.toml +0 -304
  677. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/.dockerignore +0 -0
  678. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/.gitignore +0 -0
  679. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/CONTRIBUTING.md +0 -0
  680. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/CORPORATE.md +0 -0
  681. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/Dockerfile +0 -0
  682. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/LICENSE +0 -0
  683. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/conftest.py +0 -0
  684. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docker/jupyter_server_config.json +0 -0
  685. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/Makefile +0 -0
  686. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/make.bat +0 -0
  687. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/_static/css/custom.css +0 -0
  688. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/_static/jupyter_logo.svg +0 -0
  689. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/_static/logo-icon.png +0 -0
  690. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/_static/logo-rectangle.svg +0 -0
  691. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/_templates/copyright.html +0 -0
  692. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/developer/api.rst +0 -0
  693. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/developer/debugger_launch_configuration.png +0 -0
  694. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/developer/debugger_protocol_diagram.png +0 -0
  695. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/developer/debugger_vscode_start.png +0 -0
  696. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/developer/filebrowser_example.png +0 -0
  697. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/developer/filebrowser_source.png +0 -0
  698. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/developer/internationalization.rst +0 -0
  699. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/developer/patterns.rst +0 -0
  700. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/developer/prep_language_packs.png +0 -0
  701. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/extension/documents.rst +0 -0
  702. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/extension/extension_points.rst +0 -0
  703. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/extension/identity.rst +0 -0
  704. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/extension/images/active-markdown-cell-dom.svg +0 -0
  705. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/extension/images/code-cell-dom.svg +0 -0
  706. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/extension/images/extension_migration_dependencies_debugger.png +0 -0
  707. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/extension/images/extension_migration_dependencies_shortcuts.png +0 -0
  708. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/extension/images/extension_migration_session.png +0 -0
  709. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/extension/images/extension_tutorial_complete.png +0 -0
  710. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/extension/images/extension_tutorial_empty.png +0 -0
  711. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/extension/images/extension_tutorial_single.png +0 -0
  712. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/extension/images/rendered-markdown-cell-dom.svg +0 -0
  713. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/extension/internationalization.rst +0 -0
  714. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/extension/notebook.rst +0 -0
  715. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/extension/ui_components.rst +0 -0
  716. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/extension/ui_helpers.rst +0 -0
  717. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/extension/virtualdom.create.tsx +0 -0
  718. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/extension/virtualdom.reactwidget.tsx +0 -0
  719. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/extension/virtualdom.rst +0 -0
  720. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/extension/virtualdom.usesignal.tsx +0 -0
  721. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/getting_started/changelog_celltags.png +0 -0
  722. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/getting_started/changelog_fileinfo.png +0 -0
  723. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/getting_started/changelog_restartrunallbutton.png +0 -0
  724. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/getting_started/changelog_searchoutput-fs8.png +0 -0
  725. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/getting_started/changelog_searchoutput.png +0 -0
  726. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/getting_started/find.png +0 -0
  727. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/getting_started/issue.rst +0 -0
  728. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/getting_started/overview.rst +0 -0
  729. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/getting_started/statusbar.png +0 -0
  730. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/images/lighthouse.png +0 -0
  731. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/index.rst +0 -0
  732. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/privacy_policies.rst +0 -0
  733. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/user/code_console.rst +0 -0
  734. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/user/debugger.rst +0 -0
  735. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/user/documents_kernels.rst +0 -0
  736. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/user/export.rst +0 -0
  737. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/user/extensions.rst +0 -0
  738. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/user/file_editor.rst +0 -0
  739. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/user/file_formats.rst +0 -0
  740. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/user/files.rst +0 -0
  741. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/user/images/debugger/step.gif +0 -0
  742. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/user/images/lsp/settings.png +0 -0
  743. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/user/images/toc/includeOutput.gif +0 -0
  744. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/user/images/toc/numberingH1.gif +0 -0
  745. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/user/images/toc/runcell.gif +0 -0
  746. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/user/images/toc/syncCollapseState.gif +0 -0
  747. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/user/images/toc/toc.gif +0 -0
  748. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/user/index.md +0 -0
  749. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/user/interface.rst +0 -0
  750. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/user/jupyterhub.rst +0 -0
  751. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/user/language.rst +0 -0
  752. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/user/lsp.rst +0 -0
  753. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/user/notebook.rst +0 -0
  754. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/user/rtc.rst +0 -0
  755. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/user/running.rst +0 -0
  756. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/user/terminal.rst +0 -0
  757. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/docs/source/user/urls.rst +0 -0
  758. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/.eslintrc.js +0 -0
  759. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/extension/README.md +0 -0
  760. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/extension/src/index.ts +0 -0
  761. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/extension/src/tokens.ts +0 -0
  762. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/extension/tsconfig.json +0 -0
  763. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/jupyter_server_test_config.py +0 -0
  764. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/media/galata-logo.svg +0 -0
  765. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/playwright-benchmark.config.js +0 -0
  766. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/playwright.config.js +0 -0
  767. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/src/benchmarkReporter.ts +0 -0
  768. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/src/benchmarkVLTpl.ts +0 -0
  769. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/src/contents.ts +0 -0
  770. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/src/extension.ts +0 -0
  771. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/src/fixtures.ts +0 -0
  772. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/src/helpers/activity.ts +0 -0
  773. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/src/helpers/debuggerpanel.ts +0 -0
  774. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/src/helpers/filebrowser.ts +0 -0
  775. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/src/helpers/index.ts +0 -0
  776. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/src/helpers/kernel.ts +0 -0
  777. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/src/helpers/logconsole.ts +0 -0
  778. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/src/helpers/menu.ts +0 -0
  779. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/src/helpers/performance.ts +0 -0
  780. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/src/helpers/sidebar.ts +0 -0
  781. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/src/helpers/statusbar.ts +0 -0
  782. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/src/helpers/style.ts +0 -0
  783. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/src/helpers/theme.ts +0 -0
  784. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/src/index.ts +0 -0
  785. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/src/jupyterlabpage.ts +0 -0
  786. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/src/playwright-config.ts +0 -0
  787. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/src/utils.ts +0 -0
  788. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/src/vega-statistics.d.ts +0 -0
  789. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/benchmark/notebook.spec.ts +0 -0
  790. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/benchmark/notebook.spec.ts-snapshots/large-code-notebook-ipynb-benchmark-linux.png +0 -0
  791. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/benchmark/notebook.spec.ts-snapshots/large-md-notebook-ipynb-benchmark-linux.png +0 -0
  792. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/commands.test.ts +0 -0
  793. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/commands.test.ts-snapshots/commandsList-documentation-linux.json +0 -0
  794. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/customization.test.ts +0 -0
  795. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/customization.test.ts-snapshots/customized-context-menu-documentation-linux.png +0 -0
  796. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/customization.test.ts-snapshots/customized-notebook-toolbar-documentation-linux.png +0 -0
  797. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/customization.test.ts-snapshots/default-context-menu-documentation-linux.png +0 -0
  798. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/customization.test.ts-snapshots/default-notebook-toolbar-documentation-linux.png +0 -0
  799. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/data/extensions-search-all.json +0 -0
  800. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/data/extensions-search-drawio.json +0 -0
  801. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/data/extensions.json +0 -0
  802. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/data/jupyter.png +0 -0
  803. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/debugger.test.ts +0 -0
  804. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/debugger.test.ts-snapshots/debugger-activate-documentation-linux.png +0 -0
  805. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/debugger.test.ts-snapshots/debugger-breakpoint-documentation-linux.png +0 -0
  806. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/debugger.test.ts-snapshots/debugger-kernel-documentation-linux.png +0 -0
  807. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/debugger.test.ts-snapshots/debugger-run-documentation-linux.png +0 -0
  808. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/debugger.test.ts-snapshots/debugger-sidebar-documentation-linux.png +0 -0
  809. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/debugger.test.ts-snapshots/debugger-stop-on-breakpoint-documentation-linux.png +0 -0
  810. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/debugger.test.ts-snapshots/debugger-stop-on-raised-exception-documentation-linux.png +0 -0
  811. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/debugger.test.ts-snapshots/debugger-stop-on-unhandled-exception-documentation-linux.png +0 -0
  812. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/debugger.test.ts-snapshots/debugger-variables-documentation-linux.png +0 -0
  813. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/export_notebook.test.ts +0 -0
  814. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/export_notebook.test.ts-snapshots/exporting-menu-documentation-linux.png +0 -0
  815. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/export_notebook.test.ts-snapshots/exporting-slide-type-documentation-linux.png +0 -0
  816. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/extension_manager.test.ts +0 -0
  817. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/extension_manager.test.ts-snapshots/extensions-allowed-list-documentation-linux.png +0 -0
  818. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/extension_manager.test.ts-snapshots/extensions-blocked-list-documentation-linux.png +0 -0
  819. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/general.test.ts-snapshots/command-palette-documentation-linux.png +0 -0
  820. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/general.test.ts-snapshots/file-editor-overview-documentation-linux.png +0 -0
  821. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/general.test.ts-snapshots/file-editor-settings-documentation-linux.png +0 -0
  822. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/general.test.ts-snapshots/file-formats-altair-documentation-linux.png +0 -0
  823. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/general.test.ts-snapshots/file-formats-open-with-documentation-linux.png +0 -0
  824. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/general.test.ts-snapshots/files-create-text-file-documentation-linux.png +0 -0
  825. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/general.test.ts-snapshots/files-menu-left-documentation-linux.png +0 -0
  826. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/general.test.ts-snapshots/files-menu-top-documentation-linux.png +0 -0
  827. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/general.test.ts-snapshots/files-shareable-link-documentation-linux.png +0 -0
  828. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/general.test.ts-snapshots/interface-right-common-documentation-linux.png +0 -0
  829. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/general.test.ts-snapshots/interface-right-documentation-linux.png +0 -0
  830. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/general.test.ts-snapshots/interface-tabs-documentation-linux.png +0 -0
  831. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/general.test.ts-snapshots/jupyterlab-documentation-linux.png +0 -0
  832. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/general.test.ts-snapshots/notebook-heading-anchor-link-documentation-linux.png +0 -0
  833. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/general.test.ts-snapshots/notebook-not-trusted-documentation-linux.png +0 -0
  834. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/general.test.ts-snapshots/notebook-trusted-documentation-linux.png +0 -0
  835. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/general.test.ts-snapshots/notebook-ui-documentation-linux.png +0 -0
  836. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/general.test.ts-snapshots/running-layout-documentation-linux.png +0 -0
  837. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/internationalization.test.ts +0 -0
  838. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/internationalization.test.ts-snapshots/language-change-documentation-linux.png +0 -0
  839. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/internationalization.test.ts-snapshots/language-settings-documentation-linux.png +0 -0
  840. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/plugins.test.ts +0 -0
  841. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/plugins.test.ts-snapshots/plugins-documentation-linux.json +0 -0
  842. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/plugins.test.ts-snapshots/tokens-documentation-linux.json +0 -0
  843. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/screenshots/debugger-breakpoints.png +0 -0
  844. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/screenshots/debugger-callstack.png +0 -0
  845. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/screenshots/debugger-source.png +0 -0
  846. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/documentation/utils.ts +0 -0
  847. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/galata/benchmarkReporter.spec.ts +0 -0
  848. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/galata/benchmarkReporter.spec.ts-snapshots/customized-test-galata-linux.svg +0 -0
  849. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/galata/benchmarkReporter.spec.ts-snapshots/test-galata-linux.svg +0 -0
  850. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/galata/contents.spec.ts +0 -0
  851. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/galata/fixture.spec.ts +0 -0
  852. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/galata/jupyterlabpage.spec.ts +0 -0
  853. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/galata/notebook.spec.ts +0 -0
  854. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/galata/notebook.spec.ts-snapshots/code-cell-galata-linux.png +0 -0
  855. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/galata/notebook.spec.ts-snapshots/example-run-galata-linux.png +0 -0
  856. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/galata/notebook.spec.ts-snapshots/markdown-cell-galata-linux.png +0 -0
  857. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/galata/notebook.spec.ts-snapshots/raw-cell-galata-linux.png +0 -0
  858. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/galata/notebook.spec.ts-snapshots/run-cells-galata-linux.png +0 -0
  859. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/galata/notebooks/example.ipynb +0 -0
  860. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/galata/notebooks/jupyter.png +0 -0
  861. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/galata/notebooks/simple_test.ipynb +0 -0
  862. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/galata/notebooks/windowed_notebook.ipynb +0 -0
  863. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/galata/test.spec.ts +0 -0
  864. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/galata/upload/sub_folder/upload_image.png +0 -0
  865. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/galata/upload/sub_folder/upload_notebook_sub.ipynb +0 -0
  866. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/galata/upload/upload_image.png +0 -0
  867. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/galata/upload/upload_notebook.ipynb +0 -0
  868. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/cells-motion.spec.ts +0 -0
  869. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/collapsible-headings.test.ts +0 -0
  870. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/collapsible-headings.test.ts-snapshots/add-header-above-01-jupyterlab-linux.png +0 -0
  871. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/collapsible-headings.test.ts-snapshots/add-header-above-02-jupyterlab-linux.png +0 -0
  872. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/collapsible-headings.test.ts-snapshots/add-header-above-03-jupyterlab-linux.png +0 -0
  873. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/collapsible-headings.test.ts-snapshots/add-header-below-01-jupyterlab-linux.png +0 -0
  874. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/collapsible-headings.test.ts-snapshots/add-header-below-02-jupyterlab-linux.png +0 -0
  875. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/collapsible-headings.test.ts-snapshots/add-header-below-03-jupyterlab-linux.png +0 -0
  876. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/collapsible-headings.test.ts-snapshots/collapse-previous-header-jupyterlab-linux.png +0 -0
  877. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/collapsible-headings.test.ts-snapshots/collapse-previous-headers-jupyterlab-linux.png +0 -0
  878. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/collapsible-headings.test.ts-snapshots/jump-previous-header-jupyterlab-linux.png +0 -0
  879. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/collapsible-headings.test.ts-snapshots/no-showHCB-collapse-heading-jupyterlab-linux.png +0 -0
  880. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/collapsible-headings.test.ts-snapshots/no-showHCB-expand-heading-via-collapser-jupyterlab-linux.png +0 -0
  881. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/collapsible-headings.test.ts-snapshots/no-showHCB-heading-selected-jupyterlab-linux.png +0 -0
  882. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/collapsible-headings.test.ts-snapshots/no-showHCB-heading-unselected-jupyterlab-linux.png +0 -0
  883. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/collapsible-headings.test.ts-snapshots/reexpand-headers-01-jupyterlab-linux.png +0 -0
  884. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/collapsible-headings.test.ts-snapshots/reexpand-headers-02-jupyterlab-linux.png +0 -0
  885. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/collapsible-headings.test.ts-snapshots/reexpand-headers-03a-jupyterlab-linux.png +0 -0
  886. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/collapsible-headings.test.ts-snapshots/reexpand-headers-03b-jupyterlab-linux.png +0 -0
  887. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/collapsible-headings.test.ts-snapshots/showHCB-collapse-heading-jupyterlab-linux.png +0 -0
  888. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/collapsible-headings.test.ts-snapshots/showHCB-expand-heading-via-collapser-jupyterlab-linux.png +0 -0
  889. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/collapsible-headings.test.ts-snapshots/showHCB-heading-selected-jupyterlab-linux.png +0 -0
  890. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/collapsible-headings.test.ts-snapshots/showHCB-heading-unselected-jupyterlab-linux.png +0 -0
  891. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/completer.test.ts +0 -0
  892. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/completer.test.ts-snapshots/completer-console-filter-jupyterlab-linux.png +0 -0
  893. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/completer.test.ts-snapshots/completer-filter-jupyterlab-linux.png +0 -0
  894. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/completer.test.ts-snapshots/completer-jupyterlab-linux.png +0 -0
  895. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/completer.test.ts-snapshots/completer-with-doc-panel-jupyterlab-linux.png +0 -0
  896. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/completer.test.ts-snapshots/token-completer-jupyterlab-linux.png +0 -0
  897. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/contextmenu.test.ts +0 -0
  898. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/contextmenu.test.ts-snapshots/file-jupyterlab-linux.png +0 -0
  899. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/contextmenu.test.ts-snapshots/file-openwith-jupyterlab-linux.png +0 -0
  900. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/contextmenu.test.ts-snapshots/fileeditor-jupyterlab-linux.png +0 -0
  901. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/contextmenu.test.ts-snapshots/folder-jupyterlab-linux.png +0 -0
  902. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/contextmenu.test.ts-snapshots/notebook-code-jupyterlab-linux.png +0 -0
  903. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/contextmenu.test.ts-snapshots/notebook-md-jupyterlab-linux.png +0 -0
  904. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/contextmenu.test.ts-snapshots/running-notebook-jupyterlab-linux.png +0 -0
  905. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/contextmenu.test.ts-snapshots/tab-launcher-jupyterlab-linux.png +0 -0
  906. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/contextmenu.test.ts-snapshots/tab-notebook-jupyterlab-linux.png +0 -0
  907. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/debugger.test.ts +0 -0
  908. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/debugger.test.ts-snapshots/image-debug-session-global-rich-variable-jupyterlab-linux.png +0 -0
  909. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/debugger.test.ts-snapshots/image-debug-session-global-variables-jupyterlab-linux.png +0 -0
  910. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/debugger.test.ts-snapshots/image-debug-session-local-rich-variable-jupyterlab-linux.png +0 -0
  911. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/debugger.test.ts-snapshots/start-debug-session-script-sources-jupyterlab-linux.png +0 -0
  912. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/debugger.test.ts-snapshots/start-debug-session-script-variables-jupyterlab-linux.png +0 -0
  913. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/debugger.test.ts-snapshots/start-debug-session-sources-jupyterlab-linux.png +0 -0
  914. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/debugger.test.ts-snapshots/start-debug-session-variables-jupyterlab-linux.png +0 -0
  915. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/general.test.ts +0 -0
  916. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/help.test.ts +0 -0
  917. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/menus.test.ts +0 -0
  918. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/menus.test.ts-snapshots/opened-menu-edit-jupyterlab-linux.png +0 -0
  919. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/menus.test.ts-snapshots/opened-menu-file-jupyterlab-linux.png +0 -0
  920. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/menus.test.ts-snapshots/opened-menu-file-new-jupyterlab-linux.png +0 -0
  921. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/menus.test.ts-snapshots/opened-menu-help-jupyterlab-linux.png +0 -0
  922. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/menus.test.ts-snapshots/opened-menu-kernel-jupyterlab-linux.png +0 -0
  923. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/menus.test.ts-snapshots/opened-menu-run-jupyterlab-linux.png +0 -0
  924. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/menus.test.ts-snapshots/opened-menu-settings-console-run-keystroke-jupyterlab-linux.png +0 -0
  925. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/menus.test.ts-snapshots/opened-menu-settings-jupyterlab-linux.png +0 -0
  926. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/menus.test.ts-snapshots/opened-menu-settings-language-jupyterlab-linux.png +0 -0
  927. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/menus.test.ts-snapshots/opened-menu-settings-terminal-theme-jupyterlab-linux.png +0 -0
  928. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/menus.test.ts-snapshots/opened-menu-settings-text-editor-indentation-jupyterlab-linux.png +0 -0
  929. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/menus.test.ts-snapshots/opened-menu-settings-text-editor-theme-jupyterlab-linux.png +0 -0
  930. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/menus.test.ts-snapshots/opened-menu-settings-theme-jupyterlab-linux.png +0 -0
  931. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/menus.test.ts-snapshots/opened-menu-tabs-jupyterlab-linux.png +0 -0
  932. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/menus.test.ts-snapshots/opened-menu-view-appearance-jupyterlab-linux.png +0 -0
  933. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/menus.test.ts-snapshots/opened-menu-view-jupyterlab-linux.png +0 -0
  934. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/menus.test.ts-snapshots/opened-menuedit-jupyterlab-linux.png +0 -0
  935. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/menus.test.ts-snapshots/opened-sidebar-extensionmanager-main-view-jupyterlab-linux.png +0 -0
  936. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/menus.test.ts-snapshots/opened-sidebar-filebrowser-jupyterlab-linux.png +0 -0
  937. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/menus.test.ts-snapshots/opened-sidebar-jp-property-inspector-jupyterlab-linux.png +0 -0
  938. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/menus.test.ts-snapshots/opened-sidebar-jp-running-sessions-jupyterlab-linux.png +0 -0
  939. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/menus.test.ts-snapshots/opened-sidebar-table-of-contents-jupyterlab-linux.png +0 -0
  940. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/metadataform.test.ts +0 -0
  941. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/metadataform.test.ts-snapshots/metadata-collapsed-form-jupyterlab-linux.png +0 -0
  942. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/metadataform.test.ts-snapshots/metadata-condition-met-jupyterlab-linux.png +0 -0
  943. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/metadataform.test.ts-snapshots/metadata-condition-not-met-jupyterlab-linux.png +0 -0
  944. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/metadataform.test.ts-snapshots/metadata-correct-cell-type-jupyterlab-linux.png +0 -0
  945. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/metadataform.test.ts-snapshots/metadata-level-jupyterlab-linux.png +0 -0
  946. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/metadataform.test.ts-snapshots/metadata-required-filled-jupyterlab-linux.png +0 -0
  947. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/metadataform.test.ts-snapshots/metadata-required-missing-jupyterlab-linux.png +0 -0
  948. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/metadataform.test.ts-snapshots/metadata-ui-schema-jupyterlab-linux.png +0 -0
  949. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/metadataform.test.ts-snapshots/metadata-wrong-cell-type-jupyterlab-linux.png +0 -0
  950. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-create.test.ts +0 -0
  951. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-create.test.ts-snapshots/dark-theme-jupyterlab-linux.png +0 -0
  952. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-create.test.ts-snapshots/opened-menu-edit-jupyterlab-linux.png +0 -0
  953. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-create.test.ts-snapshots/opened-menu-file-jupyterlab-linux.png +0 -0
  954. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-create.test.ts-snapshots/opened-menu-help-jupyterlab-linux.png +0 -0
  955. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-create.test.ts-snapshots/opened-menu-kernel-jupyterlab-linux.png +0 -0
  956. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-create.test.ts-snapshots/opened-menu-run-jupyterlab-linux.png +0 -0
  957. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-create.test.ts-snapshots/opened-menu-view-jupyterlab-linux.png +0 -0
  958. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-edit.test.ts-snapshots/copy-paste-cell-jupyterlab-linux.png +0 -0
  959. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-edit.test.ts-snapshots/cut-paste-cell-jupyterlab-linux.png +0 -0
  960. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-edit.test.ts-snapshots/delete-cell-jupyterlab-linux.png +0 -0
  961. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-edit.test.ts-snapshots/deselect-all-cells-jupyterlab-linux.png +0 -0
  962. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-edit.test.ts-snapshots/execute-again-jupyterlab-linux.png +0 -0
  963. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-edit.test.ts-snapshots/merge-cells-jupyterlab-linux.png +0 -0
  964. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-edit.test.ts-snapshots/move-cell-down-jupyterlab-linux.png +0 -0
  965. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-edit.test.ts-snapshots/paste-replace-cell-jupyterlab-linux.png +0 -0
  966. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-edit.test.ts-snapshots/reedit-cell-jupyterlab-linux.png +0 -0
  967. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-edit.test.ts-snapshots/run-cell-jupyterlab-linux.png +0 -0
  968. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-edit.test.ts-snapshots/select-all-cells-jupyterlab-linux.png +0 -0
  969. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-edit.test.ts-snapshots/split-cell-jupyterlab-linux.png +0 -0
  970. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-markdown.test.ts +0 -0
  971. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-markdown.test.ts-snapshots/do-not-highlight-not-latex-jupyterlab-linux.png +0 -0
  972. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-max-outputs.test.ts +0 -0
  973. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-mobile.test.ts +0 -0
  974. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-mobile.test.ts-snapshots/mobile-layout-jupyterlab-linux.png +0 -0
  975. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-replace.test.ts +0 -0
  976. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-replace.test.ts-snapshots/replace-in-markdown-rendered-cell-jupyterlab-linux.png +0 -0
  977. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-run-vega.test.ts +0 -0
  978. /jupyterlab-4.0.0rc0/galata/test/jupyterlab/notebook-run.test.ts-snapshots/notebook-panel-0-jupyterlab-linux.png → /jupyterlab-4.0.1/galata/test/jupyterlab/notebook-run.test.ts-snapshots/notebook-panel-6-jupyterlab-linux.png +0 -0
  979. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-search.test.ts-snapshots/highlight-markdown-switch-state-jupyterlab-linux.png +0 -0
  980. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-search.test.ts-snapshots/highlight-next-cell-jupyterlab-linux.png +0 -0
  981. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-search.test.ts-snapshots/highlight-next-in-editor-jupyterlab-linux.png +0 -0
  982. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-search.test.ts-snapshots/highlight-visible-under-selection-jupyterlab-linux.png +0 -0
  983. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-search.test.ts-snapshots/multi-line-search-jupyterlab-linux.png +0 -0
  984. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-search.test.ts-snapshots/regexp-parsing-failure-jupyterlab-linux.png +0 -0
  985. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-search.test.ts-snapshots/search-new-outputs-jupyterlab-linux.png +0 -0
  986. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-search.test.ts-snapshots/search-typing-jupyterlab-linux.png +0 -0
  987. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-search.test.ts-snapshots/search-within-outputs-jupyterlab-linux.png +0 -0
  988. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-toolbar.test.ts +0 -0
  989. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-toolbar.test.ts-snapshots/change-to-markdown-jupyterlab-linux.png +0 -0
  990. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-toolbar.test.ts-snapshots/copy-paste-cell-jupyterlab-linux.png +0 -0
  991. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-toolbar.test.ts-snapshots/cut-cell-jupyterlab-linux.png +0 -0
  992. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-toolbar.test.ts-snapshots/delete-cell-jupyterlab-linux.png +0 -0
  993. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-toolbar.test.ts-snapshots/insert-cells-jupyterlab-linux.png +0 -0
  994. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-toolbar.test.ts-snapshots/jump-previous-header-jupyterlab-linux.png +0 -0
  995. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-toolbar.test.ts-snapshots/run-cell-jupyterlab-linux.png +0 -0
  996. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebook-trust.test.ts +0 -0
  997. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebooks/WidgetArch.png +0 -0
  998. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebooks/code_notebook.ipynb +0 -0
  999. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebooks/code_script.py +0 -0
  1000. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebooks/completer_panel.py +0 -0
  1001. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebooks/image_notebook.ipynb +0 -0
  1002. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebooks/markdown_notebook.ipynb +0 -0
  1003. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebooks/output_scrolling.ipynb +0 -0
  1004. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebooks/scroll.ipynb +0 -0
  1005. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebooks/search.ipynb +0 -0
  1006. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebooks/simple.md +0 -0
  1007. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebooks/simple_notebook.ipynb +0 -0
  1008. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebooks/toc_notebook.ipynb +0 -0
  1009. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notebooks/vega_notebook.ipynb +0 -0
  1010. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/notification.test.ts +0 -0
  1011. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/output-scrolling.test.ts +0 -0
  1012. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/output-scrolling.test.ts-snapshots/cell-output-area-scrolling-mode-jupyterlab-linux.png +0 -0
  1013. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/output-scrolling.test.ts-snapshots/prompt-overlay-hover-normal-jupyterlab-linux.png +0 -0
  1014. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/output-scrolling.test.ts-snapshots/prompt-overlay-hover-scroll-jupyterlab-linux.png +0 -0
  1015. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/outputarea-stdin.test.ts +0 -0
  1016. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/outputarea-stdin.test.ts-snapshots/stdin-history-search-jupyterlab-linux.png +0 -0
  1017. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/save.test.ts +0 -0
  1018. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/settings.test.ts +0 -0
  1019. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/settings.test.ts-snapshots/settings-panel-jupyterlab-linux.png +0 -0
  1020. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/shortcuts.test.ts +0 -0
  1021. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/sidebars.test.ts +0 -0
  1022. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/sidebars.test.ts-snapshots/left-light-tabbar-with-text-jupyterlab-linux.png +0 -0
  1023. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/sidebars.test.ts-snapshots/opened-sidebar-jp-property-inspector-jupyterlab-linux.png +0 -0
  1024. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/sidebars.test.ts-snapshots/opened-sidebar-jp-running-sessions-jupyterlab-linux.png +0 -0
  1025. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/sidebars.test.ts-snapshots/opened-sidebar-table-of-contents-jupyterlab-linux.png +0 -0
  1026. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/sidebars.test.ts-snapshots/right-dark-tabbar-with-text-jupyterlab-linux.png +0 -0
  1027. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/styles.test.ts +0 -0
  1028. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/terminal.test.ts +0 -0
  1029. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/terminal.test.ts-snapshots/dark-term-dark-jupyterlab-linux.png +0 -0
  1030. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/terminal.test.ts-snapshots/dark-term-inherit-jupyterlab-linux.png +0 -0
  1031. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/terminal.test.ts-snapshots/dark-term-light-jupyterlab-linux.png +0 -0
  1032. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/terminal.test.ts-snapshots/launcher-term-jupyterlab-linux.png +0 -0
  1033. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/terminal.test.ts-snapshots/light-term-dark-jupyterlab-linux.png +0 -0
  1034. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/terminal.test.ts-snapshots/light-term-inherit-jupyterlab-linux.png +0 -0
  1035. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/terminal.test.ts-snapshots/light-term-light-jupyterlab-linux.png +0 -0
  1036. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/terminal.test.ts-snapshots/web-links-term-jupyterlab-linux.png +0 -0
  1037. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/texteditor.test.ts +0 -0
  1038. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/texteditor.test.ts-snapshots/go-to-line-editor-jupyterlab-linux.png +0 -0
  1039. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/texteditor.test.ts-snapshots/text-editor-jupyterlab-linux.png +0 -0
  1040. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/texteditor.test.ts-snapshots/text-editor-rulers-jupyterlab-linux.png +0 -0
  1041. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/toc-running.test.ts +0 -0
  1042. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/toc-running.test.ts-snapshots/toc-running-indicator-top-level-jupyterlab-linux.png +0 -0
  1043. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/toc-running.test.ts-snapshots/toc-running-indicators-jupyterlab-linux.png +0 -0
  1044. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/toc.test.ts +0 -0
  1045. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/toc.test.ts-snapshots/notebook-output-headings-jupyterlab-linux.png +0 -0
  1046. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/toc.test.ts-snapshots/toc-panel-jupyterlab-linux.png +0 -0
  1047. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/toc.test.ts-snapshots/toggle-numbered-list-jupyterlab-linux.png +0 -0
  1048. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/toolbars.test.ts +0 -0
  1049. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/workspace.test.ts +0 -0
  1050. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/workspace.test.ts-snapshots/workspace-reset-jupyterlab-linux.png +0 -0
  1051. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/test/jupyterlab/workspace.test.ts-snapshots/workspace-simple-reset-jupyterlab-linux.png +0 -0
  1052. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/tsconfig.json +0 -0
  1053. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/galata/update_snapshots.py +0 -0
  1054. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyter-config/jupyter_notebook_config.d/jupyterlab.json +0 -0
  1055. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyter-config/jupyter_server_config.d/jupyterlab.json +0 -0
  1056. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/__init__.py +0 -0
  1057. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/__main__.py +0 -0
  1058. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/browser-test.js +0 -0
  1059. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/coreconfig.py +0 -0
  1060. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/debuglog.py +0 -0
  1061. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/extensions/__init__.py +0 -0
  1062. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/extensions/manager.py +0 -0
  1063. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/extensions/pypi.py +0 -0
  1064. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/extensions/readonly.py +0 -0
  1065. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/galata/@jupyterlab/galata-extension/static/style.js +0 -0
  1066. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/galata/__init__.py +0 -0
  1067. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/handlers/__init__.py +0 -0
  1068. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/handlers/build_handler.py +0 -0
  1069. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/handlers/error_handler.py +0 -0
  1070. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/handlers/extension_manager_handler.py +0 -0
  1071. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/labapp.py +0 -0
  1072. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/labhubapp.py +0 -0
  1073. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/node-version-check.js +0 -0
  1074. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/pytest_plugin.py +0 -0
  1075. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/application-extension/commands.json +0 -0
  1076. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/application-extension/context-menu.json +0 -0
  1077. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/application-extension/property-inspector.json +0 -0
  1078. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/application-extension/shell.json +0 -0
  1079. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/application-extension/top-bar.json +0 -0
  1080. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/apputils-extension/notification.json +0 -0
  1081. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/apputils-extension/palette.json +0 -0
  1082. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/apputils-extension/print.json +0 -0
  1083. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/apputils-extension/sanitizer.json +0 -0
  1084. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/apputils-extension/themes.json +0 -0
  1085. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/apputils-extension/utilityCommands.json +0 -0
  1086. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/apputils-extension/workspaces.json +0 -0
  1087. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/cell-toolbar-extension/plugin.json +0 -0
  1088. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/celltags-extension/plugin.json +0 -0
  1089. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/codemirror-extension/plugin.json +0 -0
  1090. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/completer-extension/manager.json +0 -0
  1091. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/console-extension/completer.json +0 -0
  1092. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/console-extension/foreign.json +0 -0
  1093. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/console-extension/tracker.json +0 -0
  1094. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/csvviewer-extension/csv.json +0 -0
  1095. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/csvviewer-extension/tsv.json +0 -0
  1096. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/debugger-extension/main.json +0 -0
  1097. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/docmanager-extension/download.json +0 -0
  1098. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/docmanager-extension/plugin.json +0 -0
  1099. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/documentsearch-extension/plugin.json +0 -0
  1100. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/extensionmanager-extension/plugin.json +0 -0
  1101. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/filebrowser-extension/download.json +0 -0
  1102. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/filebrowser-extension/open-browser-tab.json +0 -0
  1103. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/filebrowser-extension/open-with.json +0 -0
  1104. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/filebrowser-extension/widget.json +0 -0
  1105. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/fileeditor-extension/completer.json +0 -0
  1106. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/fileeditor-extension/plugin.json +0 -0
  1107. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/help-extension/about.json +0 -0
  1108. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/help-extension/jupyter-forum.json +0 -0
  1109. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/help-extension/launch-classic.json +0 -0
  1110. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/htmlviewer-extension/plugin.json +0 -0
  1111. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/hub-extension/menu.json +0 -0
  1112. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/imageviewer-extension/plugin.json +0 -0
  1113. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/inspector-extension/consoles.json +0 -0
  1114. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/inspector-extension/inspector.json +0 -0
  1115. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/inspector-extension/notebooks.json +0 -0
  1116. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/launcher-extension/plugin.json +0 -0
  1117. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/logconsole-extension/plugin.json +0 -0
  1118. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/lsp-extension/plugin.json +0 -0
  1119. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/mainmenu-extension/plugin.json +0 -0
  1120. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/markdownviewer-extension/plugin.json +0 -0
  1121. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/mathjax-extension/plugin.json +0 -0
  1122. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/metadataform-extension/metadataforms.json +0 -0
  1123. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/notebook-extension/completer.json +0 -0
  1124. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/notebook-extension/export.json +0 -0
  1125. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/notebook-extension/panel.json +0 -0
  1126. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/notebook-extension/tools.json +0 -0
  1127. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/running-extension/plugin.json +0 -0
  1128. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/settingeditor-extension/form-ui.json +0 -0
  1129. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/settingeditor-extension/plugin.json +0 -0
  1130. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/shortcuts-extension/shortcuts.json +0 -0
  1131. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/statusbar-extension/plugin.json +0 -0
  1132. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/terminal-extension/plugin.json +0 -0
  1133. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/tooltip-extension/consoles.json +0 -0
  1134. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/tooltip-extension/files.json +0 -0
  1135. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/tooltip-extension/notebooks.json +0 -0
  1136. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/schemas/@jupyterlab/translation-extension/plugin.json +0 -0
  1137. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/semver.py +0 -0
  1138. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/serverextension.py +0 -0
  1139. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/staging/.yarnrc.yml +0 -0
  1140. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/staging/bootstrap.js +0 -0
  1141. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/staging/index.js +0 -0
  1142. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/staging/publicpath.js +0 -0
  1143. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/staging/templates/403.html +0 -0
  1144. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/staging/templates/error.html +0 -0
  1145. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/staging/templates/partial.html +0 -0
  1146. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/staging/templates/template.html +0 -0
  1147. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/staging/webpack.config.js +0 -0
  1148. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/staging/webpack.prod.config.js +0 -0
  1149. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/staging/webpack.prod.minimize.config.js +0 -0
  1150. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/staging/webpack.prod.release.config.js +0 -0
  1151. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/staging/yarn.js +0 -0
  1152. /jupyterlab-4.0.0rc0/jupyterlab/static/1036.354e207003e2cf47aedd.js.LICENSE.txt → /jupyterlab-4.0.1/jupyterlab/static/1036.2da1476d9ad2d74b85f9.js.LICENSE.txt +0 -0
  1153. /jupyterlab-4.0.0rc0/jupyterlab/static/141.cc5a6b71439fc84939d6.js.LICENSE.txt → /jupyterlab-4.0.1/jupyterlab/static/141.f110448d494068ebcc87.js.LICENSE.txt +0 -0
  1154. /jupyterlab-4.0.0rc0/jupyterlab/static/1581.41bb01f5d4047061f002.js.LICENSE.txt → /jupyterlab-4.0.1/jupyterlab/static/1581.3475afdf46cd8e95a405.js.LICENSE.txt +0 -0
  1155. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/1cb1c39ea642f26a4dfe.woff +0 -0
  1156. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/26683bf201fb258a2237.woff +0 -0
  1157. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/30e889b58cbc51adfbb0.woff +0 -0
  1158. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/32792104b5ef69eded90.woff +0 -0
  1159. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/355254db9ca10a09a3b5.woff +0 -0
  1160. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/36e0d72d8a7afc696a3e.woff +0 -0
  1161. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/373c04fd2418f5c77eea.eot +0 -0
  1162. /jupyterlab-4.0.0rc0/jupyterlab/static/3935.200aeb85f6884cbd976d.js.LICENSE.txt → /jupyterlab-4.0.1/jupyterlab/static/3935.905285b8e22c337968ed.js.LICENSE.txt +0 -0
  1163. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/3bc6ecaae7ecf6f8d7f8.woff +0 -0
  1164. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/3de784d07b9fa8f104c1.woff +0 -0
  1165. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/3f6d3488cf65374f6f67.woff +0 -0
  1166. /jupyterlab-4.0.0rc0/jupyterlab/static/4008.db9f2f6075d70700b7e5.js.LICENSE.txt → /jupyterlab-4.0.1/jupyterlab/static/4008.86acbefff6de679f77b5.js.LICENSE.txt +0 -0
  1167. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/481e39042508ae313a60.woff +0 -0
  1168. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/5cda41563a095bd70c78.woff +0 -0
  1169. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/721921bab0d001ebff02.woff +0 -0
  1170. /jupyterlab-4.0.0rc0/jupyterlab/static/7294.78897ca348581a9dae29.js.LICENSE.txt → /jupyterlab-4.0.1/jupyterlab/static/7294.badf85a3180703d63f62.js.LICENSE.txt +0 -0
  1171. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/72bc573386dd1d48c5bb.woff +0 -0
  1172. /jupyterlab-4.0.0rc0/jupyterlab/static/7451.e06be24e1fee9b2e4387.js.LICENSE.txt → /jupyterlab-4.0.1/jupyterlab/static/7451.c0257dbfdd320e2c21f5.js.LICENSE.txt +0 -0
  1173. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/7730.7e3a9fb140d2d55a51fc.js +0 -0
  1174. /jupyterlab-4.0.0rc0/jupyterlab/static/7763.bd770588e14bb53e5869.js.LICENSE.txt → /jupyterlab-4.0.1/jupyterlab/static/7763.19a095394000f9ef62bd.js.LICENSE.txt +0 -0
  1175. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/79d088064beb3826054f.eot +0 -0
  1176. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/870673df72e70f87c91a.woff +0 -0
  1177. /jupyterlab-4.0.0rc0/jupyterlab/static/8768.5535fe09cf33df5d9c17.js.LICENSE.txt → /jupyterlab-4.0.1/jupyterlab/static/8768.4a80caab00174c50eb10.js.LICENSE.txt +0 -0
  1178. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/88b98cad3688915e50da.woff +0 -0
  1179. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/8ea8791754915a898a31.woff2 +0 -0
  1180. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/8ea8dbb1b02e6f730f55.woff +0 -0
  1181. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/9674eb1bd55047179038.svg +0 -0
  1182. /jupyterlab-4.0.0rc0/jupyterlab/static/9747.56b3d4353668e791b7de.js.LICENSE.txt → /jupyterlab-4.0.1/jupyterlab/static/9747.6dd327f4928c6989ea8a.js.LICENSE.txt +0 -0
  1183. /jupyterlab-4.0.0rc0/jupyterlab/static/9826.6ba3f316fdde1b6c4143.js.LICENSE.txt → /jupyterlab-4.0.1/jupyterlab/static/9826.406d2a71dc45995bc549.js.LICENSE.txt +0 -0
  1184. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/9834b82ad26e2a37583d.woff2 +0 -0
  1185. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/a009bea404f7a500ded4.woff +0 -0
  1186. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/a3b9817780214caf01e8.svg +0 -0
  1187. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/af04542b29eaac04550a.woff +0 -0
  1188. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/af6397503fcefbd61397.ttf +0 -0
  1189. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/af96f67d7accf5fd2a4a.woff +0 -0
  1190. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/b418136e3b384baaadec.woff +0 -0
  1191. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/be0a084962d8066884f7.svg +0 -0
  1192. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/bootstrap.js +0 -0
  1193. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/c49810b53ecc0d87d802.woff +0 -0
  1194. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/c56da8d69f1a0208b8e0.woff +0 -0
  1195. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/cb9e9e693192413cde2b.woff +0 -0
  1196. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/cda59d6efffa685830fd.ttf +0 -0
  1197. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/e4299464e7b012968eed.eot +0 -0
  1198. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/e42a88444448ac3d6054.woff2 +0 -0
  1199. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/e8711bbb871afd8e9dea.ttf +0 -0
  1200. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/f9217f66874b0c01cd8c.woff +0 -0
  1201. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/fc6ddf5df402b263cfb1.woff +0 -0
  1202. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/index.out.js +0 -0
  1203. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/static/style.js +0 -0
  1204. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/style.js +0 -0
  1205. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/__init__.py +0 -0
  1206. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/conftest.py +0 -0
  1207. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/echo_kernel.py +0 -0
  1208. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/.yarnrc.yml +0 -0
  1209. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/extension/index.js +0 -0
  1210. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/extension/mock_package.py +0 -0
  1211. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/extension/setup.py +0 -0
  1212. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/extension/yarn.lock +0 -0
  1213. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/incompat/index.js +0 -0
  1214. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/incompat/package.json +0 -0
  1215. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/interop/consumer/index.js +0 -0
  1216. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/interop/consumer/jlab_mock_consumer.py +0 -0
  1217. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/interop/consumer/setup.py +0 -0
  1218. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/interop/provider/index.js +0 -0
  1219. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/interop/provider/jlab_mock_provider.py +0 -0
  1220. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/interop/provider/setup.py +0 -0
  1221. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/interop/token/index.js +0 -0
  1222. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/mimeextension/index.js +0 -0
  1223. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/mimeextension/package.json +0 -0
  1224. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/mimeextension/yarn.lock +0 -0
  1225. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/package/index.js +0 -0
  1226. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/package/package.json +0 -0
  1227. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/test-hyphens/MANIFEST.in +0 -0
  1228. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/test-hyphens/index.js +0 -0
  1229. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/test-hyphens/package.json +0 -0
  1230. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/test-hyphens/pyproject.toml +0 -0
  1231. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/test-hyphens/setup.py +0 -0
  1232. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/test-hyphens/test_hyphens/__init__.py +0 -0
  1233. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/test-hyphens/yarn.lock +0 -0
  1234. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/test-hyphens-underscore/MANIFEST.in +0 -0
  1235. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/test-hyphens-underscore/index.js +0 -0
  1236. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/test-hyphens-underscore/package.json +0 -0
  1237. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/test-hyphens-underscore/pyproject.toml +0 -0
  1238. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/test-hyphens-underscore/setup.py +0 -0
  1239. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/test-hyphens-underscore/test_hyphens_underscore/__init__.py +0 -0
  1240. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/test-hyphens-underscore/yarn.lock +0 -0
  1241. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/test_no_hyphens/MANIFEST.in +0 -0
  1242. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/test_no_hyphens/index.js +0 -0
  1243. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/test_no_hyphens/package.json +0 -0
  1244. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/test_no_hyphens/pyproject.toml +0 -0
  1245. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/test_no_hyphens/setup.py +0 -0
  1246. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/test_no_hyphens/test_no_hyphens/__init__.py +0 -0
  1247. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/mock_packages/test_no_hyphens/yarn.lock +0 -0
  1248. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/test_app.py +0 -0
  1249. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/test_build_api.py +0 -0
  1250. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/tests/test_registry.py +0 -0
  1251. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/themes/@jupyterlab/theme-dark-extension/index.css +0 -0
  1252. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/themes/@jupyterlab/theme-dark-extension/index.js +0 -0
  1253. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/themes/@jupyterlab/theme-light-extension/index.css +0 -0
  1254. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/themes/@jupyterlab/theme-light-extension/index.js +0 -0
  1255. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab/utils.py +0 -0
  1256. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab.desktop +0 -0
  1257. {jupyterlab-4.0.0rc0 → jupyterlab-4.0.1}/jupyterlab.svg +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.