A monorepo containing jupyter-blocks and jupyter-tidyblocks. Blockly extension for JupyterLab.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #73 from hbcarlos/widgets

Add support for widgets

authored by

Carlos Herrero and committed by
GitHub
32b4140e 96251291

+604 -296
+11
packages/blockly-extension/package.json
··· 43 43 "watch:labextension": "jupyter labextension watch ." 44 44 }, 45 45 "dependencies": { 46 + "@jupyter-widgets/base": "^6.0.4", 47 + "@jupyter-widgets/jupyterlab-manager": "^5.0.7", 46 48 "@jupyterlab/application": "^3.6", 47 49 "@jupyterlab/apputils": "^3.6", 50 + "@jupyterlab/cells": "^3.6", 48 51 "@jupyterlab/codeeditor": "^3.6", 49 52 "@jupyterlab/filebrowser": "^3.6", 50 53 "@jupyterlab/launcher": "^3.6", ··· 81 84 "blockly": { 82 85 "bundled": true, 83 86 "singleton": true 87 + }, 88 + "@jupyter-widgets/base": { 89 + "bundled": false, 90 + "singleton": true 91 + }, 92 + "@jupyter-widgets/jupyterlab-manager": { 93 + "bundled": false, 94 + "singleton": true 84 95 } 85 96 }, 86 97 "webpackConfig": "./webpack.config.js"
+37 -2
packages/blockly-extension/src/index.ts
··· 7 7 import { WidgetTracker, ICommandPalette } from '@jupyterlab/apputils'; 8 8 import { IRenderMimeRegistry } from '@jupyterlab/rendermime'; 9 9 import { IEditorServices } from '@jupyterlab/codeeditor'; 10 + import { CodeCell } from '@jupyterlab/cells'; 10 11 import { IFileBrowserFactory } from '@jupyterlab/filebrowser'; 11 12 import { ILauncher } from '@jupyterlab/launcher'; 12 13 import { ITranslator } from '@jupyterlab/translation'; 13 14 import { ISettingRegistry } from '@jupyterlab/settingregistry'; 14 15 import { IKernelMenu, IMainMenu } from '@jupyterlab/mainmenu'; 16 + 17 + import { IJupyterWidgetRegistry } from '@jupyter-widgets/base'; 18 + 19 + import { 20 + WidgetRenderer, 21 + registerWidgetManager 22 + } from '@jupyter-widgets/jupyterlab-manager'; 15 23 16 24 import { BlocklyEditorFactory } from 'jupyterlab-blockly'; 17 25 import { IBlocklyRegistry } from 'jupyterlab-blockly'; ··· 49 57 ISettingRegistry, 50 58 ITranslator 51 59 ], 52 - optional: [ILauncher, ICommandPalette, IMainMenu], 60 + optional: [ILauncher, ICommandPalette, IMainMenu, IJupyterWidgetRegistry], 53 61 provides: IBlocklyRegistry, 54 62 activate: ( 55 63 app: JupyterFrontEnd, ··· 61 69 translator: ITranslator, 62 70 launcher: ILauncher | null, 63 71 palette: ICommandPalette | null, 64 - mainMenu: IMainMenu | null 72 + mainMenu: IMainMenu | null, 73 + widgetRegistry: IJupyterWidgetRegistry | null 65 74 ): IBlocklyRegistry => { 66 75 console.log('JupyterLab extension jupyterlab-blocky is activated!'); 67 76 ··· 233 242 } as IKernelMenu.IKernelUser<BlocklyEditor>); 234 243 } 235 244 245 + if (widgetRegistry) { 246 + tracker.forEach(panel => { 247 + registerWidgetManager( 248 + panel.context as any, 249 + panel.content.rendermime, 250 + widgetRenderers([panel.content.cell]) 251 + ); 252 + }); 253 + 254 + tracker.widgetAdded.connect((sender, panel) => { 255 + registerWidgetManager( 256 + panel.context as any, 257 + panel.content.rendermime, 258 + widgetRenderers([panel.content.cell]) 259 + ); 260 + }); 261 + } 262 + 236 263 return widgetFactory.registry; 237 264 } 238 265 }; 266 + 267 + function* widgetRenderers(cells: CodeCell[]): IterableIterator<WidgetRenderer> { 268 + for (const w of cells) { 269 + if (w instanceof WidgetRenderer) { 270 + yield w; 271 + } 272 + } 273 + } 239 274 240 275 export default plugin;
+3
packages/blockly/src/factory.ts
··· 46 46 protected createNewWidget( 47 47 context: DocumentRegistry.IContext<DocumentModel> 48 48 ): BlocklyEditor { 49 + // Set a map to the model. The widgets manager expects a Notebook model 50 + // but the only notebook property it uses is the metadata. 51 + context.model['metadata'] = new Map(); 49 52 const manager = new BlocklyManager( 50 53 this._registry, 51 54 context.sessionContext,
+17
packages/blockly/src/layout.ts
··· 57 57 this._manager.changed.connect(this._onManagerChanged, this); 58 58 } 59 59 60 + /* 61 + * The code cell. 62 + */ 63 + get cell(): CodeCell { 64 + return this._cell; 65 + } 66 + 67 + /* 68 + * The current workspace. 69 + */ 60 70 get workspace(): Blockly.Workspace { 61 71 // eslint-disable-next-line @typescript-eslint/ban-ts-comment 62 72 // @ts-ignore 63 73 return Blockly.serialization.workspaces.save(this._workspace); 64 74 } 65 75 76 + /* 77 + * Set a new workspace. 78 + */ 66 79 set workspace(workspace: Blockly.Workspace) { 67 80 const data = workspace === null ? { variables: [] } : workspace; 68 81 // eslint-disable-next-line @typescript-eslint/ban-ts-comment ··· 138 151 return finalToplevelInit; 139 152 } 140 153 154 + /* 155 + * Generates and runs the code from the current workspace. 156 + */ 141 157 run(): void { 142 158 // Get extra code from the blocks in the workspace. 143 159 const extra_init = this.getBlocksToplevelInit(); 144 160 // Serializing our workspace into the chosen language generator. 145 161 const code = 146 162 extra_init + this._manager.generator.workspaceToCode(this._workspace); 163 + //const code = "import ipywidgets as widgets\nwidgets.IntSlider()"; 147 164 this._cell.model.sharedModel.setSource(code); 148 165 149 166 // Execute the code using the kernel, by using a static method from the
+17
packages/blockly/src/widget.ts
··· 19 19 SelectToolbox, 20 20 Spacer 21 21 } from './toolbar'; 22 + import { CodeCell } from '@jupyterlab/cells'; 22 23 23 24 /** 24 25 * DocumentWidget: widget that represents the view or editor for a file type. ··· 80 81 */ 81 82 export class BlocklyPanel extends SplitPanel { 82 83 private _context: DocumentRegistry.IContext<DocumentModel>; 84 + private _rendermime: IRenderMimeRegistry; 83 85 84 86 /** 85 87 * Construct a `BlocklyPanel`. ··· 96 98 }); 97 99 this.addClass('jp-BlocklyPanel'); 98 100 this._context = context; 101 + this._rendermime = rendermime; 99 102 100 103 // Load the content of the file when the context is ready 101 104 this._context.ready.then(() => this._load()); 102 105 // Connect to the save signal 103 106 this._context.saveState.connect(this._onSave, this); 107 + } 108 + 109 + /* 110 + * The code cell. 111 + */ 112 + get cell(): CodeCell { 113 + return (this.layout as BlocklyLayout).cell; 114 + } 115 + 116 + /* 117 + * The rendermime instance used in the code cell. 118 + */ 119 + get rendermime(): IRenderMimeRegistry { 120 + return this._rendermime; 104 121 } 105 122 106 123 /**
patches/@jupyterlab+codeeditor+3.6.1.patch patches/@jupyterlab+codeeditor+3.6.3.patch
+2 -1
pyproject.toml
··· 23 23 "Programming Language :: Python :: 3.11", 24 24 ] 25 25 dependencies = [ 26 - "jupyterlab~=3.6" 26 + "jupyterlab~=3.6", 27 + "jupyterlab_widgets~=3.0" 27 28 ] 28 29 dynamic = ["version", "description", "authors", "urls", "keywords"] 29 30
+517 -293
yarn.lock
··· 199 199 resolved "https://registry.yarnpkg.com/@juggle/resize-observer/-/resize-observer-3.4.0.tgz#08d6c5e20cf7e4cc02fd181c4b0c225cd31dbb60" 200 200 integrity sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA== 201 201 202 - "@jupyter/ydoc@~0.2.0": 203 - version "0.2.3" 204 - resolved "https://registry.yarnpkg.com/@jupyter/ydoc/-/ydoc-0.2.3.tgz#468a88d0250c5d59800a5cc15a33df211b4b2141" 205 - integrity sha512-mwmlzOYXr4StXL1ijrSkt6+Bu4cF5nZQAep2zULa5IDe/PVDBqDtMrLqZyKQOgB3IT/sLJidU1P3wTdb8bwmww== 202 + "@jupyter-widgets/base-manager@^1.0.5": 203 + version "1.0.5" 204 + resolved "https://registry.yarnpkg.com/@jupyter-widgets/base-manager/-/base-manager-1.0.5.tgz#c580806fbb83c4e9ad164948b8a58369a301ae6b" 205 + integrity sha512-+pagXIXBbSq1NdqaJ8xJj52SF3t0zyUofDHVZ1bFrfWIhl5qZuLxtD16PvnqO+n1gIPLlW238Og6QuIGKOKkZQ== 206 + dependencies: 207 + "@jupyter-widgets/base" "^6.0.4" 208 + "@jupyterlab/services" "^6.0.0" 209 + "@lumino/coreutils" "^1.11.1" 210 + base64-js "^1.2.1" 211 + sanitize-html "^2.3" 212 + 213 + "@jupyter-widgets/base@^6.0.4": 214 + version "6.0.4" 215 + resolved "https://registry.yarnpkg.com/@jupyter-widgets/base/-/base-6.0.4.tgz#6348b29f3574df4f0a7df593b4088529f46be57a" 216 + integrity sha512-w5KUL8q44Isp0N/ElOAJbPSgWBdeGZO5EYEcz50rfqYAUMSh2Qx0oQJYMddbRgi8b5CajGHFvcHTfvwaNDLSmA== 217 + dependencies: 218 + "@jupyterlab/services" "^6.0.0" 219 + "@lumino/coreutils" "^1.11.1" 220 + "@lumino/messaging" "^1.10.1" 221 + "@lumino/widgets" "^1.30.0" 222 + "@types/backbone" "1.4.14" 223 + "@types/lodash" "^4.14.134" 224 + backbone "1.4.0" 225 + jquery "^3.1.1" 226 + lodash "^4.17.4" 227 + 228 + "@jupyter-widgets/controls@^5.0.5": 229 + version "5.0.5" 230 + resolved "https://registry.yarnpkg.com/@jupyter-widgets/controls/-/controls-5.0.5.tgz#076b75a0c04a946a5bd8fd1d3401f428dbe673f3" 231 + integrity sha512-Y6NvKdE1Pkp/3tS/gJUIv1fxmRkCrbWx8SLDxA29QJrEriC/Kpjoq4qMBtL6JwS+UNcouLuX+jfhBtaDw8d5Xw== 232 + dependencies: 233 + "@jupyter-widgets/base" "^6.0.4" 234 + "@lumino/algorithm" "^1.9.1" 235 + "@lumino/domutils" "^1.8.1" 236 + "@lumino/messaging" "^1.10.1" 237 + "@lumino/signaling" "^1.10.1" 238 + "@lumino/widgets" "^1.30.0" 239 + d3-color "^3.0.1" 240 + d3-format "^3.0.1" 241 + jquery "^3.1.1" 242 + nouislider "15.4.0" 243 + 244 + "@jupyter-widgets/jupyterlab-manager@^5.0.7": 245 + version "5.0.7" 246 + resolved "https://registry.yarnpkg.com/@jupyter-widgets/jupyterlab-manager/-/jupyterlab-manager-5.0.7.tgz#5813fc5087823eae5af76a7af1fc6ba03092777e" 247 + integrity sha512-+kCuf9IiTfFCY9iUrCoxKXID0eI45Ovom1gsgRbHlckInhhn4raB2YDEL0lgy/G9Bj+qXMZoih9VKds7KrWIrw== 248 + dependencies: 249 + "@jupyter-widgets/base" "^6.0.4" 250 + "@jupyter-widgets/base-manager" "^1.0.5" 251 + "@jupyter-widgets/controls" "^5.0.5" 252 + "@jupyter-widgets/output" "^6.0.4" 253 + "@jupyterlab/application" "^3.0.0" 254 + "@jupyterlab/docregistry" "^3.0.0" 255 + "@jupyterlab/logconsole" "^3.0.0" 256 + "@jupyterlab/mainmenu" "^3.0.0" 257 + "@jupyterlab/nbformat" "^3.0.0" 258 + "@jupyterlab/notebook" "^3.0.0" 259 + "@jupyterlab/outputarea" "^3.0.0" 260 + "@jupyterlab/rendermime" "^3.0.0" 261 + "@jupyterlab/rendermime-interfaces" "^3.0.0" 262 + "@jupyterlab/services" "^6.0.0" 263 + "@jupyterlab/settingregistry" "^3.0.0" 264 + "@jupyterlab/translation" "^3.0.0" 265 + "@lumino/algorithm" "^1.9.1" 266 + "@lumino/coreutils" "^1.11.1" 267 + "@lumino/disposable" "^1.10.1" 268 + "@lumino/properties" "^1.8.1" 269 + "@lumino/signaling" "^1.10.1" 270 + "@lumino/widgets" "^1.30.0" 271 + "@types/backbone" "1.4.14" 272 + jquery "^3.1.1" 273 + semver "^7.3.5" 274 + 275 + "@jupyter-widgets/output@^6.0.4": 276 + version "6.0.4" 277 + resolved "https://registry.yarnpkg.com/@jupyter-widgets/output/-/output-6.0.4.tgz#991d1a1b904a28daa3fd74f0d148455b9e475623" 278 + integrity sha512-wwh/RjYNcP1dQsd4HcMYlRx+hlIAOJ2cnG/iQY+e34Fm90kzIElm9gNL8eRzHFmT3psg6c6zW9cIvg+q6Gd3ag== 279 + dependencies: 280 + "@jupyter-widgets/base" "^6.0.4" 281 + 282 + "@jupyter/ydoc@~0.2.3": 283 + version "0.2.4" 284 + resolved "https://registry.yarnpkg.com/@jupyter/ydoc/-/ydoc-0.2.4.tgz#bc312f171777b58e286aadca62dadeca3a894dd1" 285 + integrity sha512-QACcB4bF+Ew4UJmJP+3OyiyQm3vwRYF6iZCQK9q0nE2U5uAosQkfLyT6Bx71jPUXe4G9lEF6m9fjpZvSUX7Lyw== 206 286 dependencies: 207 287 "@jupyterlab/nbformat" "^3.0.0 || ^4.0.0-alpha.15" 208 288 "@lumino/coreutils" "^1.11.0 || ^2.0.0-alpha.6" ··· 211 291 y-protocols "^1.0.5" 212 292 yjs "^13.5.40" 213 293 214 - "@jupyterlab/application@^3.6": 215 - version "3.6.1" 216 - resolved "https://registry.yarnpkg.com/@jupyterlab/application/-/application-3.6.1.tgz#41b897a809847fcd9426fe12ab0415c4373d24ed" 217 - integrity sha512-EpZ5pByXqiNwX9Kj6H5UepYJ9nNI3uU0ule7vCHhLmvJTM9+ARUKT9a52qp2uAyZSjdihl1cHfVKONEM9Xn8fA== 294 + "@jupyterlab/application@^3.0.0", "@jupyterlab/application@^3.6": 295 + version "3.6.3" 296 + resolved "https://registry.yarnpkg.com/@jupyterlab/application/-/application-3.6.3.tgz#7e199f77a4536bc7429fbecf9ba1850f51d9de52" 297 + integrity sha512-G0tR6sUSCuHB8vGQnaB5lfihKNJVHtqYNoMlsZYF9rYpZEhW1TRD4uE5rg4RfDDR+GghjckQlP3rRNB2Vn4tMA== 218 298 dependencies: 219 299 "@fortawesome/fontawesome-free" "^5.12.0" 220 - "@jupyterlab/apputils" "^3.6.1" 221 - "@jupyterlab/coreutils" "^5.6.1" 222 - "@jupyterlab/docregistry" "^3.6.1" 223 - "@jupyterlab/rendermime" "^3.6.1" 224 - "@jupyterlab/rendermime-interfaces" "^3.6.1" 225 - "@jupyterlab/services" "^6.6.1" 226 - "@jupyterlab/statedb" "^3.6.1" 227 - "@jupyterlab/translation" "^3.6.1" 228 - "@jupyterlab/ui-components" "^3.6.1" 300 + "@jupyterlab/apputils" "^3.6.3" 301 + "@jupyterlab/coreutils" "^5.6.3" 302 + "@jupyterlab/docregistry" "^3.6.3" 303 + "@jupyterlab/rendermime" "^3.6.3" 304 + "@jupyterlab/rendermime-interfaces" "^3.6.3" 305 + "@jupyterlab/services" "^6.6.3" 306 + "@jupyterlab/statedb" "^3.6.3" 307 + "@jupyterlab/translation" "^3.6.3" 308 + "@jupyterlab/ui-components" "^3.6.3" 229 309 "@lumino/algorithm" "^1.9.0" 230 - "@lumino/application" "^1.31.3" 310 + "@lumino/application" "^1.31.4" 231 311 "@lumino/commands" "^1.19.0" 232 312 "@lumino/coreutils" "^1.11.0" 233 313 "@lumino/disposable" "^1.10.0" ··· 235 315 "@lumino/polling" "^1.9.0" 236 316 "@lumino/properties" "^1.8.0" 237 317 "@lumino/signaling" "^1.10.0" 238 - "@lumino/widgets" "^1.37.1" 318 + "@lumino/widgets" "^1.37.2" 239 319 240 - "@jupyterlab/apputils@^3.6", "@jupyterlab/apputils@^3.6.1": 241 - version "3.6.1" 242 - resolved "https://registry.yarnpkg.com/@jupyterlab/apputils/-/apputils-3.6.1.tgz#c547886300e67c5eea0b9ee349e6e1acb0576e64" 243 - integrity sha512-/kvncjPLuBnq8unPEVxI/iwUVCVPFw9bmpnYenOdoAlbdrDD8nJwsiFi4xpk1d4VittPZ6vJaAMvXA0X2QGYlQ== 320 + "@jupyterlab/apputils@^3.6", "@jupyterlab/apputils@^3.6.3": 321 + version "3.6.3" 322 + resolved "https://registry.yarnpkg.com/@jupyterlab/apputils/-/apputils-3.6.3.tgz#bc37683142b281e21d22a2f4698634563658298e" 323 + integrity sha512-um2Aaa5fOUwHFpAqKTDA+MFpnAldzOILIi5QsKOWRxiJA2W8x+hlg5HvHbq+eSWuWEU3ah15M7htzBcL3g9d4Q== 244 324 dependencies: 245 - "@jupyterlab/coreutils" "^5.6.1" 246 - "@jupyterlab/observables" "^4.6.1" 247 - "@jupyterlab/services" "^6.6.1" 248 - "@jupyterlab/settingregistry" "^3.6.1" 249 - "@jupyterlab/statedb" "^3.6.1" 250 - "@jupyterlab/translation" "^3.6.1" 251 - "@jupyterlab/ui-components" "^3.6.1" 325 + "@jupyterlab/coreutils" "^5.6.3" 326 + "@jupyterlab/observables" "^4.6.3" 327 + "@jupyterlab/services" "^6.6.3" 328 + "@jupyterlab/settingregistry" "^3.6.3" 329 + "@jupyterlab/statedb" "^3.6.3" 330 + "@jupyterlab/translation" "^3.6.3" 331 + "@jupyterlab/ui-components" "^3.6.3" 252 332 "@lumino/algorithm" "^1.9.0" 253 333 "@lumino/commands" "^1.19.0" 254 334 "@lumino/coreutils" "^1.11.0" ··· 259 339 "@lumino/properties" "^1.8.0" 260 340 "@lumino/signaling" "^1.10.0" 261 341 "@lumino/virtualdom" "^1.14.0" 262 - "@lumino/widgets" "^1.37.1" 342 + "@lumino/widgets" "^1.37.2" 263 343 "@types/react" "^17.0.0" 264 344 react "^17.0.1" 265 345 react-dom "^17.0.1" 266 346 sanitize-html "~2.7.3" 267 347 url "^0.11.0" 268 348 269 - "@jupyterlab/attachments@^3.6.1": 270 - version "3.6.1" 271 - resolved "https://registry.yarnpkg.com/@jupyterlab/attachments/-/attachments-3.6.1.tgz#af3b3baa0f4150d412a874121b15029e9761c3a8" 272 - integrity sha512-0RA8H0pR3apvqHmkzuFJcJrNXXVDa5GG2Y2Nb5QDtOj+IFRMxEa/8Q4rXtiC7p+fDIgKC/B8xa4CTQlfDCEjaw== 349 + "@jupyterlab/attachments@^3.6.3": 350 + version "3.6.3" 351 + resolved "https://registry.yarnpkg.com/@jupyterlab/attachments/-/attachments-3.6.3.tgz#f2e52c3518d3f84cb7a7cc7c8a113f49dfdde4f1" 352 + integrity sha512-ZYDJjcoExmojsGkX5f1WVFfW39XJcb7CtfzFcNz3AbytebRK13S1xqCRlef/TFW+XT6BG7hjMSJlpW3GdkCV1Q== 273 353 dependencies: 274 - "@jupyterlab/nbformat" "^3.6.1" 275 - "@jupyterlab/observables" "^4.6.1" 276 - "@jupyterlab/rendermime" "^3.6.1" 277 - "@jupyterlab/rendermime-interfaces" "^3.6.1" 354 + "@jupyterlab/nbformat" "^3.6.3" 355 + "@jupyterlab/observables" "^4.6.3" 356 + "@jupyterlab/rendermime" "^3.6.3" 357 + "@jupyterlab/rendermime-interfaces" "^3.6.3" 278 358 "@lumino/disposable" "^1.10.0" 279 359 "@lumino/signaling" "^1.10.0" 280 360 281 361 "@jupyterlab/builder@^3.6": 282 - version "3.6.1" 283 - resolved "https://registry.yarnpkg.com/@jupyterlab/builder/-/builder-3.6.1.tgz#a04bf0312e8679d1f452c27fee2554ba4a6af3f5" 284 - integrity sha512-LvHQe6InEXJisEcvAdvSFbEEl8OhTjxBSNz7MrjRB+Ur+Qs898dg8QhDH9Ad5mgK3uh4nEN1BDq9W7C/NomqoA== 362 + version "3.6.3" 363 + resolved "https://registry.yarnpkg.com/@jupyterlab/builder/-/builder-3.6.3.tgz#a4b22efe34e9598b84122ff10509d3d890017b6a" 364 + integrity sha512-oY1a/r75RMoPzhSmuVu+DfjL0cKk1ceHTniZsM2wPuhjjyoF875u6CDzArJatpOOuTgLm7CY5OcU3LCIK1OAgg== 285 365 dependencies: 286 366 "@lumino/algorithm" "^1.9.0" 287 - "@lumino/application" "^1.31.3" 367 + "@lumino/application" "^1.31.4" 288 368 "@lumino/commands" "^1.19.0" 289 369 "@lumino/coreutils" "^1.11.0" 290 370 "@lumino/disposable" "^1.10.0" ··· 294 374 "@lumino/properties" "^1.8.0" 295 375 "@lumino/signaling" "^1.10.0" 296 376 "@lumino/virtualdom" "^1.14.0" 297 - "@lumino/widgets" "^1.37.1" 377 + "@lumino/widgets" "^1.37.2" 298 378 ajv "^6.12.3" 299 379 commander "~6.0.0" 300 380 css-loader "^5.0.1" ··· 319 399 webpack-merge "^5.1.2" 320 400 worker-loader "^3.0.2" 321 401 322 - "@jupyterlab/cells@^3.6": 323 - version "3.6.1" 324 - resolved "https://registry.yarnpkg.com/@jupyterlab/cells/-/cells-3.6.1.tgz#84c4a43cb66e94a934bcf25172b6ded64d87bba6" 325 - integrity sha512-Ojep4Sw83c4uzYSDMQcECW7wuan/dkerimKkb/5cm277ryHL51IgjZTEpJKaW8AeEjNxtAwjlo4cl/5KIwKvQw== 402 + "@jupyterlab/cells@^3.6", "@jupyterlab/cells@^3.6.3": 403 + version "3.6.3" 404 + resolved "https://registry.yarnpkg.com/@jupyterlab/cells/-/cells-3.6.3.tgz#ac8191f99923a004211725435d25280347794cff" 405 + integrity sha512-o3Uydof6bZ6HGSRgSm6isuAhaqYVmv+ozsmADYNmIGbwwwC+eb391Cv+rC3kuPZX/+2UhhO6s7fqFxW8aHUDkg== 326 406 dependencies: 327 - "@jupyter/ydoc" "~0.2.0" 328 - "@jupyterlab/apputils" "^3.6.1" 329 - "@jupyterlab/attachments" "^3.6.1" 330 - "@jupyterlab/codeeditor" "^3.6.1" 331 - "@jupyterlab/codemirror" "^3.6.1" 332 - "@jupyterlab/coreutils" "^5.6.1" 333 - "@jupyterlab/filebrowser" "^3.6.1" 334 - "@jupyterlab/nbformat" "^3.6.1" 335 - "@jupyterlab/observables" "^4.6.1" 336 - "@jupyterlab/outputarea" "^3.6.1" 337 - "@jupyterlab/rendermime" "^3.6.1" 338 - "@jupyterlab/services" "^6.6.1" 339 - "@jupyterlab/ui-components" "^3.6.1" 407 + "@jupyter/ydoc" "~0.2.3" 408 + "@jupyterlab/apputils" "^3.6.3" 409 + "@jupyterlab/attachments" "^3.6.3" 410 + "@jupyterlab/codeeditor" "^3.6.3" 411 + "@jupyterlab/codemirror" "^3.6.3" 412 + "@jupyterlab/coreutils" "^5.6.3" 413 + "@jupyterlab/filebrowser" "^3.6.3" 414 + "@jupyterlab/nbformat" "^3.6.3" 415 + "@jupyterlab/observables" "^4.6.3" 416 + "@jupyterlab/outputarea" "^3.6.3" 417 + "@jupyterlab/rendermime" "^3.6.3" 418 + "@jupyterlab/services" "^6.6.3" 419 + "@jupyterlab/ui-components" "^3.6.3" 340 420 "@lumino/algorithm" "^1.9.0" 341 421 "@lumino/coreutils" "^1.11.0" 342 422 "@lumino/domutils" "^1.8.0" ··· 345 425 "@lumino/polling" "^1.9.0" 346 426 "@lumino/signaling" "^1.10.0" 347 427 "@lumino/virtualdom" "^1.14.0" 348 - "@lumino/widgets" "^1.37.1" 428 + "@lumino/widgets" "^1.37.2" 349 429 marked "^4.0.17" 350 430 react "^17.0.1" 351 431 352 - "@jupyterlab/codeeditor@^3.6", "@jupyterlab/codeeditor@^3.6.1": 353 - version "3.6.1" 354 - resolved "https://registry.yarnpkg.com/@jupyterlab/codeeditor/-/codeeditor-3.6.1.tgz#9643e9f4f594f6cc3f02a2d5a192d8e2bc844284" 355 - integrity sha512-KIALB/PHY9LheZ0zGYMHnDGVUO5xReiG+u0Gb+658xYET148a/pU4kp47GzTYB2bsQRrmOmtMqda1/Nhn/c0xw== 432 + "@jupyterlab/codeeditor@^3.6", "@jupyterlab/codeeditor@^3.6.3": 433 + version "3.6.3" 434 + resolved "https://registry.yarnpkg.com/@jupyterlab/codeeditor/-/codeeditor-3.6.3.tgz#a889c1821001888af7b60f66b1ee91e15797c0bb" 435 + integrity sha512-SnVo5KDhyRkK/o1SDRX9nehLEAMaOBFf+GUx2jeXBTfr6wTKcwDBnJAUwlOfncwRlMV79aUIqTIcS861FSXDyA== 356 436 dependencies: 357 - "@jupyter/ydoc" "~0.2.0" 358 - "@jupyterlab/coreutils" "^5.6.1" 359 - "@jupyterlab/nbformat" "^3.6.1" 360 - "@jupyterlab/observables" "^4.6.1" 361 - "@jupyterlab/translation" "^3.6.1" 362 - "@jupyterlab/ui-components" "^3.6.1" 437 + "@jupyter/ydoc" "~0.2.3" 438 + "@jupyterlab/coreutils" "^5.6.3" 439 + "@jupyterlab/nbformat" "^3.6.3" 440 + "@jupyterlab/observables" "^4.6.3" 441 + "@jupyterlab/translation" "^3.6.3" 442 + "@jupyterlab/ui-components" "^3.6.3" 363 443 "@lumino/coreutils" "^1.11.0" 364 444 "@lumino/disposable" "^1.10.0" 365 445 "@lumino/dragdrop" "^1.13.0" 366 446 "@lumino/messaging" "^1.10.0" 367 447 "@lumino/signaling" "^1.10.0" 368 - "@lumino/widgets" "^1.37.1" 448 + "@lumino/widgets" "^1.37.2" 369 449 370 - "@jupyterlab/codemirror@^3.6.1": 371 - version "3.6.1" 372 - resolved "https://registry.yarnpkg.com/@jupyterlab/codemirror/-/codemirror-3.6.1.tgz#e21134b02d8ae5b6d971549a689b8462987d30c7" 373 - integrity sha512-hEjdAm1bSsBNuzjhnCJrphVdl8HZSGh/+q2MioyF7zRK+VbFarx7DKoYdAtaunHu5MkYA9NGf7mjLVyg17dK9g== 450 + "@jupyterlab/codemirror@^3.6.3": 451 + version "3.6.3" 452 + resolved "https://registry.yarnpkg.com/@jupyterlab/codemirror/-/codemirror-3.6.3.tgz#7cb19faae58d4fc26bc37064f029c4b17098c20a" 453 + integrity sha512-VU5bInzSqsyPGZkEd/w6HtJ9PSw7U5twoyrQSpSM+E2SEYWskaBZOHJf8XNunVoRRKwSvDLyxSs07Ot6zUlA0w== 374 454 dependencies: 375 - "@jupyter/ydoc" "~0.2.0" 376 - "@jupyterlab/apputils" "^3.6.1" 377 - "@jupyterlab/codeeditor" "^3.6.1" 378 - "@jupyterlab/coreutils" "^5.6.1" 379 - "@jupyterlab/nbformat" "^3.6.1" 380 - "@jupyterlab/observables" "^4.6.1" 381 - "@jupyterlab/statusbar" "^3.6.1" 382 - "@jupyterlab/translation" "^3.6.1" 455 + "@jupyter/ydoc" "~0.2.3" 456 + "@jupyterlab/apputils" "^3.6.3" 457 + "@jupyterlab/codeeditor" "^3.6.3" 458 + "@jupyterlab/coreutils" "^5.6.3" 459 + "@jupyterlab/nbformat" "^3.6.3" 460 + "@jupyterlab/observables" "^4.6.3" 461 + "@jupyterlab/statusbar" "^3.6.3" 462 + "@jupyterlab/translation" "^3.6.3" 383 463 "@lumino/algorithm" "^1.9.0" 384 464 "@lumino/commands" "^1.19.0" 385 465 "@lumino/coreutils" "^1.11.0" 386 466 "@lumino/disposable" "^1.10.0" 387 467 "@lumino/polling" "^1.9.0" 388 468 "@lumino/signaling" "^1.10.0" 389 - "@lumino/widgets" "^1.37.1" 469 + "@lumino/widgets" "^1.37.2" 390 470 codemirror "~5.61.0" 391 471 react "^17.0.1" 392 472 y-codemirror "^3.0.1" 393 473 394 - "@jupyterlab/coreutils@^5.6", "@jupyterlab/coreutils@^5.6.1": 395 - version "5.6.1" 396 - resolved "https://registry.yarnpkg.com/@jupyterlab/coreutils/-/coreutils-5.6.1.tgz#da6c2fe28298ffcad09f1ec5ad4202bdaf1c07c8" 397 - integrity sha512-nS4ixC9H53lFzdszOfZfDhlM2hlXfOtQAn6TnA/0Ra/gTBQ+LEbFIWdAp588iKuv8eKX39O/Us53T4oq24A31g== 474 + "@jupyterlab/coreutils@^5.6", "@jupyterlab/coreutils@^5.6.3": 475 + version "5.6.3" 476 + resolved "https://registry.yarnpkg.com/@jupyterlab/coreutils/-/coreutils-5.6.3.tgz#3b0b5d481b14596158b560336833c89be509e84e" 477 + integrity sha512-jRVTpwGzP9wBNYuaZTip89FS1qbeSYrEO2qdNVdW2rs0mQHcIlu3Fkv5muMFmKYGi0XHhG3UhZiWQ7qiPw2svQ== 398 478 dependencies: 399 479 "@lumino/coreutils" "^1.11.0" 400 480 "@lumino/disposable" "^1.10.0" ··· 404 484 path-browserify "^1.0.0" 405 485 url-parse "~1.5.1" 406 486 407 - "@jupyterlab/docmanager@^3.6.1": 408 - version "3.6.1" 409 - resolved "https://registry.yarnpkg.com/@jupyterlab/docmanager/-/docmanager-3.6.1.tgz#2f62aabb9dc3f8007f5f54b61473274f784b1972" 410 - integrity sha512-olDFoXq2H6TsnCk4OMJus4PcmXCtc2uewZy66XcLD7igDxKvQ50h9uF2wnrxohlgvXxZV9HTMyDyLD7layt82g== 487 + "@jupyterlab/docmanager@^3.6.3": 488 + version "3.6.3" 489 + resolved "https://registry.yarnpkg.com/@jupyterlab/docmanager/-/docmanager-3.6.3.tgz#df2c5b45c5e9b38e2a48eb703ff5e3a9b4b7860c" 490 + integrity sha512-4d5zGE3SGbg58wsFJtyskUxK7dEvl8d5Wh90hTlmsFNmr+nh5duTWcqTQ/a+d76YxYbGhH5vqOsNm5ORZq4Umw== 411 491 dependencies: 412 - "@jupyterlab/apputils" "^3.6.1" 413 - "@jupyterlab/coreutils" "^5.6.1" 414 - "@jupyterlab/docprovider" "^3.6.1" 415 - "@jupyterlab/docregistry" "^3.6.1" 416 - "@jupyterlab/services" "^6.6.1" 417 - "@jupyterlab/statusbar" "^3.6.1" 418 - "@jupyterlab/translation" "^3.6.1" 492 + "@jupyterlab/apputils" "^3.6.3" 493 + "@jupyterlab/coreutils" "^5.6.3" 494 + "@jupyterlab/docprovider" "^3.6.3" 495 + "@jupyterlab/docregistry" "^3.6.3" 496 + "@jupyterlab/services" "^6.6.3" 497 + "@jupyterlab/statusbar" "^3.6.3" 498 + "@jupyterlab/translation" "^3.6.3" 419 499 "@lumino/algorithm" "^1.9.0" 420 500 "@lumino/coreutils" "^1.11.0" 421 501 "@lumino/disposable" "^1.10.0" 422 502 "@lumino/messaging" "^1.10.0" 423 503 "@lumino/properties" "^1.8.0" 424 504 "@lumino/signaling" "^1.10.0" 425 - "@lumino/widgets" "^1.37.1" 505 + "@lumino/widgets" "^1.37.2" 426 506 react "^17.0.1" 427 507 428 - "@jupyterlab/docprovider@^3.6.1": 429 - version "3.6.1" 430 - resolved "https://registry.yarnpkg.com/@jupyterlab/docprovider/-/docprovider-3.6.1.tgz#8be66a419d595b490d6ca3f79238fd160d1cd53e" 431 - integrity sha512-YeqLMPlC2jEWBvxgIVfhxbeYXWKb5DGEkv+WJp11S6oFgSNqAHZ1zqH1BB/+UgYWwwkafADwAjepaGFhnr2pPw== 508 + "@jupyterlab/docprovider@^3.6.3": 509 + version "3.6.3" 510 + resolved "https://registry.yarnpkg.com/@jupyterlab/docprovider/-/docprovider-3.6.3.tgz#90fbf07214b6c3e98055787fc351a68e9d83470c" 511 + integrity sha512-M5IoyykDpWnUFNePHz3+fi/RNvV92UNbQGfAvsaCMSn+fl48rD4rHB9EZGceOisb3m1U+E4SntKYI3pl49yUEg== 432 512 dependencies: 433 - "@jupyter/ydoc" "~0.2.0" 434 - "@jupyterlab/coreutils" "^5.6.1" 435 - "@jupyterlab/services" "^6.6.1" 513 + "@jupyter/ydoc" "~0.2.3" 514 + "@jupyterlab/apputils" "^3.6.3" 515 + "@jupyterlab/coreutils" "^5.6.3" 516 + "@jupyterlab/services" "^6.6.3" 517 + "@jupyterlab/translation" "^3.6.3" 436 518 "@lumino/coreutils" "^1.11.0" 437 519 "@lumino/disposable" "^1.10.0" 438 520 "@lumino/signaling" "^1.10.0" 439 521 y-protocols "^1.0.5" 440 - y-websocket "^1.3.15" 441 - yjs "^13.5.17" 522 + y-websocket "^1.4.6" 442 523 443 - "@jupyterlab/docregistry@^3.6", "@jupyterlab/docregistry@^3.6.1": 444 - version "3.6.1" 445 - resolved "https://registry.yarnpkg.com/@jupyterlab/docregistry/-/docregistry-3.6.1.tgz#942b76ea7c59ab9ee375dce4a7bb9377d28d7f61" 446 - integrity sha512-uQsmw1LpvcRC8CZ/cjmFnQKB+E+kWqJQDGwtzBDjZm4UcADVs1mwvSwPpAZvTBb0gmYBcS09mTZt7WgVv1Nj8A== 524 + "@jupyterlab/docregistry@^3.0.0", "@jupyterlab/docregistry@^3.6", "@jupyterlab/docregistry@^3.6.3": 525 + version "3.6.3" 526 + resolved "https://registry.yarnpkg.com/@jupyterlab/docregistry/-/docregistry-3.6.3.tgz#4a03fbb704449bda7a94df7a4bd63078c11aef58" 527 + integrity sha512-unDMrtCSGKPqX9uvYCkI7zGTvskuC9odAPIHPsYSVMcHL/o5M7lQkHmRZCoSIezfe5OvPGXbYT2boQrBKXqCFw== 447 528 dependencies: 448 - "@jupyter/ydoc" "~0.2.0" 449 - "@jupyterlab/apputils" "^3.6.1" 450 - "@jupyterlab/codeeditor" "^3.6.1" 451 - "@jupyterlab/codemirror" "^3.6.1" 452 - "@jupyterlab/coreutils" "^5.6.1" 453 - "@jupyterlab/docprovider" "^3.6.1" 454 - "@jupyterlab/observables" "^4.6.1" 455 - "@jupyterlab/rendermime" "^3.6.1" 456 - "@jupyterlab/rendermime-interfaces" "^3.6.1" 457 - "@jupyterlab/services" "^6.6.1" 458 - "@jupyterlab/translation" "^3.6.1" 459 - "@jupyterlab/ui-components" "^3.6.1" 529 + "@jupyter/ydoc" "~0.2.3" 530 + "@jupyterlab/apputils" "^3.6.3" 531 + "@jupyterlab/codeeditor" "^3.6.3" 532 + "@jupyterlab/codemirror" "^3.6.3" 533 + "@jupyterlab/coreutils" "^5.6.3" 534 + "@jupyterlab/docprovider" "^3.6.3" 535 + "@jupyterlab/observables" "^4.6.3" 536 + "@jupyterlab/rendermime" "^3.6.3" 537 + "@jupyterlab/rendermime-interfaces" "^3.6.3" 538 + "@jupyterlab/services" "^6.6.3" 539 + "@jupyterlab/translation" "^3.6.3" 540 + "@jupyterlab/ui-components" "^3.6.3" 460 541 "@lumino/algorithm" "^1.9.0" 461 542 "@lumino/coreutils" "^1.11.0" 462 543 "@lumino/disposable" "^1.10.0" 463 544 "@lumino/messaging" "^1.10.0" 464 545 "@lumino/signaling" "^1.10.0" 465 - "@lumino/widgets" "^1.37.1" 546 + "@lumino/widgets" "^1.37.2" 466 547 467 - "@jupyterlab/filebrowser@^3.6", "@jupyterlab/filebrowser@^3.6.1": 468 - version "3.6.1" 469 - resolved "https://registry.yarnpkg.com/@jupyterlab/filebrowser/-/filebrowser-3.6.1.tgz#8fe44d03545fd9318fe8014edd5c4ddbf705bcb5" 470 - integrity sha512-brd5PQQ1m9HK+53opahoi6SaEO0oweRloE1GJEA9t9CHKklpiZ18/3QXF+WDgHtV2UU3ZDmND7Fq5YCets2lBg== 548 + "@jupyterlab/filebrowser@^3.6", "@jupyterlab/filebrowser@^3.6.3": 549 + version "3.6.3" 550 + resolved "https://registry.yarnpkg.com/@jupyterlab/filebrowser/-/filebrowser-3.6.3.tgz#169b880e19a8686f9a669a750027c2817b4b6cef" 551 + integrity sha512-Qu+Mtx3d0QY7qCMIxg5nQtkQYh+kZ2kGO7tgS+yfKjo0cluPsxo+Zr56KtJU6zyDYjylVCtLYIK2RflwRKhdng== 471 552 dependencies: 472 - "@jupyterlab/apputils" "^3.6.1" 473 - "@jupyterlab/coreutils" "^5.6.1" 474 - "@jupyterlab/docmanager" "^3.6.1" 475 - "@jupyterlab/docregistry" "^3.6.1" 476 - "@jupyterlab/services" "^6.6.1" 477 - "@jupyterlab/statedb" "^3.6.1" 478 - "@jupyterlab/statusbar" "^3.6.1" 479 - "@jupyterlab/translation" "^3.6.1" 480 - "@jupyterlab/ui-components" "^3.6.1" 553 + "@jupyterlab/apputils" "^3.6.3" 554 + "@jupyterlab/coreutils" "^5.6.3" 555 + "@jupyterlab/docmanager" "^3.6.3" 556 + "@jupyterlab/docregistry" "^3.6.3" 557 + "@jupyterlab/services" "^6.6.3" 558 + "@jupyterlab/statedb" "^3.6.3" 559 + "@jupyterlab/statusbar" "^3.6.3" 560 + "@jupyterlab/translation" "^3.6.3" 561 + "@jupyterlab/ui-components" "^3.6.3" 481 562 "@lumino/algorithm" "^1.9.0" 482 563 "@lumino/coreutils" "^1.11.0" 483 564 "@lumino/disposable" "^1.10.0" ··· 487 568 "@lumino/polling" "^1.9.0" 488 569 "@lumino/signaling" "^1.10.0" 489 570 "@lumino/virtualdom" "^1.14.0" 490 - "@lumino/widgets" "^1.37.1" 571 + "@lumino/widgets" "^1.37.2" 491 572 react "^17.0.1" 492 573 493 574 "@jupyterlab/launcher@^3.6": 494 - version "3.6.1" 495 - resolved "https://registry.yarnpkg.com/@jupyterlab/launcher/-/launcher-3.6.1.tgz#f525e04f9a341d633afd32d61db76594cc3027bb" 496 - integrity sha512-DZFirXQei8jwR4LC5h6ezCqVfkkLjvXhUSLwX3Wtj4VcJ5ErTcXlZGQwqDECgEVMbdoXNcizMfSaUAM1JPsvmQ== 575 + version "3.6.3" 576 + resolved "https://registry.yarnpkg.com/@jupyterlab/launcher/-/launcher-3.6.3.tgz#e3d28fc96063542950c1cfc53b9a324ede76dd9d" 577 + integrity sha512-fQQ4DyDWeOUdXl70xi6EWAVAG0AXN7TYqFRx+hyPKg3WtRIypQ0End8uKIzzHXAXqtBJdyF+iEZwUeE3wEkDow== 497 578 dependencies: 498 - "@jupyterlab/apputils" "^3.6.1" 499 - "@jupyterlab/translation" "^3.6.1" 500 - "@jupyterlab/ui-components" "^3.6.1" 579 + "@jupyterlab/apputils" "^3.6.3" 580 + "@jupyterlab/translation" "^3.6.3" 581 + "@jupyterlab/ui-components" "^3.6.3" 501 582 "@lumino/algorithm" "^1.9.0" 502 583 "@lumino/commands" "^1.19.0" 503 584 "@lumino/coreutils" "^1.11.0" 504 585 "@lumino/disposable" "^1.10.0" 505 586 "@lumino/properties" "^1.8.0" 506 - "@lumino/widgets" "^1.37.1" 587 + "@lumino/widgets" "^1.37.2" 507 588 react "^17.0.1" 508 589 509 - "@jupyterlab/mainmenu@^3.6": 510 - version "3.6.1" 511 - resolved "https://registry.yarnpkg.com/@jupyterlab/mainmenu/-/mainmenu-3.6.1.tgz#aa7ea5364566adef08453bfa645d62e347d09455" 512 - integrity sha512-wZqFNHC8DKRNl6rKMIZZWE//ZG9YbYyQ+sX4UOPqA4mg8fmQX90V57+vqV76d0dgivSQffO06CktKhnhD6J94Q== 590 + "@jupyterlab/logconsole@^3.0.0": 591 + version "3.6.3" 592 + resolved "https://registry.yarnpkg.com/@jupyterlab/logconsole/-/logconsole-3.6.3.tgz#9ecc3a7545aa7848a6ca34eb546f58aede8343ba" 593 + integrity sha512-fjhRbkf1wW6QD7nrlGjWAke0C3w2NB0ta5nBMXcc/wulBFjRQ4h7pY0wdSOsr7xMad21lrWEeRmxBdekazUBnw== 513 594 dependencies: 514 - "@jupyterlab/apputils" "^3.6.1" 515 - "@jupyterlab/services" "^6.6.1" 516 - "@jupyterlab/translation" "^3.6.1" 517 - "@jupyterlab/ui-components" "^3.6.1" 595 + "@jupyterlab/coreutils" "^5.6.3" 596 + "@jupyterlab/nbformat" "^3.6.3" 597 + "@jupyterlab/outputarea" "^3.6.3" 598 + "@jupyterlab/rendermime" "^3.6.3" 599 + "@jupyterlab/services" "^6.6.3" 600 + "@jupyterlab/translation" "^3.6.3" 601 + "@lumino/coreutils" "^1.11.0" 602 + "@lumino/disposable" "^1.10.0" 603 + "@lumino/messaging" "^1.10.0" 604 + "@lumino/signaling" "^1.10.0" 605 + "@lumino/widgets" "^1.37.2" 606 + 607 + "@jupyterlab/mainmenu@^3.0.0", "@jupyterlab/mainmenu@^3.6": 608 + version "3.6.3" 609 + resolved "https://registry.yarnpkg.com/@jupyterlab/mainmenu/-/mainmenu-3.6.3.tgz#5d322db9b8d742b7042109ab7e8c733696ae38fc" 610 + integrity sha512-ohZzHDeReKX3zbLz2bUsYRSdkX6bVhNoCer3Rat8gjfb8vr/bqK9ReAvvoA4rRqm0mrfqwotpZSzbE4+y5KqZA== 611 + dependencies: 612 + "@jupyterlab/apputils" "^3.6.3" 613 + "@jupyterlab/services" "^6.6.3" 614 + "@jupyterlab/translation" "^3.6.3" 615 + "@jupyterlab/ui-components" "^3.6.3" 518 616 "@lumino/algorithm" "^1.9.0" 519 617 "@lumino/commands" "^1.19.0" 520 618 "@lumino/coreutils" "^1.11.0" 521 - "@lumino/widgets" "^1.37.1" 619 + "@lumino/widgets" "^1.37.2" 522 620 523 - "@jupyterlab/nbformat@^3.0.0 || ^4.0.0-alpha.15", "@jupyterlab/nbformat@^3.6.1": 524 - version "3.6.1" 525 - resolved "https://registry.yarnpkg.com/@jupyterlab/nbformat/-/nbformat-3.6.1.tgz#84f1239ff0a54d693beed21534aef1baeaa93518" 526 - integrity sha512-fLJTAwnQZ/5H9dBV/noqlkbGmGBbcsgd0FHWyMVIq+efKFX6CW1MOk61uM76rfahkke3XgYgvlXsw7i7lEIhcA== 621 + "@jupyterlab/nbformat@^3.0.0", "@jupyterlab/nbformat@^3.0.0 || ^4.0.0-alpha.15", "@jupyterlab/nbformat@^3.6.3": 622 + version "3.6.3" 623 + resolved "https://registry.yarnpkg.com/@jupyterlab/nbformat/-/nbformat-3.6.3.tgz#8520338e3679cbe8ce2ea8eb5a9b816f8b774ad3" 624 + integrity sha512-0qJLa4dtOmu9EmHFeM7gaZi4qheovIPc9ZrgGGRuG0obajs4YYlvh4MQvCSgpVhme4AuBfGlcfzhlx+Gbzr5Xw== 527 625 dependencies: 528 626 "@lumino/coreutils" "^1.11.0" 529 627 530 - "@jupyterlab/observables@^4.6.1": 531 - version "4.6.1" 532 - resolved "https://registry.yarnpkg.com/@jupyterlab/observables/-/observables-4.6.1.tgz#7d05b60192e85732db29de5f9e8525798a08aee6" 533 - integrity sha512-ez+fxyE3qwQ9grZ0nj2fpgcPIGySs/cNfojfcQatziV2rbFZzrBJJsWFSBhPO55vJd1Mue21aPw1eEK3ok4Wfw== 628 + "@jupyterlab/notebook@^3.0.0": 629 + version "3.6.3" 630 + resolved "https://registry.yarnpkg.com/@jupyterlab/notebook/-/notebook-3.6.3.tgz#1584be72184d67d59291e2b22f55bc257afde436" 631 + integrity sha512-id1KD5/9IDPr/IZFCl/YX4Vc+Q198LZshhFNEcVJZcRdjD7Vh+LGvWcLOh80OAv86J4XSTTAsp3gHPr4iSwPDg== 632 + dependencies: 633 + "@jupyter/ydoc" "~0.2.3" 634 + "@jupyterlab/apputils" "^3.6.3" 635 + "@jupyterlab/cells" "^3.6.3" 636 + "@jupyterlab/codeeditor" "^3.6.3" 637 + "@jupyterlab/coreutils" "^5.6.3" 638 + "@jupyterlab/docregistry" "^3.6.3" 639 + "@jupyterlab/nbformat" "^3.6.3" 640 + "@jupyterlab/observables" "^4.6.3" 641 + "@jupyterlab/rendermime" "^3.6.3" 642 + "@jupyterlab/services" "^6.6.3" 643 + "@jupyterlab/settingregistry" "^3.6.3" 644 + "@jupyterlab/statusbar" "^3.6.3" 645 + "@jupyterlab/translation" "^3.6.3" 646 + "@jupyterlab/ui-components" "^3.6.3" 647 + "@lumino/algorithm" "^1.9.0" 648 + "@lumino/coreutils" "^1.11.0" 649 + "@lumino/domutils" "^1.8.0" 650 + "@lumino/dragdrop" "^1.13.0" 651 + "@lumino/messaging" "^1.10.0" 652 + "@lumino/properties" "^1.8.0" 653 + "@lumino/signaling" "^1.10.0" 654 + "@lumino/virtualdom" "^1.14.0" 655 + "@lumino/widgets" "^1.37.2" 656 + react "^17.0.1" 657 + 658 + "@jupyterlab/observables@^4.6.3": 659 + version "4.6.3" 660 + resolved "https://registry.yarnpkg.com/@jupyterlab/observables/-/observables-4.6.3.tgz#49a9ca49fbda7428abbd1bfb8a4006ecd406c18d" 661 + integrity sha512-CvQoL+9WHXOy/CXp/PQLi4c5iZVJ4psz11+GrycDDinX1AdVQ8a43OLTC0gxWl3Tk2C8ZvAi1sgn4FS68E1ACQ== 534 662 dependencies: 535 663 "@lumino/algorithm" "^1.9.0" 536 664 "@lumino/coreutils" "^1.11.0" ··· 538 666 "@lumino/messaging" "^1.10.0" 539 667 "@lumino/signaling" "^1.10.0" 540 668 541 - "@jupyterlab/outputarea@^3.6.1": 542 - version "3.6.1" 543 - resolved "https://registry.yarnpkg.com/@jupyterlab/outputarea/-/outputarea-3.6.1.tgz#904d0933d4e8c4bedb6e4179da8d4b6cfd32630d" 544 - integrity sha512-/OWU9LvKeRUk5mzQskhPQtWY6/NIiRy3bzhbFesSJ1+3f+L1pk7mXCHmRxiG6FSw2ujeCV3vO4uFTXGLxoqiAw== 669 + "@jupyterlab/outputarea@^3.0.0", "@jupyterlab/outputarea@^3.6.3": 670 + version "3.6.3" 671 + resolved "https://registry.yarnpkg.com/@jupyterlab/outputarea/-/outputarea-3.6.3.tgz#acf7a604eb352109d096d2a9fdd1fbbddbf80af1" 672 + integrity sha512-SSmkDWS8MhdXl7+rQoLu/5wJBKTq1YEkxlQcKh1Z0VN4VjYDCA/bKFGjOmKN7wMmoVP/zRmWvUwl/DLJCHx/Tw== 545 673 dependencies: 546 - "@jupyterlab/apputils" "^3.6.1" 547 - "@jupyterlab/nbformat" "^3.6.1" 548 - "@jupyterlab/observables" "^4.6.1" 549 - "@jupyterlab/rendermime" "^3.6.1" 550 - "@jupyterlab/rendermime-interfaces" "^3.6.1" 551 - "@jupyterlab/services" "^6.6.1" 674 + "@jupyterlab/apputils" "^3.6.3" 675 + "@jupyterlab/nbformat" "^3.6.3" 676 + "@jupyterlab/observables" "^4.6.3" 677 + "@jupyterlab/rendermime" "^3.6.3" 678 + "@jupyterlab/rendermime-interfaces" "^3.6.3" 679 + "@jupyterlab/services" "^6.6.3" 552 680 "@lumino/algorithm" "^1.9.0" 553 681 "@lumino/coreutils" "^1.11.0" 554 682 "@lumino/disposable" "^1.10.0" 555 683 "@lumino/messaging" "^1.10.0" 556 684 "@lumino/properties" "^1.8.0" 557 685 "@lumino/signaling" "^1.10.0" 558 - "@lumino/widgets" "^1.37.1" 686 + "@lumino/widgets" "^1.37.2" 559 687 resize-observer-polyfill "^1.5.1" 560 688 561 - "@jupyterlab/rendermime-interfaces@^3.6.1": 562 - version "3.6.1" 563 - resolved "https://registry.yarnpkg.com/@jupyterlab/rendermime-interfaces/-/rendermime-interfaces-3.6.1.tgz#d531a6ba228df83b581aee0df5041f7f9a1b4495" 564 - integrity sha512-IB0rFBTRpguGbAF/WmNPa//UfXcZLRur5DuSwP5tRz2iUZIu/dAFeLDq3j8NL2POz1+yeXyQSQyp2Xu9w8CrFw== 689 + "@jupyterlab/rendermime-interfaces@^3.0.0", "@jupyterlab/rendermime-interfaces@^3.6.3": 690 + version "3.6.3" 691 + resolved "https://registry.yarnpkg.com/@jupyterlab/rendermime-interfaces/-/rendermime-interfaces-3.6.3.tgz#80009705d5ded65a4b27c4b826b295f40f126902" 692 + integrity sha512-VHZVnqB0K1nmoQMOhFGHwvSYMQmxqcOC3wWDRFeUOv8S+tejTYfbrKXPOZJvhdGB52Jn8XNIesXOuNpLhl4HmQ== 565 693 dependencies: 566 - "@jupyterlab/translation" "^3.6.1" 694 + "@jupyterlab/translation" "^3.6.3" 567 695 "@lumino/coreutils" "^1.11.0" 568 - "@lumino/widgets" "^1.37.1" 696 + "@lumino/widgets" "^1.37.2" 569 697 570 - "@jupyterlab/rendermime@^3.6", "@jupyterlab/rendermime@^3.6.1": 571 - version "3.6.1" 572 - resolved "https://registry.yarnpkg.com/@jupyterlab/rendermime/-/rendermime-3.6.1.tgz#ebeef56293cf83f6aa8eb8f12edcd16c4eaafae7" 573 - integrity sha512-v4YHIxSd+0foqyzTaloBPevdYUBgZ4Tk1uuXzTdCVIdceS9MG76UfjBu8EPl86AZI8R2ihlHh01pxpgLX0Smdw== 698 + "@jupyterlab/rendermime@^3.0.0", "@jupyterlab/rendermime@^3.6", "@jupyterlab/rendermime@^3.6.3": 699 + version "3.6.3" 700 + resolved "https://registry.yarnpkg.com/@jupyterlab/rendermime/-/rendermime-3.6.3.tgz#48d83c70493b0356d4dac6d89a863d8a5a84f68e" 701 + integrity sha512-w3e38OddJin9fbfe7EWsKiiup/0ayvHPrAsacde8PqGLvi/sLeAXT98PqihsKt8EAlOgXSkSO0Ivjbd0JzgGgA== 574 702 dependencies: 575 - "@jupyterlab/apputils" "^3.6.1" 576 - "@jupyterlab/codemirror" "^3.6.1" 577 - "@jupyterlab/coreutils" "^5.6.1" 578 - "@jupyterlab/nbformat" "^3.6.1" 579 - "@jupyterlab/observables" "^4.6.1" 580 - "@jupyterlab/rendermime-interfaces" "^3.6.1" 581 - "@jupyterlab/services" "^6.6.1" 582 - "@jupyterlab/translation" "^3.6.1" 703 + "@jupyterlab/apputils" "^3.6.3" 704 + "@jupyterlab/codemirror" "^3.6.3" 705 + "@jupyterlab/coreutils" "^5.6.3" 706 + "@jupyterlab/nbformat" "^3.6.3" 707 + "@jupyterlab/observables" "^4.6.3" 708 + "@jupyterlab/rendermime-interfaces" "^3.6.3" 709 + "@jupyterlab/services" "^6.6.3" 710 + "@jupyterlab/translation" "^3.6.3" 583 711 "@lumino/algorithm" "^1.9.0" 584 712 "@lumino/coreutils" "^1.11.0" 585 713 "@lumino/messaging" "^1.10.0" 586 714 "@lumino/signaling" "^1.10.0" 587 - "@lumino/widgets" "^1.37.1" 715 + "@lumino/widgets" "^1.37.2" 588 716 lodash.escape "^4.0.1" 589 717 marked "^4.0.17" 590 718 591 - "@jupyterlab/services@^6.6", "@jupyterlab/services@^6.6.1": 592 - version "6.6.1" 593 - resolved "https://registry.yarnpkg.com/@jupyterlab/services/-/services-6.6.1.tgz#5fd96574bb1eee2e4217a6d039b4dcdeb51bb66f" 594 - integrity sha512-4YIwTsfx7+JO7Lz9YFTpUvniA3aHdR5dDQJfdo9TsCMxs+NDVfjNAvp9VHa1xNJWYll4Ay31lYWbvuN/SI+KEA== 719 + "@jupyterlab/services@^6.0.0", "@jupyterlab/services@^6.6", "@jupyterlab/services@^6.6.3": 720 + version "6.6.3" 721 + resolved "https://registry.yarnpkg.com/@jupyterlab/services/-/services-6.6.3.tgz#303938e5dc5aebce7a86324a64ed89c25c61c9e7" 722 + integrity sha512-BxEOMRl9X18T5wY7iV6ZJhARnibFghpD3OruqeSbnGdbRv6XJi8prsRbCQQ6Mf9agvf81B20KmDvYKikPHC0xQ== 595 723 dependencies: 596 - "@jupyterlab/coreutils" "^5.6.1" 597 - "@jupyterlab/nbformat" "^3.6.1" 598 - "@jupyterlab/observables" "^4.6.1" 599 - "@jupyterlab/settingregistry" "^3.6.1" 600 - "@jupyterlab/statedb" "^3.6.1" 724 + "@jupyterlab/coreutils" "^5.6.3" 725 + "@jupyterlab/nbformat" "^3.6.3" 726 + "@jupyterlab/observables" "^4.6.3" 727 + "@jupyterlab/settingregistry" "^3.6.3" 728 + "@jupyterlab/statedb" "^3.6.3" 601 729 "@lumino/algorithm" "^1.9.0" 602 730 "@lumino/coreutils" "^1.11.0" 603 731 "@lumino/disposable" "^1.10.0" ··· 606 734 node-fetch "^2.6.0" 607 735 ws "^7.4.6" 608 736 609 - "@jupyterlab/settingregistry@^3.6", "@jupyterlab/settingregistry@^3.6.1": 610 - version "3.6.1" 611 - resolved "https://registry.yarnpkg.com/@jupyterlab/settingregistry/-/settingregistry-3.6.1.tgz#cd04e64d598598950c64aa99e1fc8a2c962d8c31" 612 - integrity sha512-zNCYIK6/oWG6JnhmwRGE/Zvn5Xhj0kovcJgTlOSHGyIiHqLfJA9TzHZDNUDANqqxAg4+H9fYdh1+agi4XWGL8A== 737 + "@jupyterlab/settingregistry@^3.0.0", "@jupyterlab/settingregistry@^3.6", "@jupyterlab/settingregistry@^3.6.3": 738 + version "3.6.3" 739 + resolved "https://registry.yarnpkg.com/@jupyterlab/settingregistry/-/settingregistry-3.6.3.tgz#642f8b6449d626821ef13a7e778ae716fa8331c9" 740 + integrity sha512-pnzIge0ZC8V63R97HiNroJ0eaPM0DN6x65SStyLuv/K8Qez4XqpOdc0Wfell5ri5mxMvm1qKekuFeTikqSXQKQ== 613 741 dependencies: 614 - "@jupyterlab/statedb" "^3.6.1" 742 + "@jupyterlab/statedb" "^3.6.3" 615 743 "@lumino/commands" "^1.19.0" 616 744 "@lumino/coreutils" "^1.11.0" 617 745 "@lumino/disposable" "^1.10.0" ··· 619 747 ajv "^6.12.3" 620 748 json5 "^2.1.1" 621 749 622 - "@jupyterlab/statedb@^3.6.1": 623 - version "3.6.1" 624 - resolved "https://registry.yarnpkg.com/@jupyterlab/statedb/-/statedb-3.6.1.tgz#3f64bfee22ff7779404835fa87b08c67e66716c3" 625 - integrity sha512-6+fGzKUCaWBKX/fZDdXR++WgfvYE+Dv5ma8gkgcHaS2vEup2snkmgZ8fBUJXm5xVpU4KhXjTUb7dafLfG7BL3Q== 750 + "@jupyterlab/statedb@^3.6.3": 751 + version "3.6.3" 752 + resolved "https://registry.yarnpkg.com/@jupyterlab/statedb/-/statedb-3.6.3.tgz#6ba2166af9232c9a185cf0077cf1272f24cc9a69" 753 + integrity sha512-A36L+0NN8f0WOES2GdtZjp9uFuC7IBjhKiO/RlKRX5AFjNxoJ9oO3PZtoxJQYPnGBljMqVdRa+m9aYEfvKhYyQ== 626 754 dependencies: 627 755 "@lumino/commands" "^1.19.0" 628 756 "@lumino/coreutils" "^1.11.0" ··· 630 758 "@lumino/properties" "^1.8.0" 631 759 "@lumino/signaling" "^1.10.0" 632 760 633 - "@jupyterlab/statusbar@^3.6.1": 634 - version "3.6.1" 635 - resolved "https://registry.yarnpkg.com/@jupyterlab/statusbar/-/statusbar-3.6.1.tgz#382c32eb6599973176d5ac0497e4a0c9dfa8df37" 636 - integrity sha512-rpQa6G6agR+lu3Djt/YTroQ4W3ZasfGmtmO24IXsm3C5418nPIl2oQeEJTc7OsXRvsdoCoAK7c/Rh9TeyhBhug== 761 + "@jupyterlab/statusbar@^3.6.3": 762 + version "3.6.3" 763 + resolved "https://registry.yarnpkg.com/@jupyterlab/statusbar/-/statusbar-3.6.3.tgz#29c24427a2d6b205349b94583de0ccb8b9435d88" 764 + integrity sha512-m59NLR0Zghm53PU6hDzRF4XVORnJx/YRx0svcjj/TGLk8LSffpQbUDBy24dl3tOuChk4D5cCdgeDH1X30TzCaA== 637 765 dependencies: 638 - "@jupyterlab/apputils" "^3.6.1" 639 - "@jupyterlab/codeeditor" "^3.6.1" 640 - "@jupyterlab/services" "^6.6.1" 641 - "@jupyterlab/translation" "^3.6.1" 642 - "@jupyterlab/ui-components" "^3.6.1" 766 + "@jupyterlab/apputils" "^3.6.3" 767 + "@jupyterlab/codeeditor" "^3.6.3" 768 + "@jupyterlab/services" "^6.6.3" 769 + "@jupyterlab/translation" "^3.6.3" 770 + "@jupyterlab/ui-components" "^3.6.3" 643 771 "@lumino/algorithm" "^1.9.0" 644 772 "@lumino/coreutils" "^1.11.0" 645 773 "@lumino/disposable" "^1.10.0" 646 774 "@lumino/messaging" "^1.10.0" 647 775 "@lumino/signaling" "^1.10.0" 648 - "@lumino/widgets" "^1.37.1" 776 + "@lumino/widgets" "^1.37.2" 649 777 csstype "~3.0.3" 650 778 react "^17.0.1" 651 779 typestyle "^2.0.4" 652 780 653 - "@jupyterlab/translation@^3.6", "@jupyterlab/translation@^3.6.1": 654 - version "3.6.1" 655 - resolved "https://registry.yarnpkg.com/@jupyterlab/translation/-/translation-3.6.1.tgz#db1380c349f2e8645b58a9eac4986f3f1c6b320b" 656 - integrity sha512-+I1zzQnYNVnU9rrr7ceHPexiyMFavfK0t6I3qdgAHQ1TTLsLVQMp5m/T7S2SaJjPK7/GtRml5DgmErRyy5becA== 781 + "@jupyterlab/translation@^3.0.0", "@jupyterlab/translation@^3.6", "@jupyterlab/translation@^3.6.3": 782 + version "3.6.3" 783 + resolved "https://registry.yarnpkg.com/@jupyterlab/translation/-/translation-3.6.3.tgz#3fd95f726316762bc1799a7b7be0243d5465932a" 784 + integrity sha512-m+wwBv/hiN5Y6Sb7Ij150ZhPXZdhN5wI8CT3afnzARwKr2Aww5AIURO3upmMwnKaPVQTrWqsS3+7bZS/21JuJA== 657 785 dependencies: 658 - "@jupyterlab/coreutils" "^5.6.1" 659 - "@jupyterlab/services" "^6.6.1" 660 - "@jupyterlab/statedb" "^3.6.1" 786 + "@jupyterlab/coreutils" "^5.6.3" 787 + "@jupyterlab/services" "^6.6.3" 788 + "@jupyterlab/statedb" "^3.6.3" 661 789 "@lumino/coreutils" "^1.11.0" 662 790 663 - "@jupyterlab/ui-components@^3.6", "@jupyterlab/ui-components@^3.6.1": 664 - version "3.6.1" 665 - resolved "https://registry.yarnpkg.com/@jupyterlab/ui-components/-/ui-components-3.6.1.tgz#1e12b23614288a1c45fda50c2d141483b879bebf" 666 - integrity sha512-p9wH9iidGuuKSm2yXFGhHs6gzpoBpsHRCiOJw9bmj2PBsDKEGjh65Rh0YBv0d7TD6VVgAwMmokaT01KqjUmY+g== 791 + "@jupyterlab/ui-components@^3.6", "@jupyterlab/ui-components@^3.6.3": 792 + version "3.6.3" 793 + resolved "https://registry.yarnpkg.com/@jupyterlab/ui-components/-/ui-components-3.6.3.tgz#36555036b383c5d80346f409a7a168d13c9d8c85" 794 + integrity sha512-XzseUo2IXclPlYcGxCIz8evjWF+dCBMmbJlvoE5OF29BYBvI5N/DUaTem8bHN5kmQwHIXX6BImHu7rbC9Xjl6w== 667 795 dependencies: 668 796 "@blueprintjs/core" "^3.36.0" 669 797 "@blueprintjs/select" "^3.15.0" 670 - "@jupyterlab/coreutils" "^5.6.1" 671 - "@jupyterlab/translation" "^3.6.1" 798 + "@jupyterlab/coreutils" "^5.6.3" 799 + "@jupyterlab/translation" "^3.6.3" 672 800 "@lumino/algorithm" "^1.9.0" 673 801 "@lumino/commands" "^1.19.0" 674 802 "@lumino/coreutils" "^1.11.0" 675 803 "@lumino/disposable" "^1.10.0" 676 804 "@lumino/signaling" "^1.10.0" 677 805 "@lumino/virtualdom" "^1.14.0" 678 - "@lumino/widgets" "^1.37.1" 806 + "@lumino/widgets" "^1.37.2" 679 807 "@rjsf/core" "^3.1.0" 680 808 react "^17.0.1" 681 809 react-dom "^17.0.1" ··· 709 837 validate-npm-package-name "^4.0.0" 710 838 yargs-parser "20.2.4" 711 839 712 - "@lumino/algorithm@^1.9.0", "@lumino/algorithm@^1.9.2": 840 + "@lumino/algorithm@^1.9.0", "@lumino/algorithm@^1.9.1", "@lumino/algorithm@^1.9.2": 713 841 version "1.9.2" 714 842 resolved "https://registry.yarnpkg.com/@lumino/algorithm/-/algorithm-1.9.2.tgz#b95e6419aed58ff6b863a51bfb4add0f795141d3" 715 843 integrity sha512-Z06lp/yuhz8CtIir3PNTGnuk7909eXt4ukJsCzChsGuot2l5Fbs96RJ/FOHgwCedaX74CtxPjXHXoszFbUA+4A== 716 844 717 - "@lumino/algorithm@^2.0.0": 718 - version "2.0.0" 719 - resolved "https://registry.yarnpkg.com/@lumino/algorithm/-/algorithm-2.0.0.tgz#f36e4b6bf6d2b9bde66dc3162afc9a0d2ef47530" 720 - integrity sha512-SwM/8U1zlMWMJj00wTCThdTUit9zap2Xghuo4uUxvZ+mfog5b1UIk2j1dP8TPpzEXHCDPEb85s2/ERo1tee3Dw== 721 - 722 - "@lumino/application@^1.31.3": 723 - version "1.31.3" 724 - resolved "https://registry.yarnpkg.com/@lumino/application/-/application-1.31.3.tgz#c5a9bc84212a2505be8f5d43516e0603d9100965" 725 - integrity sha512-XnsXm5PD9QevJRl/pHJziYmhRKqJYjEOTL6Vh9dtKpPPML57uswOj59Pokxx/yCvym1xRF9iDVvujy3KallRwQ== 845 + "@lumino/application@^1.31.4": 846 + version "1.31.4" 847 + resolved "https://registry.yarnpkg.com/@lumino/application/-/application-1.31.4.tgz#b804fcc46fb77deb41aee94c48bea990f735d6b9" 848 + integrity sha512-dOSsDJ1tXOxC3fnSHvtDQK5RcICLEVPtO19HeCGwurb5W2ZZ55SZT2b5jZu6V/v8lGdtkNbr1RJltRpJRSRb/A== 726 849 dependencies: 727 850 "@lumino/commands" "^1.21.1" 728 851 "@lumino/coreutils" "^1.12.1" 729 - "@lumino/widgets" "^1.37.1" 852 + "@lumino/widgets" "^1.37.2" 730 853 731 854 "@lumino/collections@^1.9.3": 732 855 version "1.9.3" ··· 748 871 "@lumino/signaling" "^1.11.1" 749 872 "@lumino/virtualdom" "^1.14.3" 750 873 751 - "@lumino/coreutils@^1.11.0", "@lumino/coreutils@^1.12.1": 874 + "@lumino/coreutils@^1.11.0", "@lumino/coreutils@^1.11.0 || ^2.0.0-alpha.6", "@lumino/coreutils@^1.11.1", "@lumino/coreutils@^1.12.1": 752 875 version "1.12.1" 753 876 resolved "https://registry.yarnpkg.com/@lumino/coreutils/-/coreutils-1.12.1.tgz#79860c9937483ddf6cda87f6c2b9da8eb1a5d768" 754 877 integrity sha512-JLu3nTHzJk9N8ohZ85u75YxemMrmDzJdNgZztfP7F7T7mxND3YVNCkJG35a6aJ7edu1sIgCjBxOvV+hv27iYvQ== 755 878 756 - "@lumino/coreutils@^1.11.0 || ^2.0.0-alpha.6", "@lumino/coreutils@^2.0.0": 757 - version "2.0.0" 758 - resolved "https://registry.yarnpkg.com/@lumino/coreutils/-/coreutils-2.0.0.tgz#f7a82e616156bda83197ee4e176810af6799a27b" 759 - integrity sha512-eMPssdjM/qYsX7AwX4gWI07ijzxDFyM7i8dT35YY7P6r0OeqIzmVruu/3RJhHfKoVJ/fINlS9B8EsOC81GMIGA== 760 - 761 - "@lumino/disposable@^1.10.0", "@lumino/disposable@^1.10.4": 879 + "@lumino/disposable@^1.10.0", "@lumino/disposable@^1.10.0 || ^2.0.0-alpha.6", "@lumino/disposable@^1.10.1", "@lumino/disposable@^1.10.4": 762 880 version "1.10.4" 763 881 resolved "https://registry.yarnpkg.com/@lumino/disposable/-/disposable-1.10.4.tgz#73b452044fecf988d7fa73fac9451b1a7f987323" 764 882 integrity sha512-4ZxyYcyzUS+ZeB2KAH9oAH3w0DUUceiVr+FIZHZ2TAYGWZI/85WlqJtfm0xjwEpCwLLW1TDqJrISuZu3iMmVMA== ··· 766 884 "@lumino/algorithm" "^1.9.2" 767 885 "@lumino/signaling" "^1.11.1" 768 886 769 - "@lumino/disposable@^1.10.0 || ^2.0.0-alpha.6": 770 - version "2.0.0" 771 - resolved "https://registry.yarnpkg.com/@lumino/disposable/-/disposable-2.0.0.tgz#6ad4927aaee03b8c55b870a8466fca5b759d5a1e" 772 - integrity sha512-2PcwxbKU1xYd02wWCsk5F/Ufh/tbNAMb+zXJEOGcRPrgOihkIz3FEDtbhOVGuGw8FtYlisKIs1m+pq37LUHL6A== 773 - dependencies: 774 - "@lumino/signaling" "^2.0.0" 775 - 776 - "@lumino/domutils@^1.8.0", "@lumino/domutils@^1.8.2": 887 + "@lumino/domutils@^1.8.0", "@lumino/domutils@^1.8.1", "@lumino/domutils@^1.8.2": 777 888 version "1.8.2" 778 889 resolved "https://registry.yarnpkg.com/@lumino/domutils/-/domutils-1.8.2.tgz#d15cdbae12bea52852bbc13c4629360f9f05b7f5" 779 890 integrity sha512-QIpMfkPJrs4GrWBuJf2Sn1fpyVPmvqUUAeD8xAQo8+4V5JAT0vUDLxZ9HijefMgNCi3+Bs8Z3lQwRCrz+cFP1A== 780 891 781 - "@lumino/dragdrop@^1.13.0", "@lumino/dragdrop@^1.14.4": 782 - version "1.14.4" 783 - resolved "https://registry.yarnpkg.com/@lumino/dragdrop/-/dragdrop-1.14.4.tgz#b6ec4cf4f470c17a849e31f299d5a24acdc8c7d3" 784 - integrity sha512-IHX2M8Yqs2YsFHHXKSKiYLgv9DEuhyyKoDS85Chg34J9OaPC5ocT0AmNVnpeq9T4A50sg3vdL9mSRCZ0f302Gw== 892 + "@lumino/dragdrop@^1.13.0", "@lumino/dragdrop@^1.14.5": 893 + version "1.14.5" 894 + resolved "https://registry.yarnpkg.com/@lumino/dragdrop/-/dragdrop-1.14.5.tgz#1db76c8a01f74cb1b0428db6234e820bb58b93ba" 895 + integrity sha512-LC5xB82+xGF8hFyl716TMpV32OIMIMl+s3RU1PaqDkD6B7PkgiVk6NkJ4X9/GcEvl2igkvlGQt/3L7qxDAJNxw== 785 896 dependencies: 786 897 "@lumino/coreutils" "^1.12.1" 787 898 "@lumino/disposable" "^1.10.4" ··· 791 902 resolved "https://registry.yarnpkg.com/@lumino/keyboard/-/keyboard-1.8.2.tgz#714dbe671f0718f516d1ec23188b31a9ccd82fb2" 792 903 integrity sha512-Dy+XqQ1wXbcnuYtjys5A0pAqf4SpAFl9NY6owyIhXAo0Va7w3LYp3jgiP1xAaBAwMuUppiUAfrbjrysZuZ625g== 793 904 794 - "@lumino/messaging@^1.10.0", "@lumino/messaging@^1.10.3": 905 + "@lumino/messaging@^1.10.0", "@lumino/messaging@^1.10.1", "@lumino/messaging@^1.10.3": 795 906 version "1.10.3" 796 907 resolved "https://registry.yarnpkg.com/@lumino/messaging/-/messaging-1.10.3.tgz#b6227bdfc178a8542571625ecb68063691b6af3c" 797 908 integrity sha512-F/KOwMCdqvdEG8CYAJcBSadzp6aI7a47Fr60zAKGqZATSRRRV41q53iXU7HjFPqQqQIvdn9Z7J32rBEAyQAzww== ··· 808 919 "@lumino/disposable" "^1.10.4" 809 920 "@lumino/signaling" "^1.11.1" 810 921 811 - "@lumino/properties@^1.8.0", "@lumino/properties@^1.8.2": 922 + "@lumino/properties@^1.8.0", "@lumino/properties@^1.8.1", "@lumino/properties@^1.8.2": 812 923 version "1.8.2" 813 924 resolved "https://registry.yarnpkg.com/@lumino/properties/-/properties-1.8.2.tgz#91131f2ca91a902faa138771eb63341db78fc0fd" 814 925 integrity sha512-EkjI9Cw8R0U+xC9HxdFSu7X1tz1H1vKu20cGvJ2gU+CXlMB1DvoYJCYxCThByHZ+kURTAap4SE5x8HvKwNPbig== 815 926 816 - "@lumino/signaling@^1.10.0", "@lumino/signaling@^1.11.1": 927 + "@lumino/signaling@^1.10.0", "@lumino/signaling@^1.10.0 || ^2.0.0-alpha.6", "@lumino/signaling@^1.10.1", "@lumino/signaling@^1.11.1": 817 928 version "1.11.1" 818 929 resolved "https://registry.yarnpkg.com/@lumino/signaling/-/signaling-1.11.1.tgz#438f447a1b644fd286549804f9851b5aec9679a2" 819 930 integrity sha512-YCUmgw08VoyMN5KxzqPO3KMx+cwdPv28tAN06C0K7Q/dQf+oufb1XocuhZb5selTrTmmuXeizaYxgLIQGdS1fA== ··· 821 932 "@lumino/algorithm" "^1.9.2" 822 933 "@lumino/properties" "^1.8.2" 823 934 824 - "@lumino/signaling@^1.10.0 || ^2.0.0-alpha.6", "@lumino/signaling@^2.0.0": 825 - version "2.0.0" 826 - resolved "https://registry.yarnpkg.com/@lumino/signaling/-/signaling-2.0.0.tgz#56ad85d966719adde7532c2888f3c73562de5c86" 827 - integrity sha512-v5VRG4asmrVV5yy9rrpZgS5s9djkLbnmI60dVFXIbMWKyNUziVaUB9SkMzsCOOF6b9IKxXVdrMxjcieX7F9qfA== 828 - dependencies: 829 - "@lumino/algorithm" "^2.0.0" 830 - "@lumino/coreutils" "^2.0.0" 831 - 832 935 "@lumino/virtualdom@^1.14.0", "@lumino/virtualdom@^1.14.3": 833 936 version "1.14.3" 834 937 resolved "https://registry.yarnpkg.com/@lumino/virtualdom/-/virtualdom-1.14.3.tgz#e490c36ff506d877cf45771d6968e3e26a8919fd" ··· 836 939 dependencies: 837 940 "@lumino/algorithm" "^1.9.2" 838 941 839 - "@lumino/widgets@^1.37.1": 840 - version "1.37.1" 841 - resolved "https://registry.yarnpkg.com/@lumino/widgets/-/widgets-1.37.1.tgz#d7a2398b276e15e60aff4fec58c035d46549a75b" 842 - integrity sha512-/whz5B/hL0fjv0bR8JYZ+Emx+CH7HBwXc4TqI9PrrHGm3g6+jRJAyIFGZcQubqkPxxHrRE/VxQgoDKGhINw/Gw== 942 + "@lumino/widgets@^1.30.0", "@lumino/widgets@^1.37.1", "@lumino/widgets@^1.37.2": 943 + version "1.37.2" 944 + resolved "https://registry.yarnpkg.com/@lumino/widgets/-/widgets-1.37.2.tgz#b408fae221ecec2f1b028607782fbe1e82588bce" 945 + integrity sha512-NHKu1NBDo6ETBDoNrqSkornfUCwc8EFFzw6+LWBfYVxn2PIwciq2SdiJGEyNqL+0h/A9eVKb5ui5z4cwpRekmQ== 843 946 dependencies: 844 947 "@lumino/algorithm" "^1.9.2" 845 948 "@lumino/commands" "^1.21.1" 846 949 "@lumino/coreutils" "^1.12.1" 847 950 "@lumino/disposable" "^1.10.4" 848 951 "@lumino/domutils" "^1.8.2" 849 - "@lumino/dragdrop" "^1.14.4" 952 + "@lumino/dragdrop" "^1.14.5" 850 953 "@lumino/keyboard" "^1.8.2" 851 954 "@lumino/messaging" "^1.10.3" 852 955 "@lumino/properties" "^1.8.2" ··· 1271 1374 resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-2.0.0.tgz#f544a148d3ab35801c1f633a7441fd87c2e484bf" 1272 1375 integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A== 1273 1376 1377 + "@types/backbone@1.4.14": 1378 + version "1.4.14" 1379 + resolved "https://registry.yarnpkg.com/@types/backbone/-/backbone-1.4.14.tgz#4b71f0c25d89cfa9a10b18042f0b03d35a53364c" 1380 + integrity sha512-85ldQ99fiYTJFBlZuAJRaCdvTZKZ2p1fSs3fVf+6Ub6k1X0g0hNJ0qJ/2FOByyyAQYLtbEz3shX5taKQfBKBDw== 1381 + dependencies: 1382 + "@types/jquery" "*" 1383 + "@types/underscore" "*" 1384 + 1274 1385 "@types/dom4@^2.0.1": 1275 1386 version "2.0.2" 1276 1387 resolved "https://registry.yarnpkg.com/@types/dom4/-/dom4-2.0.2.tgz#6495303f049689ce936ed328a3e5ede9c51408ee" ··· 1302 1413 resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.51.tgz#cfd70924a25a3fd32b218e5e420e6897e1ac4f40" 1303 1414 integrity sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ== 1304 1415 1416 + "@types/jquery@*": 1417 + version "3.5.16" 1418 + resolved "https://registry.yarnpkg.com/@types/jquery/-/jquery-3.5.16.tgz#632131baf30951915b0317d48c98e9890bdf051d" 1419 + integrity sha512-bsI7y4ZgeMkmpG9OM710RRzDFp+w4P1RGiIt30C1mSBT+ExCleeh4HObwgArnDFELmRrOpXgSYN9VF1hj+f1lw== 1420 + dependencies: 1421 + "@types/sizzle" "*" 1422 + 1305 1423 "@types/json-schema@*", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.7", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": 1306 1424 version "7.0.11" 1307 1425 resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" 1308 1426 integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== 1427 + 1428 + "@types/lodash@^4.14.134": 1429 + version "4.14.194" 1430 + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.194.tgz#b71eb6f7a0ff11bff59fc987134a093029258a76" 1431 + integrity sha512-r22s9tAS7imvBt2lyHC9B8AGwWnXaYb1tY09oyLkXDs4vArpYJzw09nj8MLx5VfciBPGIb+ZwG0ssYnEPJxn/g== 1309 1432 1310 1433 "@types/minimatch@^3.0.3": 1311 1434 version "3.0.5" ··· 1356 1479 resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.13.tgz#da4bfd73f49bd541d28920ab0e2bf0ee80f71c91" 1357 1480 integrity sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw== 1358 1481 1482 + "@types/sizzle@*": 1483 + version "2.3.3" 1484 + resolved "https://registry.yarnpkg.com/@types/sizzle/-/sizzle-2.3.3.tgz#ff5e2f1902969d305225a047c8a0fd5c915cebef" 1485 + integrity sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ== 1486 + 1359 1487 "@types/source-list-map@*": 1360 1488 version "0.1.2" 1361 1489 resolved "https://registry.yarnpkg.com/@types/source-list-map/-/source-list-map-0.1.2.tgz#0078836063ffaf17412349bba364087e0ac02ec9" 1362 1490 integrity sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA== 1491 + 1492 + "@types/underscore@*": 1493 + version "1.11.4" 1494 + resolved "https://registry.yarnpkg.com/@types/underscore/-/underscore-1.11.4.tgz#62e393f8bc4bd8a06154d110c7d042a93751def3" 1495 + integrity sha512-uO4CD2ELOjw8tasUrAhvnn2W4A0ZECOvMjCivJr4gA9pGgjv+qxKWY9GLTMVEK8ej85BxQOocUyE7hImmSQYcg== 1363 1496 1364 1497 "@types/webpack-sources@^0.1.5": 1365 1498 version "0.1.9" ··· 1894 2027 form-data "^4.0.0" 1895 2028 proxy-from-env "^1.1.0" 1896 2029 2030 + backbone@1.4.0: 2031 + version "1.4.0" 2032 + resolved "https://registry.yarnpkg.com/backbone/-/backbone-1.4.0.tgz#54db4de9df7c3811c3f032f34749a4cd27f3bd12" 2033 + integrity sha512-RLmDrRXkVdouTg38jcgHhyQ/2zjg7a8E6sz2zxfz21Hh17xDJYUHBZimVIt5fUyS8vbfpeSmTL3gUjTEvUV3qQ== 2034 + dependencies: 2035 + underscore ">=1.8.3" 2036 + 1897 2037 balanced-match@^1.0.0: 1898 2038 version "1.0.2" 1899 2039 resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 1900 2040 integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 1901 2041 1902 - base64-js@^1.3.1: 2042 + base64-js@^1.2.1, base64-js@^1.3.1: 1903 2043 version "1.5.1" 1904 2044 resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" 1905 2045 integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== ··· 2515 2655 resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.11.tgz#d66700c5eacfac1940deb4e3ee5642792d85cd33" 2516 2656 integrity sha512-sa6P2wJ+CAbgyy4KFssIb/JNMLxFvKF1pCYCSXS8ZMuqZnMsrxqI2E5sPyoTpxoPU/gVZMzr2zjOfg8GIZOMsw== 2517 2657 2658 + d3-color@^3.0.1: 2659 + version "3.1.0" 2660 + resolved "https://registry.yarnpkg.com/d3-color/-/d3-color-3.1.0.tgz#395b2833dfac71507f12ac2f7af23bf819de24e2" 2661 + integrity sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA== 2662 + 2663 + d3-format@^3.0.1: 2664 + version "3.1.0" 2665 + resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-3.1.0.tgz#9260e23a28ea5cb109e93b21a06e24e2ebd55641" 2666 + integrity sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA== 2667 + 2518 2668 dargs@^7.0.0: 2519 2669 version "7.0.0" 2520 2670 resolved "https://registry.yarnpkg.com/dargs/-/dargs-7.0.0.tgz#04015c41de0bcb69ec84050f3d9be0caf8d6d5cc" ··· 2698 2848 domhandler "^4.2.0" 2699 2849 entities "^2.0.0" 2700 2850 2851 + dom-serializer@^2.0.0: 2852 + version "2.0.0" 2853 + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53" 2854 + integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg== 2855 + dependencies: 2856 + domelementtype "^2.3.0" 2857 + domhandler "^5.0.2" 2858 + entities "^4.2.0" 2859 + 2701 2860 dom4@^2.1.5: 2702 2861 version "2.1.6" 2703 2862 resolved "https://registry.yarnpkg.com/dom4/-/dom4-2.1.6.tgz#c90df07134aa0dbd81ed4d6ba1237b36fc164770" 2704 2863 integrity sha512-JkCVGnN4ofKGbjf5Uvc8mmxaATIErKQKSgACdBXpsQ3fY6DlIpAyWfiBSrGkttATssbDCp3psiAKWXk5gmjycA== 2705 2864 2706 - domelementtype@^2.0.1, domelementtype@^2.2.0: 2865 + domelementtype@^2.0.1, domelementtype@^2.2.0, domelementtype@^2.3.0: 2707 2866 version "2.3.0" 2708 2867 resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" 2709 2868 integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== ··· 2722 2881 dependencies: 2723 2882 domelementtype "^2.2.0" 2724 2883 2884 + domhandler@^5.0.1, domhandler@^5.0.2, domhandler@^5.0.3: 2885 + version "5.0.3" 2886 + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31" 2887 + integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w== 2888 + dependencies: 2889 + domelementtype "^2.3.0" 2890 + 2725 2891 domutils@^2.5.2: 2726 2892 version "2.8.0" 2727 2893 resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135" ··· 2730 2896 dom-serializer "^1.0.1" 2731 2897 domelementtype "^2.2.0" 2732 2898 domhandler "^4.2.0" 2899 + 2900 + domutils@^3.0.1: 2901 + version "3.0.1" 2902 + resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.0.1.tgz#696b3875238338cb186b6c0612bd4901c89a4f1c" 2903 + integrity sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q== 2904 + dependencies: 2905 + dom-serializer "^2.0.0" 2906 + domelementtype "^2.3.0" 2907 + domhandler "^5.0.1" 2733 2908 2734 2909 dot-prop@6.0.1: 2735 2910 version "6.0.1" ··· 2830 3005 version "2.2.0" 2831 3006 resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" 2832 3007 integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== 3008 + 3009 + entities@^4.2.0: 3010 + version "4.5.0" 3011 + resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" 3012 + integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== 2833 3013 2834 3014 entities@^4.4.0: 2835 3015 version "4.4.0" ··· 3733 3913 domutils "^2.5.2" 3734 3914 entities "^2.0.0" 3735 3915 3916 + htmlparser2@^8.0.0: 3917 + version "8.0.2" 3918 + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-8.0.2.tgz#f002151705b383e62433b5cf466f5b716edaec21" 3919 + integrity sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA== 3920 + dependencies: 3921 + domelementtype "^2.3.0" 3922 + domhandler "^5.0.3" 3923 + domutils "^3.0.1" 3924 + entities "^4.4.0" 3925 + 3736 3926 http-cache-semantics@^4.1.0: 3737 3927 version "4.1.1" 3738 3928 resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz#abe02fcb2985460bf0323be664436ec3476a6d5a" ··· 4185 4375 merge-stream "^2.0.0" 4186 4376 supports-color "^8.0.0" 4187 4377 4378 + jquery@^3.1.1: 4379 + version "3.6.4" 4380 + resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.6.4.tgz#ba065c188142100be4833699852bf7c24dc0252f" 4381 + integrity sha512-v28EW9DWDFpzcD9O5iyJXg3R3+q+mET5JhnjJzQUZMHOv67bpSIHq81GEYpPNZHG+XXHsfSme3nxp/hndKEcsQ== 4382 + 4188 4383 js-sdsl@^4.1.4: 4189 4384 version "4.3.0" 4190 4385 resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.3.0.tgz#aeefe32a451f7af88425b11fdb5f58c90ae1d711" ··· 4534 4729 prelude-ls "~1.1.2" 4535 4730 type-check "~0.3.2" 4536 4731 4537 - lib0@^0.2.31, lib0@^0.2.42, lib0@^0.2.49, lib0@^0.2.52: 4732 + lib0@^0.2.31, lib0@^0.2.42, lib0@^0.2.52: 4538 4733 version "0.2.67" 4539 4734 resolved "https://registry.yarnpkg.com/lib0/-/lib0-0.2.67.tgz#c89e09d6af804cff11ad8220ef04a69e8f966d35" 4540 4735 integrity sha512-/eAwO2Zog4Ar07YAHvgo+mja04tENZDsNYLJuAGv4cl+ss/IL1scjvl0ogrKBGxchCxTWoGX6TOF6B2iDd/gpg== 4541 4736 dependencies: 4542 4737 isomorphic.js "^0.2.4" 4543 4738 4739 + lib0@^0.2.72: 4740 + version "0.2.73" 4741 + resolved "https://registry.yarnpkg.com/lib0/-/lib0-0.2.73.tgz#af7d7ce9ad523fa3e241d437cc3ab1862f9a1f29" 4742 + integrity sha512-aJJIElCLWnHMcYZPtsM07QoSfHwpxCy4VUzBYGXFYEmh/h2QS5uZNbCCfL0CqnkOE30b7Tp9DVfjXag+3qzZjQ== 4743 + dependencies: 4744 + isomorphic.js "^0.2.4" 4745 + 4544 4746 libnpmaccess@6.0.3: 4545 4747 version "6.0.3" 4546 4748 resolved "https://registry.yarnpkg.com/libnpmaccess/-/libnpmaccess-6.0.3.tgz#473cc3e4aadb2bc713419d92e45d23b070d8cded" ··· 5117 5319 version "8.0.1" 5118 5320 resolved "https://registry.yarnpkg.com/normalize.css/-/normalize.css-8.0.1.tgz#9b98a208738b9cc2634caacbc42d131c97487bf3" 5119 5321 integrity sha512-qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg== 5322 + 5323 + nouislider@15.4.0: 5324 + version "15.4.0" 5325 + resolved "https://registry.yarnpkg.com/nouislider/-/nouislider-15.4.0.tgz#ac0d988e9ba59366062e5712e7cd37eb2e48630d" 5326 + integrity sha512-AV7UMhGhZ4Mj6ToMT812Ib8OJ4tAXR2/Um7C4l4ZvvsqujF0WpQTpqqHJ+9xt4174R7ueQOUrBR4yakJpAIPCA== 5120 5327 5121 5328 npm-bundled@^1.1.1, npm-bundled@^1.1.2: 5122 5329 version "1.1.2" ··· 6322 6529 resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 6323 6530 integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 6324 6531 6532 + sanitize-html@^2.3: 6533 + version "2.10.0" 6534 + resolved "https://registry.yarnpkg.com/sanitize-html/-/sanitize-html-2.10.0.tgz#74d28848dfcf72c39693139131895c78900ab452" 6535 + integrity sha512-JqdovUd81dG4k87vZt6uA6YhDfWkUGruUu/aPmXLxXi45gZExnt9Bnw/qeQU8oGf82vPyaE0vO4aH0PbobB9JQ== 6536 + dependencies: 6537 + deepmerge "^4.2.2" 6538 + escape-string-regexp "^4.0.0" 6539 + htmlparser2 "^8.0.0" 6540 + is-plain-object "^5.0.0" 6541 + parse-srcset "^1.0.2" 6542 + postcss "^8.3.11" 6543 + 6325 6544 sanitize-html@~2.7.3: 6326 6545 version "2.7.3" 6327 6546 resolved "https://registry.yarnpkg.com/sanitize-html/-/sanitize-html-2.7.3.tgz#166c868444ee4f9fd7352ac8c63fa86c343fc2bd" ··· 7064 7283 has-symbols "^1.0.3" 7065 7284 which-boxed-primitive "^1.0.2" 7066 7285 7286 + underscore@>=1.8.3: 7287 + version "1.13.6" 7288 + resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.13.6.tgz#04786a1f589dc6c09f761fc5f45b89e935136441" 7289 + integrity sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A== 7290 + 7067 7291 unique-filename@^1.1.1: 7068 7292 version "1.1.1" 7069 7293 resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230" ··· 7560 7784 dependencies: 7561 7785 lib0 "^0.2.42" 7562 7786 7563 - y-websocket@^1.3.15: 7787 + y-websocket@^1.4.6: 7564 7788 version "1.5.0" 7565 7789 resolved "https://registry.yarnpkg.com/y-websocket/-/y-websocket-1.5.0.tgz#3c13ed205f1553185e1d144eac94150b5b5d55d6" 7566 7790 integrity sha512-A8AO6XtnQlYwWFytWdkDCeXg4l8ghRTIw5h2YUgUYDmEC9ugWGIwYNW80yadhSFAF7CvuWTEkQNEpevnH6EiZw== ··· 7638 7862 semver "^7.3.8" 7639 7863 tslib "^2.4.1" 7640 7864 7641 - yjs@^13.5.17, yjs@^13.5.40: 7642 - version "13.5.50" 7643 - resolved "https://registry.yarnpkg.com/yjs/-/yjs-13.5.50.tgz#ab0605c677922163c9fe49295d3fd47c04c8e0e9" 7644 - integrity sha512-Q2KVNfovwjtJV4Yxz+HaFYT6vTYBaFagOSpTL3jbPc7Sbv/My68fLTfPlYy9FmNO87pV8dMBd5XuVar+9WsAWg== 7865 + yjs@^13.5.40: 7866 + version "13.5.52" 7867 + resolved "https://registry.yarnpkg.com/yjs/-/yjs-13.5.52.tgz#aec0535e16d45ed4defd6489fffae2b17e30fdb3" 7868 + integrity sha512-wTajR70VeI6uztpUk4kMcXYHSRzuUlNyJPdBG9NII0EcFf27DwGduZEm3XbP7VSzlGx5n6uenBhOPX+YuPH/tA== 7645 7869 dependencies: 7646 - lib0 "^0.2.49" 7870 + lib0 "^0.2.72" 7647 7871 7648 7872 yocto-queue@^0.1.0: 7649 7873 version "0.1.0"